nuxt-ignis 0.5.1 → 0.5.3

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 (1475) hide show
  1. package/.data/content/contents.sqlite +0 -0
  2. package/.env +3 -2
  3. package/.nuxt/app.config.mjs +25 -1
  4. package/.nuxt/components.d.ts +480 -480
  5. package/.nuxt/content/components.ts +185 -208
  6. package/.nuxt/dev/index.mjs +660 -588
  7. package/.nuxt/dev/index.mjs.map +1 -1
  8. package/.nuxt/dist/server/client.manifest.mjs +1 -1
  9. package/.nuxt/dist/server/client.precomputed.mjs +1 -1
  10. package/.nuxt/eslint-typegen.d.ts +22 -1
  11. package/.nuxt/eslint.config.d.mts +3 -3
  12. package/.nuxt/eslint.config.mjs +10 -10
  13. package/.nuxt/image/providers.d.ts +52 -0
  14. package/.nuxt/imports.d.ts +79 -68
  15. package/.nuxt/manifest/latest.json +1 -1
  16. package/.nuxt/manifest/meta/dev.json +1 -1
  17. package/.nuxt/mdc-highlighter.mjs +4 -3
  18. package/.nuxt/mdc-image-component.mjs +1 -1
  19. package/.nuxt/mdc-imports.mjs +2 -2
  20. package/.nuxt/module/nuxt-robots.d.ts +13 -12
  21. package/.nuxt/module/nuxt-seo-utils.d.ts +10 -10
  22. package/.nuxt/module/nuxt-site-config.d.ts +8 -8
  23. package/.nuxt/module/nuxt-sitemap.d.ts +18 -18
  24. package/.nuxt/nitro.json +5 -5
  25. package/.nuxt/nuxt.d.ts +11 -12
  26. package/.nuxt/nuxt.json +2 -2
  27. package/.nuxt/nuxt.node.d.ts +12 -11
  28. package/.nuxt/nuxt.shared.d.ts +1 -0
  29. package/.nuxt/tsconfig.app.json +234 -241
  30. package/.nuxt/tsconfig.json +237 -244
  31. package/.nuxt/tsconfig.node.json +133 -132
  32. package/.nuxt/tsconfig.server.json +154 -162
  33. package/.nuxt/tsconfig.shared.json +69 -75
  34. package/.nuxt/types/app.config.d.ts +25 -1
  35. package/.nuxt/types/build.d.ts +1 -2
  36. package/.nuxt/types/components.d.ts +480 -480
  37. package/.nuxt/types/i18n-plugin.d.ts +2 -2
  38. package/.nuxt/types/imports.d.ts +395 -362
  39. package/.nuxt/types/modules.d.ts +24 -46
  40. package/.nuxt/types/nitro-imports.d.ts +390 -390
  41. package/.nuxt/types/nitro-nuxt.d.ts +2 -1
  42. package/.nuxt/types/nitro-routes.d.ts +25 -25
  43. package/.nuxt/types/plugins.d.ts +42 -42
  44. package/.nuxt/types/runtime-config.d.ts +56 -2
  45. package/.nuxt/types/ui.d.ts +3 -2
  46. package/.nuxt/ui/auth-form.ts +20 -0
  47. package/.nuxt/ui/badge.ts +1 -1
  48. package/.nuxt/ui/banner.ts +108 -0
  49. package/.nuxt/ui/blog-post.ts +142 -0
  50. package/.nuxt/ui/blog-posts.ts +9 -0
  51. package/.nuxt/ui/button.ts +1 -1
  52. package/.nuxt/ui/calendar.ts +221 -9
  53. package/.nuxt/ui/changelog-version.ts +41 -0
  54. package/.nuxt/ui/changelog-versions.ts +8 -0
  55. package/.nuxt/ui/chat-message.ts +136 -0
  56. package/.nuxt/ui/chat-messages.ts +14 -0
  57. package/.nuxt/ui/chat-palette.ts +8 -0
  58. package/.nuxt/ui/chat-prompt-submit.ts +5 -0
  59. package/.nuxt/ui/chat-prompt.ts +35 -0
  60. package/.nuxt/ui/checkbox-group.ts +4 -1
  61. package/.nuxt/ui/checkbox.ts +5 -4
  62. package/.nuxt/ui/color-picker.ts +2 -2
  63. package/.nuxt/ui/command-palette.ts +12 -2
  64. package/.nuxt/ui/content/content-navigation.ts +368 -0
  65. package/.nuxt/ui/content/content-search-button.ts +15 -0
  66. package/.nuxt/ui/content/content-search.ts +13 -0
  67. package/.nuxt/ui/content/content-surround.ts +34 -0
  68. package/.nuxt/ui/content/content-toc.ts +155 -0
  69. package/.nuxt/ui/context-menu.ts +3 -1
  70. package/.nuxt/ui/dashboard-group.ts +3 -0
  71. package/.nuxt/ui/dashboard-navbar.ts +21 -0
  72. package/.nuxt/ui/dashboard-panel.ts +17 -0
  73. package/.nuxt/ui/dashboard-resize-handle.ts +3 -0
  74. package/.nuxt/ui/dashboard-search-button.ts +15 -0
  75. package/.nuxt/ui/dashboard-search.ts +13 -0
  76. package/.nuxt/ui/dashboard-sidebar-collapse.ts +9 -0
  77. package/.nuxt/ui/dashboard-sidebar-toggle.ts +9 -0
  78. package/.nuxt/ui/dashboard-sidebar.ts +37 -0
  79. package/.nuxt/ui/dashboard-toolbar.ts +7 -0
  80. package/.nuxt/ui/dropdown-menu.ts +3 -1
  81. package/.nuxt/ui/empty.ts +83 -0
  82. package/.nuxt/ui/error.ts +9 -0
  83. package/.nuxt/ui/footer-columns.ts +28 -0
  84. package/.nuxt/ui/footer.ts +11 -0
  85. package/.nuxt/ui/header.ts +25 -0
  86. package/.nuxt/ui/index.ts +57 -2
  87. package/.nuxt/ui/input-date.ts +343 -0
  88. package/.nuxt/ui/input-menu.ts +13 -3
  89. package/.nuxt/ui/input-number.ts +26 -15
  90. package/.nuxt/ui/input-tags.ts +1 -1
  91. package/.nuxt/ui/input-time.ts +342 -0
  92. package/.nuxt/ui/input.ts +1 -1
  93. package/.nuxt/ui/kbd.ts +1 -1
  94. package/.nuxt/ui/main.ts +3 -0
  95. package/.nuxt/ui/marquee.ts +66 -0
  96. package/.nuxt/ui/modal.ts +36 -5
  97. package/.nuxt/ui/navigation-menu.ts +2 -0
  98. package/.nuxt/ui/page-anchors.ts +30 -0
  99. package/.nuxt/ui/page-aside.ts +10 -0
  100. package/.nuxt/ui/page-body.ts +3 -0
  101. package/.nuxt/ui/page-card.ts +279 -0
  102. package/.nuxt/ui/page-columns.ts +3 -0
  103. package/.nuxt/ui/page-cta.ts +70 -0
  104. package/.nuxt/ui/page-feature.ts +26 -0
  105. package/.nuxt/ui/page-grid.ts +3 -0
  106. package/.nuxt/ui/page-header.ts +18 -0
  107. package/.nuxt/ui/page-hero.ts +44 -0
  108. package/.nuxt/ui/page-links.ts +25 -0
  109. package/.nuxt/ui/page-list.ts +8 -0
  110. package/.nuxt/ui/page-logos.ts +15 -0
  111. package/.nuxt/ui/page-section.ts +84 -0
  112. package/.nuxt/ui/page.ts +32 -0
  113. package/.nuxt/ui/pricing-plan.ts +101 -0
  114. package/.nuxt/ui/pricing-plans.ts +22 -0
  115. package/.nuxt/ui/pricing-table.ts +51 -0
  116. package/.nuxt/ui/prose/a.ts +6 -0
  117. package/.nuxt/ui/prose/accordion-item.ts +3 -0
  118. package/.nuxt/ui/prose/accordion.ts +6 -0
  119. package/.nuxt/ui/prose/badge.ts +3 -0
  120. package/.nuxt/ui/prose/blockquote.ts +3 -0
  121. package/.nuxt/ui/prose/callout.ts +129 -0
  122. package/.nuxt/ui/prose/card-group.ts +3 -0
  123. package/.nuxt/ui/prose/card.ts +119 -0
  124. package/.nuxt/ui/prose/code-collapse.ts +19 -0
  125. package/.nuxt/ui/prose/code-group.ts +13 -0
  126. package/.nuxt/ui/prose/code-icon.ts +66 -0
  127. package/.nuxt/ui/prose/code-preview.ts +14 -0
  128. package/.nuxt/ui/prose/code-tree.ts +28 -0
  129. package/.nuxt/ui/prose/code.ts +27 -0
  130. package/.nuxt/ui/prose/collapsible.ts +12 -0
  131. package/.nuxt/ui/prose/em.ts +3 -0
  132. package/.nuxt/ui/prose/field-group.ts +3 -0
  133. package/.nuxt/ui/prose/field.ts +11 -0
  134. package/.nuxt/ui/prose/h1.ts +6 -0
  135. package/.nuxt/ui/prose/h2.ts +14 -0
  136. package/.nuxt/ui/prose/h3.ts +14 -0
  137. package/.nuxt/ui/prose/h4.ts +6 -0
  138. package/.nuxt/ui/prose/hr.ts +3 -0
  139. package/.nuxt/ui/prose/icon.ts +3 -0
  140. package/.nuxt/ui/prose/img.ts +23 -0
  141. package/.nuxt/ui/prose/index.ts +41 -0
  142. package/.nuxt/ui/prose/kbd.ts +3 -0
  143. package/.nuxt/ui/prose/li.ts +3 -0
  144. package/.nuxt/ui/prose/ol.ts +3 -0
  145. package/.nuxt/ui/prose/p.ts +3 -0
  146. package/.nuxt/ui/prose/pre.ts +17 -0
  147. package/.nuxt/ui/prose/steps.ts +19 -0
  148. package/.nuxt/ui/prose/strong.ts +3 -0
  149. package/.nuxt/ui/prose/table.ts +6 -0
  150. package/.nuxt/ui/prose/tabs-item.ts +3 -0
  151. package/.nuxt/ui/prose/tabs.ts +5 -0
  152. package/.nuxt/ui/prose/tbody.ts +3 -0
  153. package/.nuxt/ui/prose/td.ts +3 -0
  154. package/.nuxt/ui/prose/th.ts +3 -0
  155. package/.nuxt/ui/prose/thead.ts +3 -0
  156. package/.nuxt/ui/prose/tr.ts +3 -0
  157. package/.nuxt/ui/prose/ul.ts +3 -0
  158. package/.nuxt/ui/radio-group.ts +5 -3
  159. package/.nuxt/ui/select-menu.ts +13 -3
  160. package/.nuxt/ui/select.ts +5 -3
  161. package/.nuxt/ui/switch.ts +4 -3
  162. package/.nuxt/ui/table.ts +8 -2
  163. package/.nuxt/ui/textarea.ts +1 -1
  164. package/.nuxt/ui/tree.ts +24 -10
  165. package/.nuxt/ui/user.ts +101 -0
  166. package/.nuxt/ui-image-component.ts +1 -1
  167. package/.nuxt/ui.css +6 -0
  168. package/.output/nitro.json +3 -3
  169. package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-4kZc4IwOXqryLeYzsaTvEKd54SPfeeGKPyDAZei18kw.woff +0 -0
  170. package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-RvZUU2X45U7WIDI083h9MozPZMSPdvOCkgsORsWvPOw.woff +0 -0
  171. package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-mSqNnHyoMtDKNu3z_xDpL0hWMcL0lhabY3Oa0dnS5HM.woff +0 -0
  172. package/.output/public/_ignis-config.json +7 -1
  173. package/.output/public/_nuxt/-OUwOzoZ.js +1 -0
  174. package/.output/public/_nuxt/-z2jk33i.js +1 -0
  175. package/.output/public/_nuxt/3L5yAyVe.js +1 -0
  176. package/.output/public/_nuxt/8nlalpbc.js +1 -0
  177. package/.output/public/_nuxt/As5Zy5cG.js +1 -0
  178. package/.output/public/_nuxt/B-TDuiGE.js +1 -0
  179. package/.output/public/_nuxt/B04mZI32.js +1 -0
  180. package/.output/public/_nuxt/B3zmx-p1.js +1 -0
  181. package/.output/public/_nuxt/B4eQjLRH.js +1 -0
  182. package/.output/public/_nuxt/B6WOJ0Em.js +1 -0
  183. package/.output/public/_nuxt/BB2ULiwb.js +1 -0
  184. package/.output/public/_nuxt/BEvX3xjB.js +1 -0
  185. package/.output/public/_nuxt/BFcGh2xo.js +1 -0
  186. package/.output/public/_nuxt/BFdGKCUO.js +1 -0
  187. package/.output/public/_nuxt/BG-5V6Ik.js +1 -0
  188. package/.output/public/_nuxt/BeRTSVEP.js +1 -0
  189. package/.output/public/_nuxt/Bh-DZrTV.js +1 -0
  190. package/.output/public/_nuxt/BvFz8iHh.js +1 -0
  191. package/.output/public/_nuxt/BwUgVogm.js +1 -0
  192. package/.output/public/_nuxt/C1fHW8CN.js +1 -0
  193. package/.output/public/_nuxt/C1getMtX.js +49 -0
  194. package/.output/public/_nuxt/C4nGy0Yj.js +1 -0
  195. package/.output/public/_nuxt/CExm4AMI.js +1 -0
  196. package/.output/public/_nuxt/CHcd0nHy.js +1 -0
  197. package/.output/public/_nuxt/CTbEZMxa.js +1 -0
  198. package/.output/public/_nuxt/CZ5QNOH8.js +1 -0
  199. package/.output/public/_nuxt/Cna7T5zY.js +1 -0
  200. package/.output/public/_nuxt/CnghUxEk.js +1 -0
  201. package/.output/public/_nuxt/CvJSUdvI.js +1 -0
  202. package/.output/public/_nuxt/CwgBHvd_.js +1 -0
  203. package/.output/public/_nuxt/D1nIr4-J.js +1 -0
  204. package/.output/public/_nuxt/D2atCez-.js +1 -0
  205. package/.output/public/_nuxt/D3WX5Hmk.js +1 -0
  206. package/.output/public/_nuxt/D5duQQkG.js +1 -0
  207. package/.output/public/_nuxt/D9RSHNPZ.js +1 -0
  208. package/.output/public/_nuxt/DB3c8m3K.js +1 -0
  209. package/.output/public/_nuxt/DFP1sKjc.js +1 -0
  210. package/.output/public/_nuxt/DI5_qtj_.js +1 -0
  211. package/.output/public/_nuxt/DKCDh1Eq.js +1 -0
  212. package/.output/public/_nuxt/DN3AlbuD.js +1 -0
  213. package/.output/public/_nuxt/DPDbQA17.js +1 -0
  214. package/.output/public/_nuxt/DSErOj49.js +1 -0
  215. package/.output/public/_nuxt/DXrSmKSt.js +1 -0
  216. package/.output/public/_nuxt/DbZ1CQfQ.js +1 -0
  217. package/.output/public/_nuxt/DgCebJqk.js +1 -0
  218. package/.output/public/_nuxt/DhhwMwQM.js +1 -0
  219. package/.output/public/_nuxt/Djhwz52y.js +1 -0
  220. package/.output/public/_nuxt/DnE1KSqg.js +1 -0
  221. package/.output/public/_nuxt/DncFEy6i.js +1 -0
  222. package/.output/public/_nuxt/DpZCZGQO.js +1 -0
  223. package/.output/public/_nuxt/Dx95U2T3.js +1 -0
  224. package/.output/public/_nuxt/FUdAqSn9.js +9 -0
  225. package/.output/public/_nuxt/GvxWNFgu.js +1 -0
  226. package/.output/public/_nuxt/HgKyGH3C.js +1 -0
  227. package/.output/public/_nuxt/Hxhp1Hz0.js +1 -0
  228. package/.output/public/_nuxt/LpFrvoF7.js +1 -0
  229. package/.output/public/_nuxt/Pre.HegCCrfd.css +2 -0
  230. package/.output/public/_nuxt/Sz6HDPqh.js +1 -0
  231. package/.output/public/_nuxt/U1_7ggcx.js +1 -0
  232. package/.output/public/_nuxt/X8ZdEYzW.js +1 -0
  233. package/.output/public/_nuxt/ahq42_9S.js +1 -0
  234. package/.output/public/_nuxt/b0AtYQ73.js +1 -0
  235. package/.output/public/_nuxt/builds/latest.json +1 -1
  236. package/.output/public/_nuxt/builds/meta/78080714-55fa-441d-9998-a6fb0c7ee057.json +1 -0
  237. package/.output/public/_nuxt/efC_w6sP.js +1 -0
  238. package/.output/public/_nuxt/entry.9ygoOcLs.css +1 -0
  239. package/.output/public/_nuxt/error-404.0Tbhbu-E.css +1 -0
  240. package/.output/public/_nuxt/error-500.ClQbyW3Z.css +1 -0
  241. package/.output/public/_nuxt/ulE7jr93.js +1 -0
  242. package/.output/public/_nuxt/xHyrElgL.js +1 -0
  243. package/.output/server/chunks/_/error-500.mjs.map +1 -1
  244. package/.output/server/chunks/_/i18n.config.mjs.map +1 -1
  245. package/.output/server/chunks/_/nitro.mjs +1221 -1219
  246. package/.output/server/chunks/_/nitro.mjs.map +1 -1
  247. package/.output/server/chunks/build/client.precomputed.mjs +1 -1
  248. package/.output/server/chunks/build/client.precomputed.mjs.map +1 -1
  249. package/.output/server/chunks/build/database.compressed.mjs.map +1 -1
  250. package/.output/server/chunks/raw/headers.mjs.map +1 -1
  251. package/.output/server/chunks/routes/api/neonTest.mjs +2 -2
  252. package/.output/server/chunks/routes/api/neonTest.mjs.map +1 -1
  253. package/.output/server/chunks/routes/renderer.mjs +27 -2
  254. package/.output/server/chunks/routes/renderer.mjs.map +1 -1
  255. package/.output/server/chunks/virtual/_virtual_spa-template.mjs.map +1 -1
  256. package/.output/server/chunks/virtual/child-sources.mjs.map +1 -1
  257. package/.output/server/chunks/virtual/global-sources.mjs +0 -8
  258. package/.output/server/chunks/virtual/global-sources.mjs.map +1 -1
  259. package/.output/server/index.mjs +1 -1
  260. package/.output/server/index.mjs.map +1 -1
  261. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/convertor/create.js +28 -0
  262. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/data-patch.js +6 -0
  263. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/data.js +95 -0
  264. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/SyntaxError.js +12 -0
  265. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/generate.js +131 -0
  266. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/index.js +4 -0
  267. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/parse.js +584 -0
  268. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/tokenizer.js +52 -0
  269. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/walk.js +52 -0
  270. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/create.js +98 -0
  271. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/sourceMap.js +92 -0
  272. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/token-before.js +182 -0
  273. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/index.js +30 -0
  274. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/Lexer.js +453 -0
  275. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/error.js +123 -0
  276. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-an-plus-b.js +238 -0
  277. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-const.js +8 -0
  278. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-urange.js +151 -0
  279. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic.js +598 -0
  280. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/match-graph.js +456 -0
  281. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/match.js +630 -0
  282. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/prepare-tokens.js +50 -0
  283. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/search.js +61 -0
  284. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/structure.js +164 -0
  285. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/trace.js +66 -0
  286. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/SyntaxError.js +65 -0
  287. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/create.js +346 -0
  288. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/sequence.js +43 -0
  289. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/font-face.js +8 -0
  290. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/import.js +39 -0
  291. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/index.js +13 -0
  292. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/media.js +12 -0
  293. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/page.js +12 -0
  294. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/supports.js +80 -0
  295. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/lexer.js +8 -0
  296. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/mix.js +138 -0
  297. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/parser.js +30 -0
  298. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/walker.js +5 -0
  299. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/create.js +53 -0
  300. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/function/expression.js +7 -0
  301. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/function/var.js +39 -0
  302. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/index.js +10 -0
  303. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AnPlusB.js +292 -0
  304. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Atrule.js +100 -0
  305. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AtrulePrelude.js +47 -0
  306. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AttributeSelector.js +147 -0
  307. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Block.js +89 -0
  308. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Brackets.js +35 -0
  309. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/CDC.js +19 -0
  310. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/CDO.js +19 -0
  311. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/ClassSelector.js +24 -0
  312. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Combinator.js +54 -0
  313. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Comment.js +33 -0
  314. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Declaration.js +165 -0
  315. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/DeclarationList.js +49 -0
  316. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Dimension.js +23 -0
  317. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Function.js +41 -0
  318. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Hash.js +23 -0
  319. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/IdSelector.js +26 -0
  320. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Identifier.js +18 -0
  321. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaFeature.js +77 -0
  322. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaQuery.js +60 -0
  323. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaQueryList.js +34 -0
  324. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Nth.js +47 -0
  325. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Number.js +18 -0
  326. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Operator.js +21 -0
  327. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Parentheses.js +34 -0
  328. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Percentage.js +18 -0
  329. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/PseudoClassSelector.js +63 -0
  330. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/PseudoElementSelector.js +64 -0
  331. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Ratio.js +59 -0
  332. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Raw.js +41 -0
  333. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Rule.js +51 -0
  334. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Selector.js +32 -0
  335. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/SelectorList.js +35 -0
  336. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/String.js +19 -0
  337. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/StyleSheet.js +82 -0
  338. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/TypeSelector.js +52 -0
  339. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/UnicodeRange.js +156 -0
  340. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Url.js +52 -0
  341. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Value.js +19 -0
  342. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/WhiteSpace.js +27 -0
  343. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/index-parse.js +40 -0
  344. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/index.js +40 -0
  345. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/pseudo/index.js +48 -0
  346. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/atrulePrelude.js +5 -0
  347. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/default.js +85 -0
  348. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/index.js +3 -0
  349. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/selector.js +90 -0
  350. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/value.js +25 -0
  351. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/OffsetToLocation.js +87 -0
  352. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/TokenStream.js +272 -0
  353. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/adopt-buffer.js +9 -0
  354. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/char-code-definitions.js +207 -0
  355. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/index.js +513 -0
  356. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/names.js +27 -0
  357. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/types.js +28 -0
  358. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/utils.js +254 -0
  359. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/List.js +469 -0
  360. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/clone.js +21 -0
  361. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/create-custom-error.js +14 -0
  362. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/ident.js +101 -0
  363. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/names.js +106 -0
  364. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/string.js +99 -0
  365. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/url.js +108 -0
  366. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/version.js +5 -0
  367. package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/walker/create.js +287 -0
  368. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/convertor/create.js +28 -0
  369. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/data-patch.js +6 -0
  370. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/data.js +118 -0
  371. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/SyntaxError.js +12 -0
  372. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/generate.js +135 -0
  373. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/index.js +4 -0
  374. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/parse.js +552 -0
  375. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/scanner.js +109 -0
  376. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/walk.js +53 -0
  377. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/create.js +97 -0
  378. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/sourceMap.js +92 -0
  379. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/token-before.js +182 -0
  380. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/index.js +30 -0
  381. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/Lexer.js +511 -0
  382. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/error.js +123 -0
  383. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-an-plus-b.js +238 -0
  384. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-const.js +8 -0
  385. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-urange.js +151 -0
  386. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic.js +622 -0
  387. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/match-graph.js +527 -0
  388. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/match.js +630 -0
  389. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/prepare-tokens.js +50 -0
  390. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/search.js +61 -0
  391. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/structure.js +169 -0
  392. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/trace.js +66 -0
  393. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/units.js +27 -0
  394. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/SyntaxError.js +70 -0
  395. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/create.js +350 -0
  396. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/sequence.js +43 -0
  397. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/container.js +28 -0
  398. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/font-face.js +8 -0
  399. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/import.js +104 -0
  400. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/index.js +23 -0
  401. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/layer.js +12 -0
  402. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/media.js +12 -0
  403. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/nest.js +12 -0
  404. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/page.js +12 -0
  405. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/scope.js +12 -0
  406. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/starting-style.js +8 -0
  407. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/supports.js +12 -0
  408. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/lexer.js +10 -0
  409. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/mix.js +123 -0
  410. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/parser.js +45 -0
  411. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/walker.js +5 -0
  412. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/create.js +55 -0
  413. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/function/expression.js +7 -0
  414. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/function/var.js +39 -0
  415. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/index.js +10 -0
  416. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AnPlusB.js +292 -0
  417. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Atrule.js +100 -0
  418. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AtrulePrelude.js +47 -0
  419. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AttributeSelector.js +147 -0
  420. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Block.js +95 -0
  421. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Brackets.js +35 -0
  422. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/CDC.js +19 -0
  423. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/CDO.js +19 -0
  424. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/ClassSelector.js +24 -0
  425. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Combinator.js +54 -0
  426. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Comment.js +33 -0
  427. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Condition.js +123 -0
  428. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Declaration.js +165 -0
  429. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/DeclarationList.js +62 -0
  430. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Dimension.js +23 -0
  431. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Feature.js +103 -0
  432. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/FeatureFunction.js +63 -0
  433. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/FeatureRange.js +133 -0
  434. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Function.js +41 -0
  435. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/GeneralEnclosed.js +66 -0
  436. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Hash.js +23 -0
  437. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/IdSelector.js +26 -0
  438. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Identifier.js +18 -0
  439. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Layer.js +28 -0
  440. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/LayerList.js +36 -0
  441. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/MediaQuery.js +102 -0
  442. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/MediaQueryList.js +34 -0
  443. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/NestingSelector.js +22 -0
  444. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Nth.js +47 -0
  445. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Number.js +18 -0
  446. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Operator.js +21 -0
  447. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Parentheses.js +34 -0
  448. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Percentage.js +18 -0
  449. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/PseudoClassSelector.js +65 -0
  450. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/PseudoElementSelector.js +66 -0
  451. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Ratio.js +68 -0
  452. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Raw.js +41 -0
  453. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Rule.js +51 -0
  454. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Scope.js +66 -0
  455. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Selector.js +31 -0
  456. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/SelectorList.js +35 -0
  457. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/String.js +19 -0
  458. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/StyleSheet.js +82 -0
  459. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/SupportsDeclaration.js +34 -0
  460. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/TypeSelector.js +52 -0
  461. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/UnicodeRange.js +156 -0
  462. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Url.js +52 -0
  463. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Value.js +19 -0
  464. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/WhiteSpace.js +27 -0
  465. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/index-parse.js +49 -0
  466. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/index.js +49 -0
  467. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/pseudo/index.js +56 -0
  468. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/pseudo/lang.js +33 -0
  469. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/atrulePrelude.js +5 -0
  470. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/default.js +85 -0
  471. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/index.js +3 -0
  472. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/selector.js +94 -0
  473. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/value.js +25 -0
  474. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/OffsetToLocation.js +87 -0
  475. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/TokenStream.js +316 -0
  476. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/adopt-buffer.js +9 -0
  477. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/char-code-definitions.js +212 -0
  478. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/index.js +513 -0
  479. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/names.js +28 -0
  480. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/types.js +28 -0
  481. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/utils.js +254 -0
  482. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/List.js +469 -0
  483. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/clone.js +21 -0
  484. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/create-custom-error.js +14 -0
  485. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/ident.js +101 -0
  486. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/names.js +106 -0
  487. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/string.js +99 -0
  488. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/url.js +108 -0
  489. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/version.js +5 -0
  490. package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/walker/create.js +287 -0
  491. package/.output/server/node_modules/.nitro/css-tree@3.1.0/package.json +125 -0
  492. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/decode.js +496 -0
  493. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/decode_codepoint.js +71 -0
  494. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/encode.js +69 -0
  495. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/escape.js +116 -0
  496. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/decode-data-html.js +7 -0
  497. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/decode-data-xml.js +7 -0
  498. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/encode-html.js +10 -0
  499. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/index.js +99 -0
  500. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/package.json +1 -0
  501. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/decode-codepoint.js +77 -0
  502. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/decode.js +568 -0
  503. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/generated/decode-data-html.js +7 -0
  504. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/generated/decode-data-xml.js +7 -0
  505. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/internal/bin-trie-flags.js +21 -0
  506. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/internal/decode-shared.js +31 -0
  507. package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/package.json +3 -0
  508. package/.output/server/node_modules/.nitro/entities@7.0.0/package.json +113 -0
  509. package/.output/server/node_modules/@fastify/accept-negotiator/package.json +42 -16
  510. package/.output/server/node_modules/@iconify/utils/lib/colors/index.js +292 -0
  511. package/.output/server/node_modules/@iconify/utils/lib/colors/keywords.js +702 -0
  512. package/.output/server/node_modules/@iconify/utils/lib/css/common.js +76 -0
  513. package/.output/server/node_modules/@iconify/utils/lib/css/format.js +40 -0
  514. package/.output/server/node_modules/@iconify/utils/lib/css/icon.js +52 -0
  515. package/.output/server/node_modules/@iconify/utils/lib/css/icons.js +133 -0
  516. package/.output/server/node_modules/@iconify/utils/lib/customisations/bool.js +20 -0
  517. package/.output/server/node_modules/@iconify/utils/lib/customisations/defaults.js +15 -0
  518. package/.output/server/node_modules/@iconify/utils/lib/customisations/flip.js +18 -0
  519. package/.output/server/node_modules/@iconify/utils/lib/customisations/merge.js +18 -0
  520. package/.output/server/node_modules/@iconify/utils/lib/customisations/rotate.js +31 -0
  521. package/.output/server/node_modules/@iconify/utils/lib/emoji/cleanup.js +80 -0
  522. package/.output/server/node_modules/@iconify/utils/lib/emoji/convert.js +102 -0
  523. package/.output/server/node_modules/@iconify/utils/lib/emoji/data.js +29 -0
  524. package/.output/server/node_modules/@iconify/utils/lib/emoji/format.js +60 -0
  525. package/.output/server/node_modules/@iconify/utils/lib/emoji/parse.js +50 -0
  526. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/base.js +204 -0
  527. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/create.js +35 -0
  528. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/numbers.js +134 -0
  529. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/similar.js +167 -0
  530. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/tree.js +81 -0
  531. package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/find.js +94 -0
  532. package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/replace.js +28 -0
  533. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/components.js +78 -0
  534. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/missing.js +68 -0
  535. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/name.js +47 -0
  536. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/parse.js +105 -0
  537. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/similar.js +38 -0
  538. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/tree.js +94 -0
  539. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/variations.js +64 -0
  540. package/.output/server/node_modules/@iconify/utils/lib/icon/defaults.js +26 -0
  541. package/.output/server/node_modules/@iconify/utils/lib/icon/merge.js +18 -0
  542. package/.output/server/node_modules/@iconify/utils/lib/icon/name.js +58 -0
  543. package/.output/server/node_modules/@iconify/utils/lib/icon/square.js +34 -0
  544. package/.output/server/node_modules/@iconify/utils/lib/icon/transformations.js +13 -0
  545. package/.output/server/node_modules/@iconify/utils/lib/icon-set/convert-info.js +126 -0
  546. package/.output/server/node_modules/@iconify/utils/lib/icon-set/expand.js +21 -0
  547. package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icon.js +27 -0
  548. package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icons.js +38 -0
  549. package/.output/server/node_modules/@iconify/utils/lib/icon-set/minify.js +93 -0
  550. package/.output/server/node_modules/@iconify/utils/lib/icon-set/parse.js +48 -0
  551. package/.output/server/node_modules/@iconify/utils/lib/icon-set/tree.js +24 -0
  552. package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate-basic.js +44 -0
  553. package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate.js +125 -0
  554. package/.output/server/node_modules/@iconify/utils/lib/index.js +53 -0
  555. package/.output/server/node_modules/@iconify/utils/lib/loader/custom.js +32 -0
  556. package/.output/server/node_modules/@iconify/utils/lib/loader/loader.js +28 -0
  557. package/.output/server/node_modules/@iconify/utils/lib/loader/modern.js +42 -0
  558. package/.output/server/node_modules/@iconify/utils/lib/loader/utils.js +63 -0
  559. package/.output/server/node_modules/@iconify/utils/lib/misc/objects.js +27 -0
  560. package/.output/server/node_modules/@iconify/utils/lib/misc/strings.js +27 -0
  561. package/.output/server/node_modules/@iconify/utils/lib/misc/title.js +10 -0
  562. package/.output/server/node_modules/@iconify/utils/lib/svg/build.js +115 -0
  563. package/.output/server/node_modules/@iconify/utils/lib/svg/defs.js +32 -0
  564. package/.output/server/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.js +15 -0
  565. package/.output/server/node_modules/@iconify/utils/lib/svg/html.js +10 -0
  566. package/.output/server/node_modules/@iconify/utils/lib/svg/id.js +42 -0
  567. package/.output/server/node_modules/@iconify/utils/lib/svg/inner-html.js +23 -0
  568. package/.output/server/node_modules/@iconify/utils/lib/svg/parse.js +69 -0
  569. package/.output/server/node_modules/@iconify/utils/lib/svg/pretty.js +55 -0
  570. package/.output/server/node_modules/@iconify/utils/lib/svg/size.js +28 -0
  571. package/.output/server/node_modules/@iconify/utils/lib/svg/trim.js +8 -0
  572. package/.output/server/node_modules/@iconify/utils/lib/svg/url.js +23 -0
  573. package/.output/server/node_modules/@iconify/utils/lib/svg/viewbox.js +9 -0
  574. package/.output/server/node_modules/@iconify/utils/package.json +88 -417
  575. package/.output/server/node_modules/@img/colour/color.cjs +1594 -0
  576. package/.output/server/node_modules/@img/colour/index.cjs +1 -0
  577. package/.output/server/node_modules/@img/colour/package.json +45 -0
  578. package/.output/server/node_modules/@img/sharp-win32-x64/LICENSE +191 -0
  579. package/.output/server/node_modules/@img/sharp-win32-x64/lib/libvips-42.dll +0 -0
  580. package/.output/server/node_modules/@img/sharp-win32-x64/lib/libvips-cpp-8.17.3.dll +0 -0
  581. package/.output/server/node_modules/@img/sharp-win32-x64/lib/sharp-win32-x64.node +0 -0
  582. package/.output/server/node_modules/@img/sharp-win32-x64/package.json +39 -0
  583. package/.output/server/node_modules/@img/sharp-win32-x64/versions.json +30 -0
  584. package/.output/server/node_modules/@intlify/core/dist/core.mjs +1 -1
  585. package/.output/server/node_modules/@intlify/core/package.json +3 -3
  586. package/.output/server/node_modules/@intlify/core-base/dist/core-base.mjs +2 -2
  587. package/.output/server/node_modules/@intlify/core-base/package.json +4 -4
  588. package/.output/server/node_modules/@intlify/h3/dist/index.mjs +5 -1
  589. package/.output/server/node_modules/@intlify/h3/package.json +81 -48
  590. package/.output/server/node_modules/@intlify/message-compiler/dist/message-compiler.mjs +1 -1
  591. package/.output/server/node_modules/@intlify/message-compiler/package.json +2 -2
  592. package/.output/server/node_modules/@intlify/shared/dist/shared.mjs +1 -1
  593. package/.output/server/node_modules/@intlify/shared/package.json +1 -1
  594. package/.output/server/node_modules/@neondatabase/serverless/package.json +4 -4
  595. package/.output/server/node_modules/@poppinss/exception/build/index.js +36 -55
  596. package/.output/server/node_modules/@poppinss/exception/package.json +19 -16
  597. package/.output/server/node_modules/@poppinss/string/build/index.js +2 -6
  598. package/.output/server/node_modules/@poppinss/string/build/string-ArFSN0fl.js +464 -0
  599. package/.output/server/node_modules/@poppinss/string/package.json +28 -25
  600. package/.output/server/node_modules/@shikijs/core/dist/index.mjs +144 -41
  601. package/.output/server/node_modules/@shikijs/core/package.json +2 -2
  602. package/.output/server/node_modules/@shikijs/engine-javascript/package.json +3 -3
  603. package/.output/server/node_modules/@shikijs/engine-oniguruma/dist/index.mjs +3 -3
  604. package/.output/server/node_modules/@shikijs/engine-oniguruma/package.json +2 -2
  605. package/.output/server/node_modules/@shikijs/langs/dist/vue.mjs +1 -1
  606. package/.output/server/node_modules/@shikijs/langs/package.json +6 -3
  607. package/.output/server/node_modules/@shikijs/themes/dist/material-theme-lighter.mjs +2 -0
  608. package/.output/server/node_modules/@shikijs/themes/dist/material-theme-palenight.mjs +2 -0
  609. package/.output/server/node_modules/@shikijs/themes/dist/material-theme.mjs +2 -0
  610. package/.output/server/node_modules/@shikijs/themes/package.json +3 -3
  611. package/.output/server/node_modules/@shikijs/transformers/dist/index.mjs +64 -26
  612. package/.output/server/node_modules/@shikijs/transformers/package.json +3 -3
  613. package/.output/server/node_modules/@shikijs/types/package.json +1 -1
  614. package/.output/server/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js +128 -106
  615. package/.output/server/node_modules/@vue/compiler-core/package.json +5 -5
  616. package/.output/server/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js +54 -54
  617. package/.output/server/node_modules/@vue/compiler-dom/package.json +3 -3
  618. package/.output/server/node_modules/@vue/compiler-ssr/dist/compiler-ssr.cjs.js +35 -33
  619. package/.output/server/node_modules/@vue/compiler-ssr/package.json +3 -3
  620. package/.output/server/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js +64 -18
  621. package/.output/server/node_modules/@vue/reactivity/package.json +2 -2
  622. package/.output/server/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js +2048 -2010
  623. package/.output/server/node_modules/@vue/runtime-core/package.json +3 -3
  624. package/.output/server/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +58 -29
  625. package/.output/server/node_modules/@vue/runtime-dom/package.json +5 -5
  626. package/.output/server/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +1 -1
  627. package/.output/server/node_modules/@vue/server-renderer/package.json +4 -4
  628. package/.output/server/node_modules/@vue/shared/dist/shared.cjs.prod.js +1 -1
  629. package/.output/server/node_modules/@vue/shared/package.json +1 -1
  630. package/.output/server/node_modules/css-select/lib/esm/attributes.js +222 -0
  631. package/.output/server/node_modules/css-select/lib/esm/compile.js +115 -0
  632. package/.output/server/node_modules/css-select/lib/esm/general.js +144 -0
  633. package/.output/server/node_modules/css-select/lib/esm/index.js +115 -0
  634. package/.output/server/node_modules/css-select/lib/esm/package.json +1 -0
  635. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js +35 -0
  636. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/filters.js +143 -0
  637. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/index.js +40 -0
  638. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js +79 -0
  639. package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js +94 -0
  640. package/.output/server/node_modules/css-select/lib/esm/sort.js +79 -0
  641. package/.output/server/node_modules/csso/lib/clean/Atrule.js +69 -0
  642. package/.output/server/node_modules/csso/lib/clean/Comment.js +3 -0
  643. package/.output/server/node_modules/csso/lib/clean/Declaration.js +14 -0
  644. package/.output/server/node_modules/csso/lib/clean/Raw.js +9 -0
  645. package/.output/server/node_modules/csso/lib/clean/Rule.js +100 -0
  646. package/.output/server/node_modules/csso/lib/clean/TypeSelector.js +19 -0
  647. package/.output/server/node_modules/csso/lib/clean/WhiteSpace.js +3 -0
  648. package/.output/server/node_modules/csso/lib/clean/index.js +28 -0
  649. package/.output/server/node_modules/csso/lib/clean/utils.js +7 -0
  650. package/.output/server/node_modules/csso/lib/compress.js +196 -0
  651. package/.output/server/node_modules/csso/lib/index.js +131 -0
  652. package/.output/server/node_modules/csso/lib/replace/Atrule.js +9 -0
  653. package/.output/server/node_modules/csso/lib/replace/AttributeSelector.js +28 -0
  654. package/.output/server/node_modules/csso/lib/replace/Dimension.js +63 -0
  655. package/.output/server/node_modules/csso/lib/replace/Number.js +40 -0
  656. package/.output/server/node_modules/csso/lib/replace/Percentage.js +37 -0
  657. package/.output/server/node_modules/csso/lib/replace/Url.js +4 -0
  658. package/.output/server/node_modules/csso/lib/replace/Value.js +26 -0
  659. package/.output/server/node_modules/csso/lib/replace/atrule/keyframes.js +21 -0
  660. package/.output/server/node_modules/csso/lib/replace/color.js +498 -0
  661. package/.output/server/node_modules/csso/lib/replace/index.js +32 -0
  662. package/.output/server/node_modules/csso/lib/replace/property/background.js +50 -0
  663. package/.output/server/node_modules/csso/lib/replace/property/border.js +16 -0
  664. package/.output/server/node_modules/csso/lib/replace/property/font-weight.js +22 -0
  665. package/.output/server/node_modules/csso/lib/replace/property/font.js +30 -0
  666. package/.output/server/node_modules/csso/lib/restructure/1-mergeAtrule.js +106 -0
  667. package/.output/server/node_modules/csso/lib/restructure/2-initialMergeRuleset.js +53 -0
  668. package/.output/server/node_modules/csso/lib/restructure/3-disjoinRuleset.js +42 -0
  669. package/.output/server/node_modules/csso/lib/restructure/4-restructShorthand.js +425 -0
  670. package/.output/server/node_modules/csso/lib/restructure/6-restructBlock.js +308 -0
  671. package/.output/server/node_modules/csso/lib/restructure/7-mergeRuleset.js +86 -0
  672. package/.output/server/node_modules/csso/lib/restructure/8-restructRuleset.js +176 -0
  673. package/.output/server/node_modules/csso/lib/restructure/index.js +35 -0
  674. package/.output/server/node_modules/csso/lib/restructure/prepare/createDeclarationIndexer.js +31 -0
  675. package/.output/server/node_modules/csso/lib/restructure/prepare/index.js +41 -0
  676. package/.output/server/node_modules/csso/lib/restructure/prepare/processSelector.js +97 -0
  677. package/.output/server/node_modules/csso/lib/restructure/prepare/specificity.js +131 -0
  678. package/.output/server/node_modules/csso/lib/restructure/utils.js +142 -0
  679. package/.output/server/node_modules/csso/lib/syntax.js +60 -0
  680. package/.output/server/node_modules/csso/lib/usage.js +71 -0
  681. package/.output/server/node_modules/csso/lib/utils.js +2 -0
  682. package/.output/server/node_modules/csso/lib/version.js +5 -0
  683. package/.output/server/node_modules/devalue/index.js +1 -0
  684. package/.output/server/node_modules/devalue/package.json +1 -1
  685. package/.output/server/node_modules/devalue/src/parse.js +5 -1
  686. package/.output/server/node_modules/devalue/src/stringify.js +10 -6
  687. package/.output/server/node_modules/devalue/src/uneval.js +10 -6
  688. package/.output/server/node_modules/devalue/src/utils.js +5 -1
  689. package/.output/server/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
  690. package/.output/server/node_modules/dom-serializer/lib/esm/index.js +190 -0
  691. package/.output/server/node_modules/dom-serializer/lib/esm/package.json +1 -0
  692. package/.output/server/node_modules/domelementtype/lib/esm/index.js +51 -0
  693. package/.output/server/node_modules/domelementtype/lib/esm/package.json +1 -0
  694. package/.output/server/node_modules/domhandler/lib/esm/index.js +146 -0
  695. package/.output/server/node_modules/domhandler/lib/esm/node.js +338 -0
  696. package/.output/server/node_modules/domhandler/lib/esm/package.json +1 -0
  697. package/.output/server/node_modules/domutils/lib/esm/feeds.js +183 -0
  698. package/.output/server/node_modules/domutils/lib/esm/helpers.js +136 -0
  699. package/.output/server/node_modules/domutils/lib/esm/index.js +10 -0
  700. package/.output/server/node_modules/domutils/lib/esm/legacy.js +152 -0
  701. package/.output/server/node_modules/domutils/lib/esm/manipulation.js +134 -0
  702. package/.output/server/node_modules/domutils/lib/esm/package.json +1 -0
  703. package/.output/server/node_modules/domutils/lib/esm/querying.js +142 -0
  704. package/.output/server/node_modules/domutils/lib/esm/stringify.js +81 -0
  705. package/.output/server/node_modules/domutils/lib/esm/traversal.js +112 -0
  706. package/.output/server/node_modules/fast-xml-parser/package.json +4 -2
  707. package/.output/server/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +40 -18
  708. package/.output/server/node_modules/hast-util-to-parse5/lib/index.js +13 -19
  709. package/.output/server/node_modules/hast-util-to-parse5/package.json +8 -7
  710. package/.output/server/node_modules/ipx/dist/index.mjs +1 -1
  711. package/.output/server/node_modules/ipx/dist/shared/ipx.CXJeaylD.mjs +764 -0
  712. package/.output/server/node_modules/ipx/package.json +29 -30
  713. package/.output/server/node_modules/jose/dist/webapi/index.js +4 -2
  714. package/.output/server/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +12 -12
  715. package/.output/server/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +17 -13
  716. package/.output/server/node_modules/jose/dist/webapi/jwe/general/decrypt.js +1 -1
  717. package/.output/server/node_modules/jose/dist/webapi/jwe/general/encrypt.js +16 -16
  718. package/.output/server/node_modules/jose/dist/webapi/jwk/embedded.js +1 -1
  719. package/.output/server/node_modules/jose/dist/webapi/jwk/thumbprint.js +5 -5
  720. package/.output/server/node_modules/jose/dist/webapi/jwks/local.js +1 -1
  721. package/.output/server/node_modules/jose/dist/webapi/jwks/remote.js +2 -2
  722. package/.output/server/node_modules/jose/dist/webapi/jws/flattened/sign.js +23 -17
  723. package/.output/server/node_modules/jose/dist/webapi/jws/flattened/verify.js +13 -9
  724. package/.output/server/node_modules/jose/dist/webapi/jws/general/verify.js +1 -1
  725. package/.output/server/node_modules/jose/dist/webapi/key/export.js +1 -1
  726. package/.output/server/node_modules/jose/dist/webapi/key/generate_key_pair.js +3 -3
  727. package/.output/server/node_modules/jose/dist/webapi/key/import.js +5 -5
  728. package/.output/server/node_modules/jose/dist/webapi/lib/aesgcmkw.js +4 -4
  729. package/.output/server/node_modules/jose/dist/webapi/lib/asn1.js +3 -7
  730. package/.output/server/node_modules/jose/dist/webapi/lib/buffer_utils.js +11 -0
  731. package/.output/server/node_modules/jose/dist/webapi/lib/cek.js +2 -2
  732. package/.output/server/node_modules/jose/dist/webapi/lib/check_cek_length.js +2 -2
  733. package/.output/server/node_modules/jose/dist/webapi/lib/check_iv_length.js +2 -2
  734. package/.output/server/node_modules/jose/dist/webapi/lib/check_key_length.js +2 -2
  735. package/.output/server/node_modules/jose/dist/webapi/lib/check_key_type.js +15 -19
  736. package/.output/server/node_modules/jose/dist/webapi/lib/crypto_key.js +2 -6
  737. package/.output/server/node_modules/jose/dist/webapi/lib/decrypt.js +7 -7
  738. package/.output/server/node_modules/jose/dist/webapi/lib/decrypt_key_management.js +4 -4
  739. package/.output/server/node_modules/jose/dist/webapi/lib/digest.js +2 -2
  740. package/.output/server/node_modules/jose/dist/webapi/lib/ecdhes.js +5 -5
  741. package/.output/server/node_modules/jose/dist/webapi/lib/encrypt.js +8 -8
  742. package/.output/server/node_modules/jose/dist/webapi/lib/encrypt_key_management.js +4 -4
  743. package/.output/server/node_modules/jose/dist/webapi/lib/get_sign_verify_key.js +3 -3
  744. package/.output/server/node_modules/jose/dist/webapi/lib/invalid_key_input.js +2 -6
  745. package/.output/server/node_modules/jose/dist/webapi/lib/is_disjoint.js +2 -2
  746. package/.output/server/node_modules/jose/dist/webapi/lib/is_jwk.js +6 -14
  747. package/.output/server/node_modules/jose/dist/webapi/lib/is_key_like.js +11 -8
  748. package/.output/server/node_modules/jose/dist/webapi/lib/is_object.js +3 -5
  749. package/.output/server/node_modules/jose/dist/webapi/lib/iv.js +1 -1
  750. package/.output/server/node_modules/jose/dist/webapi/lib/jwk_to_key.js +2 -2
  751. package/.output/server/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +59 -6
  752. package/.output/server/node_modules/jose/dist/webapi/lib/key_to_jwk.js +2 -2
  753. package/.output/server/node_modules/jose/dist/webapi/lib/normalize_key.js +4 -4
  754. package/.output/server/node_modules/jose/dist/webapi/lib/pbes2kw.js +5 -3
  755. package/.output/server/node_modules/jose/dist/webapi/lib/rsaes.js +1 -1
  756. package/.output/server/node_modules/jose/dist/webapi/lib/sign.js +6 -6
  757. package/.output/server/node_modules/jose/dist/webapi/lib/subtle_dsa.js +2 -2
  758. package/.output/server/node_modules/jose/dist/webapi/lib/validate_algorithms.js +2 -2
  759. package/.output/server/node_modules/jose/dist/webapi/lib/validate_crit.js +2 -2
  760. package/.output/server/node_modules/jose/dist/webapi/lib/verify.js +6 -6
  761. package/.output/server/node_modules/jose/dist/webapi/util/base64url.js +1 -1
  762. package/.output/server/node_modules/jose/dist/webapi/util/decode_jwt.js +1 -1
  763. package/.output/server/node_modules/jose/dist/webapi/util/decode_protected_header.js +1 -1
  764. package/.output/server/node_modules/jose/package.json +1 -1
  765. package/.output/server/node_modules/mdast-util-to-hast/lib/footer.js +2 -4
  766. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +3 -6
  767. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/break.js +3 -7
  768. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/code.js +8 -9
  769. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/delete.js +3 -6
  770. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +3 -6
  771. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +3 -3
  772. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/heading.js +3 -6
  773. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/html.js +4 -7
  774. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +3 -5
  775. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/image.js +3 -4
  776. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/index.js +5 -1
  777. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +3 -7
  778. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +3 -5
  779. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/link.js +3 -4
  780. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +3 -9
  781. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/list.js +3 -7
  782. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +3 -6
  783. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/root.js +3 -7
  784. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/strong.js +3 -6
  785. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +3 -6
  786. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +3 -9
  787. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table.js +3 -3
  788. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/text.js +3 -4
  789. package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +3 -6
  790. package/.output/server/node_modules/mdast-util-to-hast/lib/index.js +3 -3
  791. package/.output/server/node_modules/mdast-util-to-hast/lib/revert.js +3 -9
  792. package/.output/server/node_modules/mdast-util-to-hast/lib/state.js +19 -16
  793. package/.output/server/node_modules/mdast-util-to-hast/package.json +2 -1
  794. package/.output/server/node_modules/node-mock-http/package.json +10 -10
  795. package/.output/server/node_modules/nth-check/lib/esm/compile.js +113 -0
  796. package/.output/server/node_modules/nth-check/lib/esm/index.js +63 -0
  797. package/.output/server/node_modules/nth-check/lib/esm/package.json +1 -0
  798. package/.output/server/node_modules/nth-check/lib/esm/parse.js +73 -0
  799. package/.output/server/node_modules/oauth4webapi/build/index.js +41 -30
  800. package/.output/server/node_modules/oauth4webapi/package.json +14 -15
  801. package/.output/server/node_modules/ofetch/dist/node.mjs +3 -3
  802. package/.output/server/node_modules/ofetch/dist/shared/ofetch.CWycOUEr.mjs +349 -0
  803. package/.output/server/node_modules/ofetch/package.json +19 -19
  804. package/.output/server/node_modules/oniguruma-to-es/dist/esm/index.js +4 -4
  805. package/.output/server/node_modules/oniguruma-to-es/package.json +4 -4
  806. package/.output/server/node_modules/pathe/dist/index.mjs +19 -1
  807. package/.output/server/node_modules/pathe/dist/shared/pathe.M-eThtNZ.mjs +249 -0
  808. package/.output/server/node_modules/pathe/package.json +33 -20
  809. package/.output/server/node_modules/regex/package.json +6 -6
  810. package/.output/server/node_modules/regex/src/atomic.js +6 -3
  811. package/.output/server/node_modules/sax/lib/sax.js +1697 -0
  812. package/.output/server/node_modules/sax/package.json +28 -0
  813. package/.output/server/node_modules/semver/classes/comparator.js +143 -0
  814. package/.output/server/node_modules/semver/classes/range.js +557 -0
  815. package/.output/server/node_modules/semver/functions/cmp.js +54 -0
  816. package/.output/server/node_modules/semver/functions/eq.js +5 -0
  817. package/.output/server/node_modules/semver/functions/gt.js +5 -0
  818. package/.output/server/node_modules/semver/functions/lt.js +5 -0
  819. package/.output/server/node_modules/semver/functions/lte.js +5 -0
  820. package/.output/server/node_modules/semver/functions/neq.js +5 -0
  821. package/.output/server/node_modules/semver/functions/satisfies.js +12 -0
  822. package/.output/server/node_modules/semver/internal/lrucache.js +42 -0
  823. package/.output/server/node_modules/sharp/lib/channel.js +10 -7
  824. package/.output/server/node_modules/sharp/lib/colour.js +42 -31
  825. package/.output/server/node_modules/sharp/lib/composite.js +12 -10
  826. package/.output/server/node_modules/sharp/lib/constructor.js +92 -32
  827. package/.output/server/node_modules/sharp/lib/index.js +4 -4
  828. package/.output/server/node_modules/sharp/lib/input.js +252 -74
  829. package/.output/server/node_modules/sharp/lib/is.js +45 -57
  830. package/.output/server/node_modules/sharp/lib/libvips.js +133 -66
  831. package/.output/server/node_modules/sharp/lib/operation.js +158 -61
  832. package/.output/server/node_modules/sharp/lib/output.js +350 -97
  833. package/.output/server/node_modules/sharp/lib/resize.js +73 -60
  834. package/.output/server/node_modules/sharp/lib/sharp.js +110 -27
  835. package/.output/server/node_modules/sharp/lib/utility.js +47 -43
  836. package/.output/server/node_modules/sharp/package.json +74 -76
  837. package/.output/server/node_modules/shiki/package.json +9 -9
  838. package/.output/server/node_modules/strnum/package.json +1 -1
  839. package/.output/server/node_modules/strnum/strnum.js +1 -1
  840. package/.output/server/node_modules/svgo/lib/builtin.js +116 -56
  841. package/.output/server/node_modules/svgo/lib/parser.js +40 -94
  842. package/.output/server/node_modules/svgo/lib/path.js +45 -63
  843. package/.output/server/node_modules/svgo/lib/stringifier.js +116 -113
  844. package/.output/server/node_modules/svgo/lib/style.js +51 -63
  845. package/.output/server/node_modules/svgo/lib/svgo/css-select-adapter.js +82 -59
  846. package/.output/server/node_modules/svgo/lib/svgo/plugins.js +21 -11
  847. package/.output/server/node_modules/svgo/lib/svgo/tools.js +39 -43
  848. package/.output/server/node_modules/svgo/lib/svgo-node.js +44 -31
  849. package/.output/server/node_modules/svgo/lib/svgo.js +55 -14
  850. package/.output/server/node_modules/svgo/lib/types.js +1 -0
  851. package/.output/server/node_modules/svgo/lib/util/map-nodes-to-parents.js +29 -0
  852. package/.output/server/node_modules/svgo/lib/util/visit.js +36 -0
  853. package/.output/server/node_modules/svgo/lib/version.js +7 -0
  854. package/.output/server/node_modules/svgo/lib/xast.js +32 -66
  855. package/.output/server/node_modules/svgo/package.json +68 -35
  856. package/.output/server/node_modules/svgo/plugins/_collections.js +150 -34
  857. package/.output/server/node_modules/svgo/plugins/_path.js +206 -173
  858. package/.output/server/node_modules/svgo/plugins/_transforms.js +470 -125
  859. package/.output/server/node_modules/svgo/plugins/addAttributesToSVGElement.js +13 -9
  860. package/.output/server/node_modules/svgo/plugins/addClassesToSVGElement.js +16 -8
  861. package/.output/server/node_modules/svgo/plugins/applyTransforms.js +26 -38
  862. package/.output/server/node_modules/svgo/plugins/cleanupAttrs.js +11 -7
  863. package/.output/server/node_modules/svgo/plugins/cleanupEnableBackground.js +12 -13
  864. package/.output/server/node_modules/svgo/plugins/cleanupIds.js +25 -24
  865. package/.output/server/node_modules/svgo/plugins/cleanupListOfValues.js +19 -16
  866. package/.output/server/node_modules/svgo/plugins/cleanupNumericValues.js +19 -18
  867. package/.output/server/node_modules/svgo/plugins/collapseGroups.js +30 -31
  868. package/.output/server/node_modules/svgo/plugins/convertColors.js +51 -17
  869. package/.output/server/node_modules/svgo/plugins/convertEllipseToCircle.js +4 -6
  870. package/.output/server/node_modules/svgo/plugins/convertOneStopGradients.js +13 -24
  871. package/.output/server/node_modules/svgo/plugins/convertPathData.js +323 -261
  872. package/.output/server/node_modules/svgo/plugins/convertShapeToPath.js +22 -29
  873. package/.output/server/node_modules/svgo/plugins/convertStyleToAttrs.js +26 -17
  874. package/.output/server/node_modules/svgo/plugins/convertTransform.js +62 -171
  875. package/.output/server/node_modules/svgo/plugins/inlineStyles.js +33 -30
  876. package/.output/server/node_modules/svgo/plugins/mergePaths.js +36 -15
  877. package/.output/server/node_modules/svgo/plugins/mergeStyles.js +9 -26
  878. package/.output/server/node_modules/svgo/plugins/minifyStyles.js +30 -16
  879. package/.output/server/node_modules/svgo/plugins/moveElemsAttrsToGroup.js +13 -12
  880. package/.output/server/node_modules/svgo/plugins/moveGroupAttrsToElems.js +8 -9
  881. package/.output/server/node_modules/svgo/plugins/prefixIds.js +26 -21
  882. package/.output/server/node_modules/svgo/plugins/preset-default.js +37 -42
  883. package/.output/server/node_modules/svgo/plugins/removeAttributesBySelector.js +5 -7
  884. package/.output/server/node_modules/svgo/plugins/removeAttrs.js +13 -11
  885. package/.output/server/node_modules/svgo/plugins/removeComments.js +9 -6
  886. package/.output/server/node_modules/svgo/plugins/removeDeprecatedAttrs.js +120 -0
  887. package/.output/server/node_modules/svgo/plugins/removeDesc.js +13 -10
  888. package/.output/server/node_modules/svgo/plugins/removeDimensions.js +5 -7
  889. package/.output/server/node_modules/svgo/plugins/removeDoctype.js +5 -7
  890. package/.output/server/node_modules/svgo/plugins/removeEditorsNSData.js +12 -10
  891. package/.output/server/node_modules/svgo/plugins/removeElementsByAttr.js +10 -6
  892. package/.output/server/node_modules/svgo/plugins/removeEmptyAttrs.js +5 -7
  893. package/.output/server/node_modules/svgo/plugins/removeEmptyContainers.js +21 -13
  894. package/.output/server/node_modules/svgo/plugins/removeEmptyText.js +11 -6
  895. package/.output/server/node_modules/svgo/plugins/removeHiddenElems.js +56 -37
  896. package/.output/server/node_modules/svgo/plugins/removeMetadata.js +5 -7
  897. package/.output/server/node_modules/svgo/plugins/removeNonInheritableGroupAttrs.js +8 -10
  898. package/.output/server/node_modules/svgo/plugins/removeOffCanvasPaths.js +14 -21
  899. package/.output/server/node_modules/svgo/plugins/removeRasterImages.js +5 -7
  900. package/.output/server/node_modules/svgo/plugins/removeScripts.js +63 -0
  901. package/.output/server/node_modules/svgo/plugins/removeStyleElement.js +5 -7
  902. package/.output/server/node_modules/svgo/plugins/removeTitle.js +5 -7
  903. package/.output/server/node_modules/svgo/plugins/removeUnknownsAndDefaults.js +32 -30
  904. package/.output/server/node_modules/svgo/plugins/removeUnusedNS.js +5 -9
  905. package/.output/server/node_modules/svgo/plugins/removeUselessDefs.js +14 -29
  906. package/.output/server/node_modules/svgo/plugins/removeUselessStrokeAndFill.js +17 -11
  907. package/.output/server/node_modules/svgo/plugins/removeViewBox.js +5 -7
  908. package/.output/server/node_modules/svgo/plugins/removeXMLNS.js +4 -6
  909. package/.output/server/node_modules/svgo/plugins/removeXMLProcInst.js +5 -7
  910. package/.output/server/node_modules/svgo/plugins/removeXlink.js +15 -14
  911. package/.output/server/node_modules/svgo/plugins/reusePaths.js +9 -29
  912. package/.output/server/node_modules/svgo/plugins/sortAttrs.js +15 -10
  913. package/.output/server/node_modules/svgo/plugins/sortDefsChildren.js +8 -11
  914. package/.output/server/node_modules/unhead/dist/plugins.mjs +2 -2
  915. package/.output/server/node_modules/unhead/dist/server.mjs +3 -3
  916. package/.output/server/node_modules/unhead/dist/shared/unhead.CGCfDSEL.mjs +180 -0
  917. package/.output/server/node_modules/unhead/dist/shared/unhead.CYpwL2hc.mjs +194 -0
  918. package/.output/server/node_modules/unhead/dist/shared/unhead.CbpEuj3y.mjs +71 -0
  919. package/.output/server/node_modules/unhead/dist/shared/unhead.ckV6dpEQ.mjs +166 -0
  920. package/.output/server/node_modules/unhead/dist/utils.mjs +2 -2
  921. package/.output/server/node_modules/unhead/package.json +1 -1
  922. package/.output/server/node_modules/vue/dist/vue.cjs.js +1 -1
  923. package/.output/server/node_modules/vue/dist/vue.cjs.prod.js +1 -1
  924. package/.output/server/node_modules/vue/package.json +6 -6
  925. package/.output/server/node_modules/vue-router/dist/devtools-EWN81iOl.mjs +1220 -0
  926. package/.output/server/node_modules/vue-router/dist/vue-router.mjs +3 -3
  927. package/.output/server/node_modules/vue-router/package.json +2 -3
  928. package/.output/server/node_modules/yaml/dist/compose/compose-collection.js +1 -1
  929. package/.output/server/node_modules/yaml/dist/compose/resolve-block-seq.js +1 -1
  930. package/.output/server/node_modules/yaml/dist/compose/resolve-flow-collection.js +2 -2
  931. package/.output/server/node_modules/yaml/dist/errors.js +1 -1
  932. package/.output/server/node_modules/yaml/dist/nodes/Alias.js +1 -1
  933. package/.output/server/node_modules/yaml/dist/parse/parser.js +2 -2
  934. package/.output/server/node_modules/yaml/dist/stringify/stringifyNumber.js +1 -1
  935. package/.output/server/node_modules/yaml/dist/stringify/stringifyPair.js +1 -1
  936. package/.output/server/node_modules/yaml/package.json +4 -4
  937. package/.output/server/package.json +50 -62
  938. package/app/components/ignis/IgnisContentFeatures.vue +1 -0
  939. package/bin/set-app-vue.js +1 -1
  940. package/bin/set-css.js +1 -1
  941. package/bin/set-eslint.js +1 -1
  942. package/bin/setup.js +3 -3
  943. package/eslint.config.mjs +7 -4
  944. package/features.ts +13 -0
  945. package/i18n/locales/en.json +1 -0
  946. package/nuxt.config.ts +5 -13
  947. package/package.json +14 -12
  948. package/public/_ignis-config.json +7 -1
  949. package/test/config/social.txt +37 -0
  950. package/test/config.test.ts +9 -0
  951. package/test/features/enable-all.txt +1 -1
  952. package/test/features/social.txt +4 -0
  953. package/test/features.test.ts +10 -0
  954. package/vitest.config.ts +1 -3
  955. package/.nuxt/cache/fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-Ih_Po7WkbhDymI0Y_ntmpz__bZJprHiu7_c5N_X6AAA.woff2 +0 -0
  956. package/.nuxt/cache/fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-TnR4PP30hI5UWldZ0knUBrHkvIoiDWYXwn2v1NtCh80.woff2 +0 -0
  957. package/.nuxt/cache/fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-H99o9_8BZXq7ey5UyS99Wn9zX0V0anvpXEqAqavcJlQ.woff2 +0 -0
  958. package/.nuxt/cache/fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-eYLoSJPWhqR5CE0c8XPABls8kE_7Fc7F2x7Gtfsg_8M.woff2 +0 -0
  959. package/.nuxt/cache/fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-s32Y9TxBLZRr_ebRHQ3l3q1g2j_0tPT879PPSBGrj8A.woff2 +0 -0
  960. package/.nuxt/cache/fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-55rzD39AWoqYSkQOLHuoKZUDVcDSlXRKdaymIN2dXes.woff +0 -0
  961. package/.output/public/_fonts/Jtqhy44WKYEjGWTSusP5YJfJv7Wf74QqgkBOI9u_77s-Rl_Bht5SvmaotE20bkavBEAJEEGEa0hcz3d_8yOeXmw.woff +0 -0
  962. package/.output/public/_fonts/ZHaz3DhCHNWhsElqYfuM71rfBBDgjuU2sd34vaYJwQg-71NZaZSGjxzAGjCMnCc2zS5rS_EGA0xHKPGCggWuXik.woff +0 -0
  963. package/.output/public/_fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-BgCmQXkW3N6talUbQSKexB2sHUT0qGEzmM4uMcnDAbI.woff +0 -0
  964. package/.output/public/_nuxt/1vOq3xiE.js +0 -1
  965. package/.output/public/_nuxt/22rhGZdI.js +0 -1
  966. package/.output/public/_nuxt/9eIdSibD.js +0 -1
  967. package/.output/public/_nuxt/BBmTy930.js +0 -35
  968. package/.output/public/_nuxt/BKe83Cjx.js +0 -1
  969. package/.output/public/_nuxt/Bc5GLloR.js +0 -1
  970. package/.output/public/_nuxt/BdG3SY-u.js +0 -1
  971. package/.output/public/_nuxt/BeyOQpYA.js +0 -1
  972. package/.output/public/_nuxt/BqcXd3MY.js +0 -94
  973. package/.output/public/_nuxt/Bz55A4y1.js +0 -1
  974. package/.output/public/_nuxt/C2ybsIQ4.js +0 -1
  975. package/.output/public/_nuxt/C4U5VOMJ.js +0 -1
  976. package/.output/public/_nuxt/CAJsyjAK.js +0 -1
  977. package/.output/public/_nuxt/CD9aBAuy.js +0 -1
  978. package/.output/public/_nuxt/CHOS7x_d.js +0 -1
  979. package/.output/public/_nuxt/CXhUbdF6.js +0 -1
  980. package/.output/public/_nuxt/CZWScI5k.js +0 -1
  981. package/.output/public/_nuxt/DHd34syF.js +0 -1
  982. package/.output/public/_nuxt/DMbgtwAJ.js +0 -1
  983. package/.output/public/_nuxt/DR8jhnFO.js +0 -1
  984. package/.output/public/_nuxt/DTT0LBLY.js +0 -1
  985. package/.output/public/_nuxt/DWV_uL6G.js +0 -6764
  986. package/.output/public/_nuxt/DdpTKqR-.js +0 -1
  987. package/.output/public/_nuxt/Df_NcBcC.js +0 -1
  988. package/.output/public/_nuxt/DhqOMFXQ.js +0 -1
  989. package/.output/public/_nuxt/Dnp9eFDR.js +0 -1
  990. package/.output/public/_nuxt/DnqMs_6O.js +0 -1
  991. package/.output/public/_nuxt/Dq7g_IfY.js +0 -1
  992. package/.output/public/_nuxt/DsAJWnuW.js +0 -1
  993. package/.output/public/_nuxt/DvVg7vM_.js +0 -1
  994. package/.output/public/_nuxt/DwKqLVGx.js +0 -1
  995. package/.output/public/_nuxt/DxzqnQKF.js +0 -1
  996. package/.output/public/_nuxt/ProsePre.D5orA6B_.css +0 -1
  997. package/.output/public/_nuxt/Y0f1tU-r.js +0 -1
  998. package/.output/public/_nuxt/atySmcu6.js +0 -1
  999. package/.output/public/_nuxt/builds/meta/7bab2b8f-93ee-4f44-a604-8cd2b41eac60.json +0 -1
  1000. package/.output/public/_nuxt/entry.CtpkPzPO.css +0 -1
  1001. package/.output/public/_nuxt/error-404.DzDu4Ean.css +0 -1
  1002. package/.output/public/_nuxt/error-500.BdNqqJx7.css +0 -1
  1003. package/.output/public/_nuxt/q3i45eMH.js +0 -1
  1004. package/.output/public/_nuxt/vueform.CkWb7x1C.css +0 -1
  1005. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/convertor/create.cjs +0 -32
  1006. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/data-patch.cjs +0 -7
  1007. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/data.cjs +0 -97
  1008. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/SyntaxError.cjs +0 -16
  1009. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/generate.cjs +0 -135
  1010. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/index.cjs +0 -13
  1011. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/parse.cjs +0 -588
  1012. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/tokenizer.cjs +0 -56
  1013. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/walk.cjs +0 -56
  1014. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/create.cjs +0 -103
  1015. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/sourceMap.cjs +0 -96
  1016. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/token-before.cjs +0 -170
  1017. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/index.cjs +0 -63
  1018. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/Lexer.cjs +0 -459
  1019. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/error.cjs +0 -128
  1020. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-an-plus-b.cjs +0 -235
  1021. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-const.cjs +0 -12
  1022. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-urange.cjs +0 -149
  1023. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic.cjs +0 -573
  1024. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/match-graph.cjs +0 -459
  1025. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/match.cjs +0 -632
  1026. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/prepare-tokens.cjs +0 -54
  1027. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/search.cjs +0 -65
  1028. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/structure.cjs +0 -168
  1029. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/trace.cjs +0 -73
  1030. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/SyntaxError.cjs +0 -69
  1031. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/create.cjs +0 -336
  1032. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/sequence.cjs +0 -47
  1033. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/font-face.cjs +0 -12
  1034. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/import.cjs +0 -37
  1035. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/index.cjs +0 -17
  1036. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/media.cjs +0 -16
  1037. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/page.cjs +0 -16
  1038. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/supports.cjs +0 -77
  1039. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/lexer.cjs +0 -12
  1040. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/mix.cjs +0 -142
  1041. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/parser.cjs +0 -34
  1042. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/walker.cjs +0 -9
  1043. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/create.cjs +0 -56
  1044. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/function/expression.cjs +0 -11
  1045. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/function/var.cjs +0 -43
  1046. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/index.cjs +0 -14
  1047. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AnPlusB.cjs +0 -293
  1048. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Atrule.cjs +0 -103
  1049. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AtrulePrelude.cjs +0 -52
  1050. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AttributeSelector.cjs +0 -148
  1051. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Block.cjs +0 -90
  1052. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Brackets.cjs +0 -38
  1053. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/CDC.cjs +0 -26
  1054. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/CDO.cjs +0 -26
  1055. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/ClassSelector.cjs +0 -31
  1056. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Combinator.cjs +0 -61
  1057. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Comment.cjs +0 -40
  1058. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Declaration.cjs +0 -166
  1059. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/DeclarationList.cjs +0 -50
  1060. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Dimension.cjs +0 -30
  1061. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Function.cjs +0 -45
  1062. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Hash.cjs +0 -30
  1063. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/IdSelector.cjs +0 -33
  1064. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Identifier.cjs +0 -25
  1065. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaFeature.cjs +0 -76
  1066. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaQuery.cjs +0 -61
  1067. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaQueryList.cjs +0 -41
  1068. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Nth.cjs +0 -54
  1069. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Number.cjs +0 -25
  1070. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Operator.cjs +0 -28
  1071. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Parentheses.cjs +0 -38
  1072. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Percentage.cjs +0 -25
  1073. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/PseudoClassSelector.cjs +0 -65
  1074. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/PseudoElementSelector.cjs +0 -67
  1075. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Ratio.cjs +0 -67
  1076. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Raw.cjs +0 -48
  1077. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Rule.cjs +0 -58
  1078. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Selector.cjs +0 -39
  1079. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/SelectorList.cjs +0 -43
  1080. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/String.cjs +0 -26
  1081. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/StyleSheet.cjs +0 -83
  1082. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/TypeSelector.cjs +0 -59
  1083. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/UnicodeRange.cjs +0 -158
  1084. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Url.cjs +0 -54
  1085. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Value.cjs +0 -26
  1086. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/WhiteSpace.cjs +0 -34
  1087. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/index-parse.cjs +0 -85
  1088. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/index.cjs +0 -85
  1089. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/pseudo/index.cjs +0 -52
  1090. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/atrulePrelude.cjs +0 -9
  1091. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/default.cjs +0 -76
  1092. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/index.cjs +0 -11
  1093. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/selector.cjs +0 -84
  1094. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/value.cjs +0 -29
  1095. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/OffsetToLocation.cjs +0 -91
  1096. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/TokenStream.cjs +0 -264
  1097. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/adopt-buffer.cjs +0 -13
  1098. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/char-code-definitions.cjs +0 -231
  1099. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/index.cjs +0 -554
  1100. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/names.cjs +0 -31
  1101. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/types.cjs +0 -57
  1102. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/utils.cjs +0 -261
  1103. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/List.cjs +0 -473
  1104. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/clone.cjs +0 -25
  1105. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/create-custom-error.cjs +0 -18
  1106. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/ident.cjs +0 -102
  1107. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/names.cjs +0 -113
  1108. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/string.cjs +0 -99
  1109. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/url.cjs +0 -108
  1110. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/version.cjs +0 -5
  1111. package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/walker/create.cjs +0 -291
  1112. package/.output/server/node_modules/.nitro/css-tree@2.2.1/data/patch.json +0 -739
  1113. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/convertor/create.cjs +0 -32
  1114. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/data-patch.cjs +0 -7
  1115. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/data.cjs +0 -99
  1116. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/SyntaxError.cjs +0 -16
  1117. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/generate.cjs +0 -135
  1118. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/index.cjs +0 -13
  1119. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/parse.cjs +0 -588
  1120. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/tokenizer.cjs +0 -56
  1121. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/walk.cjs +0 -56
  1122. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/create.cjs +0 -103
  1123. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/sourceMap.cjs +0 -96
  1124. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/token-before.cjs +0 -170
  1125. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/index.cjs +0 -63
  1126. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/Lexer.cjs +0 -470
  1127. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/error.cjs +0 -128
  1128. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-an-plus-b.cjs +0 -235
  1129. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-const.cjs +0 -12
  1130. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-urange.cjs +0 -149
  1131. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic.cjs +0 -573
  1132. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/match-graph.cjs +0 -459
  1133. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/match.cjs +0 -632
  1134. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/prepare-tokens.cjs +0 -54
  1135. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/search.cjs +0 -65
  1136. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/structure.cjs +0 -168
  1137. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/trace.cjs +0 -73
  1138. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/units.cjs +0 -38
  1139. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/SyntaxError.cjs +0 -69
  1140. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/create.cjs +0 -336
  1141. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/sequence.cjs +0 -47
  1142. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/font-face.cjs +0 -12
  1143. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/import.cjs +0 -37
  1144. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/index.cjs +0 -19
  1145. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/media.cjs +0 -16
  1146. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/nest.cjs +0 -16
  1147. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/page.cjs +0 -16
  1148. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/supports.cjs +0 -77
  1149. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/lexer.cjs +0 -12
  1150. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/mix.cjs +0 -119
  1151. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/parser.cjs +0 -34
  1152. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/walker.cjs +0 -9
  1153. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/create.cjs +0 -57
  1154. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/function/expression.cjs +0 -11
  1155. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/function/var.cjs +0 -43
  1156. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/index.cjs +0 -14
  1157. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AnPlusB.cjs +0 -293
  1158. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Atrule.cjs +0 -103
  1159. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AtrulePrelude.cjs +0 -52
  1160. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AttributeSelector.cjs +0 -148
  1161. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Block.cjs +0 -96
  1162. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Brackets.cjs +0 -38
  1163. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/CDC.cjs +0 -26
  1164. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/CDO.cjs +0 -26
  1165. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/ClassSelector.cjs +0 -31
  1166. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Combinator.cjs +0 -61
  1167. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Comment.cjs +0 -40
  1168. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Declaration.cjs +0 -166
  1169. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/DeclarationList.cjs +0 -62
  1170. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Dimension.cjs +0 -30
  1171. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Function.cjs +0 -45
  1172. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Hash.cjs +0 -30
  1173. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/IdSelector.cjs +0 -33
  1174. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Identifier.cjs +0 -25
  1175. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaFeature.cjs +0 -76
  1176. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaQuery.cjs +0 -61
  1177. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaQueryList.cjs +0 -41
  1178. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/NestingSelector.cjs +0 -29
  1179. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Nth.cjs +0 -54
  1180. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Number.cjs +0 -25
  1181. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Operator.cjs +0 -28
  1182. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Parentheses.cjs +0 -38
  1183. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Percentage.cjs +0 -25
  1184. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/PseudoClassSelector.cjs +0 -65
  1185. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/PseudoElementSelector.cjs +0 -67
  1186. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Ratio.cjs +0 -67
  1187. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Raw.cjs +0 -48
  1188. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Rule.cjs +0 -58
  1189. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Selector.cjs +0 -39
  1190. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/SelectorList.cjs +0 -43
  1191. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/String.cjs +0 -26
  1192. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/StyleSheet.cjs +0 -83
  1193. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/TypeSelector.cjs +0 -59
  1194. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/UnicodeRange.cjs +0 -158
  1195. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Url.cjs +0 -54
  1196. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Value.cjs +0 -26
  1197. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/WhiteSpace.cjs +0 -34
  1198. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/index-parse.cjs +0 -87
  1199. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/index.cjs +0 -87
  1200. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/pseudo/index.cjs +0 -54
  1201. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/atrulePrelude.cjs +0 -9
  1202. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/default.cjs +0 -76
  1203. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/index.cjs +0 -11
  1204. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/selector.cjs +0 -88
  1205. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/value.cjs +0 -29
  1206. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/OffsetToLocation.cjs +0 -91
  1207. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/TokenStream.cjs +0 -264
  1208. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/adopt-buffer.cjs +0 -13
  1209. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/char-code-definitions.cjs +0 -231
  1210. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/index.cjs +0 -554
  1211. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/names.cjs +0 -31
  1212. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/types.cjs +0 -57
  1213. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/utils.cjs +0 -261
  1214. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/List.cjs +0 -473
  1215. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/clone.cjs +0 -25
  1216. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/create-custom-error.cjs +0 -18
  1217. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/ident.cjs +0 -102
  1218. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/names.cjs +0 -113
  1219. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/string.cjs +0 -99
  1220. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/url.cjs +0 -108
  1221. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/version.cjs +0 -5
  1222. package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/walker/create.cjs +0 -291
  1223. package/.output/server/node_modules/.nitro/css-tree@2.3.1/data/patch.json +0 -725
  1224. package/.output/server/node_modules/.nitro/css-tree@2.3.1/package.json +0 -126
  1225. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/decode.js +0 -536
  1226. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/decode_codepoint.js +0 -76
  1227. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/encode.js +0 -77
  1228. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/escape.js +0 -122
  1229. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/generated/decode-data-html.js +0 -9
  1230. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/generated/decode-data-xml.js +0 -9
  1231. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/generated/encode-html.js +0 -12
  1232. package/.output/server/node_modules/.nitro/entities@4.5.0/lib/index.js +0 -126
  1233. package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/at-rules.json +0 -620
  1234. package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/properties.json +0 -9297
  1235. package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/syntaxes.json +0 -794
  1236. package/.output/server/node_modules/.nitro/mdn-data@2.0.28/package.json +0 -38
  1237. package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/at-rules.json +0 -620
  1238. package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/properties.json +0 -9626
  1239. package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/syntaxes.json +0 -866
  1240. package/.output/server/node_modules/.nitro/mdn-data@2.0.30/package.json +0 -38
  1241. package/.output/server/node_modules/.nitro/property-information@6.5.0/index.js +0 -18
  1242. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/aria.js +0 -59
  1243. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/find.js +0 -68
  1244. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/hast-to-react.js +0 -28
  1245. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/html.js +0 -322
  1246. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/normalize.js +0 -7
  1247. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/svg.js +0 -567
  1248. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/case-insensitive-transform.js +0 -10
  1249. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/case-sensitive-transform.js +0 -8
  1250. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/create.js +0 -58
  1251. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/defined-info.js +0 -44
  1252. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/info.js +0 -25
  1253. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/merge.js +0 -26
  1254. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/schema.js +0 -28
  1255. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/xlink.js +0 -17
  1256. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/xml.js +0 -9
  1257. package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/xmlns.js +0 -9
  1258. package/.output/server/node_modules/.nitro/property-information@6.5.0/package.json +0 -93
  1259. package/.output/server/node_modules/.nitro/property-information@7.1.0/lib/util/types.js +0 -13
  1260. package/.output/server/node_modules/@iconify/utils/lib/colors/index.mjs +0 -350
  1261. package/.output/server/node_modules/@iconify/utils/lib/colors/keywords.mjs +0 -188
  1262. package/.output/server/node_modules/@iconify/utils/lib/css/common.mjs +0 -90
  1263. package/.output/server/node_modules/@iconify/utils/lib/css/format.mjs +0 -38
  1264. package/.output/server/node_modules/@iconify/utils/lib/css/icon.mjs +0 -76
  1265. package/.output/server/node_modules/@iconify/utils/lib/css/icons.mjs +0 -168
  1266. package/.output/server/node_modules/@iconify/utils/lib/customisations/bool.mjs +0 -22
  1267. package/.output/server/node_modules/@iconify/utils/lib/customisations/defaults.mjs +0 -14
  1268. package/.output/server/node_modules/@iconify/utils/lib/customisations/flip.mjs +0 -16
  1269. package/.output/server/node_modules/@iconify/utils/lib/customisations/merge.mjs +0 -22
  1270. package/.output/server/node_modules/@iconify/utils/lib/customisations/rotate.mjs +0 -33
  1271. package/.output/server/node_modules/@iconify/utils/lib/emoji/cleanup.mjs +0 -51
  1272. package/.output/server/node_modules/@iconify/utils/lib/emoji/convert.mjs +0 -84
  1273. package/.output/server/node_modules/@iconify/utils/lib/emoji/data.mjs +0 -16
  1274. package/.output/server/node_modules/@iconify/utils/lib/emoji/format.mjs +0 -44
  1275. package/.output/server/node_modules/@iconify/utils/lib/emoji/parse.mjs +0 -58
  1276. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/base.mjs +0 -231
  1277. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/create.mjs +0 -31
  1278. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/numbers.mjs +0 -164
  1279. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/similar.mjs +0 -216
  1280. package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/tree.mjs +0 -113
  1281. package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/find.mjs +0 -104
  1282. package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/replace.mjs +0 -34
  1283. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/components.mjs +0 -75
  1284. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/missing.mjs +0 -97
  1285. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/name.mjs +0 -54
  1286. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/parse.mjs +0 -97
  1287. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/similar.mjs +0 -45
  1288. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/tree.mjs +0 -105
  1289. package/.output/server/node_modules/@iconify/utils/lib/emoji/test/variations.mjs +0 -54
  1290. package/.output/server/node_modules/@iconify/utils/lib/icon/defaults.mjs +0 -24
  1291. package/.output/server/node_modules/@iconify/utils/lib/icon/merge.mjs +0 -20
  1292. package/.output/server/node_modules/@iconify/utils/lib/icon/name.mjs +0 -53
  1293. package/.output/server/node_modules/@iconify/utils/lib/icon/square.mjs +0 -23
  1294. package/.output/server/node_modules/@iconify/utils/lib/icon/transformations.mjs +0 -16
  1295. package/.output/server/node_modules/@iconify/utils/lib/icon-set/convert-info.mjs +0 -182
  1296. package/.output/server/node_modules/@iconify/utils/lib/icon-set/expand.mjs +0 -22
  1297. package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icon.mjs +0 -28
  1298. package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icons.mjs +0 -46
  1299. package/.output/server/node_modules/@iconify/utils/lib/icon-set/minify.mjs +0 -66
  1300. package/.output/server/node_modules/@iconify/utils/lib/icon-set/parse.mjs +0 -51
  1301. package/.output/server/node_modules/@iconify/utils/lib/icon-set/tree.mjs +0 -23
  1302. package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate-basic.mjs +0 -62
  1303. package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate.mjs +0 -161
  1304. package/.output/server/node_modules/@iconify/utils/lib/index.mjs +0 -64
  1305. package/.output/server/node_modules/@iconify/utils/lib/loader/custom.mjs +0 -50
  1306. package/.output/server/node_modules/@iconify/utils/lib/loader/loader.mjs +0 -59
  1307. package/.output/server/node_modules/@iconify/utils/lib/loader/modern.mjs +0 -80
  1308. package/.output/server/node_modules/@iconify/utils/lib/loader/utils.mjs +0 -92
  1309. package/.output/server/node_modules/@iconify/utils/lib/misc/objects.mjs +0 -30
  1310. package/.output/server/node_modules/@iconify/utils/lib/misc/strings.mjs +0 -17
  1311. package/.output/server/node_modules/@iconify/utils/lib/misc/title.mjs +0 -5
  1312. package/.output/server/node_modules/@iconify/utils/lib/svg/build.mjs +0 -119
  1313. package/.output/server/node_modules/@iconify/utils/lib/svg/defs.mjs +0 -30
  1314. package/.output/server/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.mjs +0 -20
  1315. package/.output/server/node_modules/@iconify/utils/lib/svg/html.mjs +0 -9
  1316. package/.output/server/node_modules/@iconify/utils/lib/svg/id.mjs +0 -28
  1317. package/.output/server/node_modules/@iconify/utils/lib/svg/inner-html.mjs +0 -19
  1318. package/.output/server/node_modules/@iconify/utils/lib/svg/parse.mjs +0 -83
  1319. package/.output/server/node_modules/@iconify/utils/lib/svg/pretty.mjs +0 -70
  1320. package/.output/server/node_modules/@iconify/utils/lib/svg/size.mjs +0 -40
  1321. package/.output/server/node_modules/@iconify/utils/lib/svg/trim.mjs +0 -5
  1322. package/.output/server/node_modules/@iconify/utils/lib/svg/url.mjs +0 -11
  1323. package/.output/server/node_modules/@iconify/utils/lib/svg/viewbox.mjs +0 -8
  1324. package/.output/server/node_modules/@lukeed/ms/dist/index.mjs +0 -34
  1325. package/.output/server/node_modules/@lukeed/ms/package.json +0 -48
  1326. package/.output/server/node_modules/@poppinss/string/build/chunk-LJJE2S3U.js +0 -407
  1327. package/.output/server/node_modules/@shikijs/themes/dist/github-dark.mjs +0 -2
  1328. package/.output/server/node_modules/@shikijs/themes/dist/github-light.mjs +0 -2
  1329. package/.output/server/node_modules/@trysound/sax/lib/sax.js +0 -1413
  1330. package/.output/server/node_modules/@trysound/sax/package.json +0 -30
  1331. package/.output/server/node_modules/bytes/index.js +0 -170
  1332. package/.output/server/node_modules/bytes/package.json +0 -42
  1333. package/.output/server/node_modules/color/index.js +0 -496
  1334. package/.output/server/node_modules/color/package.json +0 -47
  1335. package/.output/server/node_modules/color-convert/conversions.js +0 -839
  1336. package/.output/server/node_modules/color-convert/index.js +0 -81
  1337. package/.output/server/node_modules/color-convert/package.json +0 -48
  1338. package/.output/server/node_modules/color-convert/route.js +0 -97
  1339. package/.output/server/node_modules/color-name/index.js +0 -152
  1340. package/.output/server/node_modules/color-name/package.json +0 -28
  1341. package/.output/server/node_modules/color-string/index.js +0 -242
  1342. package/.output/server/node_modules/color-string/package.json +0 -39
  1343. package/.output/server/node_modules/css-select/lib/attributes.js +0 -236
  1344. package/.output/server/node_modules/css-select/lib/compile.js +0 -151
  1345. package/.output/server/node_modules/css-select/lib/general.js +0 -148
  1346. package/.output/server/node_modules/css-select/lib/index.js +0 -154
  1347. package/.output/server/node_modules/css-select/lib/pseudo-selectors/aliases.js +0 -34
  1348. package/.output/server/node_modules/css-select/lib/pseudo-selectors/filters.js +0 -157
  1349. package/.output/server/node_modules/css-select/lib/pseudo-selectors/index.js +0 -46
  1350. package/.output/server/node_modules/css-select/lib/pseudo-selectors/pseudos.js +0 -93
  1351. package/.output/server/node_modules/css-select/lib/pseudo-selectors/subselects.js +0 -112
  1352. package/.output/server/node_modules/css-select/lib/sort.js +0 -84
  1353. package/.output/server/node_modules/csso/cjs/clean/Atrule.cjs +0 -73
  1354. package/.output/server/node_modules/csso/cjs/clean/Comment.cjs +0 -7
  1355. package/.output/server/node_modules/csso/cjs/clean/Declaration.cjs +0 -18
  1356. package/.output/server/node_modules/csso/cjs/clean/Raw.cjs +0 -13
  1357. package/.output/server/node_modules/csso/cjs/clean/Rule.cjs +0 -104
  1358. package/.output/server/node_modules/csso/cjs/clean/TypeSelector.cjs +0 -23
  1359. package/.output/server/node_modules/csso/cjs/clean/WhiteSpace.cjs +0 -7
  1360. package/.output/server/node_modules/csso/cjs/clean/index.cjs +0 -32
  1361. package/.output/server/node_modules/csso/cjs/clean/utils.cjs +0 -12
  1362. package/.output/server/node_modules/csso/cjs/compress.cjs +0 -200
  1363. package/.output/server/node_modules/csso/cjs/index.cjs +0 -127
  1364. package/.output/server/node_modules/csso/cjs/replace/Atrule.cjs +0 -13
  1365. package/.output/server/node_modules/csso/cjs/replace/AttributeSelector.cjs +0 -32
  1366. package/.output/server/node_modules/csso/cjs/replace/Dimension.cjs +0 -67
  1367. package/.output/server/node_modules/csso/cjs/replace/Number.cjs +0 -45
  1368. package/.output/server/node_modules/csso/cjs/replace/Percentage.cjs +0 -41
  1369. package/.output/server/node_modules/csso/cjs/replace/Url.cjs +0 -8
  1370. package/.output/server/node_modules/csso/cjs/replace/Value.cjs +0 -29
  1371. package/.output/server/node_modules/csso/cjs/replace/atrule/keyframes.cjs +0 -25
  1372. package/.output/server/node_modules/csso/cjs/replace/color.cjs +0 -504
  1373. package/.output/server/node_modules/csso/cjs/replace/index.cjs +0 -36
  1374. package/.output/server/node_modules/csso/cjs/replace/property/background.cjs +0 -54
  1375. package/.output/server/node_modules/csso/cjs/replace/property/border.cjs +0 -20
  1376. package/.output/server/node_modules/csso/cjs/replace/property/font-weight.cjs +0 -26
  1377. package/.output/server/node_modules/csso/cjs/replace/property/font.cjs +0 -34
  1378. package/.output/server/node_modules/csso/cjs/restructure/1-mergeAtrule.cjs +0 -109
  1379. package/.output/server/node_modules/csso/cjs/restructure/2-initialMergeRuleset.cjs +0 -51
  1380. package/.output/server/node_modules/csso/cjs/restructure/3-disjoinRuleset.cjs +0 -46
  1381. package/.output/server/node_modules/csso/cjs/restructure/4-restructShorthand.cjs +0 -429
  1382. package/.output/server/node_modules/csso/cjs/restructure/6-restructBlock.cjs +0 -307
  1383. package/.output/server/node_modules/csso/cjs/restructure/7-mergeRuleset.cjs +0 -90
  1384. package/.output/server/node_modules/csso/cjs/restructure/8-restructRuleset.cjs +0 -175
  1385. package/.output/server/node_modules/csso/cjs/restructure/index.cjs +0 -39
  1386. package/.output/server/node_modules/csso/cjs/restructure/prepare/createDeclarationIndexer.cjs +0 -34
  1387. package/.output/server/node_modules/csso/cjs/restructure/prepare/index.cjs +0 -45
  1388. package/.output/server/node_modules/csso/cjs/restructure/prepare/processSelector.cjs +0 -101
  1389. package/.output/server/node_modules/csso/cjs/restructure/prepare/specificity.cjs +0 -133
  1390. package/.output/server/node_modules/csso/cjs/restructure/utils.cjs +0 -151
  1391. package/.output/server/node_modules/csso/cjs/syntax.cjs +0 -60
  1392. package/.output/server/node_modules/csso/cjs/usage.cjs +0 -75
  1393. package/.output/server/node_modules/csso/cjs/utils.cjs +0 -14
  1394. package/.output/server/node_modules/csso/cjs/version.cjs +0 -5
  1395. package/.output/server/node_modules/debug/package.json +0 -64
  1396. package/.output/server/node_modules/debug/src/browser.js +0 -272
  1397. package/.output/server/node_modules/debug/src/common.js +0 -292
  1398. package/.output/server/node_modules/debug/src/index.js +0 -10
  1399. package/.output/server/node_modules/debug/src/node.js +0 -263
  1400. package/.output/server/node_modules/dom-serializer/lib/foreignNames.js +0 -103
  1401. package/.output/server/node_modules/dom-serializer/lib/index.js +0 -229
  1402. package/.output/server/node_modules/domelementtype/lib/index.js +0 -55
  1403. package/.output/server/node_modules/domhandler/lib/index.js +0 -165
  1404. package/.output/server/node_modules/domhandler/lib/node.js +0 -474
  1405. package/.output/server/node_modules/domutils/lib/feeds.js +0 -190
  1406. package/.output/server/node_modules/domutils/lib/helpers.js +0 -142
  1407. package/.output/server/node_modules/domutils/lib/index.js +0 -33
  1408. package/.output/server/node_modules/domutils/lib/legacy.js +0 -168
  1409. package/.output/server/node_modules/domutils/lib/manipulation.js +0 -142
  1410. package/.output/server/node_modules/domutils/lib/querying.js +0 -155
  1411. package/.output/server/node_modules/domutils/lib/stringify.js +0 -91
  1412. package/.output/server/node_modules/domutils/lib/traversal.js +0 -125
  1413. package/.output/server/node_modules/has-flag/index.js +0 -8
  1414. package/.output/server/node_modules/has-flag/package.json +0 -46
  1415. package/.output/server/node_modules/ipx/dist/shared/ipx.e4d5b25d.mjs +0 -761
  1416. package/.output/server/node_modules/is-arrayish/index.js +0 -9
  1417. package/.output/server/node_modules/is-arrayish/package.json +0 -45
  1418. package/.output/server/node_modules/jose/dist/webapi/lib/epoch.js +0 -1
  1419. package/.output/server/node_modules/jose/dist/webapi/lib/secs.js +0 -55
  1420. package/.output/server/node_modules/ms/index.js +0 -162
  1421. package/.output/server/node_modules/ms/package.json +0 -38
  1422. package/.output/server/node_modules/nth-check/lib/compile.js +0 -121
  1423. package/.output/server/node_modules/nth-check/lib/index.js +0 -70
  1424. package/.output/server/node_modules/nth-check/lib/parse.js +0 -77
  1425. package/.output/server/node_modules/ofetch/dist/shared/ofetch.03887fc3.mjs +0 -333
  1426. package/.output/server/node_modules/pathe/dist/shared/pathe.ff20891b.mjs +0 -221
  1427. package/.output/server/node_modules/sharp/build/Release/libglib-2.0-0.dll +0 -0
  1428. package/.output/server/node_modules/sharp/build/Release/libgobject-2.0-0.dll +0 -0
  1429. package/.output/server/node_modules/sharp/build/Release/libvips-42.dll +0 -0
  1430. package/.output/server/node_modules/sharp/build/Release/libvips-cpp.dll +0 -0
  1431. package/.output/server/node_modules/sharp/build/Release/sharp-win32-x64.node +0 -0
  1432. package/.output/server/node_modules/sharp/lib/platform.js +0 -30
  1433. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/THIRD-PARTY-NOTICES.md +0 -43
  1434. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/include/harfbuzz/hb-cplusplus.hh +0 -223
  1435. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/include/vips/vips8 +0 -60
  1436. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libglib-2.0-0.dll +0 -0
  1437. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libglib-2.0.lib +0 -0
  1438. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libgobject-2.0-0.dll +0 -0
  1439. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libgobject-2.0.lib +0 -0
  1440. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libvips-42.dll +0 -0
  1441. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libvips.lib +0 -0
  1442. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/platform.json +0 -1
  1443. package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/versions.json +0 -31
  1444. package/.output/server/node_modules/simple-swizzle/index.js +0 -29
  1445. package/.output/server/node_modules/simple-swizzle/package.json +0 -36
  1446. package/.output/server/node_modules/supports-color/index.js +0 -135
  1447. package/.output/server/node_modules/supports-color/package.json +0 -53
  1448. package/.output/server/node_modules/svgo/plugins/removeScriptElement.js +0 -70
  1449. package/.output/server/node_modules/truncatise/index.js +0 -188
  1450. package/.output/server/node_modules/truncatise/package.json +0 -36
  1451. package/.output/server/node_modules/unhead/dist/shared/unhead.BpRRHAhY.mjs +0 -194
  1452. package/.output/server/node_modules/unhead/dist/shared/unhead.DH45uomy.mjs +0 -180
  1453. package/.output/server/node_modules/unhead/dist/shared/unhead.DZbvapt-.mjs +0 -70
  1454. package/.output/server/node_modules/unhead/dist/shared/unhead.Djo8ep_Y.mjs +0 -166
  1455. package/.output/server/node_modules/vue-router/dist/devtools-BLCumUwL.mjs +0 -1218
  1456. /package/.nuxt/ui/{button-group.ts → field-group.ts} +0 -0
  1457. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/index.js +0 -0
  1458. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/aria.js +0 -0
  1459. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/find.js +0 -0
  1460. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/hast-to-react.js +0 -0
  1461. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/html.js +0 -0
  1462. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/normalize.js +0 -0
  1463. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/svg.js +0 -0
  1464. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/case-insensitive-transform.js +0 -0
  1465. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/case-sensitive-transform.js +0 -0
  1466. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/create.js +0 -0
  1467. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/defined-info.js +0 -0
  1468. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/info.js +0 -0
  1469. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/merge.js +0 -0
  1470. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/schema.js +0 -0
  1471. /package/.output/server/node_modules/{.nitro/property-information@6.5.0 → property-information}/lib/util/types.js +0 -0
  1472. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/xlink.js +0 -0
  1473. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/xml.js +0 -0
  1474. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/xmlns.js +0 -0
  1475. /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/package.json +0 -0
@@ -9,12 +9,12 @@ import { createPathIndexLanguageParser, parseAcceptLanguage } from '@intlify/uti
9
9
  import { createRouterMatcher } from 'vue-router';
10
10
  import { LRUCache } from 'lru-cache';
11
11
  import { promises, existsSync, mkdirSync } from 'node:fs';
12
- import { resolve as resolve$2, dirname as dirname$1, join } from 'node:path';
12
+ import { resolve as resolve$3, dirname as dirname$1, join } from 'node:path';
13
13
  import { fileURLToPath } from 'node:url';
14
14
  import { FilterXSS } from 'xss';
15
15
  import { getIcons } from '@iconify/utils';
16
+ import n$1 from 'sqlstring';
16
17
  import { neon } from '@neondatabase/serverless';
17
- import SqlString from 'sqlstring';
18
18
  import Database from 'better-sqlite3';
19
19
  import { ipxFSStorage, ipxHttpStorage, createIPX, createIPXH3Handler } from 'ipx';
20
20
 
@@ -597,13 +597,13 @@ function createRouter$1(options = {}) {
597
597
  const normalizeTrailingSlash = (p) => options.strictTrailingSlash ? p : p.replace(/\/$/, "") || "/";
598
598
  if (options.routes) {
599
599
  for (const path in options.routes) {
600
- insert$1(ctx, normalizeTrailingSlash(path), options.routes[path]);
600
+ insert(ctx, normalizeTrailingSlash(path), options.routes[path]);
601
601
  }
602
602
  }
603
603
  return {
604
604
  ctx,
605
605
  lookup: (path) => lookup(ctx, normalizeTrailingSlash(path)),
606
- insert: (path, data) => insert$1(ctx, normalizeTrailingSlash(path), data),
606
+ insert: (path, data) => insert(ctx, normalizeTrailingSlash(path), data),
607
607
  remove: (path) => remove(ctx, normalizeTrailingSlash(path))
608
608
  };
609
609
  }
@@ -659,7 +659,7 @@ function lookup(ctx, path) {
659
659
  }
660
660
  return node.data;
661
661
  }
662
- function insert$1(ctx, path, data) {
662
+ function insert(ctx, path, data) {
663
663
  let isStaticRoute = true;
664
664
  const sections = path.split("/");
665
665
  let node = ctx.rootNode;
@@ -1169,7 +1169,7 @@ var unseal = async (_crypto, sealed, password, options) => {
1169
1169
  return null;
1170
1170
  };
1171
1171
 
1172
- function o(n){throw new Error(`${n} is not implemented yet!`)}let i$1 = class i extends EventEmitter{__unenv__={};readableEncoding=null;readableEnded=true;readableFlowing=false;readableHighWaterMark=0;readableLength=0;readableObjectMode=false;readableAborted=false;readableDidRead=false;closed=false;errored=null;readable=false;destroyed=false;static from(e,t){return new i(t)}constructor(e){super();}_read(e){}read(e){}setEncoding(e){return this}pause(){return this}resume(){return this}isPaused(){return true}unpipe(e){return this}unshift(e,t){}wrap(e){return this}push(e,t){return false}_destroy(e,t){this.removeAllListeners();}destroy(e){return this.destroyed=true,this._destroy(e),this}pipe(e,t){return {}}compose(e,t){throw new Error("Method not implemented.")}[Symbol.asyncDispose](){return this.destroy(),Promise.resolve()}async*[Symbol.asyncIterator](){throw o("Readable.asyncIterator")}iterator(e){throw o("Readable.iterator")}map(e,t){throw o("Readable.map")}filter(e,t){throw o("Readable.filter")}forEach(e,t){throw o("Readable.forEach")}reduce(e,t,r){throw o("Readable.reduce")}find(e,t){throw o("Readable.find")}findIndex(e,t){throw o("Readable.findIndex")}some(e,t){throw o("Readable.some")}toArray(e){throw o("Readable.toArray")}every(e,t){throw o("Readable.every")}flatMap(e,t){throw o("Readable.flatMap")}drop(e,t){throw o("Readable.drop")}take(e,t){throw o("Readable.take")}asIndexedPairs(e){throw o("Readable.asIndexedPairs")}};let l$1 = class l extends EventEmitter{__unenv__={};writable=true;writableEnded=false;writableFinished=false;writableHighWaterMark=0;writableLength=0;writableObjectMode=false;writableCorked=0;closed=false;errored=null;writableNeedDrain=false;writableAborted=false;destroyed=false;_data;_encoding="utf8";constructor(e){super();}pipe(e,t){return {}}_write(e,t,r){if(this.writableEnded){r&&r();return}if(this._data===void 0)this._data=e;else {const s=typeof this._data=="string"?Buffer$1.from(this._data,this._encoding||t||"utf8"):this._data,a=typeof e=="string"?Buffer$1.from(e,t||this._encoding||"utf8"):e;this._data=Buffer$1.concat([s,a]);}this._encoding=t,r&&r();}_writev(e,t){}_destroy(e,t){}_final(e){}write(e,t,r){const s=typeof t=="string"?this._encoding:"utf8",a=typeof t=="function"?t:typeof r=="function"?r:void 0;return this._write(e,s,a),true}setDefaultEncoding(e){return this}end(e,t,r){const s=typeof e=="function"?e:typeof t=="function"?t:typeof r=="function"?r:void 0;if(this.writableEnded)return s&&s(),this;const a=e===s?void 0:e;if(a){const u=t===s?void 0:t;this.write(a,u,s);}return this.writableEnded=true,this.writableFinished=true,this.emit("close"),this.emit("finish"),this}cork(){}uncork(){}destroy(e){return this.destroyed=true,delete this._data,this.removeAllListeners(),this}compose(e,t){throw new Error("Method not implemented.")}[Symbol.asyncDispose](){return Promise.resolve()}};const c$1=class c{allowHalfOpen=true;_destroy;constructor(e=new i$1,t=new l$1){Object.assign(this,e),Object.assign(this,t),this._destroy=m(e._destroy,t._destroy);}};function _(){return Object.assign(c$1.prototype,i$1.prototype),Object.assign(c$1.prototype,l$1.prototype),c$1}function m(...n){return function(...e){for(const t of n)t(...e);}}const g=_();class A extends g{__unenv__={};bufferSize=0;bytesRead=0;bytesWritten=0;connecting=false;destroyed=false;pending=false;localAddress="";localPort=0;remoteAddress="";remoteFamily="";remotePort=0;autoSelectFamilyAttemptedAddresses=[];readyState="readOnly";constructor(e){super();}write(e,t,r){return false}connect(e,t,r){return this}end(e,t,r){return this}setEncoding(e){return this}pause(){return this}resume(){return this}setTimeout(e,t){return this}setNoDelay(e){return this}setKeepAlive(e,t){return this}address(){return {}}unref(){return this}ref(){return this}destroySoon(){this.destroy();}resetAndDestroy(){const e=new Error("ERR_SOCKET_CLOSED");return e.code="ERR_SOCKET_CLOSED",this.destroy(e),this}}class y extends i$1{aborted=false;httpVersion="1.1";httpVersionMajor=1;httpVersionMinor=1;complete=true;connection;socket;headers={};trailers={};method="GET";url="/";statusCode=200;statusMessage="";closed=false;errored=null;readable=false;constructor(e){super(),this.socket=this.connection=e||new A;}get rawHeaders(){const e=this.headers,t=[];for(const r in e)if(Array.isArray(e[r]))for(const s of e[r])t.push(r,s);else t.push(r,e[r]);return t}get rawTrailers(){return []}setTimeout(e,t){return this}get headersDistinct(){return p(this.headers)}get trailersDistinct(){return p(this.trailers)}}function p(n){const e={};for(const[t,r]of Object.entries(n))t&&(e[t]=(Array.isArray(r)?r:[r]).filter(Boolean));return e}class w extends l$1{statusCode=200;statusMessage="";upgrading=false;chunkedEncoding=false;shouldKeepAlive=false;useChunkedEncodingByDefault=false;sendDate=false;finished=false;headersSent=false;strictContentLength=false;connection=null;socket=null;req;_headers={};constructor(e){super(),this.req=e;}assignSocket(e){e._httpMessage=this,this.socket=e,this.connection=e,this.emit("socket",e),this._flush();}_flush(){this.flushHeaders();}detachSocket(e){}writeContinue(e){}writeHead(e,t,r){e&&(this.statusCode=e),typeof t=="string"&&(this.statusMessage=t,t=void 0);const s=r||t;if(s&&!Array.isArray(s))for(const a in s)this.setHeader(a,s[a]);return this.headersSent=true,this}writeProcessing(){}setTimeout(e,t){return this}appendHeader(e,t){e=e.toLowerCase();const r=this._headers[e],s=[...Array.isArray(r)?r:[r],...Array.isArray(t)?t:[t]].filter(Boolean);return this._headers[e]=s.length>1?s:s[0],this}setHeader(e,t){return this._headers[e.toLowerCase()]=t,this}setHeaders(e){for(const[t,r]of Object.entries(e))this.setHeader(t,r);return this}getHeader(e){return this._headers[e.toLowerCase()]}getHeaders(){return this._headers}getHeaderNames(){return Object.keys(this._headers)}hasHeader(e){return e.toLowerCase()in this._headers}removeHeader(e){delete this._headers[e.toLowerCase()];}addTrailers(e){}flushHeaders(){}writeEarlyHints(e,t){typeof t=="function"&&t();}}const E=(()=>{const n=function(){};return n.prototype=Object.create(null),n})();function R(n={}){const e=new E,t=Array.isArray(n)||H(n)?n:Object.entries(n);for(const[r,s]of t)if(s){if(e[r]===void 0){e[r]=s;continue}e[r]=[...Array.isArray(e[r])?e[r]:[e[r]],...Array.isArray(s)?s:[s]];}return e}function H(n){return typeof n?.entries=="function"}function v(n={}){if(n instanceof Headers)return n;const e=new Headers;for(const[t,r]of Object.entries(n))if(r!==void 0){if(Array.isArray(r)){for(const s of r)e.append(t,String(s));continue}e.set(t,String(r));}return e}const S=new Set([101,204,205,304]);async function b(n,e){const t=new y,r=new w(t);t.url=e.url?.toString()||"/";let s;if(!t.url.startsWith("/")){const d=new URL(t.url);s=d.host,t.url=d.pathname+d.search+d.hash;}t.method=e.method||"GET",t.headers=R(e.headers||{}),t.headers.host||(t.headers.host=e.host||s||"localhost"),t.connection.encrypted=t.connection.encrypted||e.protocol==="https",t.body=e.body||null,t.__unenv__=e.context,await n(t,r);let a=r._data;(S.has(r.statusCode)||t.method.toUpperCase()==="HEAD")&&(a=null,delete r._headers["content-length"]);const u={status:r.statusCode,statusText:r.statusMessage,headers:r._headers,body:a};return t.destroy(),r.destroy(),u}async function C(n,e,t={}){try{const r=await b(n,{url:e,...t});return new Response(r.body,{status:r.status,statusText:r.statusText,headers:v(r.headers)})}catch(r){return new Response(r.toString(),{status:Number.parseInt(r.statusCode||r.code)||500,statusText:r.statusText})}}
1172
+ function o$2(n){throw new Error(`${n} is not implemented yet!`)}let i$3 = class i extends EventEmitter{__unenv__={};readableEncoding=null;readableEnded=true;readableFlowing=false;readableHighWaterMark=0;readableLength=0;readableObjectMode=false;readableAborted=false;readableDidRead=false;closed=false;errored=null;readable=false;destroyed=false;static from(e,t){return new i(t)}constructor(e){super();}_read(e){}read(e){}setEncoding(e){return this}pause(){return this}resume(){return this}isPaused(){return true}unpipe(e){return this}unshift(e,t){}wrap(e){return this}push(e,t){return false}_destroy(e,t){this.removeAllListeners();}destroy(e){return this.destroyed=true,this._destroy(e),this}pipe(e,t){return {}}compose(e,t){throw new Error("Method not implemented.")}[Symbol.asyncDispose](){return this.destroy(),Promise.resolve()}async*[Symbol.asyncIterator](){throw o$2("Readable.asyncIterator")}iterator(e){throw o$2("Readable.iterator")}map(e,t){throw o$2("Readable.map")}filter(e,t){throw o$2("Readable.filter")}forEach(e,t){throw o$2("Readable.forEach")}reduce(e,t,r){throw o$2("Readable.reduce")}find(e,t){throw o$2("Readable.find")}findIndex(e,t){throw o$2("Readable.findIndex")}some(e,t){throw o$2("Readable.some")}toArray(e){throw o$2("Readable.toArray")}every(e,t){throw o$2("Readable.every")}flatMap(e,t){throw o$2("Readable.flatMap")}drop(e,t){throw o$2("Readable.drop")}take(e,t){throw o$2("Readable.take")}asIndexedPairs(e){throw o$2("Readable.asIndexedPairs")}};let l$4 = class l extends EventEmitter{__unenv__={};writable=true;writableEnded=false;writableFinished=false;writableHighWaterMark=0;writableLength=0;writableObjectMode=false;writableCorked=0;closed=false;errored=null;writableNeedDrain=false;writableAborted=false;destroyed=false;_data;_encoding="utf8";constructor(e){super();}pipe(e,t){return {}}_write(e,t,r){if(this.writableEnded){r&&r();return}if(this._data===void 0)this._data=e;else {const s=typeof this._data=="string"?Buffer$1.from(this._data,this._encoding||t||"utf8"):this._data,a=typeof e=="string"?Buffer$1.from(e,t||this._encoding||"utf8"):e;this._data=Buffer$1.concat([s,a]);}this._encoding=t,r&&r();}_writev(e,t){}_destroy(e,t){}_final(e){}write(e,t,r){const s=typeof t=="string"?this._encoding:"utf8",a=typeof t=="function"?t:typeof r=="function"?r:void 0;return this._write(e,s,a),true}setDefaultEncoding(e){return this}end(e,t,r){const s=typeof e=="function"?e:typeof t=="function"?t:typeof r=="function"?r:void 0;if(this.writableEnded)return s&&s(),this;const a=e===s?void 0:e;if(a){const u=t===s?void 0:t;this.write(a,u,s);}return this.writableEnded=true,this.writableFinished=true,this.emit("close"),this.emit("finish"),this}cork(){}uncork(){}destroy(e){return this.destroyed=true,delete this._data,this.removeAllListeners(),this}compose(e,t){throw new Error("Method not implemented.")}[Symbol.asyncDispose](){return Promise.resolve()}};const c$3=class c{allowHalfOpen=true;_destroy;constructor(e=new i$3,t=new l$4){Object.assign(this,e),Object.assign(this,t),this._destroy=m(e._destroy,t._destroy);}};function _$1(){return Object.assign(c$3.prototype,i$3.prototype),Object.assign(c$3.prototype,l$4.prototype),c$3}function m(...n){return function(...e){for(const t of n)t(...e);}}const g$1=_$1();let A$1 = class A extends g$1{__unenv__={};bufferSize=0;bytesRead=0;bytesWritten=0;connecting=false;destroyed=false;pending=false;localAddress="";localPort=0;remoteAddress="";remoteFamily="";remotePort=0;autoSelectFamilyAttemptedAddresses=[];readyState="readOnly";constructor(e){super();}write(e,t,r){return false}connect(e,t,r){return this}end(e,t,r){return this}setEncoding(e){return this}pause(){return this}resume(){return this}setTimeout(e,t){return this}setNoDelay(e){return this}setKeepAlive(e,t){return this}address(){return {}}unref(){return this}ref(){return this}destroySoon(){this.destroy();}resetAndDestroy(){const e=new Error("ERR_SOCKET_CLOSED");return e.code="ERR_SOCKET_CLOSED",this.destroy(e),this}};class y extends i$3{aborted=false;httpVersion="1.1";httpVersionMajor=1;httpVersionMinor=1;complete=true;connection;socket;headers={};trailers={};method="GET";url="/";statusCode=200;statusMessage="";closed=false;errored=null;readable=false;constructor(e){super(),this.socket=this.connection=e||new A$1;}get rawHeaders(){const e=this.headers,t=[];for(const r in e)if(Array.isArray(e[r]))for(const s of e[r])t.push(r,s);else t.push(r,e[r]);return t}get rawTrailers(){return []}setTimeout(e,t){return this}get headersDistinct(){return p$1(this.headers)}get trailersDistinct(){return p$1(this.trailers)}}function p$1(n){const e={};for(const[t,r]of Object.entries(n))t&&(e[t]=(Array.isArray(r)?r:[r]).filter(Boolean));return e}class w extends l$4{statusCode=200;statusMessage="";upgrading=false;chunkedEncoding=false;shouldKeepAlive=false;useChunkedEncodingByDefault=false;sendDate=false;finished=false;headersSent=false;strictContentLength=false;connection=null;socket=null;req;_headers={};constructor(e){super(),this.req=e;}assignSocket(e){e._httpMessage=this,this.socket=e,this.connection=e,this.emit("socket",e),this._flush();}_flush(){this.flushHeaders();}detachSocket(e){}writeContinue(e){}writeHead(e,t,r){e&&(this.statusCode=e),typeof t=="string"&&(this.statusMessage=t,t=void 0);const s=r||t;if(s&&!Array.isArray(s))for(const a in s)this.setHeader(a,s[a]);return this.headersSent=true,this}writeProcessing(){}setTimeout(e,t){return this}appendHeader(e,t){e=e.toLowerCase();const r=this._headers[e],s=[...Array.isArray(r)?r:[r],...Array.isArray(t)?t:[t]].filter(Boolean);return this._headers[e]=s.length>1?s:s[0],this}setHeader(e,t){return this._headers[e.toLowerCase()]=t,this}setHeaders(e){for(const[t,r]of Object.entries(e))this.setHeader(t,r);return this}getHeader(e){return this._headers[e.toLowerCase()]}getHeaders(){return this._headers}getHeaderNames(){return Object.keys(this._headers)}hasHeader(e){return e.toLowerCase()in this._headers}removeHeader(e){delete this._headers[e.toLowerCase()];}addTrailers(e){}flushHeaders(){}writeEarlyHints(e,t){typeof t=="function"&&t();}}const E=(()=>{const n=function(){};return n.prototype=Object.create(null),n})();function R$1(n={}){const e=new E,t=Array.isArray(n)||H(n)?n:Object.entries(n);for(const[r,s]of t)if(s){if(e[r]===void 0){e[r]=s;continue}e[r]=[...Array.isArray(e[r])?e[r]:[e[r]],...Array.isArray(s)?s:[s]];}return e}function H(n){return typeof n?.entries=="function"}function v(n={}){if(n instanceof Headers)return n;const e=new Headers;for(const[t,r]of Object.entries(n))if(r!==void 0){if(Array.isArray(r)){for(const s of r)e.append(t,String(s));continue}e.set(t,String(r));}return e}const S$1=new Set([101,204,205,304]);async function b$1(n,e){const t=new y,r=new w(t);t.url=e.url?.toString()||"/";let s;if(!t.url.startsWith("/")){const d=new URL(t.url);s=d.host,t.url=d.pathname+d.search+d.hash;}t.method=e.method||"GET",t.headers=R$1(e.headers||{}),t.headers.host||(t.headers.host=e.host||s||"localhost"),t.connection.encrypted=t.connection.encrypted||e.protocol==="https",t.body=e.body||null,t.__unenv__=e.context,await n(t,r);let a=r._data;(S$1.has(r.statusCode)||t.method.toUpperCase()==="HEAD")&&(a=null,delete r._headers["content-length"]);const u={status:r.statusCode,statusText:r.statusMessage,headers:r._headers,body:a};return t.destroy(),r.destroy(),u}async function C$1(n,e,t={}){try{const r=await b$1(n,{url:e,...t});return new Response(r.body,{status:r.status,statusText:r.statusText,headers:v(r.headers)})}catch(r){return new Response(r.toString(),{status:Number.parseInt(r.statusCode||r.code)||500,statusText:r.statusText})}}
1173
1173
 
1174
1174
  function useBase(base, handler) {
1175
1175
  base = withoutTrailingSlash(base);
@@ -3150,7 +3150,7 @@ function createHooks() {
3150
3150
  return new Hookable();
3151
3151
  }
3152
3152
 
3153
- const s$1=globalThis.Headers,i=globalThis.AbortController,l=globalThis.fetch||(()=>{throw new Error("[node-fetch-native] Failed to fetch: `globalThis.fetch` is not available!")});
3153
+ const s$3=globalThis.Headers,i$2=globalThis.AbortController,l$3=globalThis.fetch||(()=>{throw new Error("[node-fetch-native] Failed to fetch: `globalThis.fetch` is not available!")});
3154
3154
 
3155
3155
  class FetchError extends Error {
3156
3156
  constructor(message, opts) {
@@ -3218,6 +3218,9 @@ function isJSONSerializable(value) {
3218
3218
  if (value.buffer) {
3219
3219
  return false;
3220
3220
  }
3221
+ if (value instanceof FormData || value instanceof URLSearchParams) {
3222
+ return false;
3223
+ }
3221
3224
  return value.constructor && value.constructor.name === "Object" || typeof value.toJSON === "function";
3222
3225
  }
3223
3226
  const textTypes = /* @__PURE__ */ new Set([
@@ -3235,6 +3238,9 @@ function detectResponseType(_contentType = "") {
3235
3238
  if (JSON_RE.test(contentType)) {
3236
3239
  return "json";
3237
3240
  }
3241
+ if (contentType === "text/event-stream") {
3242
+ return "stream";
3243
+ }
3238
3244
  if (textTypes.has(contentType) || contentType.startsWith("text/")) {
3239
3245
  return "text";
3240
3246
  }
@@ -3356,6 +3362,12 @@ function createFetch(globalOptions = {}) {
3356
3362
  }
3357
3363
  if (context.options.onRequest) {
3358
3364
  await callHooks(context, context.options.onRequest);
3365
+ if (!(context.options.headers instanceof Headers)) {
3366
+ context.options.headers = new Headers(
3367
+ context.options.headers || {}
3368
+ /* compat */
3369
+ );
3370
+ }
3359
3371
  }
3360
3372
  if (typeof context.request === "string") {
3361
3373
  if (context.options.baseURL) {
@@ -3374,9 +3386,13 @@ function createFetch(globalOptions = {}) {
3374
3386
  }
3375
3387
  if (context.options.body && isPayloadMethod(context.options.method)) {
3376
3388
  if (isJSONSerializable(context.options.body)) {
3377
- context.options.body = typeof context.options.body === "string" ? context.options.body : JSON.stringify(context.options.body);
3378
- context.options.headers = new Headers(context.options.headers || {});
3379
- if (!context.options.headers.has("content-type")) {
3389
+ const contentType = context.options.headers.get("content-type");
3390
+ if (typeof context.options.body !== "string") {
3391
+ context.options.body = contentType === "application/x-www-form-urlencoded" ? new URLSearchParams(
3392
+ context.options.body
3393
+ ).toString() : JSON.stringify(context.options.body);
3394
+ }
3395
+ if (!contentType) {
3380
3396
  context.options.headers.set("content-type", "application/json");
3381
3397
  }
3382
3398
  if (!context.options.headers.has("accept")) {
@@ -3484,7 +3500,7 @@ function createFetch(globalOptions = {}) {
3484
3500
  function createNodeFetch() {
3485
3501
  const useKeepAlive = JSON.parse(process.env.FETCH_KEEP_ALIVE || "false");
3486
3502
  if (!useKeepAlive) {
3487
- return l;
3503
+ return l$3;
3488
3504
  }
3489
3505
  const agentOptions = { keepAlive: true };
3490
3506
  const httpAgent = new http.Agent(agentOptions);
@@ -3495,12 +3511,12 @@ function createNodeFetch() {
3495
3511
  }
3496
3512
  };
3497
3513
  return function nodeFetchWithKeepAlive(input, init) {
3498
- return l(input, { ...nodeFetchOptions, ...init });
3514
+ return l$3(input, { ...nodeFetchOptions, ...init });
3499
3515
  };
3500
3516
  }
3501
3517
  const fetch = globalThis.fetch ? (...args) => globalThis.fetch(...args) : createNodeFetch();
3502
- const Headers$1 = globalThis.Headers || s$1;
3503
- const AbortController$1 = globalThis.AbortController || i;
3518
+ const Headers$1 = globalThis.Headers || s$3;
3519
+ const AbortController$1 = globalThis.AbortController || i$2;
3504
3520
  createFetch({ fetch, Headers: Headers$1, AbortController: AbortController$1 });
3505
3521
 
3506
3522
  function wrapToPromise(value) {
@@ -4098,7 +4114,7 @@ async function dispose(driver) {
4098
4114
  const _assets = {
4099
4115
  ["nuxt-security:headers.json"]: {
4100
4116
  import: () => import('../raw/headers.mjs').then(r => r.default || r),
4101
- meta: {"type":"application/json","etag":"\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","mtime":"2025-10-31T20:54:49.379Z"}
4117
+ meta: {"type":"application/json","etag":"\"2-vyGp6PvFo4RvsFtPoIWeCReyIC8\"","mtime":"2026-01-03T18:16:03.187Z"}
4102
4118
  }
4103
4119
  };
4104
4120
 
@@ -4237,7 +4253,7 @@ async function readdirRecursive(dir, ignore, maxDepth) {
4237
4253
  const files = [];
4238
4254
  await Promise.all(
4239
4255
  entries.map(async (entry) => {
4240
- const entryPath = resolve$2(dir, entry.name);
4256
+ const entryPath = resolve$3(dir, entry.name);
4241
4257
  if (entry.isDirectory()) {
4242
4258
  if (maxDepth === void 0 || maxDepth > 0) {
4243
4259
  const dirFiles = await readdirRecursive(
@@ -4260,7 +4276,7 @@ async function rmRecursive(dir) {
4260
4276
  const entries = await readdir(dir);
4261
4277
  await Promise.all(
4262
4278
  entries.map((entry) => {
4263
- const entryPath = resolve$2(dir, entry.name);
4279
+ const entryPath = resolve$3(dir, entry.name);
4264
4280
  if (entry.isDirectory()) {
4265
4281
  return rmRecursive(entryPath).then(() => promises.rmdir(entryPath));
4266
4282
  } else {
@@ -4276,7 +4292,7 @@ const unstorage_47drivers_47fs_45lite = defineDriver((opts = {}) => {
4276
4292
  if (!opts.base) {
4277
4293
  throw createRequiredError(DRIVER_NAME, "base");
4278
4294
  }
4279
- opts.base = resolve$2(opts.base);
4295
+ opts.base = resolve$3(opts.base);
4280
4296
  const r = (key) => {
4281
4297
  if (PATH_TRAVERSE_RE.test(key)) {
4282
4298
  throw createError(
@@ -4347,9 +4363,9 @@ function useStorage(base = "") {
4347
4363
  return base ? prefixStorage(storage$2, base) : storage$2;
4348
4364
  }
4349
4365
 
4350
- function serialize$1(o){return typeof o=="string"?`'${o}'`:new c().serialize(o)}const c=/*@__PURE__*/function(){class o{#t=new Map;compare(t,r){const e=typeof t,n=typeof r;return e==="string"&&n==="string"?t.localeCompare(r):e==="number"&&n==="number"?t-r:String.prototype.localeCompare.call(this.serialize(t,true),this.serialize(r,true))}serialize(t,r){if(t===null)return "null";switch(typeof t){case "string":return r?t:`'${t}'`;case "bigint":return `${t}n`;case "object":return this.$object(t);case "function":return this.$function(t)}return String(t)}serializeObject(t){const r=Object.prototype.toString.call(t);if(r!=="[object Object]")return this.serializeBuiltInType(r.length<10?`unknown:${r}`:r.slice(8,-1),t);const e=t.constructor,n=e===Object||e===void 0?"":e.name;if(n!==""&&globalThis[n]===e)return this.serializeBuiltInType(n,t);if(typeof t.toJSON=="function"){const i=t.toJSON();return n+(i!==null&&typeof i=="object"?this.$object(i):`(${this.serialize(i)})`)}return this.serializeObjectEntries(n,Object.entries(t))}serializeBuiltInType(t,r){const e=this["$"+t];if(e)return e.call(this,r);if(typeof r?.entries=="function")return this.serializeObjectEntries(t,r.entries());throw new Error(`Cannot serialize ${t}`)}serializeObjectEntries(t,r){const e=Array.from(r).sort((i,a)=>this.compare(i[0],a[0]));let n=`${t}{`;for(let i=0;i<e.length;i++){const[a,l]=e[i];n+=`${this.serialize(a,true)}:${this.serialize(l)}`,i<e.length-1&&(n+=",");}return n+"}"}$object(t){let r=this.#t.get(t);return r===void 0&&(this.#t.set(t,`#${this.#t.size}`),r=this.serializeObject(t),this.#t.set(t,r)),r}$function(t){const r=Function.prototype.toString.call(t);return r.slice(-15)==="[native code] }"?`${t.name||""}()[native]`:`${t.name}(${t.length})${r.replace(/\s*\n\s*/g,"")}`}$Array(t){let r="[";for(let e=0;e<t.length;e++)r+=this.serialize(t[e]),e<t.length-1&&(r+=",");return r+"]"}$Date(t){try{return `Date(${t.toISOString()})`}catch{return "Date(null)"}}$ArrayBuffer(t){return `ArrayBuffer[${new Uint8Array(t).join(",")}]`}$Set(t){return `Set${this.$Array(Array.from(t).sort((r,e)=>this.compare(r,e)))}`}$Map(t){return this.serializeObjectEntries("Map",t.entries())}}for(const s of ["Error","RegExp","URL"])o.prototype["$"+s]=function(t){return `${s}(${t})`};for(const s of ["Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array"])o.prototype["$"+s]=function(t){return `${s}[${t.join(",")}]`};for(const s of ["BigInt64Array","BigUint64Array"])o.prototype["$"+s]=function(t){return `${s}[${t.join("n,")}${t.length>0?"n":""}]`};return o}();
4366
+ function serialize$1(o){return typeof o=="string"?`'${o}'`:new c$2().serialize(o)}const c$2=/*@__PURE__*/function(){class o{#t=new Map;compare(t,r){const e=typeof t,n=typeof r;return e==="string"&&n==="string"?t.localeCompare(r):e==="number"&&n==="number"?t-r:String.prototype.localeCompare.call(this.serialize(t,true),this.serialize(r,true))}serialize(t,r){if(t===null)return "null";switch(typeof t){case "string":return r?t:`'${t}'`;case "bigint":return `${t}n`;case "object":return this.$object(t);case "function":return this.$function(t)}return String(t)}serializeObject(t){const r=Object.prototype.toString.call(t);if(r!=="[object Object]")return this.serializeBuiltInType(r.length<10?`unknown:${r}`:r.slice(8,-1),t);const e=t.constructor,n=e===Object||e===void 0?"":e.name;if(n!==""&&globalThis[n]===e)return this.serializeBuiltInType(n,t);if(typeof t.toJSON=="function"){const i=t.toJSON();return n+(i!==null&&typeof i=="object"?this.$object(i):`(${this.serialize(i)})`)}return this.serializeObjectEntries(n,Object.entries(t))}serializeBuiltInType(t,r){const e=this["$"+t];if(e)return e.call(this,r);if(typeof r?.entries=="function")return this.serializeObjectEntries(t,r.entries());throw new Error(`Cannot serialize ${t}`)}serializeObjectEntries(t,r){const e=Array.from(r).sort((i,a)=>this.compare(i[0],a[0]));let n=`${t}{`;for(let i=0;i<e.length;i++){const[a,l]=e[i];n+=`${this.serialize(a,true)}:${this.serialize(l)}`,i<e.length-1&&(n+=",");}return n+"}"}$object(t){let r=this.#t.get(t);return r===void 0&&(this.#t.set(t,`#${this.#t.size}`),r=this.serializeObject(t),this.#t.set(t,r)),r}$function(t){const r=Function.prototype.toString.call(t);return r.slice(-15)==="[native code] }"?`${t.name||""}()[native]`:`${t.name}(${t.length})${r.replace(/\s*\n\s*/g,"")}`}$Array(t){let r="[";for(let e=0;e<t.length;e++)r+=this.serialize(t[e]),e<t.length-1&&(r+=",");return r+"]"}$Date(t){try{return `Date(${t.toISOString()})`}catch{return "Date(null)"}}$ArrayBuffer(t){return `ArrayBuffer[${new Uint8Array(t).join(",")}]`}$Set(t){return `Set${this.$Array(Array.from(t).sort((r,e)=>this.compare(r,e)))}`}$Map(t){return this.serializeObjectEntries("Map",t.entries())}}for(const s of ["Error","RegExp","URL"])o.prototype["$"+s]=function(t){return `${s}(${t})`};for(const s of ["Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array"])o.prototype["$"+s]=function(t){return `${s}[${t.join(",")}]`};for(const s of ["BigInt64Array","BigUint64Array"])o.prototype["$"+s]=function(t){return `${s}[${t.join("n,")}${t.length>0?"n":""}]`};return o}();
4351
4367
 
4352
- const e=globalThis.process?.getBuiltinModule?.("crypto")?.hash,r="sha256",s="base64url";function digest(t){if(e)return e(r,t,s);const o=createHash(r).update(t);return globalThis.process?.versions?.webcontainer?o.digest().toString(s):o.digest(s)}
4368
+ const e=globalThis.process?.getBuiltinModule?.("crypto")?.hash,r$1="sha256",s$2="base64url";function digest(t){if(e)return e(r$1,t,s$2);const o=createHash(r$1).update(t);return globalThis.process?.versions?.webcontainer?o.digest().toString(s$2):o.digest(s$2)}
4353
4369
 
4354
4370
  function hash$1(input) {
4355
4371
  return digest(serialize$1(input));
@@ -4968,8 +4984,11 @@ const inlineAppConfig = {
4968
4984
  "neutral": "slate"
4969
4985
  },
4970
4986
  "icons": {
4987
+ "arrowDown": "i-lucide-arrow-down",
4971
4988
  "arrowLeft": "i-lucide-arrow-left",
4972
4989
  "arrowRight": "i-lucide-arrow-right",
4990
+ "arrowUp": "i-lucide-arrow-up",
4991
+ "caution": "i-lucide-circle-alert",
4973
4992
  "check": "i-lucide-check",
4974
4993
  "chevronDoubleLeft": "i-lucide-chevrons-left",
4975
4994
  "chevronDoubleRight": "i-lucide-chevrons-right",
@@ -4978,16 +4997,37 @@ const inlineAppConfig = {
4978
4997
  "chevronRight": "i-lucide-chevron-right",
4979
4998
  "chevronUp": "i-lucide-chevron-up",
4980
4999
  "close": "i-lucide-x",
5000
+ "copy": "i-lucide-copy",
5001
+ "copyCheck": "i-lucide-copy-check",
5002
+ "dark": "i-lucide-moon",
4981
5003
  "ellipsis": "i-lucide-ellipsis",
5004
+ "error": "i-lucide-circle-x",
4982
5005
  "external": "i-lucide-arrow-up-right",
5006
+ "eye": "i-lucide-eye",
5007
+ "eyeOff": "i-lucide-eye-off",
4983
5008
  "file": "i-lucide-file",
4984
5009
  "folder": "i-lucide-folder",
4985
5010
  "folderOpen": "i-lucide-folder-open",
5011
+ "hash": "i-lucide-hash",
5012
+ "info": "i-lucide-info",
5013
+ "light": "i-lucide-sun",
4986
5014
  "loading": "i-lucide-loader-circle",
5015
+ "menu": "i-lucide-menu",
4987
5016
  "minus": "i-lucide-minus",
5017
+ "panelClose": "i-lucide-panel-left-close",
5018
+ "panelOpen": "i-lucide-panel-left-open",
4988
5019
  "plus": "i-lucide-plus",
5020
+ "reload": "i-lucide-rotate-ccw",
4989
5021
  "search": "i-lucide-search",
4990
- "upload": "i-lucide-upload"
5022
+ "stop": "i-lucide-square",
5023
+ "success": "i-lucide-circle-check",
5024
+ "system": "i-lucide-monitor",
5025
+ "tip": "i-lucide-lightbulb",
5026
+ "upload": "i-lucide-upload",
5027
+ "warning": "i-lucide-triangle-alert"
5028
+ },
5029
+ "tv": {
5030
+ "twMergeConfig": {}
4991
5031
  }
4992
5032
  },
4993
5033
  "icon": {
@@ -5287,7 +5327,7 @@ function _expandFromEnv(value) {
5287
5327
  const _inlineRuntimeConfig = {
5288
5328
  "app": {
5289
5329
  "baseURL": "/",
5290
- "buildId": "7bab2b8f-93ee-4f44-a604-8cd2b41eac60",
5330
+ "buildId": "78080714-55fa-441d-9998-a6fb0c7ee057",
5291
5331
  "buildAssetsDir": "/_nuxt/",
5292
5332
  "cdnURL": ""
5293
5333
  },
@@ -5416,6 +5456,10 @@ const _inlineRuntimeConfig = {
5416
5456
  },
5417
5457
  "regexp": false,
5418
5458
  "charts": false,
5459
+ "social": {
5460
+ "enabled": false,
5461
+ "url": ""
5462
+ },
5419
5463
  "warn": {
5420
5464
  "duplicates": true
5421
5465
  }
@@ -5428,16 +5472,41 @@ const _inlineRuntimeConfig = {
5428
5472
  },
5429
5473
  "neonDB": "",
5430
5474
  "neonSSLMode": "require",
5431
- "neonRawWarning": true,
5432
5475
  "neonDebugSQL": false,
5433
5476
  "neonDebugRuntime": false,
5477
+ "neonExposeEndpoints": false,
5478
+ "neonExposeRawEndpoint": false,
5434
5479
  "content": {
5435
5480
  "wsUrl": ""
5436
5481
  },
5437
5482
  "mdc": {
5438
5483
  "components": {
5439
5484
  "prose": true,
5440
- "map": {}
5485
+ "map": {
5486
+ "accordion": "ProseAccordion",
5487
+ "accordion-item": "ProseAccordionItem",
5488
+ "badge": "ProseBadge",
5489
+ "callout": "ProseCallout",
5490
+ "card": "ProseCard",
5491
+ "card-group": "ProseCardGroup",
5492
+ "caution": "ProseCaution",
5493
+ "code-collapse": "ProseCodeCollapse",
5494
+ "code-group": "ProseCodeGroup",
5495
+ "code-icon": "ProseCodeIcon",
5496
+ "code-preview": "ProseCodePreview",
5497
+ "code-tree": "ProseCodeTree",
5498
+ "collapsible": "ProseCollapsible",
5499
+ "field": "ProseField",
5500
+ "field-group": "ProseFieldGroup",
5501
+ "icon": "ProseIcon",
5502
+ "kbd": "ProseKbd",
5503
+ "note": "ProseNote",
5504
+ "steps": "ProseSteps",
5505
+ "tabs": "ProseTabs",
5506
+ "tabs-item": "ProseTabsItem",
5507
+ "tip": "ProseTip",
5508
+ "warning": "ProseWarning"
5509
+ }
5441
5510
  },
5442
5511
  "headings": {
5443
5512
  "anchorLinks": {
@@ -5639,6 +5708,8 @@ const _inlineRuntimeConfig = {
5639
5708
  "neonUser": "",
5640
5709
  "neonPass": "",
5641
5710
  "neonDB": "",
5711
+ "neonAllowedTables": "NEON_PUBLIC",
5712
+ "neonAllowedQueries": "",
5642
5713
  "content": {
5643
5714
  "databaseVersion": "v3.5.0",
5644
5715
  "version": "3.7.1",
@@ -5975,7 +6046,7 @@ const _inlineRuntimeConfig = {
5975
6046
  }
5976
6047
  ],
5977
6048
  "credits": true,
5978
- "version": "7.4.7",
6049
+ "version": "7.5.0",
5979
6050
  "sitemaps": {
5980
6051
  "sitemap.xml": {
5981
6052
  "sitemapName": "sitemap.xml",
@@ -6006,12 +6077,12 @@ const _inlineRuntimeConfig = {
6006
6077
  "description": "A ready-to-use setup for your next application in Nuxt"
6007
6078
  }
6008
6079
  ],
6009
- "version": "3.2.11",
6080
+ "version": "3.2.14",
6010
6081
  "debug": false,
6011
6082
  "multiTenancy": []
6012
6083
  },
6013
6084
  "nuxt-robots": {
6014
- "version": "5.5.6",
6085
+ "version": "5.6.7",
6015
6086
  "isNuxtContentV2": false,
6016
6087
  "debug": false,
6017
6088
  "credits": true,
@@ -6025,6 +6096,7 @@ const _inlineRuntimeConfig = {
6025
6096
  ],
6026
6097
  "allow": [],
6027
6098
  "contentUsage": [],
6099
+ "contentSignal": [],
6028
6100
  "_indexable": true,
6029
6101
  "_rules": [],
6030
6102
  "_normalized": true
@@ -6343,7 +6415,7 @@ async function errorHandler(error, event) {
6343
6415
  // H3 will handle fallback
6344
6416
  }
6345
6417
 
6346
- const _phrzZ3NodVihtWltdnRcquocEakKXP5smwHsyvnDKGI = defineNitroPlugin((nitroApp) => {
6418
+ const _RyteHlfbnG6rTSkGS9ScvveuuX1HdLHnSCGhefj0MTs = defineNitroPlugin((nitroApp) => {
6347
6419
  if (process.env.NUXT_OAUTH_FACEBOOK_CLIENT_ID && process.env.NUXT_OAUTH_FACEBOOK_CLIENT_SECRET || process.env.NUXT_OAUTH_INSTAGRAM_CLIENT_ID && process.env.NUXT_OAUTH_INSTAGRAM_CLIENT_SECRET) {
6348
6420
  nitroApp.hooks.hook("render:html", (html) => {
6349
6421
  html.head.unshift(`
@@ -6675,7 +6747,7 @@ function getSiteConfig(e, _options) {
6675
6747
  return e.context.siteConfig.get(options);
6676
6748
  }
6677
6749
 
6678
- const _kdGf6XFSXDve3yeB4UoLLimvhaR3WS7IOBVNHP9Q8 = defineNitroPlugin(async (nitroApp) => {
6750
+ const _Zn0TIjQWBh9KTD671uE6xJTA5SpaKNMELLIwnOvm9z0 = defineNitroPlugin(async (nitroApp) => {
6679
6751
  nitroApp.hooks.hook("render:html", async (ctx, { event }) => {
6680
6752
  getRouteRules(event);
6681
6753
  process.env.NUXT_COMPONENT_ISLANDS && event.path.startsWith("/__nuxt_island");
@@ -6941,6 +7013,30 @@ const BOT_MAP = [
6941
7013
  trusted: false
6942
7014
  }
6943
7015
  ];
7016
+
7017
+ const ROBOT_DIRECTIVE_VALUES = {
7018
+ // Standard directives
7019
+ enabled: "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
7020
+ disabled: "noindex, nofollow",
7021
+ index: "index",
7022
+ noindex: "noindex",
7023
+ follow: "follow",
7024
+ nofollow: "nofollow",
7025
+ none: "none",
7026
+ all: "all",
7027
+ // Non-standard directives (not part of official robots spec)
7028
+ noai: "noai",
7029
+ noimageai: "noimageai"
7030
+ };
7031
+ function formatMaxImagePreview(value) {
7032
+ return `max-image-preview:${value}`;
7033
+ }
7034
+ function formatMaxSnippet(value) {
7035
+ return `max-snippet:${value}`;
7036
+ }
7037
+ function formatMaxVideoPreview(value) {
7038
+ return `max-video-preview:${value}`;
7039
+ }
6944
7040
  function matches(pattern, path) {
6945
7041
  const pathLength = path.length;
6946
7042
  const patternLength = pattern.length;
@@ -6996,6 +7092,22 @@ function matchPathToRule(path, _rules) {
6996
7092
  function asArray(v) {
6997
7093
  return typeof v === "undefined" ? [] : Array.isArray(v) ? v : [v];
6998
7094
  }
7095
+ function contentUsageToString(prefs) {
7096
+ return Object.entries(prefs).filter(([_, value]) => value !== void 0).map(([key, value]) => `${key}=${value}`).join(", ");
7097
+ }
7098
+ function normalizeContentPreferences(value) {
7099
+ if (!value)
7100
+ return [];
7101
+ if (Array.isArray(value))
7102
+ return value.filter((rule) => Boolean(rule));
7103
+ if (typeof value === "object" && !Array.isArray(value)) {
7104
+ const str = contentUsageToString(value);
7105
+ return str ? [str] : [];
7106
+ }
7107
+ if (typeof value === "string")
7108
+ return value ? [value] : [];
7109
+ return [];
7110
+ }
6999
7111
  function normalizeGroup(group) {
7000
7112
  if (group._normalized) {
7001
7113
  const resolvedGroup = group;
@@ -7009,13 +7121,15 @@ function normalizeGroup(group) {
7009
7121
  }
7010
7122
  const disallow = asArray(group.disallow);
7011
7123
  const allow = asArray(group.allow).filter((rule) => Boolean(rule));
7012
- const contentUsage = asArray(group.contentUsage).filter((rule) => Boolean(rule));
7124
+ const contentUsage = normalizeContentPreferences(group.contentUsage);
7125
+ const contentSignal = normalizeContentPreferences(group.contentSignal);
7013
7126
  return {
7014
7127
  ...group,
7015
7128
  userAgent: group.userAgent ? asArray(group.userAgent) : ["*"],
7016
7129
  disallow,
7017
7130
  allow,
7018
7131
  contentUsage,
7132
+ contentSignal,
7019
7133
  _indexable: !disallow.includes("/"),
7020
7134
  _rules: [
7021
7135
  ...disallow.filter(Boolean).map((r) => ({ pattern: r, allow: false })),
@@ -7039,6 +7153,8 @@ function generateRobotsTxt({ groups, sitemaps }) {
7039
7153
  lines.push(`Clean-param: ${cleanParam}`);
7040
7154
  for (const contentUsage of group.contentUsage || [])
7041
7155
  lines.push(`Content-Usage: ${contentUsage}`);
7156
+ for (const contentSignal of group.contentSignal || [])
7157
+ lines.push(`Content-Signal: ${contentSignal}`);
7042
7158
  lines.push("");
7043
7159
  }
7044
7160
  for (const sitemap of sitemaps)
@@ -7061,6 +7177,51 @@ function createPatternMap() {
7061
7177
  }
7062
7178
  return patternMap;
7063
7179
  }
7180
+ function normaliseRobotsRouteRule(config) {
7181
+ let allow;
7182
+ if (typeof config.robots === "boolean")
7183
+ allow = config.robots;
7184
+ else if (typeof config.robots === "object" && "indexable" in config.robots && typeof config.robots.indexable !== "undefined")
7185
+ allow = config.robots.indexable;
7186
+ let rule;
7187
+ if (typeof config.robots === "object" && config.robots !== null) {
7188
+ if ("rule" in config.robots && typeof config.robots.rule !== "undefined") {
7189
+ rule = config.robots.rule;
7190
+ } else if (!("indexable" in config.robots)) {
7191
+ const directives = [];
7192
+ for (const [key, value] of Object.entries(config.robots)) {
7193
+ if (value === false || value === null || value === void 0)
7194
+ continue;
7195
+ if (key in ROBOT_DIRECTIVE_VALUES && typeof value === "boolean" && value) {
7196
+ directives.push(ROBOT_DIRECTIVE_VALUES[key]);
7197
+ } else if (key === "max-image-preview" && typeof value === "string") {
7198
+ directives.push(formatMaxImagePreview(value));
7199
+ } else if (key === "max-snippet" && typeof value === "number") {
7200
+ directives.push(formatMaxSnippet(value));
7201
+ } else if (key === "max-video-preview" && typeof value === "number") {
7202
+ directives.push(formatMaxVideoPreview(value));
7203
+ }
7204
+ }
7205
+ if (directives.length > 0) {
7206
+ rule = directives.join(", ");
7207
+ }
7208
+ }
7209
+ } else if (typeof config.robots === "string") {
7210
+ rule = config.robots;
7211
+ }
7212
+ if (rule && typeof allow === "undefined") {
7213
+ const disallowIndicators = ["none", "noindex", "noai", "noimageai"];
7214
+ allow = !disallowIndicators.some(
7215
+ (indicator) => rule === indicator || rule.split(",").some((part) => part.trim() === indicator)
7216
+ );
7217
+ }
7218
+ if (typeof allow === "undefined" && typeof rule === "undefined")
7219
+ return;
7220
+ return {
7221
+ allow,
7222
+ rule
7223
+ };
7224
+ }
7064
7225
 
7065
7226
  function useRuntimeConfigNuxtRobots(event) {
7066
7227
  return useRuntimeConfig(event)["nuxt-robots"];
@@ -7083,7 +7244,7 @@ async function resolveRobotsTxtContext(e, nitro = useNitroApp()) {
7083
7244
  return generateRobotsTxtCtx;
7084
7245
  }
7085
7246
 
7086
- const _TdbS07hodDvxCZZuDol6xBiLqU3edXD7OlgwtHY2s = defineNitroPlugin(async (nitroApp) => {
7247
+ const _ZAgLRdUhp8Zt7vtFkaixxXqYUnoG64wVnb3BBHcHHU = defineNitroPlugin(async (nitroApp) => {
7087
7248
  const { isNuxtContentV2, robotsDisabledValue, botDetection } = useRuntimeConfigNuxtRobots();
7088
7249
  if (botDetection !== false) {
7089
7250
  nitroApp._robotsPatternMap = createPatternMap();
@@ -7132,7 +7293,7 @@ function createI18nContext() {
7132
7293
  }
7133
7294
 
7134
7295
  /*!
7135
- * shared v11.1.12
7296
+ * shared v11.2.8
7136
7297
  * (c) 2025 kazuya kawaguchi
7137
7298
  * Released under the MIT License.
7138
7299
  */
@@ -7517,7 +7678,7 @@ function* detect(detectors, detection, path) {
7517
7678
  }
7518
7679
  yield { locale: detection.fallbackLocale, source: "fallback" };
7519
7680
  }
7520
- const _LoVVNyMOiEEEXN0qXs2724FMLdNnKMllA3Qq3f7Cis = defineNitroPlugin(async (nitro) => {
7681
+ const _vSAjmViAuf8beEPzzugIlKydW5HkGhpeBGueyLuLv1o = defineNitroPlugin(async (nitro) => {
7521
7682
  const runtimeI18n = useRuntimeI18n();
7522
7683
  const rootRedirect = resolveRootRedirect(runtimeI18n.rootRedirect);
7523
7684
  const _defaultLocale = runtimeI18n.defaultLocale || "";
@@ -7620,7 +7781,7 @@ const _LoVVNyMOiEEEXN0qXs2724FMLdNnKMllA3Qq3f7Cis = defineNitroPlugin(async (nit
7620
7781
 
7621
7782
  const script = "\"use strict\";(()=>{const t=window,e=document.documentElement,c=[\"dark\",\"light\"],n=getStorageValue(\"localStorage\",\"nuxt-color-mode\")||\"system\";let i=n===\"system\"?u():n;const r=e.getAttribute(\"data-color-mode-forced\");r&&(i=r),l(i),t[\"__NUXT_COLOR_MODE__\"]={preference:n,value:i,getColorScheme:u,addColorScheme:l,removeColorScheme:d};function l(o){const s=\"\"+o+\"\",a=\"\";e.classList?e.classList.add(s):e.className+=\" \"+s,a&&e.setAttribute(\"data-\"+a,o)}function d(o){const s=\"\"+o+\"\",a=\"\";e.classList?e.classList.remove(s):e.className=e.className.replace(new RegExp(s,\"g\"),\"\"),a&&e.removeAttribute(\"data-\"+a)}function f(o){return t.matchMedia(\"(prefers-color-scheme\"+o+\")\")}function u(){if(t.matchMedia&&f(\"\").media!==\"not all\"){for(const o of c)if(f(\":\"+o).matches)return o}return\"light\"}})();function getStorageValue(t,e){switch(t){case\"localStorage\":return window.localStorage.getItem(e);case\"sessionStorage\":return window.sessionStorage.getItem(e);case\"cookie\":return getCookie(e);default:return null}}function getCookie(t){const c=(\"; \"+window.document.cookie).split(\"; \"+t+\"=\");if(c.length===2)return c.pop()?.split(\";\").shift()}";
7622
7783
 
7623
- const _7V99JalBsmMpJ4Im6qwrWJC2toR4GkZuF5sU0ekK6TU = (function(nitro) {
7784
+ const _XX9IEjVWshLmMVIqGp15oAxz0tYfztvz3LmypBh179E = (function(nitro) {
7624
7785
  nitro.hooks.hook("render:html", (htmlContext) => {
7625
7786
  htmlContext.head.push(`<script>${script}<\/script>`);
7626
7787
  });
@@ -7669,6 +7830,8 @@ function defineRenderHandler(render) {
7669
7830
  });
7670
7831
  }
7671
7832
 
7833
+ const r=Object.create(null),i$1=e=>globalThis.process?.env||globalThis._importMeta_.env||globalThis.Deno?.env.toObject()||globalThis.__env__||(e?r:globalThis),o$1=new Proxy(r,{get(e,s){return i$1()[s]??r[s]},has(e,s){const E=i$1();return s in E||s in r},set(e,s,E){const B=i$1(true);return B[s]=E,true},deleteProperty(e,s){if(!s)return false;const E=i$1(true);return delete E[s],true},ownKeys(){const e=i$1(true);return Object.keys(e)}}),t=typeof process<"u"&&process.env&&"production"||"",f=[["APPVEYOR"],["AWS_AMPLIFY","AWS_APP_ID",{ci:true}],["AZURE_PIPELINES","SYSTEM_TEAMFOUNDATIONCOLLECTIONURI"],["AZURE_STATIC","INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN"],["APPCIRCLE","AC_APPCIRCLE"],["BAMBOO","bamboo_planKey"],["BITBUCKET","BITBUCKET_COMMIT"],["BITRISE","BITRISE_IO"],["BUDDY","BUDDY_WORKSPACE_ID"],["BUILDKITE"],["CIRCLE","CIRCLECI"],["CIRRUS","CIRRUS_CI"],["CLOUDFLARE_PAGES","CF_PAGES",{ci:true}],["CLOUDFLARE_WORKERS","WORKERS_CI",{ci:true}],["CODEBUILD","CODEBUILD_BUILD_ARN"],["CODEFRESH","CF_BUILD_ID"],["DRONE"],["DRONE","DRONE_BUILD_EVENT"],["DSARI"],["GITHUB_ACTIONS"],["GITLAB","GITLAB_CI"],["GITLAB","CI_MERGE_REQUEST_ID"],["GOCD","GO_PIPELINE_LABEL"],["LAYERCI"],["HUDSON","HUDSON_URL"],["JENKINS","JENKINS_URL"],["MAGNUM"],["NETLIFY"],["NETLIFY","NETLIFY_LOCAL",{ci:false}],["NEVERCODE"],["RENDER"],["SAIL","SAILCI"],["SEMAPHORE"],["SCREWDRIVER"],["SHIPPABLE"],["SOLANO","TDDIUM"],["STRIDER"],["TEAMCITY","TEAMCITY_VERSION"],["TRAVIS"],["VERCEL","NOW_BUILDER"],["VERCEL","VERCEL",{ci:false}],["VERCEL","VERCEL_ENV",{ci:false}],["APPCENTER","APPCENTER_BUILD_ID"],["CODESANDBOX","CODESANDBOX_SSE",{ci:false}],["CODESANDBOX","CODESANDBOX_HOST",{ci:false}],["STACKBLITZ"],["STORMKIT"],["CLEAVR"],["ZEABUR"],["CODESPHERE","CODESPHERE_APP_ID",{ci:true}],["RAILWAY","RAILWAY_PROJECT_ID"],["RAILWAY","RAILWAY_SERVICE_ID"],["DENO-DEPLOY","DENO_DEPLOYMENT_ID"],["FIREBASE_APP_HOSTING","FIREBASE_APP_HOSTING",{ci:true}]];function b(){if(globalThis.process?.env)for(const e of f){const s=e[1]||e[0];if(globalThis.process?.env[s])return {name:e[0].toLowerCase(),...e[2]}}return globalThis.process?.env?.SHELL==="/bin/jsh"&&globalThis.process?.versions?.webcontainer?{name:"stackblitz",ci:false}:{name:"",ci:false}}const l$2=b();l$2.name;function n(e){return e?e!=="false":false}const I=globalThis.process?.platform||"",T=n(o$1.CI)||l$2.ci!==false,R=n(globalThis.process?.stdout&&globalThis.process?.stdout.isTTY);n(o$1.DEBUG);const a=t==="test"||n(o$1.TEST),h=t==="dev"||t==="development";n(o$1.MINIMAL)||T||a||!R;const A=/^win/i.test(I);!n(o$1.NO_COLOR)&&(n(o$1.FORCE_COLOR)||(R||A)&&o$1.TERM!=="dumb"||T);const C=(globalThis.process?.versions?.node||"").replace(/^v/,"")||null;Number(C?.split(".")[0])||null;const W=globalThis.process||Object.create(null),_={versions:{}};new Proxy(W,{get(e,s){if(s==="env")return o$1;if(s in e)return e[s];if(s in _)return _[s]}});const O=globalThis.process?.release?.name==="node",c$1=!!globalThis.Bun||!!globalThis.process?.versions?.bun,D=!!globalThis.Deno,L=!!globalThis.fastly,S=!!globalThis.Netlify,u=!!globalThis.EdgeRuntime,N=globalThis.navigator?.userAgent==="Cloudflare-Workers",F=[[S,"netlify"],[u,"edge-light"],[N,"workerd"],[L,"fastly"],[D,"deno"],[c$1,"bun"],[O,"node"]];function G(){const e=F.find(s=>s[0]);if(e)return {name:e[1]}}const P=G();P?.name||"";
7834
+
7672
7835
  function buildAssetsDir() {
7673
7836
  return useRuntimeConfig().app.buildAssetsDir;
7674
7837
  }
@@ -7688,299 +7851,27 @@ const defuReplaceArray = createDefu((obj, key, value) => {
7688
7851
  }
7689
7852
  });
7690
7853
 
7691
- let neonClient = null;
7692
- function getNeonClient() {
7693
- const neonConnectionString = buildNeonConnectionString();
7694
- if (neonClient === null) {
7695
- neonClient = neon(neonConnectionString);
7696
- }
7697
- return neonClient;
7698
- }
7699
- function buildNeonConnectionString() {
7700
- const nuxtConfig = useRuntimeConfig();
7701
- const neonHost = nuxtConfig.neonHost;
7702
- const neonPass = nuxtConfig.neonPass;
7703
- const neonUser = nuxtConfig.neonUser;
7704
- const neonDB = nuxtConfig.neonDB || nuxtConfig.public.neonDB;
7705
- let connectionString = `postgresql://${neonUser}:${neonPass}@${neonHost}.neon.tech/${neonDB}`;
7706
- const sslMode = nuxtConfig.public.neonSSLMode;
7707
- if (sslMode !== "none") {
7708
- connectionString += `?sslmode=${sslMode}`;
7709
- }
7710
- return connectionString;
7711
- }
7854
+ const NEON_WHERE_OPERATORS=["=","!=",">","GT",">=","GTE","<","LT","<=","LTE","LIKE","IN","NOT IN","BETWEEN"],NEON_WHERE_RELATIONS=["AND","OR"],NEON_JOIN_TYPES=["INNER","LEFT","RIGHT","FULL"],NEON_SORT_DIRECTIONS=["ASC","asc","DESC","desc"];
7712
7855
 
7713
- function getTableName(table) {
7714
- if (typeof table === "string") {
7715
- return table;
7716
- } else {
7717
- return tableWithSchemaAndAlias(table);
7718
- }
7719
- }
7720
- function isTableWithAlias(table) {
7721
- return typeof table === "object" && table !== null && typeof table.alias === "string" && table.alias.trim() !== "";
7722
- }
7723
- function getTableClause(from) {
7724
- let sqlString = " FROM ";
7725
- if (typeof from === "string") {
7726
- sqlString += from;
7727
- } else if (Array.isArray(from)) {
7728
- let tables = "";
7729
- from.forEach((t) => {
7730
- if (tables) {
7731
- if (t.joinColumn1) {
7732
- const joinCondition = getJoinCondition(t.joinColumn1, t.joinColumn2);
7733
- tables += ` ${t.joinType || "INNER"} JOIN ${tableWithSchemaAndAlias(t)} ON ${joinCondition}`;
7734
- } else {
7735
- tables += `, ${tableWithSchemaAndAlias(t)}`;
7736
- }
7737
- } else {
7738
- tables = tableWithSchemaAndAlias(t);
7739
- }
7740
- });
7741
- sqlString += tables;
7742
- } else {
7743
- sqlString += tableWithSchemaAndAlias(from);
7744
- }
7745
- return sqlString;
7746
- }
7747
- function tableWithSchemaAndAlias(t) {
7748
- if (t.schema) {
7749
- return `${t.schema}.${tableWithAlias(t)}`;
7750
- }
7751
- return tableWithAlias(t);
7752
- }
7753
- function tableWithAlias(t) {
7754
- if (t.alias) {
7755
- return `${t.table} ${t.alias}`;
7756
- }
7757
- return t.table;
7758
- }
7759
- function getJoinCondition(c1, c2) {
7760
- return `${columnWithAlias(c1)} = ${columnWithAlias(c2)}`;
7761
- }
7762
- function getColumnsClause(columns) {
7763
- let sqlString = "";
7764
- if (Array.isArray(columns)) {
7765
- if (columns[0] && typeof columns[0] === "object") {
7766
- sqlString += columns.map((c) => columnWithAlias(c)).join(", ");
7767
- } else {
7768
- sqlString += columns.join(", ");
7769
- }
7770
- } else {
7771
- sqlString += columnWithAlias(columns);
7772
- }
7773
- return sqlString;
7774
- }
7775
- function columnWithAlias(c) {
7776
- if (typeof c === "string") {
7777
- return c;
7778
- }
7779
- if (c.alias) {
7780
- return `${c.alias}.${c.name}`;
7781
- }
7782
- return c.name;
7783
- }
7784
- function getWhereClause(where) {
7785
- let sqlString = "";
7786
- if (where) {
7787
- sqlString += " WHERE ";
7788
- if (typeof where === "string") {
7789
- sqlString += where;
7790
- } else if (Array.isArray(where)) {
7791
- let conditions = "";
7792
- where.forEach((w) => {
7793
- if (conditions) {
7794
- conditions += ` ${w.operator} ${columnWithAlias(w.column)} ${w.condition} ${getWhereValue(w.value)}`;
7795
- } else {
7796
- conditions = `${columnWithAlias(w.column)} ${w.condition} ${getWhereValue(w.value)}`;
7797
- }
7798
- });
7799
- sqlString += conditions;
7800
- } else {
7801
- sqlString += `${where.column} ${where.condition} ${getWhereValue(where.value)}`;
7802
- }
7803
- }
7804
- return sqlString;
7805
- }
7806
- function getWhereValue(v) {
7807
- if (typeof v === "string") {
7808
- return escapeIfNeeded(v);
7809
- }
7810
- return columnWithAlias(v);
7811
- }
7812
- function getOrderClause(order) {
7813
- let sqlString = "";
7814
- if (order) {
7815
- sqlString = " ORDER BY ";
7816
- if (typeof order === "string") {
7817
- sqlString += order;
7818
- } else if (Array.isArray(order)) {
7819
- let ordering = "";
7820
- order.forEach((o) => {
7821
- if (ordering) {
7822
- ordering += `, `;
7823
- }
7824
- ordering += `${columnWithAlias(o.column)} ${o.direction || "ASC"}`;
7825
- });
7826
- sqlString += ordering;
7827
- } else {
7828
- sqlString += `${columnWithAlias(order.column)} ${order.direction || "ASC"}`;
7829
- }
7830
- }
7831
- return sqlString;
7832
- }
7833
- function getGroupByClause(group) {
7834
- let sqlString = "";
7835
- if (group) {
7836
- sqlString = " GROUP BY ";
7837
- sqlString += getColumnsClause(group);
7838
- }
7839
- return sqlString;
7840
- }
7841
- function getHavingClause(having) {
7842
- let sqlString = "";
7843
- if (having) {
7844
- sqlString += " HAVING ";
7845
- if (typeof having === "string") {
7846
- sqlString += having;
7847
- } else if (Array.isArray(having)) {
7848
- let conditions = "";
7849
- having.forEach((h) => {
7850
- if (conditions) {
7851
- conditions += ` ${h.operator} ${h.column} ${h.condition} ${escapeIfNeeded(h.value)}`;
7852
- } else {
7853
- conditions = `${h.column} ${h.condition} ${escapeIfNeeded(h.value)}`;
7854
- }
7855
- });
7856
- sqlString += conditions;
7857
- } else {
7858
- sqlString += `${having.column} ${having.condition} ${escapeIfNeeded(having.value)}`;
7859
- }
7860
- }
7861
- return sqlString;
7862
- }
7863
- function getLimitClause(limit) {
7864
- let sqlString = "";
7865
- if (limit) {
7866
- sqlString += ` LIMIT ${limit}`;
7867
- }
7868
- return sqlString;
7869
- }
7870
- function escapeIfNeeded(value) {
7871
- if (typeof value === "string" && !value.startsWith("'")) {
7872
- value = "'" + value;
7873
- }
7874
- if (typeof value === "string" && !value.endsWith("'")) {
7875
- value = value + "'";
7876
- }
7877
- return value;
7878
- }
7856
+ function assertNeonWhereOperator(e){if(e&&!NEON_WHERE_OPERATORS.includes(e))throw new Error(`Invalid WHERE operator '${e}' rejected as potential SQL injection. Report bug in Nuxt Neon module repository if this is a false positive.`)}function assertNeonWhereRelation(e){if(e&&!NEON_WHERE_RELATIONS.includes(e))throw new Error(`Invalid WHERE relation '${e}' rejected as potential SQL injection. Report bug in Nuxt Neon module repository if this is a false positive.`)}function assertNeonJoinType(e){if(e&&!NEON_JOIN_TYPES.includes(e))throw new Error(`Invalid JOIN type '${e}' rejected as potential SQL injection. Report bug in Nuxt Neon module repository if this is a false positive.`)}function assertNeonSortDirection(e){if(e&&!NEON_SORT_DIRECTIONS.includes(e))throw new Error(`Invalid SORT direction '${e}' rejected as potential SQL injection. Report bug in Nuxt Neon module repository if this is a false positive.`)}function assertAllowedTable(e,i){let o;if(typeof e=="string")o=e;else if(Array.isArray(e)){e.forEach(n=>assertAllowedTable(n,i));return}else e.schema?o=`${e.schema}.${e.table}`:o=e.table;if(!i.includes("NEON_ALL")&&!(i.includes("NEON_PUBLIC")&&(!o.includes("pg_")&&!o.includes("information_schema.")||i.includes(o)))&&!i.includes(o))throw new Error(`Query for table '${o}' rejected as not allowed. Whitelisted tables can be set via \`neon.neonAllowedTables\` or \`NUXT_NEON_ALLOWED_TABLES\``)}function assertAllowedQuery(e,i){if(!i.includes("NEON_ALL")&&!i.includes(e))throw new Error(`Query '${e}' rejected as not allowed. Whitelisted queries can be set via \`neon.neonAllowedQueries\` or \`NUXT_NEON_ALLOWED_QUERIES\``)}
7879
7857
 
7880
- async function debugSQLIfAllowed(sqlString) {
7881
- if (useRuntimeConfig().public.neonDebugSQL === true) {
7882
- await useStorage().setItem("neonSQLQuery", sqlString);
7883
- }
7884
- }
7858
+ function decodeWhereType(r){return r&&(Array.isArray(r)?r.forEach(e=>{e.operator=p(e.operator);}):r.operator=p(r.operator)),r}function p(r){return r&&(r=r.replaceAll("LTE","<=").replaceAll("LT","<").replaceAll("GTE",">=").replaceAll("GT",">")),r}
7885
7859
 
7886
- function sanitizeSQLString(sql) {
7887
- return SqlString.escape(sql);
7888
- }
7860
+ function sanitizeSQLString(r){return testInputString(r),n$1.escape(r)}function sanitizeSQLIdentifier(r){if(r){testInputString(r,true);let e=n$1.escape(r);return e=e.replaceAll(".",'"."'),'"'+e.slice(1,-1)+'"'}return r}function testInputString(r,e=false){if(r)try{if(r.includes(";"))throw new Error("contains semicolon");if(r.includes("="))throw new Error("contains equals sign");if(r.includes("--")||r.includes("/*")||r.includes("*/"))throw new Error("contains comments");if(!e&&r.includes(".")&&Number.isNaN(Number(r)))throw new Error("contains dot");if(/[\x00-\x1F\x7F]/.test(r))throw new Error("contains control characters")}catch(t){throw new Error(`Value ${r} rejected as potential SQL injection (${t.message}). Report bug in Nuxt Neon module repository if this is a false positive.`)}}
7889
7861
 
7890
- async function count(neon, query) {
7891
- return await select(neon, { ...query, columns: ["count(*)"] });
7892
- }
7893
- async function select(neon, query) {
7894
- let sqlString = "SELECT ";
7895
- sqlString += getColumnsClause(query.columns);
7896
- sqlString += getTableClause(query.from);
7897
- sqlString += getWhereClause(query.where);
7898
- sqlString += getGroupByClause(query.group);
7899
- sqlString += getHavingClause(query.having);
7900
- sqlString += getOrderClause(query.order);
7901
- sqlString += getLimitClause(query.limit);
7902
- await debugSQLIfAllowed(sqlString);
7903
- return await neon.query(sqlString, void 0, { arrayMode: false, fullResults: false });
7904
- }
7905
- async function insert(neon, query) {
7906
- if (isTableWithAlias(query.table)) {
7907
- throw new Error("Table alias is not allowed for INSERT statement");
7908
- }
7909
- const rows = Array.isArray(query.values) ? query.values : [query.values];
7910
- const columns = Object.keys(rows[0]);
7911
- const sqlColumns = columns.join(", ");
7912
- const valueTuples = rows.map(
7913
- (row) => "(" + columns.map((col) => sanitizeSQLString(row[col])).join(", ") + ")"
7914
- ).join(", ");
7915
- const sqlString = `INSERT INTO ${getTableName(query.table)} (${sqlColumns}) VALUES ${valueTuples}`;
7916
- await debugSQLIfAllowed(sqlString);
7917
- return await neon.query(sqlString, void 0, { arrayMode: false, fullResults: false });
7918
- }
7919
- async function update(neon, query) {
7920
- let sqlString = `UPDATE ${getTableName(query.table)}`;
7921
- if (isTableWithAlias(query.table)) {
7922
- const alias = query.table.alias;
7923
- sqlString.replace(` ${alias}`, ` AS ${alias}`);
7924
- }
7925
- sqlString += " SET ";
7926
- Object.entries(query.values).forEach(([key, value]) => {
7927
- sqlString += `${key} = ${sanitizeSQLString(value)},`;
7928
- });
7929
- sqlString = sqlString.slice(0, -1);
7930
- sqlString += getWhereClause(query.where);
7931
- await debugSQLIfAllowed(sqlString);
7932
- return await neon.query(sqlString, void 0, { arrayMode: false, fullResults: false });
7933
- }
7934
- async function del(neon, query) {
7935
- let sqlString = `DELETE FROM ${getTableName(query.table)}`;
7936
- sqlString += getWhereClause(query.where);
7937
- await debugSQLIfAllowed(sqlString);
7938
- return await neon.query(sqlString, void 0, { arrayMode: false, fullResults: false });
7939
- }
7862
+ function getTableName(e){if(typeof e=="string")return sanitizeSQLIdentifier(e);if(e.schema){const n=`${e.schema}.${e.table}`;return e.alias?`${sanitizeSQLIdentifier(n)} ${sanitizeSQLIdentifier(e.alias)}`:sanitizeSQLIdentifier(n)}else return e.alias?`${sanitizeSQLIdentifier(e.table)} ${sanitizeSQLIdentifier(e.alias)}`:sanitizeSQLIdentifier(e.table)}function isTableWithAlias(e){return typeof e=="object"&&e!==null&&typeof e.alias=="string"&&e.alias.trim()!==""}function fixTableAliasForUpdate(e,n){const t=n.alias;return e.replace(`"${t}"`,`AS "${t}"`)}function getTableClause(e){let n=" FROM ";if(typeof e=="string")n+=getTableName(e);else if(Array.isArray(e)){let t="";e.forEach(r=>{if(t)if(r.joinColumn1){const f=g(r.joinColumn1,r.joinColumn2);assertNeonJoinType(r.joinType),t+=` ${r.joinType||"INNER"} JOIN ${getTableName(r)} ON ${f}`;}else t+=`, ${getTableName(r)}`;else t=getTableName(r);}),n+=t;}else n+=getTableName(e);return n}function g(e,n){return `${o(e)} = ${o(n)}`}function getColumnsClause(e){let n="";return Array.isArray(e)?e[0]&&typeof e[0]=="object"?n+=e.map(t=>o(t)).join(", "):n+=e.map(t=>o(t)).join(", "):n+=o(e),n}function o(e){if(typeof e=="string"){if(e==="*")return e;const n=e.match(/^count\(([*|[\w]+)\)$/);return n&&n[1]?n[1]==="*"?e:`count(${sanitizeSQLIdentifier(n[1])})`:sanitizeSQLIdentifier(e)}return e.alias?sanitizeSQLIdentifier(`${e.alias}.${e.name}`):sanitizeSQLIdentifier(e.name)}function getWhereClause(e){let n="";if(e=decodeWhereType(e),e)if(Array.isArray(e)){if(e.length>0){let t="";e.forEach(r=>{t?t+=s$1(r,true):t=s$1(r);}),n+=t;}}else n+=s$1(e);return n&&(n=" WHERE "+n),n}function s$1(e,n=false){let t="";if(n&&(assertNeonWhereRelation(e.relation),t+=` ${e.relation} `),t+=o(e.column),assertNeonWhereOperator(e.operator),t+=` ${e.operator} `,e.operator.includes("IN")){const r=e.value.toString().split(",");t+="('",t+=r.join("', '"),t+="')";}else if(e.operator==="BETWEEN"){const r=e.value.toString().split(",");t+=`${l$1(r[0])} AND ${l$1(r[1])}`;}else t+=l$1(e.value);return t}function l$1(e){return typeof e=="string"?(e.startsWith("'")&&e.endsWith("'")&&(e=e.slice(1,-1)),sanitizeSQLString(e)):o(e)}function getOrderClause(e){let n="";if(e)if(Array.isArray(e)){if(e.length>0){let t="";e.forEach(r=>{t&&(t+=", "),assertNeonSortDirection(r.direction),t+=`${o(r.column)} ${r.direction?.toUpperCase()||"ASC"}`;}),n+=t;}}else assertNeonSortDirection(e.direction),n+=`${o(e.column)} ${e.direction?.toUpperCase()||"ASC"}`;return n&&(n=" ORDER BY "+n),n}function getGroupByClause(e){let n="";return e&&(Array.isArray(e)?e.length>0&&(n+=getColumnsClause(e)):n+=o(e)),n&&(n=" GROUP BY "+n),n}function getHavingClause(e){let n="";if(e=decodeWhereType(e),e)if(Array.isArray(e)){if(e.length>0){let t="";e.forEach(r=>{t?t+=s$1(r,true):t=s$1(r);}),n+=t;}}else n+=s$1(e);return n&&(n=" HAVING "+n),n}function getLimitClause(e){let n="";return e&&typeof e=="number"&&(n+=` LIMIT ${e}`),n}
7940
7863
 
7941
- async function getGenericError(source, message) {
7942
- return {
7943
- name: "NuxtNeonServerError",
7944
- source,
7945
- code: 500,
7946
- message,
7947
- sql: await getSQLIfAllowed()
7948
- };
7949
- }
7950
- async function parseNeonClientError(source, err) {
7951
- const error = err;
7952
- const name = error.name;
7953
- let message = error.message;
7954
- if (name === "NeonDbError") {
7955
- console.debug("Parsing raw error message from Neon serverless client:");
7956
- console.debug(message);
7957
- const codeInfo = message.match(/HTTP status (\d+)/);
7958
- const code = codeInfo ? Number(codeInfo[1]) : 500;
7959
- const jsonStart = message.indexOf("{");
7960
- const jsonEnd = message.lastIndexOf("}") + 1;
7961
- const jsonStr = message.slice(jsonStart, jsonEnd);
7962
- if (jsonStr) {
7963
- message = JSON.parse(jsonStr).message;
7964
- }
7965
- return {
7966
- name: "NuxtNeonServerError",
7967
- source,
7968
- code,
7969
- message,
7970
- sql: await getSQLIfAllowed()
7971
- };
7972
- } else {
7973
- console.debug("Received other error object:");
7974
- console.debug(name, message);
7975
- return await getGenericError(source, message);
7976
- }
7977
- }
7978
- async function getSQLIfAllowed() {
7979
- if (useRuntimeConfig().public.neonDebugSQL === true) {
7980
- return await useStorage().getItem("neonSQLQuery");
7981
- }
7982
- return void 0;
7983
- }
7864
+ function getSelectSQL(t){let e="SELECT ";return e+=getColumnsClause(t.columns),e+=getTableClause(t.from),e+=getWhereClause(t.where),e+=getGroupByClause(t.group),e+=getHavingClause(t.having),e+=getOrderClause(t.order),e+=getLimitClause(t.limit),e}function getInsertSQL(t){if(isTableWithAlias(t.table))throw new Error("Table alias is not allowed for INSERT statement");const e=Array.isArray(t.values)?t.values:[t.values],n=Object.keys(e[0]),r=n.map(s=>`"${sanitizeSQLString(s).slice(1,-1)}"`).join(", "),g=e.map(s=>"("+n.map(u=>sanitizeSQLString(s[u])).join(", ")+")").join(", ");return `INSERT INTO ${getTableName(t.table)} (${r}) VALUES ${g}`}function getUpdateSQL(t){let e=`UPDATE ${getTableName(t.table)}`;return isTableWithAlias(t.table)&&(e=fixTableAliasForUpdate(e,t.table)),e+=" SET ",Object.entries(t.values).forEach(([n,r])=>{e+=`"${sanitizeSQLString(n).slice(1,-1)}" = ${sanitizeSQLString(r)}, `;}),e=e.slice(0,-2),e+=getWhereClause(t.where),e}function getDeleteSQL(t){let e=`DELETE FROM ${getTableName(t.table)}`;return e+=getWhereClause(t.where),e}
7865
+
7866
+ async function debugSQLIfAllowed(e){useRuntimeConfig().public.neonDebugSQL===true&&(await useStorage().setItem("neonSQLQuery",e),useRuntimeConfig().public.neonDebugRuntime===true&&console.debug("Generated SQL:",e));}
7867
+
7868
+ function s(){const{neon:i}=useNeonDriver();return i}function c(){return useRuntimeConfig().neonAllowedTables?.split(",")||[]}const useNeonServer=()=>{const i=async(r=s())=>{useRuntimeConfig().public.neonDebugRuntime===true&&console.debug("Neon `neonStatus` server-side health check invoked");let n="";try{const e=await N("SELECT 1=1 as status",r);Array.isArray(e)||(n=formatNeonError(e));}catch(e){n=e.message;}return {database:useRuntimeConfig().neonDB,status:n?"ERR":"OK",debugInfo:n}},f=async(r=s())=>(useRuntimeConfig().public.neonDebugRuntime===true&&console.debug("Neon `isOk` server-side health check invoked"),(await i(r)).status==="OK"),p=async(r,n=s())=>{try{useRuntimeConfig().public.neonDebugRuntime===!0&&console.debug("Neon `select` server-side wrapper invoked"),assertAllowedTable(r.from,c());const e=getSelectSQL(r);return await debugSQLIfAllowed(e),await n.query(e,void 0,{arrayMode:!1,fullResults:!1})}catch(e){return await parseNeonError("useNeonServer().select",e)}},w=async(r,n=s())=>{try{return useRuntimeConfig().public.neonDebugRuntime===!0&&console.debug("Neon `count` server-side wrapper invoked"),(await p({...r,columns:["count(*)"]},n))?.at(0)?.count||-1}catch(e){return await parseNeonError("useNeonServer().count",e)}},b=async(r,n=s())=>{try{useRuntimeConfig().public.neonDebugRuntime===!0&&console.debug("Neon `insert` server-side wrapper invoked"),assertAllowedTable(r.table,c());const e=getInsertSQL(r);await debugSQLIfAllowed(e);const o=await n.query(e,void 0,{arrayMode:!1,fullResults:!1});return o.length===0?"OK":(console.debug(o),await getGenericError("useNeonServer().insert","INSERT operation failed"))}catch(e){return await parseNeonError("useNeonServer().insert",e)}},v=async(r,n=s())=>{try{useRuntimeConfig().public.neonDebugRuntime===!0&&console.debug("Neon `update` server-side wrapper invoked"),assertAllowedTable(r.table,c());const e=getUpdateSQL(r);return await debugSQLIfAllowed(e),(await n.query(e,void 0,{arrayMode:!1,fullResults:!1})).length===0?"OK":await getGenericError("useNeonServer().update","UPDATE operation failed")}catch(e){return await parseNeonError("useNeonServer().update",e)}},y=async(r,n=s())=>{try{useRuntimeConfig().public.neonDebugRuntime===!0&&console.debug("Neon `delete` server-side wrapper invoked"),assertAllowedTable(r.table,c());const e=getDeleteSQL(r);await debugSQLIfAllowed(e);const o=await n.query(e,void 0,{arrayMode:!1,fullResults:!1});return o.length===0?"OK":(console.debug(o),await getGenericError("/api/_neon/delete","DELETE operation failed"))}catch(e){return await parseNeonError("useNeonServer().delete",e)}},N=async(r,n=s())=>{try{if(useRuntimeConfig().public.neonDebugRuntime===!0&&console.debug("Neon `raw` server-side wrapper invoked"),r!=="SELECT 1=1 as status"&&!(useRuntimeConfig().public.neonExposeRawEndpoint===!0))throw getForbiddenError("/api/_neon/raw",!0);if(await debugSQLIfAllowed(r),r!=="SELECT 1=1 as status"){const o=useRuntimeConfig().neonAllowedQueries?.split(";")||[];assertAllowedQuery(r,o);}return await n.query(r,void 0,{arrayMode:!1,fullResults:!1})}catch(e){return await parseNeonError("useNeonServer().raw",e)}};return {neonStatus:i,isOk:f,raw:N,count:w,select:p,insert:b,update:v,del:y}};
7869
+
7870
+ const useNeonDriver=()=>{let n=null;if(n===null){useRuntimeConfig().public.neonDebugRuntime===true&&console.debug("Creating new Neon client instance");const e=l();n=neon(e);}return {neon:n}};function l(){const n=useRuntimeConfig(),e=n.neonHost,r=n.neonPass,s=n.neonUser,c=n.neonDB||n.public.neonDB;let o=`postgresql://${s}:${r}@${e}.neon.tech/${c}`;const t=n.public.neonSSLMode;return t!=="none"&&(o+=`?sslmode=${t}`),o}
7871
+
7872
+ function getForbiddenError(r,n=false){return {name:"NuxtNeonServerError",source:r,code:403,message:n?NEON_RAW_ENDPOINT_DISABLED:NEON_ENDPOINTS_DISABLED}}async function getGenericError(r,n){return {name:"NuxtNeonServerError",source:r,code:500,message:n,sql:await i()}}async function parseNeonError(r,n){const o=n,t=o.name;let e=o.message;if(t==="NeonDbError"){console.debug("Parsing raw error message from Neon serverless client:"),console.debug(e);const s=e.match(/HTTP status (\d+)/),c=s?Number(s[1]):500,u=e.indexOf("{"),g=e.lastIndexOf("}")+1,a=e.slice(u,g);return a&&(e=JSON.parse(a).message),{name:"NuxtNeonServerError",source:r,code:c,message:e,sql:await i()}}else return console.debug("Received other error object:"),console.debug(t,e),await getGenericError(r,e)}async function i(){if(useRuntimeConfig().public.neonDebugSQL===true)return await useStorage().getItem("neonSQLQuery")}
7873
+
7874
+ const NEON_ENDPOINTS_DISABLED="API endpoints are disabled for security reasons. It is advised to handle all DB operations at the server side. If you are 100% sure, you can expose them by setting `neon.neonExposeEndpoints: true` or `NUXT_PUBLIC_NEON_EXPOSE_ENDPOINTS=true`",NEON_RAW_ENDPOINT_DISABLED="API endpoint for `raw` queries is disabled for security reasons (even if other endpoints are enabled). It is advised never to expose this one in production app. If you are 100% sure, you can expose it by setting `neon.neonExposeRawEndpoint: true` or `NUXT_PUBLIC_NEON_EXPOSE_RAW_ENDPOINT=true`",formatNeonError=e=>`${e.name} in ${e.source}: ${e.message} (status: ${e.code})`;
7984
7875
 
7985
7876
  const checksums = {
7986
7877
  "content": "v3.5.0--bgIYhpjRuV8zbHJE_CfelwKpJ_Td6YuGJwixiek8lmI"
@@ -8226,23 +8117,53 @@ function _useSession(event, config = {}) {
8226
8117
  return useSession(event, finalConfig);
8227
8118
  }
8228
8119
 
8229
- function getNitroOrigin(e) {
8230
- process.env.NITRO_SSL_CERT;
8231
- process.env.NITRO_SSL_KEY;
8232
- let host = process.env.NITRO_HOST || process.env.HOST || false;
8233
- let port = false;
8234
- let protocol = "https" ;
8235
- if (e) {
8236
- host = getRequestHost(e, { xForwardedHost: true }) || host;
8237
- protocol = getRequestProtocol(e, { xForwardedProto: true }) || protocol;
8120
+ function getNitroOrigin$1(ctx = {}) {
8121
+ const isDev = ctx.isDev ?? h;
8122
+ const isPrerender = ctx.isPrerender ?? !!o$1.prerender;
8123
+ let host = "";
8124
+ let port = "";
8125
+ let protocol = o$1.NITRO_SSL_CERT && o$1.NITRO_SSL_KEY ? "https" : "http";
8126
+ if (isDev || isPrerender) {
8127
+ const devEnv = o$1.__NUXT_DEV__ || o$1.NUXT_VITE_NODE_OPTIONS;
8128
+ if (devEnv) {
8129
+ const parsed = JSON.parse(devEnv);
8130
+ const origin = parsed.proxy?.url || parsed.baseURL?.replace("/__nuxt_vite_node__", "");
8131
+ host = origin.replace(/^https?:\/\//, "");
8132
+ protocol = origin.startsWith("https") ? "https" : "http";
8133
+ }
8238
8134
  }
8239
- if (typeof host === "string" && host.includes(":")) {
8240
- const hostParts = host.split(":");
8241
- port = hostParts.pop();
8242
- host = hostParts.join(":") || false;
8135
+ if (!host && ctx.requestHost) {
8136
+ host = ctx.requestHost;
8137
+ protocol = ctx.requestProtocol || protocol;
8243
8138
  }
8244
- port = port ? `:${port}` : "";
8245
- return withTrailingSlash(`${protocol}://${host}${port}`);
8139
+ if (!host) {
8140
+ host = o$1.NITRO_HOST || o$1.HOST || "";
8141
+ if (isDev)
8142
+ port = o$1.NITRO_PORT || o$1.PORT || "3000";
8143
+ }
8144
+ if (host.includes(":")) {
8145
+ const i = host.lastIndexOf(":");
8146
+ port = host.slice(i + 1);
8147
+ host = host.slice(0, i);
8148
+ }
8149
+ host = o$1.NUXT_SITE_HOST_OVERRIDE || host;
8150
+ port = o$1.NUXT_SITE_PORT_OVERRIDE || port;
8151
+ if (host.startsWith("http://") || host.startsWith("https://")) {
8152
+ protocol = host.startsWith("https://") ? "https" : "http";
8153
+ host = host.replace(/^https?:\/\//, "");
8154
+ } else if (!host.includes("localhost") && !host.startsWith("127.")) {
8155
+ protocol = "https";
8156
+ }
8157
+ return `${protocol}://${host}${port ? `:${port}` : ""}/`;
8158
+ }
8159
+
8160
+ function getNitroOrigin(e) {
8161
+ return getNitroOrigin$1({
8162
+ isDev: false,
8163
+ isPrerender: false,
8164
+ requestHost: e ? getRequestHost(e, { xForwardedHost: true }) : void 0,
8165
+ requestProtocol: e ? getRequestProtocol(e, { xForwardedProto: true }) : void 0
8166
+ });
8246
8167
  }
8247
8168
 
8248
8169
  function getSiteIndexable(e) {
@@ -8426,30 +8347,6 @@ function withSiteUrl(e, path, options = {}) {
8426
8347
  });
8427
8348
  }
8428
8349
 
8429
- const ROBOT_DIRECTIVE_VALUES = {
8430
- // Standard directives
8431
- enabled: "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
8432
- disabled: "noindex, nofollow",
8433
- index: "index",
8434
- noindex: "noindex",
8435
- follow: "follow",
8436
- nofollow: "nofollow",
8437
- none: "none",
8438
- all: "all",
8439
- // Non-standard directives (not part of official robots spec)
8440
- noai: "noai",
8441
- noimageai: "noimageai"
8442
- };
8443
- function formatMaxImagePreview(value) {
8444
- return `max-image-preview:${value}`;
8445
- }
8446
- function formatMaxSnippet(value) {
8447
- return `max-snippet:${value}`;
8448
- }
8449
- function formatMaxVideoPreview(value) {
8450
- return `max-video-preview:${value}`;
8451
- }
8452
-
8453
8350
  function withoutQuery$1(path) {
8454
8351
  return path.split("?")[0];
8455
8352
  }
@@ -8470,52 +8367,6 @@ function createNitroRouteRuleMatcher$1(e) {
8470
8367
  };
8471
8368
  }
8472
8369
 
8473
- function normaliseRobotsRouteRule(config) {
8474
- let allow;
8475
- if (typeof config.robots === "boolean")
8476
- allow = config.robots;
8477
- else if (typeof config.robots === "object" && "indexable" in config.robots && typeof config.robots.indexable !== "undefined")
8478
- allow = config.robots.indexable;
8479
- let rule;
8480
- if (typeof config.robots === "object" && config.robots !== null) {
8481
- if ("rule" in config.robots && typeof config.robots.rule !== "undefined") {
8482
- rule = config.robots.rule;
8483
- } else if (!("indexable" in config.robots)) {
8484
- const directives = [];
8485
- for (const [key, value] of Object.entries(config.robots)) {
8486
- if (value === false || value === null || value === void 0)
8487
- continue;
8488
- if (key in ROBOT_DIRECTIVE_VALUES && typeof value === "boolean" && value) {
8489
- directives.push(ROBOT_DIRECTIVE_VALUES[key]);
8490
- } else if (key === "max-image-preview" && typeof value === "string") {
8491
- directives.push(formatMaxImagePreview(value));
8492
- } else if (key === "max-snippet" && typeof value === "number") {
8493
- directives.push(formatMaxSnippet(value));
8494
- } else if (key === "max-video-preview" && typeof value === "number") {
8495
- directives.push(formatMaxVideoPreview(value));
8496
- }
8497
- }
8498
- if (directives.length > 0) {
8499
- rule = directives.join(", ");
8500
- }
8501
- }
8502
- } else if (typeof config.robots === "string") {
8503
- rule = config.robots;
8504
- }
8505
- if (rule && typeof allow === "undefined") {
8506
- const disallowIndicators = ["none", "noindex", "noai", "noimageai"];
8507
- allow = !disallowIndicators.some(
8508
- (indicator) => rule === indicator || rule.split(",").some((part) => part.trim() === indicator)
8509
- );
8510
- }
8511
- if (typeof allow === "undefined" && typeof rule === "undefined")
8512
- return;
8513
- return {
8514
- allow,
8515
- rule
8516
- };
8517
- }
8518
-
8519
8370
  function getSiteRobotConfig(e) {
8520
8371
  const query = getQuery(e);
8521
8372
  const hints = [];
@@ -8811,7 +8662,7 @@ function backwardsCompatibleSecurity(securityHeaders) {
8811
8662
  return securityHeadersAsObject;
8812
8663
  }
8813
8664
 
8814
- const _4Vm6PaMZNaFiyqlri4J_3If2IWln0vpRDlJmQDnf2jo = defineNitroPlugin(async (nitroApp) => {
8665
+ const _FFNedkM5SZopfRYB4BKq9aBU08RFJNhVnnZUUtYovc = defineNitroPlugin(async (nitroApp) => {
8815
8666
  const appSecurityOptions = getAppSecurityOptions();
8816
8667
  const runtimeConfig = useRuntimeConfig();
8817
8668
  for (const route in runtimeConfig.nitro.routeRules) {
@@ -8855,11 +8706,11 @@ const _4Vm6PaMZNaFiyqlri4J_3If2IWln0vpRDlJmQDnf2jo = defineNitroPlugin(async (ni
8855
8706
  await nitroApp.hooks.callHook("nuxt-security:ready");
8856
8707
  });
8857
8708
 
8858
- const sriHashes = {"/_nuxt/builds/meta/7bab2b8f-93ee-4f44-a604-8cd2b41eac60.json":"sha384-0qI7x4Pjqjj0AeE8dIhQUTfElUp/2IMx8Vl8X/cREdyAfHNwpbKCxtpUHFbt5p8w","/_fonts/31PZhXd_YTCmsoiPQZc-xVtAWAkLogRFRj5mWplmKFE-6WsTw05QKugcwLySGc_b9CIheG8j8LRyo47qPL430Mk.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/9FWLUGCSCYLRIRMtCzLrt4Go7DMFXOeN_pyCOJD_44Y-Yh2wNaqrq_e759vVlc3tX81lMwRu9ktkQJX_Svgs-VI.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-4s8awL3_7NCZIzHTaY2tD681prJPuNHGqkbChz7OJeE.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/BQnDL9FFy0Q_jvURlmv87luvmXLSMbSuXsfZv_R2Rkk-y5MVrLtP4J_1al8rz8R-MDaUOMAHckAWCwDrKhw25fY.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-6h0m1Bf2RaAhaXNIrP4eW5ztakwJFN8JcCXPea_zL8E.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/h9PwCjip_BNPVO50hT4v29USWFv6H3ZlYx_IestfqgY-sYfLVuZXl9E1aYbn1S0pAr4zfdQ_WT7iBZhrgQY6N-4.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-8R9ucQ623nsXJTayzizuOYtVntUNPQzR8aWYpk8a8d8.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/JSrPAbQHsQEdUrIE5Ts6fIQ2ymsa4i7HhiCpui6ulCc-_AoyGWssOn06OMh3ZY_GddBBPRny4Igxin4fT_1K6F4.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/Jtqhy44WKYEjGWTSusP5YJfJv7Wf74QqgkBOI9u_77s-Rl_Bht5SvmaotE20bkavBEAJEEGEa0hcz3d_8yOeXmw.woff":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-BgCmQXkW3N6talUbQSKexB2sHUT0qGEzmM4uMcnDAbI.woff":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/l00UCz_-QvI_NO8AGcu7ooAcrFDlxYUdxCSCh6gBwd4-vPjTZ3ztgw27A2TnHeCycxPvUtXWEVpG33_97ra6su8.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/M-60tFLmAJxdPjHsK-2ILWom5zPbu37lb3Qex2waL14-A9y4QcXALPi_RvQsmRsSFUxrT3_J213W4zPFIXetlbw.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/nuenOq7ZFSZ65QudJO7uQ0sOjDqow2WjfXrQh4S9gEc-uF81rxcswER5srfhzyLfPoGlKNAIt2C_BvkXFOc19rw.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/pWMvGwciZ-EfQsfR2ueelhC7Jnt5K-8Px8PjPK0mDII-eT9iD0iZ9WWhTJs6V5GxXr0iaUwx_WxgGGriOiGb81o.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/T-ozk-QJ_Ck37B2RHPl2i-s_gAGGo7suFgagWoJ8bO4-maDXQ_nEXKAaLHm4Joud3DJR9EVzS7QXWMWK8YOTIcs.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/TTYbISAfwy-y4uVGS9AH32sK7b2xJsoCESo64ryf8LU-y87nRMqBGo42rUOW9tWZa06o4oTa0USJrAMMoKDamgs.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-s6NA3uLuPs0vnwZNhOTJ1g_7NVire0Uvng_2zP6mjNQ.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/y3mP_zJcojQwJn30TpF_XxDzgeM6Nbk7MaRg1Ne0YcI-lFx13nqMCMgk_S70gRmwEHXlE5BLp1B4W82RpFihpMs.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/Y_5DOsLit49q2i2tbcNxnyUen9__GPCX8mwAi03q1aA-pBCjVKDT5tBT3BJckh9uzNkfUWeUIBPz9Y8T55vcj8E.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/ZHaz3DhCHNWhsElqYfuM71rfBBDgjuU2sd34vaYJwQg-71NZaZSGjxzAGjCMnCc2zS5rS_EGA0xHKPGCggWuXik.woff":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-t7L_F0sYO8m44V7ZmFyCOiGNJDIBFFLVfLeLwCIUhsI.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/zr3WxpLd5PmlBr7e4PWGkhZv6XTg70Pi4sCbC-CEV0Q-v2yL98XOiD3FkbiYlYYeAeTSVSkgAckeOp55Q5kHJmU.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_nuxt/1vOq3xiE.js":"sha384-2uQYcOcRcbA9yN0Knhx5eUeUAYBcJ/01txJfgYz+L63bUo+rO1Q8t+J5AjCrHh/u","/_nuxt/22rhGZdI.js":"sha384-QeYYLI2YUxyrvEFojQcOjg/nVGGstp7lLj7WNqd9OviH12dRVGGHMUYv/vR41bSk","/_nuxt/9eIdSibD.js":"sha384-mT2pF82jE5TXgej0Vnv/r39jxLQNge9vdUgg6zhwRgyxAFr+z+worKviva8dhGQa","/_nuxt/atySmcu6.js":"sha384-HWYasT1ebpvf5I4h8Ic1U3JzC4SE1CJ2elB/nO4LADkVvCA+Ag32wT3Bg/2RnBoR","/_nuxt/BBmTy930.js":"sha384-y/r7/UGBEHYw9wqgtlWrSH7puE8E9cIw28cFHNLmVydIMvzIX0zNrs8mh0nYbDu/","/_nuxt/Bc5GLloR.js":"sha384-60qWYKrAashcHE7vZ6/yCEIxJ336g47Vd3a47HlKLOu9OX4rqBemUFpho8B0CkNL","/_nuxt/BdG3SY-u.js":"sha384-XL80R3/8skc70vfm1kfi4YXv7IpJMMzENqBf7TD30l3BK5mSoBWZBFVH2BsYQRyY","/_nuxt/BeyOQpYA.js":"sha384-vd4XaM1eIoOSJcffBfkco8zvszlIFM5jNpwlUWajQqbP6o4g+fR+f9ll5ukuvIPj","/_nuxt/BKe83Cjx.js":"sha384-j7qZbdCz7gO+C4WeOp4HgiCwvHbQ2OxUBNcnLAVvvY0qNbTyu54QY2vodGX7BN1v","/_nuxt/BqcXd3MY.js":"sha384-Kz8OkqEJIqTBufrTmkZX+QXAyWH7tSEYBLqkEVw8IakHrWvlRlFDayLbdqMvZj2y","/_nuxt/Bz55A4y1.js":"sha384-hgtbs6DJ7f132GHDqh1lBv4ZNzmVpozhcf5qNWL/deck3hlPvHJRlg9/37mIAL8a","/_nuxt/C2ybsIQ4.js":"sha384-EV1mEKJDAD4MqMPfJzJvV/2E3ae6jZCnyAsR/tq8LS1j7Otny6N/RXGSKOjRPjj3","/_nuxt/C4U5VOMJ.js":"sha384-rFAAxbvBeTpiPwe7durHNq3ehvlrBnvfHFX7kIls5DgkB2WClHFAecjgg0f5rPBX","/_nuxt/CAJsyjAK.js":"sha384-s5U3USSI3PHQresp2RAKHl8/XKjROUbPJwlMY2b8+gsfgaioevnHCY1yWgi5R+Ts","/_nuxt/CD9aBAuy.js":"sha384-OJGJmywoKaIIYBO91w7hLDm150zGq0SQ+sh39rzobwwRtSTyx3Wx8bvi4s/CtaFy","/_nuxt/CHOS7x_d.js":"sha384-YmhSsL/rEROJuWUxJ54o9xAQtB5uf5EbmjaGnYavX/h4sikVZCWxOVQRIi/EoeP6","/_nuxt/CXhUbdF6.js":"sha384-D6R1krJ3mqHDI/wSQTpLyBbGC7M6qfaizQWdjQrzndA2khV3w9WHUbIqqXlZKAy2","/_nuxt/CZWScI5k.js":"sha384-Kb2VZlYNqawEutRiVJmy93RbN7CUYGqAbF/krMQzLDfvuGFcod8QLhpkGKQsi9o9","/_nuxt/DdpTKqR-.js":"sha384-D7oAoD8OgRkaJrKIbmzASGUVY+K5l6gXh55jgGC24UNSKi/4F5/tzdmTUXZJI/RH","/_nuxt/Df_NcBcC.js":"sha384-XbjXYgPFafN68hzglY+G9wmw4SnSG/ifwcdog3FVbMn7Qc45eJOboIMAA1OOtFPG","/_nuxt/DHd34syF.js":"sha384-LSzWbb9PCFxWKMdGXa6dlWI5aNtyTUgWxa8LPfRcccY8HruVNvhSGhIUcg8/dDYb","/_nuxt/DhqOMFXQ.js":"sha384-5nB7tNbWz2JE1t+UyN1T1bCsYFJTDl5LY6UHS6d4nyA8PvY+t4ygWFZrIZR+IzIL","/_nuxt/DMbgtwAJ.js":"sha384-QDEf9aAQd9YMAFm8j8OWdlockoIh2/+kbAad+pU06cxlbbCRCiM+y95UdC26/2xT","/_nuxt/Dnp9eFDR.js":"sha384-zLNjjcydkozC1C7MxuKjA9IKkhuS+K15Un+4RAG9FyyIgTRjv4bxZ01edNFCnKyR","/_nuxt/DnqMs_6O.js":"sha384-/dx3+kMQpTs/BIradbmhR9MFc3Uha7DVZCCX+t8FUhDwnqYb+ZN08ECvn15z3oqY","/_nuxt/Dq7g_IfY.js":"sha384-uEW68XfZKdFjp4sxxq46Dj9WlEod7j2c1UB8Fid2TfOylxlegcWzanfQ9NjI1rKF","/_nuxt/DR8jhnFO.js":"sha384-sLNNgtTHApq0bCDCpw8AJU2Y0FQ+dAtYiZFj9MKAnTAACDWA+BZUbeaTaU+aOpim","/_nuxt/DsAJWnuW.js":"sha384-JV+qiSWhvUdPl6xvWurbDA7fe+wEZQDUNBKbdm7l9qZEmA+SejOOTCyG2FPYkvGF","/_nuxt/DTT0LBLY.js":"sha384-y9DepeHpvYPOJY+EgcoLoI4800V5wepx66E49ttOX9XERnYuhIv0Q5kAFyY9vmTa","/_nuxt/DvVg7vM_.js":"sha384-ZpMfIb061eCh0VwecMyApbf0lzb0Lx8a8zipU3DV+wTXOBdSBmrnrRHBADjEeItH","/_nuxt/DwKqLVGx.js":"sha384-adc6vpAyQpLxsHRwDEISFhREEHrkQ5XuGw2lQKZuGLl5yljoCYeayoOPjBVBrhXI","/_nuxt/DWV_uL6G.js":"sha384-HZsoWZbUB7mPGRs92t0/iV0422lJhYk+wxzqPXLlWT/7zcXFVVnQdHx2MdIWtzL0","/_nuxt/DxzqnQKF.js":"sha384-SFo4aZtufas0QwBCZ71k6zdqVzl1F0BItwD+tknu51+vStKUf5Be0mINxyirxh//","/_nuxt/entry.CtpkPzPO.css":"sha384-FhxjZdVfLk4QsaZQMcDB2JQdsLKEzhujdhDN/F7tLTNT1AxP7req5KrVDoMHtUQ/","/_nuxt/error-404.DzDu4Ean.css":"sha384-7Pw8mb4Zmbc+zkJf7UyUrh5awjniwrq3sNCcuBicRJYVc+DQjQ5k2Y4dMWITnDc/","/_nuxt/error-500.BdNqqJx7.css":"sha384-+SJwXHVK5AO/3tzk35YLv5xgNwArWZJ0hBitNIapgAzSDbxq/5wgbQHYRw8Qjgt6","/_nuxt/ProsePre.D5orA6B_.css":"sha384-I/jeyhUKekV3oYZ0DcZv3f5GQB0J1pIsuYcoONMO7EBf11z+ffCKNX3cy3IRcr8a","/_nuxt/q3i45eMH.js":"sha384-ksBblMKzHmbhDKsSY9R2v3aosTXsY5o3NHi8xLfACv6q4GDrW/waIzXRfvyz6ov0","/_nuxt/vueform.CkWb7x1C.css":"sha384-5rM4QLQuApTXdyRpgsUULTC3Z/KZLitd5ahJaufPT2QvAqWAz00E6p794sOrTaZ5","/_nuxt/Y0f1tU-r.js":"sha384-Qnh9K0O4DuNATNxTVBGPSY6xGM+2gm4D7oJQKALHEvQF1iGM1tCnvJRUeOOqOKdc","/favicon.ico":"sha384-qOhXBYvwwZHHuXW10XxZvVu9Mzkpqf/fw3zEOxCGyqOoKqyHbeudntAaY6nKOTro","/nuxt-ignis.png":"sha384-0A9c4mBzqU5z5xKB2ef9Sho451aXKA/G+oarzjR3hWMQaIvKYguRW7wYg95Yfei4","/unsplash.jpg":"sha384-66n0HIHfBVzK8qdw7zVfgwJ5htcrV6EtN2DQmlyxUIu46/kEKMRMqFrWKYm8bP18","/_ignis-config.json":"sha384-r4l0N8J6yKQ9XsqWJB1F6mWXMJG+mq0Ntqiu2R3GA1NImjIFdy6aNjWG8B9WZ/WD","/nuxt-spec.png":"sha384-lqerIwfMImy74T5uRR9ogeRAvkGehx21V4QBTVB0a6Zp+2VTFMZmjOtNAAti72LU"};
8709
+ const sriHashes = {"/_nuxt/builds/meta/78080714-55fa-441d-9998-a6fb0c7ee057.json":"sha384-0qI7x4Pjqjj0AeE8dIhQUTfElUp/2IMx8Vl8X/cREdyAfHNwpbKCxtpUHFbt5p8w","/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-4kZc4IwOXqryLeYzsaTvEKd54SPfeeGKPyDAZei18kw.woff":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-mSqNnHyoMtDKNu3z_xDpL0hWMcL0lhabY3Oa0dnS5HM.woff":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-RvZUU2X45U7WIDI083h9MozPZMSPdvOCkgsORsWvPOw.woff":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/31PZhXd_YTCmsoiPQZc-xVtAWAkLogRFRj5mWplmKFE-6WsTw05QKugcwLySGc_b9CIheG8j8LRyo47qPL430Mk.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/9FWLUGCSCYLRIRMtCzLrt4Go7DMFXOeN_pyCOJD_44Y-Yh2wNaqrq_e759vVlc3tX81lMwRu9ktkQJX_Svgs-VI.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-4s8awL3_7NCZIzHTaY2tD681prJPuNHGqkbChz7OJeE.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/BQnDL9FFy0Q_jvURlmv87luvmXLSMbSuXsfZv_R2Rkk-y5MVrLtP4J_1al8rz8R-MDaUOMAHckAWCwDrKhw25fY.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-6h0m1Bf2RaAhaXNIrP4eW5ztakwJFN8JcCXPea_zL8E.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/h9PwCjip_BNPVO50hT4v29USWFv6H3ZlYx_IestfqgY-sYfLVuZXl9E1aYbn1S0pAr4zfdQ_WT7iBZhrgQY6N-4.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-8R9ucQ623nsXJTayzizuOYtVntUNPQzR8aWYpk8a8d8.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/JSrPAbQHsQEdUrIE5Ts6fIQ2ymsa4i7HhiCpui6ulCc-_AoyGWssOn06OMh3ZY_GddBBPRny4Igxin4fT_1K6F4.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/l00UCz_-QvI_NO8AGcu7ooAcrFDlxYUdxCSCh6gBwd4-vPjTZ3ztgw27A2TnHeCycxPvUtXWEVpG33_97ra6su8.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/M-60tFLmAJxdPjHsK-2ILWom5zPbu37lb3Qex2waL14-A9y4QcXALPi_RvQsmRsSFUxrT3_J213W4zPFIXetlbw.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/nuenOq7ZFSZ65QudJO7uQ0sOjDqow2WjfXrQh4S9gEc-uF81rxcswER5srfhzyLfPoGlKNAIt2C_BvkXFOc19rw.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/pWMvGwciZ-EfQsfR2ueelhC7Jnt5K-8Px8PjPK0mDII-eT9iD0iZ9WWhTJs6V5GxXr0iaUwx_WxgGGriOiGb81o.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/T-ozk-QJ_Ck37B2RHPl2i-s_gAGGo7suFgagWoJ8bO4-maDXQ_nEXKAaLHm4Joud3DJR9EVzS7QXWMWK8YOTIcs.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/TTYbISAfwy-y4uVGS9AH32sK7b2xJsoCESo64ryf8LU-y87nRMqBGo42rUOW9tWZa06o4oTa0USJrAMMoKDamgs.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-s6NA3uLuPs0vnwZNhOTJ1g_7NVire0Uvng_2zP6mjNQ.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/y3mP_zJcojQwJn30TpF_XxDzgeM6Nbk7MaRg1Ne0YcI-lFx13nqMCMgk_S70gRmwEHXlE5BLp1B4W82RpFihpMs.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/Y_5DOsLit49q2i2tbcNxnyUen9__GPCX8mwAi03q1aA-pBCjVKDT5tBT3BJckh9uzNkfUWeUIBPz9Y8T55vcj8E.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-t7L_F0sYO8m44V7ZmFyCOiGNJDIBFFLVfLeLwCIUhsI.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_fonts/zr3WxpLd5PmlBr7e4PWGkhZv6XTg70Pi4sCbC-CEV0Q-v2yL98XOiD3FkbiYlYYeAeTSVSkgAckeOp55Q5kHJmU.woff2":"sha384-OLBgp1GsljhM2TJ+sbHjaiH9txEUvgdDTAzHv2P24donTt6/529l+9Ua0vFImLlb","/_nuxt/-OUwOzoZ.js":"sha384-PQVMzraYO+jwS8ytWsr1JTgk1u4SITw1n0jOsv7Qz+lZ8E7M6AFYTozcpvrnGeK3","/_nuxt/-z2jk33i.js":"sha384-CjEjPAyQWikR8hOc/eOPfq4I0bEMcbZ5BRODORdaNNeV7EzkiTQjZgi1mPkKDoop","/_nuxt/3L5yAyVe.js":"sha384-hZKMyAeUhKYnFgJfZsXW4ApimCFMoKg8I4K/F5ZNYquf6YyndU7higjG/ZRMPdkP","/_nuxt/8nlalpbc.js":"sha384-CQ+Pdkf6a/ExRHG6nm+zhTSRrgnAClFJbjOKUx8Mkwz0pr7AcLTsUwOsjl5/NsGN","/_nuxt/ahq42_9S.js":"sha384-eiElfLGJiYmWL3fsmSORJROwUDGj3fJbnDayT2QM45ak/+hhhRSfWJFRaNhpcfoq","/_nuxt/As5Zy5cG.js":"sha384-Zat7ynX7tq351NldVpsRFkHxZ5DeGsN/F/3hidZHG/7cXcuCUwonDm0bZjO3ElOO","/_nuxt/B-TDuiGE.js":"sha384-t1O7V4qWGgOs3orcbYBPDSCSYDDvcDKCJN00pmFeB1pXewOQWzLx7yCLa5hY9K7s","/_nuxt/B04mZI32.js":"sha384-ecekhVpl6JQISmmiGgBgBTDOiXS4Z46HyqfIetpcaXC/CTBfl9/9c8PDQKHNkS59","/_nuxt/b0AtYQ73.js":"sha384-d0lQK+9+ZTEsJmwzNlwIuhp/5d+Un1px3tL8iL5eNxb7aunuSp55WN7Im4MPiXt+","/_nuxt/B3zmx-p1.js":"sha384-GjcWgUvOC6A5ohC//HAbjfs5DM3zwSZdEwGvUrp9kQHHxkXX21zOYzpc3/fvrMF2","/_nuxt/B4eQjLRH.js":"sha384-XXu0ZcIK6KWNWR/477wfFlRN14KP/wn2BlJsw7kJvMhY2MndGlA2+OiYNe622OsZ","/_nuxt/B6WOJ0Em.js":"sha384-VE/6icPFc/K2TopFV1isJ65vQ5kzThp7mEkXn1r/PFtLPTDZpaqbI97TrLnrm+47","/_nuxt/BB2ULiwb.js":"sha384-+A3vdVO+K/hglMxz/uyQZYrsLcG+AbLC48cheUN0L0+sfOtBrsyVHFmoZflQimDl","/_nuxt/BeRTSVEP.js":"sha384-h8WHXTfW1fO9LMbX5032CAtlgVXOWNRY4IyuMZfA1LYPIJVIRlnv9W1+xPW+W9zd","/_nuxt/BEvX3xjB.js":"sha384-UhVWfoACkMQU2zMZJVjjXNKW42+jK2l75v1MTEftdwwSsIektAKviz/SXVqDlN2d","/_nuxt/BFcGh2xo.js":"sha384-NIJckkaHXGok4gwmW37U0VlpPeb7CY80zDH5AKdzrkNGkNINlusJwZxkU6GZbSD6","/_nuxt/BFdGKCUO.js":"sha384-e7D1tMUmtg0c0XJqs/Z0PYT1n43t00POb+4a1H1vWpCb6Zu8UMylLPaiPxCXV4jr","/_nuxt/BG-5V6Ik.js":"sha384-wTv8MCIWCAFz0ny3HPC1z09fyAkEW1xlyAZonZ5F6UE+QfE/PptsRSMcyl4Dgqy7","/_nuxt/Bh-DZrTV.js":"sha384-COLU7YUsm34TTjYkBwJ5rc2R5bWBasVKlgUTgJ9gYzgXgYYtRnaQqwebzXGnQfkU","/_nuxt/BvFz8iHh.js":"sha384-af8QN+gwC+E+o3nR+NCJSrqnZyBYyAciR3IbxnpibmveSJdvWoGWMv2mxqUSx7IW","/_nuxt/BwUgVogm.js":"sha384-Ubb/rhwcIYzhOwpPsdV3+tsqae1/MFcFWtxxlUAzG2R6E5KO9pAwP11QQ+0WYPVB","/_nuxt/C1fHW8CN.js":"sha384-tpQC76zUyXigKhix1zzTa3e8sj2KxAdyvU8+AmnnfpyOI0Hvn3lc2LFHjv1RNoNa","/_nuxt/C1getMtX.js":"sha384-4rjKcCX3gzLuy+86OlNFRVc5/HM42SYvaAVkccpMqh1o0lCsPGmBGU00KUrpsvE8","/_nuxt/C4nGy0Yj.js":"sha384-wHDouy2K0yCs14LqzSQ/LewwAKw9+b8d+XIPRrv2aPHR+yPxpsietjpYptcE+I0d","/_nuxt/CExm4AMI.js":"sha384-Pa6xrMUYCv0IXcGKMCvCd8e11TTOiCCv+u5uFv/9zYflwmhOHESC3lvuwWLRW9vd","/_nuxt/CHcd0nHy.js":"sha384-VgCbknQpj8owNpe2GgGh6SFgMYxz5Rv8UEsFAKKJRlPJVerIIvcwmzzBeUkCfemJ","/_nuxt/Cna7T5zY.js":"sha384-cL8Qae5D7GvYkWVAfULCacADM2xnWAq75EaNXQCAQIMWVWKCWApAEuWFOu8sL7bn","/_nuxt/CnghUxEk.js":"sha384-ZZF/cK6PXHFFqJoLkLI3m1KN5wygH6ObC0XsGutuoZRxC0bMpbs94ti5iOVc1kRa","/_nuxt/CTbEZMxa.js":"sha384-TJpZr/QpQmdOE2mxetIepO9Y0RBVd9rQzWDDOlXfbiXcAgyjaHnBYGZp9rRIIk9M","/_nuxt/CvJSUdvI.js":"sha384-2YUbUbp4f7D4tyO/7IYS4k3ldAZaUMm8lFi7B4xY15apuKW5R8FEOzaLfqI5vn+P","/_nuxt/CwgBHvd_.js":"sha384-9f1O9JQnHry3rOIx7Lsoacia94rUUF2JqLFv1L3A2NobNe6Ei9xOdAx1tailxgU9","/_nuxt/CZ5QNOH8.js":"sha384-5ugHcMRwzwaTjQzDGRxS1bzJOVR2eOeyAiKfhMxJKWcznkESkf9fAKBL8XbsyAbm","/_nuxt/D1nIr4-J.js":"sha384-A28/B/CrpWGoeJ7eCq9EBa5MCsAPboBrWP5V5nbLyoz1FA9Sa7iOn+uZP1Vd1se+","/_nuxt/D2atCez-.js":"sha384-mzDcgTcGqiKrT9hN+EqvNOMbXE6zc+tuGXqopvyHeTmlp4TGNgfEhskhdtsetETy","/_nuxt/D3WX5Hmk.js":"sha384-rcaNUy85lFDbl3vl6S3lBxb1aX9NIe2ovf3naIoRKBeFnO8c9uZkfx5AcZujPYiw","/_nuxt/D5duQQkG.js":"sha384-i/reNI6jqhlW1bQn9ScIWmddQ7oIbnl17PS5nWGl1uY44h0JdE6JyOlgJCuk64TP","/_nuxt/D9RSHNPZ.js":"sha384-1sYaOsJDVgqDAY9ztFGgJUz2JC4+2/ESfJhErI+NrhNmornql+bcZtv2DgxytiZa","/_nuxt/DB3c8m3K.js":"sha384-KlABypfwuhGsWNRwwPIOVgte5e2k2INEpmR7TAT7YHs1u549b04QCp9e2MXU3iZl","/_nuxt/DbZ1CQfQ.js":"sha384-oGZ6E0Y9NfsMiWtk/vp9TbPLn0p1DSUy6F0V/mhP7MIgmOa4nv7AWjhUvKKPSLNC","/_nuxt/DFP1sKjc.js":"sha384-DpXhNrY3Kk8nKfhC6SrAQ2/2SiQVapv+aBuaqzELj638E+7CR+tZUWXvs3xvqwLX","/_nuxt/DgCebJqk.js":"sha384-YDwQrdix87xWL/YojraKAgjNi1aU+4YJGNDDiaW2wg3ol/tcXLwDfA+NNNO6tbJu","/_nuxt/DhhwMwQM.js":"sha384-NNRJx404SiVRcYKDjZ7wGmg/VUWBX4NXFjelvnJLH4/EtloBaaF+M/BEvg3zhGi+","/_nuxt/DI5_qtj_.js":"sha384-5sWOfb+Mec6GU7y9x2LHGPsqxLSS4uF0ysEuO6mU3ugf0i2VgLpg/ZTeEm63PRdO","/_nuxt/Djhwz52y.js":"sha384-eMRHLseseXlIhP3+dgZR0zQzfeZMfRr6Z1qogPfPVZcEE+VRp13rrzhaHTQiFiGS","/_nuxt/DKCDh1Eq.js":"sha384-Jvm8pbXNL3ocze/9oL9vh+YI/UsUE2+Vn5UP/N3/BxjDiQYK4KsI1J1NNhyF8C0H","/_nuxt/DN3AlbuD.js":"sha384-hP3GVtFf3FX+GTJtNawSWYbfUnrC7xNVdm6aETQAQ5UNI+PViM+oz3ZkDYJXZDaT","/_nuxt/DncFEy6i.js":"sha384-8ZShAETwZnhiKcRZSEICMYfb3c1j5rY3pV3RotvYIiyV/WeBHc7QFejDyP0WOxTu","/_nuxt/DnE1KSqg.js":"sha384-NDQIiKF8hzstPdRb4lQEWzvsaqD3XME3bKRrxhVB7oIW0oZ/jiv07rSbpcetLBSt","/_nuxt/DPDbQA17.js":"sha384-WKo9jftZzs5vYir6n4m1QEqLNhYAONIA730PIfChebciaolsSmJjAFXUEK0gyFjv","/_nuxt/DpZCZGQO.js":"sha384-+1W4IvEuqQKaTfhWxxQNbQ9UcvPI0qN3rMn0PzlTtmNwX8GVaBpud3GBXGC69voI","/_nuxt/DSErOj49.js":"sha384-a0fsvbFzkwaB7iu2hMmUGinFZJCtsB9bS7zAaTi8TvHoxPZf7IOq0YIuSaj9lkM9","/_nuxt/Dx95U2T3.js":"sha384-K7yhkqxn2RLEHJM0VVFJfc37VNRKU7i1fEBptNjbOj/+RIGTdlPhIUcrHiOFgH76","/_nuxt/DXrSmKSt.js":"sha384-t1O7V4qWGgOs3orcbYBPDSCSYDDvcDKCJN00pmFeB1pXewOQWzLx7yCLa5hY9K7s","/_nuxt/efC_w6sP.js":"sha384-XLgEmQPemgP0Do14c+N+5Mix8g9+gwwuZTnSvqmVpOmGPWOAsaFpX4+QDjIQRR9r","/_nuxt/entry.9ygoOcLs.css":"sha384-+S/kBjmyBQVJ0WfFjixpzJYEe/GireCMZ+bYJgJ2fMLq/bRPWPVEU9OiY2ngl+6E","/_nuxt/error-404.0Tbhbu-E.css":"sha384-/+ICoj6CmZERBBaFP4dcRKx166ksvEY904L774f1SPvVszh4WGkY9Nj5SCIauwVe","/_nuxt/error-500.ClQbyW3Z.css":"sha384-WSh7BnvitWVzCwQ3C4RjkhKOVbIHN8d0Kr1CbTFvUptN6kS5kDltF1zURi3hNXW6","/_nuxt/FUdAqSn9.js":"sha384-Gn+DnqNtZ2AH8oevrUG+i5KfME9k7uX0VroEZB71c67O9dngrFXL58vPeJVd6o5R","/_nuxt/GvxWNFgu.js":"sha384-FSbuYZXlxq9bXL7e1pIm4UHR4jzrbdBw3mq+9WNcrr7R19ARv8wILa/XEgiKMbtG","/_nuxt/HgKyGH3C.js":"sha384-i+MnnC/Fz0uIXodVHhqU5G2UAS0copPQGxtNrxB7p9ptzV76sybl2fPByJOn96gm","/_nuxt/Hxhp1Hz0.js":"sha384-/LTAWLqMgpRBbd4yoZuLv6tY0JUnr7xWosrhh8BmnRtiXCNrGL3Jv/roJkK/htOM","/_nuxt/LpFrvoF7.js":"sha384-PJZU3GNmAnVA0UcJCP2nFW2+IEKl3k/TzMxSB9A+4QUJoHLtEuXIJ68+SYv7rE9i","/_nuxt/Pre.HegCCrfd.css":"sha384-qDogkuFeqBdmT2PCLagugBmRSIxJPb7bpzm+tvsAclVA5f8+UQDwpByQBNWD6udT","/_nuxt/Sz6HDPqh.js":"sha384-LUpBPXUJcyoTlP0YhTV+BHuF5xdaTsP/4C7NtxTCfaIBtBglBtoHMNr5wzk3U52g","/_nuxt/U1_7ggcx.js":"sha384-TPxpHZkvLKlycIxfxqL1Kr0ITh+aRbSYafhl/dGXJW57fhbE8meC5AQTCXGc1D9E","/_nuxt/ulE7jr93.js":"sha384-yB3lx/Ko7Z09AOd8yim6SysblHJSXKcqQuR2cRijFhpXt1R7Xs5KRgMGxGWTNs8y","/_nuxt/X8ZdEYzW.js":"sha384-ZipXPopDSgPP805ZFhejeyJ3SrgwZGaqZkOMZ1T0zSxhMMiK0dtNHpqFw9UForX0","/_nuxt/xHyrElgL.js":"sha384-+I1b8pEHv5LPK4n0Ft50+2yYmPU+MfmwET4WXK6ToFSXcvbAh6inR+nIo5gHdaxl","/favicon.ico":"sha384-qOhXBYvwwZHHuXW10XxZvVu9Mzkpqf/fw3zEOxCGyqOoKqyHbeudntAaY6nKOTro","/nuxt-ignis.png":"sha384-0A9c4mBzqU5z5xKB2ef9Sho451aXKA/G+oarzjR3hWMQaIvKYguRW7wYg95Yfei4","/unsplash.jpg":"sha384-66n0HIHfBVzK8qdw7zVfgwJ5htcrV6EtN2DQmlyxUIu46/kEKMRMqFrWKYm8bP18","/_ignis-config.json":"sha384-8cqzD+73lzZZplJmtQMqFREgp7UP8LqwjY8sGrBjCiNMewjcORIGEW4op03CHV5C","/nuxt-spec.png":"sha384-lqerIwfMImy74T5uRR9ogeRAvkGehx21V4QBTVB0a6Zp+2VTFMZmjOtNAAti72LU"};
8859
8710
 
8860
8711
  const SCRIPT_RE$1 = /<script((?=[^>]+\bsrc="([^"]+)")(?![^>]+\bintegrity="[^"]+")[^>]+)(?:\/>|><\/script>)/g;
8861
8712
  const LINK_RE$1 = /<link((?=[^>]+\brel="(?:stylesheet|preload|modulepreload)")(?=[^>]+\bhref="([^"]+)")(?![^>]+\bintegrity="[\w\-+/=]+")[^>]+)>/g;
8862
- const _7dOV7LP1d6k7UjPtnpR35H26iiEGkqk5GWbFJRIaFQ = defineNitroPlugin((nitroApp) => {
8713
+ const _oiJ5ZJ_DwkdPfld7XGlvjU3GuyHYDN4LRs86zdiJXVo = defineNitroPlugin((nitroApp) => {
8863
8714
  nitroApp.hooks.hook("render:html", (html, { event }) => {
8864
8715
  const rules = resolveSecurityRules(event);
8865
8716
  if (!rules.enabled || !rules.sri) {
@@ -8902,7 +8753,7 @@ function generateRandomNonce() {
8902
8753
  return nonce;
8903
8754
  }
8904
8755
 
8905
- const _bcf5ErvzNaqmFXYH3amyw4lXQvxpHMitUC1M6Tloys = defineNitroPlugin((nitroApp) => {
8756
+ const _Fw0JbntIm1WzY_n6DJ7pEpoHu3cXVEvgO9RV8E2k1eQ = defineNitroPlugin((nitroApp) => {
8906
8757
  {
8907
8758
  return;
8908
8759
  }
@@ -8912,7 +8763,7 @@ const LINK_RE = /<link([^>]*?>)/gi;
8912
8763
  const NONCE_RE = /nonce="[^"]+"/i;
8913
8764
  const SCRIPT_RE = /<script([^>]*?>)/gi;
8914
8765
  const STYLE_RE = /<style([^>]*?>)/gi;
8915
- const _bnDr2rawczHHxYffyrIiQQAgQ2arBj7ot1j1Q38bV74 = defineNitroPlugin((nitroApp) => {
8766
+ const _IhsXKVLWoGOfXBrEPkCepER6fNPD87mCGjmZHRp7s = defineNitroPlugin((nitroApp) => {
8916
8767
  nitroApp.hooks.hook("request", (event) => {
8917
8768
  if (event.context.security?.nonce) {
8918
8769
  return;
@@ -8953,7 +8804,7 @@ const _bnDr2rawczHHxYffyrIiQQAgQ2arBj7ot1j1Q38bV74 = defineNitroPlugin((nitroApp
8953
8804
  });
8954
8805
  });
8955
8806
 
8956
- const _Bsob0YNmfepHfePUd2JvgJLMdWllVeL_4evfw7u1T4 = defineNitroPlugin((nitroApp) => {
8807
+ const _bcshtX2T6lsqb5QgaOVq122BfOQkIrnyIGsvXyKZoxQ = defineNitroPlugin((nitroApp) => {
8957
8808
  nitroApp.hooks.hook("render:html", (response, { event }) => {
8958
8809
  if (response.island) {
8959
8810
  return;
@@ -9001,13 +8852,13 @@ function updateCspVariables(csp, nonce, scriptHashes, styleHashes) {
9001
8852
  return generatedCsp;
9002
8853
  }
9003
8854
 
9004
- const _MFHW7RwBYpGi7ypYpUs4noT4MkmKhWp42NED3_tFw8 = defineNitroPlugin((nitroApp) => {
8855
+ const _ywPGBM5qTtLLQn5M9IbEiybUYwnEziELEpREMDRC0xQ = defineNitroPlugin((nitroApp) => {
9005
8856
  {
9006
8857
  return;
9007
8858
  }
9008
8859
  });
9009
8860
 
9010
- const _WGoGltCkvjyszwqp4ncggAngTNT0LjmCJ07K9ejco = defineNitroPlugin((nitroApp) => {
8861
+ const _PNEgarYwpPrH2oFWYy8IAbe0Pv4fKy08RE4kQ0jvNjQ = defineNitroPlugin((nitroApp) => {
9011
8862
  nitroApp.hooks.hook("render:response", (response, { event }) => {
9012
8863
  const rules = resolveSecurityRules(event);
9013
8864
  if (rules.enabled && rules.headers) {
@@ -9030,7 +8881,7 @@ const _WGoGltCkvjyszwqp4ncggAngTNT0LjmCJ07K9ejco = defineNitroPlugin((nitroApp)
9030
8881
  });
9031
8882
  });
9032
8883
 
9033
- const _A415alzmzNvROQZ8AeeoPviXW2dqDT3QcR4fiPYIeD4 = defineNitroPlugin((nitroApp) => {
8884
+ const _no__LpBrdasB3nIWPORJf7rb6Wb1jAuBM7v5yENc9zs = defineNitroPlugin((nitroApp) => {
9034
8885
  nitroApp.hooks.hook("beforeResponse", (event) => {
9035
8886
  const rules = resolveSecurityRules(event);
9036
8887
  if (rules.enabled && rules.hidePoweredBy && !event.node.res.headersSent) {
@@ -9039,7 +8890,7 @@ const _A415alzmzNvROQZ8AeeoPviXW2dqDT3QcR4fiPYIeD4 = defineNitroPlugin((nitroApp
9039
8890
  });
9040
8891
  });
9041
8892
 
9042
- const _zx7ORanOQesZSIooVG7NvNwboquqxPtY8WKNATdsroM = defineNitroPlugin(async (nitroApp) => {
8893
+ const _jAUcIqAt6i2m6fnY_gYI62h_OiI9dTuaqqsv3lo4Qg = defineNitroPlugin(async (nitroApp) => {
9043
8894
  {
9044
8895
  const prerenderedHeaders = await useStorage("assets:nuxt-security").getItem("headers.json") || {};
9045
8896
  nitroApp.hooks.hook("beforeResponse", (event) => {
@@ -9055,20 +8906,20 @@ const _zx7ORanOQesZSIooVG7NvNwboquqxPtY8WKNATdsroM = defineNitroPlugin(async (ni
9055
8906
  });
9056
8907
 
9057
8908
  const plugins = [
9058
- _phrzZ3NodVihtWltdnRcquocEakKXP5smwHsyvnDKGI,
9059
- _kdGf6XFSXDve3yeB4UoLLimvhaR3WS7IOBVNHP9Q8,
9060
- _TdbS07hodDvxCZZuDol6xBiLqU3edXD7OlgwtHY2s,
9061
- _LoVVNyMOiEEEXN0qXs2724FMLdNnKMllA3Qq3f7Cis,
9062
- _7V99JalBsmMpJ4Im6qwrWJC2toR4GkZuF5sU0ekK6TU,
9063
- _4Vm6PaMZNaFiyqlri4J_3If2IWln0vpRDlJmQDnf2jo,
9064
- _7dOV7LP1d6k7UjPtnpR35H26iiEGkqk5GWbFJRIaFQ,
9065
- _bcf5ErvzNaqmFXYH3amyw4lXQvxpHMitUC1M6Tloys,
9066
- _bnDr2rawczHHxYffyrIiQQAgQ2arBj7ot1j1Q38bV74,
9067
- _Bsob0YNmfepHfePUd2JvgJLMdWllVeL_4evfw7u1T4,
9068
- _MFHW7RwBYpGi7ypYpUs4noT4MkmKhWp42NED3_tFw8,
9069
- _WGoGltCkvjyszwqp4ncggAngTNT0LjmCJ07K9ejco,
9070
- _A415alzmzNvROQZ8AeeoPviXW2dqDT3QcR4fiPYIeD4,
9071
- _zx7ORanOQesZSIooVG7NvNwboquqxPtY8WKNATdsroM
8909
+ _RyteHlfbnG6rTSkGS9ScvveuuX1HdLHnSCGhefj0MTs,
8910
+ _Zn0TIjQWBh9KTD671uE6xJTA5SpaKNMELLIwnOvm9z0,
8911
+ _ZAgLRdUhp8Zt7vtFkaixxXqYUnoG64wVnb3BBHcHHU,
8912
+ _vSAjmViAuf8beEPzzugIlKydW5HkGhpeBGueyLuLv1o,
8913
+ _XX9IEjVWshLmMVIqGp15oAxz0tYfztvz3LmypBh179E,
8914
+ _FFNedkM5SZopfRYB4BKq9aBU08RFJNhVnnZUUtYovc,
8915
+ _oiJ5ZJ_DwkdPfld7XGlvjU3GuyHYDN4LRs86zdiJXVo,
8916
+ _Fw0JbntIm1WzY_n6DJ7pEpoHu3cXVEvgO9RV8E2k1eQ,
8917
+ _IhsXKVLWoGOfXBrEPkCepER6fNPD87mCGjmZHRp7s,
8918
+ _bcshtX2T6lsqb5QgaOVq122BfOQkIrnyIGsvXyKZoxQ,
8919
+ _ywPGBM5qTtLLQn5M9IbEiybUYwnEziELEpREMDRC0xQ,
8920
+ _PNEgarYwpPrH2oFWYy8IAbe0Pv4fKy08RE4kQ0jvNjQ,
8921
+ _no__LpBrdasB3nIWPORJf7rb6Wb1jAuBM7v5yENc9zs,
8922
+ _jAUcIqAt6i2m6fnY_gYI62h_OiI9dTuaqqsv3lo4Qg
9072
8923
  ];
9073
8924
 
9074
8925
  const assets = {
@@ -9102,465 +8953,661 @@ const assets = {
9102
8953
  },
9103
8954
  "/_ignis-config.json": {
9104
8955
  "type": "application/json",
9105
- "etag": "\"1b7b9-5t+dFuxzxYTE/9p7GZ4Qh0+bX/Y\"",
9106
- "mtime": "2025-10-31T20:54:37.149Z",
9107
- "size": 112569,
8956
+ "etag": "\"1b864-e2aySaQ5p+yafb3ncH2UEGkwkqw\"",
8957
+ "mtime": "2026-01-03T18:14:42.248Z",
8958
+ "size": 112740,
9108
8959
  "path": "../public/_ignis-config.json"
9109
8960
  },
9110
- "/_fonts/31PZhXd_YTCmsoiPQZc-xVtAWAkLogRFRj5mWplmKFE-6WsTw05QKugcwLySGc_b9CIheG8j8LRyo47qPL430Mk.woff2": {
9111
- "type": "font/woff2",
9112
- "etag": "\"5cfc-hMfvYCftu+VSkhz1RW4/Jn3Gvw0\"",
9113
- "mtime": "2025-10-31T20:54:49.413Z",
9114
- "size": 23804,
9115
- "path": "../public/_fonts/31PZhXd_YTCmsoiPQZc-xVtAWAkLogRFRj5mWplmKFE-6WsTw05QKugcwLySGc_b9CIheG8j8LRyo47qPL430Mk.woff2"
8961
+ "/_nuxt/-OUwOzoZ.js": {
8962
+ "type": "text/javascript; charset=utf-8",
8963
+ "etag": "\"8c-3VhC+70sUWr6WvlVIzvjime0tJ4\"",
8964
+ "mtime": "2026-01-03T18:15:41.332Z",
8965
+ "size": 140,
8966
+ "path": "../public/_nuxt/-OUwOzoZ.js"
9116
8967
  },
9117
- "/_fonts/9FWLUGCSCYLRIRMtCzLrt4Go7DMFXOeN_pyCOJD_44Y-Yh2wNaqrq_e759vVlc3tX81lMwRu9ktkQJX_Svgs-VI.woff2": {
9118
- "type": "font/woff2",
9119
- "etag": "\"9348-JD4kqCd5ivLejXIb4rJUj2Oe7Os\"",
9120
- "mtime": "2025-10-31T20:54:49.402Z",
9121
- "size": 37704,
9122
- "path": "../public/_fonts/9FWLUGCSCYLRIRMtCzLrt4Go7DMFXOeN_pyCOJD_44Y-Yh2wNaqrq_e759vVlc3tX81lMwRu9ktkQJX_Svgs-VI.woff2"
8968
+ "/_nuxt/-z2jk33i.js": {
8969
+ "type": "text/javascript; charset=utf-8",
8970
+ "etag": "\"1e9-CTqmYlOPmbRrV9Cdg1oka5s/69w\"",
8971
+ "mtime": "2026-01-03T18:15:41.334Z",
8972
+ "size": 489,
8973
+ "path": "../public/_nuxt/-z2jk33i.js"
8974
+ },
8975
+ "/_nuxt/3L5yAyVe.js": {
8976
+ "type": "text/javascript; charset=utf-8",
8977
+ "etag": "\"1e9-HPOkSFaGTdhAgmVVnobBXWmF5nM\"",
8978
+ "mtime": "2026-01-03T18:15:41.335Z",
8979
+ "size": 489,
8980
+ "path": "../public/_nuxt/3L5yAyVe.js"
8981
+ },
8982
+ "/_nuxt/8nlalpbc.js": {
8983
+ "type": "text/javascript; charset=utf-8",
8984
+ "etag": "\"158-tM8HkKSr1/1Si0IWyMZTrTs1+Qo\"",
8985
+ "mtime": "2026-01-03T18:15:41.337Z",
8986
+ "size": 344,
8987
+ "path": "../public/_nuxt/8nlalpbc.js"
8988
+ },
8989
+ "/_nuxt/ahq42_9S.js": {
8990
+ "type": "text/javascript; charset=utf-8",
8991
+ "etag": "\"3181-139vqie37TYzIUL0tZJtE1EiAqw\"",
8992
+ "mtime": "2026-01-03T18:15:41.438Z",
8993
+ "size": 12673,
8994
+ "path": "../public/_nuxt/ahq42_9S.js"
8995
+ },
8996
+ "/_nuxt/As5Zy5cG.js": {
8997
+ "type": "text/javascript; charset=utf-8",
8998
+ "etag": "\"296d-Uh8TIXQvGBnB8Zp0KPriiGZfAng\"",
8999
+ "mtime": "2026-01-03T18:15:41.339Z",
9000
+ "size": 10605,
9001
+ "path": "../public/_nuxt/As5Zy5cG.js"
9002
+ },
9003
+ "/_nuxt/B-TDuiGE.js": {
9004
+ "type": "text/javascript; charset=utf-8",
9005
+ "etag": "\"a6-WCH1OBq6pBVv7nl7oOZ+80yhGbk\"",
9006
+ "mtime": "2026-01-03T18:15:41.344Z",
9007
+ "size": 166,
9008
+ "path": "../public/_nuxt/B-TDuiGE.js"
9009
+ },
9010
+ "/_nuxt/B04mZI32.js": {
9011
+ "type": "text/javascript; charset=utf-8",
9012
+ "etag": "\"163-zJyNv812jl13s+SMamqFGEDrfVg\"",
9013
+ "mtime": "2026-01-03T18:15:41.347Z",
9014
+ "size": 355,
9015
+ "path": "../public/_nuxt/B04mZI32.js"
9016
+ },
9017
+ "/_nuxt/b0AtYQ73.js": {
9018
+ "type": "text/javascript; charset=utf-8",
9019
+ "etag": "\"1ef-2l7Rz2OpkA9JlctFhJQGA1ZO4lc\"",
9020
+ "mtime": "2026-01-03T18:15:41.439Z",
9021
+ "size": 495,
9022
+ "path": "../public/_nuxt/b0AtYQ73.js"
9023
+ },
9024
+ "/_nuxt/B3zmx-p1.js": {
9025
+ "type": "text/javascript; charset=utf-8",
9026
+ "etag": "\"24eb-q3RT67NYQGgfXNjKesNY4ilHJxE\"",
9027
+ "mtime": "2026-01-03T18:15:41.348Z",
9028
+ "size": 9451,
9029
+ "path": "../public/_nuxt/B3zmx-p1.js"
9030
+ },
9031
+ "/_nuxt/B4eQjLRH.js": {
9032
+ "type": "text/javascript; charset=utf-8",
9033
+ "etag": "\"30-IOQ9xAstPOo/D8UiSHqUi9qqzKo\"",
9034
+ "mtime": "2026-01-03T18:15:41.350Z",
9035
+ "size": 48,
9036
+ "path": "../public/_nuxt/B4eQjLRH.js"
9037
+ },
9038
+ "/_nuxt/B6WOJ0Em.js": {
9039
+ "type": "text/javascript; charset=utf-8",
9040
+ "etag": "\"a7-zO5BjsS03CMv8ZyGxzhBkQ/Huts\"",
9041
+ "mtime": "2026-01-03T18:15:41.351Z",
9042
+ "size": 167,
9043
+ "path": "../public/_nuxt/B6WOJ0Em.js"
9044
+ },
9045
+ "/_nuxt/BB2ULiwb.js": {
9046
+ "type": "text/javascript; charset=utf-8",
9047
+ "etag": "\"328-mO50CyT1skNpQ07K/JtKAShn5H4\"",
9048
+ "mtime": "2026-01-03T18:15:41.354Z",
9049
+ "size": 808,
9050
+ "path": "../public/_nuxt/BB2ULiwb.js"
9051
+ },
9052
+ "/_nuxt/BeRTSVEP.js": {
9053
+ "type": "text/javascript; charset=utf-8",
9054
+ "etag": "\"182-Mmu3jFCRkQ9kU5k4oj9fRdCU/ps\"",
9055
+ "mtime": "2026-01-03T18:15:41.362Z",
9056
+ "size": 386,
9057
+ "path": "../public/_nuxt/BeRTSVEP.js"
9058
+ },
9059
+ "/_nuxt/BEvX3xjB.js": {
9060
+ "type": "text/javascript; charset=utf-8",
9061
+ "etag": "\"14c-N1QLr5Jr+tbGcEQs1TgQCZn2rB0\"",
9062
+ "mtime": "2026-01-03T18:15:41.356Z",
9063
+ "size": 332,
9064
+ "path": "../public/_nuxt/BEvX3xjB.js"
9065
+ },
9066
+ "/_nuxt/BFcGh2xo.js": {
9067
+ "type": "text/javascript; charset=utf-8",
9068
+ "etag": "\"155-6JH8fF4D96IBPxFnOqHJ6mlDq7c\"",
9069
+ "mtime": "2026-01-03T18:15:41.357Z",
9070
+ "size": 341,
9071
+ "path": "../public/_nuxt/BFcGh2xo.js"
9072
+ },
9073
+ "/_nuxt/BFdGKCUO.js": {
9074
+ "type": "text/javascript; charset=utf-8",
9075
+ "etag": "\"1ef-hNYTqg4pwusko0JEQBTSyb+NZ7k\"",
9076
+ "mtime": "2026-01-03T18:15:41.358Z",
9077
+ "size": 495,
9078
+ "path": "../public/_nuxt/BFdGKCUO.js"
9079
+ },
9080
+ "/_nuxt/BG-5V6Ik.js": {
9081
+ "type": "text/javascript; charset=utf-8",
9082
+ "etag": "\"b26-SMjQv6FDgfgMdjbCt7ZaBZ/p8gA\"",
9083
+ "mtime": "2026-01-03T18:15:41.360Z",
9084
+ "size": 2854,
9085
+ "path": "../public/_nuxt/BG-5V6Ik.js"
9086
+ },
9087
+ "/_nuxt/Bh-DZrTV.js": {
9088
+ "type": "text/javascript; charset=utf-8",
9089
+ "etag": "\"146-JfCqTYS0dUL/ckx+bfFqN/TCU3U\"",
9090
+ "mtime": "2026-01-03T18:15:41.363Z",
9091
+ "size": 326,
9092
+ "path": "../public/_nuxt/Bh-DZrTV.js"
9093
+ },
9094
+ "/_nuxt/BvFz8iHh.js": {
9095
+ "type": "text/javascript; charset=utf-8",
9096
+ "etag": "\"14e-9YLs/HMKMoRAsuMhbEaKj8nRp24\"",
9097
+ "mtime": "2026-01-03T18:15:41.365Z",
9098
+ "size": 334,
9099
+ "path": "../public/_nuxt/BvFz8iHh.js"
9100
+ },
9101
+ "/_nuxt/BwUgVogm.js": {
9102
+ "type": "text/javascript; charset=utf-8",
9103
+ "etag": "\"18e-/kjoifuAxNwVmk769tnCjckg51w\"",
9104
+ "mtime": "2026-01-03T18:15:41.366Z",
9105
+ "size": 398,
9106
+ "path": "../public/_nuxt/BwUgVogm.js"
9107
+ },
9108
+ "/_nuxt/C1fHW8CN.js": {
9109
+ "type": "text/javascript; charset=utf-8",
9110
+ "etag": "\"220-58vh6I3lV7ZrbilSH35temwOCjw\"",
9111
+ "mtime": "2026-01-03T18:15:41.368Z",
9112
+ "size": 544,
9113
+ "path": "../public/_nuxt/C1fHW8CN.js"
9114
+ },
9115
+ "/_nuxt/C1getMtX.js": {
9116
+ "type": "text/javascript; charset=utf-8",
9117
+ "etag": "\"7cd1d-v+fMdcRknWNqyoZrQRX/QJ4M7I8\"",
9118
+ "mtime": "2026-01-03T18:15:41.329Z",
9119
+ "size": 511261,
9120
+ "path": "../public/_nuxt/C1getMtX.js"
9121
+ },
9122
+ "/_nuxt/C4nGy0Yj.js": {
9123
+ "type": "text/javascript; charset=utf-8",
9124
+ "etag": "\"134d-EbGiyuVPxwLov4d2sG/3+F7FH20\"",
9125
+ "mtime": "2026-01-03T18:15:41.370Z",
9126
+ "size": 4941,
9127
+ "path": "../public/_nuxt/C4nGy0Yj.js"
9128
+ },
9129
+ "/_nuxt/CExm4AMI.js": {
9130
+ "type": "text/javascript; charset=utf-8",
9131
+ "etag": "\"174-X0ZNR16QTYa5350wiDVtvzIyZpw\"",
9132
+ "mtime": "2026-01-03T18:15:41.371Z",
9133
+ "size": 372,
9134
+ "path": "../public/_nuxt/CExm4AMI.js"
9135
+ },
9136
+ "/_nuxt/CHcd0nHy.js": {
9137
+ "type": "text/javascript; charset=utf-8",
9138
+ "etag": "\"1ac-BRe9KX5Iv5CFspPNUh8NummeKG0\"",
9139
+ "mtime": "2026-01-03T18:15:41.373Z",
9140
+ "size": 428,
9141
+ "path": "../public/_nuxt/CHcd0nHy.js"
9142
+ },
9143
+ "/_nuxt/Cna7T5zY.js": {
9144
+ "type": "text/javascript; charset=utf-8",
9145
+ "etag": "\"1fb-mvUgMu9LTyRVuE8kc4Je/wTUuQI\"",
9146
+ "mtime": "2026-01-03T18:15:41.378Z",
9147
+ "size": 507,
9148
+ "path": "../public/_nuxt/Cna7T5zY.js"
9149
+ },
9150
+ "/_nuxt/CnghUxEk.js": {
9151
+ "type": "text/javascript; charset=utf-8",
9152
+ "etag": "\"35b-tytKhP0eIfvZqQo71CewRHzVf1g\"",
9153
+ "mtime": "2026-01-03T18:15:41.380Z",
9154
+ "size": 859,
9155
+ "path": "../public/_nuxt/CnghUxEk.js"
9156
+ },
9157
+ "/_nuxt/CTbEZMxa.js": {
9158
+ "type": "text/javascript; charset=utf-8",
9159
+ "etag": "\"209-Faigw7u8J9wvISOmLjB6GovG5VI\"",
9160
+ "mtime": "2026-01-03T18:15:41.375Z",
9161
+ "size": 521,
9162
+ "path": "../public/_nuxt/CTbEZMxa.js"
9163
+ },
9164
+ "/_nuxt/CvJSUdvI.js": {
9165
+ "type": "text/javascript; charset=utf-8",
9166
+ "etag": "\"18a-FoYvgWmzumeh/h1W5hVc8lrQjP0\"",
9167
+ "mtime": "2026-01-03T18:15:41.382Z",
9168
+ "size": 394,
9169
+ "path": "../public/_nuxt/CvJSUdvI.js"
9170
+ },
9171
+ "/_nuxt/CwgBHvd_.js": {
9172
+ "type": "text/javascript; charset=utf-8",
9173
+ "etag": "\"14e-rCUI03C86vPTEHCACYthYIlenQQ\"",
9174
+ "mtime": "2026-01-03T18:15:41.383Z",
9175
+ "size": 334,
9176
+ "path": "../public/_nuxt/CwgBHvd_.js"
9177
+ },
9178
+ "/_nuxt/CZ5QNOH8.js": {
9179
+ "type": "text/javascript; charset=utf-8",
9180
+ "etag": "\"2cf-XIEVvN3ju4VL3C8cAtwRRYGs5v4\"",
9181
+ "mtime": "2026-01-03T18:15:41.376Z",
9182
+ "size": 719,
9183
+ "path": "../public/_nuxt/CZ5QNOH8.js"
9184
+ },
9185
+ "/_nuxt/D1nIr4-J.js": {
9186
+ "type": "text/javascript; charset=utf-8",
9187
+ "etag": "\"18c-V+rJ6zjrhZ6RZdqNhNHVV9RQnH8\"",
9188
+ "mtime": "2026-01-03T18:15:41.385Z",
9189
+ "size": 396,
9190
+ "path": "../public/_nuxt/D1nIr4-J.js"
9191
+ },
9192
+ "/_nuxt/D2atCez-.js": {
9193
+ "type": "text/javascript; charset=utf-8",
9194
+ "etag": "\"ea8-z1nX7FSzHAAtGobbD18NLUFJbA4\"",
9195
+ "mtime": "2026-01-03T18:15:41.388Z",
9196
+ "size": 3752,
9197
+ "path": "../public/_nuxt/D2atCez-.js"
9198
+ },
9199
+ "/_nuxt/D3WX5Hmk.js": {
9200
+ "type": "text/javascript; charset=utf-8",
9201
+ "etag": "\"a5-97IffFXS5BI1/zS77r7CX+S0xjc\"",
9202
+ "mtime": "2026-01-03T18:15:41.389Z",
9203
+ "size": 165,
9204
+ "path": "../public/_nuxt/D3WX5Hmk.js"
9205
+ },
9206
+ "/_nuxt/D5duQQkG.js": {
9207
+ "type": "text/javascript; charset=utf-8",
9208
+ "etag": "\"d0b-SGlT8Rn2wxvwWd/1Aq1OzAoJb1s\"",
9209
+ "mtime": "2026-01-03T18:15:41.392Z",
9210
+ "size": 3339,
9211
+ "path": "../public/_nuxt/D5duQQkG.js"
9212
+ },
9213
+ "/_nuxt/D9RSHNPZ.js": {
9214
+ "type": "text/javascript; charset=utf-8",
9215
+ "etag": "\"5ba-0sTe7oIRUunn+E2lNu5E6vD34/Q\"",
9216
+ "mtime": "2026-01-03T18:15:41.394Z",
9217
+ "size": 1466,
9218
+ "path": "../public/_nuxt/D9RSHNPZ.js"
9219
+ },
9220
+ "/_nuxt/DB3c8m3K.js": {
9221
+ "type": "text/javascript; charset=utf-8",
9222
+ "etag": "\"cae-pQCyheXM5ZqiqwgNYRObrSxMiQM\"",
9223
+ "mtime": "2026-01-03T18:15:41.396Z",
9224
+ "size": 3246,
9225
+ "path": "../public/_nuxt/DB3c8m3K.js"
9226
+ },
9227
+ "/_nuxt/DbZ1CQfQ.js": {
9228
+ "type": "text/javascript; charset=utf-8",
9229
+ "etag": "\"100f-hq/lKqH4QuiUAbhHLWrk3iaZZLc\"",
9230
+ "mtime": "2026-01-03T18:15:41.410Z",
9231
+ "size": 4111,
9232
+ "path": "../public/_nuxt/DbZ1CQfQ.js"
9233
+ },
9234
+ "/_nuxt/DFP1sKjc.js": {
9235
+ "type": "text/javascript; charset=utf-8",
9236
+ "etag": "\"2ab-BELfoliI18PM6QcOs0q8fUbpm2o\"",
9237
+ "mtime": "2026-01-03T18:15:41.398Z",
9238
+ "size": 683,
9239
+ "path": "../public/_nuxt/DFP1sKjc.js"
9240
+ },
9241
+ "/_nuxt/DgCebJqk.js": {
9242
+ "type": "text/javascript; charset=utf-8",
9243
+ "etag": "\"1e6-6gKEek9M99RffsFuoOeGI3s9zpw\"",
9244
+ "mtime": "2026-01-03T18:15:41.412Z",
9245
+ "size": 486,
9246
+ "path": "../public/_nuxt/DgCebJqk.js"
9247
+ },
9248
+ "/_nuxt/DhhwMwQM.js": {
9249
+ "type": "text/javascript; charset=utf-8",
9250
+ "etag": "\"33c-K1BAdTNOIaSrymAXEZnyXSuJV/4\"",
9251
+ "mtime": "2026-01-03T18:15:41.413Z",
9252
+ "size": 828,
9253
+ "path": "../public/_nuxt/DhhwMwQM.js"
9254
+ },
9255
+ "/_nuxt/DI5_qtj_.js": {
9256
+ "type": "text/javascript; charset=utf-8",
9257
+ "etag": "\"10a5-sfBfEEM7rmMTnIwvqnG9Z0jvYA8\"",
9258
+ "mtime": "2026-01-03T18:15:41.399Z",
9259
+ "size": 4261,
9260
+ "path": "../public/_nuxt/DI5_qtj_.js"
9261
+ },
9262
+ "/_nuxt/Djhwz52y.js": {
9263
+ "type": "text/javascript; charset=utf-8",
9264
+ "etag": "\"ca9-wIPxLYKnD7UJO9jl2CsVO4re650\"",
9265
+ "mtime": "2026-01-03T18:15:41.415Z",
9266
+ "size": 3241,
9267
+ "path": "../public/_nuxt/Djhwz52y.js"
9268
+ },
9269
+ "/_nuxt/DKCDh1Eq.js": {
9270
+ "type": "text/javascript; charset=utf-8",
9271
+ "etag": "\"1353-ygR/O6EUeCdBwZMTtCnAq2y6GxY\"",
9272
+ "mtime": "2026-01-03T18:15:41.401Z",
9273
+ "size": 4947,
9274
+ "path": "../public/_nuxt/DKCDh1Eq.js"
9275
+ },
9276
+ "/_nuxt/DN3AlbuD.js": {
9277
+ "type": "text/javascript; charset=utf-8",
9278
+ "etag": "\"d84-a21hmvslm/jhfuZwtFSpQsmuxAQ\"",
9279
+ "mtime": "2026-01-03T18:15:41.403Z",
9280
+ "size": 3460,
9281
+ "path": "../public/_nuxt/DN3AlbuD.js"
9282
+ },
9283
+ "/_nuxt/DncFEy6i.js": {
9284
+ "type": "text/javascript; charset=utf-8",
9285
+ "etag": "\"15d6-keRkzS9xGV3EwSfJ5em5bS0yhVk\"",
9286
+ "mtime": "2026-01-03T18:15:41.418Z",
9287
+ "size": 5590,
9288
+ "path": "../public/_nuxt/DncFEy6i.js"
9289
+ },
9290
+ "/_nuxt/DnE1KSqg.js": {
9291
+ "type": "text/javascript; charset=utf-8",
9292
+ "etag": "\"15d-0VEgltG2aMS0ACkY4es1yTUeXlY\"",
9293
+ "mtime": "2026-01-03T18:15:41.416Z",
9294
+ "size": 349,
9295
+ "path": "../public/_nuxt/DnE1KSqg.js"
9296
+ },
9297
+ "/_nuxt/DPDbQA17.js": {
9298
+ "type": "text/javascript; charset=utf-8",
9299
+ "etag": "\"66d-s3LuqtBuJIlb3HfE4FXfK+LolTU\"",
9300
+ "mtime": "2026-01-03T18:15:41.405Z",
9301
+ "size": 1645,
9302
+ "path": "../public/_nuxt/DPDbQA17.js"
9303
+ },
9304
+ "/_nuxt/DpZCZGQO.js": {
9305
+ "type": "text/javascript; charset=utf-8",
9306
+ "etag": "\"145-S02oo6bOgIYoXzrPRixsgNp56Js\"",
9307
+ "mtime": "2026-01-03T18:15:41.420Z",
9308
+ "size": 325,
9309
+ "path": "../public/_nuxt/DpZCZGQO.js"
9310
+ },
9311
+ "/_nuxt/DSErOj49.js": {
9312
+ "type": "text/javascript; charset=utf-8",
9313
+ "etag": "\"14e-yyuGsNNi2NFTLtIhpvNCrI4oVzc\"",
9314
+ "mtime": "2026-01-03T18:15:41.407Z",
9315
+ "size": 334,
9316
+ "path": "../public/_nuxt/DSErOj49.js"
9317
+ },
9318
+ "/_nuxt/Dx95U2T3.js": {
9319
+ "type": "text/javascript; charset=utf-8",
9320
+ "etag": "\"224-nrCWsMRyIEaMYoTDZ7UJV4syroQ\"",
9321
+ "mtime": "2026-01-03T18:15:41.422Z",
9322
+ "size": 548,
9323
+ "path": "../public/_nuxt/Dx95U2T3.js"
9324
+ },
9325
+ "/_nuxt/DXrSmKSt.js": {
9326
+ "type": "text/javascript; charset=utf-8",
9327
+ "etag": "\"a6-WCH1OBq6pBVv7nl7oOZ+80yhGbk\"",
9328
+ "mtime": "2026-01-03T18:15:41.408Z",
9329
+ "size": 166,
9330
+ "path": "../public/_nuxt/DXrSmKSt.js"
9331
+ },
9332
+ "/_nuxt/efC_w6sP.js": {
9333
+ "type": "text/javascript; charset=utf-8",
9334
+ "etag": "\"77a-enr1rjHzS0gkm/5Uz3O2vKPKA78\"",
9335
+ "mtime": "2026-01-03T18:15:41.441Z",
9336
+ "size": 1914,
9337
+ "path": "../public/_nuxt/efC_w6sP.js"
9338
+ },
9339
+ "/_nuxt/entry.9ygoOcLs.css": {
9340
+ "type": "text/css; charset=utf-8",
9341
+ "etag": "\"38bda-N6YIlQrjrbpUzbwR/3IeqdPPoek\"",
9342
+ "mtime": "2026-01-03T18:15:41.446Z",
9343
+ "size": 232410,
9344
+ "path": "../public/_nuxt/entry.9ygoOcLs.css"
9345
+ },
9346
+ "/_nuxt/error-404.0Tbhbu-E.css": {
9347
+ "type": "text/css; charset=utf-8",
9348
+ "etag": "\"979-ZvMOnEotfeF2vG6ItknHqq9Dylg\"",
9349
+ "mtime": "2026-01-03T18:15:41.452Z",
9350
+ "size": 2425,
9351
+ "path": "../public/_nuxt/error-404.0Tbhbu-E.css"
9352
+ },
9353
+ "/_nuxt/error-500.ClQbyW3Z.css": {
9354
+ "type": "text/css; charset=utf-8",
9355
+ "etag": "\"76e-4jG4GnqFOHo5oVfiycBZx38YDyI\"",
9356
+ "mtime": "2026-01-03T18:15:41.451Z",
9357
+ "size": 1902,
9358
+ "path": "../public/_nuxt/error-500.ClQbyW3Z.css"
9359
+ },
9360
+ "/_nuxt/FUdAqSn9.js": {
9361
+ "type": "text/javascript; charset=utf-8",
9362
+ "etag": "\"20119-+mLAZOhT6Y1ICcSM9Nfe4PtNxRA\"",
9363
+ "mtime": "2026-01-03T18:15:41.424Z",
9364
+ "size": 131353,
9365
+ "path": "../public/_nuxt/FUdAqSn9.js"
9366
+ },
9367
+ "/_nuxt/GvxWNFgu.js": {
9368
+ "type": "text/javascript; charset=utf-8",
9369
+ "etag": "\"5ba-ZGTuUQVDA65EJ5emPv+6cQNyoB8\"",
9370
+ "mtime": "2026-01-03T18:15:41.425Z",
9371
+ "size": 1466,
9372
+ "path": "../public/_nuxt/GvxWNFgu.js"
9373
+ },
9374
+ "/_nuxt/HgKyGH3C.js": {
9375
+ "type": "text/javascript; charset=utf-8",
9376
+ "etag": "\"a07-k2oyhDWCapA08js76toQQEtn3vw\"",
9377
+ "mtime": "2026-01-03T18:15:41.427Z",
9378
+ "size": 2567,
9379
+ "path": "../public/_nuxt/HgKyGH3C.js"
9380
+ },
9381
+ "/_nuxt/Hxhp1Hz0.js": {
9382
+ "type": "text/javascript; charset=utf-8",
9383
+ "etag": "\"3d0-XxysbHLztLXbn9ayAi4TRUUDGIw\"",
9384
+ "mtime": "2026-01-03T18:15:41.429Z",
9385
+ "size": 976,
9386
+ "path": "../public/_nuxt/Hxhp1Hz0.js"
9387
+ },
9388
+ "/_nuxt/LpFrvoF7.js": {
9389
+ "type": "text/javascript; charset=utf-8",
9390
+ "etag": "\"4be-DN9Q1+yUj6NsWV0H+JXEVmv2NTk\"",
9391
+ "mtime": "2026-01-03T18:15:41.430Z",
9392
+ "size": 1214,
9393
+ "path": "../public/_nuxt/LpFrvoF7.js"
9394
+ },
9395
+ "/_nuxt/Pre.HegCCrfd.css": {
9396
+ "type": "text/css; charset=utf-8",
9397
+ "etag": "\"155-VqbN57K2i9ycHlzw0iNIHrjN9ug\"",
9398
+ "mtime": "2026-01-03T18:15:41.450Z",
9399
+ "size": 341,
9400
+ "path": "../public/_nuxt/Pre.HegCCrfd.css"
9401
+ },
9402
+ "/_nuxt/Sz6HDPqh.js": {
9403
+ "type": "text/javascript; charset=utf-8",
9404
+ "etag": "\"65c-mnfG3kswpZSXzO3GlvLS2nUJMRI\"",
9405
+ "mtime": "2026-01-03T18:15:41.432Z",
9406
+ "size": 1628,
9407
+ "path": "../public/_nuxt/Sz6HDPqh.js"
9408
+ },
9409
+ "/_nuxt/U1_7ggcx.js": {
9410
+ "type": "text/javascript; charset=utf-8",
9411
+ "etag": "\"16f-ETBG8y/6TxbR7jry6PdEXiULkWI\"",
9412
+ "mtime": "2026-01-03T18:15:41.434Z",
9413
+ "size": 367,
9414
+ "path": "../public/_nuxt/U1_7ggcx.js"
9415
+ },
9416
+ "/_nuxt/ulE7jr93.js": {
9417
+ "type": "text/javascript; charset=utf-8",
9418
+ "etag": "\"1d1-Xf5NAm5TTikGKSJJOIRy/q8GT3Q\"",
9419
+ "mtime": "2026-01-03T18:15:41.443Z",
9420
+ "size": 465,
9421
+ "path": "../public/_nuxt/ulE7jr93.js"
9422
+ },
9423
+ "/_nuxt/X8ZdEYzW.js": {
9424
+ "type": "text/javascript; charset=utf-8",
9425
+ "etag": "\"766-oV7F4A1wOj/tnXZIQSNyVPvn1+w\"",
9426
+ "mtime": "2026-01-03T18:15:41.436Z",
9427
+ "size": 1894,
9428
+ "path": "../public/_nuxt/X8ZdEYzW.js"
9429
+ },
9430
+ "/_nuxt/xHyrElgL.js": {
9431
+ "type": "text/javascript; charset=utf-8",
9432
+ "etag": "\"d4-IsxAXT7c+Ll9h1cEpa7CMQU7oKI\"",
9433
+ "mtime": "2026-01-03T18:15:41.444Z",
9434
+ "size": 212,
9435
+ "path": "../public/_nuxt/xHyrElgL.js"
9436
+ },
9437
+ "/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-4kZc4IwOXqryLeYzsaTvEKd54SPfeeGKPyDAZei18kw.woff": {
9438
+ "type": "font/woff",
9439
+ "etag": "\"2855c-8St0lD4Fdqrzi3pJVoND71YzwnI\"",
9440
+ "mtime": "2026-01-03T18:16:03.372Z",
9441
+ "size": 165212,
9442
+ "path": "../public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-4kZc4IwOXqryLeYzsaTvEKd54SPfeeGKPyDAZei18kw.woff"
9443
+ },
9444
+ "/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-mSqNnHyoMtDKNu3z_xDpL0hWMcL0lhabY3Oa0dnS5HM.woff": {
9445
+ "type": "font/woff",
9446
+ "etag": "\"18f14-FCL3lkdn2IvOZcWlOqBjXCy9ktk\"",
9447
+ "mtime": "2026-01-03T18:16:03.421Z",
9448
+ "size": 102164,
9449
+ "path": "../public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-mSqNnHyoMtDKNu3z_xDpL0hWMcL0lhabY3Oa0dnS5HM.woff"
9450
+ },
9451
+ "/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-RvZUU2X45U7WIDI083h9MozPZMSPdvOCkgsORsWvPOw.woff": {
9452
+ "type": "font/woff",
9453
+ "etag": "\"265b0-5mMW5NnCtewEoSvIvRKCW3fte18\"",
9454
+ "mtime": "2026-01-03T18:16:03.379Z",
9455
+ "size": 157104,
9456
+ "path": "../public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-RvZUU2X45U7WIDI083h9MozPZMSPdvOCkgsORsWvPOw.woff"
9457
+ },
9458
+ "/_fonts/31PZhXd_YTCmsoiPQZc-xVtAWAkLogRFRj5mWplmKFE-6WsTw05QKugcwLySGc_b9CIheG8j8LRyo47qPL430Mk.woff2": {
9459
+ "type": "font/woff2",
9460
+ "etag": "\"5cfc-hMfvYCftu+VSkhz1RW4/Jn3Gvw0\"",
9461
+ "mtime": "2026-01-03T18:16:03.365Z",
9462
+ "size": 23804,
9463
+ "path": "../public/_fonts/31PZhXd_YTCmsoiPQZc-xVtAWAkLogRFRj5mWplmKFE-6WsTw05QKugcwLySGc_b9CIheG8j8LRyo47qPL430Mk.woff2"
9464
+ },
9465
+ "/_fonts/9FWLUGCSCYLRIRMtCzLrt4Go7DMFXOeN_pyCOJD_44Y-Yh2wNaqrq_e759vVlc3tX81lMwRu9ktkQJX_Svgs-VI.woff2": {
9466
+ "type": "font/woff2",
9467
+ "etag": "\"9348-JD4kqCd5ivLejXIb4rJUj2Oe7Os\"",
9468
+ "mtime": "2026-01-03T18:16:03.314Z",
9469
+ "size": 37704,
9470
+ "path": "../public/_fonts/9FWLUGCSCYLRIRMtCzLrt4Go7DMFXOeN_pyCOJD_44Y-Yh2wNaqrq_e759vVlc3tX81lMwRu9ktkQJX_Svgs-VI.woff2"
9123
9471
  },
9124
9472
  "/_fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-4s8awL3_7NCZIzHTaY2tD681prJPuNHGqkbChz7OJeE.woff2": {
9125
9473
  "type": "font/woff2",
9126
9474
  "etag": "\"4860-SDiTLalQWpyBWXjXsteqdn3yfE8\"",
9127
- "mtime": "2025-10-31T20:54:49.418Z",
9475
+ "mtime": "2026-01-03T18:16:03.398Z",
9128
9476
  "size": 18528,
9129
9477
  "path": "../public/_fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-4s8awL3_7NCZIzHTaY2tD681prJPuNHGqkbChz7OJeE.woff2"
9130
9478
  },
9131
9479
  "/_fonts/BQnDL9FFy0Q_jvURlmv87luvmXLSMbSuXsfZv_R2Rkk-y5MVrLtP4J_1al8rz8R-MDaUOMAHckAWCwDrKhw25fY.woff2": {
9132
9480
  "type": "font/woff2",
9133
9481
  "etag": "\"1ea8-Xs5tWRPiNgEopdlmowR29R04RWI\"",
9134
- "mtime": "2025-10-31T20:54:49.409Z",
9482
+ "mtime": "2026-01-03T18:16:03.344Z",
9135
9483
  "size": 7848,
9136
9484
  "path": "../public/_fonts/BQnDL9FFy0Q_jvURlmv87luvmXLSMbSuXsfZv_R2Rkk-y5MVrLtP4J_1al8rz8R-MDaUOMAHckAWCwDrKhw25fY.woff2"
9137
9485
  },
9138
9486
  "/_fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-6h0m1Bf2RaAhaXNIrP4eW5ztakwJFN8JcCXPea_zL8E.woff2": {
9139
9487
  "type": "font/woff2",
9140
9488
  "etag": "\"1dd0-Jp4WHPAnRR6SAq66WoTdn1sGljg\"",
9141
- "mtime": "2025-10-31T20:54:49.416Z",
9489
+ "mtime": "2026-01-03T18:16:03.385Z",
9142
9490
  "size": 7632,
9143
9491
  "path": "../public/_fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-6h0m1Bf2RaAhaXNIrP4eW5ztakwJFN8JcCXPea_zL8E.woff2"
9144
9492
  },
9145
9493
  "/_fonts/h9PwCjip_BNPVO50hT4v29USWFv6H3ZlYx_IestfqgY-sYfLVuZXl9E1aYbn1S0pAr4zfdQ_WT7iBZhrgQY6N-4.woff2": {
9146
9494
  "type": "font/woff2",
9147
9495
  "etag": "\"1e6c-uG/53AH0wKTheXRLVuEVeXiBqzs\"",
9148
- "mtime": "2025-10-31T20:54:49.406Z",
9496
+ "mtime": "2026-01-03T18:16:03.331Z",
9149
9497
  "size": 7788,
9150
9498
  "path": "../public/_fonts/h9PwCjip_BNPVO50hT4v29USWFv6H3ZlYx_IestfqgY-sYfLVuZXl9E1aYbn1S0pAr4zfdQ_WT7iBZhrgQY6N-4.woff2"
9151
9499
  },
9152
9500
  "/_fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-8R9ucQ623nsXJTayzizuOYtVntUNPQzR8aWYpk8a8d8.woff2": {
9153
9501
  "type": "font/woff2",
9154
9502
  "etag": "\"2164-I54vRJYQnmOLdE4wa7HzSdjft3A\"",
9155
- "mtime": "2025-10-31T20:54:49.416Z",
9503
+ "mtime": "2026-01-03T18:16:03.391Z",
9156
9504
  "size": 8548,
9157
9505
  "path": "../public/_fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-8R9ucQ623nsXJTayzizuOYtVntUNPQzR8aWYpk8a8d8.woff2"
9158
9506
  },
9159
9507
  "/_fonts/JSrPAbQHsQEdUrIE5Ts6fIQ2ymsa4i7HhiCpui6ulCc-_AoyGWssOn06OMh3ZY_GddBBPRny4Igxin4fT_1K6F4.woff2": {
9160
9508
  "type": "font/woff2",
9161
9509
  "etag": "\"2028-g5rODJtmhR72JcCdEUMoK4PxkHs\"",
9162
- "mtime": "2025-10-31T20:54:49.397Z",
9510
+ "mtime": "2026-01-03T18:16:03.291Z",
9163
9511
  "size": 8232,
9164
9512
  "path": "../public/_fonts/JSrPAbQHsQEdUrIE5Ts6fIQ2ymsa4i7HhiCpui6ulCc-_AoyGWssOn06OMh3ZY_GddBBPRny4Igxin4fT_1K6F4.woff2"
9165
9513
  },
9166
- "/_fonts/Jtqhy44WKYEjGWTSusP5YJfJv7Wf74QqgkBOI9u_77s-Rl_Bht5SvmaotE20bkavBEAJEEGEa0hcz3d_8yOeXmw.woff": {
9167
- "type": "font/woff",
9168
- "etag": "\"24224-i8nyHZCghVE6re0lgyIqtNYVsUU\"",
9169
- "mtime": "2025-10-31T20:54:49.413Z",
9170
- "size": 148004,
9171
- "path": "../public/_fonts/Jtqhy44WKYEjGWTSusP5YJfJv7Wf74QqgkBOI9u_77s-Rl_Bht5SvmaotE20bkavBEAJEEGEa0hcz3d_8yOeXmw.woff"
9172
- },
9173
- "/_fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-BgCmQXkW3N6talUbQSKexB2sHUT0qGEzmM4uMcnDAbI.woff": {
9174
- "type": "font/woff",
9175
- "etag": "\"17f34-RzhDcqLvESSIigii6abdqGuSeDk\"",
9176
- "mtime": "2025-10-31T20:54:49.422Z",
9177
- "size": 98100,
9178
- "path": "../public/_fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-BgCmQXkW3N6talUbQSKexB2sHUT0qGEzmM4uMcnDAbI.woff"
9179
- },
9180
9514
  "/_fonts/l00UCz_-QvI_NO8AGcu7ooAcrFDlxYUdxCSCh6gBwd4-vPjTZ3ztgw27A2TnHeCycxPvUtXWEVpG33_97ra6su8.woff2": {
9181
9515
  "type": "font/woff2",
9182
9516
  "etag": "\"1404-WVawpqXvsGDxdYVj86/nATvI6Mw\"",
9183
- "mtime": "2025-10-31T20:54:49.401Z",
9517
+ "mtime": "2026-01-03T18:16:03.308Z",
9184
9518
  "size": 5124,
9185
9519
  "path": "../public/_fonts/l00UCz_-QvI_NO8AGcu7ooAcrFDlxYUdxCSCh6gBwd4-vPjTZ3ztgw27A2TnHeCycxPvUtXWEVpG33_97ra6su8.woff2"
9186
9520
  },
9187
9521
  "/_fonts/M-60tFLmAJxdPjHsK-2ILWom5zPbu37lb3Qex2waL14-A9y4QcXALPi_RvQsmRsSFUxrT3_J213W4zPFIXetlbw.woff2": {
9188
9522
  "type": "font/woff2",
9189
9523
  "etag": "\"88f0-aK7TeScJDoLJSsU+55l4BCy2k8Y\"",
9190
- "mtime": "2025-10-31T20:54:49.411Z",
9524
+ "mtime": "2026-01-03T18:16:03.357Z",
9191
9525
  "size": 35056,
9192
9526
  "path": "../public/_fonts/M-60tFLmAJxdPjHsK-2ILWom5zPbu37lb3Qex2waL14-A9y4QcXALPi_RvQsmRsSFUxrT3_J213W4zPFIXetlbw.woff2"
9193
9527
  },
9194
9528
  "/_fonts/nuenOq7ZFSZ65QudJO7uQ0sOjDqow2WjfXrQh4S9gEc-uF81rxcswER5srfhzyLfPoGlKNAIt2C_BvkXFOc19rw.woff2": {
9195
9529
  "type": "font/woff2",
9196
9530
  "etag": "\"1374-gQPD85QP3ZncSaOZqNHZO38rT4E\"",
9197
- "mtime": "2025-10-31T20:54:49.410Z",
9531
+ "mtime": "2026-01-03T18:16:03.351Z",
9198
9532
  "size": 4980,
9199
9533
  "path": "../public/_fonts/nuenOq7ZFSZ65QudJO7uQ0sOjDqow2WjfXrQh4S9gEc-uF81rxcswER5srfhzyLfPoGlKNAIt2C_BvkXFOc19rw.woff2"
9200
9534
  },
9201
9535
  "/_fonts/pWMvGwciZ-EfQsfR2ueelhC7Jnt5K-8Px8PjPK0mDII-eT9iD0iZ9WWhTJs6V5GxXr0iaUwx_WxgGGriOiGb81o.woff2": {
9202
9536
  "type": "font/woff2",
9203
9537
  "etag": "\"625c-V9KJoFQhs+4wpmAYjjTBZ2yPjaM\"",
9204
- "mtime": "2025-10-31T20:54:49.404Z",
9538
+ "mtime": "2026-01-03T18:16:03.320Z",
9205
9539
  "size": 25180,
9206
9540
  "path": "../public/_fonts/pWMvGwciZ-EfQsfR2ueelhC7Jnt5K-8Px8PjPK0mDII-eT9iD0iZ9WWhTJs6V5GxXr0iaUwx_WxgGGriOiGb81o.woff2"
9207
9541
  },
9208
9542
  "/_fonts/T-ozk-QJ_Ck37B2RHPl2i-s_gAGGo7suFgagWoJ8bO4-maDXQ_nEXKAaLHm4Joud3DJR9EVzS7QXWMWK8YOTIcs.woff2": {
9209
9543
  "type": "font/woff2",
9210
9544
  "etag": "\"15c4-x/d15G+WSqKwsVvSG7FUA3S7EzE\"",
9211
- "mtime": "2025-10-31T20:54:49.399Z",
9545
+ "mtime": "2026-01-03T18:16:03.297Z",
9212
9546
  "size": 5572,
9213
9547
  "path": "../public/_fonts/T-ozk-QJ_Ck37B2RHPl2i-s_gAGGo7suFgagWoJ8bO4-maDXQ_nEXKAaLHm4Joud3DJR9EVzS7QXWMWK8YOTIcs.woff2"
9214
9548
  },
9215
9549
  "/_fonts/TTYbISAfwy-y4uVGS9AH32sK7b2xJsoCESo64ryf8LU-y87nRMqBGo42rUOW9tWZa06o4oTa0USJrAMMoKDamgs.woff2": {
9216
9550
  "type": "font/woff2",
9217
9551
  "etag": "\"2a60-5uhpvIhgOOr02hvNkWdwpQRCYOw\"",
9218
- "mtime": "2025-10-31T20:54:49.395Z",
9552
+ "mtime": "2026-01-03T18:16:03.284Z",
9219
9553
  "size": 10848,
9220
9554
  "path": "../public/_fonts/TTYbISAfwy-y4uVGS9AH32sK7b2xJsoCESo64ryf8LU-y87nRMqBGo42rUOW9tWZa06o4oTa0USJrAMMoKDamgs.woff2"
9221
9555
  },
9222
9556
  "/_fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-s6NA3uLuPs0vnwZNhOTJ1g_7NVire0Uvng_2zP6mjNQ.woff2": {
9223
9557
  "type": "font/woff2",
9224
9558
  "etag": "\"2740-FylO4k4dWFae7M2ZYHkc66/pNpQ\"",
9225
- "mtime": "2025-10-31T20:54:49.420Z",
9559
+ "mtime": "2026-01-03T18:16:03.408Z",
9226
9560
  "size": 10048,
9227
9561
  "path": "../public/_fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-s6NA3uLuPs0vnwZNhOTJ1g_7NVire0Uvng_2zP6mjNQ.woff2"
9228
9562
  },
9229
9563
  "/_fonts/y3mP_zJcojQwJn30TpF_XxDzgeM6Nbk7MaRg1Ne0YcI-lFx13nqMCMgk_S70gRmwEHXlE5BLp1B4W82RpFihpMs.woff2": {
9230
9564
  "type": "font/woff2",
9231
9565
  "etag": "\"27fc-STdFgKn61haUA/qU9CDQlmqFFYA\"",
9232
- "mtime": "2025-10-31T20:54:49.404Z",
9566
+ "mtime": "2026-01-03T18:16:03.324Z",
9233
9567
  "size": 10236,
9234
9568
  "path": "../public/_fonts/y3mP_zJcojQwJn30TpF_XxDzgeM6Nbk7MaRg1Ne0YcI-lFx13nqMCMgk_S70gRmwEHXlE5BLp1B4W82RpFihpMs.woff2"
9235
9569
  },
9236
9570
  "/_fonts/Y_5DOsLit49q2i2tbcNxnyUen9__GPCX8mwAi03q1aA-pBCjVKDT5tBT3BJckh9uzNkfUWeUIBPz9Y8T55vcj8E.woff2": {
9237
9571
  "type": "font/woff2",
9238
9572
  "etag": "\"14bc-cM0F9VJltYO+dUb3TNxKqnC09Lw\"",
9239
- "mtime": "2025-10-31T20:54:49.408Z",
9573
+ "mtime": "2026-01-03T18:16:03.338Z",
9240
9574
  "size": 5308,
9241
9575
  "path": "../public/_fonts/Y_5DOsLit49q2i2tbcNxnyUen9__GPCX8mwAi03q1aA-pBCjVKDT5tBT3BJckh9uzNkfUWeUIBPz9Y8T55vcj8E.woff2"
9242
9576
  },
9243
- "/_fonts/ZHaz3DhCHNWhsElqYfuM71rfBBDgjuU2sd34vaYJwQg-71NZaZSGjxzAGjCMnCc2zS5rS_EGA0xHKPGCggWuXik.woff": {
9244
- "type": "font/woff",
9245
- "etag": "\"22114-IIKRYhC5hULI9xvIbbQwo/zu/gk\"",
9246
- "mtime": "2025-10-31T20:54:49.414Z",
9247
- "size": 139540,
9248
- "path": "../public/_fonts/ZHaz3DhCHNWhsElqYfuM71rfBBDgjuU2sd34vaYJwQg-71NZaZSGjxzAGjCMnCc2zS5rS_EGA0xHKPGCggWuXik.woff"
9249
- },
9250
9577
  "/_fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-t7L_F0sYO8m44V7ZmFyCOiGNJDIBFFLVfLeLwCIUhsI.woff2": {
9251
9578
  "type": "font/woff2",
9252
9579
  "etag": "\"3470-aKqDttxu3HqhjUQ254v9wmEu/eg\"",
9253
- "mtime": "2025-10-31T20:54:49.421Z",
9580
+ "mtime": "2026-01-03T18:16:03.415Z",
9254
9581
  "size": 13424,
9255
9582
  "path": "../public/_fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-t7L_F0sYO8m44V7ZmFyCOiGNJDIBFFLVfLeLwCIUhsI.woff2"
9256
9583
  },
9257
9584
  "/_fonts/zr3WxpLd5PmlBr7e4PWGkhZv6XTg70Pi4sCbC-CEV0Q-v2yL98XOiD3FkbiYlYYeAeTSVSkgAckeOp55Q5kHJmU.woff2": {
9258
9585
  "type": "font/woff2",
9259
9586
  "etag": "\"2108-RCN1YAiLHQSpe2qMAZTm8YhqXiM\"",
9260
- "mtime": "2025-10-31T20:54:49.400Z",
9587
+ "mtime": "2026-01-03T18:16:03.303Z",
9261
9588
  "size": 8456,
9262
9589
  "path": "../public/_fonts/zr3WxpLd5PmlBr7e4PWGkhZv6XTg70Pi4sCbC-CEV0Q-v2yL98XOiD3FkbiYlYYeAeTSVSkgAckeOp55Q5kHJmU.woff2"
9263
9590
  },
9264
- "/_nuxt/1vOq3xiE.js": {
9265
- "type": "text/javascript; charset=utf-8",
9266
- "etag": "\"dc-r9aOa0Yx9OpuXUkDRIWhXrUcprU\"",
9267
- "mtime": "2025-10-31T20:54:46.711Z",
9268
- "size": 220,
9269
- "path": "../public/_nuxt/1vOq3xiE.js"
9270
- },
9271
- "/_nuxt/22rhGZdI.js": {
9272
- "type": "text/javascript; charset=utf-8",
9273
- "etag": "\"e6-ubx5oB2sna34OIAiHk/J8jkDrcA\"",
9274
- "mtime": "2025-10-31T20:54:46.711Z",
9275
- "size": 230,
9276
- "path": "../public/_nuxt/22rhGZdI.js"
9277
- },
9278
- "/_nuxt/9eIdSibD.js": {
9279
- "type": "text/javascript; charset=utf-8",
9280
- "etag": "\"d6-aAt/mO3rWVCgrVyTTicLChAFGdc\"",
9281
- "mtime": "2025-10-31T20:54:46.711Z",
9282
- "size": 214,
9283
- "path": "../public/_nuxt/9eIdSibD.js"
9284
- },
9285
- "/_nuxt/atySmcu6.js": {
9286
- "type": "text/javascript; charset=utf-8",
9287
- "etag": "\"1f1-T4aKnKm+DWs86ZWD59cAsx3Xacg\"",
9288
- "mtime": "2025-10-31T20:54:46.711Z",
9289
- "size": 497,
9290
- "path": "../public/_nuxt/atySmcu6.js"
9291
- },
9292
- "/_nuxt/BBmTy930.js": {
9293
- "type": "text/javascript; charset=utf-8",
9294
- "etag": "\"9ba59-W/Vun4VV3yucQOAdTFDcGcn+OJM\"",
9295
- "mtime": "2025-10-31T20:54:46.711Z",
9296
- "size": 637529,
9297
- "path": "../public/_nuxt/BBmTy930.js"
9298
- },
9299
- "/_nuxt/Bc5GLloR.js": {
9300
- "type": "text/javascript; charset=utf-8",
9301
- "etag": "\"199-X/GYmlWxzP7LjOjgcuR5V7P0fzg\"",
9302
- "mtime": "2025-10-31T20:54:46.711Z",
9303
- "size": 409,
9304
- "path": "../public/_nuxt/Bc5GLloR.js"
9305
- },
9306
- "/_nuxt/BdG3SY-u.js": {
9307
- "type": "text/javascript; charset=utf-8",
9308
- "etag": "\"b2-xJVIscMRKETOcddcOjWIu12k4Wo\"",
9309
- "mtime": "2025-10-31T20:54:46.711Z",
9310
- "size": 178,
9311
- "path": "../public/_nuxt/BdG3SY-u.js"
9312
- },
9313
- "/_nuxt/BeyOQpYA.js": {
9314
- "type": "text/javascript; charset=utf-8",
9315
- "etag": "\"b3-gJKjNq4kyTR0Yk2BnJ+z7UHV6ic\"",
9316
- "mtime": "2025-10-31T20:54:46.711Z",
9317
- "size": 179,
9318
- "path": "../public/_nuxt/BeyOQpYA.js"
9319
- },
9320
- "/_nuxt/BKe83Cjx.js": {
9321
- "type": "text/javascript; charset=utf-8",
9322
- "etag": "\"d90-eEeYyXZQTkv33jesyVfmZBwvhzE\"",
9323
- "mtime": "2025-10-31T20:54:46.711Z",
9324
- "size": 3472,
9325
- "path": "../public/_nuxt/BKe83Cjx.js"
9326
- },
9327
- "/_nuxt/BqcXd3MY.js": {
9328
- "type": "text/javascript; charset=utf-8",
9329
- "etag": "\"765ef-xfsPO0TtITkEatYhbT7iP3mvJYY\"",
9330
- "mtime": "2025-10-31T20:54:46.711Z",
9331
- "size": 484847,
9332
- "path": "../public/_nuxt/BqcXd3MY.js"
9333
- },
9334
- "/_nuxt/Bz55A4y1.js": {
9335
- "type": "text/javascript; charset=utf-8",
9336
- "etag": "\"d6-RvP0v7ejazJq+HCiXvxfbCmRxuw\"",
9337
- "mtime": "2025-10-31T20:54:46.711Z",
9338
- "size": 214,
9339
- "path": "../public/_nuxt/Bz55A4y1.js"
9340
- },
9341
- "/_nuxt/C2ybsIQ4.js": {
9342
- "type": "text/javascript; charset=utf-8",
9343
- "etag": "\"d6-abnAVrsRktzjIXAMJAcU0SbiY14\"",
9344
- "mtime": "2025-10-31T20:54:46.711Z",
9345
- "size": 214,
9346
- "path": "../public/_nuxt/C2ybsIQ4.js"
9347
- },
9348
- "/_nuxt/C4U5VOMJ.js": {
9349
- "type": "text/javascript; charset=utf-8",
9350
- "etag": "\"ad-ZhQ2OdSPV47FL4n+6ksnxpR1NOw\"",
9351
- "mtime": "2025-10-31T20:54:46.711Z",
9352
- "size": 173,
9353
- "path": "../public/_nuxt/C4U5VOMJ.js"
9354
- },
9355
- "/_nuxt/CAJsyjAK.js": {
9356
- "type": "text/javascript; charset=utf-8",
9357
- "etag": "\"de-R0EUqBF6Joq44KA6JIv+3PLAb4U\"",
9358
- "mtime": "2025-10-31T20:54:46.711Z",
9359
- "size": 222,
9360
- "path": "../public/_nuxt/CAJsyjAK.js"
9361
- },
9362
- "/_nuxt/CD9aBAuy.js": {
9363
- "type": "text/javascript; charset=utf-8",
9364
- "etag": "\"b4-m1DD7U15z7xesS0rRxJ7HBjiCAI\"",
9365
- "mtime": "2025-10-31T20:54:46.711Z",
9366
- "size": 180,
9367
- "path": "../public/_nuxt/CD9aBAuy.js"
9368
- },
9369
- "/_nuxt/CHOS7x_d.js": {
9370
- "type": "text/javascript; charset=utf-8",
9371
- "etag": "\"15b-PF95pnkxEv5bi5Bp6mQPY0AvA8g\"",
9372
- "mtime": "2025-10-31T20:54:46.711Z",
9373
- "size": 347,
9374
- "path": "../public/_nuxt/CHOS7x_d.js"
9375
- },
9376
- "/_nuxt/CXhUbdF6.js": {
9377
- "type": "text/javascript; charset=utf-8",
9378
- "etag": "\"dc-qGBX8Vdkn/LqCv2XYPk3o41QNjw\"",
9379
- "mtime": "2025-10-31T20:54:46.711Z",
9380
- "size": 220,
9381
- "path": "../public/_nuxt/CXhUbdF6.js"
9382
- },
9383
- "/_nuxt/CZWScI5k.js": {
9384
- "type": "text/javascript; charset=utf-8",
9385
- "etag": "\"b3-ASJiwfQlLMSt8CeSNXk8LdHyVFs\"",
9386
- "mtime": "2025-10-31T20:54:46.711Z",
9387
- "size": 179,
9388
- "path": "../public/_nuxt/CZWScI5k.js"
9389
- },
9390
- "/_nuxt/DdpTKqR-.js": {
9391
- "type": "text/javascript; charset=utf-8",
9392
- "etag": "\"d6-p0QSFlYcnPrcHfoDK4B+P/qs2E8\"",
9393
- "mtime": "2025-10-31T20:54:46.711Z",
9394
- "size": 214,
9395
- "path": "../public/_nuxt/DdpTKqR-.js"
9396
- },
9397
- "/_nuxt/Df_NcBcC.js": {
9398
- "type": "text/javascript; charset=utf-8",
9399
- "etag": "\"da-n3dvy8RkMt1TSpiA08rdDBrDDR4\"",
9400
- "mtime": "2025-10-31T20:54:46.711Z",
9401
- "size": 218,
9402
- "path": "../public/_nuxt/Df_NcBcC.js"
9403
- },
9404
- "/_nuxt/DHd34syF.js": {
9405
- "type": "text/javascript; charset=utf-8",
9406
- "etag": "\"1eb-q+xbe0IaRZzppoYbmQTSA8x7MHo\"",
9407
- "mtime": "2025-10-31T20:54:46.711Z",
9408
- "size": 491,
9409
- "path": "../public/_nuxt/DHd34syF.js"
9410
- },
9411
- "/_nuxt/DhqOMFXQ.js": {
9412
- "type": "text/javascript; charset=utf-8",
9413
- "etag": "\"1f1-Sq6VmA3GJDZXclFbkiy6UOAwwlU\"",
9414
- "mtime": "2025-10-31T20:54:46.711Z",
9415
- "size": 497,
9416
- "path": "../public/_nuxt/DhqOMFXQ.js"
9417
- },
9418
- "/_nuxt/DMbgtwAJ.js": {
9419
- "type": "text/javascript; charset=utf-8",
9420
- "etag": "\"25b-x5xCu7cyjdj2l+K1grbMKNMSaVI\"",
9421
- "mtime": "2025-10-31T20:54:46.711Z",
9422
- "size": 603,
9423
- "path": "../public/_nuxt/DMbgtwAJ.js"
9424
- },
9425
- "/_nuxt/Dnp9eFDR.js": {
9426
- "type": "text/javascript; charset=utf-8",
9427
- "etag": "\"eb3-L0WCqgI/eHs1ScGchEVolncSvpE\"",
9428
- "mtime": "2025-10-31T20:54:46.711Z",
9429
- "size": 3763,
9430
- "path": "../public/_nuxt/Dnp9eFDR.js"
9431
- },
9432
- "/_nuxt/DnqMs_6O.js": {
9433
- "type": "text/javascript; charset=utf-8",
9434
- "etag": "\"d6-Zt+738o9WI1KTxzwoa7Ivn0MaFU\"",
9435
- "mtime": "2025-10-31T20:54:46.711Z",
9436
- "size": 214,
9437
- "path": "../public/_nuxt/DnqMs_6O.js"
9438
- },
9439
- "/_nuxt/Dq7g_IfY.js": {
9440
- "type": "text/javascript; charset=utf-8",
9441
- "etag": "\"1f1-KHt1bfWZj6iJSOaBIvqfWPGe118\"",
9442
- "mtime": "2025-10-31T20:54:46.711Z",
9443
- "size": 497,
9444
- "path": "../public/_nuxt/Dq7g_IfY.js"
9445
- },
9446
- "/_nuxt/DR8jhnFO.js": {
9447
- "type": "text/javascript; charset=utf-8",
9448
- "etag": "\"d6-gBpSChIj+12mz1Co2mgsChIe4c8\"",
9449
- "mtime": "2025-10-31T20:54:46.712Z",
9450
- "size": 214,
9451
- "path": "../public/_nuxt/DR8jhnFO.js"
9452
- },
9453
- "/_nuxt/DsAJWnuW.js": {
9454
- "type": "text/javascript; charset=utf-8",
9455
- "etag": "\"1f1-ECYJ/eVciP7JLJi9bXfZuHSUg20\"",
9456
- "mtime": "2025-10-31T20:54:46.711Z",
9457
- "size": 497,
9458
- "path": "../public/_nuxt/DsAJWnuW.js"
9459
- },
9460
- "/_nuxt/DTT0LBLY.js": {
9461
- "type": "text/javascript; charset=utf-8",
9462
- "etag": "\"d6-lEAJU90yAPscAq0tUFAmKD0ujNI\"",
9463
- "mtime": "2025-10-31T20:54:46.711Z",
9464
- "size": 214,
9465
- "path": "../public/_nuxt/DTT0LBLY.js"
9466
- },
9467
- "/_nuxt/DvVg7vM_.js": {
9468
- "type": "text/javascript; charset=utf-8",
9469
- "etag": "\"312-Jpe65EAfI1IG/XEoyoOlx42fJJQ\"",
9470
- "mtime": "2025-10-31T20:54:46.712Z",
9471
- "size": 786,
9472
- "path": "../public/_nuxt/DvVg7vM_.js"
9473
- },
9474
- "/_nuxt/DwKqLVGx.js": {
9475
- "type": "text/javascript; charset=utf-8",
9476
- "etag": "\"d4-llCJK6lcMhIX5r5QpNTuyG9sr8s\"",
9477
- "mtime": "2025-10-31T20:54:46.711Z",
9478
- "size": 212,
9479
- "path": "../public/_nuxt/DwKqLVGx.js"
9480
- },
9481
- "/_nuxt/DWV_uL6G.js": {
9482
- "type": "text/javascript; charset=utf-8",
9483
- "etag": "\"b584d-FQUIpAeAVEYNzj3b7WQaumxFAFY\"",
9484
- "mtime": "2025-10-31T20:54:46.711Z",
9485
- "size": 743501,
9486
- "path": "../public/_nuxt/DWV_uL6G.js"
9487
- },
9488
- "/_nuxt/DxzqnQKF.js": {
9489
- "type": "text/javascript; charset=utf-8",
9490
- "etag": "\"1f1-0RZUFW9H0RvSVQBGSCzdzDiOpp8\"",
9491
- "mtime": "2025-10-31T20:54:46.711Z",
9492
- "size": 497,
9493
- "path": "../public/_nuxt/DxzqnQKF.js"
9494
- },
9495
- "/_nuxt/entry.CtpkPzPO.css": {
9496
- "type": "text/css; charset=utf-8",
9497
- "etag": "\"27ab1-vZe753DnThTkn+/goHLwhv7bh20\"",
9498
- "mtime": "2025-10-31T20:54:46.710Z",
9499
- "size": 162481,
9500
- "path": "../public/_nuxt/entry.CtpkPzPO.css"
9501
- },
9502
- "/_nuxt/error-404.DzDu4Ean.css": {
9503
- "type": "text/css; charset=utf-8",
9504
- "etag": "\"97e-xoe60AcmzYXEYglr+/CV0P0q8Zk\"",
9505
- "mtime": "2025-10-31T20:54:46.710Z",
9506
- "size": 2430,
9507
- "path": "../public/_nuxt/error-404.DzDu4Ean.css"
9508
- },
9509
- "/_nuxt/error-500.BdNqqJx7.css": {
9510
- "type": "text/css; charset=utf-8",
9511
- "etag": "\"773-XPhNxTapvBaCl8dzf2Gg9ha0S4U\"",
9512
- "mtime": "2025-10-31T20:54:46.710Z",
9513
- "size": 1907,
9514
- "path": "../public/_nuxt/error-500.BdNqqJx7.css"
9515
- },
9516
- "/_nuxt/ProsePre.D5orA6B_.css": {
9517
- "type": "text/css; charset=utf-8",
9518
- "etag": "\"1e-jczvRAVUXbzGL6yotozKFbyMO4s\"",
9519
- "mtime": "2025-10-31T20:54:46.710Z",
9520
- "size": 30,
9521
- "path": "../public/_nuxt/ProsePre.D5orA6B_.css"
9522
- },
9523
- "/_nuxt/q3i45eMH.js": {
9524
- "type": "text/javascript; charset=utf-8",
9525
- "etag": "\"205-NeaQutW72C8wR6GFpgeHQZ4jrls\"",
9526
- "mtime": "2025-10-31T20:54:46.711Z",
9527
- "size": 517,
9528
- "path": "../public/_nuxt/q3i45eMH.js"
9529
- },
9530
- "/_nuxt/vueform.CkWb7x1C.css": {
9531
- "type": "text/css; charset=utf-8",
9532
- "etag": "\"10f1d-V8qp6R2ozJVep+vno2F3YPmniuk\"",
9533
- "mtime": "2025-10-31T20:54:46.707Z",
9534
- "size": 69405,
9535
- "path": "../public/_nuxt/vueform.CkWb7x1C.css"
9536
- },
9537
- "/_nuxt/Y0f1tU-r.js": {
9538
- "type": "text/javascript; charset=utf-8",
9539
- "etag": "\"dc-n2Q4beD5TH8+fonqpiPI3jv0/5c\"",
9540
- "mtime": "2025-10-31T20:54:46.711Z",
9541
- "size": 220,
9542
- "path": "../public/_nuxt/Y0f1tU-r.js"
9591
+ "/_nuxt/builds/latest.json": {
9592
+ "type": "application/json",
9593
+ "etag": "\"47-iGPL4zhUSJ4AP2kX3X6A+Es0sOE\"",
9594
+ "mtime": "2026-01-03T18:16:03.425Z",
9595
+ "size": 71,
9596
+ "path": "../public/_nuxt/builds/latest.json"
9543
9597
  },
9544
9598
  "/__nuxt_content/content/sql_dump.txt": {
9545
9599
  "type": "text/plain; charset=utf-8",
9546
9600
  "etag": "\"234-E5QEnrPJF/4czL1SX2CyTTLlI30\"",
9547
- "mtime": "2025-10-31T20:54:49.377Z",
9601
+ "mtime": "2026-01-03T18:16:03.180Z",
9548
9602
  "size": 564,
9549
9603
  "path": "../public/__nuxt_content/content/sql_dump.txt"
9550
9604
  },
9551
- "/_nuxt/builds/latest.json": {
9605
+ "/_nuxt/builds/meta/78080714-55fa-441d-9998-a6fb0c7ee057.json": {
9552
9606
  "type": "application/json",
9553
- "etag": "\"47-66502sLUBZ5SHfJG94hYTxrmzNY\"",
9554
- "mtime": "2025-10-31T20:54:49.423Z",
9555
- "size": 71,
9556
- "path": "../public/_nuxt/builds/latest.json"
9557
- },
9558
- "/_nuxt/builds/meta/7bab2b8f-93ee-4f44-a604-8cd2b41eac60.json": {
9559
- "type": "application/json",
9560
- "etag": "\"c4-fmxVZznAbZpqfOZv4OMYeOpczvE\"",
9561
- "mtime": "2025-10-31T20:54:49.423Z",
9607
+ "etag": "\"c4-okPBA91RTtlWjutZ4BjQ7XGlyQc\"",
9608
+ "mtime": "2026-01-03T18:16:03.427Z",
9562
9609
  "size": 196,
9563
- "path": "../public/_nuxt/builds/meta/7bab2b8f-93ee-4f44-a604-8cd2b41eac60.json"
9610
+ "path": "../public/_nuxt/builds/meta/78080714-55fa-441d-9998-a6fb0c7ee057.json"
9564
9611
  }
9565
9612
  };
9566
9613
 
@@ -9573,31 +9620,31 @@ function normalizeWindowsPath$1(input = "") {
9573
9620
  }
9574
9621
  const _IS_ABSOLUTE_RE$1 = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/;
9575
9622
  const _DRIVE_LETTER_RE = /^[A-Za-z]:$/;
9576
- function cwd() {
9623
+ function cwd$1() {
9577
9624
  if (typeof process !== "undefined" && typeof process.cwd === "function") {
9578
9625
  return process.cwd().replace(/\\/g, "/");
9579
9626
  }
9580
9627
  return "/";
9581
9628
  }
9582
- const resolve$1 = function(...arguments_) {
9629
+ const resolve$2 = function(...arguments_) {
9583
9630
  arguments_ = arguments_.map((argument) => normalizeWindowsPath$1(argument));
9584
9631
  let resolvedPath = "";
9585
9632
  let resolvedAbsolute = false;
9586
9633
  for (let index = arguments_.length - 1; index >= -1 && !resolvedAbsolute; index--) {
9587
- const path = index >= 0 ? arguments_[index] : cwd();
9634
+ const path = index >= 0 ? arguments_[index] : cwd$1();
9588
9635
  if (!path || path.length === 0) {
9589
9636
  continue;
9590
9637
  }
9591
9638
  resolvedPath = `${path}/${resolvedPath}`;
9592
9639
  resolvedAbsolute = isAbsolute$1(path);
9593
9640
  }
9594
- resolvedPath = normalizeString(resolvedPath, !resolvedAbsolute);
9641
+ resolvedPath = normalizeString$1(resolvedPath, !resolvedAbsolute);
9595
9642
  if (resolvedAbsolute && !isAbsolute$1(resolvedPath)) {
9596
9643
  return `/${resolvedPath}`;
9597
9644
  }
9598
9645
  return resolvedPath.length > 0 ? resolvedPath : ".";
9599
9646
  };
9600
- function normalizeString(path, allowAboveRoot) {
9647
+ function normalizeString$1(path, allowAboveRoot) {
9601
9648
  let res = "";
9602
9649
  let lastSegmentLength = 0;
9603
9650
  let lastSlash = -1;
@@ -9669,7 +9716,7 @@ const dirname = function(p) {
9669
9716
 
9670
9717
  function readAsset (id) {
9671
9718
  const serverDir = dirname(fileURLToPath(globalThis._importMeta_.url));
9672
- return promises.readFile(resolve$1(serverDir, assets[id].path))
9719
+ return promises.readFile(resolve$2(serverDir, assets[id].path))
9673
9720
  }
9674
9721
 
9675
9722
  const publicAssetBases = {"/_nuxt/builds/meta/":{"maxAge":31536000},"/_nuxt/builds/":{"maxAge":1},"/_fonts/":{"maxAge":31536000},"/_scripts/":{"maxAge":31536000},"/_nuxt/":{"maxAge":31536000}};
@@ -9690,7 +9737,7 @@ function getAsset (id) {
9690
9737
 
9691
9738
  const METHODS = /* @__PURE__ */ new Set(["HEAD", "GET"]);
9692
9739
  const EncodingMap = { gzip: ".gz", br: ".br" };
9693
- const _R9eK6g = eventHandler((event) => {
9740
+ const _aBJLZz = eventHandler((event) => {
9694
9741
  if (event.method && !METHODS.has(event.method)) {
9695
9742
  return;
9696
9743
  }
@@ -9849,7 +9896,7 @@ const defaultSecurityConfig = (serverlUrl, strict) => {
9849
9896
 
9850
9897
  const FILE_UPLOAD_HEADER = "multipart/form-data";
9851
9898
  const defaultSizeLimiter = defaultSecurityConfig("").requestSizeLimiter;
9852
- const _0WQsJo = defineEventHandler((event) => {
9899
+ const _P5KhqA = defineEventHandler((event) => {
9853
9900
  const rules = resolveSecurityRules(event);
9854
9901
  if (rules.enabled && rules.requestSizeLimiter) {
9855
9902
  const requestSizeLimiter = defu(
@@ -9875,7 +9922,7 @@ const _0WQsJo = defineEventHandler((event) => {
9875
9922
  }
9876
9923
  });
9877
9924
 
9878
- const _fTCRwx = defineEventHandler((event) => {
9925
+ const _uMfJTP = defineEventHandler((event) => {
9879
9926
  const rules = resolveSecurityRules(event);
9880
9927
  if (rules.enabled && rules.corsHandler) {
9881
9928
  const { corsHandler } = rules;
@@ -9900,7 +9947,7 @@ const _fTCRwx = defineEventHandler((event) => {
9900
9947
  }
9901
9948
  });
9902
9949
 
9903
- const _XNXCfD = defineEventHandler((event) => {
9950
+ const _TjfwyU = defineEventHandler((event) => {
9904
9951
  const rules = resolveSecurityRules(event);
9905
9952
  if (rules.enabled && rules.allowedMethodsRestricter) {
9906
9953
  const { allowedMethodsRestricter } = rules;
@@ -9920,7 +9967,7 @@ const _XNXCfD = defineEventHandler((event) => {
9920
9967
 
9921
9968
  const storage$1 = useStorage("#rate-limiter-storage");
9922
9969
  const defaultRateLimiter = defaultSecurityConfig("").rateLimiter;
9923
- const _MMBZXf = defineEventHandler(async (event) => {
9970
+ const _3ipjNg = defineEventHandler(async (event) => {
9924
9971
  const rules = resolveSecurityRules(event);
9925
9972
  const route = resolveSecurityRoute(event);
9926
9973
  if (rules.enabled && rules.rateLimiter) {
@@ -9983,7 +10030,7 @@ function getIP(event, customIpHeader) {
9983
10030
  return ip;
9984
10031
  }
9985
10032
 
9986
- const _6UgyB1 = defineEventHandler(async (event) => {
10033
+ const _p1m2Kd = defineEventHandler(async (event) => {
9987
10034
  const rules = resolveSecurityRules(event);
9988
10035
  if (rules.enabled && rules.xssValidator) {
9989
10036
  const filterOpt = {
@@ -10033,9 +10080,109 @@ function normalizeWindowsPath(input = "") {
10033
10080
  return input.replace(/\\/g, "/").replace(_DRIVE_LETTER_START_RE, (r) => r.toUpperCase());
10034
10081
  }
10035
10082
  const _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/;
10083
+ const _ROOT_FOLDER_RE = /^\/([A-Za-z]:)?$/;
10084
+ function cwd() {
10085
+ if (typeof process !== "undefined" && typeof process.cwd === "function") {
10086
+ return process.cwd().replace(/\\/g, "/");
10087
+ }
10088
+ return "/";
10089
+ }
10090
+ const resolve$1 = function(...arguments_) {
10091
+ arguments_ = arguments_.map((argument) => normalizeWindowsPath(argument));
10092
+ let resolvedPath = "";
10093
+ let resolvedAbsolute = false;
10094
+ for (let index = arguments_.length - 1; index >= -1 && !resolvedAbsolute; index--) {
10095
+ const path = index >= 0 ? arguments_[index] : cwd();
10096
+ if (!path || path.length === 0) {
10097
+ continue;
10098
+ }
10099
+ resolvedPath = `${path}/${resolvedPath}`;
10100
+ resolvedAbsolute = isAbsolute(path);
10101
+ }
10102
+ resolvedPath = normalizeString(resolvedPath, !resolvedAbsolute);
10103
+ if (resolvedAbsolute && !isAbsolute(resolvedPath)) {
10104
+ return `/${resolvedPath}`;
10105
+ }
10106
+ return resolvedPath.length > 0 ? resolvedPath : ".";
10107
+ };
10108
+ function normalizeString(path, allowAboveRoot) {
10109
+ let res = "";
10110
+ let lastSegmentLength = 0;
10111
+ let lastSlash = -1;
10112
+ let dots = 0;
10113
+ let char = null;
10114
+ for (let index = 0; index <= path.length; ++index) {
10115
+ if (index < path.length) {
10116
+ char = path[index];
10117
+ } else if (char === "/") {
10118
+ break;
10119
+ } else {
10120
+ char = "/";
10121
+ }
10122
+ if (char === "/") {
10123
+ if (lastSlash === index - 1 || dots === 1) ; else if (dots === 2) {
10124
+ if (res.length < 2 || lastSegmentLength !== 2 || res[res.length - 1] !== "." || res[res.length - 2] !== ".") {
10125
+ if (res.length > 2) {
10126
+ const lastSlashIndex = res.lastIndexOf("/");
10127
+ if (lastSlashIndex === -1) {
10128
+ res = "";
10129
+ lastSegmentLength = 0;
10130
+ } else {
10131
+ res = res.slice(0, lastSlashIndex);
10132
+ lastSegmentLength = res.length - 1 - res.lastIndexOf("/");
10133
+ }
10134
+ lastSlash = index;
10135
+ dots = 0;
10136
+ continue;
10137
+ } else if (res.length > 0) {
10138
+ res = "";
10139
+ lastSegmentLength = 0;
10140
+ lastSlash = index;
10141
+ dots = 0;
10142
+ continue;
10143
+ }
10144
+ }
10145
+ if (allowAboveRoot) {
10146
+ res += res.length > 0 ? "/.." : "..";
10147
+ lastSegmentLength = 2;
10148
+ }
10149
+ } else {
10150
+ if (res.length > 0) {
10151
+ res += `/${path.slice(lastSlash + 1, index)}`;
10152
+ } else {
10153
+ res = path.slice(lastSlash + 1, index);
10154
+ }
10155
+ lastSegmentLength = index - lastSlash - 1;
10156
+ }
10157
+ lastSlash = index;
10158
+ dots = 0;
10159
+ } else if (char === "." && dots !== -1) {
10160
+ ++dots;
10161
+ } else {
10162
+ dots = -1;
10163
+ }
10164
+ }
10165
+ return res;
10166
+ }
10036
10167
  const isAbsolute = function(p) {
10037
10168
  return _IS_ABSOLUTE_RE.test(p);
10038
10169
  };
10170
+ const relative = function(from, to) {
10171
+ const _from = resolve$1(from).replace(_ROOT_FOLDER_RE, "$1").split("/");
10172
+ const _to = resolve$1(to).replace(_ROOT_FOLDER_RE, "$1").split("/");
10173
+ if (_to[0][1] === ":" && _from[0][1] === ":" && _from[0] !== _to[0]) {
10174
+ return _to.join("/");
10175
+ }
10176
+ const _fromCopy = [..._from];
10177
+ for (const segment of _fromCopy) {
10178
+ if (_to[0] !== segment) {
10179
+ break;
10180
+ }
10181
+ _from.shift();
10182
+ _to.shift();
10183
+ }
10184
+ return [..._from.map(() => ".."), ..._to].join("/");
10185
+ };
10039
10186
  const basename = function(p, extension) {
10040
10187
  const segments = normalizeWindowsPath(p).split("/");
10041
10188
  let lastSegment = "";
@@ -10053,7 +10200,7 @@ const collections = {
10053
10200
  };
10054
10201
 
10055
10202
  const DEFAULT_ENDPOINT = "https://api.iconify.design";
10056
- const _HWrzav = defineCachedEventHandler(async (event) => {
10203
+ const _s81vkT = defineCachedEventHandler(async (event) => {
10057
10204
  const url = getRequestURL(event);
10058
10205
  if (!url)
10059
10206
  return createError$1({ status: 400, message: "Invalid icon request" });
@@ -10103,102 +10250,24 @@ const _HWrzav = defineCachedEventHandler(async (event) => {
10103
10250
  // 1 week
10104
10251
  });
10105
10252
 
10106
- const NEON_RAW_WARNING = "nuxt-neon: using `raw()` SQL handler is potentially unsafe! Consider using other methods where inputs are sanitized. Disable this warning using `neon.neonRawWarning: false` or `NUXT_PUBLIC_NEON_RAW_WARNING: false`, if you are confident with your code.";
10107
- function displayRawWarning() {
10108
- return useRuntimeConfig().public.neonRawWarning;
10109
- }
10253
+ const _zMSWhj = defineEventHandler(async r=>{try{const e=useRuntimeConfig().public.neonDebugRuntime===!0;if(e&&console.debug("Neon `raw` API endpoint invoked"),!(useRuntimeConfig().public.neonExposeEndpoints===!0))return getForbiddenError("/api/_neon/raw");const n=await readBody(r);e&&console.debug("Request body:",n);const{raw:t}=useNeonServer();return await t(n.query)}catch(e){return await parseNeonError("/api/_neon/raw",e)}});
10110
10254
 
10111
- const _TMe9Qo = defineEventHandler(async (event) => {
10112
- try {
10113
- const body = await readBody(event);
10114
- const neon = getNeonClient();
10115
- if (displayRawWarning() && body.query !== "SELECT 1=1 as status") {
10116
- console.warn(NEON_RAW_WARNING);
10117
- }
10118
- debugSQLIfAllowed(body.query);
10119
- const results = await neon.query(body.query, void 0, { arrayMode: false, fullResults: false });
10120
- return results;
10121
- } catch (err) {
10122
- return await parseNeonClientError("/api/_neon/raw", err);
10123
- }
10124
- });
10255
+ const _AbTWGO = defineEventHandler(async t=>{try{const e=useRuntimeConfig().public.neonDebugRuntime===!0;if(e&&console.debug("Neon `count` API endpoint invoked"),!(useRuntimeConfig().public.neonExposeEndpoints===!0))return getForbiddenError("/api/_neon/count");const n=await readBody(t);e&&console.debug("Request body:",n);const{count:r}=useNeonServer();return await r({...n})}catch(e){return await parseNeonError("/api/_neon/count",e)}});
10125
10256
 
10126
- const _8GcqiV = defineEventHandler(async (event) => {
10127
- try {
10128
- const body = await readBody(event);
10129
- const neon = getNeonClient();
10130
- const countData = await count(neon, { ...body });
10131
- return [countData?.at(0)?.count || -1];
10132
- } catch (err) {
10133
- return await parseNeonClientError("/api/_neon/count", err);
10134
- }
10135
- });
10257
+ const __n_ZRt = defineEventHandler(async o=>{try{const e=useRuntimeConfig().public.neonDebugRuntime===!0;if(e&&console.debug("Neon `select` API endpoint invoked"),!(useRuntimeConfig().public.neonExposeEndpoints===!0))return getForbiddenError("/api/_neon/select");const n=await readBody(o);e&&console.debug("Request body:",n);const{select:r}=useNeonServer();return await r({...n})}catch(e){return await parseNeonError("/api/_neon/select",e)}});
10136
10258
 
10137
- const _bdtZK_ = defineEventHandler(async (event) => {
10138
- try {
10139
- const body = await readBody(event);
10140
- const neon = getNeonClient();
10141
- const results = await select(neon, { ...body });
10142
- return results;
10143
- } catch (err) {
10144
- return await parseNeonClientError("/api/_neon/select", err);
10145
- }
10146
- });
10259
+ const _ZQvw52 = defineEventHandler(async t=>{try{const e=useRuntimeConfig().public.neonDebugRuntime===!0;if(e&&console.debug("Neon `insert` API endpoint invoked"),!(useRuntimeConfig().public.neonExposeEndpoints===!0))return getForbiddenError("/api/_neon/insert");const n=await readBody(t);e&&console.debug("Request body:",n);const{insert:r}=useNeonServer();return await r({...n})}catch(e){return await parseNeonError("/api/_neon/insert",e)}});
10147
10260
 
10148
- const _9heHrE = defineEventHandler(async (event) => {
10149
- try {
10150
- const body = await readBody(event);
10151
- const neon = getNeonClient();
10152
- const ret = await insert(neon, { ...body });
10153
- if (ret.length === 0) {
10154
- return ["OK"];
10155
- } else {
10156
- console.debug(ret);
10157
- return await getGenericError("/api/_neon/insert", "INSERT operation failed");
10158
- }
10159
- } catch (err) {
10160
- return await parseNeonClientError("/api/_neon/insert", err);
10161
- }
10162
- });
10261
+ const _ptXdNj = defineEventHandler(async t=>{try{const e=useRuntimeConfig().public.neonDebugRuntime===!0;if(e&&console.debug("Neon `update` API endpoint invoked"),!(useRuntimeConfig().public.neonExposeEndpoints===!0))return getForbiddenError("/api/_neon/update");const n=await readBody(t);e&&console.debug("Request body:",n);const{update:r}=useNeonServer();return await r({...n})}catch(e){return await parseNeonError("/api/_neon/update",e)}});
10163
10262
 
10164
- const _RbxPM9 = defineEventHandler(async (event) => {
10165
- try {
10166
- const body = await readBody(event);
10167
- const neon = getNeonClient();
10168
- const ret = await update(neon, { ...body });
10169
- if (ret.length === 0) {
10170
- return ["OK"];
10171
- } else {
10172
- console.debug(ret);
10173
- return await getGenericError("/api/_neon/update", "UPDATE operation failed");
10174
- }
10175
- } catch (err) {
10176
- return await parseNeonClientError("/api/_neon/update", err);
10177
- }
10178
- });
10263
+ const _gpW1sw = defineEventHandler(async t=>{try{const e=useRuntimeConfig().public.neonDebugRuntime===!0;if(e&&console.debug("Neon `delete` API endpoint invoked"),!(useRuntimeConfig().public.neonExposeEndpoints===!0))return getForbiddenError("/api/_neon/delete");const n=await readBody(t);e&&console.debug("Request body:",n);const{del:r}=useNeonServer();return await r({...n})}catch(e){return await parseNeonError("/api/_neon/delete",e)}});
10179
10264
 
10180
- const _e8NFRG = defineEventHandler(async (event) => {
10181
- try {
10182
- const body = await readBody(event);
10183
- const neon = getNeonClient();
10184
- const ret = await del(neon, { ...body });
10185
- if (ret.length === 0) {
10186
- return ["OK"];
10187
- } else {
10188
- console.debug(ret);
10189
- return await getGenericError("/api/_neon/delete", "DELETE operation failed");
10190
- }
10191
- } catch (err) {
10192
- return await parseNeonClientError("/api/_neon/delete", err);
10193
- }
10194
- });
10195
-
10196
- const _VVR0b3 = eventHandler(async (event) => {
10265
+ const _2_fp1a = eventHandler(async (event) => {
10197
10266
  await clearUserSession(event);
10198
10267
  return { loggedOut: true };
10199
10268
  });
10200
10269
 
10201
- const _DkeHIc = eventHandler(async (event) => {
10270
+ const _8YFWwD = eventHandler(async (event) => {
10202
10271
  const session = await getUserSession(event);
10203
10272
  if (Object.keys(session).length > 0) {
10204
10273
  await sessionHooks.callHookParallel("fetch", session, event);
@@ -10207,7 +10276,7 @@ const _DkeHIc = eventHandler(async (event) => {
10207
10276
  return data;
10208
10277
  });
10209
10278
 
10210
- const _HNUtXX = eventHandler(async (e) => {
10279
+ const _GDEiau = eventHandler(async (e) => {
10211
10280
  if (e.context._initedSiteConfig)
10212
10281
  return;
10213
10282
  const runtimeConfig = useRuntimeConfig(e);
@@ -10258,7 +10327,7 @@ const _HNUtXX = eventHandler(async (e) => {
10258
10327
  e.context._initedSiteConfig = true;
10259
10328
  });
10260
10329
 
10261
- const _WLd7Ho = defineEventHandler(async (e) => {
10330
+ const _Q9QB_M = defineEventHandler(async (e) => {
10262
10331
  const nitroApp = useNitroApp();
10263
10332
  const { indexable} = getSiteRobotConfig(e);
10264
10333
  const { credits, isNuxtContentV2, cacheControl } = useRuntimeConfigNuxtRobots(e);
@@ -10311,7 +10380,7 @@ const _WLd7Ho = defineEventHandler(async (e) => {
10311
10380
  return hookCtx.robotsTxt;
10312
10381
  });
10313
10382
 
10314
- const _mUSd9H = defineEventHandler(async (e) => {
10383
+ const _OXTxFn = defineEventHandler(async (e) => {
10315
10384
  if (e.path === "/robots.txt" || e.path.startsWith("/__") || e.path.startsWith("/api") || e.path.startsWith("/_nuxt"))
10316
10385
  return;
10317
10386
  const nuxtRobotsConfig = useRuntimeConfigNuxtRobots(e);
@@ -10325,7 +10394,7 @@ const _mUSd9H = defineEventHandler(async (e) => {
10325
10394
  }
10326
10395
  });
10327
10396
 
10328
- const _kdhSXr = defineEventHandler(async (e) => {
10397
+ const _W107Ad = defineEventHandler(async (e) => {
10329
10398
  const collections = [];
10330
10399
  for (const collection in contentManifest) {
10331
10400
  if (contentManifest[collection].fields.sitemap) {
@@ -10335,16 +10404,17 @@ const _kdhSXr = defineEventHandler(async (e) => {
10335
10404
  const contentList = [];
10336
10405
  for (const collection of collections) {
10337
10406
  contentList.push(
10407
+ // @ts-expect-error dynamic collection name
10338
10408
  queryCollection(e, collection).select("path", "sitemap").where("path", "IS NOT NULL").where("sitemap", "IS NOT NULL").all()
10339
10409
  );
10340
10410
  }
10341
10411
  const results = await Promise.all(contentList);
10342
- return results.flatMap((c) => {
10343
- return c.filter((c2) => c2.sitemap !== false && c2.path).flatMap((c2) => ({
10344
- loc: c2.path,
10345
- ...c2.sitemap || {}
10346
- }));
10347
- }).filter(Boolean);
10412
+ return results.flatMap(
10413
+ (entries) => entries.filter((c) => c.sitemap !== false && c.path).map((c) => ({
10414
+ loc: c.path,
10415
+ ...typeof c.sitemap === "object" ? c.sitemap : {}
10416
+ }))
10417
+ ).filter(Boolean);
10348
10418
  });
10349
10419
 
10350
10420
  const logger = createConsola({
@@ -10371,11 +10441,12 @@ function mergeOnKey(arr, key) {
10371
10441
  result[resultLength++] = item;
10372
10442
  }
10373
10443
  }
10374
- return result.slice(0, resultLength);
10444
+ result.length = resultLength;
10445
+ return result;
10375
10446
  }
10376
10447
  function splitForLocales(path, locales) {
10377
10448
  const prefix = withLeadingSlash(path).split("/")[1];
10378
- if (locales.includes(prefix))
10449
+ if (prefix && locales.includes(prefix))
10379
10450
  return [prefix, path.replace(`/${prefix}`, "")];
10380
10451
  return [null, path];
10381
10452
  }
@@ -10407,24 +10478,33 @@ function createFilter(options = {}) {
10407
10478
  const exclude = options.exclude || [];
10408
10479
  if (include.length === 0 && exclude.length === 0)
10409
10480
  return () => true;
10481
+ const excludeRegex = exclude.filter((r) => r instanceof RegExp);
10482
+ const includeRegex = include.filter((r) => r instanceof RegExp);
10483
+ const excludeStrings = exclude.filter((r) => typeof r === "string");
10484
+ const includeStrings = include.filter((r) => typeof r === "string");
10485
+ const excludeMatcher = excludeStrings.length > 0 ? toRouteMatcher(createRouter$1({
10486
+ routes: Object.fromEntries(excludeStrings.map((r) => [r, true])),
10487
+ strictTrailingSlash: false
10488
+ })) : null;
10489
+ const includeMatcher = includeStrings.length > 0 ? toRouteMatcher(createRouter$1({
10490
+ routes: Object.fromEntries(includeStrings.map((r) => [r, true])),
10491
+ strictTrailingSlash: false
10492
+ })) : null;
10493
+ const excludeExact = new Set(excludeStrings);
10494
+ const includeExact = new Set(includeStrings);
10410
10495
  return function(path) {
10411
- for (const v of [{ rules: exclude, result: false }, { rules: include, result: true }]) {
10412
- const regexRules = v.rules.filter((r) => r instanceof RegExp);
10413
- if (regexRules.some((r) => r.test(path)))
10414
- return v.result;
10415
- const stringRules = v.rules.filter((r) => typeof r === "string");
10416
- if (stringRules.length > 0) {
10417
- const routes = {};
10418
- for (const r of stringRules) {
10419
- if (r === path)
10420
- return v.result;
10421
- routes[r] = true;
10422
- }
10423
- const routeRulesMatcher = toRouteMatcher(createRouter$1({ routes, strictTrailingSlash: false }));
10424
- if (routeRulesMatcher.matchAll(path).length > 0)
10425
- return Boolean(v.result);
10426
- }
10427
- }
10496
+ if (excludeRegex.some((r) => r.test(path)))
10497
+ return false;
10498
+ if (excludeExact.has(path))
10499
+ return false;
10500
+ if (excludeMatcher && excludeMatcher.matchAll(path).length > 0)
10501
+ return false;
10502
+ if (includeRegex.some((r) => r.test(path)))
10503
+ return true;
10504
+ if (includeExact.has(path))
10505
+ return true;
10506
+ if (includeMatcher && includeMatcher.matchAll(path).length > 0)
10507
+ return true;
10428
10508
  return include.length === 0;
10429
10509
  };
10430
10510
  }
@@ -10443,7 +10523,7 @@ function useSitemapRuntimeConfig(e) {
10443
10523
  return Object.freeze(clone);
10444
10524
  }
10445
10525
 
10446
- const _KL_OxC = defineEventHandler(async (e) => {
10526
+ const _aOy17u = defineEventHandler(async (e) => {
10447
10527
  const fixPath = createSitePathResolver(e, { absolute: false, withBase: true });
10448
10528
  const { sitemapName: fallbackSitemapName, cacheMaxAgeSeconds, version, xslColumns, xslTips } = useSitemapRuntimeConfig();
10449
10529
  setHeader(e, "Content-Type", "application/xslt+xml");
@@ -10713,42 +10793,47 @@ function createNitroRouteRuleMatcher() {
10713
10793
  }
10714
10794
 
10715
10795
  function resolve(s, resolvers) {
10716
- if (typeof s === "undefined" || !resolvers)
10717
- return s;
10718
- s = typeof s === "string" ? s : s.toString();
10719
- if (hasProtocol(s, { acceptRelative: true, strict: false }))
10720
- return resolvers.fixSlashes(s);
10721
- return resolvers.canonicalUrlResolver(s);
10796
+ if (typeof s === "undefined")
10797
+ return void 0;
10798
+ const str = typeof s === "string" ? s : s.toString();
10799
+ if (!resolvers)
10800
+ return str;
10801
+ if (hasProtocol(str, { acceptRelative: true, strict: false }))
10802
+ return resolvers.fixSlashes(str);
10803
+ return resolvers.canonicalUrlResolver(str);
10722
10804
  }
10723
10805
  function removeTrailingSlash(s) {
10724
10806
  return s.replace(/\/(\?|#|$)/, "$1");
10725
10807
  }
10726
10808
  function preNormalizeEntry(_e, resolvers) {
10727
- const e = typeof _e === "string" ? { loc: _e } : { ..._e };
10728
- if (e.url && !e.loc) {
10729
- e.loc = e.url;
10730
- delete e.url;
10809
+ const input = typeof _e === "string" ? { loc: _e } : { ..._e };
10810
+ if (input.url && !input.loc) {
10811
+ input.loc = input.url;
10731
10812
  }
10732
- if (typeof e.loc !== "string") {
10733
- e.loc = "";
10813
+ delete input.url;
10814
+ if (typeof input.loc !== "string") {
10815
+ input.loc = "";
10734
10816
  }
10817
+ const skipEncoding = input._encoded === true;
10818
+ const e = input;
10735
10819
  e.loc = removeTrailingSlash(e.loc);
10736
10820
  e._abs = hasProtocol(e.loc, { acceptRelative: false, strict: false });
10737
10821
  try {
10738
10822
  e._path = e._abs ? parseURL(e.loc) : parsePath(e.loc);
10739
- } catch (e2) {
10740
- e2._path = null;
10823
+ } catch {
10824
+ e._path = null;
10741
10825
  }
10742
10826
  if (e._path) {
10743
- const query = parseQuery(e._path.search);
10744
- const qs = stringifyQuery(query);
10745
- e._relativeLoc = `${encodePath(e._path?.pathname)}${qs.length ? `?${qs}` : ""}`;
10827
+ const search = e._path.search;
10828
+ const qs = search && search.length > 1 ? stringifyQuery(parseQuery(search)) : "";
10829
+ const pathname = skipEncoding ? e._path.pathname : encodePath(e._path.pathname);
10830
+ e._relativeLoc = `${pathname}${qs.length ? `?${qs}` : ""}`;
10746
10831
  if (e._path.host) {
10747
10832
  e.loc = stringifyParsedURL(e._path);
10748
10833
  } else {
10749
10834
  e.loc = e._relativeLoc;
10750
10835
  }
10751
- } else if (!isEncoded(e.loc)) {
10836
+ } else if (!skipEncoding && !isEncoded(e.loc)) {
10752
10837
  e.loc = encodeURI(e.loc);
10753
10838
  }
10754
10839
  if (e.loc === "")
@@ -10778,8 +10863,7 @@ function normaliseEntry(_e, defaults, resolvers) {
10778
10863
  e.loc = resolve(e.loc, resolvers);
10779
10864
  if (e.alternatives) {
10780
10865
  const alternatives = e.alternatives.map((a) => ({ ...a }));
10781
- for (let i = 0; i < alternatives.length; i++) {
10782
- const alt = alternatives[i];
10866
+ for (const alt of alternatives) {
10783
10867
  if (typeof alt.href === "string") {
10784
10868
  alt.href = resolve(alt.href, resolvers);
10785
10869
  } else if (typeof alt.href === "object" && alt.href) {
@@ -10790,16 +10874,16 @@ function normaliseEntry(_e, defaults, resolvers) {
10790
10874
  }
10791
10875
  if (e.images) {
10792
10876
  const images = e.images.map((i) => ({ ...i }));
10793
- for (let i = 0; i < images.length; i++) {
10794
- images[i].loc = resolve(images[i].loc, resolvers);
10877
+ for (const img of images) {
10878
+ img.loc = resolve(img.loc, resolvers);
10795
10879
  }
10796
10880
  e.images = mergeOnKey(images, "loc");
10797
10881
  }
10798
10882
  if (e.videos) {
10799
10883
  const videos = e.videos.map((v) => ({ ...v }));
10800
- for (let i = 0; i < videos.length; i++) {
10801
- if (videos[i].content_loc) {
10802
- videos[i].content_loc = resolve(videos[i].content_loc, resolvers);
10884
+ for (const video of videos) {
10885
+ if (video.content_loc) {
10886
+ video.content_loc = resolve(video.content_loc, resolvers);
10803
10887
  }
10804
10888
  }
10805
10889
  e.videos = mergeOnKey(videos, "content_loc");
@@ -10817,8 +10901,9 @@ function isValidW3CDate(d) {
10817
10901
  }
10818
10902
  function normaliseDate(d) {
10819
10903
  if (typeof d === "string") {
10820
- if (d.includes("T")) {
10821
- const t = d.split("T")[1];
10904
+ const tIdx = d.indexOf("T");
10905
+ if (tIdx !== -1) {
10906
+ const t = d.slice(tIdx + 1);
10822
10907
  if (!t.includes("+") && !t.includes("-") && !t.includes("Z")) {
10823
10908
  d += "Z";
10824
10909
  }
@@ -11155,12 +11240,11 @@ function extractUrlFromParsedElement(urlElement, warnings) {
11155
11240
  });
11156
11241
  }
11157
11242
  }
11158
- const filteredUrlObj = Object.fromEntries(
11243
+ return Object.fromEntries(
11159
11244
  Object.entries(urlObj).filter(
11160
11245
  ([_, value]) => value != null && (!Array.isArray(value) || value.length > 0)
11161
11246
  )
11162
11247
  );
11163
- return filteredUrlObj;
11164
11248
  }
11165
11249
  async function parseSitemapXml(xml) {
11166
11250
  const warnings = [];
@@ -11314,11 +11398,15 @@ async function fetchDataSource(input, event) {
11314
11398
  }
11315
11399
  }
11316
11400
  }
11317
- function globalSitemapSources() {
11318
- return import('../virtual/global-sources.mjs').then((m) => m.sources);
11401
+ async function globalSitemapSources() {
11402
+ const m = await import('../virtual/global-sources.mjs');
11403
+ return [...m.sources];
11319
11404
  }
11320
- function childSitemapSources(definition) {
11321
- return definition?._hasSourceChunk ? import('../virtual/child-sources.mjs').then((m) => m.sources[definition.sitemapName] || []) : Promise.resolve([]);
11405
+ async function childSitemapSources(definition) {
11406
+ if (!definition?._hasSourceChunk)
11407
+ return [];
11408
+ const m = await import('../virtual/child-sources.mjs');
11409
+ return [...m.sources[definition.sitemapName] || []];
11322
11410
  }
11323
11411
  async function resolveSitemapSources(sources, event) {
11324
11412
  return (await Promise.all(
@@ -11403,197 +11491,113 @@ function escapeValueForXml(value) {
11403
11491
  return value ? "yes" : "no";
11404
11492
  return xmlEscape(String(value));
11405
11493
  }
11494
+ const yesNo = (v) => v === "yes" || v === true ? "yes" : "no";
11406
11495
  const URLSET_OPENING_TAG = '<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd http://www.google.com/schemas/sitemap-image/1.1 http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';
11407
- function buildUrlXml(url) {
11408
- const capacity = 50;
11409
- const parts = Array.from({ length: capacity });
11410
- let partIndex = 0;
11411
- parts[partIndex++] = " <url>";
11412
- if (url.loc) {
11413
- parts[partIndex++] = ` <loc>${escapeValueForXml(url.loc)}</loc>`;
11414
- }
11415
- if (url.lastmod) {
11416
- parts[partIndex++] = ` <lastmod>${url.lastmod}</lastmod>`;
11417
- }
11418
- if (url.changefreq) {
11419
- parts[partIndex++] = ` <changefreq>${url.changefreq}</changefreq>`;
11420
- }
11496
+ function buildUrlXml(url, NL, I1, I2, I3, I4) {
11497
+ let xml = `${I1}<url>${NL}`;
11498
+ if (url.loc) xml += `${I2}<loc>${xmlEscape(url.loc)}</loc>${NL}`;
11499
+ if (url.lastmod) xml += `${I2}<lastmod>${url.lastmod}</lastmod>${NL}`;
11500
+ if (url.changefreq) xml += `${I2}<changefreq>${url.changefreq}</changefreq>${NL}`;
11421
11501
  if (url.priority !== void 0) {
11422
- const priorityValue = Number.parseFloat(String(url.priority));
11423
- const formattedPriority = priorityValue % 1 === 0 ? String(priorityValue) : priorityValue.toFixed(1);
11424
- parts[partIndex++] = ` <priority>${formattedPriority}</priority>`;
11425
- }
11426
- const keys = Object.keys(url).filter((k) => !k.startsWith("_") && !["loc", "lastmod", "changefreq", "priority"].includes(k));
11427
- for (const key of keys) {
11428
- const value = url[key];
11429
- if (value === void 0 || value === null) continue;
11430
- switch (key) {
11431
- case "alternatives":
11432
- if (Array.isArray(value) && value.length > 0) {
11433
- for (const alt of value) {
11434
- const attrs = Object.entries(alt).map(([k, v]) => `${k}="${escapeValueForXml(v)}"`).join(" ");
11435
- parts[partIndex++] = ` <xhtml:link rel="alternate" ${attrs} />`;
11436
- }
11437
- }
11438
- break;
11439
- case "images":
11440
- if (Array.isArray(value) && value.length > 0) {
11441
- for (const img of value) {
11442
- parts[partIndex++] = " <image:image>";
11443
- parts[partIndex++] = ` <image:loc>${escapeValueForXml(img.loc)}</image:loc>`;
11444
- if (img.title) parts[partIndex++] = ` <image:title>${escapeValueForXml(img.title)}</image:title>`;
11445
- if (img.caption) parts[partIndex++] = ` <image:caption>${escapeValueForXml(img.caption)}</image:caption>`;
11446
- if (img.geo_location) parts[partIndex++] = ` <image:geo_location>${escapeValueForXml(img.geo_location)}</image:geo_location>`;
11447
- if (img.license) parts[partIndex++] = ` <image:license>${escapeValueForXml(img.license)}</image:license>`;
11448
- parts[partIndex++] = " </image:image>";
11449
- }
11450
- }
11451
- break;
11452
- case "videos":
11453
- if (Array.isArray(value) && value.length > 0) {
11454
- for (const video of value) {
11455
- parts[partIndex++] = " <video:video>";
11456
- parts[partIndex++] = ` <video:title>${escapeValueForXml(video.title)}</video:title>`;
11457
- if (video.thumbnail_loc) {
11458
- parts[partIndex++] = ` <video:thumbnail_loc>${escapeValueForXml(video.thumbnail_loc)}</video:thumbnail_loc>`;
11459
- }
11460
- parts[partIndex++] = ` <video:description>${escapeValueForXml(video.description)}</video:description>`;
11461
- if (video.content_loc) {
11462
- parts[partIndex++] = ` <video:content_loc>${escapeValueForXml(video.content_loc)}</video:content_loc>`;
11463
- }
11464
- if (video.player_loc) {
11465
- const attrs = video.player_loc.allow_embed ? ' allow_embed="yes"' : "";
11466
- const autoplay = video.player_loc.autoplay ? ' autoplay="yes"' : "";
11467
- parts[partIndex++] = ` <video:player_loc${attrs}${autoplay}>${escapeValueForXml(video.player_loc)}</video:player_loc>`;
11468
- }
11469
- if (video.duration !== void 0) {
11470
- parts[partIndex++] = ` <video:duration>${video.duration}</video:duration>`;
11471
- }
11472
- if (video.expiration_date) {
11473
- parts[partIndex++] = ` <video:expiration_date>${video.expiration_date}</video:expiration_date>`;
11474
- }
11475
- if (video.rating !== void 0) {
11476
- parts[partIndex++] = ` <video:rating>${video.rating}</video:rating>`;
11477
- }
11478
- if (video.view_count !== void 0) {
11479
- parts[partIndex++] = ` <video:view_count>${video.view_count}</video:view_count>`;
11480
- }
11481
- if (video.publication_date) {
11482
- parts[partIndex++] = ` <video:publication_date>${video.publication_date}</video:publication_date>`;
11483
- }
11484
- if (video.family_friendly !== void 0) {
11485
- parts[partIndex++] = ` <video:family_friendly>${video.family_friendly === "yes" || video.family_friendly === true ? "yes" : "no"}</video:family_friendly>`;
11486
- }
11487
- if (video.restriction) {
11488
- const relationship = video.restriction.relationship || "allow";
11489
- parts[partIndex++] = ` <video:restriction relationship="${relationship}">${escapeValueForXml(video.restriction.restriction)}</video:restriction>`;
11490
- }
11491
- if (video.platform) {
11492
- const relationship = video.platform.relationship || "allow";
11493
- parts[partIndex++] = ` <video:platform relationship="${relationship}">${escapeValueForXml(video.platform.platform)}</video:platform>`;
11494
- }
11495
- if (video.requires_subscription !== void 0) {
11496
- parts[partIndex++] = ` <video:requires_subscription>${video.requires_subscription === "yes" || video.requires_subscription === true ? "yes" : "no"}</video:requires_subscription>`;
11497
- }
11498
- if (video.price) {
11499
- const prices = Array.isArray(video.price) ? video.price : [video.price];
11500
- for (const price of prices) {
11501
- const attrs = [];
11502
- if (price.currency) attrs.push(`currency="${price.currency}"`);
11503
- if (price.type) attrs.push(`type="${price.type}"`);
11504
- const attrsStr = attrs.length > 0 ? " " + attrs.join(" ") : "";
11505
- parts[partIndex++] = ` <video:price${attrsStr}>${escapeValueForXml(price.price)}</video:price>`;
11506
- }
11507
- }
11508
- if (video.uploader) {
11509
- const info = video.uploader.info ? ` info="${escapeValueForXml(video.uploader.info)}"` : "";
11510
- parts[partIndex++] = ` <video:uploader${info}>${escapeValueForXml(video.uploader.uploader)}</video:uploader>`;
11511
- }
11512
- if (video.live !== void 0) {
11513
- parts[partIndex++] = ` <video:live>${video.live === "yes" || video.live === true ? "yes" : "no"}</video:live>`;
11514
- }
11515
- if (video.tag) {
11516
- const tags = Array.isArray(video.tag) ? video.tag : [video.tag];
11517
- for (const tag of tags) {
11518
- parts[partIndex++] = ` <video:tag>${escapeValueForXml(tag)}</video:tag>`;
11519
- }
11520
- }
11521
- if (video.category) {
11522
- parts[partIndex++] = ` <video:category>${escapeValueForXml(video.category)}</video:category>`;
11523
- }
11524
- if (video.gallery_loc) {
11525
- const title = video.gallery_loc.title ? ` title="${escapeValueForXml(video.gallery_loc.title)}"` : "";
11526
- parts[partIndex++] = ` <video:gallery_loc${title}>${escapeValueForXml(video.gallery_loc)}</video:gallery_loc>`;
11527
- }
11528
- parts[partIndex++] = " </video:video>";
11529
- }
11530
- }
11531
- break;
11532
- case "news":
11533
- if (value) {
11534
- parts[partIndex++] = " <news:news>";
11535
- parts[partIndex++] = " <news:publication>";
11536
- parts[partIndex++] = ` <news:name>${escapeValueForXml(value.publication.name)}</news:name>`;
11537
- parts[partIndex++] = ` <news:language>${escapeValueForXml(value.publication.language)}</news:language>`;
11538
- parts[partIndex++] = " </news:publication>";
11539
- if (value.title) {
11540
- parts[partIndex++] = ` <news:title>${escapeValueForXml(value.title)}</news:title>`;
11541
- }
11542
- if (value.publication_date) {
11543
- parts[partIndex++] = ` <news:publication_date>${value.publication_date}</news:publication_date>`;
11544
- }
11545
- if (value.access) {
11546
- parts[partIndex++] = ` <news:access>${value.access}</news:access>`;
11547
- }
11548
- if (value.genres) {
11549
- parts[partIndex++] = ` <news:genres>${escapeValueForXml(value.genres)}</news:genres>`;
11550
- }
11551
- if (value.keywords) {
11552
- parts[partIndex++] = ` <news:keywords>${escapeValueForXml(value.keywords)}</news:keywords>`;
11553
- }
11554
- if (value.stock_tickers) {
11555
- parts[partIndex++] = ` <news:stock_tickers>${escapeValueForXml(value.stock_tickers)}</news:stock_tickers>`;
11556
- }
11557
- parts[partIndex++] = " </news:news>";
11502
+ const p = typeof url.priority === "number" ? url.priority : Number.parseFloat(url.priority);
11503
+ xml += `${I2}<priority>${p.toFixed(1)}</priority>${NL}`;
11504
+ }
11505
+ if (url.alternatives) {
11506
+ for (const alt of url.alternatives) {
11507
+ let attrs = "";
11508
+ for (const [k, v] of Object.entries(alt)) attrs += ` ${k}="${xmlEscape(String(v))}"`;
11509
+ xml += `${I2}<xhtml:link rel="alternate"${attrs} />${NL}`;
11510
+ }
11511
+ }
11512
+ if (url.images) {
11513
+ for (const img of url.images) {
11514
+ xml += `${I2}<image:image>${NL}${I3}<image:loc>${xmlEscape(img.loc)}</image:loc>${NL}`;
11515
+ if (img.title) xml += `${I3}<image:title>${xmlEscape(img.title)}</image:title>${NL}`;
11516
+ if (img.caption) xml += `${I3}<image:caption>${xmlEscape(img.caption)}</image:caption>${NL}`;
11517
+ if (img.geo_location) xml += `${I3}<image:geo_location>${xmlEscape(img.geo_location)}</image:geo_location>${NL}`;
11518
+ if (img.license) xml += `${I3}<image:license>${xmlEscape(img.license)}</image:license>${NL}`;
11519
+ xml += `${I2}</image:image>${NL}`;
11520
+ }
11521
+ }
11522
+ if (url.videos) {
11523
+ for (const video of url.videos) {
11524
+ xml += `${I2}<video:video>${NL}${I3}<video:title>${xmlEscape(video.title)}</video:title>${NL}`;
11525
+ if (video.thumbnail_loc) xml += `${I3}<video:thumbnail_loc>${xmlEscape(video.thumbnail_loc)}</video:thumbnail_loc>${NL}`;
11526
+ xml += `${I3}<video:description>${xmlEscape(video.description)}</video:description>${NL}`;
11527
+ if (video.content_loc) xml += `${I3}<video:content_loc>${xmlEscape(video.content_loc)}</video:content_loc>${NL}`;
11528
+ if (video.player_loc) xml += `${I3}<video:player_loc>${xmlEscape(video.player_loc)}</video:player_loc>${NL}`;
11529
+ if (video.duration !== void 0) xml += `${I3}<video:duration>${video.duration}</video:duration>${NL}`;
11530
+ if (video.expiration_date) xml += `${I3}<video:expiration_date>${video.expiration_date}</video:expiration_date>${NL}`;
11531
+ if (video.rating !== void 0) xml += `${I3}<video:rating>${video.rating}</video:rating>${NL}`;
11532
+ if (video.view_count !== void 0) xml += `${I3}<video:view_count>${video.view_count}</video:view_count>${NL}`;
11533
+ if (video.publication_date) xml += `${I3}<video:publication_date>${video.publication_date}</video:publication_date>${NL}`;
11534
+ if (video.family_friendly !== void 0) xml += `${I3}<video:family_friendly>${yesNo(video.family_friendly)}</video:family_friendly>${NL}`;
11535
+ if (video.restriction) xml += `${I3}<video:restriction relationship="${video.restriction.relationship || "allow"}">${xmlEscape(video.restriction.restriction)}</video:restriction>${NL}`;
11536
+ if (video.platform) xml += `${I3}<video:platform relationship="${video.platform.relationship || "allow"}">${xmlEscape(video.platform.platform)}</video:platform>${NL}`;
11537
+ if (video.requires_subscription !== void 0) xml += `${I3}<video:requires_subscription>${yesNo(video.requires_subscription)}</video:requires_subscription>${NL}`;
11538
+ if (video.price) {
11539
+ for (const price of video.price) {
11540
+ const c = price.currency ? ` currency="${price.currency}"` : "";
11541
+ const t = price.type ? ` type="${price.type}"` : "";
11542
+ xml += `${I3}<video:price${c}${t}>${xmlEscape(String(price.price ?? ""))}</video:price>${NL}`;
11558
11543
  }
11559
- break;
11544
+ }
11545
+ if (video.uploader) {
11546
+ const info = video.uploader.info ? ` info="${xmlEscape(video.uploader.info)}"` : "";
11547
+ xml += `${I3}<video:uploader${info}>${xmlEscape(video.uploader.uploader)}</video:uploader>${NL}`;
11548
+ }
11549
+ if (video.live !== void 0) xml += `${I3}<video:live>${yesNo(video.live)}</video:live>${NL}`;
11550
+ if (video.tag) {
11551
+ const tags = Array.isArray(video.tag) ? video.tag : [video.tag];
11552
+ for (const t of tags) xml += `${I3}<video:tag>${xmlEscape(t)}</video:tag>${NL}`;
11553
+ }
11554
+ if (video.category) xml += `${I3}<video:category>${xmlEscape(video.category)}</video:category>${NL}`;
11555
+ if (video.gallery_loc) xml += `${I3}<video:gallery_loc>${xmlEscape(video.gallery_loc)}</video:gallery_loc>${NL}`;
11556
+ xml += `${I2}</video:video>${NL}`;
11560
11557
  }
11561
11558
  }
11562
- parts[partIndex++] = " </url>";
11563
- return parts.slice(0, partIndex).join("\n");
11559
+ if (url.news) {
11560
+ xml += `${I2}<news:news>${NL}${I3}<news:publication>${NL}`;
11561
+ xml += `${I4}<news:name>${xmlEscape(url.news.publication.name)}</news:name>${NL}`;
11562
+ xml += `${I4}<news:language>${xmlEscape(url.news.publication.language)}</news:language>${NL}`;
11563
+ xml += `${I3}</news:publication>${NL}`;
11564
+ if (url.news.title) xml += `${I3}<news:title>${xmlEscape(url.news.title)}</news:title>${NL}`;
11565
+ if (url.news.publication_date) xml += `${I3}<news:publication_date>${url.news.publication_date}</news:publication_date>${NL}`;
11566
+ xml += `${I2}</news:news>${NL}`;
11567
+ }
11568
+ xml += `${I1}</url>`;
11569
+ return xml;
11564
11570
  }
11565
11571
  function urlsToXml(urls, resolvers, { version, xsl, credits, minify }, errorInfo) {
11566
- const estimatedSize = urls.length + 5;
11567
- const xmlParts = Array.from({ length: estimatedSize });
11568
- let partIndex = 0;
11569
11572
  let xslHref = xsl ? resolvers.relativeBaseUrlResolver(xsl) : false;
11570
- if (xslHref && errorInfo && errorInfo.messages.length > 0) {
11573
+ if (xslHref && errorInfo?.messages.length) {
11571
11574
  xslHref = withQuery(xslHref, {
11572
11575
  errors: "true",
11573
11576
  error_messages: errorInfo.messages,
11574
11577
  error_urls: errorInfo.urls
11575
11578
  });
11576
11579
  }
11577
- if (xslHref) {
11578
- xmlParts[partIndex++] = `<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="${escapeValueForXml(xslHref)}"?>`;
11579
- } else {
11580
- xmlParts[partIndex++] = '<?xml version="1.0" encoding="UTF-8"?>';
11581
- }
11582
- xmlParts[partIndex++] = URLSET_OPENING_TAG;
11580
+ const NL = minify ? "" : "\n";
11581
+ const I1 = minify ? "" : " ";
11582
+ const I2 = minify ? "" : " ";
11583
+ const I3 = minify ? "" : " ";
11584
+ const I4 = minify ? "" : " ";
11585
+ let xml = xslHref ? `<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="${escapeValueForXml(xslHref)}"?>${NL}` : `<?xml version="1.0" encoding="UTF-8"?>${NL}`;
11586
+ xml += URLSET_OPENING_TAG + NL;
11583
11587
  for (const url of urls) {
11584
- xmlParts[partIndex++] = buildUrlXml(url);
11588
+ xml += buildUrlXml(url, NL, I1, I2, I3, I4) + NL;
11585
11589
  }
11586
- xmlParts[partIndex++] = "</urlset>";
11590
+ xml += "</urlset>";
11587
11591
  if (credits) {
11588
- xmlParts[partIndex++] = `<!-- XML Sitemap generated by @nuxtjs/sitemap v${version} at ${(/* @__PURE__ */ new Date()).toISOString()} -->`;
11592
+ xml += `${NL}<!-- XML Sitemap generated by @nuxtjs/sitemap v${version} at ${(/* @__PURE__ */ new Date()).toISOString()} -->`;
11589
11593
  }
11590
- const xmlContent = xmlParts.slice(0, partIndex);
11591
- if (minify) {
11592
- return xmlContent.join("").replace(/(?<!<[^>]*)\s(?![^<]*>)/g, "");
11593
- }
11594
- return xmlContent.join("\n");
11594
+ return xml;
11595
11595
  }
11596
11596
 
11597
+ function getPageKey(pathWithoutPrefix) {
11598
+ const stripped = pathWithoutPrefix[0] === "/" ? pathWithoutPrefix.slice(1) : pathWithoutPrefix;
11599
+ return stripped.endsWith("/index") ? stripped.slice(0, -6) || "index" : stripped || "index";
11600
+ }
11597
11601
  function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
11598
11602
  const {
11599
11603
  autoI18n,
@@ -11613,6 +11617,13 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
11613
11617
  const withoutPrefixPaths = {};
11614
11618
  if (autoI18n && autoI18n.strategy !== "no_prefix") {
11615
11619
  const localeCodes = autoI18n.locales.map((l) => l.code);
11620
+ const localeByCode = new Map(autoI18n.locales.map((l) => [l.code, l]));
11621
+ const isPrefixStrategy = autoI18n.strategy === "prefix";
11622
+ const isPrefixExceptOrAndDefault = autoI18n.strategy === "prefix_and_default" || autoI18n.strategy === "prefix_except_default";
11623
+ const xDefaultAndLocales = [{ code: "x-default", _hreflang: "x-default" }, ...autoI18n.locales];
11624
+ const defaultLocale = autoI18n.defaultLocale;
11625
+ const hasPages = !!autoI18n.pages;
11626
+ const hasDifferentDomains = !!autoI18n.differentDomains;
11616
11627
  validI18nUrlsForTransform = _urls.map((_e, i) => {
11617
11628
  if (_e._abs)
11618
11629
  return false;
@@ -11620,15 +11631,15 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
11620
11631
  let localeCode = split[0];
11621
11632
  const pathWithoutPrefix = split[1];
11622
11633
  if (!localeCode)
11623
- localeCode = autoI18n.defaultLocale;
11634
+ localeCode = defaultLocale;
11624
11635
  const e = _e;
11625
11636
  e._pathWithoutPrefix = pathWithoutPrefix;
11626
- const locale = autoI18n.locales.find((l) => l.code === localeCode);
11637
+ const locale = localeByCode.get(localeCode);
11627
11638
  if (!locale)
11628
11639
  return false;
11629
11640
  e._locale = locale;
11630
11641
  e._index = i;
11631
- e._key = `${e._sitemap || ""}${e._path?.pathname || "/"}${e._path.search}`;
11642
+ e._key = `${e._sitemap || ""}${e._path?.pathname || "/"}${e._path?.search || ""}`;
11632
11643
  withoutPrefixPaths[pathWithoutPrefix] = withoutPrefixPaths[pathWithoutPrefix] || [];
11633
11644
  if (!withoutPrefixPaths[pathWithoutPrefix].some((e2) => e2._locale.code === locale.code))
11634
11645
  withoutPrefixPaths[pathWithoutPrefix].push(e);
@@ -11636,9 +11647,9 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
11636
11647
  }).filter(Boolean);
11637
11648
  for (const e of validI18nUrlsForTransform) {
11638
11649
  if (!e._i18nTransform && !e.alternatives?.length) {
11639
- const alternatives = withoutPrefixPaths[e._pathWithoutPrefix].map((u) => {
11650
+ const alternatives = (withoutPrefixPaths[e._pathWithoutPrefix] || []).map((u) => {
11640
11651
  const entries = [];
11641
- if (u._locale.code === autoI18n.defaultLocale) {
11652
+ if (u._locale.code === defaultLocale) {
11642
11653
  entries.push({
11643
11654
  href: u.loc,
11644
11655
  hreflang: "x-default"
@@ -11646,7 +11657,7 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
11646
11657
  }
11647
11658
  entries.push({
11648
11659
  href: u.loc,
11649
- hreflang: u._locale._hreflang || autoI18n.defaultLocale
11660
+ hreflang: u._locale._hreflang || defaultLocale
11650
11661
  });
11651
11662
  return entries;
11652
11663
  }).flat().filter(Boolean);
@@ -11654,12 +11665,11 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
11654
11665
  e.alternatives = alternatives;
11655
11666
  } else if (e._i18nTransform) {
11656
11667
  delete e._i18nTransform;
11657
- if (autoI18n.strategy === "no_prefix") ;
11658
- if (autoI18n.differentDomains) {
11668
+ if (hasDifferentDomains) {
11669
+ const defLocale = localeByCode.get(defaultLocale);
11659
11670
  e.alternatives = [
11660
11671
  {
11661
- // apply default locale domain
11662
- ...autoI18n.locales.find((l) => [l.code, l.language].includes(autoI18n.defaultLocale)),
11672
+ ...defLocale,
11663
11673
  code: "x-default"
11664
11674
  },
11665
11675
  ...autoI18n.locales.filter((l) => !!l.domain)
@@ -11670,68 +11680,53 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
11670
11680
  };
11671
11681
  });
11672
11682
  } else {
11683
+ const pageKey = hasPages ? getPageKey(e._pathWithoutPrefix) : "";
11684
+ const pageMappings = hasPages ? autoI18n.pages[pageKey] : void 0;
11685
+ const pathSearch = e._path?.search || "";
11686
+ const pathWithoutPrefix = e._pathWithoutPrefix;
11673
11687
  for (const l of autoI18n.locales) {
11674
- let loc = e._pathWithoutPrefix;
11675
- if (autoI18n.pages) {
11676
- const pageKey = e._pathWithoutPrefix.replace(/^\//, "").replace(/\/index$/, "") || "index";
11677
- const pageMappings = autoI18n.pages[pageKey];
11678
- if (pageMappings && pageMappings[l.code] !== void 0) {
11679
- const customPath = pageMappings[l.code];
11688
+ let loc = pathWithoutPrefix;
11689
+ if (hasPages && pageMappings && pageMappings[l.code] !== void 0) {
11690
+ const customPath = pageMappings[l.code];
11691
+ if (customPath === false)
11692
+ continue;
11693
+ if (typeof customPath === "string")
11694
+ loc = customPath[0] === "/" ? customPath : `/${customPath}`;
11695
+ } else if (!hasDifferentDomains && !(isPrefixExceptOrAndDefault && l.code === defaultLocale)) {
11696
+ loc = joinURL(`/${l.code}`, pathWithoutPrefix);
11697
+ }
11698
+ const _sitemap = isI18nMapped ? l._sitemap : void 0;
11699
+ const alternatives = [];
11700
+ for (const locale of xDefaultAndLocales) {
11701
+ const code = locale.code === "x-default" ? defaultLocale : locale.code;
11702
+ const isDefault = locale.code === "x-default" || locale.code === defaultLocale;
11703
+ let href = pathWithoutPrefix;
11704
+ if (hasPages && pageMappings && pageMappings[code] !== void 0) {
11705
+ const customPath = pageMappings[code];
11680
11706
  if (customPath === false)
11681
11707
  continue;
11682
11708
  if (typeof customPath === "string")
11683
- loc = customPath.startsWith("/") ? customPath : `/${customPath}`;
11684
- } else if (!autoI18n.differentDomains && !(["prefix_and_default", "prefix_except_default"].includes(autoI18n.strategy) && l.code === autoI18n.defaultLocale)) {
11685
- loc = joinURL(`/${l.code}`, e._pathWithoutPrefix);
11709
+ href = customPath[0] === "/" ? customPath : `/${customPath}`;
11710
+ } else if (isPrefixStrategy) {
11711
+ href = joinURL("/", code, pathWithoutPrefix);
11712
+ } else if (isPrefixExceptOrAndDefault && !isDefault) {
11713
+ href = joinURL("/", code, pathWithoutPrefix);
11686
11714
  }
11687
- } else {
11688
- if (!autoI18n.differentDomains && !(["prefix_and_default", "prefix_except_default"].includes(autoI18n.strategy) && l.code === autoI18n.defaultLocale))
11689
- loc = joinURL(`/${l.code}`, e._pathWithoutPrefix);
11715
+ if (!filterPath(href))
11716
+ continue;
11717
+ alternatives.push({
11718
+ hreflang: locale._hreflang,
11719
+ href
11720
+ });
11690
11721
  }
11691
- const _sitemap = isI18nMapped ? l._sitemap : void 0;
11722
+ const { _index: _, ...rest } = e;
11692
11723
  const newEntry = preNormalizeEntry({
11693
11724
  _sitemap,
11694
- ...e,
11695
- _index: void 0,
11696
- _key: `${_sitemap || ""}${loc || "/"}${e._path.search}`,
11725
+ ...rest,
11726
+ _key: `${_sitemap || ""}${loc || "/"}${pathSearch}`,
11697
11727
  _locale: l,
11698
11728
  loc,
11699
- alternatives: [{ code: "x-default", _hreflang: "x-default" }, ...autoI18n.locales].map((locale) => {
11700
- const code = locale.code === "x-default" ? autoI18n.defaultLocale : locale.code;
11701
- const isDefault = locale.code === "x-default" || locale.code === autoI18n.defaultLocale;
11702
- let href = e._pathWithoutPrefix;
11703
- if (autoI18n.pages) {
11704
- const pageKey = e._pathWithoutPrefix.replace(/^\//, "").replace(/\/index$/, "") || "index";
11705
- const pageMappings = autoI18n.pages[pageKey];
11706
- if (pageMappings && pageMappings[code] !== void 0) {
11707
- const customPath = pageMappings[code];
11708
- if (customPath === false)
11709
- return false;
11710
- if (typeof customPath === "string")
11711
- href = customPath.startsWith("/") ? customPath : `/${customPath}`;
11712
- } else if (autoI18n.strategy === "prefix") {
11713
- href = joinURL("/", code, e._pathWithoutPrefix);
11714
- } else if (["prefix_and_default", "prefix_except_default"].includes(autoI18n.strategy)) {
11715
- if (!isDefault) {
11716
- href = joinURL("/", code, e._pathWithoutPrefix);
11717
- }
11718
- }
11719
- } else {
11720
- if (autoI18n.strategy === "prefix") {
11721
- href = joinURL("/", code, e._pathWithoutPrefix);
11722
- } else if (["prefix_and_default", "prefix_except_default"].includes(autoI18n.strategy)) {
11723
- if (!isDefault) {
11724
- href = joinURL("/", code, e._pathWithoutPrefix);
11725
- }
11726
- }
11727
- }
11728
- if (!filterPath(href))
11729
- return false;
11730
- return {
11731
- hreflang: locale._hreflang,
11732
- href
11733
- };
11734
- }).filter(Boolean)
11729
+ alternatives
11735
11730
  }, resolvers);
11736
11731
  if (e._locale.code === newEntry._locale.code) {
11737
11732
  _urls[e._index] = newEntry;
@@ -11744,7 +11739,7 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
11744
11739
  }
11745
11740
  if (isI18nMapped) {
11746
11741
  e._sitemap = e._sitemap || e._locale._sitemap;
11747
- e._key = `${e._sitemap || ""}${e.loc || "/"}${e._path.search}`;
11742
+ e._key = `${e._sitemap || ""}${e.loc || "/"}${e._path?.search || ""}`;
11748
11743
  }
11749
11744
  if (e._index)
11750
11745
  _urls[e._index] = e;
@@ -11764,15 +11759,16 @@ async function buildSitemapUrls(sitemap, resolvers, runtimeConfig, nitro) {
11764
11759
  // chunking
11765
11760
  defaultSitemapsChunkSize
11766
11761
  } = runtimeConfig;
11767
- const chunkInfo = parseChunkInfo(sitemap.sitemapName, sitemaps, defaultSitemapsChunkSize);
11762
+ const chunkSize = defaultSitemapsChunkSize || void 0;
11763
+ const chunkInfo = parseChunkInfo(sitemap.sitemapName, sitemaps, chunkSize);
11768
11764
  function maybeSort(urls2) {
11769
11765
  return sortEntries ? sortInPlace(urls2) : urls2;
11770
11766
  }
11771
11767
  function maybeSlice(urls2) {
11772
- return sliceUrlsForChunk(urls2, sitemap.sitemapName, sitemaps, defaultSitemapsChunkSize);
11768
+ return sliceUrlsForChunk(urls2, sitemap.sitemapName, sitemaps, chunkSize);
11773
11769
  }
11774
11770
  if (autoI18n?.differentDomains) {
11775
- const domain = autoI18n.locales.find((e) => [e.language, e.code].includes(sitemap.sitemapName))?.domain;
11771
+ const domain = autoI18n.locales.find((e) => e.language === sitemap.sitemapName || e.code === sitemap.sitemapName)?.domain;
11776
11772
  if (domain) {
11777
11773
  const _tester = resolvers.canonicalUrlResolver;
11778
11774
  resolvers.canonicalUrlResolver = (path) => resolveSitePath(path, {
@@ -11789,8 +11785,7 @@ async function buildSitemapUrls(sitemap, resolvers, runtimeConfig, nitro) {
11789
11785
  if (chunkInfo.isChunked && baseSitemapName !== sitemap.sitemapName && sitemaps[baseSitemapName]) {
11790
11786
  effectiveSitemap = sitemaps[baseSitemapName];
11791
11787
  }
11792
- let sourcesInput = effectiveSitemap.includeAppSources ? await globalSitemapSources() : [];
11793
- sourcesInput.push(...await childSitemapSources(effectiveSitemap));
11788
+ let sourcesInput = effectiveSitemap.includeAppSources ? [...await globalSitemapSources(), ...await childSitemapSources(effectiveSitemap)] : await childSitemapSources(effectiveSitemap);
11794
11789
  if (nitro && resolvers.event) {
11795
11790
  const ctx = {
11796
11791
  event: resolvers.event,
@@ -11813,8 +11808,13 @@ async function buildSitemapUrls(sitemap, resolvers, runtimeConfig, nitro) {
11813
11808
  await nitro?.hooks.callHook("sitemap:input", resolvedCtx);
11814
11809
  const enhancedUrls = resolveSitemapEntries(sitemap, resolvedCtx.urls, { autoI18n, isI18nMapped }, resolvers);
11815
11810
  const filteredUrls = enhancedUrls.filter((e) => {
11816
- if (isMultiSitemap && e._sitemap && sitemap.sitemapName)
11811
+ if (e._sitemap === false)
11812
+ return false;
11813
+ if (isMultiSitemap && e._sitemap && sitemap.sitemapName) {
11814
+ if (sitemap._isChunking)
11815
+ return sitemap.sitemapName.startsWith(e._sitemap + "-");
11817
11816
  return e._sitemap === sitemap.sitemapName;
11817
+ }
11818
11818
  return true;
11819
11819
  });
11820
11820
  const sortedUrls = maybeSort(filteredUrls);
@@ -11878,8 +11878,9 @@ async function buildSitemapXml(event, definition, resolvers, runtimeConfig) {
11878
11878
  resolvedCtx.urls = resolvedCtx.urls.map((e) => preNormalizeEntry(e, resolvers));
11879
11879
  }
11880
11880
  const maybeSort = (urls2) => runtimeConfig.sortEntries ? sortInPlace(urls2) : urls2;
11881
- const normalizedPreDedupe = resolvedCtx.urls.map((e) => normaliseEntry(e, definition.defaults, resolvers));
11882
- const urls = maybeSort(mergeOnKey(normalizedPreDedupe, "_key").map((e) => normaliseEntry(e, definition.defaults, resolvers)));
11881
+ const defaults = definition.defaults || {};
11882
+ const normalizedPreDedupe = resolvedCtx.urls.map((e) => normaliseEntry(e, defaults, resolvers));
11883
+ const urls = maybeSort(mergeOnKey(normalizedPreDedupe, "_key").map((e) => normaliseEntry(e, defaults, resolvers)));
11883
11884
  if (definition._isChunking && definition.sitemapName.includes("-")) {
11884
11885
  const parts = definition.sitemapName.split("-");
11885
11886
  const lastPart = parts.pop();
@@ -11943,14 +11944,15 @@ async function createSitemap(event, definition, runtimeConfig) {
11943
11944
  return xml;
11944
11945
  }
11945
11946
 
11946
- const _ZZjWkS = defineEventHandler(async (e) => {
11947
+ async function sitemapXmlEventHandler(e) {
11947
11948
  const runtimeConfig = useSitemapRuntimeConfig();
11948
11949
  const { sitemaps } = runtimeConfig;
11949
- if ("index" in sitemaps) {
11950
+ if ("index" in sitemaps)
11950
11951
  return sendRedirect(e, withBase("/sitemap_index.xml", useRuntimeConfig().app.baseURL), 301);
11951
- }
11952
11952
  return createSitemap(e, Object.values(sitemaps)[0], runtimeConfig);
11953
- });
11953
+ }
11954
+
11955
+ const _JukhrP = defineEventHandler(sitemapXmlEventHandler);
11954
11956
 
11955
11957
  const storage = prefixStorage(useStorage(), "i18n");
11956
11958
  function cachedFunctionI18n(fn, opts) {
@@ -12064,9 +12066,9 @@ const _messagesHandlerCached = defineCachedEventHandler(_cachedMessageLoader, {
12064
12066
  swr: false,
12065
12067
  getKey: (event) => [getRouterParam(event, "locale") ?? "null", getRouterParam(event, "hash") ?? "null"].join("-")
12066
12068
  });
12067
- const _NNSCLT = _messagesHandlerCached;
12069
+ const _Lnfmd1 = _messagesHandlerCached;
12068
12070
 
12069
- const _Q1fkYk = eventHandler(async (event) => {
12071
+ const _Dc68hf = eventHandler(async (event) => {
12070
12072
  const collection = getRouterParam(event, "collection");
12071
12073
  setHeader(event, "Content-Type", "text/plain");
12072
12074
  const data = await useStorage().getItem(`build:content:database.compressed.mjs`) || "";
@@ -12158,7 +12160,7 @@ function sqliteConnector(opts) {
12158
12160
  _db = new Database(":memory:");
12159
12161
  return _db;
12160
12162
  }
12161
- const filePath = resolve$2(opts.cwd || ".", opts.path || `.data/${opts.name || "db"}.sqlite3`);
12163
+ const filePath = resolve$3(opts.cwd || ".", opts.path || `.data/${opts.name || "db"}.sqlite3`);
12162
12164
  mkdirSync(dirname$1(filePath), { recursive: true });
12163
12165
  _db = new Database(filePath);
12164
12166
  return _db;
@@ -12423,7 +12425,7 @@ function cleanupQuery(query, options = { removeString: false }) {
12423
12425
  return result;
12424
12426
  }
12425
12427
 
12426
- const _5WVRB1 = eventHandler(async (event) => {
12428
+ const _Unj2pu = eventHandler(async (event) => {
12427
12429
  const { sql } = await readBody(event);
12428
12430
  const collection = getRouterParam(event, "collection");
12429
12431
  assertSafeQuery(sql, collection);
@@ -12434,7 +12436,7 @@ const _5WVRB1 = eventHandler(async (event) => {
12434
12436
  return loadDatabaseAdapter(conf).all(sql);
12435
12437
  });
12436
12438
 
12437
- const _6_zlrq = lazyEventHandler(() => {
12439
+ const _Qnnu2J = lazyEventHandler(() => {
12438
12440
  const opts = useRuntimeConfig().ipx || {};
12439
12441
  const fsDir = opts?.fs?.dir ? (Array.isArray(opts.fs.dir) ? opts.fs.dir : [opts.fs.dir]).map((dir) => isAbsolute(dir) ? dir : fileURLToPath(new URL(dir, globalThis._importMeta_.url))) : void 0;
12440
12442
  const fsStorage = opts.fs?.dir ? ipxFSStorage({ ...opts.fs, dir: fsDir }) : void 0;
@@ -12453,38 +12455,38 @@ const _6_zlrq = lazyEventHandler(() => {
12453
12455
  });
12454
12456
 
12455
12457
  const _lazy_u5Dhoc = () => import('../routes/api/neonTest.mjs');
12456
- const _lazy_xpKmMm = () => import('../routes/renderer.mjs');
12458
+ const _lazy_tJZ_5j = () => import('../routes/renderer.mjs');
12457
12459
 
12458
12460
  const handlers = [
12459
- { route: '', handler: _R9eK6g, lazy: false, middleware: true, method: undefined },
12461
+ { route: '', handler: _aBJLZz, lazy: false, middleware: true, method: undefined },
12460
12462
  { route: '/api/neonTest', handler: _lazy_u5Dhoc, lazy: true, middleware: false, method: undefined },
12461
- { route: '/__nuxt_error', handler: _lazy_xpKmMm, lazy: true, middleware: false, method: undefined },
12463
+ { route: '/__nuxt_error', handler: _lazy_tJZ_5j, lazy: true, middleware: false, method: undefined },
12462
12464
  { route: '/__nuxt_island/**', handler: _SxA8c9, lazy: false, middleware: false, method: undefined },
12463
- { route: '', handler: _0WQsJo, lazy: false, middleware: false, method: undefined },
12464
- { route: '', handler: _fTCRwx, lazy: false, middleware: false, method: undefined },
12465
- { route: '', handler: _XNXCfD, lazy: false, middleware: false, method: undefined },
12466
- { route: '', handler: _MMBZXf, lazy: false, middleware: false, method: undefined },
12467
- { route: '', handler: _6UgyB1, lazy: false, middleware: false, method: undefined },
12468
- { route: '/api/_nuxt_icon/:collection', handler: _HWrzav, lazy: false, middleware: false, method: undefined },
12469
- { route: '/api/_neon/raw', handler: _TMe9Qo, lazy: false, middleware: false, method: undefined },
12470
- { route: '/api/_neon/count', handler: _8GcqiV, lazy: false, middleware: false, method: undefined },
12471
- { route: '/api/_neon/select', handler: _bdtZK_, lazy: false, middleware: false, method: undefined },
12472
- { route: '/api/_neon/insert', handler: _9heHrE, lazy: false, middleware: false, method: undefined },
12473
- { route: '/api/_neon/update', handler: _RbxPM9, lazy: false, middleware: false, method: undefined },
12474
- { route: '/api/_neon/delete', handler: _e8NFRG, lazy: false, middleware: false, method: undefined },
12475
- { route: '/api/_auth/session', handler: _VVR0b3, lazy: false, middleware: false, method: "delete" },
12476
- { route: '/api/_auth/session', handler: _DkeHIc, lazy: false, middleware: false, method: "get" },
12477
- { route: '', handler: _HNUtXX, lazy: false, middleware: true, method: undefined },
12478
- { route: '/robots.txt', handler: _WLd7Ho, lazy: false, middleware: false, method: undefined },
12479
- { route: '', handler: _mUSd9H, lazy: false, middleware: true, method: undefined },
12480
- { route: '/__sitemap__/nuxt-content-urls.json', handler: _kdhSXr, lazy: false, middleware: false, method: undefined },
12481
- { route: '/__sitemap__/style.xsl', handler: _KL_OxC, lazy: false, middleware: false, method: undefined },
12482
- { route: '/sitemap.xml', handler: _ZZjWkS, lazy: false, middleware: false, method: undefined },
12483
- { route: '/_i18n/:hash/:locale/messages.json', handler: _NNSCLT, lazy: false, middleware: false, method: undefined },
12484
- { route: '/__nuxt_content/:collection/sql_dump.txt', handler: _Q1fkYk, lazy: false, middleware: false, method: undefined },
12485
- { route: '/__nuxt_content/:collection/query', handler: _5WVRB1, lazy: false, middleware: false, method: undefined },
12486
- { route: '/_ipx/**', handler: _6_zlrq, lazy: false, middleware: false, method: undefined },
12487
- { route: '/**', handler: _lazy_xpKmMm, lazy: true, middleware: false, method: undefined }
12465
+ { route: '', handler: _P5KhqA, lazy: false, middleware: false, method: undefined },
12466
+ { route: '', handler: _uMfJTP, lazy: false, middleware: false, method: undefined },
12467
+ { route: '', handler: _TjfwyU, lazy: false, middleware: false, method: undefined },
12468
+ { route: '', handler: _3ipjNg, lazy: false, middleware: false, method: undefined },
12469
+ { route: '', handler: _p1m2Kd, lazy: false, middleware: false, method: undefined },
12470
+ { route: '/api/_nuxt_icon/:collection', handler: _s81vkT, lazy: false, middleware: false, method: undefined },
12471
+ { route: '/api/_neon/raw', handler: _zMSWhj, lazy: false, middleware: false, method: undefined },
12472
+ { route: '/api/_neon/count', handler: _AbTWGO, lazy: false, middleware: false, method: undefined },
12473
+ { route: '/api/_neon/select', handler: __n_ZRt, lazy: false, middleware: false, method: undefined },
12474
+ { route: '/api/_neon/insert', handler: _ZQvw52, lazy: false, middleware: false, method: undefined },
12475
+ { route: '/api/_neon/update', handler: _ptXdNj, lazy: false, middleware: false, method: undefined },
12476
+ { route: '/api/_neon/delete', handler: _gpW1sw, lazy: false, middleware: false, method: undefined },
12477
+ { route: '/api/_auth/session', handler: _2_fp1a, lazy: false, middleware: false, method: "delete" },
12478
+ { route: '/api/_auth/session', handler: _8YFWwD, lazy: false, middleware: false, method: "get" },
12479
+ { route: '', handler: _GDEiau, lazy: false, middleware: true, method: undefined },
12480
+ { route: '/robots.txt', handler: _Q9QB_M, lazy: false, middleware: false, method: undefined },
12481
+ { route: '', handler: _OXTxFn, lazy: false, middleware: true, method: undefined },
12482
+ { route: '/__sitemap__/nuxt-content-urls.json', handler: _W107Ad, lazy: false, middleware: false, method: undefined },
12483
+ { route: '/__sitemap__/style.xsl', handler: _aOy17u, lazy: false, middleware: false, method: undefined },
12484
+ { route: '/sitemap.xml', handler: _JukhrP, lazy: false, middleware: false, method: undefined },
12485
+ { route: '/_i18n/:hash/:locale/messages.json', handler: _Lnfmd1, lazy: false, middleware: false, method: undefined },
12486
+ { route: '/__nuxt_content/:collection/sql_dump.txt', handler: _Dc68hf, lazy: false, middleware: false, method: undefined },
12487
+ { route: '/__nuxt_content/:collection/query', handler: _Unj2pu, lazy: false, middleware: false, method: undefined },
12488
+ { route: '/_ipx/**', handler: _Qnnu2J, lazy: false, middleware: false, method: undefined },
12489
+ { route: '/**', handler: _lazy_tJZ_5j, lazy: true, middleware: false, method: undefined }
12488
12490
  ];
12489
12491
 
12490
12492
  function createNitroApp() {
@@ -12559,7 +12561,7 @@ function createNitroApp() {
12559
12561
  preemptive: true
12560
12562
  });
12561
12563
  const nodeHandler = toNodeListener(h3App);
12562
- const localCall = (aRequest) => b(
12564
+ const localCall = (aRequest) => b$1(
12563
12565
  nodeHandler,
12564
12566
  aRequest
12565
12567
  );
@@ -12567,7 +12569,7 @@ function createNitroApp() {
12567
12569
  if (!input.toString().startsWith("/")) {
12568
12570
  return globalThis.fetch(input, init);
12569
12571
  }
12570
- return C(
12572
+ return C$1(
12571
12573
  nodeHandler,
12572
12574
  input,
12573
12575
  init
@@ -12874,5 +12876,5 @@ function setupGracefulShutdown(listener, nitroApp) {
12874
12876
  });
12875
12877
  }
12876
12878
 
12877
- export { trapUnhandledNodeErrors as a, useNitroApp as b, defineEventHandler as c, destr as d, select as e, appRootTag as f, getNeonClient as g, appRootAttrs as h, appSpaLoaderTag as i, appSpaLoaderAttrs as j, buildAssetsURL as k, getResponseStatusText as l, getResponseStatus as m, appId as n, defineRenderHandler as o, publicAssetsURL as p, appTeleportTag as q, appTeleportAttrs as r, setupGracefulShutdown as s, toNodeListener as t, useRuntimeConfig as u, getQuery as v, createError$1 as w, appHead as x, getRouteRules as y };
12879
+ export { trapUnhandledNodeErrors as a, useNitroApp as b, defineEventHandler as c, destr as d, appRootTag as e, appRootAttrs as f, appSpaLoaderTag as g, appSpaLoaderAttrs as h, buildAssetsURL as i, getResponseStatusText as j, getResponseStatus as k, appId as l, defineRenderHandler as m, appTeleportTag as n, appTeleportAttrs as o, publicAssetsURL as p, getQuery as q, createError$1 as r, setupGracefulShutdown as s, toNodeListener as t, useRuntimeConfig as u, appHead as v, getRouteRules as w, relative as x, joinURL as y };
12878
12880
  //# sourceMappingURL=nitro.mjs.map