cloudcommerce 1.0.0-alpha.8 → 2.0.1

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 (3439) hide show
  1. package/.editorconfig +13 -0
  2. package/.eslintrc.cjs +3 -0
  3. package/.gitattributes +3 -0
  4. package/.github/renovate.json +59 -2
  5. package/.github/workflows/create-release.yml +3 -3
  6. package/.github/workflows/test-apps.yml +141 -0
  7. package/.gitmodules +9 -0
  8. package/.husky/commit-msg +0 -0
  9. package/.nvmrc +1 -0
  10. package/.vscode/extensions.json +5 -1
  11. package/.vscode/settings.json +23 -0
  12. package/CHANGELOG.md +3116 -0
  13. package/CONTRIBUTING.md +64 -0
  14. package/README.md +9 -3
  15. package/action.yml +348 -0
  16. package/commitlint.config.cjs +1 -1
  17. package/ecomplus-stores/barra-doce/.devcontainer/devcontainer.json +30 -0
  18. package/ecomplus-stores/barra-doce/.editorconfig +13 -0
  19. package/ecomplus-stores/barra-doce/.eslintrc.cjs +3 -0
  20. package/ecomplus-stores/barra-doce/.firebaserc +5 -0
  21. package/ecomplus-stores/barra-doce/.github/build-and-deploy +1 -0
  22. package/ecomplus-stores/barra-doce/.github/renovate.json +5 -0
  23. package/ecomplus-stores/barra-doce/.github/workflows/build-and-deploy.yml +36 -0
  24. package/ecomplus-stores/barra-doce/.github/workflows/calibreapp-image-actions.yml +23 -0
  25. package/ecomplus-stores/barra-doce/.gitpod.yml +12 -0
  26. package/ecomplus-stores/barra-doce/.idx/dev.nix +24 -0
  27. package/ecomplus-stores/barra-doce/.nvmrc +1 -0
  28. package/ecomplus-stores/barra-doce/.vscode/extensions.json +8 -0
  29. package/ecomplus-stores/barra-doce/.vscode/launch.json +11 -0
  30. package/ecomplus-stores/barra-doce/.vscode/settings.json +13 -0
  31. package/ecomplus-stores/barra-doce/LICENSE.md +230 -0
  32. package/ecomplus-stores/barra-doce/README.md +31 -0
  33. package/ecomplus-stores/barra-doce/SETUP.md +117 -0
  34. package/ecomplus-stores/barra-doce/SETUP.pt-BR.md +117 -0
  35. package/ecomplus-stores/barra-doce/conf/firebase.json +7 -0
  36. package/ecomplus-stores/barra-doce/functions/config.json +3 -0
  37. package/ecomplus-stores/barra-doce/functions/example.env +10 -0
  38. package/ecomplus-stores/barra-doce/functions/many/index.js +14 -0
  39. package/ecomplus-stores/barra-doce/functions/many/package.json +22 -0
  40. package/ecomplus-stores/barra-doce/functions/ssr/.eslintrc.cjs +6 -0
  41. package/ecomplus-stores/barra-doce/functions/ssr/astro.config.mjs +19 -0
  42. package/ecomplus-stores/barra-doce/functions/ssr/content/blog/3.md +24 -0
  43. package/ecomplus-stores/barra-doce/functions/ssr/content/blog/4.md +24 -0
  44. package/ecomplus-stores/barra-doce/functions/ssr/content/blog/5.md +24 -0
  45. package/ecomplus-stores/barra-doce/functions/ssr/content/blog/dos.md +24 -0
  46. package/ecomplus-stores/barra-doce/functions/ssr/content/blog/uno.md +24 -0
  47. package/ecomplus-stores/barra-doce/functions/ssr/content/extra-pages/contato.md +9 -0
  48. package/ecomplus-stores/barra-doce/functions/ssr/content/extra-pages/terms.md +20 -0
  49. package/ecomplus-stores/barra-doce/functions/ssr/content/extra-pages/trocas.md +9 -0
  50. package/ecomplus-stores/barra-doce/functions/ssr/content/layout.json +61 -0
  51. package/ecomplus-stores/barra-doce/functions/ssr/content/pages/brands.json +16 -0
  52. package/ecomplus-stores/barra-doce/functions/ssr/content/pages/categories.json +16 -0
  53. package/ecomplus-stores/barra-doce/functions/ssr/content/pages/collections.json +16 -0
  54. package/ecomplus-stores/barra-doce/functions/ssr/content/pages/home.json +53 -0
  55. package/ecomplus-stores/barra-doce/functions/ssr/content/pages/products.json +18 -0
  56. package/ecomplus-stores/barra-doce/functions/ssr/content/pages/search.json +7 -0
  57. package/ecomplus-stores/barra-doce/functions/ssr/content/settings.json +70 -0
  58. package/ecomplus-stores/barra-doce/functions/ssr/index.js +18 -0
  59. package/ecomplus-stores/barra-doce/functions/ssr/package.json +34 -0
  60. package/ecomplus-stores/barra-doce/functions/ssr/public/admin/.gitkeep +2 -0
  61. package/ecomplus-stores/barra-doce/functions/ssr/public/assets/.gitkeep +2 -0
  62. package/ecomplus-stores/barra-doce/functions/ssr/public/img/icon.png +0 -0
  63. package/ecomplus-stores/barra-doce/functions/ssr/public/img/large-icon.png +0 -0
  64. package/ecomplus-stores/barra-doce/functions/ssr/public/img/uploads/banner-forma-decora.jpg +0 -0
  65. package/ecomplus-stores/barra-doce/functions/ssr/public/img/uploads/ecom-icon.png +0 -0
  66. package/ecomplus-stores/barra-doce/functions/ssr/public/img/uploads/logo-barradoce.webp +0 -0
  67. package/ecomplus-stores/barra-doce/functions/ssr/public/img/uploads/og-image.png +0 -0
  68. package/ecomplus-stores/barra-doce/functions/ssr/public/robots.txt +6 -0
  69. package/ecomplus-stores/barra-doce/functions/ssr/scripts/build.sh +14 -0
  70. package/ecomplus-stores/barra-doce/functions/ssr/src/assets/style.css +90 -0
  71. package/ecomplus-stores/barra-doce/functions/ssr/src/components/AccountMenu.vue +97 -0
  72. package/ecomplus-stores/barra-doce/functions/ssr/src/components/AccountPage.vue +62 -0
  73. package/ecomplus-stores/barra-doce/functions/ssr/src/components/Banner.vue +66 -0
  74. package/ecomplus-stores/barra-doce/functions/ssr/src/components/BannersGrid.astro +25 -0
  75. package/ecomplus-stores/barra-doce/functions/ssr/src/components/BlogPosts.vue +88 -0
  76. package/ecomplus-stores/barra-doce/functions/ssr/src/components/Breadcrumbs.vue +49 -0
  77. package/ecomplus-stores/barra-doce/functions/ssr/src/components/CartItem.vue +64 -0
  78. package/ecomplus-stores/barra-doce/functions/ssr/src/components/CartSidebar.vue +69 -0
  79. package/ecomplus-stores/barra-doce/functions/ssr/src/components/CheckoutPage.vue +47 -0
  80. package/ecomplus-stores/barra-doce/functions/ssr/src/components/Collapse.vue +19 -0
  81. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ContentEntry.vue +23 -0
  82. package/ecomplus-stores/barra-doce/functions/ssr/src/components/DocBanners.vue +26 -0
  83. package/ecomplus-stores/barra-doce/functions/ssr/src/components/DocDescription.vue +28 -0
  84. package/ecomplus-stores/barra-doce/functions/ssr/src/components/FooterStamps.vue +62 -0
  85. package/ecomplus-stores/barra-doce/functions/ssr/src/components/HeroSlider.vue +56 -0
  86. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ImagesGallery.vue +152 -0
  87. package/ecomplus-stores/barra-doce/functions/ssr/src/components/LoginForm.vue +107 -0
  88. package/ecomplus-stores/barra-doce/functions/ssr/src/components/PageTitle.vue +43 -0
  89. package/ecomplus-stores/barra-doce/functions/ssr/src/components/Pagination.vue +67 -0
  90. package/ecomplus-stores/barra-doce/functions/ssr/src/components/PitchBar.vue +50 -0
  91. package/ecomplus-stores/barra-doce/functions/ssr/src/components/Prices.vue +95 -0
  92. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ProductCard.vue +113 -0
  93. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ProductDetails.vue +123 -0
  94. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ProductShelf.vue +71 -0
  95. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ProductSpecifications.vue +42 -0
  96. package/ecomplus-stores/barra-doce/functions/ssr/src/components/SearchFilters.vue +122 -0
  97. package/ecomplus-stores/barra-doce/functions/ssr/src/components/SearchModal.vue +102 -0
  98. package/ecomplus-stores/barra-doce/functions/ssr/src/components/SearchShowcase.vue +169 -0
  99. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopFooter.vue +102 -0
  100. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopHeader.vue +201 -0
  101. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopHeaderMenu.vue +66 -0
  102. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopHeaderSubmenu.vue +98 -0
  103. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopSidenav.vue +60 -0
  104. package/ecomplus-stores/barra-doce/functions/ssr/src/components/ShopSidenavCategory.vue +79 -0
  105. package/ecomplus-stores/barra-doce/functions/ssr/src/components/SkuSelector.vue +58 -0
  106. package/ecomplus-stores/barra-doce/functions/ssr/src/env.d.ts +18 -0
  107. package/ecomplus-stores/barra-doce/functions/ssr/src/layouts/Base.astro +15 -0
  108. package/ecomplus-stores/barra-doce/functions/ssr/src/layouts/PageFooter.astro +73 -0
  109. package/ecomplus-stores/barra-doce/functions/ssr/src/layouts/PageHeader.astro +38 -0
  110. package/ecomplus-stores/barra-doce/functions/ssr/src/main/Fallback.astro +33 -0
  111. package/ecomplus-stores/barra-doce/functions/ssr/src/main/Main.astro +26 -0
  112. package/ecomplus-stores/barra-doce/functions/ssr/src/main/content/Hero.astro +33 -0
  113. package/ecomplus-stores/barra-doce/functions/ssr/src/main/content/Sections.astro +75 -0
  114. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/[...slug].astro +69 -0
  115. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/_vue.ts +19 -0
  116. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/app/account.astro +38 -0
  117. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/app/index.astro +82 -0
  118. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/blog/[page].astro +71 -0
  119. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/blog/_blog-pages.ts +9 -0
  120. package/ecomplus-stores/barra-doce/functions/ssr/src/pages/~fallback.astro +30 -0
  121. package/ecomplus-stores/barra-doce/functions/ssr/src/scripts/InlineScripts.astro +10 -0
  122. package/ecomplus-stores/barra-doce/functions/ssr/tailwind.config.cjs +18 -0
  123. package/ecomplus-stores/barra-doce/functions/ssr/tsconfig.json +12 -0
  124. package/ecomplus-stores/barra-doce/functions/ssr/uno.config.cjs +5 -0
  125. package/ecomplus-stores/barra-doce/functions/with-apps/index.js +12 -0
  126. package/ecomplus-stores/barra-doce/functions/with-apps/package.json +22 -0
  127. package/ecomplus-stores/barra-doce/package.json +31 -0
  128. package/ecomplus-stores/barra-doce/scripts/install.sh +24 -0
  129. package/ecomplus-stores/tia-sonia/.devcontainer/devcontainer.json +30 -0
  130. package/ecomplus-stores/tia-sonia/.eslintrc.cjs +3 -0
  131. package/ecomplus-stores/tia-sonia/.firebaserc +5 -0
  132. package/ecomplus-stores/tia-sonia/.github/renovate.json +5 -0
  133. package/ecomplus-stores/tia-sonia/.github/workflows/build-and-deploy.yml +41 -0
  134. package/ecomplus-stores/tia-sonia/.github/workflows/calibreapp-image-actions.yml +23 -0
  135. package/ecomplus-stores/tia-sonia/.gitpod.yml +12 -0
  136. package/ecomplus-stores/tia-sonia/.idx/dev.nix +24 -0
  137. package/ecomplus-stores/tia-sonia/.nvmrc +1 -0
  138. package/ecomplus-stores/tia-sonia/.vscode/extensions.json +8 -0
  139. package/ecomplus-stores/tia-sonia/.vscode/settings.json +9 -0
  140. package/ecomplus-stores/tia-sonia/LICENSE.md +230 -0
  141. package/ecomplus-stores/tia-sonia/README.md +102 -0
  142. package/ecomplus-stores/tia-sonia/README.pt-BR.md +102 -0
  143. package/ecomplus-stores/tia-sonia/functions/config.json +3 -0
  144. package/ecomplus-stores/tia-sonia/functions/core/index.js +9 -0
  145. package/ecomplus-stores/tia-sonia/functions/core/package.json +20 -0
  146. package/ecomplus-stores/tia-sonia/functions/events/index.js +9 -0
  147. package/ecomplus-stores/tia-sonia/functions/events/package.json +21 -0
  148. package/ecomplus-stores/tia-sonia/functions/example.env +10 -0
  149. package/ecomplus-stores/tia-sonia/functions/modules/index.js +9 -0
  150. package/ecomplus-stores/tia-sonia/functions/modules/package.json +21 -0
  151. package/ecomplus-stores/tia-sonia/functions/passport/index.js +9 -0
  152. package/ecomplus-stores/tia-sonia/functions/passport/package.json +21 -0
  153. package/ecomplus-stores/tia-sonia/functions/ssr/.eslintrc.cjs +6 -0
  154. package/ecomplus-stores/tia-sonia/functions/ssr/astro.config.mjs +4 -0
  155. package/ecomplus-stores/tia-sonia/functions/ssr/content/blog.json +18 -0
  156. package/ecomplus-stores/tia-sonia/functions/ssr/content/brands.json +24 -0
  157. package/ecomplus-stores/tia-sonia/functions/ssr/content/categories.json +24 -0
  158. package/ecomplus-stores/tia-sonia/functions/ssr/content/code.json +5 -0
  159. package/ecomplus-stores/tia-sonia/functions/ssr/content/collections.json +24 -0
  160. package/ecomplus-stores/tia-sonia/functions/ssr/content/contacts.json +13 -0
  161. package/ecomplus-stores/tia-sonia/functions/ssr/content/footer.json +46 -0
  162. package/ecomplus-stores/tia-sonia/functions/ssr/content/header.json +35 -0
  163. package/ecomplus-stores/tia-sonia/functions/ssr/content/home.json +45 -0
  164. package/ecomplus-stores/tia-sonia/functions/ssr/content/info.json +18 -0
  165. package/ecomplus-stores/tia-sonia/functions/ssr/content/maintenance.json +6 -0
  166. package/ecomplus-stores/tia-sonia/functions/ssr/content/menu.json +6 -0
  167. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/contato.json +6 -0
  168. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/entrega.json +6 -0
  169. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/faq.json +6 -0
  170. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/pagamentos.json +6 -0
  171. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/privacidade.json +6 -0
  172. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/sobre-nos.json +6 -0
  173. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/termos.json +6 -0
  174. package/ecomplus-stores/tia-sonia/functions/ssr/content/pages/trocas.json +6 -0
  175. package/ecomplus-stores/tia-sonia/functions/ssr/content/posts/esta-loja-e-um-pwa.json +9 -0
  176. package/ecomplus-stores/tia-sonia/functions/ssr/content/products.json +32 -0
  177. package/ecomplus-stores/tia-sonia/functions/ssr/content/search.json +8 -0
  178. package/ecomplus-stores/tia-sonia/functions/ssr/content/settings.json +18 -0
  179. package/ecomplus-stores/tia-sonia/functions/ssr/content/social.json +5 -0
  180. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/analytics.json +11 -0
  181. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/compre-confie.json +11 -0
  182. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/ebit.json +11 -0
  183. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/fb-pixel.json +12 -0
  184. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/gmc-ratings.json +12 -0
  185. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/minicart.json +6 -0
  186. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/offers-notification.json +11 -0
  187. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/opinioes-verificadas.json +18 -0
  188. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/product-card.json +10 -0
  189. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/product.json +13 -0
  190. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/search-engine.json +8 -0
  191. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/search.json +6 -0
  192. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/tag-manager.json +12 -0
  193. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/tawkto.json +12 -0
  194. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/trustvox.json +15 -0
  195. package/ecomplus-stores/tia-sonia/functions/ssr/content/widgets/user.json +5 -0
  196. package/ecomplus-stores/tia-sonia/functions/ssr/index.js +18 -0
  197. package/ecomplus-stores/tia-sonia/functions/ssr/package.json +34 -0
  198. package/ecomplus-stores/tia-sonia/functions/ssr/public/admin/config.json +1 -0
  199. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/cms-preview.css +274 -0
  200. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/cms.css +114 -0
  201. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/cvv.png +0 -0
  202. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/bootstrap-icons/font/storefront-icons.woff2 +0 -0
  203. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/feather-icons/font/storefront-icons.woff2 +0 -0
  204. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/font-awesome/font/storefront-icons.woff2 +0 -0
  205. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/line-awesome/font/storefront-icons.woff2 +0 -0
  206. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/icons/tabler-icons/font/storefront-icons.woff2 +0 -0
  207. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/img-placeholder.png +0 -0
  208. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/payments.png +0 -0
  209. package/ecomplus-stores/tia-sonia/functions/ssr/public/assets/ssl-safe.png +0 -0
  210. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/icon.png +0 -0
  211. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/large-icon.png +0 -0
  212. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-acucares.webp +0 -0
  213. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-barras.webp +0 -0
  214. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-bebidas-em-po.webp +0 -0
  215. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-cookies.webp +0 -0
  216. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-granola-tia-sonia.webp +0 -0
  217. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-integrais.webp +0 -0
  218. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-naturais.webp +0 -0
  219. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-pastas-tia-sonia.webp +0 -0
  220. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-snacks.webp +0 -0
  221. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/categoria-ultrabar.webp +0 -0
  222. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/daniel-cady.webp +0 -0
  223. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/favicon.png +0 -0
  224. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/fimdeano1920x736.jpg +0 -0
  225. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/granola-tradicional-lata-verso.webp +0 -0
  226. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/granola-tradicional-lata.webp +0 -0
  227. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/granolas-em-pote.png +0 -0
  228. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/granolas-espalhadas.png +0 -0
  229. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/hero-acai-granola.jpg +0 -0
  230. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/hero-cafe-tapioca-aveia.jpg +0 -0
  231. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/hero-piquenique-snack-cookies.jpg +0 -0
  232. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/icon.png +0 -0
  233. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/large-icon.png +0 -0
  234. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/machu-picchu-1500.jpg +0 -0
  235. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/og-image.png +0 -0
  236. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/selo-ibd-120-80.webp +0 -0
  237. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/selo-organico-120-80.webp +0 -0
  238. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/selo-usda-120-80.webp +0 -0
  239. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/selo-vegano-120-80.webp +0 -0
  240. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/ssl-safe.png +0 -0
  241. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/tia-sonia-real.png +0 -0
  242. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/tiasonia-logo-mono.png +0 -0
  243. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/tiasonia-logo-var.png +0 -0
  244. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/tiasonia-logo.png +0 -0
  245. package/ecomplus-stores/tia-sonia/functions/ssr/public/img/uploads/trustvox.png +0 -0
  246. package/ecomplus-stores/tia-sonia/functions/ssr/public/robots.txt +8 -0
  247. package/ecomplus-stores/tia-sonia/functions/ssr/src/assets/.gitkeep +0 -0
  248. package/ecomplus-stores/tia-sonia/functions/ssr/src/assets/prices.css +3 -0
  249. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/AboutUs.astro +77 -0
  250. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/BrandTestimonials.vue +134 -0
  251. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/CategoriesGrid.vue +32 -0
  252. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/CategoriesSlider.vue +117 -0
  253. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/HeroBanner.vue +112 -0
  254. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/PitchBar.vue +97 -0
  255. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/TheHeader.vue +201 -0
  256. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/header/HeaderBarLink.vue +5 -0
  257. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/header/HeaderButtonLink.vue +5 -0
  258. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/header/HeaderButtons.vue +46 -0
  259. package/ecomplus-stores/tia-sonia/functions/ssr/src/components/header/HeaderNav.vue +14 -0
  260. package/ecomplus-stores/tia-sonia/functions/ssr/src/env.d.ts +5 -0
  261. package/ecomplus-stores/tia-sonia/functions/ssr/src/layouts/Base.astro +49 -0
  262. package/ecomplus-stores/tia-sonia/functions/ssr/src/layouts/Checkout.astro +0 -0
  263. package/ecomplus-stores/tia-sonia/functions/ssr/src/layouts/Pages.astro +44 -0
  264. package/ecomplus-stores/tia-sonia/functions/ssr/src/layouts/PagesHeader.astro +98 -0
  265. package/ecomplus-stores/tia-sonia/functions/ssr/src/main/Fallback.astro +15 -0
  266. package/ecomplus-stores/tia-sonia/functions/ssr/src/main/Home.astro +172 -0
  267. package/ecomplus-stores/tia-sonia/functions/ssr/src/main/Wildcard.astro +21 -0
  268. package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/[...slug].astro +36 -0
  269. package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/_vue.ts +3 -0
  270. package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/app/account.astro +0 -0
  271. package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/app/index.astro +0 -0
  272. package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/fallback.astro +19 -0
  273. package/ecomplus-stores/tia-sonia/functions/ssr/src/pages/index.astro +31 -0
  274. package/ecomplus-stores/tia-sonia/functions/ssr/src/scripts/head-scripts.ts +13 -0
  275. package/ecomplus-stores/tia-sonia/functions/ssr/src/scripts/modules-info-preset.ts +27 -0
  276. package/ecomplus-stores/tia-sonia/functions/ssr/tailwind.config.cjs +15 -0
  277. package/ecomplus-stores/tia-sonia/functions/ssr/tsconfig.json +16 -0
  278. package/ecomplus-stores/tia-sonia/functions/ssr/uno.config.cjs +5 -0
  279. package/ecomplus-stores/tia-sonia/package.json +28 -0
  280. package/ecomplus-stores/tia-sonia/scripts/install.sh +24 -0
  281. package/package.json +35 -25
  282. package/packages/__skeleton/CHANGELOG.md +1 -0
  283. package/packages/__skeleton/README.md +1 -0
  284. package/packages/__skeleton/package.json +27 -0
  285. package/packages/__skeleton/src/index.ts +0 -0
  286. package/packages/__skeleton/tsconfig.json +3 -0
  287. package/packages/api/lib/api.d.ts +125 -0
  288. package/packages/api/lib/api.js +215 -0
  289. package/packages/api/lib/api.js.map +1 -0
  290. package/packages/api/package.json +10 -3
  291. package/packages/api/src/api.ts +298 -0
  292. package/packages/api/tests/index.test.ts +82 -0
  293. package/packages/api/tsconfig.json +2 -97
  294. package/packages/api/types/applications.d.ts +180 -0
  295. package/packages/api/types/authentications.d.ts +121 -0
  296. package/packages/api/types/brands.d.ts +174 -0
  297. package/packages/api/types/carts.d.ts +380 -0
  298. package/packages/api/types/categories.d.ts +216 -0
  299. package/packages/api/types/collections.d.ts +174 -0
  300. package/packages/api/types/customers.d.ts +535 -0
  301. package/packages/api/types/grids.d.ts +172 -0
  302. package/packages/api/types/orders.d.ts +1743 -0
  303. package/packages/api/types/products.d.ts +1441 -0
  304. package/packages/api/types/stores.d.ts +138 -0
  305. package/packages/api/types.d.ts +509 -0
  306. package/packages/api/types.ts +2 -0
  307. package/packages/apps/affiliate-program/CHANGELOG.md +1 -0
  308. package/packages/apps/affiliate-program/README.md +1 -0
  309. package/packages/apps/affiliate-program/lib/affiliate-program.js +9 -0
  310. package/packages/apps/affiliate-program/lib/affiliate-program.js.map +1 -0
  311. package/packages/apps/affiliate-program/lib/events-to-affiliate-program.js +153 -0
  312. package/packages/apps/affiliate-program/lib/events-to-affiliate-program.js.map +1 -0
  313. package/packages/apps/affiliate-program/lib/index.js +2 -0
  314. package/packages/apps/affiliate-program/lib/index.js.map +1 -0
  315. package/packages/apps/affiliate-program/package.json +30 -0
  316. package/packages/apps/affiliate-program/src/affiliate-program.ts +14 -0
  317. package/packages/apps/affiliate-program/src/events-to-affiliate-program.ts +183 -0
  318. package/packages/apps/affiliate-program/src/index.ts +1 -0
  319. package/packages/apps/affiliate-program/tsconfig.json +3 -0
  320. package/packages/apps/correios/CHANGELOG.md +1 -0
  321. package/packages/apps/correios/README.md +1 -0
  322. package/packages/apps/correios/lib/correios.d.ts +3 -0
  323. package/packages/apps/correios/lib/correios.js +7 -0
  324. package/packages/apps/correios/lib/correios.js.map +1 -0
  325. package/packages/apps/correios/lib/index.d.ts +1 -0
  326. package/packages/apps/correios/lib/index.js +2 -0
  327. package/packages/apps/correios/lib/index.js.map +1 -0
  328. package/packages/apps/correios/lib-mjs/calculate-shipping.mjs +430 -0
  329. package/packages/apps/correios/lib-mjs/correios-db.mjs +189 -0
  330. package/packages/apps/correios/lib-mjs/correios-v2.mjs +84 -0
  331. package/packages/apps/correios/lib-mjs/utils/constants-parsers.mjs +135 -0
  332. package/packages/apps/correios/lib-mjs/utils/correios-axios.mjs +93 -0
  333. package/packages/apps/correios/package.json +38 -0
  334. package/packages/apps/correios/scripts/tests.sh +11 -0
  335. package/packages/apps/correios/src/correios.ts +8 -0
  336. package/packages/apps/correios/src/index.ts +1 -0
  337. package/packages/apps/correios/tests/calculate-shipping.test.mjs +45 -0
  338. package/packages/apps/correios/tsconfig.json +6 -0
  339. package/packages/apps/custom-payment/CHANGELOG.md +1 -0
  340. package/packages/apps/custom-payment/README.md +1 -0
  341. package/packages/apps/custom-payment/lib/custom-payment-create-transaction.d.ts +72 -0
  342. package/packages/apps/custom-payment/lib/custom-payment-create-transaction.js +55 -0
  343. package/packages/apps/custom-payment/lib/custom-payment-create-transaction.js.map +1 -0
  344. package/packages/apps/custom-payment/lib/custom-payment-list-payments.d.ts +3 -0
  345. package/packages/apps/custom-payment/lib/custom-payment-list-payments.js +79 -0
  346. package/packages/apps/custom-payment/lib/custom-payment-list-payments.js.map +1 -0
  347. package/packages/apps/custom-payment/lib/custom-payment.d.ts +72 -0
  348. package/packages/apps/custom-payment/lib/custom-payment.js +11 -0
  349. package/packages/apps/custom-payment/lib/custom-payment.js.map +1 -0
  350. package/packages/apps/custom-payment/lib/index.d.ts +1 -0
  351. package/packages/apps/custom-payment/lib/index.js +2 -0
  352. package/packages/apps/custom-payment/lib/index.js.map +1 -0
  353. package/packages/apps/custom-payment/package.json +27 -0
  354. package/packages/apps/custom-payment/src/custom-payment-create-transaction.ts +67 -0
  355. package/packages/apps/custom-payment/src/custom-payment-list-payments.ts +96 -0
  356. package/packages/apps/custom-payment/src/custom-payment.ts +11 -0
  357. package/packages/apps/custom-payment/src/index.ts +1 -0
  358. package/packages/apps/custom-payment/tsconfig.json +6 -0
  359. package/packages/apps/custom-shipping/CHANGELOG.md +1 -0
  360. package/packages/apps/custom-shipping/README.md +1 -0
  361. package/packages/apps/custom-shipping/lib/custom-shipping.d.ts +2 -0
  362. package/packages/apps/custom-shipping/lib/custom-shipping.js +6 -0
  363. package/packages/apps/custom-shipping/lib/custom-shipping.js.map +1 -0
  364. package/packages/apps/custom-shipping/lib/index.d.ts +1 -0
  365. package/packages/apps/custom-shipping/lib/index.js +2 -0
  366. package/packages/apps/custom-shipping/lib/index.js.map +1 -0
  367. package/packages/apps/custom-shipping/lib-mjs/calculate-custom-shipping.mjs +251 -0
  368. package/packages/apps/custom-shipping/package.json +29 -0
  369. package/packages/apps/custom-shipping/src/custom-shipping.ts +7 -0
  370. package/packages/apps/custom-shipping/src/index.ts +1 -0
  371. package/packages/apps/custom-shipping/tests/calculate-shipping.test.mjs +37 -0
  372. package/packages/apps/custom-shipping/tsconfig.json +6 -0
  373. package/packages/apps/datafrete/CHANGELOG.md +1 -0
  374. package/packages/apps/datafrete/README.md +1 -0
  375. package/packages/apps/datafrete/lib/datafrete-webhook.d.ts +4 -0
  376. package/packages/apps/datafrete/lib/datafrete-webhook.js +108 -0
  377. package/packages/apps/datafrete/lib/datafrete-webhook.js.map +1 -0
  378. package/packages/apps/datafrete/lib/datafrete.d.ts +2 -0
  379. package/packages/apps/datafrete/lib/datafrete.js +6 -0
  380. package/packages/apps/datafrete/lib/datafrete.js.map +1 -0
  381. package/packages/apps/datafrete/lib/index.d.ts +1 -0
  382. package/packages/apps/datafrete/lib/index.js +2 -0
  383. package/packages/apps/datafrete/lib/index.js.map +1 -0
  384. package/packages/apps/datafrete/lib-mjs/calculate-datafrete.mjs +277 -0
  385. package/packages/apps/datafrete/package.json +37 -0
  386. package/packages/apps/datafrete/src/datafrete-webhook.ts +131 -0
  387. package/packages/apps/datafrete/src/datafrete.ts +7 -0
  388. package/packages/apps/datafrete/src/index.ts +1 -0
  389. package/packages/apps/datafrete/tsconfig.json +6 -0
  390. package/packages/apps/datafrete/webhook.js +1 -0
  391. package/packages/apps/discounts/lib/discounts.d.ts +2 -0
  392. package/packages/apps/discounts/lib/discounts.js +6 -0
  393. package/packages/apps/discounts/lib/discounts.js.map +1 -0
  394. package/packages/apps/discounts/lib/index.d.ts +1 -0
  395. package/packages/apps/discounts/lib/index.js +2 -0
  396. package/packages/apps/discounts/lib/index.js.map +1 -0
  397. package/packages/apps/discounts/lib-mjs/apply-discount.mjs +429 -0
  398. package/packages/apps/discounts/lib-mjs/helpers.mjs +169 -0
  399. package/packages/apps/discounts/package.json +9 -4
  400. package/packages/apps/discounts/src/discounts.ts +7 -0
  401. package/packages/apps/discounts/src/index.ts +1 -0
  402. package/packages/apps/discounts/tsconfig.json +6 -0
  403. package/packages/apps/emails/CHANGELOG.md +1 -0
  404. package/packages/apps/emails/README.md +1 -0
  405. package/packages/apps/emails/lib/events-to-app-emails.js +19 -0
  406. package/packages/apps/emails/lib/events-to-app-emails.js.map +1 -0
  407. package/packages/apps/emails/lib/firebase.js +19 -0
  408. package/packages/apps/emails/lib/firebase.js.map +1 -0
  409. package/packages/apps/emails/lib/functios-lib/abandoned-carts.js +87 -0
  410. package/packages/apps/emails/lib/functios-lib/abandoned-carts.js.map +1 -0
  411. package/packages/apps/emails/lib/functios-lib/handle-orders.js +174 -0
  412. package/packages/apps/emails/lib/functios-lib/handle-orders.js.map +1 -0
  413. package/packages/apps/emails/lib/functios-lib/trigger-actions.js +178 -0
  414. package/packages/apps/emails/lib/functios-lib/trigger-actions.js.map +1 -0
  415. package/packages/apps/emails/lib/functios-lib/utils.js +33 -0
  416. package/packages/apps/emails/lib/functios-lib/utils.js.map +1 -0
  417. package/packages/apps/emails/lib/index.js +2 -0
  418. package/packages/apps/emails/lib/index.js.map +1 -0
  419. package/packages/apps/emails/package.json +33 -0
  420. package/packages/apps/emails/src/events-to-app-emails.ts +27 -0
  421. package/packages/apps/emails/src/firebase.ts +25 -0
  422. package/packages/apps/emails/src/functios-lib/abandoned-carts.ts +101 -0
  423. package/packages/apps/emails/src/functios-lib/handle-orders.ts +232 -0
  424. package/packages/apps/emails/src/functios-lib/trigger-actions.ts +177 -0
  425. package/packages/apps/emails/src/functios-lib/utils.ts +45 -0
  426. package/packages/apps/emails/src/index.ts +1 -0
  427. package/packages/apps/emails/tsconfig.json +3 -0
  428. package/packages/apps/fb-conversions/CHANGELOG.md +1 -0
  429. package/packages/apps/fb-conversions/README.md +1 -0
  430. package/packages/apps/fb-conversions/lib/fb-conversions-events.js +178 -0
  431. package/packages/apps/fb-conversions/lib/fb-conversions-events.js.map +1 -0
  432. package/packages/apps/fb-conversions/lib/functions-lib/create-fb-objects.js +69 -0
  433. package/packages/apps/fb-conversions/lib/functions-lib/create-fb-objects.js.map +1 -0
  434. package/packages/apps/fb-conversions/lib/index.js +2 -0
  435. package/packages/apps/fb-conversions/lib/index.js.map +1 -0
  436. package/packages/apps/fb-conversions/package.json +33 -0
  437. package/packages/apps/fb-conversions/src/fb-conversions-events.ts +243 -0
  438. package/packages/apps/fb-conversions/src/functions-lib/create-fb-objects.ts +104 -0
  439. package/packages/apps/fb-conversions/src/index.ts +1 -0
  440. package/packages/apps/fb-conversions/tsconfig.json +3 -0
  441. package/packages/apps/flash-courier/CHANGELOG.md +1 -0
  442. package/packages/apps/flash-courier/README.md +1 -0
  443. package/packages/apps/flash-courier/events.js +1 -0
  444. package/packages/apps/flash-courier/lib/flash-courier-events.d.ts +5 -0
  445. package/packages/apps/flash-courier/lib/flash-courier-events.js +14 -0
  446. package/packages/apps/flash-courier/lib/flash-courier-events.js.map +1 -0
  447. package/packages/apps/flash-courier/lib/flash-courier.d.ts +2 -0
  448. package/packages/apps/flash-courier/lib/flash-courier.js +6 -0
  449. package/packages/apps/flash-courier/lib/flash-courier.js.map +1 -0
  450. package/packages/apps/flash-courier/lib/index.d.ts +1 -0
  451. package/packages/apps/flash-courier/lib/index.js +2 -0
  452. package/packages/apps/flash-courier/lib/index.js.map +1 -0
  453. package/packages/apps/flash-courier/lib-mjs/calculate-flash-courier.mjs +246 -0
  454. package/packages/apps/flash-courier/lib-mjs/update-tracking.mjs +176 -0
  455. package/packages/apps/flash-courier/package.json +34 -0
  456. package/packages/apps/flash-courier/src/flash-courier-events.ts +13 -0
  457. package/packages/apps/flash-courier/src/flash-courier.ts +7 -0
  458. package/packages/apps/flash-courier/src/index.ts +1 -0
  459. package/packages/apps/flash-courier/tsconfig.json +6 -0
  460. package/packages/apps/frenet/CHANGELOG.md +1 -0
  461. package/packages/apps/frenet/README.md +1 -0
  462. package/packages/apps/frenet/events.js +1 -0
  463. package/packages/apps/frenet/lib/frenet-events.d.ts +6 -0
  464. package/packages/apps/frenet/lib/frenet-events.js +19 -0
  465. package/packages/apps/frenet/lib/frenet-events.js.map +1 -0
  466. package/packages/apps/frenet/lib/frenet.d.ts +2 -0
  467. package/packages/apps/frenet/lib/frenet.js +6 -0
  468. package/packages/apps/frenet/lib/frenet.js.map +1 -0
  469. package/packages/apps/frenet/lib/functions-lib/database.d.ts +19 -0
  470. package/packages/apps/frenet/lib/functions-lib/database.js +128 -0
  471. package/packages/apps/frenet/lib/functions-lib/database.js.map +1 -0
  472. package/packages/apps/frenet/lib/functions-lib/events-to-frenet.d.ts +3 -0
  473. package/packages/apps/frenet/lib/functions-lib/events-to-frenet.js +48 -0
  474. package/packages/apps/frenet/lib/functions-lib/events-to-frenet.js.map +1 -0
  475. package/packages/apps/frenet/lib/functions-lib/fetch-tracking-code.d.ts +2 -0
  476. package/packages/apps/frenet/lib/functions-lib/fetch-tracking-code.js +19 -0
  477. package/packages/apps/frenet/lib/functions-lib/fetch-tracking-code.js.map +1 -0
  478. package/packages/apps/frenet/lib/functions-lib/remove-delivered.d.ts +2 -0
  479. package/packages/apps/frenet/lib/functions-lib/remove-delivered.js +30 -0
  480. package/packages/apps/frenet/lib/functions-lib/remove-delivered.js.map +1 -0
  481. package/packages/apps/frenet/lib/functions-lib/tracking-codes.d.ts +2 -0
  482. package/packages/apps/frenet/lib/functions-lib/tracking-codes.js +139 -0
  483. package/packages/apps/frenet/lib/functions-lib/tracking-codes.js.map +1 -0
  484. package/packages/apps/frenet/lib/functions-lib/update-fulfillments.d.ts +6 -0
  485. package/packages/apps/frenet/lib/functions-lib/update-fulfillments.js +49 -0
  486. package/packages/apps/frenet/lib/functions-lib/update-fulfillments.js.map +1 -0
  487. package/packages/apps/frenet/lib/index.d.ts +1 -0
  488. package/packages/apps/frenet/lib/index.js +2 -0
  489. package/packages/apps/frenet/lib/index.js.map +1 -0
  490. package/packages/apps/frenet/lib-mjs/calculate-frenet.mjs +162 -0
  491. package/packages/apps/frenet/package.json +38 -0
  492. package/packages/apps/frenet/scripts/tests.sh +7 -0
  493. package/packages/apps/frenet/src/frenet-events.ts +25 -0
  494. package/packages/apps/frenet/src/frenet.ts +7 -0
  495. package/packages/apps/frenet/src/functions-lib/database.ts +160 -0
  496. package/packages/apps/frenet/src/functions-lib/events-to-frenet.ts +62 -0
  497. package/packages/apps/frenet/src/functions-lib/fetch-tracking-code.ts +22 -0
  498. package/packages/apps/frenet/src/functions-lib/remove-delivered.ts +31 -0
  499. package/packages/apps/frenet/src/functions-lib/tracking-codes.ts +171 -0
  500. package/packages/apps/frenet/src/functions-lib/update-fulfillments.ts +57 -0
  501. package/packages/apps/frenet/src/index.ts +1 -0
  502. package/packages/apps/frenet/tests/calculate-shipping.test.mjs +37 -0
  503. package/packages/apps/frenet/tsconfig.json +6 -0
  504. package/packages/apps/galaxpay/CHANGELOG.md +1 -0
  505. package/packages/apps/galaxpay/README.md +1 -0
  506. package/packages/apps/galaxpay/assets/onload-expression.js +23 -0
  507. package/packages/apps/galaxpay/assets/onload-expression.min.js +1 -0
  508. package/packages/apps/galaxpay/events.js +1 -0
  509. package/packages/apps/galaxpay/lib/functions-lib/all-parses.d.ts +5 -0
  510. package/packages/apps/galaxpay/lib/functions-lib/all-parses.js +79 -0
  511. package/packages/apps/galaxpay/lib/functions-lib/all-parses.js.map +1 -0
  512. package/packages/apps/galaxpay/lib/functions-lib/ecom/events-to-galaxpay.d.ts +3 -0
  513. package/packages/apps/galaxpay/lib/functions-lib/ecom/events-to-galaxpay.js +91 -0
  514. package/packages/apps/galaxpay/lib/functions-lib/ecom/events-to-galaxpay.js.map +1 -0
  515. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-access.d.ts +11 -0
  516. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-access.js +60 -0
  517. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-access.js.map +1 -0
  518. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-axios.d.ts +2 -0
  519. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-axios.js +20 -0
  520. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/create-axios.js.map +1 -0
  521. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/gerate-token.d.ts +2 -0
  522. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/gerate-token.js +32 -0
  523. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/auth/gerate-token.js.map +1 -0
  524. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/handle-plans.d.ts +30 -0
  525. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/handle-plans.js +73 -0
  526. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/handle-plans.js.map +1 -0
  527. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/update-subscription.d.ts +8 -0
  528. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/update-subscription.js +73 -0
  529. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/update-subscription.js.map +1 -0
  530. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/webhook.d.ts +3 -0
  531. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/webhook.js +372 -0
  532. package/packages/apps/galaxpay/lib/functions-lib/galaxpay/webhook.js.map +1 -0
  533. package/packages/apps/galaxpay/lib/functions-lib/utils.d.ts +8 -0
  534. package/packages/apps/galaxpay/lib/functions-lib/utils.js +17 -0
  535. package/packages/apps/galaxpay/lib/functions-lib/utils.js.map +1 -0
  536. package/packages/apps/galaxpay/lib/galaxpay-create-transaction.d.ts +75 -0
  537. package/packages/apps/galaxpay/lib/galaxpay-create-transaction.js +215 -0
  538. package/packages/apps/galaxpay/lib/galaxpay-create-transaction.js.map +1 -0
  539. package/packages/apps/galaxpay/lib/galaxpay-events.d.ts +6 -0
  540. package/packages/apps/galaxpay/lib/galaxpay-events.js +21 -0
  541. package/packages/apps/galaxpay/lib/galaxpay-events.js.map +1 -0
  542. package/packages/apps/galaxpay/lib/galaxpay-list-payments.d.ts +7 -0
  543. package/packages/apps/galaxpay/lib/galaxpay-list-payments.js +121 -0
  544. package/packages/apps/galaxpay/lib/galaxpay-list-payments.js.map +1 -0
  545. package/packages/apps/galaxpay/lib/galaxpay.d.ts +80 -0
  546. package/packages/apps/galaxpay/lib/galaxpay.js +12 -0
  547. package/packages/apps/galaxpay/lib/galaxpay.js.map +1 -0
  548. package/packages/apps/galaxpay/lib/index.d.ts +1 -0
  549. package/packages/apps/galaxpay/lib/index.js +3 -0
  550. package/packages/apps/galaxpay/lib/index.js.map +1 -0
  551. package/packages/apps/galaxpay/package.json +36 -0
  552. package/packages/apps/galaxpay/scripts/build.sh +4 -0
  553. package/packages/apps/galaxpay/src/functions-lib/all-parses.ts +91 -0
  554. package/packages/apps/galaxpay/src/functions-lib/ecom/events-to-galaxpay.ts +104 -0
  555. package/packages/apps/galaxpay/src/functions-lib/galaxpay/auth/create-access.ts +80 -0
  556. package/packages/apps/galaxpay/src/functions-lib/galaxpay/auth/create-axios.ts +21 -0
  557. package/packages/apps/galaxpay/src/functions-lib/galaxpay/auth/gerate-token.ts +36 -0
  558. package/packages/apps/galaxpay/src/functions-lib/galaxpay/handle-plans.ts +91 -0
  559. package/packages/apps/galaxpay/src/functions-lib/galaxpay/update-subscription.ts +92 -0
  560. package/packages/apps/galaxpay/src/functions-lib/galaxpay/webhook.ts +484 -0
  561. package/packages/apps/galaxpay/src/functions-lib/utils.ts +23 -0
  562. package/packages/apps/galaxpay/src/galaxpay-create-transaction.ts +257 -0
  563. package/packages/apps/galaxpay/src/galaxpay-events.ts +28 -0
  564. package/packages/apps/galaxpay/src/galaxpay-list-payments.ts +148 -0
  565. package/packages/apps/galaxpay/src/galaxpay.ts +12 -0
  566. package/packages/apps/galaxpay/src/index.ts +2 -0
  567. package/packages/apps/galaxpay/tsconfig.json +6 -0
  568. package/packages/apps/galaxpay/types/config-app.d.ts +99 -0
  569. package/packages/apps/google-analytics/CHANGELOG.md +1 -0
  570. package/packages/apps/google-analytics/README.md +1 -0
  571. package/packages/apps/google-analytics/lib/google-analytics-events.js +129 -0
  572. package/packages/apps/google-analytics/lib/google-analytics-events.js.map +1 -0
  573. package/packages/apps/google-analytics/lib/index.js +2 -0
  574. package/packages/apps/google-analytics/lib/index.js.map +1 -0
  575. package/packages/apps/google-analytics/package.json +32 -0
  576. package/packages/apps/google-analytics/src/google-analytics-events.ts +168 -0
  577. package/packages/apps/google-analytics/src/index.ts +1 -0
  578. package/packages/apps/google-analytics/tsconfig.json +3 -0
  579. package/packages/apps/google-analytics/types.d.ts +43 -0
  580. package/packages/apps/jadlog/CHANGELOG.md +1 -0
  581. package/packages/apps/jadlog/README.md +1 -0
  582. package/packages/apps/jadlog/lib/index.d.ts +1 -0
  583. package/packages/apps/jadlog/lib/index.js +2 -0
  584. package/packages/apps/jadlog/lib/index.js.map +1 -0
  585. package/packages/apps/jadlog/lib/jadlog.d.ts +2 -0
  586. package/packages/apps/jadlog/lib/jadlog.js +6 -0
  587. package/packages/apps/jadlog/lib/jadlog.js.map +1 -0
  588. package/packages/apps/jadlog/lib-mjs/calculate-jadlog.mjs +421 -0
  589. package/packages/apps/jadlog/lib-mjs/deadlines/range-0.mjs +147 -0
  590. package/packages/apps/jadlog/lib-mjs/deadlines/range-1.mjs +1149 -0
  591. package/packages/apps/jadlog/lib-mjs/deadlines/range-2.mjs +1137 -0
  592. package/packages/apps/jadlog/lib-mjs/deadlines/range-3.mjs +1638 -0
  593. package/packages/apps/jadlog/lib-mjs/deadlines/range-4.mjs +1089 -0
  594. package/packages/apps/jadlog/lib-mjs/deadlines/range-5.mjs +1101 -0
  595. package/packages/apps/jadlog/lib-mjs/deadlines/range-6.mjs +1893 -0
  596. package/packages/apps/jadlog/lib-mjs/deadlines/range-7.mjs +1371 -0
  597. package/packages/apps/jadlog/lib-mjs/deadlines/range-8.mjs +1401 -0
  598. package/packages/apps/jadlog/lib-mjs/deadlines/range-9.mjs +963 -0
  599. package/packages/apps/jadlog/lib-mjs/jadlog-get-deadlines.mjs +32 -0
  600. package/packages/apps/jadlog/package.json +28 -0
  601. package/packages/apps/jadlog/src/index.ts +1 -0
  602. package/packages/apps/jadlog/src/jadlog.ts +7 -0
  603. package/packages/apps/jadlog/tsconfig.json +6 -0
  604. package/packages/apps/loyalty-points/CHANGELOG.md +1 -0
  605. package/packages/apps/loyalty-points/README.md +1 -0
  606. package/packages/apps/loyalty-points/events.js +1 -0
  607. package/packages/apps/loyalty-points/lib/functions-lib/cron-add-points.d.ts +2 -0
  608. package/packages/apps/loyalty-points/lib/functions-lib/cron-add-points.js +98 -0
  609. package/packages/apps/loyalty-points/lib/functions-lib/cron-add-points.js.map +1 -0
  610. package/packages/apps/loyalty-points/lib/functions-lib/get-program-id.d.ts +5 -0
  611. package/packages/apps/loyalty-points/lib/functions-lib/get-program-id.js +20 -0
  612. package/packages/apps/loyalty-points/lib/functions-lib/get-program-id.js.map +1 -0
  613. package/packages/apps/loyalty-points/lib/functions-lib/handle-loyalty-points-event.d.ts +3 -0
  614. package/packages/apps/loyalty-points/lib/functions-lib/handle-loyalty-points-event.js +208 -0
  615. package/packages/apps/loyalty-points/lib/functions-lib/handle-loyalty-points-event.js.map +1 -0
  616. package/packages/apps/loyalty-points/lib/index.d.ts +1 -0
  617. package/packages/apps/loyalty-points/lib/index.js +2 -0
  618. package/packages/apps/loyalty-points/lib/index.js.map +1 -0
  619. package/packages/apps/loyalty-points/lib/loyalty-create-transaction.d.ts +80 -0
  620. package/packages/apps/loyalty-points/lib/loyalty-create-transaction.js +215 -0
  621. package/packages/apps/loyalty-points/lib/loyalty-create-transaction.js.map +1 -0
  622. package/packages/apps/loyalty-points/lib/loyalty-list-payments.d.ts +3 -0
  623. package/packages/apps/loyalty-points/lib/loyalty-list-payments.js +49 -0
  624. package/packages/apps/loyalty-points/lib/loyalty-list-payments.js.map +1 -0
  625. package/packages/apps/loyalty-points/lib/loyalty-points-events.d.ts +6 -0
  626. package/packages/apps/loyalty-points/lib/loyalty-points-events.js +37 -0
  627. package/packages/apps/loyalty-points/lib/loyalty-points-events.js.map +1 -0
  628. package/packages/apps/loyalty-points/lib/loyalty-points.d.ts +81 -0
  629. package/packages/apps/loyalty-points/lib/loyalty-points.js +12 -0
  630. package/packages/apps/loyalty-points/lib/loyalty-points.js.map +1 -0
  631. package/packages/apps/loyalty-points/package.json +35 -0
  632. package/packages/apps/loyalty-points/src/functions-lib/cron-add-points.ts +104 -0
  633. package/packages/apps/loyalty-points/src/functions-lib/get-program-id.ts +23 -0
  634. package/packages/apps/loyalty-points/src/functions-lib/handle-loyalty-points-event.ts +249 -0
  635. package/packages/apps/loyalty-points/src/index.ts +1 -0
  636. package/packages/apps/loyalty-points/src/loyalty-create-transaction.ts +249 -0
  637. package/packages/apps/loyalty-points/src/loyalty-list-payments.ts +62 -0
  638. package/packages/apps/loyalty-points/src/loyalty-points-events.ts +52 -0
  639. package/packages/apps/loyalty-points/src/loyalty-points.ts +12 -0
  640. package/packages/apps/loyalty-points/tests/1-list-payments.test.mjs +37 -0
  641. package/packages/apps/loyalty-points/tests/2-create-transaction.test.mjs +41 -0
  642. package/packages/apps/loyalty-points/tsconfig.json +6 -0
  643. package/packages/apps/mandae/CHANGELOG.md +1 -0
  644. package/packages/apps/mandae/README.md +1 -0
  645. package/packages/apps/mandae/lib/index.d.ts +1 -0
  646. package/packages/apps/mandae/lib/index.js +2 -0
  647. package/packages/apps/mandae/lib/index.js.map +1 -0
  648. package/packages/apps/mandae/lib/mandae.d.ts +2 -0
  649. package/packages/apps/mandae/lib/mandae.js +6 -0
  650. package/packages/apps/mandae/lib/mandae.js.map +1 -0
  651. package/packages/apps/mandae/lib-mjs/calculate-mandae.mjs +297 -0
  652. package/packages/apps/mandae/package.json +31 -0
  653. package/packages/apps/mandae/scripts/tests.sh +7 -0
  654. package/packages/apps/mandae/src/index.ts +1 -0
  655. package/packages/apps/mandae/src/mandae.ts +7 -0
  656. package/packages/apps/mandae/tests/calculate-shipping.test.mjs +37 -0
  657. package/packages/apps/mandae/tsconfig.json +6 -0
  658. package/packages/apps/melhor-envio/CHANGELOG.md +1 -0
  659. package/packages/apps/melhor-envio/README.md +1 -0
  660. package/packages/apps/melhor-envio/events.js +1 -0
  661. package/packages/apps/melhor-envio/lib/functions-lib/database.d.ts +19 -0
  662. package/packages/apps/melhor-envio/lib/functions-lib/database.js +115 -0
  663. package/packages/apps/melhor-envio/lib/functions-lib/database.js.map +1 -0
  664. package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.d.ts +3 -0
  665. package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.js +116 -0
  666. package/packages/apps/melhor-envio/lib/functions-lib/events-to-melhor-envio.js.map +1 -0
  667. package/packages/apps/melhor-envio/lib/functions-lib/new-label.d.ts +42 -0
  668. package/packages/apps/melhor-envio/lib/functions-lib/new-label.js +185 -0
  669. package/packages/apps/melhor-envio/lib/functions-lib/new-label.js.map +1 -0
  670. package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.d.ts +5 -0
  671. package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.js +40 -0
  672. package/packages/apps/melhor-envio/lib/functions-lib/order-is-valid.js.map +1 -0
  673. package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.d.ts +2 -0
  674. package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.js +164 -0
  675. package/packages/apps/melhor-envio/lib/functions-lib/tracking-codes.js.map +1 -0
  676. package/packages/apps/melhor-envio/lib/index.d.ts +1 -0
  677. package/packages/apps/melhor-envio/lib/index.js +2 -0
  678. package/packages/apps/melhor-envio/lib/index.js.map +1 -0
  679. package/packages/apps/melhor-envio/lib/melhor-envio-events.d.ts +6 -0
  680. package/packages/apps/melhor-envio/lib/melhor-envio-events.js +17 -0
  681. package/packages/apps/melhor-envio/lib/melhor-envio-events.js.map +1 -0
  682. package/packages/apps/melhor-envio/lib/melhor-envio.d.ts +2 -0
  683. package/packages/apps/melhor-envio/lib/melhor-envio.js +6 -0
  684. package/packages/apps/melhor-envio/lib/melhor-envio.js.map +1 -0
  685. package/packages/apps/melhor-envio/lib-mjs/calculate-melhor-envio.mjs +347 -0
  686. package/packages/apps/melhor-envio/lib-mjs/functions/client-melhor-envio.mjs +14 -0
  687. package/packages/apps/melhor-envio/lib-mjs/functions/error-handling.mjs +62 -0
  688. package/packages/apps/melhor-envio/lib-mjs/functions/new-shipment.mjs +119 -0
  689. package/packages/apps/melhor-envio/package.json +36 -0
  690. package/packages/apps/melhor-envio/src/functions-lib/database.ts +141 -0
  691. package/packages/apps/melhor-envio/src/functions-lib/events-to-melhor-envio.ts +150 -0
  692. package/packages/apps/melhor-envio/src/functions-lib/new-label.ts +214 -0
  693. package/packages/apps/melhor-envio/src/functions-lib/order-is-valid.ts +51 -0
  694. package/packages/apps/melhor-envio/src/functions-lib/tracking-codes.ts +191 -0
  695. package/packages/apps/melhor-envio/src/index.ts +1 -0
  696. package/packages/apps/melhor-envio/src/melhor-envio-events.ts +23 -0
  697. package/packages/apps/melhor-envio/src/melhor-envio.ts +7 -0
  698. package/packages/apps/melhor-envio/tsconfig.json +6 -0
  699. package/packages/apps/mercadopago/CHANGELOG.md +1 -0
  700. package/packages/apps/mercadopago/README.md +1 -0
  701. package/packages/apps/mercadopago/assets/onload-expression.js +142 -0
  702. package/packages/apps/mercadopago/assets/onload-expression.min.js +1 -0
  703. package/packages/apps/mercadopago/lib/index.d.ts +1 -0
  704. package/packages/apps/mercadopago/lib/index.js +3 -0
  705. package/packages/apps/mercadopago/lib/index.js.map +1 -0
  706. package/packages/apps/mercadopago/lib/mercadopago.d.ts +90 -0
  707. package/packages/apps/mercadopago/lib/mercadopago.js +12 -0
  708. package/packages/apps/mercadopago/lib/mercadopago.js.map +1 -0
  709. package/packages/apps/mercadopago/lib/mp-create-transaction.d.ts +88 -0
  710. package/packages/apps/mercadopago/lib/mp-create-transaction.js +294 -0
  711. package/packages/apps/mercadopago/lib/mp-create-transaction.js.map +1 -0
  712. package/packages/apps/mercadopago/lib/mp-list-payments.d.ts +6 -0
  713. package/packages/apps/mercadopago/lib/mp-list-payments.js +185 -0
  714. package/packages/apps/mercadopago/lib/mp-list-payments.js.map +1 -0
  715. package/packages/apps/mercadopago/lib/mp-webhook.d.ts +5 -0
  716. package/packages/apps/mercadopago/lib/mp-webhook.js +119 -0
  717. package/packages/apps/mercadopago/lib/mp-webhook.js.map +1 -0
  718. package/packages/apps/mercadopago/package.json +38 -0
  719. package/packages/apps/mercadopago/scripts/build.sh +4 -0
  720. package/packages/apps/mercadopago/scripts/tests.sh +7 -0
  721. package/packages/apps/mercadopago/src/index.ts +2 -0
  722. package/packages/apps/mercadopago/src/mercadopago.ts +12 -0
  723. package/packages/apps/mercadopago/src/mp-create-transaction.ts +318 -0
  724. package/packages/apps/mercadopago/src/mp-list-payments.ts +210 -0
  725. package/packages/apps/mercadopago/src/mp-webhook.ts +137 -0
  726. package/packages/apps/mercadopago/tests/1-list-payments.test.mjs +37 -0
  727. package/packages/apps/mercadopago/tests/2-create-transaction.test.mjs +42 -0
  728. package/packages/apps/mercadopago/tsconfig.json +6 -0
  729. package/packages/apps/mercadopago/webhook.js +1 -0
  730. package/packages/apps/pagarme/CHANGELOG.md +1 -0
  731. package/packages/apps/pagarme/README.md +1 -0
  732. package/packages/apps/pagarme/assets/onload-expression.js +32 -0
  733. package/packages/apps/pagarme/assets/onload-expression.min.js +1 -0
  734. package/packages/apps/pagarme/lib/functions-lib/add-installments.d.ts +55 -0
  735. package/packages/apps/pagarme/lib/functions-lib/add-installments.js +52 -0
  736. package/packages/apps/pagarme/lib/functions-lib/add-installments.js.map +1 -0
  737. package/packages/apps/pagarme/lib/functions-lib/parse-status-to-ecom.d.ts +2 -0
  738. package/packages/apps/pagarme/lib/functions-lib/parse-status-to-ecom.js +24 -0
  739. package/packages/apps/pagarme/lib/functions-lib/parse-status-to-ecom.js.map +1 -0
  740. package/packages/apps/pagarme/lib/index.d.ts +1 -0
  741. package/packages/apps/pagarme/lib/index.js +3 -0
  742. package/packages/apps/pagarme/lib/index.js.map +1 -0
  743. package/packages/apps/pagarme/lib/pagarme-create-transaction.d.ts +86 -0
  744. package/packages/apps/pagarme/lib/pagarme-create-transaction.js +300 -0
  745. package/packages/apps/pagarme/lib/pagarme-create-transaction.js.map +1 -0
  746. package/packages/apps/pagarme/lib/pagarme-list-payments.d.ts +6 -0
  747. package/packages/apps/pagarme/lib/pagarme-list-payments.js +161 -0
  748. package/packages/apps/pagarme/lib/pagarme-list-payments.js.map +1 -0
  749. package/packages/apps/pagarme/lib/pagarme-webhook.d.ts +4 -0
  750. package/packages/apps/pagarme/lib/pagarme-webhook.js +88 -0
  751. package/packages/apps/pagarme/lib/pagarme-webhook.js.map +1 -0
  752. package/packages/apps/pagarme/lib/pagarme.d.ts +90 -0
  753. package/packages/apps/pagarme/lib/pagarme.js +12 -0
  754. package/packages/apps/pagarme/lib/pagarme.js.map +1 -0
  755. package/packages/apps/pagarme/package.json +38 -0
  756. package/packages/apps/pagarme/scripts/build.sh +4 -0
  757. package/packages/apps/pagarme/src/functions-lib/add-installments.ts +65 -0
  758. package/packages/apps/pagarme/src/functions-lib/parse-status-to-ecom.ts +23 -0
  759. package/packages/apps/pagarme/src/index.ts +2 -0
  760. package/packages/apps/pagarme/src/pagarme-create-transaction.ts +335 -0
  761. package/packages/apps/pagarme/src/pagarme-list-payments.ts +191 -0
  762. package/packages/apps/pagarme/src/pagarme-webhook.ts +97 -0
  763. package/packages/apps/pagarme/src/pagarme.ts +12 -0
  764. package/packages/apps/pagarme/tsconfig.json +6 -0
  765. package/packages/apps/pagarme/webhook.js +1 -0
  766. package/packages/apps/pagarme-v5/CHANGELOG.md +1 -0
  767. package/packages/apps/pagarme-v5/README.md +1 -0
  768. package/packages/apps/pagarme-v5/assets/onload-expression.js +38 -0
  769. package/packages/apps/pagarme-v5/assets/onload-expression.min.js +1 -0
  770. package/packages/apps/pagarme-v5/events.js +1 -0
  771. package/packages/apps/pagarme-v5/lib/index.d.ts +1 -0
  772. package/packages/apps/pagarme-v5/lib/index.js +2 -0
  773. package/packages/apps/pagarme-v5/lib/index.js.map +1 -0
  774. package/packages/apps/pagarme-v5/lib/pagarme-v5-events.d.ts +6 -0
  775. package/packages/apps/pagarme-v5/lib/pagarme-v5-events.js +21 -0
  776. package/packages/apps/pagarme-v5/lib/pagarme-v5-events.js.map +1 -0
  777. package/packages/apps/pagarme-v5/lib/pagarme-v5.d.ts +4 -0
  778. package/packages/apps/pagarme-v5/lib/pagarme-v5.js +12 -0
  779. package/packages/apps/pagarme-v5/lib/pagarme-v5.js.map +1 -0
  780. package/packages/apps/pagarme-v5/lib-mjs/create-pagarme5-transaction.mjs +208 -0
  781. package/packages/apps/pagarme-v5/lib-mjs/events-to-pagarme5.mjs +209 -0
  782. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/api-utils.mjs +220 -0
  783. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/firestore-utils.mjs +24 -0
  784. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/pagarme/create-axios.mjs +12 -0
  785. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/pagarme/handle-plans.mjs +69 -0
  786. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/pagarme/parses-utils.mjs +61 -0
  787. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/pagarme/payment-subscription.mjs +244 -0
  788. package/packages/apps/pagarme-v5/lib-mjs/functions-lib/payments/add-installments.mjs +45 -0
  789. package/packages/apps/pagarme-v5/lib-mjs/list-pagarme5-payments.mjs +218 -0
  790. package/packages/apps/pagarme-v5/lib-mjs/pagarme5-webhooks.mjs +343 -0
  791. package/packages/apps/pagarme-v5/package.json +38 -0
  792. package/packages/apps/pagarme-v5/scripts/build.sh +4 -0
  793. package/packages/apps/pagarme-v5/scripts/tests.sh +9 -0
  794. package/packages/apps/pagarme-v5/src/index.ts +1 -0
  795. package/packages/apps/pagarme-v5/src/pagarme-v5-events.ts +27 -0
  796. package/packages/apps/pagarme-v5/src/pagarme-v5.ts +12 -0
  797. package/packages/apps/pagarme-v5/tests/1-list-payments.test.mjs +37 -0
  798. package/packages/apps/pagarme-v5/tests/2-create-transaction.test.mjs +56 -0
  799. package/packages/apps/pagarme-v5/tsconfig.json +6 -0
  800. package/packages/apps/paghiper/CHANGELOG.md +1 -0
  801. package/packages/apps/paghiper/README.md +1 -0
  802. package/packages/apps/paghiper/lib/functions-lib/create-axios.d.ts +2 -0
  803. package/packages/apps/paghiper/lib/functions-lib/create-axios.js +22 -0
  804. package/packages/apps/paghiper/lib/functions-lib/create-axios.js.map +1 -0
  805. package/packages/apps/paghiper/lib/functions-lib/handle-webhook.d.ts +3 -0
  806. package/packages/apps/paghiper/lib/functions-lib/handle-webhook.js +162 -0
  807. package/packages/apps/paghiper/lib/functions-lib/handle-webhook.js.map +1 -0
  808. package/packages/apps/paghiper/lib/index.d.ts +1 -0
  809. package/packages/apps/paghiper/lib/index.js +2 -0
  810. package/packages/apps/paghiper/lib/index.js.map +1 -0
  811. package/packages/apps/paghiper/lib/paghiper-create-transaction.d.ts +75 -0
  812. package/packages/apps/paghiper/lib/paghiper-create-transaction.js +207 -0
  813. package/packages/apps/paghiper/lib/paghiper-create-transaction.js.map +1 -0
  814. package/packages/apps/paghiper/lib/paghiper-list-payments.d.ts +7 -0
  815. package/packages/apps/paghiper/lib/paghiper-list-payments.js +104 -0
  816. package/packages/apps/paghiper/lib/paghiper-list-payments.js.map +1 -0
  817. package/packages/apps/paghiper/lib/paghiper-webhook.d.ts +5 -0
  818. package/packages/apps/paghiper/lib/paghiper-webhook.js +18 -0
  819. package/packages/apps/paghiper/lib/paghiper-webhook.js.map +1 -0
  820. package/packages/apps/paghiper/lib/paghiper.d.ts +80 -0
  821. package/packages/apps/paghiper/lib/paghiper.js +12 -0
  822. package/packages/apps/paghiper/lib/paghiper.js.map +1 -0
  823. package/packages/apps/paghiper/package.json +36 -0
  824. package/packages/apps/paghiper/src/functions-lib/create-axios.ts +21 -0
  825. package/packages/apps/paghiper/src/functions-lib/handle-webhook.ts +185 -0
  826. package/packages/apps/paghiper/src/index.ts +1 -0
  827. package/packages/apps/paghiper/src/paghiper-create-transaction.ts +250 -0
  828. package/packages/apps/paghiper/src/paghiper-list-payments.ts +134 -0
  829. package/packages/apps/paghiper/src/paghiper-webhook.ts +17 -0
  830. package/packages/apps/paghiper/src/paghiper.ts +12 -0
  831. package/packages/apps/paghiper/tsconfig.json +6 -0
  832. package/packages/apps/paghiper/types/config-app.d.ts +34 -0
  833. package/packages/apps/paghiper/webhook.js +1 -0
  834. package/packages/apps/pix/CHANGELOG.md +1 -0
  835. package/packages/apps/pix/README.md +1 -0
  836. package/packages/apps/pix/lib/functions-lib/get-certificate.d.ts +2 -0
  837. package/packages/apps/pix/lib/functions-lib/get-certificate.js +21 -0
  838. package/packages/apps/pix/lib/functions-lib/get-certificate.js.map +1 -0
  839. package/packages/apps/pix/lib/functions-lib/pix-auth/construtor.d.ts +15 -0
  840. package/packages/apps/pix/lib/functions-lib/pix-auth/construtor.js +65 -0
  841. package/packages/apps/pix/lib/functions-lib/pix-auth/construtor.js.map +1 -0
  842. package/packages/apps/pix/lib/functions-lib/pix-auth/create-axios.d.ts +6 -0
  843. package/packages/apps/pix/lib/functions-lib/pix-auth/create-axios.js +20 -0
  844. package/packages/apps/pix/lib/functions-lib/pix-auth/create-axios.js.map +1 -0
  845. package/packages/apps/pix/lib/functions-lib/pix-auth/oauth.d.ts +12 -0
  846. package/packages/apps/pix/lib/functions-lib/pix-auth/oauth.js +36 -0
  847. package/packages/apps/pix/lib/functions-lib/pix-auth/oauth.js.map +1 -0
  848. package/packages/apps/pix/lib/index.d.ts +1 -0
  849. package/packages/apps/pix/lib/index.js +3 -0
  850. package/packages/apps/pix/lib/index.js.map +1 -0
  851. package/packages/apps/pix/lib/pix-create-transaction.d.ts +76 -0
  852. package/packages/apps/pix/lib/pix-create-transaction.js +242 -0
  853. package/packages/apps/pix/lib/pix-create-transaction.js.map +1 -0
  854. package/packages/apps/pix/lib/pix-list-payments.d.ts +13 -0
  855. package/packages/apps/pix/lib/pix-list-payments.js +102 -0
  856. package/packages/apps/pix/lib/pix-list-payments.js.map +1 -0
  857. package/packages/apps/pix/lib/pix-webhook.d.ts +5 -0
  858. package/packages/apps/pix/lib/pix-webhook.js +146 -0
  859. package/packages/apps/pix/lib/pix-webhook.js.map +1 -0
  860. package/packages/apps/pix/lib/pix.d.ts +81 -0
  861. package/packages/apps/pix/lib/pix.js +12 -0
  862. package/packages/apps/pix/lib/pix.js.map +1 -0
  863. package/packages/apps/pix/package.json +36 -0
  864. package/packages/apps/pix/src/functions-lib/get-certificate.ts +24 -0
  865. package/packages/apps/pix/src/functions-lib/pix-auth/construtor.ts +87 -0
  866. package/packages/apps/pix/src/functions-lib/pix-auth/create-axios.ts +24 -0
  867. package/packages/apps/pix/src/functions-lib/pix-auth/oauth.ts +50 -0
  868. package/packages/apps/pix/src/index.ts +2 -0
  869. package/packages/apps/pix/src/pix-create-transaction.ts +285 -0
  870. package/packages/apps/pix/src/pix-list-payments.ts +120 -0
  871. package/packages/apps/pix/src/pix-webhook.ts +171 -0
  872. package/packages/apps/pix/src/pix.ts +12 -0
  873. package/packages/apps/pix/tsconfig.json +6 -0
  874. package/packages/apps/pix/webhook.js +1 -0
  875. package/packages/apps/tiny-erp/CHANGELOG.md +1 -0
  876. package/packages/apps/tiny-erp/README.md +1 -0
  877. package/packages/apps/tiny-erp/lib/event-to-tiny.js +115 -0
  878. package/packages/apps/tiny-erp/lib/event-to-tiny.js.map +1 -0
  879. package/packages/apps/tiny-erp/lib/index.js +2 -0
  880. package/packages/apps/tiny-erp/lib/index.js.map +1 -0
  881. package/packages/apps/tiny-erp/lib/integration/after-tiny-queue.js +79 -0
  882. package/packages/apps/tiny-erp/lib/integration/after-tiny-queue.js.map +1 -0
  883. package/packages/apps/tiny-erp/lib/integration/export-order-to-tiny.js +106 -0
  884. package/packages/apps/tiny-erp/lib/integration/export-order-to-tiny.js.map +1 -0
  885. package/packages/apps/tiny-erp/lib/integration/export-product-to-tiny.js +58 -0
  886. package/packages/apps/tiny-erp/lib/integration/export-product-to-tiny.js.map +1 -0
  887. package/packages/apps/tiny-erp/lib/integration/helpers/format-tiny-date.js +7 -0
  888. package/packages/apps/tiny-erp/lib/integration/helpers/format-tiny-date.js.map +1 -0
  889. package/packages/apps/tiny-erp/lib/integration/import-order-from-tiny.js +99 -0
  890. package/packages/apps/tiny-erp/lib/integration/import-order-from-tiny.js.map +1 -0
  891. package/packages/apps/tiny-erp/lib/integration/import-product-from-tiny.js +169 -0
  892. package/packages/apps/tiny-erp/lib/integration/import-product-from-tiny.js.map +1 -0
  893. package/packages/apps/tiny-erp/lib/integration/parsers/order-from-tiny.js +54 -0
  894. package/packages/apps/tiny-erp/lib/integration/parsers/order-from-tiny.js.map +1 -0
  895. package/packages/apps/tiny-erp/lib/integration/parsers/order-to-tiny.js +197 -0
  896. package/packages/apps/tiny-erp/lib/integration/parsers/order-to-tiny.js.map +1 -0
  897. package/packages/apps/tiny-erp/lib/integration/parsers/product-from-tiny.js +279 -0
  898. package/packages/apps/tiny-erp/lib/integration/parsers/product-from-tiny.js.map +1 -0
  899. package/packages/apps/tiny-erp/lib/integration/parsers/product-to-tiny.js +146 -0
  900. package/packages/apps/tiny-erp/lib/integration/parsers/product-to-tiny.js.map +1 -0
  901. package/packages/apps/tiny-erp/lib/integration/parsers/status-from-tiny.js +34 -0
  902. package/packages/apps/tiny-erp/lib/integration/parsers/status-from-tiny.js.map +1 -0
  903. package/packages/apps/tiny-erp/lib/integration/parsers/status-to-tiny.js +39 -0
  904. package/packages/apps/tiny-erp/lib/integration/parsers/status-to-tiny.js.map +1 -0
  905. package/packages/apps/tiny-erp/lib/integration/post-tiny-erp.js +47 -0
  906. package/packages/apps/tiny-erp/lib/integration/post-tiny-erp.js.map +1 -0
  907. package/packages/apps/tiny-erp/lib/tiny-erp.js +19 -0
  908. package/packages/apps/tiny-erp/lib/tiny-erp.js.map +1 -0
  909. package/packages/apps/tiny-erp/lib/tiny-webhook.js +95 -0
  910. package/packages/apps/tiny-erp/lib/tiny-webhook.js.map +1 -0
  911. package/packages/apps/tiny-erp/package.json +34 -0
  912. package/packages/apps/tiny-erp/src/event-to-tiny.ts +134 -0
  913. package/packages/apps/tiny-erp/src/index.ts +1 -0
  914. package/packages/apps/tiny-erp/src/integration/after-tiny-queue.ts +80 -0
  915. package/packages/apps/tiny-erp/src/integration/export-order-to-tiny.ts +113 -0
  916. package/packages/apps/tiny-erp/src/integration/export-product-to-tiny.ts +60 -0
  917. package/packages/apps/tiny-erp/src/integration/helpers/format-tiny-date.ts +6 -0
  918. package/packages/apps/tiny-erp/src/integration/import-order-from-tiny.ts +109 -0
  919. package/packages/apps/tiny-erp/src/integration/import-product-from-tiny.ts +176 -0
  920. package/packages/apps/tiny-erp/src/integration/parsers/order-from-tiny.ts +61 -0
  921. package/packages/apps/tiny-erp/src/integration/parsers/order-to-tiny.ts +212 -0
  922. package/packages/apps/tiny-erp/src/integration/parsers/product-from-tiny.ts +318 -0
  923. package/packages/apps/tiny-erp/src/integration/parsers/product-to-tiny.ts +158 -0
  924. package/packages/apps/tiny-erp/src/integration/parsers/status-from-tiny.ts +35 -0
  925. package/packages/apps/tiny-erp/src/integration/parsers/status-to-tiny.ts +42 -0
  926. package/packages/apps/tiny-erp/src/integration/post-tiny-erp.ts +52 -0
  927. package/packages/apps/tiny-erp/src/tiny-erp.ts +26 -0
  928. package/packages/apps/tiny-erp/src/tiny-webhook.ts +103 -0
  929. package/packages/apps/tiny-erp/tsconfig.json +3 -0
  930. package/packages/apps/webhooks/CHANGELOG.md +1 -0
  931. package/packages/apps/webhooks/README.md +1 -0
  932. package/packages/apps/webhooks/lib/app-webhooks.js +9 -0
  933. package/packages/apps/webhooks/lib/app-webhooks.js.map +1 -0
  934. package/packages/apps/webhooks/lib/events-to-webhooks-app.js +131 -0
  935. package/packages/apps/webhooks/lib/events-to-webhooks-app.js.map +1 -0
  936. package/packages/apps/webhooks/lib/index.js +2 -0
  937. package/packages/apps/webhooks/lib/index.js.map +1 -0
  938. package/packages/apps/webhooks/package.json +32 -0
  939. package/packages/apps/webhooks/src/app-webhooks.ts +14 -0
  940. package/packages/apps/webhooks/src/events-to-webhooks-app.ts +188 -0
  941. package/packages/apps/webhooks/src/index.ts +1 -0
  942. package/packages/apps/webhooks/tsconfig.json +3 -0
  943. package/packages/cli/CHANGELOG.md +1 -0
  944. package/packages/cli/README.md +1 -0
  945. package/packages/cli/bin/run.mjs +4 -0
  946. package/packages/cli/config/firebase.json +172 -0
  947. package/packages/cli/config/firestore.indexes.json +4 -0
  948. package/packages/cli/config/firestore.rules +11 -0
  949. package/packages/cli/config/remoteconfig.template.json +1 -0
  950. package/packages/cli/config/storage.rules +15 -0
  951. package/packages/cli/create-auth.js +5 -0
  952. package/packages/cli/lib/build.js +50 -0
  953. package/packages/cli/lib/cli.js +181 -0
  954. package/packages/cli/lib/create-auth.js +46 -0
  955. package/packages/cli/lib/login.js +38 -0
  956. package/packages/cli/lib/setup-gcloud.js +194 -0
  957. package/packages/cli/lib/setup-gh.js +59 -0
  958. package/packages/cli/package.json +36 -0
  959. package/packages/cli/src/build.ts +56 -0
  960. package/packages/cli/src/cli.ts +222 -0
  961. package/packages/cli/src/create-auth.ts +51 -0
  962. package/packages/cli/src/login.ts +45 -0
  963. package/packages/cli/src/setup-gcloud.ts +228 -0
  964. package/packages/cli/src/setup-gh.ts +83 -0
  965. package/packages/cli/tsconfig.json +6 -0
  966. package/packages/config/CHANGELOG.md +1 -0
  967. package/packages/config/README.md +1 -0
  968. package/packages/config/lib/config.d.ts +15 -0
  969. package/packages/config/lib/config.js +47 -0
  970. package/packages/config/lib/config.js.map +1 -0
  971. package/packages/config/lib/defaults.d.ts +4 -0
  972. package/packages/config/lib/defaults.js +8 -0
  973. package/packages/config/lib/defaults.js.map +1 -0
  974. package/packages/config/lib/env.d.ts +11 -0
  975. package/packages/config/lib/env.js +31 -0
  976. package/packages/config/lib/env.js.map +1 -0
  977. package/packages/config/package.json +33 -0
  978. package/packages/config/src/config.ts +65 -0
  979. package/packages/config/src/defaults.ts +7 -0
  980. package/packages/config/src/env.ts +46 -0
  981. package/packages/config/tsconfig.json +6 -0
  982. package/packages/emails/CHANGELOG.md +1 -0
  983. package/packages/emails/README.md +1 -0
  984. package/packages/emails/lib/index.d.ts +56 -0
  985. package/packages/emails/lib/index.js +83 -0
  986. package/packages/emails/lib/index.js.map +1 -0
  987. package/packages/emails/lib/parse-template-to-html.d.ts +3 -0
  988. package/packages/emails/lib/parse-template-to-html.js +16 -0
  989. package/packages/emails/lib/parse-template-to-html.js.map +1 -0
  990. package/packages/emails/lib/providers/sendgrid/index.d.ts +8 -0
  991. package/packages/emails/lib/providers/sendgrid/index.js +54 -0
  992. package/packages/emails/lib/providers/sendgrid/index.js.map +1 -0
  993. package/packages/emails/lib/providers/sendgrid/parse-to-data.d.ts +5 -0
  994. package/packages/emails/lib/providers/sendgrid/parse-to-data.js +55 -0
  995. package/packages/emails/lib/providers/sendgrid/parse-to-data.js.map +1 -0
  996. package/packages/emails/lib/providers/smtp/index.d.ts +13 -0
  997. package/packages/emails/lib/providers/smtp/index.js +79 -0
  998. package/packages/emails/lib/providers/smtp/index.js.map +1 -0
  999. package/packages/emails/package.json +35 -0
  1000. package/packages/emails/src/index.ts +144 -0
  1001. package/packages/emails/src/parse-template-to-html.ts +19 -0
  1002. package/packages/emails/src/providers/sendgrid/index.ts +78 -0
  1003. package/packages/emails/src/providers/sendgrid/parse-to-data.ts +92 -0
  1004. package/packages/emails/src/providers/smtp/index.ts +115 -0
  1005. package/packages/emails/tests/assets/customer.json +68 -0
  1006. package/packages/emails/tests/assets/order.json +190 -0
  1007. package/packages/emails/tests/assets/store.json +25 -0
  1008. package/packages/emails/tests/ex.config-sendgrid.json +19 -0
  1009. package/packages/emails/tests/ex.config-smtp.json +21 -0
  1010. package/packages/emails/tests/sendgrid.test.ts +155 -0
  1011. package/packages/emails/tests/smtp.test.ts +146 -0
  1012. package/packages/emails/tests/templates/new-order.ejs +37 -0
  1013. package/packages/emails/tsconfig.json +6 -0
  1014. package/packages/emails/types/index.d.ts +84 -0
  1015. package/packages/emails/types/sendgrid.d.ts +28 -0
  1016. package/packages/eslint/CHANGELOG.md +1 -0
  1017. package/packages/eslint/README.md +1 -0
  1018. package/packages/eslint/base.eslintrc.cjs +131 -0
  1019. package/packages/eslint/package.json +30 -0
  1020. package/packages/eslint/storefront.eslintrc.cjs +39 -0
  1021. package/packages/events/CHANGELOG.md +1 -0
  1022. package/packages/events/README.md +1 -0
  1023. package/packages/events/firebase.js +1 -0
  1024. package/packages/events/lib/firebase.js +37 -0
  1025. package/packages/events/lib/firebase.js.map +1 -0
  1026. package/packages/events/lib/index.js +2 -0
  1027. package/packages/events/lib/index.js.map +1 -0
  1028. package/packages/events/package.json +54 -0
  1029. package/packages/events/src/firebase.ts +37 -0
  1030. package/packages/events/src/index.ts +1 -0
  1031. package/packages/events/tsconfig.json +3 -0
  1032. package/packages/feeds/CHANGELOG.md +1 -0
  1033. package/packages/feeds/README.md +1 -0
  1034. package/packages/feeds/firebase.js +1 -0
  1035. package/packages/feeds/lib/firebase/serve-feeds.js +9 -0
  1036. package/packages/feeds/lib/firebase/serve-feeds.js.map +1 -0
  1037. package/packages/feeds/lib/firebase.js +14 -0
  1038. package/packages/feeds/lib/firebase.js.map +1 -0
  1039. package/packages/feeds/lib/index.js +1 -0
  1040. package/packages/feeds/lib/index.js.map +1 -0
  1041. package/packages/feeds/package.json +33 -0
  1042. package/packages/feeds/src/firebase/serve-feeds.ts +10 -0
  1043. package/packages/feeds/src/firebase.ts +15 -0
  1044. package/packages/feeds/src/index.ts +0 -0
  1045. package/packages/feeds/tsconfig.json +3 -0
  1046. package/packages/firebase/CHANGELOG.md +1 -0
  1047. package/packages/firebase/README.md +1 -0
  1048. package/packages/firebase/config.js +5 -0
  1049. package/packages/firebase/lib/config.d.ts +113 -0
  1050. package/packages/firebase/lib/config.js +169 -0
  1051. package/packages/firebase/lib/config.js.map +1 -0
  1052. package/packages/firebase/lib/const.d.ts +2 -0
  1053. package/packages/firebase/lib/const.js +6 -0
  1054. package/packages/firebase/lib/const.js.map +1 -0
  1055. package/packages/firebase/lib/env.d.ts +3 -0
  1056. package/packages/firebase/lib/env.js +4 -0
  1057. package/packages/firebase/lib/env.js.map +1 -0
  1058. package/packages/firebase/lib/handlers/check-store-events.d.ts +6 -0
  1059. package/packages/firebase/lib/handlers/check-store-events.js +190 -0
  1060. package/packages/firebase/lib/handlers/check-store-events.js.map +1 -0
  1061. package/packages/firebase/lib/helpers/firestore.d.ts +2 -0
  1062. package/packages/firebase/lib/helpers/firestore.js +24 -0
  1063. package/packages/firebase/lib/helpers/firestore.js.map +1 -0
  1064. package/packages/firebase/lib/helpers/pubsub.d.ts +9 -0
  1065. package/packages/firebase/lib/helpers/pubsub.js +32 -0
  1066. package/packages/firebase/lib/helpers/pubsub.js.map +1 -0
  1067. package/packages/firebase/lib/helpers/update-app-data.d.ts +9 -0
  1068. package/packages/firebase/lib/helpers/update-app-data.js +45 -0
  1069. package/packages/firebase/lib/helpers/update-app-data.js.map +1 -0
  1070. package/packages/firebase/lib/index.d.ts +2 -0
  1071. package/packages/firebase/lib/index.js +20 -0
  1072. package/packages/firebase/lib/index.js.map +1 -0
  1073. package/packages/firebase/lib/init.d.ts +1 -0
  1074. package/packages/firebase/lib/init.js +6 -0
  1075. package/packages/firebase/lib/init.js.map +1 -0
  1076. package/packages/firebase/package.json +44 -0
  1077. package/packages/firebase/src/config.ts +186 -0
  1078. package/packages/firebase/src/const.ts +5 -0
  1079. package/packages/firebase/src/env.ts +5 -0
  1080. package/packages/firebase/src/handlers/check-store-events.ts +223 -0
  1081. package/packages/firebase/src/helpers/firestore.ts +31 -0
  1082. package/packages/firebase/src/helpers/pubsub.ts +52 -0
  1083. package/packages/firebase/src/helpers/update-app-data.ts +49 -0
  1084. package/packages/firebase/src/index.ts +20 -0
  1085. package/packages/firebase/src/init.ts +5 -0
  1086. package/packages/firebase/tsconfig.json +6 -0
  1087. package/packages/i18n/CHANGELOG.md +1 -0
  1088. package/packages/i18n/README.md +1 -0
  1089. package/packages/i18n/lib/all.d.ts +8 -0
  1090. package/packages/i18n/lib/all.js +10 -0
  1091. package/packages/i18n/lib/all.js.map +1 -0
  1092. package/packages/i18n/lib/dirname.d.ts +2 -0
  1093. package/packages/i18n/lib/dirname.js +4 -0
  1094. package/packages/i18n/lib/dirname.js.map +1 -0
  1095. package/packages/i18n/lib/en_us/i19a.txt +1 -0
  1096. package/packages/i18n/lib/en_us/i19about.txt +1 -0
  1097. package/packages/i18n/lib/en_us/i19aboutCvvMsg.txt +1 -0
  1098. package/packages/i18n/lib/en_us/i19aboveOf.txt +1 -0
  1099. package/packages/i18n/lib/en_us/i19acceptAttachedFile.txt +1 -0
  1100. package/packages/i18n/lib/en_us/i19acceptCustomOptionByCustomer.txt +1 -0
  1101. package/packages/i18n/lib/en_us/i19accessMyAccount.txt +1 -0
  1102. package/packages/i18n/lib/en_us/i19activate.txt +1 -0
  1103. package/packages/i18n/lib/en_us/i19active.txt +1 -0
  1104. package/packages/i18n/lib/en_us/i19adRelevance.txt +1 -0
  1105. package/packages/i18n/lib/en_us/i19adType.txt +1 -0
  1106. package/packages/i18n/lib/en_us/i19add$1ToEarn.txt +1 -0
  1107. package/packages/i18n/lib/en_us/i19add.txt +1 -0
  1108. package/packages/i18n/lib/en_us/i19addApp.txt +1 -0
  1109. package/packages/i18n/lib/en_us/i19addCart.txt +1 -0
  1110. package/packages/i18n/lib/en_us/i19addClient.txt +1 -0
  1111. package/packages/i18n/lib/en_us/i19addDiscountCoupon.txt +1 -0
  1112. package/packages/i18n/lib/en_us/i19addGiftList.txt +1 -0
  1113. package/packages/i18n/lib/en_us/i19addGrid.txt +1 -0
  1114. package/packages/i18n/lib/en_us/i19addMoreProducts.txt +1 -0
  1115. package/packages/i18n/lib/en_us/i19addPreference.txt +1 -0
  1116. package/packages/i18n/lib/en_us/i19addProduct.txt +1 -0
  1117. package/packages/i18n/lib/en_us/i19addToCart.txt +1 -0
  1118. package/packages/i18n/lib/en_us/i19addToFavorites.txt +1 -0
  1119. package/packages/i18n/lib/en_us/i19addToPrice.txt +1 -0
  1120. package/packages/i18n/lib/en_us/i19addVariants.txt +1 -0
  1121. package/packages/i18n/lib/en_us/i19additional.txt +1 -0
  1122. package/packages/i18n/lib/en_us/i19additionalComments.txt +1 -0
  1123. package/packages/i18n/lib/en_us/i19additionalCost.txt +1 -0
  1124. package/packages/i18n/lib/en_us/i19additionalCostOption.txt +1 -0
  1125. package/packages/i18n/lib/en_us/i19additionalInfo.txt +1 -0
  1126. package/packages/i18n/lib/en_us/i19additionalNotes.txt +1 -0
  1127. package/packages/i18n/lib/en_us/i19address.txt +1 -0
  1128. package/packages/i18n/lib/en_us/i19addresses.txt +1 -0
  1129. package/packages/i18n/lib/en_us/i19addressesName.txt +1 -0
  1130. package/packages/i18n/lib/en_us/i19adminSettings.txt +1 -0
  1131. package/packages/i18n/lib/en_us/i19advanced.txt +1 -0
  1132. package/packages/i18n/lib/en_us/i19adwords.txt +1 -0
  1133. package/packages/i18n/lib/en_us/i19adwordsRemarketing.txt +1 -0
  1134. package/packages/i18n/lib/en_us/i19adwordsRemarketingCode.txt +1 -0
  1135. package/packages/i18n/lib/en_us/i19affiliateCoede.txt +1 -0
  1136. package/packages/i18n/lib/en_us/i19afterApproval.txt +1 -0
  1137. package/packages/i18n/lib/en_us/i19afterPayment.txt +1 -0
  1138. package/packages/i18n/lib/en_us/i19all.txt +1 -0
  1139. package/packages/i18n/lib/en_us/i19allCategories.txt +1 -0
  1140. package/packages/i18n/lib/en_us/i19allOptions.txt +1 -0
  1141. package/packages/i18n/lib/en_us/i19allProducts.txt +1 -0
  1142. package/packages/i18n/lib/en_us/i19alt.txt +1 -0
  1143. package/packages/i18n/lib/en_us/i19amount.txt +1 -0
  1144. package/packages/i18n/lib/en_us/i19another.txt +1 -0
  1145. package/packages/i18n/lib/en_us/i19anyPaymentMethodMsg.txt +1 -0
  1146. package/packages/i18n/lib/en_us/i19anyPrice.txt +1 -0
  1147. package/packages/i18n/lib/en_us/i19api.txt +1 -0
  1148. package/packages/i18n/lib/en_us/i19app.txt +1 -0
  1149. package/packages/i18n/lib/en_us/i19appAlreadyInstalledMsg.txt +1 -0
  1150. package/packages/i18n/lib/en_us/i19appConfiguration.txt +1 -0
  1151. package/packages/i18n/lib/en_us/i19appDevelopers.txt +1 -0
  1152. package/packages/i18n/lib/en_us/i19application.txt +1 -0
  1153. package/packages/i18n/lib/en_us/i19applications.txt +1 -0
  1154. package/packages/i18n/lib/en_us/i19applyDiscount.txt +1 -0
  1155. package/packages/i18n/lib/en_us/i19applyFilters.txt +1 -0
  1156. package/packages/i18n/lib/en_us/i19apps.txt +1 -0
  1157. package/packages/i18n/lib/en_us/i19areYouWantToDeleteAppQn.txt +1 -0
  1158. package/packages/i18n/lib/en_us/i19asOf.txt +1 -0
  1159. package/packages/i18n/lib/en_us/i19associateImage.txt +1 -0
  1160. package/packages/i18n/lib/en_us/i19associateImages.txt +1 -0
  1161. package/packages/i18n/lib/en_us/i19at.txt +1 -0
  1162. package/packages/i18n/lib/en_us/i19atSight.txt +1 -0
  1163. package/packages/i18n/lib/en_us/i19attachment.txt +1 -0
  1164. package/packages/i18n/lib/en_us/i19attention.txt +1 -0
  1165. package/packages/i18n/lib/en_us/i19authentication.txt +1 -0
  1166. package/packages/i18n/lib/en_us/i19author.txt +1 -0
  1167. package/packages/i18n/lib/en_us/i19authorizedStores.txt +1 -0
  1168. package/packages/i18n/lib/en_us/i19automaticallyTrackInventory.txt +1 -0
  1169. package/packages/i18n/lib/en_us/i19available.txt +1 -0
  1170. package/packages/i18n/lib/en_us/i19availableApps.txt +1 -0
  1171. package/packages/i18n/lib/en_us/i19availablePurchase.txt +1 -0
  1172. package/packages/i18n/lib/en_us/i19average.txt +1 -0
  1173. package/packages/i18n/lib/en_us/i19averageTicket.txt +1 -0
  1174. package/packages/i18n/lib/en_us/i19back.txt +1 -0
  1175. package/packages/i18n/lib/en_us/i19backToCart.txt +1 -0
  1176. package/packages/i18n/lib/en_us/i19backToProduct.txt +1 -0
  1177. package/packages/i18n/lib/en_us/i19bag.txt +1 -0
  1178. package/packages/i18n/lib/en_us/i19balanceOrPoints.txt +1 -0
  1179. package/packages/i18n/lib/en_us/i19banner.txt +1 -0
  1180. package/packages/i18n/lib/en_us/i19banners.txt +1 -0
  1181. package/packages/i18n/lib/en_us/i19bannersCollection.txt +1 -0
  1182. package/packages/i18n/lib/en_us/i19barcodes.txt +1 -0
  1183. package/packages/i18n/lib/en_us/i19basePrice.txt +1 -0
  1184. package/packages/i18n/lib/en_us/i19bearersDocument.txt +1 -0
  1185. package/packages/i18n/lib/en_us/i19best.txt +1 -0
  1186. package/packages/i18n/lib/en_us/i19bestSellers.txt +1 -0
  1187. package/packages/i18n/lib/en_us/i19biannual.txt +1 -0
  1188. package/packages/i18n/lib/en_us/i19billingAddress.txt +1 -0
  1189. package/packages/i18n/lib/en_us/i19bimonthly.txt +1 -0
  1190. package/packages/i18n/lib/en_us/i19birthdate.txt +1 -0
  1191. package/packages/i18n/lib/en_us/i19biweekly.txt +1 -0
  1192. package/packages/i18n/lib/en_us/i19block.txt +1 -0
  1193. package/packages/i18n/lib/en_us/i19borough.txt +1 -0
  1194. package/packages/i18n/lib/en_us/i19brand.txt +1 -0
  1195. package/packages/i18n/lib/en_us/i19brandBanners.txt +1 -0
  1196. package/packages/i18n/lib/en_us/i19brandFound.txt +1 -0
  1197. package/packages/i18n/lib/en_us/i19brandName.txt +1 -0
  1198. package/packages/i18n/lib/en_us/i19brands.txt +1 -0
  1199. package/packages/i18n/lib/en_us/i19brandsFound.txt +1 -0
  1200. package/packages/i18n/lib/en_us/i19brazil.txt +1 -0
  1201. package/packages/i18n/lib/en_us/i19browserIp.txt +1 -0
  1202. package/packages/i18n/lib/en_us/i19budgetOnly.txt +1 -0
  1203. package/packages/i18n/lib/en_us/i19buy.txt +1 -0
  1204. package/packages/i18n/lib/en_us/i19buyAgain.txt +1 -0
  1205. package/packages/i18n/lib/en_us/i19buyAlsoMsg.txt +1 -0
  1206. package/packages/i18n/lib/en_us/i19buyKit.txt +1 -0
  1207. package/packages/i18n/lib/en_us/i19buyNow.txt +1 -0
  1208. package/packages/i18n/lib/en_us/i19buyOnWhatsApp.txt +1 -0
  1209. package/packages/i18n/lib/en_us/i19buyTogether.txt +1 -0
  1210. package/packages/i18n/lib/en_us/i19buyTogetherWith.txt +1 -0
  1211. package/packages/i18n/lib/en_us/i19buyWith.txt +1 -0
  1212. package/packages/i18n/lib/en_us/i19buyer.txt +1 -0
  1213. package/packages/i18n/lib/en_us/i19buyers.txt +1 -0
  1214. package/packages/i18n/lib/en_us/i19buyersProfile.txt +1 -0
  1215. package/packages/i18n/lib/en_us/i19by.txt +1 -0
  1216. package/packages/i18n/lib/en_us/i19calculateShipping.txt +1 -0
  1217. package/packages/i18n/lib/en_us/i19callTo.txt +1 -0
  1218. package/packages/i18n/lib/en_us/i19callback.txt +1 -0
  1219. package/packages/i18n/lib/en_us/i19campaign.txt +1 -0
  1220. package/packages/i18n/lib/en_us/i19campaignAppliedMsg.txt +1 -0
  1221. package/packages/i18n/lib/en_us/i19cancel.txt +1 -0
  1222. package/packages/i18n/lib/en_us/i19cancelOrder.txt +1 -0
  1223. package/packages/i18n/lib/en_us/i19cancelReason.txt +1 -0
  1224. package/packages/i18n/lib/en_us/i19cancelled.txt +1 -0
  1225. package/packages/i18n/lib/en_us/i19cancelledAt.txt +1 -0
  1226. package/packages/i18n/lib/en_us/i19cardNumber.txt +1 -0
  1227. package/packages/i18n/lib/en_us/i19cartConfirmed.txt +1 -0
  1228. package/packages/i18n/lib/en_us/i19cartDetails.txt +1 -0
  1229. package/packages/i18n/lib/en_us/i19cartItems.txt +1 -0
  1230. package/packages/i18n/lib/en_us/i19cartReview.txt +1 -0
  1231. package/packages/i18n/lib/en_us/i19cartUpdated.txt +1 -0
  1232. package/packages/i18n/lib/en_us/i19categories.txt +1 -0
  1233. package/packages/i18n/lib/en_us/i19category.txt +1 -0
  1234. package/packages/i18n/lib/en_us/i19categoryBanners.txt +1 -0
  1235. package/packages/i18n/lib/en_us/i19categoryFound.txt +1 -0
  1236. package/packages/i18n/lib/en_us/i19categoryName.txt +1 -0
  1237. package/packages/i18n/lib/en_us/i19cellphone.txt +1 -0
  1238. package/packages/i18n/lib/en_us/i19changePaymentMethod.txt +1 -0
  1239. package/packages/i18n/lib/en_us/i19changeShippingMethod.txt +1 -0
  1240. package/packages/i18n/lib/en_us/i19channel.txt +1 -0
  1241. package/packages/i18n/lib/en_us/i19channelId.txt +1 -0
  1242. package/packages/i18n/lib/en_us/i19channelType.txt +1 -0
  1243. package/packages/i18n/lib/en_us/i19channels.txt +1 -0
  1244. package/packages/i18n/lib/en_us/i19checkout.txt +1 -0
  1245. package/packages/i18n/lib/en_us/i19checkoutDone.txt +1 -0
  1246. package/packages/i18n/lib/en_us/i19checkoutEnabled.txt +1 -0
  1247. package/packages/i18n/lib/en_us/i19checkoutLink.txt +1 -0
  1248. package/packages/i18n/lib/en_us/i19checkoutMobileLink.txt +1 -0
  1249. package/packages/i18n/lib/en_us/i19checkoutVisitor.txt +1 -0
  1250. package/packages/i18n/lib/en_us/i19checkoutVisitorMsg.txt +1 -0
  1251. package/packages/i18n/lib/en_us/i19chooseProductDetailsToBuy.txt +1 -0
  1252. package/packages/i18n/lib/en_us/i19chooseSubscriptionPeriod.txt +1 -0
  1253. package/packages/i18n/lib/en_us/i19city.txt +1 -0
  1254. package/packages/i18n/lib/en_us/i19clear.txt +1 -0
  1255. package/packages/i18n/lib/en_us/i19clearFilters.txt +1 -0
  1256. package/packages/i18n/lib/en_us/i19click.txt +1 -0
  1257. package/packages/i18n/lib/en_us/i19clickHere.txt +1 -0
  1258. package/packages/i18n/lib/en_us/i19close.txt +1 -0
  1259. package/packages/i18n/lib/en_us/i19closeFilters.txt +1 -0
  1260. package/packages/i18n/lib/en_us/i19closedAt.txt +1 -0
  1261. package/packages/i18n/lib/en_us/i19code.txt +1 -0
  1262. package/packages/i18n/lib/en_us/i19codeCopied.txt +1 -0
  1263. package/packages/i18n/lib/en_us/i19collection.txt +1 -0
  1264. package/packages/i18n/lib/en_us/i19collectionBanners.txt +1 -0
  1265. package/packages/i18n/lib/en_us/i19collectionItems.txt +1 -0
  1266. package/packages/i18n/lib/en_us/i19collectionName.txt +1 -0
  1267. package/packages/i18n/lib/en_us/i19collections.txt +1 -0
  1268. package/packages/i18n/lib/en_us/i19color.txt +1 -0
  1269. package/packages/i18n/lib/en_us/i19colors.txt +1 -0
  1270. package/packages/i18n/lib/en_us/i19community.txt +1 -0
  1271. package/packages/i18n/lib/en_us/i19companyRegistration.txt +1 -0
  1272. package/packages/i18n/lib/en_us/i19compareAtPrice.txt +1 -0
  1273. package/packages/i18n/lib/en_us/i19compareProducts.txt +1 -0
  1274. package/packages/i18n/lib/en_us/i19comparedPreviousPeriodMsg.txt +1 -0
  1275. package/packages/i18n/lib/en_us/i19complement.txt +1 -0
  1276. package/packages/i18n/lib/en_us/i19complementInformation.txt +1 -0
  1277. package/packages/i18n/lib/en_us/i19configuration.txt +1 -0
  1278. package/packages/i18n/lib/en_us/i19confirmPassword.txt +1 -0
  1279. package/packages/i18n/lib/en_us/i19confirmPurchase.txt +1 -0
  1280. package/packages/i18n/lib/en_us/i19connectionErrorMsg.txt +1 -0
  1281. package/packages/i18n/lib/en_us/i19connectionErrorProductMsg.txt +1 -0
  1282. package/packages/i18n/lib/en_us/i19contactPhone.txt +1 -0
  1283. package/packages/i18n/lib/en_us/i19contactUsMsg.txt +1 -0
  1284. package/packages/i18n/lib/en_us/i19content.txt +1 -0
  1285. package/packages/i18n/lib/en_us/i19continue.txt +1 -0
  1286. package/packages/i18n/lib/en_us/i19continueLoginOnPopup.txt +1 -0
  1287. package/packages/i18n/lib/en_us/i19continueShopping.txt +1 -0
  1288. package/packages/i18n/lib/en_us/i19control.txt +1 -0
  1289. package/packages/i18n/lib/en_us/i19copyCode.txt +1 -0
  1290. package/packages/i18n/lib/en_us/i19copyErrorMsg.txt +1 -0
  1291. package/packages/i18n/lib/en_us/i19copyright.txt +1 -0
  1292. package/packages/i18n/lib/en_us/i19corporateName.txt +1 -0
  1293. package/packages/i18n/lib/en_us/i19costDeclaredValue.txt +1 -0
  1294. package/packages/i18n/lib/en_us/i19costPrice.txt +1 -0
  1295. package/packages/i18n/lib/en_us/i19countryCode.txt +1 -0
  1296. package/packages/i18n/lib/en_us/i19couponAppliedMsg.txt +1 -0
  1297. package/packages/i18n/lib/en_us/i19createAnAccount.txt +1 -0
  1298. package/packages/i18n/lib/en_us/i19createTransaction.txt +1 -0
  1299. package/packages/i18n/lib/en_us/i19creation.txt +1 -0
  1300. package/packages/i18n/lib/en_us/i19credit.txt +1 -0
  1301. package/packages/i18n/lib/en_us/i19creditCard.txt +1 -0
  1302. package/packages/i18n/lib/en_us/i19creditCardBin.txt +1 -0
  1303. package/packages/i18n/lib/en_us/i19creditCardCompany.txt +1 -0
  1304. package/packages/i18n/lib/en_us/i19creditCardHolderName.txt +1 -0
  1305. package/packages/i18n/lib/en_us/i19creditCardLastDigits.txt +1 -0
  1306. package/packages/i18n/lib/en_us/i19creditorFees.txt +1 -0
  1307. package/packages/i18n/lib/en_us/i19creditorFeesIntermediator.txt +1 -0
  1308. package/packages/i18n/lib/en_us/i19creditorFeesOperational.txt +1 -0
  1309. package/packages/i18n/lib/en_us/i19currencyId.txt +1 -0
  1310. package/packages/i18n/lib/en_us/i19currencySymbol.txt +1 -0
  1311. package/packages/i18n/lib/en_us/i19custom.txt +1 -0
  1312. package/packages/i18n/lib/en_us/i19customFields.txt +1 -0
  1313. package/packages/i18n/lib/en_us/i19customPayment.txt +1 -0
  1314. package/packages/i18n/lib/en_us/i19customValue.txt +1 -0
  1315. package/packages/i18n/lib/en_us/i19customer.txt +1 -0
  1316. package/packages/i18n/lib/en_us/i19customerNotified.txt +1 -0
  1317. package/packages/i18n/lib/en_us/i19customerService.txt +1 -0
  1318. package/packages/i18n/lib/en_us/i19customizationAddToPrice.txt +1 -0
  1319. package/packages/i18n/lib/en_us/i19customizationAttachment.txt +1 -0
  1320. package/packages/i18n/lib/en_us/i19customizationChosen.txt +1 -0
  1321. package/packages/i18n/lib/en_us/i19customizations.txt +1 -0
  1322. package/packages/i18n/lib/en_us/i19dailyAverage.txt +1 -0
  1323. package/packages/i18n/lib/en_us/i19danger.txt +1 -0
  1324. package/packages/i18n/lib/en_us/i19dashboard.txt +1 -0
  1325. package/packages/i18n/lib/en_us/i19dateTime.txt +1 -0
  1326. package/packages/i18n/lib/en_us/i19day.txt +1 -0
  1327. package/packages/i18n/lib/en_us/i19days.txt +1 -0
  1328. package/packages/i18n/lib/en_us/i19declare.txt +1 -0
  1329. package/packages/i18n/lib/en_us/i19declaredValue.txt +1 -0
  1330. package/packages/i18n/lib/en_us/i19delete.txt +1 -0
  1331. package/packages/i18n/lib/en_us/i19deleteAll.txt +1 -0
  1332. package/packages/i18n/lib/en_us/i19delivery.txt +1 -0
  1333. package/packages/i18n/lib/en_us/i19deliveryCostOwnHandMsg.txt +1 -0
  1334. package/packages/i18n/lib/en_us/i19deliveryInMsg.txt +1 -0
  1335. package/packages/i18n/lib/en_us/i19deliveryReceipt.txt +1 -0
  1336. package/packages/i18n/lib/en_us/i19deliveryReceiptMsg.txt +1 -0
  1337. package/packages/i18n/lib/en_us/i19deliveryTime.txt +1 -0
  1338. package/packages/i18n/lib/en_us/i19deliveryTrack.txt +1 -0
  1339. package/packages/i18n/lib/en_us/i19deliveryWithOwnHandMsg.txt +1 -0
  1340. package/packages/i18n/lib/en_us/i19description.txt +1 -0
  1341. package/packages/i18n/lib/en_us/i19desktop.txt +1 -0
  1342. package/packages/i18n/lib/en_us/i19details.txt +1 -0
  1343. package/packages/i18n/lib/en_us/i19didYouMean.txt +1 -0
  1344. package/packages/i18n/lib/en_us/i19digits.txt +1 -0
  1345. package/packages/i18n/lib/en_us/i19directLinkPayment.txt +1 -0
  1346. package/packages/i18n/lib/en_us/i19disable.txt +1 -0
  1347. package/packages/i18n/lib/en_us/i19discount.txt +1 -0
  1348. package/packages/i18n/lib/en_us/i19discountCoupon.txt +1 -0
  1349. package/packages/i18n/lib/en_us/i19discountOf.txt +1 -0
  1350. package/packages/i18n/lib/en_us/i19discountValueMsg.txt +1 -0
  1351. package/packages/i18n/lib/en_us/i19displayName.txt +1 -0
  1352. package/packages/i18n/lib/en_us/i19doPaymentMsg.txt +1 -0
  1353. package/packages/i18n/lib/en_us/i19doYouWantToDeleteAppQn.txt +1 -0
  1354. package/packages/i18n/lib/en_us/i19doYouWantToReinstallAppQn.txt +1 -0
  1355. package/packages/i18n/lib/en_us/i19docCountry.txt +1 -0
  1356. package/packages/i18n/lib/en_us/i19docNumber.txt +1 -0
  1357. package/packages/i18n/lib/en_us/i19docs.txt +1 -0
  1358. package/packages/i18n/lib/en_us/i19domain.txt +1 -0
  1359. package/packages/i18n/lib/en_us/i19download.txt +1 -0
  1360. package/packages/i18n/lib/en_us/i19downloadTable.txt +1 -0
  1361. package/packages/i18n/lib/en_us/i19edit.txt +1 -0
  1362. package/packages/i18n/lib/en_us/i19editAdditionalCost.txt +1 -0
  1363. package/packages/i18n/lib/en_us/i19editComments.txt +1 -0
  1364. package/packages/i18n/lib/en_us/i19editDispatchAndFulfillment.txt +1 -0
  1365. package/packages/i18n/lib/en_us/i19editFeatures.txt +1 -0
  1366. package/packages/i18n/lib/en_us/i19editFilters.txt +1 -0
  1367. package/packages/i18n/lib/en_us/i19editGtinMpn.txt +1 -0
  1368. package/packages/i18n/lib/en_us/i19editHtmlDescription.txt +1 -0
  1369. package/packages/i18n/lib/en_us/i19editObservationInfo.txt +1 -0
  1370. package/packages/i18n/lib/en_us/i19editPaymentDetails.txt +1 -0
  1371. package/packages/i18n/lib/en_us/i19editProductDimensions.txt +1 -0
  1372. package/packages/i18n/lib/en_us/i19editSeoFields.txt +1 -0
  1373. package/packages/i18n/lib/en_us/i19editStorefront.txt +1 -0
  1374. package/packages/i18n/lib/en_us/i19editVariation.txt +1 -0
  1375. package/packages/i18n/lib/en_us/i19editing.txt +1 -0
  1376. package/packages/i18n/lib/en_us/i19email.txt +1 -0
  1377. package/packages/i18n/lib/en_us/i19emailAddress.txt +1 -0
  1378. package/packages/i18n/lib/en_us/i19emailCartTextMsg.txt +1 -0
  1379. package/packages/i18n/lib/en_us/i19emailCartTitleMsg.txt +1 -0
  1380. package/packages/i18n/lib/en_us/i19emailDeliveredTextMsg.txt +1 -0
  1381. package/packages/i18n/lib/en_us/i19emailDeliveredTitleMsg.txt +1 -0
  1382. package/packages/i18n/lib/en_us/i19emailInfoMsg.txt +1 -0
  1383. package/packages/i18n/lib/en_us/i19emailMarketing.txt +1 -0
  1384. package/packages/i18n/lib/en_us/i19emailMarketingOptInMsg.txt +1 -0
  1385. package/packages/i18n/lib/en_us/i19emailProfileNotFound.txt +1 -0
  1386. package/packages/i18n/lib/en_us/i19emailShippedTextMsg.txt +1 -0
  1387. package/packages/i18n/lib/en_us/i19emailShippedTitleMsg.txt +1 -0
  1388. package/packages/i18n/lib/en_us/i19emailWasSentMsg.txt +1 -0
  1389. package/packages/i18n/lib/en_us/i19emails.txt +1 -0
  1390. package/packages/i18n/lib/en_us/i19empty.txt +1 -0
  1391. package/packages/i18n/lib/en_us/i19emptyCart.txt +1 -0
  1392. package/packages/i18n/lib/en_us/i19emptyCartMsg.txt +1 -0
  1393. package/packages/i18n/lib/en_us/i19enabled.txt +1 -0
  1394. package/packages/i18n/lib/en_us/i19end.txt +1 -0
  1395. package/packages/i18n/lib/en_us/i19endDate.txt +1 -0
  1396. package/packages/i18n/lib/en_us/i19endpoint.txt +1 -0
  1397. package/packages/i18n/lib/en_us/i19endsIn.txt +1 -0
  1398. package/packages/i18n/lib/en_us/i19enterEmailCodeMsg.txt +1 -0
  1399. package/packages/i18n/lib/en_us/i19enterWithPassword.txt +1 -0
  1400. package/packages/i18n/lib/en_us/i19enterYourDocNumber.txt +1 -0
  1401. package/packages/i18n/lib/en_us/i19enterYourDocNumberMsg.txt +1 -0
  1402. package/packages/i18n/lib/en_us/i19enterYourEmail.txt +1 -0
  1403. package/packages/i18n/lib/en_us/i19enterYourEmailMsg.txt +1 -0
  1404. package/packages/i18n/lib/en_us/i19erp.txt +1 -0
  1405. package/packages/i18n/lib/en_us/i19error.txt +1 -0
  1406. package/packages/i18n/lib/en_us/i19errorMsg.txt +1 -0
  1407. package/packages/i18n/lib/en_us/i19events.txt +1 -0
  1408. package/packages/i18n/lib/en_us/i19export.txt +1 -0
  1409. package/packages/i18n/lib/en_us/i19exportToCsv.txt +1 -0
  1410. package/packages/i18n/lib/en_us/i19external.txt +1 -0
  1411. package/packages/i18n/lib/en_us/i19extra.txt +1 -0
  1412. package/packages/i18n/lib/en_us/i19extraCost.txt +1 -0
  1413. package/packages/i18n/lib/en_us/i19familyName.txt +1 -0
  1414. package/packages/i18n/lib/en_us/i19favorites.txt +1 -0
  1415. package/packages/i18n/lib/en_us/i19featuredApps.txt +1 -0
  1416. package/packages/i18n/lib/en_us/i19female.txt +1 -0
  1417. package/packages/i18n/lib/en_us/i19field.txt +1 -0
  1418. package/packages/i18n/lib/en_us/i19files.txt +1 -0
  1419. package/packages/i18n/lib/en_us/i19filter.txt +1 -0
  1420. package/packages/i18n/lib/en_us/i19filterOut.txt +1 -0
  1421. package/packages/i18n/lib/en_us/i19filterProducts.txt +1 -0
  1422. package/packages/i18n/lib/en_us/i19filterResults.txt +1 -0
  1423. package/packages/i18n/lib/en_us/i19finalPrice.txt +1 -0
  1424. package/packages/i18n/lib/en_us/i19finalPriceWithAdditional.txt +1 -0
  1425. package/packages/i18n/lib/en_us/i19financialStatus.txt +1 -0
  1426. package/packages/i18n/lib/en_us/i19firstSteps.txt +1 -0
  1427. package/packages/i18n/lib/en_us/i19followingAddress.txt +1 -0
  1428. package/packages/i18n/lib/en_us/i19for.txt +1 -0
  1429. package/packages/i18n/lib/en_us/i19free.txt +1 -0
  1430. package/packages/i18n/lib/en_us/i19freeShipping.txt +1 -0
  1431. package/packages/i18n/lib/en_us/i19freeShippingFrom.txt +1 -0
  1432. package/packages/i18n/lib/en_us/i19freebie.txt +1 -0
  1433. package/packages/i18n/lib/en_us/i19freight.txt +1 -0
  1434. package/packages/i18n/lib/en_us/i19freightCost.txt +1 -0
  1435. package/packages/i18n/lib/en_us/i19from.txt +1 -0
  1436. package/packages/i18n/lib/en_us/i19fulfillmentStatus.txt +1 -0
  1437. package/packages/i18n/lib/en_us/i19fullName.txt +1 -0
  1438. package/packages/i18n/lib/en_us/i19fullscreen.txt +1 -0
  1439. package/packages/i18n/lib/en_us/i19gateway.txt +1 -0
  1440. package/packages/i18n/lib/en_us/i19gender.txt +1 -0
  1441. package/packages/i18n/lib/en_us/i19genderX.txt +1 -0
  1442. package/packages/i18n/lib/en_us/i19general.txt +1 -0
  1443. package/packages/i18n/lib/en_us/i19generateBillet.txt +1 -0
  1444. package/packages/i18n/lib/en_us/i19get$1back.txt +1 -0
  1445. package/packages/i18n/lib/en_us/i19get.txt +1 -0
  1446. package/packages/i18n/lib/en_us/i19giftList.txt +1 -0
  1447. package/packages/i18n/lib/en_us/i19giftListAuthors.txt +1 -0
  1448. package/packages/i18n/lib/en_us/i19giftListAuthorsContact.txt +1 -0
  1449. package/packages/i18n/lib/en_us/i19giftListDescription.txt +1 -0
  1450. package/packages/i18n/lib/en_us/i19giftListEventDate.txt +1 -0
  1451. package/packages/i18n/lib/en_us/i19giftListInformation.txt +1 -0
  1452. package/packages/i18n/lib/en_us/i19giftListNotificationPurchaseMsg.txt +1 -0
  1453. package/packages/i18n/lib/en_us/i19giftListOwnerID.txt +1 -0
  1454. package/packages/i18n/lib/en_us/i19giftListPermalink.txt +1 -0
  1455. package/packages/i18n/lib/en_us/i19giftListTitle.txt +1 -0
  1456. package/packages/i18n/lib/en_us/i19giftListValidThru.txt +1 -0
  1457. package/packages/i18n/lib/en_us/i19giftListWaiting.txt +1 -0
  1458. package/packages/i18n/lib/en_us/i19giftTo.txt +1 -0
  1459. package/packages/i18n/lib/en_us/i19giftWrap.txt +1 -0
  1460. package/packages/i18n/lib/en_us/i19gitRepository.txt +1 -0
  1461. package/packages/i18n/lib/en_us/i19givenName.txt +1 -0
  1462. package/packages/i18n/lib/en_us/i19goToCart.txt +1 -0
  1463. package/packages/i18n/lib/en_us/i19goToStore.txt +1 -0
  1464. package/packages/i18n/lib/en_us/i19goToTop.txt +1 -0
  1465. package/packages/i18n/lib/en_us/i19googleAnalytics.txt +1 -0
  1466. package/packages/i18n/lib/en_us/i19googleProductCategoryId.txt +1 -0
  1467. package/packages/i18n/lib/en_us/i19gridId.txt +1 -0
  1468. package/packages/i18n/lib/en_us/i19gridName.txt +1 -0
  1469. package/packages/i18n/lib/en_us/i19grids.txt +1 -0
  1470. package/packages/i18n/lib/en_us/i19guestCheckoutMsg.txt +1 -0
  1471. package/packages/i18n/lib/en_us/i19hasCouponOrVoucherQn.txt +1 -0
  1472. package/packages/i18n/lib/en_us/i19height.txt +1 -0
  1473. package/packages/i18n/lib/en_us/i19hello.txt +1 -0
  1474. package/packages/i18n/lib/en_us/i19helloAgain.txt +1 -0
  1475. package/packages/i18n/lib/en_us/i19help.txt +1 -0
  1476. package/packages/i18n/lib/en_us/i19helpful.txt +1 -0
  1477. package/packages/i18n/lib/en_us/i19high.txt +1 -0
  1478. package/packages/i18n/lib/en_us/i19highPriority.txt +1 -0
  1479. package/packages/i18n/lib/en_us/i19highestPrice.txt +1 -0
  1480. package/packages/i18n/lib/en_us/i19holderName.txt +1 -0
  1481. package/packages/i18n/lib/en_us/i19home.txt +1 -0
  1482. package/packages/i18n/lib/en_us/i19hour.txt +1 -0
  1483. package/packages/i18n/lib/en_us/i19hours.txt +1 -0
  1484. package/packages/i18n/lib/en_us/i19iForgotMyPassword.txt +1 -0
  1485. package/packages/i18n/lib/en_us/i19iReadAndAccept.txt +1 -0
  1486. package/packages/i18n/lib/en_us/i19icon.txt +1 -0
  1487. package/packages/i18n/lib/en_us/i19id.txt +1 -0
  1488. package/packages/i18n/lib/en_us/i19idOfShippingLine.txt +1 -0
  1489. package/packages/i18n/lib/en_us/i19identification.txt +1 -0
  1490. package/packages/i18n/lib/en_us/i19identifyYourAccount.txt +1 -0
  1491. package/packages/i18n/lib/en_us/i19image.txt +1 -0
  1492. package/packages/i18n/lib/en_us/i19images.txt +1 -0
  1493. package/packages/i18n/lib/en_us/i19import.txt +1 -0
  1494. package/packages/i18n/lib/en_us/i19in.txt +1 -0
  1495. package/packages/i18n/lib/en_us/i19inStock.txt +1 -0
  1496. package/packages/i18n/lib/en_us/i19inStockAt.txt +1 -0
  1497. package/packages/i18n/lib/en_us/i19inactive.txt +1 -0
  1498. package/packages/i18n/lib/en_us/i19incorrect.txt +1 -0
  1499. package/packages/i18n/lib/en_us/i19incorrectEmailCodeMsg.txt +1 -0
  1500. package/packages/i18n/lib/en_us/i19incorrectFormat.txt +1 -0
  1501. package/packages/i18n/lib/en_us/i19info.txt +1 -0
  1502. package/packages/i18n/lib/en_us/i19inscriptionNumber.txt +1 -0
  1503. package/packages/i18n/lib/en_us/i19insert.txt +1 -0
  1504. package/packages/i18n/lib/en_us/i19install.txt +1 -0
  1505. package/packages/i18n/lib/en_us/i19installNow.txt +1 -0
  1506. package/packages/i18n/lib/en_us/i19installed.txt +1 -0
  1507. package/packages/i18n/lib/en_us/i19installedApps.txt +1 -0
  1508. package/packages/i18n/lib/en_us/i19installingApp.txt +1 -0
  1509. package/packages/i18n/lib/en_us/i19installment.txt +1 -0
  1510. package/packages/i18n/lib/en_us/i19installments.txt +1 -0
  1511. package/packages/i18n/lib/en_us/i19institutional.txt +1 -0
  1512. package/packages/i18n/lib/en_us/i19interestFree.txt +1 -0
  1513. package/packages/i18n/lib/en_us/i19intermediator.txt +1 -0
  1514. package/packages/i18n/lib/en_us/i19invalidCard.txt +1 -0
  1515. package/packages/i18n/lib/en_us/i19invalidCardMsg.txt +1 -0
  1516. package/packages/i18n/lib/en_us/i19invalidCouponMsg.txt +1 -0
  1517. package/packages/i18n/lib/en_us/i19invalidDomainName.txt +1 -0
  1518. package/packages/i18n/lib/en_us/i19invalidLoginInfoMsg.txt +1 -0
  1519. package/packages/i18n/lib/en_us/i19inventory.txt +1 -0
  1520. package/packages/i18n/lib/en_us/i19inventoryHistory.txt +1 -0
  1521. package/packages/i18n/lib/en_us/i19invoice.txt +1 -0
  1522. package/packages/i18n/lib/en_us/i19invoices.txt +1 -0
  1523. package/packages/i18n/lib/en_us/i19isFilter.txt +1 -0
  1524. package/packages/i18n/lib/en_us/i19isNotYou.txt +1 -0
  1525. package/packages/i18n/lib/en_us/i19item.txt +1 -0
  1526. package/packages/i18n/lib/en_us/i19items.txt +1 -0
  1527. package/packages/i18n/lib/en_us/i19itemsFound.txt +1 -0
  1528. package/packages/i18n/lib/en_us/i19jurifical.txt +1 -0
  1529. package/packages/i18n/lib/en_us/i19just.txt +1 -0
  1530. package/packages/i18n/lib/en_us/i19keywords.txt +1 -0
  1531. package/packages/i18n/lib/en_us/i19kit.txt +1 -0
  1532. package/packages/i18n/lib/en_us/i19label.txt +1 -0
  1533. package/packages/i18n/lib/en_us/i19labelOfCustomization.txt +1 -0
  1534. package/packages/i18n/lib/en_us/i19last.txt +1 -0
  1535. package/packages/i18n/lib/en_us/i19lastOptions.txt +1 -0
  1536. package/packages/i18n/lib/en_us/i19lastPurchase.txt +1 -0
  1537. package/packages/i18n/lib/en_us/i19lastSearchedTerms.txt +1 -0
  1538. package/packages/i18n/lib/en_us/i19lastVisitedProducts.txt +1 -0
  1539. package/packages/i18n/lib/en_us/i19latestOrders.txt +1 -0
  1540. package/packages/i18n/lib/en_us/i19launch.txt +1 -0
  1541. package/packages/i18n/lib/en_us/i19launching.txt +1 -0
  1542. package/packages/i18n/lib/en_us/i19length.txt +1 -0
  1543. package/packages/i18n/lib/en_us/i19lineAddress.txt +1 -0
  1544. package/packages/i18n/lib/en_us/i19list.txt +1 -0
  1545. package/packages/i18n/lib/en_us/i19listOfInvoices.txt +1 -0
  1546. package/packages/i18n/lib/en_us/i19listOfPayments.txt +1 -0
  1547. package/packages/i18n/lib/en_us/i19listSubscriptionInvoices.txt +1 -0
  1548. package/packages/i18n/lib/en_us/i19load.txt +1 -0
  1549. package/packages/i18n/lib/en_us/i19loadDataErrorMsg.txt +1 -0
  1550. package/packages/i18n/lib/en_us/i19loadMore.txt +1 -0
  1551. package/packages/i18n/lib/en_us/i19loadMoreProducts.txt +1 -0
  1552. package/packages/i18n/lib/en_us/i19loadProductErrorMsg.txt +1 -0
  1553. package/packages/i18n/lib/en_us/i19loading.txt +1 -0
  1554. package/packages/i18n/lib/en_us/i19locale.txt +1 -0
  1555. package/packages/i18n/lib/en_us/i19login.txt +1 -0
  1556. package/packages/i18n/lib/en_us/i19loginEnabled.txt +1 -0
  1557. package/packages/i18n/lib/en_us/i19loginErrorMsg.txt +1 -0
  1558. package/packages/i18n/lib/en_us/i19loginForOrderDetailsMsg.txt +1 -0
  1559. package/packages/i18n/lib/en_us/i19logo.txt +1 -0
  1560. package/packages/i18n/lib/en_us/i19logout.txt +1 -0
  1561. package/packages/i18n/lib/en_us/i19low.txt +1 -0
  1562. package/packages/i18n/lib/en_us/i19lowestPrice.txt +1 -0
  1563. package/packages/i18n/lib/en_us/i19loyaltyPoints.txt +1 -0
  1564. package/packages/i18n/lib/en_us/i19loyaltyPointsName.txt +1 -0
  1565. package/packages/i18n/lib/en_us/i19loyaltyPointsPointsValue.txt +1 -0
  1566. package/packages/i18n/lib/en_us/i19madeBy.txt +1 -0
  1567. package/packages/i18n/lib/en_us/i19mainEmail.txt +1 -0
  1568. package/packages/i18n/lib/en_us/i19male.txt +1 -0
  1569. package/packages/i18n/lib/en_us/i19manageStock.txt +1 -0
  1570. package/packages/i18n/lib/en_us/i19manageYourPurchaseHistory.txt +1 -0
  1571. package/packages/i18n/lib/en_us/i19marketing.txt +1 -0
  1572. package/packages/i18n/lib/en_us/i19marketplace.txt +1 -0
  1573. package/packages/i18n/lib/en_us/i19marketplaces.txt +1 -0
  1574. package/packages/i18n/lib/en_us/i19massEdit.txt +1 -0
  1575. package/packages/i18n/lib/en_us/i19maxQuantity.txt +1 -0
  1576. package/packages/i18n/lib/en_us/i19maximum.txt +1 -0
  1577. package/packages/i18n/lib/en_us/i19measurement.txt +1 -0
  1578. package/packages/i18n/lib/en_us/i19media.txt +1 -0
  1579. package/packages/i18n/lib/en_us/i19mediaGallery.txt +1 -0
  1580. package/packages/i18n/lib/en_us/i19menu.txt +1 -0
  1581. package/packages/i18n/lib/en_us/i19metaTagDescription.txt +1 -0
  1582. package/packages/i18n/lib/en_us/i19metafields.txt +1 -0
  1583. package/packages/i18n/lib/en_us/i19metafieldsMsg.txt +1 -0
  1584. package/packages/i18n/lib/en_us/i19middleName.txt +1 -0
  1585. package/packages/i18n/lib/en_us/i19milliseconds.txt +1 -0
  1586. package/packages/i18n/lib/en_us/i19minQuantity.txt +1 -0
  1587. package/packages/i18n/lib/en_us/i19minimum.txt +1 -0
  1588. package/packages/i18n/lib/en_us/i19minus.txt +1 -0
  1589. package/packages/i18n/lib/en_us/i19minute.txt +1 -0
  1590. package/packages/i18n/lib/en_us/i19minutes.txt +1 -0
  1591. package/packages/i18n/lib/en_us/i19mlCategoryId.txt +1 -0
  1592. package/packages/i18n/lib/en_us/i19mobile.txt +1 -0
  1593. package/packages/i18n/lib/en_us/i19mobileLink.txt +1 -0
  1594. package/packages/i18n/lib/en_us/i19modules.txt +1 -0
  1595. package/packages/i18n/lib/en_us/i19month.txt +1 -0
  1596. package/packages/i18n/lib/en_us/i19monthly.txt +1 -0
  1597. package/packages/i18n/lib/en_us/i19mostPopular.txt +1 -0
  1598. package/packages/i18n/lib/en_us/i19mostRelevant.txt +1 -0
  1599. package/packages/i18n/lib/en_us/i19motorcycleCourier.txt +1 -0
  1600. package/packages/i18n/lib/en_us/i19myAccount.txt +1 -0
  1601. package/packages/i18n/lib/en_us/i19myAccountAndOrders.txt +1 -0
  1602. package/packages/i18n/lib/en_us/i19myCart.txt +1 -0
  1603. package/packages/i18n/lib/en_us/i19myFavorites.txt +1 -0
  1604. package/packages/i18n/lib/en_us/i19myOrders.txt +1 -0
  1605. package/packages/i18n/lib/en_us/i19myShoppingCart.txt +1 -0
  1606. package/packages/i18n/lib/en_us/i19name.txt +1 -0
  1607. package/packages/i18n/lib/en_us/i19nameOnCard.txt +1 -0
  1608. package/packages/i18n/lib/en_us/i19namespace.txt +1 -0
  1609. package/packages/i18n/lib/en_us/i19namespaceMsg.txt +1 -0
  1610. package/packages/i18n/lib/en_us/i19nearTo.txt +1 -0
  1611. package/packages/i18n/lib/en_us/i19needHelpQn.txt +1 -0
  1612. package/packages/i18n/lib/en_us/i19new.txt +1 -0
  1613. package/packages/i18n/lib/en_us/i19newAddress.txt +1 -0
  1614. package/packages/i18n/lib/en_us/i19newOrders.txt +1 -0
  1615. package/packages/i18n/lib/en_us/i19newPassword.txt +1 -0
  1616. package/packages/i18n/lib/en_us/i19newPriceRange.txt +1 -0
  1617. package/packages/i18n/lib/en_us/i19newVersionAvailableMsg.txt +1 -0
  1618. package/packages/i18n/lib/en_us/i19newsletter.txt +1 -0
  1619. package/packages/i18n/lib/en_us/i19newsletterReport.txt +1 -0
  1620. package/packages/i18n/lib/en_us/i19next.txt +1 -0
  1621. package/packages/i18n/lib/en_us/i19nickname.txt +1 -0
  1622. package/packages/i18n/lib/en_us/i19no.txt +1 -0
  1623. package/packages/i18n/lib/en_us/i19noAdditional.txt +1 -0
  1624. package/packages/i18n/lib/en_us/i19noAppsAvailable.txt +1 -0
  1625. package/packages/i18n/lib/en_us/i19noBrand.txt +1 -0
  1626. package/packages/i18n/lib/en_us/i19noCategory.txt +1 -0
  1627. package/packages/i18n/lib/en_us/i19noCollection.txt +1 -0
  1628. package/packages/i18n/lib/en_us/i19noGrid.txt +1 -0
  1629. package/packages/i18n/lib/en_us/i19noItemSelected.txt +1 -0
  1630. package/packages/i18n/lib/en_us/i19noNewOrdersMsg.txt +1 -0
  1631. package/packages/i18n/lib/en_us/i19noNumber.txt +1 -0
  1632. package/packages/i18n/lib/en_us/i19noOrder.txt +1 -0
  1633. package/packages/i18n/lib/en_us/i19noPrice.txt +1 -0
  1634. package/packages/i18n/lib/en_us/i19noProductsFound.txt +1 -0
  1635. package/packages/i18n/lib/en_us/i19noProductsFoundFor$1.txt +1 -0
  1636. package/packages/i18n/lib/en_us/i19noProductsInBrandMsg.txt +1 -0
  1637. package/packages/i18n/lib/en_us/i19noProductsInCategoryMsg.txt +1 -0
  1638. package/packages/i18n/lib/en_us/i19noProfileFoundWithEmail.txt +1 -0
  1639. package/packages/i18n/lib/en_us/i19noSavedFavoritesMsg.txt +1 -0
  1640. package/packages/i18n/lib/en_us/i19noUser.txt +1 -0
  1641. package/packages/i18n/lib/en_us/i19normal.txt +1 -0
  1642. package/packages/i18n/lib/en_us/i19notConfigured.txt +1 -0
  1643. package/packages/i18n/lib/en_us/i19notFound.txt +1 -0
  1644. package/packages/i18n/lib/en_us/i19notes.txt +1 -0
  1645. package/packages/i18n/lib/en_us/i19notifications.txt +1 -0
  1646. package/packages/i18n/lib/en_us/i19notified.txt +1 -0
  1647. package/packages/i18n/lib/en_us/i19notifiedAdmins.txt +1 -0
  1648. package/packages/i18n/lib/en_us/i19notifiedAdminsMsg.txt +1 -0
  1649. package/packages/i18n/lib/en_us/i19notifyAboutOrders.txt +1 -0
  1650. package/packages/i18n/lib/en_us/i19number.txt +1 -0
  1651. package/packages/i18n/lib/en_us/i19oauthOnPopup.txt +1 -0
  1652. package/packages/i18n/lib/en_us/i19of.txt +1 -0
  1653. package/packages/i18n/lib/en_us/i19ofDiscount.txt +1 -0
  1654. package/packages/i18n/lib/en_us/i19offer.txt +1 -0
  1655. package/packages/i18n/lib/en_us/i19on.txt +1 -0
  1656. package/packages/i18n/lib/en_us/i19onFollowingAddress.txt +1 -0
  1657. package/packages/i18n/lib/en_us/i19onFreight.txt +1 -0
  1658. package/packages/i18n/lib/en_us/i19only.txt +1 -0
  1659. package/packages/i18n/lib/en_us/i19open.txt +1 -0
  1660. package/packages/i18n/lib/en_us/i19openAt.txt +1 -0
  1661. package/packages/i18n/lib/en_us/i19openCart.txt +1 -0
  1662. package/packages/i18n/lib/en_us/i19openGallery.txt +1 -0
  1663. package/packages/i18n/lib/en_us/i19operational.txt +1 -0
  1664. package/packages/i18n/lib/en_us/i19option.txt +1 -0
  1665. package/packages/i18n/lib/en_us/i19optionChosen.txt +1 -0
  1666. package/packages/i18n/lib/en_us/i19options.txt +1 -0
  1667. package/packages/i18n/lib/en_us/i19or.txt +1 -0
  1668. package/packages/i18n/lib/en_us/i19orProceedWith.txt +1 -0
  1669. package/packages/i18n/lib/en_us/i19order.txt +1 -0
  1670. package/packages/i18n/lib/en_us/i19orderCode.txt +1 -0
  1671. package/packages/i18n/lib/en_us/i19orderConfirmationMsg.txt +1 -0
  1672. package/packages/i18n/lib/en_us/i19orderCreated.txt +1 -0
  1673. package/packages/i18n/lib/en_us/i19orderDetails.txt +1 -0
  1674. package/packages/i18n/lib/en_us/i19orderItems.txt +1 -0
  1675. package/packages/i18n/lib/en_us/i19orderNotesInputMsg.txt +1 -0
  1676. package/packages/i18n/lib/en_us/i19orderNumber.txt +1 -0
  1677. package/packages/i18n/lib/en_us/i19orderObservations.txt +1 -0
  1678. package/packages/i18n/lib/en_us/i19orderStatus.txt +1 -0
  1679. package/packages/i18n/lib/en_us/i19orderValue.txt +1 -0
  1680. package/packages/i18n/lib/en_us/i19orders.txt +1 -0
  1681. package/packages/i18n/lib/en_us/i19ordersCount.txt +1 -0
  1682. package/packages/i18n/lib/en_us/i19ordersTotalValue.txt +1 -0
  1683. package/packages/i18n/lib/en_us/i19organization.txt +1 -0
  1684. package/packages/i18n/lib/en_us/i19otherCustomers.txt +1 -0
  1685. package/packages/i18n/lib/en_us/i19otherCustomersMsg.txt +1 -0
  1686. package/packages/i18n/lib/en_us/i19outOfDate.txt +1 -0
  1687. package/packages/i18n/lib/en_us/i19outOfStock.txt +1 -0
  1688. package/packages/i18n/lib/en_us/i19ownDelivery.txt +1 -0
  1689. package/packages/i18n/lib/en_us/i19ownHand.txt +1 -0
  1690. package/packages/i18n/lib/en_us/i19ownHandCost.txt +1 -0
  1691. package/packages/i18n/lib/en_us/i19package.txt +1 -0
  1692. package/packages/i18n/lib/en_us/i19packageDimensions.txt +1 -0
  1693. package/packages/i18n/lib/en_us/i19packageDimensionsInformation.txt +1 -0
  1694. package/packages/i18n/lib/en_us/i19packageInformation.txt +1 -0
  1695. package/packages/i18n/lib/en_us/i19packageWeight.txt +1 -0
  1696. package/packages/i18n/lib/en_us/i19pageLoaded.txt +1 -0
  1697. package/packages/i18n/lib/en_us/i19paid.txt +1 -0
  1698. package/packages/i18n/lib/en_us/i19paidTextMsg.txt +1 -0
  1699. package/packages/i18n/lib/en_us/i19parcelIn.txt +1 -0
  1700. package/packages/i18n/lib/en_us/i19parentCategory.txt +1 -0
  1701. package/packages/i18n/lib/en_us/i19partner.txt +1 -0
  1702. package/packages/i18n/lib/en_us/i19partners.txt +1 -0
  1703. package/packages/i18n/lib/en_us/i19partnersProgram.txt +1 -0
  1704. package/packages/i18n/lib/en_us/i19password.txt +1 -0
  1705. package/packages/i18n/lib/en_us/i19passwordChangedSuccessfully.txt +1 -0
  1706. package/packages/i18n/lib/en_us/i19patch.txt +1 -0
  1707. package/packages/i18n/lib/en_us/i19payer.txt +1 -0
  1708. package/packages/i18n/lib/en_us/i19payment.txt +1 -0
  1709. package/packages/i18n/lib/en_us/i19paymentConfirmed.txt +1 -0
  1710. package/packages/i18n/lib/en_us/i19paymentDetails.txt +1 -0
  1711. package/packages/i18n/lib/en_us/i19paymentError.txt +1 -0
  1712. package/packages/i18n/lib/en_us/i19paymentErrorMsg.txt +1 -0
  1713. package/packages/i18n/lib/en_us/i19paymentLink.txt +1 -0
  1714. package/packages/i18n/lib/en_us/i19paymentMethod.txt +1 -0
  1715. package/packages/i18n/lib/en_us/i19paymentMethodLabel.txt +1 -0
  1716. package/packages/i18n/lib/en_us/i19paymentMethods.txt +1 -0
  1717. package/packages/i18n/lib/en_us/i19paymentOptions.txt +1 -0
  1718. package/packages/i18n/lib/en_us/i19paymentRealized.txt +1 -0
  1719. package/packages/i18n/lib/en_us/i19perUnit.txt +1 -0
  1720. package/packages/i18n/lib/en_us/i19permalink.txt +1 -0
  1721. package/packages/i18n/lib/en_us/i19personalRegistration.txt +1 -0
  1722. package/packages/i18n/lib/en_us/i19phone.txt +1 -0
  1723. package/packages/i18n/lib/en_us/i19phones.txt +1 -0
  1724. package/packages/i18n/lib/en_us/i19photo.txt +1 -0
  1725. package/packages/i18n/lib/en_us/i19photos.txt +1 -0
  1726. package/packages/i18n/lib/en_us/i19pickUpAtTheStore.txt +1 -0
  1727. package/packages/i18n/lib/en_us/i19pickUpToday.txt +1 -0
  1728. package/packages/i18n/lib/en_us/i19pickup.txt +1 -0
  1729. package/packages/i18n/lib/en_us/i19picture.txt +1 -0
  1730. package/packages/i18n/lib/en_us/i19pictures.txt +1 -0
  1731. package/packages/i18n/lib/en_us/i19plus.txt +1 -0
  1732. package/packages/i18n/lib/en_us/i19pointsEarned.txt +1 -0
  1733. package/packages/i18n/lib/en_us/i19popularProducts.txt +1 -0
  1734. package/packages/i18n/lib/en_us/i19popup.txt +1 -0
  1735. package/packages/i18n/lib/en_us/i19post.txt +1 -0
  1736. package/packages/i18n/lib/en_us/i19posted.txt +1 -0
  1737. package/packages/i18n/lib/en_us/i19postingDeadline.txt +1 -0
  1738. package/packages/i18n/lib/en_us/i19postingIn.txt +1 -0
  1739. package/packages/i18n/lib/en_us/i19pressEnterToSave.txt +1 -0
  1740. package/packages/i18n/lib/en_us/i19previous.txt +1 -0
  1741. package/packages/i18n/lib/en_us/i19price.txt +1 -0
  1742. package/packages/i18n/lib/en_us/i19priceAlteration.txt +1 -0
  1743. package/packages/i18n/lib/en_us/i19priceEffectiveDate.txt +1 -0
  1744. package/packages/i18n/lib/en_us/i19priceEffectiveDateEnd.txt +1 -0
  1745. package/packages/i18n/lib/en_us/i19priceEffectiveDateStar.txt +1 -0
  1746. package/packages/i18n/lib/en_us/i19priceRange.txt +1 -0
  1747. package/packages/i18n/lib/en_us/i19priceTo.txt +1 -0
  1748. package/packages/i18n/lib/en_us/i19pricing.txt +1 -0
  1749. package/packages/i18n/lib/en_us/i19printBillet.txt +1 -0
  1750. package/packages/i18n/lib/en_us/i19privacy.txt +1 -0
  1751. package/packages/i18n/lib/en_us/i19privacyPolicy.txt +1 -0
  1752. package/packages/i18n/lib/en_us/i19private.txt +1 -0
  1753. package/packages/i18n/lib/en_us/i19privateMetafields.txt +1 -0
  1754. package/packages/i18n/lib/en_us/i19privateMetafieldsMsg.txt +1 -0
  1755. package/packages/i18n/lib/en_us/i19proceed.txt +1 -0
  1756. package/packages/i18n/lib/en_us/i19product.txt +1 -0
  1757. package/packages/i18n/lib/en_us/i19productDescription.txt +1 -0
  1758. package/packages/i18n/lib/en_us/i19productId.txt +1 -0
  1759. package/packages/i18n/lib/en_us/i19productImages.txt +1 -0
  1760. package/packages/i18n/lib/en_us/i19productName.txt +1 -0
  1761. package/packages/i18n/lib/en_us/i19productSpecifications.txt +1 -0
  1762. package/packages/i18n/lib/en_us/i19productionDeadline.txt +1 -0
  1763. package/packages/i18n/lib/en_us/i19productionTime.txt +1 -0
  1764. package/packages/i18n/lib/en_us/i19productionTimeCumulative.txt +1 -0
  1765. package/packages/i18n/lib/en_us/i19productionTimeDaysMsg.txt +1 -0
  1766. package/packages/i18n/lib/en_us/i19productionTimeMsg.txt +1 -0
  1767. package/packages/i18n/lib/en_us/i19productionTimeWorkingDays.txt +1 -0
  1768. package/packages/i18n/lib/en_us/i19products.txt +1 -0
  1769. package/packages/i18n/lib/en_us/i19productsAdded.txt +1 -0
  1770. package/packages/i18n/lib/en_us/i19productsAddedToCart.txt +1 -0
  1771. package/packages/i18n/lib/en_us/i19productsPurchased.txt +1 -0
  1772. package/packages/i18n/lib/en_us/i19profile.txt +1 -0
  1773. package/packages/i18n/lib/en_us/i19profileNotFound.txt +1 -0
  1774. package/packages/i18n/lib/en_us/i19province.txt +1 -0
  1775. package/packages/i18n/lib/en_us/i19provinceCode.txt +1 -0
  1776. package/packages/i18n/lib/en_us/i19put.txt +1 -0
  1777. package/packages/i18n/lib/en_us/i19quantity.txt +1 -0
  1778. package/packages/i18n/lib/en_us/i19quarterly.txt +1 -0
  1779. package/packages/i18n/lib/en_us/i19quickSetup.txt +1 -0
  1780. package/packages/i18n/lib/en_us/i19random.txt +1 -0
  1781. package/packages/i18n/lib/en_us/i19rating.txt +1 -0
  1782. package/packages/i18n/lib/en_us/i19read.txt +1 -0
  1783. package/packages/i18n/lib/en_us/i19receipt.txt +1 -0
  1784. package/packages/i18n/lib/en_us/i19receiptPrice.txt +1 -0
  1785. package/packages/i18n/lib/en_us/i19receiveNewsletter.txt +1 -0
  1786. package/packages/i18n/lib/en_us/i19receiveToday.txt +1 -0
  1787. package/packages/i18n/lib/en_us/i19receivedOrder.txt +1 -0
  1788. package/packages/i18n/lib/en_us/i19recipient.txt +1 -0
  1789. package/packages/i18n/lib/en_us/i19recommendations.txt +1 -0
  1790. package/packages/i18n/lib/en_us/i19recommendedForYou.txt +1 -0
  1791. package/packages/i18n/lib/en_us/i19recommendedProducts.txt +1 -0
  1792. package/packages/i18n/lib/en_us/i19recurrence.txt +1 -0
  1793. package/packages/i18n/lib/en_us/i19recurrent.txt +1 -0
  1794. package/packages/i18n/lib/en_us/i19redirectToPayment.txt +1 -0
  1795. package/packages/i18n/lib/en_us/i19reference.txt +1 -0
  1796. package/packages/i18n/lib/en_us/i19referenceCode.txt +1 -0
  1797. package/packages/i18n/lib/en_us/i19referral.txt +1 -0
  1798. package/packages/i18n/lib/en_us/i19referringSite.txt +1 -0
  1799. package/packages/i18n/lib/en_us/i19refine.txt +1 -0
  1800. package/packages/i18n/lib/en_us/i19refineSearch.txt +1 -0
  1801. package/packages/i18n/lib/en_us/i19registerDate.txt +1 -0
  1802. package/packages/i18n/lib/en_us/i19registerProduct.txt +1 -0
  1803. package/packages/i18n/lib/en_us/i19registerToBuy.txt +1 -0
  1804. package/packages/i18n/lib/en_us/i19registerToBuyMsg.txt +1 -0
  1805. package/packages/i18n/lib/en_us/i19registration.txt +1 -0
  1806. package/packages/i18n/lib/en_us/i19reinstall.txt +1 -0
  1807. package/packages/i18n/lib/en_us/i19relatedApps.txt +1 -0
  1808. package/packages/i18n/lib/en_us/i19relatedProducts.txt +1 -0
  1809. package/packages/i18n/lib/en_us/i19relatedSearch.txt +1 -0
  1810. package/packages/i18n/lib/en_us/i19releases.txt +1 -0
  1811. package/packages/i18n/lib/en_us/i19relevance.txt +1 -0
  1812. package/packages/i18n/lib/en_us/i19remove.txt +1 -0
  1813. package/packages/i18n/lib/en_us/i19removeFromFavorites.txt +1 -0
  1814. package/packages/i18n/lib/en_us/i19removed.txt +1 -0
  1815. package/packages/i18n/lib/en_us/i19reopenOrder.txt +1 -0
  1816. package/packages/i18n/lib/en_us/i19report.txt +1 -0
  1817. package/packages/i18n/lib/en_us/i19require.txt +1 -0
  1818. package/packages/i18n/lib/en_us/i19required.txt +1 -0
  1819. package/packages/i18n/lib/en_us/i19requiredEmail.txt +1 -0
  1820. package/packages/i18n/lib/en_us/i19requiredEmailMsg.txt +1 -0
  1821. package/packages/i18n/lib/en_us/i19requiredField.txt +1 -0
  1822. package/packages/i18n/lib/en_us/i19resource.txt +1 -0
  1823. package/packages/i18n/lib/en_us/i19resourceId.txt +1 -0
  1824. package/packages/i18n/lib/en_us/i19results.txt +1 -0
  1825. package/packages/i18n/lib/en_us/i19resultsFor.txt +1 -0
  1826. package/packages/i18n/lib/en_us/i19retail.txt +1 -0
  1827. package/packages/i18n/lib/en_us/i19retry.txt +1 -0
  1828. package/packages/i18n/lib/en_us/i19reviews.txt +1 -0
  1829. package/packages/i18n/lib/en_us/i19safeBuy.txt +1 -0
  1830. package/packages/i18n/lib/en_us/i19safeEnvMsg.txt +1 -0
  1831. package/packages/i18n/lib/en_us/i19sales.txt +1 -0
  1832. package/packages/i18n/lib/en_us/i19salesChannels.txt +1 -0
  1833. package/packages/i18n/lib/en_us/i19salesPrice.txt +1 -0
  1834. package/packages/i18n/lib/en_us/i19save.txt +1 -0
  1835. package/packages/i18n/lib/en_us/i19saveBrand.txt +1 -0
  1836. package/packages/i18n/lib/en_us/i19saveCard.txt +1 -0
  1837. package/packages/i18n/lib/en_us/i19saveCart.txt +1 -0
  1838. package/packages/i18n/lib/en_us/i19saveCategory.txt +1 -0
  1839. package/packages/i18n/lib/en_us/i19saveClient.txt +1 -0
  1840. package/packages/i18n/lib/en_us/i19saveCollection.txt +1 -0
  1841. package/packages/i18n/lib/en_us/i19saveGrid.txt +1 -0
  1842. package/packages/i18n/lib/en_us/i19saveProduct.txt +1 -0
  1843. package/packages/i18n/lib/en_us/i19saveText.txt +1 -0
  1844. package/packages/i18n/lib/en_us/i19saved.txt +1 -0
  1845. package/packages/i18n/lib/en_us/i19savedWithSuccess.txt +1 -0
  1846. package/packages/i18n/lib/en_us/i19scheduledDelivery.txt +1 -0
  1847. package/packages/i18n/lib/en_us/i19search.txt +1 -0
  1848. package/packages/i18n/lib/en_us/i19searchAgain.txt +1 -0
  1849. package/packages/i18n/lib/en_us/i19searchEngineListing.txt +1 -0
  1850. package/packages/i18n/lib/en_us/i19searchItems.txt +1 -0
  1851. package/packages/i18n/lib/en_us/i19searchOfflineErrorMsg.txt +1 -0
  1852. package/packages/i18n/lib/en_us/i19searchProducts.txt +1 -0
  1853. package/packages/i18n/lib/en_us/i19searchingFor.txt +1 -0
  1854. package/packages/i18n/lib/en_us/i19second.txt +1 -0
  1855. package/packages/i18n/lib/en_us/i19seconds.txt +1 -0
  1856. package/packages/i18n/lib/en_us/i19securityCode.txt +1 -0
  1857. package/packages/i18n/lib/en_us/i19seeAll$1Category.txt +1 -0
  1858. package/packages/i18n/lib/en_us/i19seeAll.txt +1 -0
  1859. package/packages/i18n/lib/en_us/i19seeAllApps.txt +1 -0
  1860. package/packages/i18n/lib/en_us/i19seeAllThemes.txt +1 -0
  1861. package/packages/i18n/lib/en_us/i19seeCart.txt +1 -0
  1862. package/packages/i18n/lib/en_us/i19seeMore.txt +1 -0
  1863. package/packages/i18n/lib/en_us/i19seeMoreCategories.txt +1 -0
  1864. package/packages/i18n/lib/en_us/i19seeMoreInfo.txt +1 -0
  1865. package/packages/i18n/lib/en_us/i19seeOrder.txt +1 -0
  1866. package/packages/i18n/lib/en_us/i19seeShoppingCart.txt +1 -0
  1867. package/packages/i18n/lib/en_us/i19select.txt +1 -0
  1868. package/packages/i18n/lib/en_us/i19selectVariation.txt +1 -0
  1869. package/packages/i18n/lib/en_us/i19selectVariationMsg.txt +1 -0
  1870. package/packages/i18n/lib/en_us/i19selected.txt +1 -0
  1871. package/packages/i18n/lib/en_us/i19selectedOffers.txt +1 -0
  1872. package/packages/i18n/lib/en_us/i19selectedOptions.txt +1 -0
  1873. package/packages/i18n/lib/en_us/i19seller.txt +1 -0
  1874. package/packages/i18n/lib/en_us/i19sellerRecommendations.txt +1 -0
  1875. package/packages/i18n/lib/en_us/i19sellerRecommendationsProducts.txt +1 -0
  1876. package/packages/i18n/lib/en_us/i19sellerRecommendationsTitle.txt +1 -0
  1877. package/packages/i18n/lib/en_us/i19sellerStatus.txt +1 -0
  1878. package/packages/i18n/lib/en_us/i19send.txt +1 -0
  1879. package/packages/i18n/lib/en_us/i19sendLoginCodeByEmail.txt +1 -0
  1880. package/packages/i18n/lib/en_us/i19sendLoginLinkByEmail.txt +1 -0
  1881. package/packages/i18n/lib/en_us/i19sender.txt +1 -0
  1882. package/packages/i18n/lib/en_us/i19senderFrom.txt +1 -0
  1883. package/packages/i18n/lib/en_us/i19seo.txt +1 -0
  1884. package/packages/i18n/lib/en_us/i19setDomainMsg.txt +1 -0
  1885. package/packages/i18n/lib/en_us/i19setStoreDomain.txt +1 -0
  1886. package/packages/i18n/lib/en_us/i19setUp.txt +1 -0
  1887. package/packages/i18n/lib/en_us/i19settings.txt +1 -0
  1888. package/packages/i18n/lib/en_us/i19share.txt +1 -0
  1889. package/packages/i18n/lib/en_us/i19shareOnFacebook.txt +1 -0
  1890. package/packages/i18n/lib/en_us/i19shareOnWhatsapp.txt +1 -0
  1891. package/packages/i18n/lib/en_us/i19shipped.txt +1 -0
  1892. package/packages/i18n/lib/en_us/i19shippedBy.txt +1 -0
  1893. package/packages/i18n/lib/en_us/i19shipping.txt +1 -0
  1894. package/packages/i18n/lib/en_us/i19shippingAdditionalPrice.txt +1 -0
  1895. package/packages/i18n/lib/en_us/i19shippingAddress.txt +1 -0
  1896. package/packages/i18n/lib/en_us/i19shippingCustomFields.txt +1 -0
  1897. package/packages/i18n/lib/en_us/i19shippingDiscount.txt +1 -0
  1898. package/packages/i18n/lib/en_us/i19shippingInvoices.txt +1 -0
  1899. package/packages/i18n/lib/en_us/i19shippingMethod.txt +1 -0
  1900. package/packages/i18n/lib/en_us/i19shippingMethodLabel.txt +1 -0
  1901. package/packages/i18n/lib/en_us/i19shippingNotes.txt +1 -0
  1902. package/packages/i18n/lib/en_us/i19shippingNotesMsg.txt +1 -0
  1903. package/packages/i18n/lib/en_us/i19shippingStatus.txt +1 -0
  1904. package/packages/i18n/lib/en_us/i19shippingTag.txt +1 -0
  1905. package/packages/i18n/lib/en_us/i19shippingTags.txt +1 -0
  1906. package/packages/i18n/lib/en_us/i19shippingTaxes.txt +1 -0
  1907. package/packages/i18n/lib/en_us/i19shippingTaxesMsg.txt +1 -0
  1908. package/packages/i18n/lib/en_us/i19shippingTo.txt +1 -0
  1909. package/packages/i18n/lib/en_us/i19shippingTotalCost.txt +1 -0
  1910. package/packages/i18n/lib/en_us/i19shopByCategory.txt +1 -0
  1911. package/packages/i18n/lib/en_us/i19shopByFranchise.txt +1 -0
  1912. package/packages/i18n/lib/en_us/i19shopNow.txt +1 -0
  1913. package/packages/i18n/lib/en_us/i19shoppingCart.txt +1 -0
  1914. package/packages/i18n/lib/en_us/i19short.txt +1 -0
  1915. package/packages/i18n/lib/en_us/i19shortDescription.txt +1 -0
  1916. package/packages/i18n/lib/en_us/i19show.txt +1 -0
  1917. package/packages/i18n/lib/en_us/i19showDescription.txt +1 -0
  1918. package/packages/i18n/lib/en_us/i19showReview.txt +1 -0
  1919. package/packages/i18n/lib/en_us/i19signIn.txt +1 -0
  1920. package/packages/i18n/lib/en_us/i19signInWith.txt +1 -0
  1921. package/packages/i18n/lib/en_us/i19signInWithAnotherEmail.txt +1 -0
  1922. package/packages/i18n/lib/en_us/i19signUp.txt +1 -0
  1923. package/packages/i18n/lib/en_us/i19signUpWith.txt +1 -0
  1924. package/packages/i18n/lib/en_us/i19signature.txt +1 -0
  1925. package/packages/i18n/lib/en_us/i19size.txt +1 -0
  1926. package/packages/i18n/lib/en_us/i19sizeGuide.txt +1 -0
  1927. package/packages/i18n/lib/en_us/i19sku.txt +1 -0
  1928. package/packages/i18n/lib/en_us/i19slug.txt +1 -0
  1929. package/packages/i18n/lib/en_us/i19socialLogin.txt +1 -0
  1930. package/packages/i18n/lib/en_us/i19socialMedia.txt +1 -0
  1931. package/packages/i18n/lib/en_us/i19sort.txt +1 -0
  1932. package/packages/i18n/lib/en_us/i19sortBy.txt +1 -0
  1933. package/packages/i18n/lib/en_us/i19source.txt +1 -0
  1934. package/packages/i18n/lib/en_us/i19sourceName.txt +1 -0
  1935. package/packages/i18n/lib/en_us/i19specifications.txt +1 -0
  1936. package/packages/i18n/lib/en_us/i19staffNotes.txt +1 -0
  1937. package/packages/i18n/lib/en_us/i19staffSignature.txt +1 -0
  1938. package/packages/i18n/lib/en_us/i19star.txt +1 -0
  1939. package/packages/i18n/lib/en_us/i19startDate.txt +1 -0
  1940. package/packages/i18n/lib/en_us/i19state.txt +1 -0
  1941. package/packages/i18n/lib/en_us/i19status.txt +1 -0
  1942. package/packages/i18n/lib/en_us/i19statusLink.txt +1 -0
  1943. package/packages/i18n/lib/en_us/i19statusMobileLink.txt +1 -0
  1944. package/packages/i18n/lib/en_us/i19store.txt +1 -0
  1945. package/packages/i18n/lib/en_us/i19storefront.txt +1 -0
  1946. package/packages/i18n/lib/en_us/i19street.txt +1 -0
  1947. package/packages/i18n/lib/en_us/i19submit.txt +1 -0
  1948. package/packages/i18n/lib/en_us/i19subresource.txt +1 -0
  1949. package/packages/i18n/lib/en_us/i19subresourceId.txt +1 -0
  1950. package/packages/i18n/lib/en_us/i19subscribe.txt +1 -0
  1951. package/packages/i18n/lib/en_us/i19subscription.txt +1 -0
  1952. package/packages/i18n/lib/en_us/i19subscriptionInvoices.txt +1 -0
  1953. package/packages/i18n/lib/en_us/i19subscriptions.txt +1 -0
  1954. package/packages/i18n/lib/en_us/i19subtitle.txt +1 -0
  1955. package/packages/i18n/lib/en_us/i19subtotal.txt +1 -0
  1956. package/packages/i18n/lib/en_us/i19success.txt +1 -0
  1957. package/packages/i18n/lib/en_us/i19successfullyInstalled.txt +1 -0
  1958. package/packages/i18n/lib/en_us/i19successfullyUninstalled.txt +1 -0
  1959. package/packages/i18n/lib/en_us/i19suggestedProducts.txt +1 -0
  1960. package/packages/i18n/lib/en_us/i19summary.txt +1 -0
  1961. package/packages/i18n/lib/en_us/i19support.txt +1 -0
  1962. package/packages/i18n/lib/en_us/i19table.txt +1 -0
  1963. package/packages/i18n/lib/en_us/i19tax.txt +1 -0
  1964. package/packages/i18n/lib/en_us/i19taxExempt.txt +1 -0
  1965. package/packages/i18n/lib/en_us/i19termSearched.txt +1 -0
  1966. package/packages/i18n/lib/en_us/i19test.txt +1 -0
  1967. package/packages/i18n/lib/en_us/i19thanks.txt +1 -0
  1968. package/packages/i18n/lib/en_us/i19thanksForPurchase.txt +1 -0
  1969. package/packages/i18n/lib/en_us/i19theme.txt +1 -0
  1970. package/packages/i18n/lib/en_us/i19themes.txt +1 -0
  1971. package/packages/i18n/lib/en_us/i19ticketCode.txt +1 -0
  1972. package/packages/i18n/lib/en_us/i19title.txt +1 -0
  1973. package/packages/i18n/lib/en_us/i19titleTag.txt +1 -0
  1974. package/packages/i18n/lib/en_us/i19to.txt +1 -0
  1975. package/packages/i18n/lib/en_us/i19toEarn.txt +1 -0
  1976. package/packages/i18n/lib/en_us/i19toPay.txt +1 -0
  1977. package/packages/i18n/lib/en_us/i19today.txt +1 -0
  1978. package/packages/i18n/lib/en_us/i19toggleMenu.txt +1 -0
  1979. package/packages/i18n/lib/en_us/i19token.txt +1 -0
  1980. package/packages/i18n/lib/en_us/i19total.txt +1 -0
  1981. package/packages/i18n/lib/en_us/i19totalAmount.txt +1 -0
  1982. package/packages/i18n/lib/en_us/i19totalCancelled.txt +1 -0
  1983. package/packages/i18n/lib/en_us/i19totalCancelledMsg.txt +1 -0
  1984. package/packages/i18n/lib/en_us/i19totalResultsFor.txt +1 -0
  1985. package/packages/i18n/lib/en_us/i19totalSpent.txt +1 -0
  1986. package/packages/i18n/lib/en_us/i19trackDelivery.txt +1 -0
  1987. package/packages/i18n/lib/en_us/i19trackingCodes.txt +1 -0
  1988. package/packages/i18n/lib/en_us/i19transactionCode.txt +1 -0
  1989. package/packages/i18n/lib/en_us/i19transactionId.txt +1 -0
  1990. package/packages/i18n/lib/en_us/i19transactionItems.txt +1 -0
  1991. package/packages/i18n/lib/en_us/i19transactionStatus.txt +1 -0
  1992. package/packages/i18n/lib/en_us/i19transactionStatusMsg.txt +1 -0
  1993. package/packages/i18n/lib/en_us/i19transactionType.txt +1 -0
  1994. package/packages/i18n/lib/en_us/i19trendingApps.txt +1 -0
  1995. package/packages/i18n/lib/en_us/i19triggers.txt +1 -0
  1996. package/packages/i18n/lib/en_us/i19triggersMsg.txt +1 -0
  1997. package/packages/i18n/lib/en_us/i19tryAgain.txt +1 -0
  1998. package/packages/i18n/lib/en_us/i19type.txt +1 -0
  1999. package/packages/i18n/lib/en_us/i19unable.txt +1 -0
  2000. package/packages/i18n/lib/en_us/i19unableToInstallApp.txt +1 -0
  2001. package/packages/i18n/lib/en_us/i19unableToUninstallApp.txt +1 -0
  2002. package/packages/i18n/lib/en_us/i19unavailable.txt +1 -0
  2003. package/packages/i18n/lib/en_us/i19uninstall.txt +1 -0
  2004. package/packages/i18n/lib/en_us/i19uninstallingApp.txt +1 -0
  2005. package/packages/i18n/lib/en_us/i19uninstallingAppWithSuccess.txt +1 -0
  2006. package/packages/i18n/lib/en_us/i19units.txt +1 -0
  2007. package/packages/i18n/lib/en_us/i19unitsInStock.txt +1 -0
  2008. package/packages/i18n/lib/en_us/i19unlimited.txt +1 -0
  2009. package/packages/i18n/lib/en_us/i19unsubscribe.txt +1 -0
  2010. package/packages/i18n/lib/en_us/i19untilTomorrow.txt +1 -0
  2011. package/packages/i18n/lib/en_us/i19upTo.txt +1 -0
  2012. package/packages/i18n/lib/en_us/i19update.txt +1 -0
  2013. package/packages/i18n/lib/en_us/i19updatedAt.txt +1 -0
  2014. package/packages/i18n/lib/en_us/i19upload.txt +1 -0
  2015. package/packages/i18n/lib/en_us/i19uploadLogo.txt +1 -0
  2016. package/packages/i18n/lib/en_us/i19uploadTable.txt +1 -0
  2017. package/packages/i18n/lib/en_us/i19uponRequest.txt +1 -0
  2018. package/packages/i18n/lib/en_us/i19url.txt +1 -0
  2019. package/packages/i18n/lib/en_us/i19use$1LoyaltyPoints.txt +1 -0
  2020. package/packages/i18n/lib/en_us/i19usedPoints.txt +1 -0
  2021. package/packages/i18n/lib/en_us/i19user.txt +1 -0
  2022. package/packages/i18n/lib/en_us/i19userFound.txt +1 -0
  2023. package/packages/i18n/lib/en_us/i19username.txt +1 -0
  2024. package/packages/i18n/lib/en_us/i19usersFound.txt +1 -0
  2025. package/packages/i18n/lib/en_us/i19utm.txt +1 -0
  2026. package/packages/i18n/lib/en_us/i19utmCampaign.txt +1 -0
  2027. package/packages/i18n/lib/en_us/i19utmContent.txt +1 -0
  2028. package/packages/i18n/lib/en_us/i19utmMedium.txt +1 -0
  2029. package/packages/i18n/lib/en_us/i19utmSource.txt +1 -0
  2030. package/packages/i18n/lib/en_us/i19utmTerm.txt +1 -0
  2031. package/packages/i18n/lib/en_us/i19valid.txt +1 -0
  2032. package/packages/i18n/lib/en_us/i19validThru.txt +1 -0
  2033. package/packages/i18n/lib/en_us/i19validate.txt +1 -0
  2034. package/packages/i18n/lib/en_us/i19value.txt +1 -0
  2035. package/packages/i18n/lib/en_us/i19variation.txt +1 -0
  2036. package/packages/i18n/lib/en_us/i19variationId.txt +1 -0
  2037. package/packages/i18n/lib/en_us/i19variationName.txt +1 -0
  2038. package/packages/i18n/lib/en_us/i19variations.txt +1 -0
  2039. package/packages/i18n/lib/en_us/i19verified.txt +1 -0
  2040. package/packages/i18n/lib/en_us/i19version.txt +1 -0
  2041. package/packages/i18n/lib/en_us/i19versionDate.txt +1 -0
  2042. package/packages/i18n/lib/en_us/i19video.txt +1 -0
  2043. package/packages/i18n/lib/en_us/i19videos.txt +1 -0
  2044. package/packages/i18n/lib/en_us/i19visible.txt +1 -0
  2045. package/packages/i18n/lib/en_us/i19visibleProducts.txt +1 -0
  2046. package/packages/i18n/lib/en_us/i19visitor.txt +1 -0
  2047. package/packages/i18n/lib/en_us/i19visitorCheckout.txt +1 -0
  2048. package/packages/i18n/lib/en_us/i19warning.txt +1 -0
  2049. package/packages/i18n/lib/en_us/i19warningToReinstallAppMsg.txt +1 -0
  2050. package/packages/i18n/lib/en_us/i19wasAnErrorOnLoginMsg.txt +1 -0
  2051. package/packages/i18n/lib/en_us/i19weFrom.txt +1 -0
  2052. package/packages/i18n/lib/en_us/i19weRecommendToYou.txt +1 -0
  2053. package/packages/i18n/lib/en_us/i19weUseYourDataToMsg.txt +1 -0
  2054. package/packages/i18n/lib/en_us/i19webhooks.txt +1 -0
  2055. package/packages/i18n/lib/en_us/i19webhooksApiExternalApiMsg.txt +1 -0
  2056. package/packages/i18n/lib/en_us/i19webhooksApiMsg.txt +1 -0
  2057. package/packages/i18n/lib/en_us/i19webhooksApiStoreApiMsg.txt +1 -0
  2058. package/packages/i18n/lib/en_us/i19webhooksMapBodyMsg.txt +1 -0
  2059. package/packages/i18n/lib/en_us/i19webhooksMsg.txt +1 -0
  2060. package/packages/i18n/lib/en_us/i19webhooksSendBodyMsg.txt +1 -0
  2061. package/packages/i18n/lib/en_us/i19weekly.txt +1 -0
  2062. package/packages/i18n/lib/en_us/i19weight.txt +1 -0
  2063. package/packages/i18n/lib/en_us/i19welcome.txt +1 -0
  2064. package/packages/i18n/lib/en_us/i19welcomeTextMsg.txt +1 -0
  2065. package/packages/i18n/lib/en_us/i19widgets.txt +1 -0
  2066. package/packages/i18n/lib/en_us/i19width.txt +1 -0
  2067. package/packages/i18n/lib/en_us/i19willReceiveMsg.txt +1 -0
  2068. package/packages/i18n/lib/en_us/i19with.txt +1 -0
  2069. package/packages/i18n/lib/en_us/i19withoutInstallmentRates.txt +1 -0
  2070. package/packages/i18n/lib/en_us/i19workingDays.txt +1 -0
  2071. package/packages/i18n/lib/en_us/i19write.txt +1 -0
  2072. package/packages/i18n/lib/en_us/i19writeReview.txt +1 -0
  2073. package/packages/i18n/lib/en_us/i19year.txt +1 -0
  2074. package/packages/i18n/lib/en_us/i19yearly.txt +1 -0
  2075. package/packages/i18n/lib/en_us/i19years.txt +1 -0
  2076. package/packages/i18n/lib/en_us/i19yes.txt +1 -0
  2077. package/packages/i18n/lib/en_us/i19youEarn.txt +1 -0
  2078. package/packages/i18n/lib/en_us/i19yourInstalledApps.txt +1 -0
  2079. package/packages/i18n/lib/en_us/i19zipCode.txt +1 -0
  2080. package/packages/i18n/lib/en_us/i19zipCodeRange.txt +1 -0
  2081. package/packages/i18n/lib/en_us.d.ts +1161 -0
  2082. package/packages/i18n/lib/en_us.js +1163 -0
  2083. package/packages/i18n/lib/en_us.js.map +1 -0
  2084. package/packages/i18n/lib/pt_br/i19a.txt +1 -0
  2085. package/packages/i18n/lib/pt_br/i19about.txt +1 -0
  2086. package/packages/i18n/lib/pt_br/i19aboutCvvMsg.txt +1 -0
  2087. package/packages/i18n/lib/pt_br/i19aboveOf.txt +1 -0
  2088. package/packages/i18n/lib/pt_br/i19acceptAttachedFile.txt +1 -0
  2089. package/packages/i18n/lib/pt_br/i19acceptCustomOptionByCustomer.txt +1 -0
  2090. package/packages/i18n/lib/pt_br/i19accessMyAccount.txt +1 -0
  2091. package/packages/i18n/lib/pt_br/i19activate.txt +1 -0
  2092. package/packages/i18n/lib/pt_br/i19active.txt +1 -0
  2093. package/packages/i18n/lib/pt_br/i19adRelevance.txt +1 -0
  2094. package/packages/i18n/lib/pt_br/i19adType.txt +1 -0
  2095. package/packages/i18n/lib/pt_br/i19add$1ToEarn.txt +1 -0
  2096. package/packages/i18n/lib/pt_br/i19add.txt +1 -0
  2097. package/packages/i18n/lib/pt_br/i19addApp.txt +1 -0
  2098. package/packages/i18n/lib/pt_br/i19addCart.txt +1 -0
  2099. package/packages/i18n/lib/pt_br/i19addClient.txt +1 -0
  2100. package/packages/i18n/lib/pt_br/i19addDiscountCoupon.txt +1 -0
  2101. package/packages/i18n/lib/pt_br/i19addGiftList.txt +1 -0
  2102. package/packages/i18n/lib/pt_br/i19addGrid.txt +1 -0
  2103. package/packages/i18n/lib/pt_br/i19addMoreProducts.txt +1 -0
  2104. package/packages/i18n/lib/pt_br/i19addPreference.txt +1 -0
  2105. package/packages/i18n/lib/pt_br/i19addProduct.txt +1 -0
  2106. package/packages/i18n/lib/pt_br/i19addToCart.txt +1 -0
  2107. package/packages/i18n/lib/pt_br/i19addToFavorites.txt +1 -0
  2108. package/packages/i18n/lib/pt_br/i19addToPrice.txt +1 -0
  2109. package/packages/i18n/lib/pt_br/i19addVariants.txt +1 -0
  2110. package/packages/i18n/lib/pt_br/i19additional.txt +1 -0
  2111. package/packages/i18n/lib/pt_br/i19additionalComments.txt +1 -0
  2112. package/packages/i18n/lib/pt_br/i19additionalCost.txt +1 -0
  2113. package/packages/i18n/lib/pt_br/i19additionalCostOption.txt +1 -0
  2114. package/packages/i18n/lib/pt_br/i19additionalInfo.txt +1 -0
  2115. package/packages/i18n/lib/pt_br/i19additionalNotes.txt +1 -0
  2116. package/packages/i18n/lib/pt_br/i19address.txt +1 -0
  2117. package/packages/i18n/lib/pt_br/i19addresses.txt +1 -0
  2118. package/packages/i18n/lib/pt_br/i19addressesName.txt +1 -0
  2119. package/packages/i18n/lib/pt_br/i19adminSettings.txt +1 -0
  2120. package/packages/i18n/lib/pt_br/i19advanced.txt +1 -0
  2121. package/packages/i18n/lib/pt_br/i19adwords.txt +1 -0
  2122. package/packages/i18n/lib/pt_br/i19adwordsRemarketing.txt +1 -0
  2123. package/packages/i18n/lib/pt_br/i19adwordsRemarketingCode.txt +1 -0
  2124. package/packages/i18n/lib/pt_br/i19affiliateCoede.txt +1 -0
  2125. package/packages/i18n/lib/pt_br/i19afterApproval.txt +1 -0
  2126. package/packages/i18n/lib/pt_br/i19afterPayment.txt +1 -0
  2127. package/packages/i18n/lib/pt_br/i19all.txt +1 -0
  2128. package/packages/i18n/lib/pt_br/i19allCategories.txt +1 -0
  2129. package/packages/i18n/lib/pt_br/i19allOptions.txt +1 -0
  2130. package/packages/i18n/lib/pt_br/i19allProducts.txt +1 -0
  2131. package/packages/i18n/lib/pt_br/i19alt.txt +1 -0
  2132. package/packages/i18n/lib/pt_br/i19amount.txt +1 -0
  2133. package/packages/i18n/lib/pt_br/i19another.txt +1 -0
  2134. package/packages/i18n/lib/pt_br/i19anyPaymentMethodMsg.txt +1 -0
  2135. package/packages/i18n/lib/pt_br/i19anyPrice.txt +1 -0
  2136. package/packages/i18n/lib/pt_br/i19api.txt +1 -0
  2137. package/packages/i18n/lib/pt_br/i19app.txt +1 -0
  2138. package/packages/i18n/lib/pt_br/i19appAlreadyInstalledMsg.txt +1 -0
  2139. package/packages/i18n/lib/pt_br/i19appConfiguration.txt +1 -0
  2140. package/packages/i18n/lib/pt_br/i19appDevelopers.txt +1 -0
  2141. package/packages/i18n/lib/pt_br/i19application.txt +1 -0
  2142. package/packages/i18n/lib/pt_br/i19applications.txt +1 -0
  2143. package/packages/i18n/lib/pt_br/i19applyDiscount.txt +1 -0
  2144. package/packages/i18n/lib/pt_br/i19applyFilters.txt +1 -0
  2145. package/packages/i18n/lib/pt_br/i19apps.txt +1 -0
  2146. package/packages/i18n/lib/pt_br/i19areYouWantToDeleteAppQn.txt +1 -0
  2147. package/packages/i18n/lib/pt_br/i19asOf.txt +1 -0
  2148. package/packages/i18n/lib/pt_br/i19associateImage.txt +1 -0
  2149. package/packages/i18n/lib/pt_br/i19associateImages.txt +1 -0
  2150. package/packages/i18n/lib/pt_br/i19at.txt +1 -0
  2151. package/packages/i18n/lib/pt_br/i19atSight.txt +1 -0
  2152. package/packages/i18n/lib/pt_br/i19attachment.txt +1 -0
  2153. package/packages/i18n/lib/pt_br/i19attention.txt +1 -0
  2154. package/packages/i18n/lib/pt_br/i19authentication.txt +1 -0
  2155. package/packages/i18n/lib/pt_br/i19author.txt +1 -0
  2156. package/packages/i18n/lib/pt_br/i19authorizedStores.txt +1 -0
  2157. package/packages/i18n/lib/pt_br/i19automaticallyTrackInventory.txt +1 -0
  2158. package/packages/i18n/lib/pt_br/i19available.txt +1 -0
  2159. package/packages/i18n/lib/pt_br/i19availableApps.txt +1 -0
  2160. package/packages/i18n/lib/pt_br/i19availablePurchase.txt +1 -0
  2161. package/packages/i18n/lib/pt_br/i19average.txt +1 -0
  2162. package/packages/i18n/lib/pt_br/i19averageTicket.txt +1 -0
  2163. package/packages/i18n/lib/pt_br/i19back.txt +1 -0
  2164. package/packages/i18n/lib/pt_br/i19backToCart.txt +1 -0
  2165. package/packages/i18n/lib/pt_br/i19backToProduct.txt +1 -0
  2166. package/packages/i18n/lib/pt_br/i19bag.txt +1 -0
  2167. package/packages/i18n/lib/pt_br/i19balanceOrPoints.txt +1 -0
  2168. package/packages/i18n/lib/pt_br/i19banner.txt +1 -0
  2169. package/packages/i18n/lib/pt_br/i19banners.txt +1 -0
  2170. package/packages/i18n/lib/pt_br/i19bannersCollection.txt +1 -0
  2171. package/packages/i18n/lib/pt_br/i19barcodes.txt +1 -0
  2172. package/packages/i18n/lib/pt_br/i19basePrice.txt +1 -0
  2173. package/packages/i18n/lib/pt_br/i19bearersDocument.txt +1 -0
  2174. package/packages/i18n/lib/pt_br/i19best.txt +1 -0
  2175. package/packages/i18n/lib/pt_br/i19bestSellers.txt +1 -0
  2176. package/packages/i18n/lib/pt_br/i19biannual.txt +1 -0
  2177. package/packages/i18n/lib/pt_br/i19billingAddress.txt +1 -0
  2178. package/packages/i18n/lib/pt_br/i19bimonthly.txt +1 -0
  2179. package/packages/i18n/lib/pt_br/i19birthdate.txt +1 -0
  2180. package/packages/i18n/lib/pt_br/i19biweekly.txt +1 -0
  2181. package/packages/i18n/lib/pt_br/i19block.txt +1 -0
  2182. package/packages/i18n/lib/pt_br/i19borough.txt +1 -0
  2183. package/packages/i18n/lib/pt_br/i19brand.txt +1 -0
  2184. package/packages/i18n/lib/pt_br/i19brandBanners.txt +1 -0
  2185. package/packages/i18n/lib/pt_br/i19brandFound.txt +1 -0
  2186. package/packages/i18n/lib/pt_br/i19brandName.txt +1 -0
  2187. package/packages/i18n/lib/pt_br/i19brands.txt +1 -0
  2188. package/packages/i18n/lib/pt_br/i19brandsFound.txt +1 -0
  2189. package/packages/i18n/lib/pt_br/i19brazil.txt +1 -0
  2190. package/packages/i18n/lib/pt_br/i19browserIp.txt +1 -0
  2191. package/packages/i18n/lib/pt_br/i19budgetOnly.txt +1 -0
  2192. package/packages/i18n/lib/pt_br/i19buy.txt +1 -0
  2193. package/packages/i18n/lib/pt_br/i19buyAgain.txt +1 -0
  2194. package/packages/i18n/lib/pt_br/i19buyAlsoMsg.txt +1 -0
  2195. package/packages/i18n/lib/pt_br/i19buyKit.txt +1 -0
  2196. package/packages/i18n/lib/pt_br/i19buyNow.txt +1 -0
  2197. package/packages/i18n/lib/pt_br/i19buyOnWhatsApp.txt +1 -0
  2198. package/packages/i18n/lib/pt_br/i19buyTogether.txt +1 -0
  2199. package/packages/i18n/lib/pt_br/i19buyTogetherWith.txt +1 -0
  2200. package/packages/i18n/lib/pt_br/i19buyWith.txt +1 -0
  2201. package/packages/i18n/lib/pt_br/i19buyer.txt +1 -0
  2202. package/packages/i18n/lib/pt_br/i19buyers.txt +1 -0
  2203. package/packages/i18n/lib/pt_br/i19buyersProfile.txt +1 -0
  2204. package/packages/i18n/lib/pt_br/i19by.txt +1 -0
  2205. package/packages/i18n/lib/pt_br/i19calculateShipping.txt +1 -0
  2206. package/packages/i18n/lib/pt_br/i19callTo.txt +1 -0
  2207. package/packages/i18n/lib/pt_br/i19callback.txt +1 -0
  2208. package/packages/i18n/lib/pt_br/i19campaign.txt +1 -0
  2209. package/packages/i18n/lib/pt_br/i19campaignAppliedMsg.txt +1 -0
  2210. package/packages/i18n/lib/pt_br/i19cancel.txt +1 -0
  2211. package/packages/i18n/lib/pt_br/i19cancelOrder.txt +1 -0
  2212. package/packages/i18n/lib/pt_br/i19cancelReason.txt +1 -0
  2213. package/packages/i18n/lib/pt_br/i19cancelled.txt +1 -0
  2214. package/packages/i18n/lib/pt_br/i19cancelledAt.txt +1 -0
  2215. package/packages/i18n/lib/pt_br/i19cardNumber.txt +1 -0
  2216. package/packages/i18n/lib/pt_br/i19cartConfirmed.txt +1 -0
  2217. package/packages/i18n/lib/pt_br/i19cartDetails.txt +1 -0
  2218. package/packages/i18n/lib/pt_br/i19cartItems.txt +1 -0
  2219. package/packages/i18n/lib/pt_br/i19cartReview.txt +1 -0
  2220. package/packages/i18n/lib/pt_br/i19cartUpdated.txt +1 -0
  2221. package/packages/i18n/lib/pt_br/i19categories.txt +1 -0
  2222. package/packages/i18n/lib/pt_br/i19category.txt +1 -0
  2223. package/packages/i18n/lib/pt_br/i19categoryBanners.txt +1 -0
  2224. package/packages/i18n/lib/pt_br/i19categoryFound.txt +1 -0
  2225. package/packages/i18n/lib/pt_br/i19categoryName.txt +1 -0
  2226. package/packages/i18n/lib/pt_br/i19cellphone.txt +1 -0
  2227. package/packages/i18n/lib/pt_br/i19changePaymentMethod.txt +1 -0
  2228. package/packages/i18n/lib/pt_br/i19changeShippingMethod.txt +1 -0
  2229. package/packages/i18n/lib/pt_br/i19channel.txt +1 -0
  2230. package/packages/i18n/lib/pt_br/i19channelId.txt +1 -0
  2231. package/packages/i18n/lib/pt_br/i19channelType.txt +1 -0
  2232. package/packages/i18n/lib/pt_br/i19channels.txt +1 -0
  2233. package/packages/i18n/lib/pt_br/i19checkout.txt +1 -0
  2234. package/packages/i18n/lib/pt_br/i19checkoutDone.txt +1 -0
  2235. package/packages/i18n/lib/pt_br/i19checkoutEnabled.txt +1 -0
  2236. package/packages/i18n/lib/pt_br/i19checkoutLink.txt +1 -0
  2237. package/packages/i18n/lib/pt_br/i19checkoutMobileLink.txt +1 -0
  2238. package/packages/i18n/lib/pt_br/i19checkoutVisitor.txt +1 -0
  2239. package/packages/i18n/lib/pt_br/i19checkoutVisitorMsg.txt +1 -0
  2240. package/packages/i18n/lib/pt_br/i19chooseProductDetailsToBuy.txt +1 -0
  2241. package/packages/i18n/lib/pt_br/i19chooseSubscriptionPeriod.txt +1 -0
  2242. package/packages/i18n/lib/pt_br/i19city.txt +1 -0
  2243. package/packages/i18n/lib/pt_br/i19clear.txt +1 -0
  2244. package/packages/i18n/lib/pt_br/i19clearFilters.txt +1 -0
  2245. package/packages/i18n/lib/pt_br/i19click.txt +1 -0
  2246. package/packages/i18n/lib/pt_br/i19clickHere.txt +1 -0
  2247. package/packages/i18n/lib/pt_br/i19close.txt +1 -0
  2248. package/packages/i18n/lib/pt_br/i19closeFilters.txt +1 -0
  2249. package/packages/i18n/lib/pt_br/i19closedAt.txt +1 -0
  2250. package/packages/i18n/lib/pt_br/i19code.txt +1 -0
  2251. package/packages/i18n/lib/pt_br/i19codeCopied.txt +1 -0
  2252. package/packages/i18n/lib/pt_br/i19collection.txt +1 -0
  2253. package/packages/i18n/lib/pt_br/i19collectionBanners.txt +1 -0
  2254. package/packages/i18n/lib/pt_br/i19collectionItems.txt +1 -0
  2255. package/packages/i18n/lib/pt_br/i19collectionName.txt +1 -0
  2256. package/packages/i18n/lib/pt_br/i19collections.txt +1 -0
  2257. package/packages/i18n/lib/pt_br/i19color.txt +1 -0
  2258. package/packages/i18n/lib/pt_br/i19colors.txt +1 -0
  2259. package/packages/i18n/lib/pt_br/i19community.txt +1 -0
  2260. package/packages/i18n/lib/pt_br/i19companyRegistration.txt +1 -0
  2261. package/packages/i18n/lib/pt_br/i19compareAtPrice.txt +1 -0
  2262. package/packages/i18n/lib/pt_br/i19compareProducts.txt +1 -0
  2263. package/packages/i18n/lib/pt_br/i19comparedPreviousPeriodMsg.txt +1 -0
  2264. package/packages/i18n/lib/pt_br/i19complement.txt +1 -0
  2265. package/packages/i18n/lib/pt_br/i19complementInformation.txt +1 -0
  2266. package/packages/i18n/lib/pt_br/i19configuration.txt +1 -0
  2267. package/packages/i18n/lib/pt_br/i19confirmPassword.txt +1 -0
  2268. package/packages/i18n/lib/pt_br/i19confirmPurchase.txt +1 -0
  2269. package/packages/i18n/lib/pt_br/i19connectionErrorMsg.txt +1 -0
  2270. package/packages/i18n/lib/pt_br/i19connectionErrorProductMsg.txt +1 -0
  2271. package/packages/i18n/lib/pt_br/i19contactPhone.txt +1 -0
  2272. package/packages/i18n/lib/pt_br/i19contactUsMsg.txt +1 -0
  2273. package/packages/i18n/lib/pt_br/i19content.txt +1 -0
  2274. package/packages/i18n/lib/pt_br/i19continue.txt +1 -0
  2275. package/packages/i18n/lib/pt_br/i19continueLoginOnPopup.txt +1 -0
  2276. package/packages/i18n/lib/pt_br/i19continueShopping.txt +1 -0
  2277. package/packages/i18n/lib/pt_br/i19control.txt +1 -0
  2278. package/packages/i18n/lib/pt_br/i19copyCode.txt +1 -0
  2279. package/packages/i18n/lib/pt_br/i19copyErrorMsg.txt +1 -0
  2280. package/packages/i18n/lib/pt_br/i19copyright.txt +1 -0
  2281. package/packages/i18n/lib/pt_br/i19corporateName.txt +1 -0
  2282. package/packages/i18n/lib/pt_br/i19costDeclaredValue.txt +1 -0
  2283. package/packages/i18n/lib/pt_br/i19costPrice.txt +1 -0
  2284. package/packages/i18n/lib/pt_br/i19countryCode.txt +1 -0
  2285. package/packages/i18n/lib/pt_br/i19couponAppliedMsg.txt +1 -0
  2286. package/packages/i18n/lib/pt_br/i19createAnAccount.txt +1 -0
  2287. package/packages/i18n/lib/pt_br/i19createTransaction.txt +1 -0
  2288. package/packages/i18n/lib/pt_br/i19creation.txt +1 -0
  2289. package/packages/i18n/lib/pt_br/i19credit.txt +1 -0
  2290. package/packages/i18n/lib/pt_br/i19creditCard.txt +1 -0
  2291. package/packages/i18n/lib/pt_br/i19creditCardBin.txt +1 -0
  2292. package/packages/i18n/lib/pt_br/i19creditCardCompany.txt +1 -0
  2293. package/packages/i18n/lib/pt_br/i19creditCardHolderName.txt +1 -0
  2294. package/packages/i18n/lib/pt_br/i19creditCardLastDigits.txt +1 -0
  2295. package/packages/i18n/lib/pt_br/i19creditorFees.txt +1 -0
  2296. package/packages/i18n/lib/pt_br/i19creditorFeesIntermediator.txt +1 -0
  2297. package/packages/i18n/lib/pt_br/i19creditorFeesOperational.txt +1 -0
  2298. package/packages/i18n/lib/pt_br/i19currencyId.txt +1 -0
  2299. package/packages/i18n/lib/pt_br/i19currencySymbol.txt +1 -0
  2300. package/packages/i18n/lib/pt_br/i19custom.txt +1 -0
  2301. package/packages/i18n/lib/pt_br/i19customFields.txt +1 -0
  2302. package/packages/i18n/lib/pt_br/i19customPayment.txt +1 -0
  2303. package/packages/i18n/lib/pt_br/i19customValue.txt +1 -0
  2304. package/packages/i18n/lib/pt_br/i19customer.txt +1 -0
  2305. package/packages/i18n/lib/pt_br/i19customerNotified.txt +1 -0
  2306. package/packages/i18n/lib/pt_br/i19customerService.txt +1 -0
  2307. package/packages/i18n/lib/pt_br/i19customizationAddToPrice.txt +1 -0
  2308. package/packages/i18n/lib/pt_br/i19customizationAttachment.txt +1 -0
  2309. package/packages/i18n/lib/pt_br/i19customizationChosen.txt +1 -0
  2310. package/packages/i18n/lib/pt_br/i19customizations.txt +1 -0
  2311. package/packages/i18n/lib/pt_br/i19dailyAverage.txt +1 -0
  2312. package/packages/i18n/lib/pt_br/i19danger.txt +1 -0
  2313. package/packages/i18n/lib/pt_br/i19dashboard.txt +1 -0
  2314. package/packages/i18n/lib/pt_br/i19dateTime.txt +1 -0
  2315. package/packages/i18n/lib/pt_br/i19day.txt +1 -0
  2316. package/packages/i18n/lib/pt_br/i19days.txt +1 -0
  2317. package/packages/i18n/lib/pt_br/i19declare.txt +1 -0
  2318. package/packages/i18n/lib/pt_br/i19declaredValue.txt +1 -0
  2319. package/packages/i18n/lib/pt_br/i19delete.txt +1 -0
  2320. package/packages/i18n/lib/pt_br/i19deleteAll.txt +1 -0
  2321. package/packages/i18n/lib/pt_br/i19delivery.txt +1 -0
  2322. package/packages/i18n/lib/pt_br/i19deliveryCostOwnHandMsg.txt +1 -0
  2323. package/packages/i18n/lib/pt_br/i19deliveryInMsg.txt +1 -0
  2324. package/packages/i18n/lib/pt_br/i19deliveryReceipt.txt +1 -0
  2325. package/packages/i18n/lib/pt_br/i19deliveryReceiptMsg.txt +1 -0
  2326. package/packages/i18n/lib/pt_br/i19deliveryTime.txt +1 -0
  2327. package/packages/i18n/lib/pt_br/i19deliveryTrack.txt +1 -0
  2328. package/packages/i18n/lib/pt_br/i19deliveryWithOwnHandMsg.txt +1 -0
  2329. package/packages/i18n/lib/pt_br/i19description.txt +1 -0
  2330. package/packages/i18n/lib/pt_br/i19desktop.txt +1 -0
  2331. package/packages/i18n/lib/pt_br/i19details.txt +1 -0
  2332. package/packages/i18n/lib/pt_br/i19didYouMean.txt +1 -0
  2333. package/packages/i18n/lib/pt_br/i19digits.txt +1 -0
  2334. package/packages/i18n/lib/pt_br/i19directLinkPayment.txt +1 -0
  2335. package/packages/i18n/lib/pt_br/i19disable.txt +1 -0
  2336. package/packages/i18n/lib/pt_br/i19discount.txt +1 -0
  2337. package/packages/i18n/lib/pt_br/i19discountCoupon.txt +1 -0
  2338. package/packages/i18n/lib/pt_br/i19discountOf.txt +1 -0
  2339. package/packages/i18n/lib/pt_br/i19discountValueMsg.txt +1 -0
  2340. package/packages/i18n/lib/pt_br/i19displayName.txt +1 -0
  2341. package/packages/i18n/lib/pt_br/i19doPaymentMsg.txt +1 -0
  2342. package/packages/i18n/lib/pt_br/i19doYouWantToDeleteAppQn.txt +1 -0
  2343. package/packages/i18n/lib/pt_br/i19doYouWantToReinstallAppQn.txt +1 -0
  2344. package/packages/i18n/lib/pt_br/i19docCountry.txt +1 -0
  2345. package/packages/i18n/lib/pt_br/i19docNumber.txt +1 -0
  2346. package/packages/i18n/lib/pt_br/i19docs.txt +1 -0
  2347. package/packages/i18n/lib/pt_br/i19domain.txt +1 -0
  2348. package/packages/i18n/lib/pt_br/i19download.txt +1 -0
  2349. package/packages/i18n/lib/pt_br/i19downloadTable.txt +1 -0
  2350. package/packages/i18n/lib/pt_br/i19edit.txt +1 -0
  2351. package/packages/i18n/lib/pt_br/i19editAdditionalCost.txt +1 -0
  2352. package/packages/i18n/lib/pt_br/i19editComments.txt +1 -0
  2353. package/packages/i18n/lib/pt_br/i19editDispatchAndFulfillment.txt +1 -0
  2354. package/packages/i18n/lib/pt_br/i19editFeatures.txt +1 -0
  2355. package/packages/i18n/lib/pt_br/i19editFilters.txt +1 -0
  2356. package/packages/i18n/lib/pt_br/i19editGtinMpn.txt +1 -0
  2357. package/packages/i18n/lib/pt_br/i19editHtmlDescription.txt +1 -0
  2358. package/packages/i18n/lib/pt_br/i19editObservationInfo.txt +1 -0
  2359. package/packages/i18n/lib/pt_br/i19editPaymentDetails.txt +1 -0
  2360. package/packages/i18n/lib/pt_br/i19editProductDimensions.txt +1 -0
  2361. package/packages/i18n/lib/pt_br/i19editSeoFields.txt +1 -0
  2362. package/packages/i18n/lib/pt_br/i19editStorefront.txt +1 -0
  2363. package/packages/i18n/lib/pt_br/i19editVariation.txt +1 -0
  2364. package/packages/i18n/lib/pt_br/i19editing.txt +1 -0
  2365. package/packages/i18n/lib/pt_br/i19email.txt +1 -0
  2366. package/packages/i18n/lib/pt_br/i19emailAddress.txt +1 -0
  2367. package/packages/i18n/lib/pt_br/i19emailCartTextMsg.txt +1 -0
  2368. package/packages/i18n/lib/pt_br/i19emailCartTitleMsg.txt +1 -0
  2369. package/packages/i18n/lib/pt_br/i19emailDeliveredTextMsg.txt +1 -0
  2370. package/packages/i18n/lib/pt_br/i19emailDeliveredTitleMsg.txt +1 -0
  2371. package/packages/i18n/lib/pt_br/i19emailInfoMsg.txt +1 -0
  2372. package/packages/i18n/lib/pt_br/i19emailMarketing.txt +1 -0
  2373. package/packages/i18n/lib/pt_br/i19emailMarketingOptInMsg.txt +1 -0
  2374. package/packages/i18n/lib/pt_br/i19emailProfileNotFoundMsg.txt +1 -0
  2375. package/packages/i18n/lib/pt_br/i19emailShippedTextMsg.txt +1 -0
  2376. package/packages/i18n/lib/pt_br/i19emailShippedTitleMsg.txt +1 -0
  2377. package/packages/i18n/lib/pt_br/i19emailWasSentMsg.txt +1 -0
  2378. package/packages/i18n/lib/pt_br/i19emails.txt +1 -0
  2379. package/packages/i18n/lib/pt_br/i19empty.txt +1 -0
  2380. package/packages/i18n/lib/pt_br/i19emptyCart.txt +1 -0
  2381. package/packages/i18n/lib/pt_br/i19emptyCartMsg.txt +1 -0
  2382. package/packages/i18n/lib/pt_br/i19enabled.txt +1 -0
  2383. package/packages/i18n/lib/pt_br/i19end.txt +1 -0
  2384. package/packages/i18n/lib/pt_br/i19endDate.txt +1 -0
  2385. package/packages/i18n/lib/pt_br/i19endpoint.txt +1 -0
  2386. package/packages/i18n/lib/pt_br/i19endsIn.txt +1 -0
  2387. package/packages/i18n/lib/pt_br/i19enterEmailCodeMsg.txt +1 -0
  2388. package/packages/i18n/lib/pt_br/i19enterWithPassword.txt +1 -0
  2389. package/packages/i18n/lib/pt_br/i19enterYourDocNumber.txt +1 -0
  2390. package/packages/i18n/lib/pt_br/i19enterYourDocNumberMsg.txt +1 -0
  2391. package/packages/i18n/lib/pt_br/i19enterYourEmail.txt +1 -0
  2392. package/packages/i18n/lib/pt_br/i19enterYourEmailMsg.txt +1 -0
  2393. package/packages/i18n/lib/pt_br/i19erp.txt +1 -0
  2394. package/packages/i18n/lib/pt_br/i19error.txt +1 -0
  2395. package/packages/i18n/lib/pt_br/i19errorMsg.txt +1 -0
  2396. package/packages/i18n/lib/pt_br/i19events.txt +1 -0
  2397. package/packages/i18n/lib/pt_br/i19export.txt +1 -0
  2398. package/packages/i18n/lib/pt_br/i19exportToCsv.txt +1 -0
  2399. package/packages/i18n/lib/pt_br/i19external.txt +1 -0
  2400. package/packages/i18n/lib/pt_br/i19extra.txt +1 -0
  2401. package/packages/i18n/lib/pt_br/i19extraCost.txt +1 -0
  2402. package/packages/i18n/lib/pt_br/i19familyName.txt +1 -0
  2403. package/packages/i18n/lib/pt_br/i19favorites.txt +1 -0
  2404. package/packages/i18n/lib/pt_br/i19featuredApps.txt +1 -0
  2405. package/packages/i18n/lib/pt_br/i19female.txt +1 -0
  2406. package/packages/i18n/lib/pt_br/i19field.txt +1 -0
  2407. package/packages/i18n/lib/pt_br/i19files.txt +1 -0
  2408. package/packages/i18n/lib/pt_br/i19filter.txt +1 -0
  2409. package/packages/i18n/lib/pt_br/i19filterOut.txt +1 -0
  2410. package/packages/i18n/lib/pt_br/i19filterProducts.txt +1 -0
  2411. package/packages/i18n/lib/pt_br/i19filterResults.txt +1 -0
  2412. package/packages/i18n/lib/pt_br/i19finalPrice.txt +1 -0
  2413. package/packages/i18n/lib/pt_br/i19finalPriceWithAdditional.txt +1 -0
  2414. package/packages/i18n/lib/pt_br/i19financialStatus.txt +1 -0
  2415. package/packages/i18n/lib/pt_br/i19firstSteps.txt +1 -0
  2416. package/packages/i18n/lib/pt_br/i19followingAddress.txt +1 -0
  2417. package/packages/i18n/lib/pt_br/i19for.txt +1 -0
  2418. package/packages/i18n/lib/pt_br/i19free.txt +1 -0
  2419. package/packages/i18n/lib/pt_br/i19freeShipping.txt +1 -0
  2420. package/packages/i18n/lib/pt_br/i19freeShippingFrom.txt +1 -0
  2421. package/packages/i18n/lib/pt_br/i19freebie.txt +1 -0
  2422. package/packages/i18n/lib/pt_br/i19freight.txt +1 -0
  2423. package/packages/i18n/lib/pt_br/i19freightCost.txt +1 -0
  2424. package/packages/i18n/lib/pt_br/i19from.txt +1 -0
  2425. package/packages/i18n/lib/pt_br/i19fulfillmentStatus.txt +1 -0
  2426. package/packages/i18n/lib/pt_br/i19fullName.txt +1 -0
  2427. package/packages/i18n/lib/pt_br/i19fullscreen.txt +1 -0
  2428. package/packages/i18n/lib/pt_br/i19gateway.txt +1 -0
  2429. package/packages/i18n/lib/pt_br/i19gender.txt +1 -0
  2430. package/packages/i18n/lib/pt_br/i19genderX.txt +1 -0
  2431. package/packages/i18n/lib/pt_br/i19general.txt +1 -0
  2432. package/packages/i18n/lib/pt_br/i19generateBillet.txt +1 -0
  2433. package/packages/i18n/lib/pt_br/i19get$1back.txt +1 -0
  2434. package/packages/i18n/lib/pt_br/i19get.txt +1 -0
  2435. package/packages/i18n/lib/pt_br/i19giftList.txt +1 -0
  2436. package/packages/i18n/lib/pt_br/i19giftListAuthors.txt +1 -0
  2437. package/packages/i18n/lib/pt_br/i19giftListAuthorsContact.txt +1 -0
  2438. package/packages/i18n/lib/pt_br/i19giftListDescription.txt +1 -0
  2439. package/packages/i18n/lib/pt_br/i19giftListEventDate.txt +1 -0
  2440. package/packages/i18n/lib/pt_br/i19giftListInformation.txt +1 -0
  2441. package/packages/i18n/lib/pt_br/i19giftListNotificationPurchaseMsg.txt +1 -0
  2442. package/packages/i18n/lib/pt_br/i19giftListOwnerID.txt +1 -0
  2443. package/packages/i18n/lib/pt_br/i19giftListPermalink.txt +1 -0
  2444. package/packages/i18n/lib/pt_br/i19giftListTitle.txt +1 -0
  2445. package/packages/i18n/lib/pt_br/i19giftListValidThru.txt +1 -0
  2446. package/packages/i18n/lib/pt_br/i19giftListWaiting.txt +1 -0
  2447. package/packages/i18n/lib/pt_br/i19giftTo.txt +1 -0
  2448. package/packages/i18n/lib/pt_br/i19giftWrap.txt +1 -0
  2449. package/packages/i18n/lib/pt_br/i19gitRepository.txt +1 -0
  2450. package/packages/i18n/lib/pt_br/i19givenName.txt +1 -0
  2451. package/packages/i18n/lib/pt_br/i19goToCart.txt +1 -0
  2452. package/packages/i18n/lib/pt_br/i19goToStore.txt +1 -0
  2453. package/packages/i18n/lib/pt_br/i19goToTop.txt +1 -0
  2454. package/packages/i18n/lib/pt_br/i19googleAnalytics.txt +1 -0
  2455. package/packages/i18n/lib/pt_br/i19googleProductCategoryId.txt +1 -0
  2456. package/packages/i18n/lib/pt_br/i19gridId.txt +1 -0
  2457. package/packages/i18n/lib/pt_br/i19gridName.txt +1 -0
  2458. package/packages/i18n/lib/pt_br/i19grids.txt +1 -0
  2459. package/packages/i18n/lib/pt_br/i19guestCheckoutMsg.txt +1 -0
  2460. package/packages/i18n/lib/pt_br/i19hasCouponOrVoucherQn.txt +1 -0
  2461. package/packages/i18n/lib/pt_br/i19height.txt +1 -0
  2462. package/packages/i18n/lib/pt_br/i19hello.txt +1 -0
  2463. package/packages/i18n/lib/pt_br/i19helloAgain.txt +1 -0
  2464. package/packages/i18n/lib/pt_br/i19help.txt +1 -0
  2465. package/packages/i18n/lib/pt_br/i19helpful.txt +1 -0
  2466. package/packages/i18n/lib/pt_br/i19high.txt +1 -0
  2467. package/packages/i18n/lib/pt_br/i19highPriority.txt +1 -0
  2468. package/packages/i18n/lib/pt_br/i19highestPrice.txt +1 -0
  2469. package/packages/i18n/lib/pt_br/i19holderName.txt +1 -0
  2470. package/packages/i18n/lib/pt_br/i19home.txt +1 -0
  2471. package/packages/i18n/lib/pt_br/i19hour.txt +1 -0
  2472. package/packages/i18n/lib/pt_br/i19hours.txt +1 -0
  2473. package/packages/i18n/lib/pt_br/i19iForgotMyPassword.txt +1 -0
  2474. package/packages/i18n/lib/pt_br/i19iReadAndAccept.txt +1 -0
  2475. package/packages/i18n/lib/pt_br/i19icon.txt +1 -0
  2476. package/packages/i18n/lib/pt_br/i19id.txt +1 -0
  2477. package/packages/i18n/lib/pt_br/i19idOfShippingMethod.txt +1 -0
  2478. package/packages/i18n/lib/pt_br/i19identification.txt +1 -0
  2479. package/packages/i18n/lib/pt_br/i19identifyYourAccount.txt +1 -0
  2480. package/packages/i18n/lib/pt_br/i19image.txt +1 -0
  2481. package/packages/i18n/lib/pt_br/i19images.txt +1 -0
  2482. package/packages/i18n/lib/pt_br/i19import.txt +1 -0
  2483. package/packages/i18n/lib/pt_br/i19in.txt +1 -0
  2484. package/packages/i18n/lib/pt_br/i19inStock.txt +1 -0
  2485. package/packages/i18n/lib/pt_br/i19inStockAt.txt +1 -0
  2486. package/packages/i18n/lib/pt_br/i19inactive.txt +1 -0
  2487. package/packages/i18n/lib/pt_br/i19incorrect.txt +1 -0
  2488. package/packages/i18n/lib/pt_br/i19incorrectEmailCodeMsg.txt +1 -0
  2489. package/packages/i18n/lib/pt_br/i19incorrectFormat.txt +1 -0
  2490. package/packages/i18n/lib/pt_br/i19info.txt +1 -0
  2491. package/packages/i18n/lib/pt_br/i19inscriptionNumber.txt +1 -0
  2492. package/packages/i18n/lib/pt_br/i19insert.txt +1 -0
  2493. package/packages/i18n/lib/pt_br/i19install.txt +1 -0
  2494. package/packages/i18n/lib/pt_br/i19installNow.txt +1 -0
  2495. package/packages/i18n/lib/pt_br/i19installed.txt +1 -0
  2496. package/packages/i18n/lib/pt_br/i19installedApps.txt +1 -0
  2497. package/packages/i18n/lib/pt_br/i19installingApp.txt +1 -0
  2498. package/packages/i18n/lib/pt_br/i19installment.txt +1 -0
  2499. package/packages/i18n/lib/pt_br/i19installments.txt +1 -0
  2500. package/packages/i18n/lib/pt_br/i19institutional.txt +1 -0
  2501. package/packages/i18n/lib/pt_br/i19interestFree.txt +1 -0
  2502. package/packages/i18n/lib/pt_br/i19intermediator.txt +1 -0
  2503. package/packages/i18n/lib/pt_br/i19invalidCard.txt +1 -0
  2504. package/packages/i18n/lib/pt_br/i19invalidCardMsg.txt +1 -0
  2505. package/packages/i18n/lib/pt_br/i19invalidCouponMsg.txt +1 -0
  2506. package/packages/i18n/lib/pt_br/i19invalidDomainName.txt +1 -0
  2507. package/packages/i18n/lib/pt_br/i19invalidLoginInfoMsg.txt +1 -0
  2508. package/packages/i18n/lib/pt_br/i19inventory.txt +1 -0
  2509. package/packages/i18n/lib/pt_br/i19inventoryHistory.txt +1 -0
  2510. package/packages/i18n/lib/pt_br/i19invoice.txt +1 -0
  2511. package/packages/i18n/lib/pt_br/i19invoices.txt +1 -0
  2512. package/packages/i18n/lib/pt_br/i19isFilter.txt +1 -0
  2513. package/packages/i18n/lib/pt_br/i19isNotYou.txt +1 -0
  2514. package/packages/i18n/lib/pt_br/i19item.txt +1 -0
  2515. package/packages/i18n/lib/pt_br/i19items.txt +1 -0
  2516. package/packages/i18n/lib/pt_br/i19itemsFound.txt +1 -0
  2517. package/packages/i18n/lib/pt_br/i19jurifical.txt +1 -0
  2518. package/packages/i18n/lib/pt_br/i19just.txt +1 -0
  2519. package/packages/i18n/lib/pt_br/i19keywords.txt +1 -0
  2520. package/packages/i18n/lib/pt_br/i19kit.txt +1 -0
  2521. package/packages/i18n/lib/pt_br/i19label.txt +1 -0
  2522. package/packages/i18n/lib/pt_br/i19labelOfCustomization.txt +1 -0
  2523. package/packages/i18n/lib/pt_br/i19last.txt +1 -0
  2524. package/packages/i18n/lib/pt_br/i19lastOptions.txt +1 -0
  2525. package/packages/i18n/lib/pt_br/i19lastPurchase.txt +1 -0
  2526. package/packages/i18n/lib/pt_br/i19lastSearchedTerms.txt +1 -0
  2527. package/packages/i18n/lib/pt_br/i19lastVisitedProducts.txt +1 -0
  2528. package/packages/i18n/lib/pt_br/i19latestOrders.txt +1 -0
  2529. package/packages/i18n/lib/pt_br/i19launch.txt +1 -0
  2530. package/packages/i18n/lib/pt_br/i19launching.txt +1 -0
  2531. package/packages/i18n/lib/pt_br/i19length.txt +1 -0
  2532. package/packages/i18n/lib/pt_br/i19lineAddress.txt +1 -0
  2533. package/packages/i18n/lib/pt_br/i19list.txt +1 -0
  2534. package/packages/i18n/lib/pt_br/i19listOfInvoices.txt +1 -0
  2535. package/packages/i18n/lib/pt_br/i19listOfPayments.txt +1 -0
  2536. package/packages/i18n/lib/pt_br/i19listSubscriptionInvoices.txt +1 -0
  2537. package/packages/i18n/lib/pt_br/i19load.txt +1 -0
  2538. package/packages/i18n/lib/pt_br/i19loadDataErrorMsg.txt +1 -0
  2539. package/packages/i18n/lib/pt_br/i19loadMore.txt +1 -0
  2540. package/packages/i18n/lib/pt_br/i19loadMoreProducts.txt +1 -0
  2541. package/packages/i18n/lib/pt_br/i19loadProductErrorMsg.txt +1 -0
  2542. package/packages/i18n/lib/pt_br/i19loading.txt +1 -0
  2543. package/packages/i18n/lib/pt_br/i19locale.txt +1 -0
  2544. package/packages/i18n/lib/pt_br/i19login.txt +1 -0
  2545. package/packages/i18n/lib/pt_br/i19loginEnabled.txt +1 -0
  2546. package/packages/i18n/lib/pt_br/i19loginErrorMsg.txt +1 -0
  2547. package/packages/i18n/lib/pt_br/i19loginForOrderDetailsMsg.txt +1 -0
  2548. package/packages/i18n/lib/pt_br/i19logo.txt +1 -0
  2549. package/packages/i18n/lib/pt_br/i19logout.txt +1 -0
  2550. package/packages/i18n/lib/pt_br/i19low.txt +1 -0
  2551. package/packages/i18n/lib/pt_br/i19lowestPrice.txt +1 -0
  2552. package/packages/i18n/lib/pt_br/i19loyaltyPoints.txt +1 -0
  2553. package/packages/i18n/lib/pt_br/i19loyaltyPointsName.txt +1 -0
  2554. package/packages/i18n/lib/pt_br/i19loyaltyPointsPointsValue.txt +1 -0
  2555. package/packages/i18n/lib/pt_br/i19madeBy.txt +1 -0
  2556. package/packages/i18n/lib/pt_br/i19mainEmail.txt +1 -0
  2557. package/packages/i18n/lib/pt_br/i19male.txt +1 -0
  2558. package/packages/i18n/lib/pt_br/i19manageStock.txt +1 -0
  2559. package/packages/i18n/lib/pt_br/i19manageYourPurchaseHistory.txt +1 -0
  2560. package/packages/i18n/lib/pt_br/i19marketing.txt +1 -0
  2561. package/packages/i18n/lib/pt_br/i19marketplace.txt +1 -0
  2562. package/packages/i18n/lib/pt_br/i19marketplaces.txt +1 -0
  2563. package/packages/i18n/lib/pt_br/i19massEdit.txt +1 -0
  2564. package/packages/i18n/lib/pt_br/i19maxQuantity.txt +1 -0
  2565. package/packages/i18n/lib/pt_br/i19maximum.txt +1 -0
  2566. package/packages/i18n/lib/pt_br/i19measurement.txt +1 -0
  2567. package/packages/i18n/lib/pt_br/i19media.txt +1 -0
  2568. package/packages/i18n/lib/pt_br/i19mediaGallery.txt +1 -0
  2569. package/packages/i18n/lib/pt_br/i19menu.txt +1 -0
  2570. package/packages/i18n/lib/pt_br/i19metaTagDescription.txt +1 -0
  2571. package/packages/i18n/lib/pt_br/i19metafields.txt +1 -0
  2572. package/packages/i18n/lib/pt_br/i19metafieldsMsg.txt +1 -0
  2573. package/packages/i18n/lib/pt_br/i19middleName.txt +1 -0
  2574. package/packages/i18n/lib/pt_br/i19milliseconds.txt +1 -0
  2575. package/packages/i18n/lib/pt_br/i19minQuantity.txt +1 -0
  2576. package/packages/i18n/lib/pt_br/i19minimum.txt +1 -0
  2577. package/packages/i18n/lib/pt_br/i19minus.txt +1 -0
  2578. package/packages/i18n/lib/pt_br/i19minute.txt +1 -0
  2579. package/packages/i18n/lib/pt_br/i19minutes.txt +1 -0
  2580. package/packages/i18n/lib/pt_br/i19mlCategoryId.txt +1 -0
  2581. package/packages/i18n/lib/pt_br/i19mobile.txt +1 -0
  2582. package/packages/i18n/lib/pt_br/i19mobileLink.txt +1 -0
  2583. package/packages/i18n/lib/pt_br/i19modules.txt +1 -0
  2584. package/packages/i18n/lib/pt_br/i19month.txt +1 -0
  2585. package/packages/i18n/lib/pt_br/i19monthly.txt +1 -0
  2586. package/packages/i18n/lib/pt_br/i19mostPopular.txt +1 -0
  2587. package/packages/i18n/lib/pt_br/i19mostRelevant.txt +1 -0
  2588. package/packages/i18n/lib/pt_br/i19motorcycleCourier.txt +1 -0
  2589. package/packages/i18n/lib/pt_br/i19myAccount.txt +1 -0
  2590. package/packages/i18n/lib/pt_br/i19myAccountAndOrders.txt +1 -0
  2591. package/packages/i18n/lib/pt_br/i19myCart.txt +1 -0
  2592. package/packages/i18n/lib/pt_br/i19myFavorites.txt +1 -0
  2593. package/packages/i18n/lib/pt_br/i19myOrders.txt +1 -0
  2594. package/packages/i18n/lib/pt_br/i19myShoppingCart.txt +1 -0
  2595. package/packages/i18n/lib/pt_br/i19name.txt +1 -0
  2596. package/packages/i18n/lib/pt_br/i19nameOnCard.txt +1 -0
  2597. package/packages/i18n/lib/pt_br/i19namespace.txt +1 -0
  2598. package/packages/i18n/lib/pt_br/i19namespaceMsg.txt +1 -0
  2599. package/packages/i18n/lib/pt_br/i19nearTo.txt +1 -0
  2600. package/packages/i18n/lib/pt_br/i19needHelpQn.txt +1 -0
  2601. package/packages/i18n/lib/pt_br/i19new.txt +1 -0
  2602. package/packages/i18n/lib/pt_br/i19newAddress.txt +1 -0
  2603. package/packages/i18n/lib/pt_br/i19newOrders.txt +1 -0
  2604. package/packages/i18n/lib/pt_br/i19newPassword.txt +1 -0
  2605. package/packages/i18n/lib/pt_br/i19newPriceRange.txt +1 -0
  2606. package/packages/i18n/lib/pt_br/i19newVersionAvailableMsg.txt +1 -0
  2607. package/packages/i18n/lib/pt_br/i19newsletter.txt +1 -0
  2608. package/packages/i18n/lib/pt_br/i19newsletterReport.txt +1 -0
  2609. package/packages/i18n/lib/pt_br/i19next.txt +1 -0
  2610. package/packages/i18n/lib/pt_br/i19nickname.txt +1 -0
  2611. package/packages/i18n/lib/pt_br/i19no.txt +1 -0
  2612. package/packages/i18n/lib/pt_br/i19noAdditional.txt +1 -0
  2613. package/packages/i18n/lib/pt_br/i19noAppsAvailable.txt +1 -0
  2614. package/packages/i18n/lib/pt_br/i19noBrand.txt +1 -0
  2615. package/packages/i18n/lib/pt_br/i19noCategory.txt +1 -0
  2616. package/packages/i18n/lib/pt_br/i19noCollection.txt +1 -0
  2617. package/packages/i18n/lib/pt_br/i19noGrid.txt +1 -0
  2618. package/packages/i18n/lib/pt_br/i19noItemSelected.txt +1 -0
  2619. package/packages/i18n/lib/pt_br/i19noNewOrdersMsg.txt +1 -0
  2620. package/packages/i18n/lib/pt_br/i19noNumber.txt +1 -0
  2621. package/packages/i18n/lib/pt_br/i19noOrder.txt +1 -0
  2622. package/packages/i18n/lib/pt_br/i19noPrice.txt +1 -0
  2623. package/packages/i18n/lib/pt_br/i19noProductsFound.txt +1 -0
  2624. package/packages/i18n/lib/pt_br/i19noProductsFoundFor$1.txt +1 -0
  2625. package/packages/i18n/lib/pt_br/i19noProductsInBrandMsg.txt +1 -0
  2626. package/packages/i18n/lib/pt_br/i19noProductsInCategoryMsg.txt +1 -0
  2627. package/packages/i18n/lib/pt_br/i19noProfileFoundWithEmail.txt +1 -0
  2628. package/packages/i18n/lib/pt_br/i19noSavedFavoritesMsg.txt +1 -0
  2629. package/packages/i18n/lib/pt_br/i19noUser.txt +1 -0
  2630. package/packages/i18n/lib/pt_br/i19normal.txt +1 -0
  2631. package/packages/i18n/lib/pt_br/i19notConfigured.txt +1 -0
  2632. package/packages/i18n/lib/pt_br/i19notFound.txt +1 -0
  2633. package/packages/i18n/lib/pt_br/i19notes.txt +1 -0
  2634. package/packages/i18n/lib/pt_br/i19notifications.txt +1 -0
  2635. package/packages/i18n/lib/pt_br/i19notified.txt +1 -0
  2636. package/packages/i18n/lib/pt_br/i19notifiedAdmins.txt +1 -0
  2637. package/packages/i18n/lib/pt_br/i19notifiedAdminsMsg.txt +1 -0
  2638. package/packages/i18n/lib/pt_br/i19notifyAboutOrders.txt +1 -0
  2639. package/packages/i18n/lib/pt_br/i19number.txt +1 -0
  2640. package/packages/i18n/lib/pt_br/i19oauthOnPopup.txt +1 -0
  2641. package/packages/i18n/lib/pt_br/i19of.txt +1 -0
  2642. package/packages/i18n/lib/pt_br/i19ofDiscount.txt +1 -0
  2643. package/packages/i18n/lib/pt_br/i19offer.txt +1 -0
  2644. package/packages/i18n/lib/pt_br/i19on.txt +1 -0
  2645. package/packages/i18n/lib/pt_br/i19onFollowingAddress.txt +1 -0
  2646. package/packages/i18n/lib/pt_br/i19onFreight.txt +1 -0
  2647. package/packages/i18n/lib/pt_br/i19only.txt +1 -0
  2648. package/packages/i18n/lib/pt_br/i19open.txt +1 -0
  2649. package/packages/i18n/lib/pt_br/i19openAt.txt +1 -0
  2650. package/packages/i18n/lib/pt_br/i19openCart.txt +1 -0
  2651. package/packages/i18n/lib/pt_br/i19openGallery.txt +1 -0
  2652. package/packages/i18n/lib/pt_br/i19operational.txt +1 -0
  2653. package/packages/i18n/lib/pt_br/i19option.txt +1 -0
  2654. package/packages/i18n/lib/pt_br/i19optionChosen.txt +1 -0
  2655. package/packages/i18n/lib/pt_br/i19options.txt +1 -0
  2656. package/packages/i18n/lib/pt_br/i19or.txt +1 -0
  2657. package/packages/i18n/lib/pt_br/i19orProceedWith.txt +1 -0
  2658. package/packages/i18n/lib/pt_br/i19order.txt +1 -0
  2659. package/packages/i18n/lib/pt_br/i19orderCode.txt +1 -0
  2660. package/packages/i18n/lib/pt_br/i19orderConfirmationMsg.txt +1 -0
  2661. package/packages/i18n/lib/pt_br/i19orderCreated.txt +1 -0
  2662. package/packages/i18n/lib/pt_br/i19orderDetails.txt +1 -0
  2663. package/packages/i18n/lib/pt_br/i19orderItems.txt +1 -0
  2664. package/packages/i18n/lib/pt_br/i19orderNotesInputMsg.txt +1 -0
  2665. package/packages/i18n/lib/pt_br/i19orderNumber.txt +1 -0
  2666. package/packages/i18n/lib/pt_br/i19orderObservations.txt +1 -0
  2667. package/packages/i18n/lib/pt_br/i19orderStatus.txt +1 -0
  2668. package/packages/i18n/lib/pt_br/i19orderValue.txt +1 -0
  2669. package/packages/i18n/lib/pt_br/i19orders.txt +1 -0
  2670. package/packages/i18n/lib/pt_br/i19ordersCount.txt +1 -0
  2671. package/packages/i18n/lib/pt_br/i19ordersTotalValue.txt +1 -0
  2672. package/packages/i18n/lib/pt_br/i19organization.txt +1 -0
  2673. package/packages/i18n/lib/pt_br/i19otherCustomers.txt +1 -0
  2674. package/packages/i18n/lib/pt_br/i19otherCustomersMsg.txt +1 -0
  2675. package/packages/i18n/lib/pt_br/i19outOfDate.txt +1 -0
  2676. package/packages/i18n/lib/pt_br/i19outOfStock.txt +1 -0
  2677. package/packages/i18n/lib/pt_br/i19ownDelivery.txt +1 -0
  2678. package/packages/i18n/lib/pt_br/i19ownHand.txt +1 -0
  2679. package/packages/i18n/lib/pt_br/i19ownHandCost.txt +1 -0
  2680. package/packages/i18n/lib/pt_br/i19package.txt +1 -0
  2681. package/packages/i18n/lib/pt_br/i19packageDimensions.txt +1 -0
  2682. package/packages/i18n/lib/pt_br/i19packageDimensionsInformation.txt +1 -0
  2683. package/packages/i18n/lib/pt_br/i19packageInformation.txt +1 -0
  2684. package/packages/i18n/lib/pt_br/i19packageWeight.txt +1 -0
  2685. package/packages/i18n/lib/pt_br/i19pageLoaded.txt +1 -0
  2686. package/packages/i18n/lib/pt_br/i19paid.txt +1 -0
  2687. package/packages/i18n/lib/pt_br/i19paidTextMsg.txt +1 -0
  2688. package/packages/i18n/lib/pt_br/i19parcelIn.txt +1 -0
  2689. package/packages/i18n/lib/pt_br/i19parentCategory.txt +1 -0
  2690. package/packages/i18n/lib/pt_br/i19partner.txt +1 -0
  2691. package/packages/i18n/lib/pt_br/i19partners.txt +1 -0
  2692. package/packages/i18n/lib/pt_br/i19partnersProgram.txt +1 -0
  2693. package/packages/i18n/lib/pt_br/i19password.txt +1 -0
  2694. package/packages/i18n/lib/pt_br/i19passwordChangedSuccessfully.txt +1 -0
  2695. package/packages/i18n/lib/pt_br/i19patch.txt +1 -0
  2696. package/packages/i18n/lib/pt_br/i19payer.txt +1 -0
  2697. package/packages/i18n/lib/pt_br/i19payment.txt +1 -0
  2698. package/packages/i18n/lib/pt_br/i19paymentConfirmed.txt +1 -0
  2699. package/packages/i18n/lib/pt_br/i19paymentDetails.txt +1 -0
  2700. package/packages/i18n/lib/pt_br/i19paymentError.txt +1 -0
  2701. package/packages/i18n/lib/pt_br/i19paymentErrorMsg.txt +1 -0
  2702. package/packages/i18n/lib/pt_br/i19paymentLink.txt +1 -0
  2703. package/packages/i18n/lib/pt_br/i19paymentMethod.txt +1 -0
  2704. package/packages/i18n/lib/pt_br/i19paymentMethodLabel.txt +1 -0
  2705. package/packages/i18n/lib/pt_br/i19paymentMethods.txt +1 -0
  2706. package/packages/i18n/lib/pt_br/i19paymentOptions.txt +1 -0
  2707. package/packages/i18n/lib/pt_br/i19paymentRealized.txt +1 -0
  2708. package/packages/i18n/lib/pt_br/i19perUnit.txt +1 -0
  2709. package/packages/i18n/lib/pt_br/i19permalink.txt +1 -0
  2710. package/packages/i18n/lib/pt_br/i19personalRegistration.txt +1 -0
  2711. package/packages/i18n/lib/pt_br/i19phone.txt +1 -0
  2712. package/packages/i18n/lib/pt_br/i19phones.txt +1 -0
  2713. package/packages/i18n/lib/pt_br/i19photo.txt +1 -0
  2714. package/packages/i18n/lib/pt_br/i19photos.txt +1 -0
  2715. package/packages/i18n/lib/pt_br/i19pickUpAtTheStore.txt +1 -0
  2716. package/packages/i18n/lib/pt_br/i19pickUpToday.txt +1 -0
  2717. package/packages/i18n/lib/pt_br/i19pickup.txt +1 -0
  2718. package/packages/i18n/lib/pt_br/i19picture.txt +1 -0
  2719. package/packages/i18n/lib/pt_br/i19pictures.txt +1 -0
  2720. package/packages/i18n/lib/pt_br/i19plus.txt +1 -0
  2721. package/packages/i18n/lib/pt_br/i19pointsEarned.txt +1 -0
  2722. package/packages/i18n/lib/pt_br/i19popularProducts.txt +1 -0
  2723. package/packages/i18n/lib/pt_br/i19popup.txt +1 -0
  2724. package/packages/i18n/lib/pt_br/i19post.txt +1 -0
  2725. package/packages/i18n/lib/pt_br/i19posted.txt +1 -0
  2726. package/packages/i18n/lib/pt_br/i19postingDeadline.txt +1 -0
  2727. package/packages/i18n/lib/pt_br/i19postingIn.txt +1 -0
  2728. package/packages/i18n/lib/pt_br/i19pressEnterToSave.txt +1 -0
  2729. package/packages/i18n/lib/pt_br/i19previous.txt +1 -0
  2730. package/packages/i18n/lib/pt_br/i19price.txt +1 -0
  2731. package/packages/i18n/lib/pt_br/i19priceAlteration.txt +1 -0
  2732. package/packages/i18n/lib/pt_br/i19priceEffectiveDate.txt +1 -0
  2733. package/packages/i18n/lib/pt_br/i19priceEffectiveDateEnd.txt +1 -0
  2734. package/packages/i18n/lib/pt_br/i19priceEffectiveDateStar.txt +1 -0
  2735. package/packages/i18n/lib/pt_br/i19priceRange.txt +1 -0
  2736. package/packages/i18n/lib/pt_br/i19priceTo.txt +1 -0
  2737. package/packages/i18n/lib/pt_br/i19pricing.txt +1 -0
  2738. package/packages/i18n/lib/pt_br/i19printBillet.txt +1 -0
  2739. package/packages/i18n/lib/pt_br/i19privacy.txt +1 -0
  2740. package/packages/i18n/lib/pt_br/i19privacyPolicy.txt +1 -0
  2741. package/packages/i18n/lib/pt_br/i19private.txt +1 -0
  2742. package/packages/i18n/lib/pt_br/i19privateMetafields.txt +1 -0
  2743. package/packages/i18n/lib/pt_br/i19privateMetafieldsMsg.txt +1 -0
  2744. package/packages/i18n/lib/pt_br/i19proceed.txt +1 -0
  2745. package/packages/i18n/lib/pt_br/i19product.txt +1 -0
  2746. package/packages/i18n/lib/pt_br/i19productDescription.txt +1 -0
  2747. package/packages/i18n/lib/pt_br/i19productId.txt +1 -0
  2748. package/packages/i18n/lib/pt_br/i19productImages.txt +1 -0
  2749. package/packages/i18n/lib/pt_br/i19productName.txt +1 -0
  2750. package/packages/i18n/lib/pt_br/i19productSpecifications.txt +1 -0
  2751. package/packages/i18n/lib/pt_br/i19productionDeadline.txt +1 -0
  2752. package/packages/i18n/lib/pt_br/i19productionTime.txt +1 -0
  2753. package/packages/i18n/lib/pt_br/i19productionTimeCumulative.txt +1 -0
  2754. package/packages/i18n/lib/pt_br/i19productionTimeDaysMsg.txt +1 -0
  2755. package/packages/i18n/lib/pt_br/i19productionTimeWorkingDays.txt +1 -0
  2756. package/packages/i18n/lib/pt_br/i19products.txt +1 -0
  2757. package/packages/i18n/lib/pt_br/i19productsAdded.txt +1 -0
  2758. package/packages/i18n/lib/pt_br/i19productsAddedToCart.txt +1 -0
  2759. package/packages/i18n/lib/pt_br/i19productsPurchased.txt +1 -0
  2760. package/packages/i18n/lib/pt_br/i19profile.txt +1 -0
  2761. package/packages/i18n/lib/pt_br/i19profileNotFound.txt +1 -0
  2762. package/packages/i18n/lib/pt_br/i19province.txt +1 -0
  2763. package/packages/i18n/lib/pt_br/i19provinceCode.txt +1 -0
  2764. package/packages/i18n/lib/pt_br/i19put.txt +1 -0
  2765. package/packages/i18n/lib/pt_br/i19quantity.txt +1 -0
  2766. package/packages/i18n/lib/pt_br/i19quarterly.txt +1 -0
  2767. package/packages/i18n/lib/pt_br/i19quickSetup.txt +1 -0
  2768. package/packages/i18n/lib/pt_br/i19random.txt +1 -0
  2769. package/packages/i18n/lib/pt_br/i19rating.txt +1 -0
  2770. package/packages/i18n/lib/pt_br/i19read.txt +1 -0
  2771. package/packages/i18n/lib/pt_br/i19receipt.txt +1 -0
  2772. package/packages/i18n/lib/pt_br/i19receiptPrice.txt +1 -0
  2773. package/packages/i18n/lib/pt_br/i19receiveNewsletter.txt +1 -0
  2774. package/packages/i18n/lib/pt_br/i19receiveToday.txt +1 -0
  2775. package/packages/i18n/lib/pt_br/i19receivedOrder.txt +1 -0
  2776. package/packages/i18n/lib/pt_br/i19recipient.txt +1 -0
  2777. package/packages/i18n/lib/pt_br/i19recommendations.txt +1 -0
  2778. package/packages/i18n/lib/pt_br/i19recommendedForYou.txt +1 -0
  2779. package/packages/i18n/lib/pt_br/i19recommendedProducts.txt +1 -0
  2780. package/packages/i18n/lib/pt_br/i19recurrence.txt +1 -0
  2781. package/packages/i18n/lib/pt_br/i19recurrent.txt +1 -0
  2782. package/packages/i18n/lib/pt_br/i19redirectToPayment.txt +1 -0
  2783. package/packages/i18n/lib/pt_br/i19reference.txt +1 -0
  2784. package/packages/i18n/lib/pt_br/i19referenceCode.txt +1 -0
  2785. package/packages/i18n/lib/pt_br/i19referral.txt +1 -0
  2786. package/packages/i18n/lib/pt_br/i19referringSite.txt +1 -0
  2787. package/packages/i18n/lib/pt_br/i19refine.txt +1 -0
  2788. package/packages/i18n/lib/pt_br/i19refineSearch.txt +1 -0
  2789. package/packages/i18n/lib/pt_br/i19registerDate.txt +1 -0
  2790. package/packages/i18n/lib/pt_br/i19registerProduct.txt +1 -0
  2791. package/packages/i18n/lib/pt_br/i19registerToBuy.txt +1 -0
  2792. package/packages/i18n/lib/pt_br/i19registerToBuyMsg.txt +1 -0
  2793. package/packages/i18n/lib/pt_br/i19registration.txt +1 -0
  2794. package/packages/i18n/lib/pt_br/i19reinstall.txt +1 -0
  2795. package/packages/i18n/lib/pt_br/i19relatedApps.txt +1 -0
  2796. package/packages/i18n/lib/pt_br/i19relatedProducts.txt +1 -0
  2797. package/packages/i18n/lib/pt_br/i19relatedSearch.txt +1 -0
  2798. package/packages/i18n/lib/pt_br/i19releases.txt +1 -0
  2799. package/packages/i18n/lib/pt_br/i19relevance.txt +1 -0
  2800. package/packages/i18n/lib/pt_br/i19remove.txt +1 -0
  2801. package/packages/i18n/lib/pt_br/i19removeFromFavorites.txt +1 -0
  2802. package/packages/i18n/lib/pt_br/i19removed.txt +1 -0
  2803. package/packages/i18n/lib/pt_br/i19reopenOrder.txt +1 -0
  2804. package/packages/i18n/lib/pt_br/i19report.txt +1 -0
  2805. package/packages/i18n/lib/pt_br/i19require.txt +1 -0
  2806. package/packages/i18n/lib/pt_br/i19required.txt +1 -0
  2807. package/packages/i18n/lib/pt_br/i19requiredEmail.txt +1 -0
  2808. package/packages/i18n/lib/pt_br/i19requiredEmailMsg.txt +1 -0
  2809. package/packages/i18n/lib/pt_br/i19requiredField.txt +1 -0
  2810. package/packages/i18n/lib/pt_br/i19resource.txt +1 -0
  2811. package/packages/i18n/lib/pt_br/i19resourceId.txt +1 -0
  2812. package/packages/i18n/lib/pt_br/i19results.txt +1 -0
  2813. package/packages/i18n/lib/pt_br/i19resultsFor.txt +1 -0
  2814. package/packages/i18n/lib/pt_br/i19retail.txt +1 -0
  2815. package/packages/i18n/lib/pt_br/i19retry.txt +1 -0
  2816. package/packages/i18n/lib/pt_br/i19reviews.txt +1 -0
  2817. package/packages/i18n/lib/pt_br/i19safeBuy.txt +1 -0
  2818. package/packages/i18n/lib/pt_br/i19safeEnvMsg.txt +1 -0
  2819. package/packages/i18n/lib/pt_br/i19sales.txt +1 -0
  2820. package/packages/i18n/lib/pt_br/i19salesChannels.txt +1 -0
  2821. package/packages/i18n/lib/pt_br/i19salesPrice.txt +1 -0
  2822. package/packages/i18n/lib/pt_br/i19save.txt +1 -0
  2823. package/packages/i18n/lib/pt_br/i19saveBrand.txt +1 -0
  2824. package/packages/i18n/lib/pt_br/i19saveCard.txt +1 -0
  2825. package/packages/i18n/lib/pt_br/i19saveCart.txt +1 -0
  2826. package/packages/i18n/lib/pt_br/i19saveCategory.txt +1 -0
  2827. package/packages/i18n/lib/pt_br/i19saveClient.txt +1 -0
  2828. package/packages/i18n/lib/pt_br/i19saveCollection.txt +1 -0
  2829. package/packages/i18n/lib/pt_br/i19saveGrid.txt +1 -0
  2830. package/packages/i18n/lib/pt_br/i19saveProduct.txt +1 -0
  2831. package/packages/i18n/lib/pt_br/i19saveText.txt +1 -0
  2832. package/packages/i18n/lib/pt_br/i19saved.txt +1 -0
  2833. package/packages/i18n/lib/pt_br/i19savedWithSuccess.txt +1 -0
  2834. package/packages/i18n/lib/pt_br/i19scheduledDelivery.txt +1 -0
  2835. package/packages/i18n/lib/pt_br/i19search.txt +1 -0
  2836. package/packages/i18n/lib/pt_br/i19searchAgain.txt +1 -0
  2837. package/packages/i18n/lib/pt_br/i19searchEngineListing.txt +1 -0
  2838. package/packages/i18n/lib/pt_br/i19searchItems.txt +1 -0
  2839. package/packages/i18n/lib/pt_br/i19searchOfflineErrorMsg.txt +1 -0
  2840. package/packages/i18n/lib/pt_br/i19searchProducts.txt +1 -0
  2841. package/packages/i18n/lib/pt_br/i19searchingFor.txt +1 -0
  2842. package/packages/i18n/lib/pt_br/i19second.txt +1 -0
  2843. package/packages/i18n/lib/pt_br/i19seconds.txt +1 -0
  2844. package/packages/i18n/lib/pt_br/i19securityCode.txt +1 -0
  2845. package/packages/i18n/lib/pt_br/i19seeAll$1Category.txt +1 -0
  2846. package/packages/i18n/lib/pt_br/i19seeAll.txt +1 -0
  2847. package/packages/i18n/lib/pt_br/i19seeAllApps.txt +1 -0
  2848. package/packages/i18n/lib/pt_br/i19seeAllThemes.txt +1 -0
  2849. package/packages/i18n/lib/pt_br/i19seeCart.txt +1 -0
  2850. package/packages/i18n/lib/pt_br/i19seeMore.txt +1 -0
  2851. package/packages/i18n/lib/pt_br/i19seeMoreCategory.txt +1 -0
  2852. package/packages/i18n/lib/pt_br/i19seeMoreInfo.txt +1 -0
  2853. package/packages/i18n/lib/pt_br/i19seeOrder.txt +1 -0
  2854. package/packages/i18n/lib/pt_br/i19seeShoppingCart.txt +1 -0
  2855. package/packages/i18n/lib/pt_br/i19select.txt +1 -0
  2856. package/packages/i18n/lib/pt_br/i19selectVariation.txt +1 -0
  2857. package/packages/i18n/lib/pt_br/i19selectVariationMsg.txt +1 -0
  2858. package/packages/i18n/lib/pt_br/i19selected.txt +1 -0
  2859. package/packages/i18n/lib/pt_br/i19selectedOffers.txt +1 -0
  2860. package/packages/i18n/lib/pt_br/i19selectedOptions.txt +1 -0
  2861. package/packages/i18n/lib/pt_br/i19seller.txt +1 -0
  2862. package/packages/i18n/lib/pt_br/i19sellerRecommendations.txt +1 -0
  2863. package/packages/i18n/lib/pt_br/i19sellerRecommendationsProducts.txt +1 -0
  2864. package/packages/i18n/lib/pt_br/i19sellerRecommendationsTitle.txt +1 -0
  2865. package/packages/i18n/lib/pt_br/i19sellerStatus.txt +1 -0
  2866. package/packages/i18n/lib/pt_br/i19sellerStatusMsg.txt +1 -0
  2867. package/packages/i18n/lib/pt_br/i19send.txt +1 -0
  2868. package/packages/i18n/lib/pt_br/i19sendLoginCodeByEmail.txt +1 -0
  2869. package/packages/i18n/lib/pt_br/i19sendLoginLinkByEmail.txt +1 -0
  2870. package/packages/i18n/lib/pt_br/i19sender.txt +1 -0
  2871. package/packages/i18n/lib/pt_br/i19senderFrom.txt +1 -0
  2872. package/packages/i18n/lib/pt_br/i19seo.txt +1 -0
  2873. package/packages/i18n/lib/pt_br/i19setDomainMsg.txt +1 -0
  2874. package/packages/i18n/lib/pt_br/i19setStoreDomain.txt +1 -0
  2875. package/packages/i18n/lib/pt_br/i19setUp.txt +1 -0
  2876. package/packages/i18n/lib/pt_br/i19settings.txt +1 -0
  2877. package/packages/i18n/lib/pt_br/i19share.txt +1 -0
  2878. package/packages/i18n/lib/pt_br/i19shareOnFacebook.txt +1 -0
  2879. package/packages/i18n/lib/pt_br/i19shareOnWhatsapp.txt +1 -0
  2880. package/packages/i18n/lib/pt_br/i19shipped.txt +1 -0
  2881. package/packages/i18n/lib/pt_br/i19shippedBy.txt +1 -0
  2882. package/packages/i18n/lib/pt_br/i19shipping.txt +1 -0
  2883. package/packages/i18n/lib/pt_br/i19shippingAdditionalPrice.txt +1 -0
  2884. package/packages/i18n/lib/pt_br/i19shippingAddress.txt +1 -0
  2885. package/packages/i18n/lib/pt_br/i19shippingCustomFields.txt +1 -0
  2886. package/packages/i18n/lib/pt_br/i19shippingDiscount.txt +1 -0
  2887. package/packages/i18n/lib/pt_br/i19shippingInvoices.txt +1 -0
  2888. package/packages/i18n/lib/pt_br/i19shippingMethod.txt +1 -0
  2889. package/packages/i18n/lib/pt_br/i19shippingMethodLabel.txt +1 -0
  2890. package/packages/i18n/lib/pt_br/i19shippingNotes.txt +1 -0
  2891. package/packages/i18n/lib/pt_br/i19shippingNotesMsg.txt +1 -0
  2892. package/packages/i18n/lib/pt_br/i19shippingStatus.txt +1 -0
  2893. package/packages/i18n/lib/pt_br/i19shippingTag.txt +1 -0
  2894. package/packages/i18n/lib/pt_br/i19shippingTags.txt +1 -0
  2895. package/packages/i18n/lib/pt_br/i19shippingTaxes.txt +1 -0
  2896. package/packages/i18n/lib/pt_br/i19shippingTaxesMsg.txt +1 -0
  2897. package/packages/i18n/lib/pt_br/i19shippingTo.txt +1 -0
  2898. package/packages/i18n/lib/pt_br/i19shippingTotalCost.txt +1 -0
  2899. package/packages/i18n/lib/pt_br/i19shopByCategory.txt +1 -0
  2900. package/packages/i18n/lib/pt_br/i19shopByFranchise.txt +1 -0
  2901. package/packages/i18n/lib/pt_br/i19shopNow.txt +1 -0
  2902. package/packages/i18n/lib/pt_br/i19shoppingCart.txt +1 -0
  2903. package/packages/i18n/lib/pt_br/i19short.txt +1 -0
  2904. package/packages/i18n/lib/pt_br/i19shortDescription.txt +1 -0
  2905. package/packages/i18n/lib/pt_br/i19show.txt +1 -0
  2906. package/packages/i18n/lib/pt_br/i19showDescription.txt +1 -0
  2907. package/packages/i18n/lib/pt_br/i19showReview.txt +1 -0
  2908. package/packages/i18n/lib/pt_br/i19signIn.txt +1 -0
  2909. package/packages/i18n/lib/pt_br/i19signInWith.txt +1 -0
  2910. package/packages/i18n/lib/pt_br/i19signInWithAnotherEmail.txt +1 -0
  2911. package/packages/i18n/lib/pt_br/i19signUp.txt +1 -0
  2912. package/packages/i18n/lib/pt_br/i19signUpWith.txt +1 -0
  2913. package/packages/i18n/lib/pt_br/i19signature.txt +1 -0
  2914. package/packages/i18n/lib/pt_br/i19size.txt +1 -0
  2915. package/packages/i18n/lib/pt_br/i19sizeGuide.txt +1 -0
  2916. package/packages/i18n/lib/pt_br/i19sku.txt +1 -0
  2917. package/packages/i18n/lib/pt_br/i19slug.txt +1 -0
  2918. package/packages/i18n/lib/pt_br/i19socialLogin.txt +1 -0
  2919. package/packages/i18n/lib/pt_br/i19socialMedia.txt +1 -0
  2920. package/packages/i18n/lib/pt_br/i19sort.txt +1 -0
  2921. package/packages/i18n/lib/pt_br/i19sortBy.txt +1 -0
  2922. package/packages/i18n/lib/pt_br/i19source.txt +1 -0
  2923. package/packages/i18n/lib/pt_br/i19sourceName.txt +1 -0
  2924. package/packages/i18n/lib/pt_br/i19specifications.txt +1 -0
  2925. package/packages/i18n/lib/pt_br/i19staffNotes.txt +1 -0
  2926. package/packages/i18n/lib/pt_br/i19staffSignature.txt +1 -0
  2927. package/packages/i18n/lib/pt_br/i19star.txt +1 -0
  2928. package/packages/i18n/lib/pt_br/i19startDate.txt +1 -0
  2929. package/packages/i18n/lib/pt_br/i19state.txt +1 -0
  2930. package/packages/i18n/lib/pt_br/i19status.txt +1 -0
  2931. package/packages/i18n/lib/pt_br/i19statusLink.txt +1 -0
  2932. package/packages/i18n/lib/pt_br/i19statusMobileLink.txt +1 -0
  2933. package/packages/i18n/lib/pt_br/i19store.txt +1 -0
  2934. package/packages/i18n/lib/pt_br/i19storefront.txt +1 -0
  2935. package/packages/i18n/lib/pt_br/i19street.txt +1 -0
  2936. package/packages/i18n/lib/pt_br/i19submit.txt +1 -0
  2937. package/packages/i18n/lib/pt_br/i19subresource.txt +1 -0
  2938. package/packages/i18n/lib/pt_br/i19subresourceId.txt +1 -0
  2939. package/packages/i18n/lib/pt_br/i19subscribe.txt +1 -0
  2940. package/packages/i18n/lib/pt_br/i19subscription.txt +1 -0
  2941. package/packages/i18n/lib/pt_br/i19subscriptionInvoices.txt +1 -0
  2942. package/packages/i18n/lib/pt_br/i19subscriptions.txt +1 -0
  2943. package/packages/i18n/lib/pt_br/i19subtitle.txt +1 -0
  2944. package/packages/i18n/lib/pt_br/i19subtotal.txt +1 -0
  2945. package/packages/i18n/lib/pt_br/i19success.txt +1 -0
  2946. package/packages/i18n/lib/pt_br/i19successfullyInstalled.txt +1 -0
  2947. package/packages/i18n/lib/pt_br/i19successfullyUninstalled.txt +1 -0
  2948. package/packages/i18n/lib/pt_br/i19suggestedProducts.txt +1 -0
  2949. package/packages/i18n/lib/pt_br/i19summary.txt +1 -0
  2950. package/packages/i18n/lib/pt_br/i19support.txt +1 -0
  2951. package/packages/i18n/lib/pt_br/i19table.txt +1 -0
  2952. package/packages/i18n/lib/pt_br/i19tax.txt +1 -0
  2953. package/packages/i18n/lib/pt_br/i19taxExempt.txt +1 -0
  2954. package/packages/i18n/lib/pt_br/i19termSearched.txt +1 -0
  2955. package/packages/i18n/lib/pt_br/i19test.txt +1 -0
  2956. package/packages/i18n/lib/pt_br/i19thanks.txt +1 -0
  2957. package/packages/i18n/lib/pt_br/i19thanksForPurchase.txt +1 -0
  2958. package/packages/i18n/lib/pt_br/i19theme.txt +1 -0
  2959. package/packages/i18n/lib/pt_br/i19themes.txt +1 -0
  2960. package/packages/i18n/lib/pt_br/i19ticketCode.txt +1 -0
  2961. package/packages/i18n/lib/pt_br/i19title.txt +1 -0
  2962. package/packages/i18n/lib/pt_br/i19titleTag.txt +1 -0
  2963. package/packages/i18n/lib/pt_br/i19to.txt +1 -0
  2964. package/packages/i18n/lib/pt_br/i19toEarn.txt +1 -0
  2965. package/packages/i18n/lib/pt_br/i19toPay.txt +1 -0
  2966. package/packages/i18n/lib/pt_br/i19today.txt +1 -0
  2967. package/packages/i18n/lib/pt_br/i19toggleMenu.txt +1 -0
  2968. package/packages/i18n/lib/pt_br/i19token.txt +1 -0
  2969. package/packages/i18n/lib/pt_br/i19total.txt +1 -0
  2970. package/packages/i18n/lib/pt_br/i19totalAmount.txt +1 -0
  2971. package/packages/i18n/lib/pt_br/i19totalCancelled.txt +1 -0
  2972. package/packages/i18n/lib/pt_br/i19totalCancelledMsg.txt +1 -0
  2973. package/packages/i18n/lib/pt_br/i19totalResultsFor.txt +1 -0
  2974. package/packages/i18n/lib/pt_br/i19totalSpent.txt +1 -0
  2975. package/packages/i18n/lib/pt_br/i19trackDelivery.txt +1 -0
  2976. package/packages/i18n/lib/pt_br/i19trackingCodes.txt +1 -0
  2977. package/packages/i18n/lib/pt_br/i19transactionCode.txt +1 -0
  2978. package/packages/i18n/lib/pt_br/i19transactionId.txt +1 -0
  2979. package/packages/i18n/lib/pt_br/i19transactionItems.txt +1 -0
  2980. package/packages/i18n/lib/pt_br/i19transactionStatus.txt +1 -0
  2981. package/packages/i18n/lib/pt_br/i19transactionStatusMsg.txt +1 -0
  2982. package/packages/i18n/lib/pt_br/i19transactionType.txt +1 -0
  2983. package/packages/i18n/lib/pt_br/i19trendingApps.txt +1 -0
  2984. package/packages/i18n/lib/pt_br/i19triggers.txt +1 -0
  2985. package/packages/i18n/lib/pt_br/i19triggersMsg.txt +1 -0
  2986. package/packages/i18n/lib/pt_br/i19tryAgain.txt +1 -0
  2987. package/packages/i18n/lib/pt_br/i19type.txt +1 -0
  2988. package/packages/i18n/lib/pt_br/i19unable.txt +1 -0
  2989. package/packages/i18n/lib/pt_br/i19unableToInstallApp.txt +1 -0
  2990. package/packages/i18n/lib/pt_br/i19unableToUninstallApp.txt +1 -0
  2991. package/packages/i18n/lib/pt_br/i19unavailable.txt +1 -0
  2992. package/packages/i18n/lib/pt_br/i19uninstall.txt +1 -0
  2993. package/packages/i18n/lib/pt_br/i19uninstallingApp.txt +1 -0
  2994. package/packages/i18n/lib/pt_br/i19uninstallingAppWithSuccess.txt +1 -0
  2995. package/packages/i18n/lib/pt_br/i19units.txt +1 -0
  2996. package/packages/i18n/lib/pt_br/i19unitsInStock.txt +1 -0
  2997. package/packages/i18n/lib/pt_br/i19unlimited.txt +1 -0
  2998. package/packages/i18n/lib/pt_br/i19unsubscribe.txt +1 -0
  2999. package/packages/i18n/lib/pt_br/i19untilTomorrow.txt +1 -0
  3000. package/packages/i18n/lib/pt_br/i19upTo.txt +1 -0
  3001. package/packages/i18n/lib/pt_br/i19update.txt +1 -0
  3002. package/packages/i18n/lib/pt_br/i19updatedAt.txt +1 -0
  3003. package/packages/i18n/lib/pt_br/i19upload.txt +1 -0
  3004. package/packages/i18n/lib/pt_br/i19uploadLogo.txt +1 -0
  3005. package/packages/i18n/lib/pt_br/i19uploadTable.txt +1 -0
  3006. package/packages/i18n/lib/pt_br/i19uponRequest.txt +1 -0
  3007. package/packages/i18n/lib/pt_br/i19url.txt +1 -0
  3008. package/packages/i18n/lib/pt_br/i19use$1LoyaltyPoints.txt +1 -0
  3009. package/packages/i18n/lib/pt_br/i19usedPoints.txt +1 -0
  3010. package/packages/i18n/lib/pt_br/i19user.txt +1 -0
  3011. package/packages/i18n/lib/pt_br/i19userFound.txt +1 -0
  3012. package/packages/i18n/lib/pt_br/i19username.txt +1 -0
  3013. package/packages/i18n/lib/pt_br/i19usersFound.txt +1 -0
  3014. package/packages/i18n/lib/pt_br/i19utm.txt +1 -0
  3015. package/packages/i18n/lib/pt_br/i19utmCampaign.txt +1 -0
  3016. package/packages/i18n/lib/pt_br/i19utmContent.txt +1 -0
  3017. package/packages/i18n/lib/pt_br/i19utmMedium.txt +1 -0
  3018. package/packages/i18n/lib/pt_br/i19utmSource.txt +1 -0
  3019. package/packages/i18n/lib/pt_br/i19utmTerm.txt +1 -0
  3020. package/packages/i18n/lib/pt_br/i19valid.txt +1 -0
  3021. package/packages/i18n/lib/pt_br/i19validThru.txt +1 -0
  3022. package/packages/i18n/lib/pt_br/i19validate.txt +1 -0
  3023. package/packages/i18n/lib/pt_br/i19value.txt +1 -0
  3024. package/packages/i18n/lib/pt_br/i19variation.txt +1 -0
  3025. package/packages/i18n/lib/pt_br/i19variationId.txt +1 -0
  3026. package/packages/i18n/lib/pt_br/i19variationName.txt +1 -0
  3027. package/packages/i18n/lib/pt_br/i19variations.txt +1 -0
  3028. package/packages/i18n/lib/pt_br/i19verified.txt +1 -0
  3029. package/packages/i18n/lib/pt_br/i19version.txt +1 -0
  3030. package/packages/i18n/lib/pt_br/i19versionDate.txt +1 -0
  3031. package/packages/i18n/lib/pt_br/i19video.txt +1 -0
  3032. package/packages/i18n/lib/pt_br/i19videos.txt +1 -0
  3033. package/packages/i18n/lib/pt_br/i19visible.txt +1 -0
  3034. package/packages/i18n/lib/pt_br/i19visibleProducts.txt +1 -0
  3035. package/packages/i18n/lib/pt_br/i19visitor.txt +1 -0
  3036. package/packages/i18n/lib/pt_br/i19visitorCheckout.txt +1 -0
  3037. package/packages/i18n/lib/pt_br/i19warning.txt +1 -0
  3038. package/packages/i18n/lib/pt_br/i19warningToReinstallAppMsg.txt +1 -0
  3039. package/packages/i18n/lib/pt_br/i19wasAnErrorOnLogin.txt +1 -0
  3040. package/packages/i18n/lib/pt_br/i19weFrom.txt +1 -0
  3041. package/packages/i18n/lib/pt_br/i19weRecommendToYou.txt +1 -0
  3042. package/packages/i18n/lib/pt_br/i19weUseYourDataToMsg.txt +1 -0
  3043. package/packages/i18n/lib/pt_br/i19webhooks.txt +1 -0
  3044. package/packages/i18n/lib/pt_br/i19webhooksApiExternalApiMsg.txt +1 -0
  3045. package/packages/i18n/lib/pt_br/i19webhooksApiMsg.txt +1 -0
  3046. package/packages/i18n/lib/pt_br/i19webhooksApiStoreApiMsg.txt +1 -0
  3047. package/packages/i18n/lib/pt_br/i19webhooksMapBodyMsg.txt +1 -0
  3048. package/packages/i18n/lib/pt_br/i19webhooksMsg.txt +1 -0
  3049. package/packages/i18n/lib/pt_br/i19webhooksSendBodyMsg.txt +1 -0
  3050. package/packages/i18n/lib/pt_br/i19weekly.txt +1 -0
  3051. package/packages/i18n/lib/pt_br/i19weight.txt +1 -0
  3052. package/packages/i18n/lib/pt_br/i19welcome.txt +1 -0
  3053. package/packages/i18n/lib/pt_br/i19welcomeTextMsg.txt +1 -0
  3054. package/packages/i18n/lib/pt_br/i19widgets.txt +1 -0
  3055. package/packages/i18n/lib/pt_br/i19width.txt +1 -0
  3056. package/packages/i18n/lib/pt_br/i19willReceiveMsg.txt +1 -0
  3057. package/packages/i18n/lib/pt_br/i19with.txt +1 -0
  3058. package/packages/i18n/lib/pt_br/i19withoutInstallmentRates.txt +1 -0
  3059. package/packages/i18n/lib/pt_br/i19workingDays.txt +1 -0
  3060. package/packages/i18n/lib/pt_br/i19write.txt +1 -0
  3061. package/packages/i18n/lib/pt_br/i19writeReview.txt +1 -0
  3062. package/packages/i18n/lib/pt_br/i19year.txt +1 -0
  3063. package/packages/i18n/lib/pt_br/i19yearly.txt +1 -0
  3064. package/packages/i18n/lib/pt_br/i19years.txt +1 -0
  3065. package/packages/i18n/lib/pt_br/i19yes.txt +1 -0
  3066. package/packages/i18n/lib/pt_br/i19youEarn.txt +1 -0
  3067. package/packages/i18n/lib/pt_br/i19yourInstalledApps.txt +1 -0
  3068. package/packages/i18n/lib/pt_br/i19zipCode.txt +1 -0
  3069. package/packages/i18n/lib/pt_br/i19zipCodeRange.txt +1 -0
  3070. package/packages/i18n/lib/pt_br.d.ts +1161 -0
  3071. package/packages/i18n/lib/pt_br.js +1163 -0
  3072. package/packages/i18n/lib/pt_br.js.map +1 -0
  3073. package/packages/i18n/package.json +34 -0
  3074. package/packages/i18n/scripts/build-txt.mjs +27 -0
  3075. package/packages/i18n/src/all.ts +9 -0
  3076. package/packages/i18n/src/dirname.ts +3 -0
  3077. package/packages/i18n/src/en_us.ts +1185 -0
  3078. package/packages/i18n/src/pt_br.ts +1185 -0
  3079. package/packages/i18n/tsconfig.json +6 -0
  3080. package/packages/modules/CHANGELOG.md +1 -0
  3081. package/packages/modules/README.md +1 -0
  3082. package/packages/modules/firebase.js +1 -0
  3083. package/packages/modules/lib/firebase/ajv.js +34 -0
  3084. package/packages/modules/lib/firebase/ajv.js.map +1 -0
  3085. package/packages/modules/lib/firebase/call-app-module.js +249 -0
  3086. package/packages/modules/lib/firebase/call-app-module.js.map +1 -0
  3087. package/packages/modules/lib/firebase/checkout.js +160 -0
  3088. package/packages/modules/lib/firebase/checkout.js.map +1 -0
  3089. package/packages/modules/lib/firebase/functions-checkout/fix-items.js +262 -0
  3090. package/packages/modules/lib/firebase/functions-checkout/fix-items.js.map +1 -0
  3091. package/packages/modules/lib/firebase/functions-checkout/get-custumerId.js +39 -0
  3092. package/packages/modules/lib/firebase/functions-checkout/get-custumerId.js.map +1 -0
  3093. package/packages/modules/lib/firebase/functions-checkout/handle-order-transaction.js +125 -0
  3094. package/packages/modules/lib/firebase/functions-checkout/handle-order-transaction.js.map +1 -0
  3095. package/packages/modules/lib/firebase/functions-checkout/new-order.js +191 -0
  3096. package/packages/modules/lib/firebase/functions-checkout/new-order.js.map +1 -0
  3097. package/packages/modules/lib/firebase/functions-checkout/request-to-module.js +77 -0
  3098. package/packages/modules/lib/firebase/functions-checkout/request-to-module.js.map +1 -0
  3099. package/packages/modules/lib/firebase/functions-checkout/utils.js +238 -0
  3100. package/packages/modules/lib/firebase/functions-checkout/utils.js.map +1 -0
  3101. package/packages/modules/lib/firebase/handle-module.js +171 -0
  3102. package/packages/modules/lib/firebase/handle-module.js.map +1 -0
  3103. package/packages/modules/lib/firebase/proxy-apps.js +1 -0
  3104. package/packages/modules/lib/firebase/proxy-apps.js.map +1 -0
  3105. package/packages/modules/lib/firebase/serve-modules-api.js +64 -0
  3106. package/packages/modules/lib/firebase/serve-modules-api.js.map +1 -0
  3107. package/packages/modules/lib/firebase.js +25 -0
  3108. package/packages/modules/lib/firebase.js.map +1 -0
  3109. package/packages/modules/lib/index.js +27 -0
  3110. package/packages/modules/lib/index.js.map +1 -0
  3111. package/packages/modules/package.json +61 -0
  3112. package/packages/modules/schemas/@checkout.cjs +1026 -0
  3113. package/packages/modules/schemas/apply_discount.cjs +377 -0
  3114. package/packages/modules/schemas/calculate_shipping.cjs +666 -0
  3115. package/packages/modules/schemas/create_transaction.cjs +1028 -0
  3116. package/packages/modules/schemas/list_payments.cjs +858 -0
  3117. package/packages/modules/scripts/build-types.sh +33 -0
  3118. package/packages/modules/src/firebase/ajv.ts +39 -0
  3119. package/packages/modules/src/firebase/call-app-module.ts +262 -0
  3120. package/packages/modules/src/firebase/checkout.ts +212 -0
  3121. package/packages/modules/src/firebase/functions-checkout/fix-items.ts +287 -0
  3122. package/packages/modules/src/firebase/functions-checkout/get-custumerId.ts +39 -0
  3123. package/packages/modules/src/firebase/functions-checkout/handle-order-transaction.ts +185 -0
  3124. package/packages/modules/src/firebase/functions-checkout/new-order.ts +268 -0
  3125. package/packages/modules/src/firebase/functions-checkout/request-to-module.ts +87 -0
  3126. package/packages/modules/src/firebase/functions-checkout/utils.ts +313 -0
  3127. package/packages/modules/src/firebase/handle-module.ts +208 -0
  3128. package/packages/modules/src/firebase/proxy-apps.ts +0 -0
  3129. package/packages/modules/src/firebase/serve-modules-api.ts +70 -0
  3130. package/packages/modules/src/firebase.ts +30 -0
  3131. package/packages/modules/src/index.ts +26 -0
  3132. package/packages/modules/src/types/index.d.ts +64 -0
  3133. package/packages/modules/tests/modules.test.mjs +26 -0
  3134. package/packages/modules/tsconfig.json +3 -0
  3135. package/packages/passport/CHANGELOG.md +1 -0
  3136. package/packages/passport/README.md +1 -0
  3137. package/packages/passport/firebase.js +1 -0
  3138. package/packages/passport/lib/firebase/authenticate-customer.js +81 -0
  3139. package/packages/passport/lib/firebase/authenticate-customer.js.map +1 -0
  3140. package/packages/passport/lib/firebase/serve-passport-api.js +35 -0
  3141. package/packages/passport/lib/firebase/serve-passport-api.js.map +1 -0
  3142. package/packages/passport/lib/firebase.js +28 -0
  3143. package/packages/passport/lib/firebase.js.map +1 -0
  3144. package/packages/passport/lib/index.js +2 -0
  3145. package/packages/passport/lib/index.js.map +1 -0
  3146. package/packages/passport/package.json +36 -0
  3147. package/packages/passport/src/firebase/authenticate-customer.ts +94 -0
  3148. package/packages/passport/src/firebase/serve-passport-api.ts +37 -0
  3149. package/packages/passport/src/firebase.ts +30 -0
  3150. package/packages/passport/src/index.ts +4 -0
  3151. package/packages/passport/tsconfig.json +3 -0
  3152. package/packages/ssr/CHANGELOG.md +1 -0
  3153. package/packages/ssr/README.md +1 -0
  3154. package/packages/ssr/cloudflare/README.md +3 -0
  3155. package/packages/ssr/cloudflare/swr-worker.js +179 -0
  3156. package/packages/ssr/events.js +1 -0
  3157. package/packages/ssr/firebase.js +1 -0
  3158. package/packages/ssr/lib/firebase.js +15 -0
  3159. package/packages/ssr/lib/firebase.js.map +1 -0
  3160. package/packages/ssr/lib/index.js +4 -0
  3161. package/packages/ssr/lib/index.js.map +1 -0
  3162. package/packages/ssr/lib/lib/analytics/send-to-ga4.js +44 -0
  3163. package/packages/ssr/lib/lib/analytics/send-to-ga4.js.map +1 -0
  3164. package/packages/ssr/lib/lib/analytics/send-to-meta.js +44 -0
  3165. package/packages/ssr/lib/lib/analytics/send-to-meta.js.map +1 -0
  3166. package/packages/ssr/lib/lib/analytics/send-to-tiktok.js +44 -0
  3167. package/packages/ssr/lib/lib/analytics/send-to-tiktok.js.map +1 -0
  3168. package/packages/ssr/lib/lib/analytics-events.js +80 -0
  3169. package/packages/ssr/lib/lib/analytics-events.js.map +1 -0
  3170. package/packages/ssr/lib/lib/cron-ssr-save-views.js +57 -0
  3171. package/packages/ssr/lib/lib/cron-ssr-save-views.js.map +1 -0
  3172. package/packages/ssr/lib/lib/serve-storefront.js +295 -0
  3173. package/packages/ssr/lib/lib/serve-storefront.js.map +1 -0
  3174. package/packages/ssr/lib/ssr-events.js +18 -0
  3175. package/packages/ssr/lib/ssr-events.js.map +1 -0
  3176. package/packages/ssr/package.json +50 -0
  3177. package/packages/ssr/src/cloudflare/swr-worker.ts +202 -0
  3178. package/packages/ssr/src/cloudflare/tsconfig.json +9 -0
  3179. package/packages/ssr/src/firebase.ts +15 -0
  3180. package/packages/ssr/src/index.ts +3 -0
  3181. package/packages/ssr/src/lib/analytics/send-to-ga4.ts +56 -0
  3182. package/packages/ssr/src/lib/analytics/send-to-meta.ts +50 -0
  3183. package/packages/ssr/src/lib/analytics/send-to-tiktok.ts +49 -0
  3184. package/packages/ssr/src/lib/analytics-events.ts +94 -0
  3185. package/packages/ssr/src/lib/cron-ssr-save-views.ts +56 -0
  3186. package/packages/ssr/src/lib/serve-storefront.ts +322 -0
  3187. package/packages/ssr/src/ssr-events.ts +17 -0
  3188. package/packages/ssr/src/tests/benchmark.sh +50 -0
  3189. package/packages/ssr/tsconfig.json +4 -0
  3190. package/packages/storefront/.auto-imports.d.ts +66 -0
  3191. package/packages/storefront/.eslintrc.cjs +3 -0
  3192. package/packages/storefront/astro.config.mjs +270 -0
  3193. package/packages/storefront/client.d.ts +34 -0
  3194. package/packages/storefront/config/astro/context-directive.mjs +46 -0
  3195. package/packages/storefront/config/astro/index.d.ts +10 -0
  3196. package/packages/storefront/config/astro/mock-pwa-info.mjs +5 -0
  3197. package/packages/storefront/config/storefront.cms.js +82 -0
  3198. package/packages/storefront/config/storefront.config.mjs +78 -0
  3199. package/packages/storefront/config/storefront.tailwind.cjs +279 -0
  3200. package/packages/storefront/config/storefront.unocss.cjs +136 -0
  3201. package/packages/storefront/dist/client/_astro/AccountPage.Osc6ffV0.js +1 -0
  3202. package/packages/storefront/dist/client/_astro/CartSidebar.LrfpXG2B.js +1 -0
  3203. package/packages/storefront/dist/client/_astro/HeroSlider.Zf6kCaqD.js +1 -0
  3204. package/packages/storefront/dist/client/_astro/PitchBar.N4d9fV8H.js +1 -0
  3205. package/packages/storefront/dist/client/_astro/Prices.eQ9Vd255.js +1 -0
  3206. package/packages/storefront/dist/client/_astro/ProductDetails.Ln_jf57U.js +7 -0
  3207. package/packages/storefront/dist/client/_astro/ProductShelf.X389bv9S.js +1 -0
  3208. package/packages/storefront/dist/client/_astro/ProductShelf.vj6lVDCr.js +1 -0
  3209. package/packages/storefront/dist/client/_astro/QuantitySelector.qSJQlvTe.js +1 -0
  3210. package/packages/storefront/dist/client/_astro/SearchModal.BrVoDBvg.js +1 -0
  3211. package/packages/storefront/dist/client/_astro/SearchShowcase.KAz3nwco.js +1 -0
  3212. package/packages/storefront/dist/client/_astro/ShopHeader.mFKGzhIu.js +7 -0
  3213. package/packages/storefront/dist/client/_astro/_plugin-vue_export-helper._suIQ7WC.js +1 -0
  3214. package/packages/storefront/dist/client/_astro/_slug_.cfRx-rdA.css +1 -0
  3215. package/packages/storefront/dist/client/_astro/afetch.5c8VmT0-.js +1 -0
  3216. package/packages/storefront/dist/client/_astro/client.PdegUP6S.js +1 -0
  3217. package/packages/storefront/dist/client/_astro/customer-session.KkTHFOXl.js +7 -0
  3218. package/packages/storefront/dist/client/_astro/ecom-icon_12falx.png +0 -0
  3219. package/packages/storefront/dist/client/_astro/ecom-icon_15pqnO.png +0 -0
  3220. package/packages/storefront/dist/client/_astro/ecom-icon_t3guw.png +0 -0
  3221. package/packages/storefront/dist/client/_astro/ecom-utils.Ld2zf-Ve.js +1 -0
  3222. package/packages/storefront/dist/client/_astro/firebase-app.cPMfoOsn.js +16 -0
  3223. package/packages/storefront/dist/client/_astro/format-money.Axn0YFLJ.js +1 -0
  3224. package/packages/storefront/dist/client/_astro/grid-title.GntHOijE.js +1 -0
  3225. package/packages/storefront/dist/client/_astro/headphone_T2Jjc.avif +0 -0
  3226. package/packages/storefront/dist/client/_astro/headphone_Z1CG18r.webp +0 -0
  3227. package/packages/storefront/dist/client/_astro/hoisted.3ec9NcvP.js +1 -0
  3228. package/packages/storefront/dist/client/_astro/hoisted.UnTlypMd.js +1 -0
  3229. package/packages/storefront/dist/client/_astro/i18n.3-NUtxYq.js +1 -0
  3230. package/packages/storefront/dist/client/_astro/img-sizes.gxAI9JNh.js +1 -0
  3231. package/packages/storefront/dist/client/_astro/img.pozlYdd3.js +1 -0
  3232. package/packages/storefront/dist/client/_astro/index-dd468b12.D5s8VdAL.js +1471 -0
  3233. package/packages/storefront/dist/client/_astro/index.TkCbiY_p.js +1 -0
  3234. package/packages/storefront/dist/client/_astro/index.m6fK0JXC.js +1 -0
  3235. package/packages/storefront/dist/client/_astro/logo_1UBsBq.webp +0 -0
  3236. package/packages/storefront/dist/client/_astro/logo_Z1K5PE9.png +0 -0
  3237. package/packages/storefront/dist/client/_astro/logo_Z1KIIl1.avif +0 -0
  3238. package/packages/storefront/dist/client/_astro/modules-info.mmwB1qIJ.js +1 -0
  3239. package/packages/storefront/dist/client/_astro/name.49dZlpDx.js +1 -0
  3240. package/packages/storefront/dist/client/_astro/passion_LHbe9.webp +0 -0
  3241. package/packages/storefront/dist/client/_astro/passion_Z23MeUb.avif +0 -0
  3242. package/packages/storefront/dist/client/_astro/photoswipe-lightbox.esm.dZBqKD9u.js +4 -0
  3243. package/packages/storefront/dist/client/_astro/photoswipe.0V7m2jWu.js +1 -0
  3244. package/packages/storefront/dist/client/_astro/photoswipe.esm.Ylh9TGkz.js +4 -0
  3245. package/packages/storefront/dist/client/_astro/price.Easct8WC.js +1 -0
  3246. package/packages/storefront/dist/client/_astro/rect8589_1TtOHY.png +0 -0
  3247. package/packages/storefront/dist/client/_astro/rect8589_1f5opX.webp +0 -0
  3248. package/packages/storefront/dist/client/_astro/rect8589_IUskt.webp +0 -0
  3249. package/packages/storefront/dist/client/_astro/rect8589_Uxfdf.png +0 -0
  3250. package/packages/storefront/dist/client/_astro/rect8589_Z15uApA.png +0 -0
  3251. package/packages/storefront/dist/client/_astro/rect8589_Z1Ap1Im.avif +0 -0
  3252. package/packages/storefront/dist/client/_astro/rect8589_Z1JT1HB.webp +0 -0
  3253. package/packages/storefront/dist/client/_astro/rect8589_ZY9mtN.avif +0 -0
  3254. package/packages/storefront/dist/client/_astro/rect8589_tMFW0.avif +0 -0
  3255. package/packages/storefront/dist/client/_astro/rect859_1TgQXS.avif +0 -0
  3256. package/packages/storefront/dist/client/_astro/rect859_2Nm1z.avif +0 -0
  3257. package/packages/storefront/dist/client/_astro/rect859_DIqwR.png +0 -0
  3258. package/packages/storefront/dist/client/_astro/rect859_Z1IKDb2.png +0 -0
  3259. package/packages/storefront/dist/client/_astro/rect859_Z29FI4V.webp +0 -0
  3260. package/packages/storefront/dist/client/_astro/rect859_Z2kFHGk.avif +0 -0
  3261. package/packages/storefront/dist/client/_astro/rect859_ZkpPFI.webp +0 -0
  3262. package/packages/storefront/dist/client/_astro/rect859_jXzBi.png +0 -0
  3263. package/packages/storefront/dist/client/_astro/rect859_x1l16.webp +0 -0
  3264. package/packages/storefront/dist/client/_astro/rect89_1TSfW7.avif +0 -0
  3265. package/packages/storefront/dist/client/_astro/rect89_Z1re32x.webp +0 -0
  3266. package/packages/storefront/dist/client/_astro/sf-utils.yjuG8NjM.js +1 -0
  3267. package/packages/storefront/dist/client/_astro/shopping-cart.Ean2uW2R.js +1 -0
  3268. package/packages/storefront/dist/client/_astro/use-analytics.Y7amTmnr.js +1 -0
  3269. package/packages/storefront/dist/client/_astro/use-product-card.zB4z32bC.js +1 -0
  3270. package/packages/storefront/dist/client/_astro/use-text-value.f9pDzruv.js +4 -0
  3271. package/packages/storefront/dist/client/admin/.gitkeep +2 -0
  3272. package/packages/storefront/dist/client/app/account/index.html +56 -0
  3273. package/packages/storefront/dist/client/app/index.html +96 -0
  3274. package/packages/storefront/dist/client/assets/.gitkeep +2 -0
  3275. package/packages/storefront/dist/client/headset-gamer-corsair-hs40-raptor-ca-9011122-naap-vinho/index.html +107 -0
  3276. package/packages/storefront/dist/client/img/icon.png +0 -0
  3277. package/packages/storefront/dist/client/img/large-icon.png +0 -0
  3278. package/packages/storefront/dist/client/img/uploads/banner2.webp +0 -0
  3279. package/packages/storefront/dist/client/img/uploads/ecom-icon.png +0 -0
  3280. package/packages/storefront/dist/client/img/uploads/headphone.webp +0 -0
  3281. package/packages/storefront/dist/client/img/uploads/logo.png +0 -0
  3282. package/packages/storefront/dist/client/img/uploads/og-image.png +0 -0
  3283. package/packages/storefront/dist/client/img/uploads/passion.webp +0 -0
  3284. package/packages/storefront/dist/client/img/uploads/rect8589.png +0 -0
  3285. package/packages/storefront/dist/client/img/uploads/rect859.png +0 -0
  3286. package/packages/storefront/dist/client/img/uploads/rect89.webp +0 -0
  3287. package/packages/storefront/dist/client/index.html +120 -0
  3288. package/packages/storefront/dist/client/macbook-apple-pro-15.4-intel-core-i7-2.6ghz-ram-16gb-ssd-512gb-mr972ll/a-prata/index.html +107 -0
  3289. package/packages/storefront/dist/client/mouse-gamer-corsair-optico-harpoon-rgb-ch-9301011-na/index.html +107 -0
  3290. package/packages/storefront/dist/client/robots.txt +7 -0
  3291. package/packages/storefront/dist/client/teclado-gamer-fortrek-mecanico-k5-rgb-outemu-blue-preto/index.html +107 -0
  3292. package/packages/storefront/dist/client/~fallback/index.html +74 -0
  3293. package/packages/storefront/dist/server/_empty-middleware.mjs +3 -0
  3294. package/packages/storefront/dist/server/chunks/CartSidebar_gCUGFy65.mjs +203 -0
  3295. package/packages/storefront/dist/server/chunks/SearchModal_2uYZ9tHy.mjs +350 -0
  3296. package/packages/storefront/dist/server/chunks/_.._FnNLvTNv.mjs +6 -0
  3297. package/packages/storefront/dist/server/chunks/account_iZ2QmK5E.mjs +6 -0
  3298. package/packages/storefront/dist/server/chunks/astro/assets-service_TpUb271h.mjs +466 -0
  3299. package/packages/storefront/dist/server/chunks/astro_PpArQAsY.mjs +2042 -0
  3300. package/packages/storefront/dist/server/chunks/index_1q5IpD39.mjs +6 -0
  3301. package/packages/storefront/dist/server/chunks/index_JEU6B2DI.mjs +6 -0
  3302. package/packages/storefront/dist/server/chunks/node_wOa5hJmt.mjs +6 -0
  3303. package/packages/storefront/dist/server/chunks/pages/__cEcxuEWe.mjs +8006 -0
  3304. package/packages/storefront/dist/server/chunks/pages/account_WliDuQOB.mjs +29 -0
  3305. package/packages/storefront/dist/server/chunks/pages/index_2bQLkQf-.mjs +317 -0
  3306. package/packages/storefront/dist/server/chunks/pages/node_ZaY4t9qW.mjs +112 -0
  3307. package/packages/storefront/dist/server/chunks/pages/~fallback_TL5hPXF_.mjs +41 -0
  3308. package/packages/storefront/dist/server/chunks/photoswipe_IcWDJiwc.mjs +3 -0
  3309. package/packages/storefront/dist/server/chunks/~fallback_wxuqpDXG.mjs +6 -0
  3310. package/packages/storefront/dist/server/entry.mjs +2279 -0
  3311. package/packages/storefront/dist/server/manifest_YgAgEwvF.mjs +196 -0
  3312. package/packages/storefront/dist/server/renderers.mjs +671 -0
  3313. package/packages/storefront/example.env +2 -0
  3314. package/packages/storefront/package.json +48 -3
  3315. package/packages/storefront/scripts/build-prod.sh +39 -0
  3316. package/packages/storefront/scripts/prepare-monorepo.sh +10 -0
  3317. package/packages/storefront/server.d.ts +27 -0
  3318. package/packages/storefront/src/analytics/event-to-fbq.ts +85 -0
  3319. package/packages/storefront/src/analytics/event-to-ttq.ts +94 -0
  3320. package/packages/storefront/src/env.d.ts +11 -0
  3321. package/packages/storefront/src/helpers/afetch.ts +44 -0
  3322. package/packages/storefront/src/helpers/browser-env.ts +15 -0
  3323. package/packages/storefront/src/helpers/server-data.ts +29 -0
  3324. package/packages/storefront/src/helpers/sf-utils.ts +69 -0
  3325. package/packages/storefront/src/images/Picture.runtime.astro +53 -0
  3326. package/packages/storefront/src/images/get-built-image.ts +81 -0
  3327. package/packages/storefront/src/images/get-built-picture.ts +6 -0
  3328. package/packages/storefront/src/images/picture-base.ts +135 -0
  3329. package/packages/storefront/src/images/use-ssr-picture.ts +196 -0
  3330. package/packages/storefront/src/lib/$storefront.d.ts +35 -0
  3331. package/packages/storefront/src/lib/assets/base.css +126 -0
  3332. package/packages/storefront/src/lib/assets/components.css +28 -0
  3333. package/packages/storefront/src/lib/assets/forms.css +214 -0
  3334. package/packages/storefront/src/lib/assets/reset.css +371 -0
  3335. package/packages/storefront/src/lib/assets/tooltip.css +45 -0
  3336. package/packages/storefront/src/lib/components/AccountLink.vue +44 -0
  3337. package/packages/storefront/src/lib/components/BannerPictures.astro +60 -0
  3338. package/packages/storefront/src/lib/components/Carousel.vue +263 -0
  3339. package/packages/storefront/src/lib/components/CarouselControl.vue +39 -0
  3340. package/packages/storefront/src/lib/components/CheckoutLink.vue +54 -0
  3341. package/packages/storefront/src/lib/components/ContentClearfix.vue +17 -0
  3342. package/packages/storefront/src/lib/components/Drawer.vue +162 -0
  3343. package/packages/storefront/src/lib/components/PaymentMethodFlag.vue +36 -0
  3344. package/packages/storefront/src/lib/components/Picture.astro +96 -0
  3345. package/packages/storefront/src/lib/components/QuantitySelector.vue +107 -0
  3346. package/packages/storefront/src/lib/components/QuantitySelectorControl.vue +35 -0
  3347. package/packages/storefront/src/lib/components/SharedData.astro +12 -0
  3348. package/packages/storefront/src/lib/components/SocialNetworkIcon.vue +30 -0
  3349. package/packages/storefront/src/lib/components/SocialNetworkLink.vue +35 -0
  3350. package/packages/storefront/src/lib/components/ViewTransitions.astro +422 -0
  3351. package/packages/storefront/src/lib/components/globals/AImg.vue +53 -0
  3352. package/packages/storefront/src/lib/components/globals/ALink.vue +28 -0
  3353. package/packages/storefront/src/lib/components/globals/Fade.vue +147 -0
  3354. package/packages/storefront/src/lib/components/globals/Skeleton.vue +29 -0
  3355. package/packages/storefront/src/lib/composables/use-banner.ts +38 -0
  3356. package/packages/storefront/src/lib/composables/use-breadcrumbs.ts +84 -0
  3357. package/packages/storefront/src/lib/composables/use-cart-item.ts +52 -0
  3358. package/packages/storefront/src/lib/composables/use-login-form.ts +80 -0
  3359. package/packages/storefront/src/lib/composables/use-pagination.ts +101 -0
  3360. package/packages/storefront/src/lib/composables/use-pitch-bar.ts +48 -0
  3361. package/packages/storefront/src/lib/composables/use-prices.ts +189 -0
  3362. package/packages/storefront/src/lib/composables/use-product-card.ts +115 -0
  3363. package/packages/storefront/src/lib/composables/use-product-shelf.ts +103 -0
  3364. package/packages/storefront/src/lib/composables/use-search-filters.ts +271 -0
  3365. package/packages/storefront/src/lib/composables/use-search-modal.ts +81 -0
  3366. package/packages/storefront/src/lib/composables/use-search-showcase.ts +201 -0
  3367. package/packages/storefront/src/lib/composables/use-shared-data.ts +48 -0
  3368. package/packages/storefront/src/lib/composables/use-shop-header-submenu.ts +64 -0
  3369. package/packages/storefront/src/lib/composables/use-shop-header.ts +219 -0
  3370. package/packages/storefront/src/lib/composables/use-sku-selector.ts +146 -0
  3371. package/packages/storefront/src/lib/composables/use-sticky-header.ts +137 -0
  3372. package/packages/storefront/src/lib/content.d.ts +58 -0
  3373. package/packages/storefront/src/lib/layouts/Base.astro +26 -0
  3374. package/packages/storefront/src/lib/layouts/BaseBody.astro +31 -0
  3375. package/packages/storefront/src/lib/layouts/BaseHead.astro +209 -0
  3376. package/packages/storefront/src/lib/layouts/use-page-header.ts +71 -0
  3377. package/packages/storefront/src/lib/layouts/use-page-main.ts +249 -0
  3378. package/packages/storefront/src/lib/pages/_vue.ts +35 -0
  3379. package/packages/storefront/src/lib/scripts/firebase-app.ts +15 -0
  3380. package/packages/storefront/src/lib/scripts/firestore.ts +27 -0
  3381. package/packages/storefront/src/lib/scripts/modules-info-preset.ts +63 -0
  3382. package/packages/storefront/src/lib/scripts/push-analytics-events.ts +103 -0
  3383. package/packages/storefront/src/lib/scripts/session-utm.ts +37 -0
  3384. package/packages/storefront/src/lib/scripts/vbeta-app.ts +243 -0
  3385. package/packages/storefront/src/lib/sf-lib.ts +7 -0
  3386. package/packages/storefront/src/lib/ssr-context.ts +253 -0
  3387. package/packages/storefront/src/lib/state/customer-session.ts +167 -0
  3388. package/packages/storefront/src/lib/state/modules-info.ts +203 -0
  3389. package/packages/storefront/src/lib/state/search-engine.ts +178 -0
  3390. package/packages/storefront/src/lib/state/shopping-cart/add-cart-item.ts +67 -0
  3391. package/packages/storefront/src/lib/state/shopping-cart/parse-product.ts +41 -0
  3392. package/packages/storefront/src/lib/state/shopping-cart.ts +122 -0
  3393. package/packages/storefront/src/lib/state/use-analytics.ts +302 -0
  3394. package/packages/storefront/src/lib/state/use-cms-preview.ts +38 -0
  3395. package/packages/storefront/src/lib/state/use-storage.ts +31 -0
  3396. package/packages/storefront/src/vue-globals.d.ts +34 -0
  3397. package/packages/storefront/tailwind.config.cjs +3 -0
  3398. package/packages/storefront/tsconfig.json +16 -0
  3399. package/packages/storefront/uno.config.cjs +3 -0
  3400. package/packages/test-base/CHANGELOG.md +1 -0
  3401. package/packages/test-base/README.md +7 -0
  3402. package/packages/test-base/lib/endpoints.js +23 -0
  3403. package/packages/test-base/lib/endpoints.js.map +1 -0
  3404. package/packages/test-base/lib/index.js +4 -0
  3405. package/packages/test-base/lib/index.js.map +1 -0
  3406. package/packages/test-base/lib/playloads.js +14 -0
  3407. package/packages/test-base/lib/playloads.js.map +1 -0
  3408. package/packages/test-base/package.json +28 -0
  3409. package/packages/test-base/payloads/calculate-shipping.json +37 -0
  3410. package/packages/test-base/payloads/create-transaction.json +116 -0
  3411. package/packages/test-base/payloads/list-payments.json +125 -0
  3412. package/packages/test-base/src/endpoints.ts +37 -0
  3413. package/packages/test-base/src/index.ts +3 -0
  3414. package/packages/test-base/src/playloads.ts +24 -0
  3415. package/packages/test-base/tsconfig.json +3 -0
  3416. package/packages/types/CHANGELOG.md +1 -0
  3417. package/packages/types/README.md +1 -0
  3418. package/packages/types/index.ts +194 -0
  3419. package/packages/types/modules/@checkout:params.d.ts +928 -0
  3420. package/packages/types/modules/apply_discount:params.d.ts +158 -0
  3421. package/packages/types/modules/apply_discount:response.d.ts +103 -0
  3422. package/packages/types/modules/calculate_shipping:params.d.ts +275 -0
  3423. package/packages/types/modules/calculate_shipping:response.d.ts +402 -0
  3424. package/packages/types/modules/create_transaction:params.d.ts +519 -0
  3425. package/packages/types/modules/create_transaction:response.d.ts +276 -0
  3426. package/packages/types/modules/list_payments:params.d.ts +327 -0
  3427. package/packages/types/modules/list_payments:response.d.ts +266 -0
  3428. package/packages/types/package.json +21 -0
  3429. package/pnpm-workspace.yaml +5 -1
  3430. package/store.renovate.json +72 -0
  3431. package/tsconfig.json +108 -0
  3432. package/tsconfig.test.json +11 -0
  3433. package/turbo.json +12 -2
  3434. package/vite.config.ts +12 -0
  3435. package/.eslintrc.js +0 -66
  3436. package/packages/api/dist/index.js +0 -22
  3437. package/packages/api/dist/index.js.map +0 -1
  3438. package/packages/api/src/index.ts +0 -27
  3439. package/src/index.js +0 -3
@@ -0,0 +1 @@
1
+ import{_ as Y,w as te,b as le,v as he}from"./_plugin-vue_export-helper._suIQ7WC.js";import{u as ge}from"./index.m6fK0JXC.js";import{a as xe,i as _e}from"./sf-utils.yjuG8NjM.js";import{i as ye,a as Oe,b as re,c as Se,d as ke,e as Pe,f as we,g as Fe,h as Re,j as Le,k as Ce,P as Te}from"./ProductShelf.vj6lVDCr.js";import{S as Ee}from"./use-analytics.Y7amTmnr.js";import{a as F,c as g,d as N,a4 as $e,o as ae,w as j,t as ie,W as I,a8 as Me,a9 as Be,a3 as Ae,aa as A,n as z,K as je,L as se,M as O,N as P,Q as b,T,U as C,S as q,X as H,O as w,R as V,Y as De,Z as G,V as ne,P as D,$ as Ve}from"./ecom-utils.Ld2zf-Ve.js";import{u as ue,g as Ie}from"./index.TkCbiY_p.js";import{g as Ue}from"./grid-title.GntHOijE.js";import{f as W}from"./format-money.Axn0YFLJ.js";import{u as U,x as Ne,a as M,y as ze,w as Ke,h as We,o as E,c as qe,l as X,f as He,K as Qe,b as Ge,H as Z,T as Xe,t as oe,d as Ye,p as Ze,N as ce,e as Je,g as et,O as tt,i as L,D as at}from"./use-text-value.f9pDzruv.js";import"./customer-session.KkTHFOXl.js";import"./use-product-card.zB4z32bC.js";import"./img.pozlYdd3.js";import"./price.Easct8WC.js";import"./name.49dZlpDx.js";import"./i18n.3-NUtxYq.js";import"./shopping-cart.Ean2uW2R.js";import"./Prices.eQ9Vd255.js";import"./modules-info.mmwB1qIJ.js";import"./afetch.5c8VmT0-.js";function de(t={},s=null,o=[]){for(let[a,e]of Object.entries(t))fe(o,pe(s,a),e);return o}function pe(t,s){return t?t+"["+s+"]":s}function fe(t,s,o){if(Array.isArray(o))for(let[a,e]of o.entries())fe(t,pe(s,a.toString()),e);else o instanceof Date?t.push([s,o.toISOString()]):typeof o=="boolean"?t.push([s,o?"1":"0"]):typeof o=="string"?t.push([s,o]):typeof o=="number"?t.push([s,`${o}`]):o==null?t.push([s,""]):de(o,s,t)}function st(t,s,o){let a=F(o?.value),e=g(()=>t.value!==void 0);return[g(()=>e.value?t.value:a.value),function(l){return e.value||(a.value=l),s?.(l)}]}function nt(t,s){return t===s}var ot=(t=>(t[t.Open=0]="Open",t[t.Closed=1]="Closed",t))(ot||{}),lt=(t=>(t[t.Single=0]="Single",t[t.Multi=1]="Multi",t))(lt||{}),rt=(t=>(t[t.Pointer=0]="Pointer",t[t.Other=1]="Other",t))(rt||{});function it(t){requestAnimationFrame(()=>requestAnimationFrame(t))}let ve=Symbol("ListboxContext");function J(t){let s=Ae(ve,null);if(s===null){let o=new Error(`<${t} /> is missing a parent <Listbox /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(o,J),o}return s}let ut=N({name:"Listbox",emits:{"update:modelValue":t=>!0},props:{as:{type:[Object,String],default:"template"},disabled:{type:[Boolean],default:!1},by:{type:[String,Function],default:()=>nt},horizontal:{type:[Boolean],default:!1},modelValue:{type:[Object,String,Number,Boolean],default:void 0},defaultValue:{type:[Object,String,Number,Boolean],default:void 0},form:{type:String,optional:!0},name:{type:String,optional:!0},multiple:{type:[Boolean],default:!1}},inheritAttrs:!1,setup(t,{slots:s,attrs:o,emit:a}){let e=F(1),l=F(null),p=F(null),i=F(null),d=F([]),c=F(""),r=F(null),_=F(1);function S(m=n=>n){let n=r.value!==null?d.value[r.value]:null,u=tt(m(d.value.slice()),x=>E(x.dataRef.domRef)),v=n?u.indexOf(n):null;return v===-1&&(v=null),{options:u,activeOptionIndex:v}}let f=g(()=>t.multiple?1:0),[y,k]=st(g(()=>t.modelValue),m=>a("update:modelValue",m),g(()=>t.defaultValue)),$=g(()=>y.value===void 0?U(f.value,{1:[],0:void 0}):y.value),h={listboxState:e,value:$,mode:f,compare(m,n){if(typeof t.by=="string"){let u=t.by;return m?.[u]===n?.[u]}return t.by(m,n)},orientation:g(()=>t.horizontal?"horizontal":"vertical"),labelRef:l,buttonRef:p,optionsRef:i,disabled:g(()=>t.disabled),options:d,searchQuery:c,activeOptionIndex:r,activationTrigger:_,closeListbox(){t.disabled||e.value!==1&&(e.value=1,r.value=null)},openListbox(){t.disabled||e.value!==0&&(e.value=0)},goToOption(m,n,u){if(t.disabled||e.value===1)return;let v=S(),x=Ne(m===M.Specific?{focus:M.Specific,id:n}:{focus:m},{resolveItems:()=>v.options,resolveActiveIndex:()=>v.activeOptionIndex,resolveId:B=>B.id,resolveDisabled:B=>B.dataRef.disabled});c.value="",r.value=x,_.value=u??1,d.value=v.options},search(m){if(t.disabled||e.value===1)return;let n=c.value!==""?0:1;c.value+=m.toLowerCase();let u=(r.value!==null?d.value.slice(r.value+n).concat(d.value.slice(0,r.value+n)):d.value).find(x=>x.dataRef.textValue.startsWith(c.value)&&!x.dataRef.disabled),v=u?d.value.indexOf(u):-1;v===-1||v===r.value||(r.value=v,_.value=1)},clearSearch(){t.disabled||e.value!==1&&c.value!==""&&(c.value="")},registerOption(m,n){let u=S(v=>[...v,{id:m,dataRef:n}]);d.value=u.options,r.value=u.activeOptionIndex},unregisterOption(m){let n=S(u=>{let v=u.findIndex(x=>x.id===m);return v!==-1&&u.splice(v,1),u});d.value=n.options,r.value=n.activeOptionIndex,_.value=1},theirOnChange(m){t.disabled||k(m)},select(m){t.disabled||k(U(f.value,{0:()=>m,1:()=>{let n=A(h.value.value).slice(),u=A(m),v=n.findIndex(x=>h.compare(u,A(x)));return v===-1?n.push(u):n.splice(v,1),n}}))}};ze([p,i],(m,n)=>{var u;h.closeListbox(),Ke(n,We.Loose)||(m.preventDefault(),(u=E(p))==null||u.focus())},g(()=>e.value===0)),$e(ve,h),qe(g(()=>U(e.value,{0:X.Open,1:X.Closed})));let R=g(()=>{var m;return(m=E(p))==null?void 0:m.closest("form")});return ae(()=>{j([R],()=>{if(!R.value||t.defaultValue===void 0)return;function m(){h.theirOnChange(t.defaultValue)}return R.value.addEventListener("reset",m),()=>{var n;(n=R.value)==null||n.removeEventListener("reset",m)}},{immediate:!0})}),()=>{let{name:m,modelValue:n,disabled:u,form:v,...x}=t,B={open:e.value===0,disabled:u,value:$.value};return ie(I,[...m!=null&&$.value!=null?de({[m]:$.value}).map(([K,ee])=>ie(He,Qe({features:Ge.Hidden,key:K,as:"input",type:"hidden",hidden:!0,readOnly:!0,form:v,name:K,value:ee}))):[],Z({ourProps:{},theirProps:{...o,...Xe(x,["defaultValue","onUpdate:modelValue","horizontal","multiple","by"])},slot:B,slots:s,attrs:o,name:"Listbox"})])}}}),ct=N({name:"ListboxButton",props:{as:{type:[Object,String],default:"button"},id:{type:String,default:()=>`headlessui-listbox-button-${oe()}`}},setup(t,{attrs:s,slots:o,expose:a}){let e=J("ListboxButton");a({el:e.buttonRef,$el:e.buttonRef});function l(c){switch(c.key){case L.Space:case L.Enter:case L.ArrowDown:c.preventDefault(),e.openListbox(),z(()=>{var r;(r=E(e.optionsRef))==null||r.focus({preventScroll:!0}),e.value.value||e.goToOption(M.First)});break;case L.ArrowUp:c.preventDefault(),e.openListbox(),z(()=>{var r;(r=E(e.optionsRef))==null||r.focus({preventScroll:!0}),e.value.value||e.goToOption(M.Last)});break}}function p(c){switch(c.key){case L.Space:c.preventDefault();break}}function i(c){e.disabled.value||(e.listboxState.value===0?(e.closeListbox(),z(()=>{var r;return(r=E(e.buttonRef))==null?void 0:r.focus({preventScroll:!0})})):(c.preventDefault(),e.openListbox(),it(()=>{var r;return(r=E(e.optionsRef))==null?void 0:r.focus({preventScroll:!0})})))}let d=Ye(g(()=>({as:t.as,type:s.type})),e.buttonRef);return()=>{var c,r;let _={open:e.listboxState.value===0,disabled:e.disabled.value,value:e.value.value},{id:S,...f}=t,y={ref:e.buttonRef,id:S,type:d.value,"aria-haspopup":"listbox","aria-controls":(c=E(e.optionsRef))==null?void 0:c.id,"aria-expanded":e.listboxState.value===0,"aria-labelledby":e.labelRef.value?[(r=E(e.labelRef))==null?void 0:r.id,S].join(" "):void 0,disabled:e.disabled.value===!0?!0:void 0,onKeydown:l,onKeyup:p,onClick:i};return Z({ourProps:y,theirProps:f,slot:_,attrs:s,slots:o,name:"ListboxButton"})}}}),dt=N({name:"ListboxOptions",props:{as:{type:[Object,String],default:"ul"},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0},id:{type:String,default:()=>`headlessui-listbox-options-${oe()}`}},setup(t,{attrs:s,slots:o,expose:a}){let e=J("ListboxOptions"),l=F(null);a({el:e.optionsRef,$el:e.optionsRef});function p(c){switch(l.value&&clearTimeout(l.value),c.key){case L.Space:if(e.searchQuery.value!=="")return c.preventDefault(),c.stopPropagation(),e.search(c.key);case L.Enter:if(c.preventDefault(),c.stopPropagation(),e.activeOptionIndex.value!==null){let r=e.options.value[e.activeOptionIndex.value];e.select(r.dataRef.value)}e.mode.value===0&&(e.closeListbox(),z(()=>{var r;return(r=E(e.buttonRef))==null?void 0:r.focus({preventScroll:!0})}));break;case U(e.orientation.value,{vertical:L.ArrowDown,horizontal:L.ArrowRight}):return c.preventDefault(),c.stopPropagation(),e.goToOption(M.Next);case U(e.orientation.value,{vertical:L.ArrowUp,horizontal:L.ArrowLeft}):return c.preventDefault(),c.stopPropagation(),e.goToOption(M.Previous);case L.Home:case L.PageUp:return c.preventDefault(),c.stopPropagation(),e.goToOption(M.First);case L.End:case L.PageDown:return c.preventDefault(),c.stopPropagation(),e.goToOption(M.Last);case L.Escape:c.preventDefault(),c.stopPropagation(),e.closeListbox(),z(()=>{var r;return(r=E(e.buttonRef))==null?void 0:r.focus({preventScroll:!0})});break;case L.Tab:c.preventDefault(),c.stopPropagation();break;default:c.key.length===1&&(e.search(c.key),l.value=setTimeout(()=>e.clearSearch(),350));break}}let i=Ze(),d=g(()=>i!==null?(i.value&X.Open)===X.Open:e.listboxState.value===0);return()=>{var c,r,_,S;let f={open:e.listboxState.value===0},{id:y,...k}=t,$={"aria-activedescendant":e.activeOptionIndex.value===null||(c=e.options.value[e.activeOptionIndex.value])==null?void 0:c.id,"aria-multiselectable":e.mode.value===1?!0:void 0,"aria-labelledby":(S=(r=E(e.labelRef))==null?void 0:r.id)!=null?S:(_=E(e.buttonRef))==null?void 0:_.id,"aria-orientation":e.orientation.value,id:y,onKeydown:p,role:"listbox",tabIndex:0,ref:e.optionsRef};return Z({ourProps:$,theirProps:k,slot:f,attrs:s,slots:o,features:ce.RenderStrategy|ce.Static,visible:d.value,name:"ListboxOptions"})}}}),pt=N({name:"ListboxOption",props:{as:{type:[Object,String],default:"li"},value:{type:[Object,String,Number,Boolean]},disabled:{type:Boolean,default:!1},id:{type:String,default:()=>`headlessui-listbox.option-${oe()}`}},setup(t,{slots:s,attrs:o,expose:a}){let e=J("ListboxOption"),l=F(null);a({el:l,$el:l});let p=g(()=>e.activeOptionIndex.value!==null?e.options.value[e.activeOptionIndex.value].id===t.id:!1),i=g(()=>U(e.mode.value,{0:()=>e.compare(A(e.value.value),A(t.value)),1:()=>A(e.value.value).some(h=>e.compare(A(h),A(t.value)))})),d=g(()=>U(e.mode.value,{1:()=>{var h;let R=A(e.value.value);return((h=e.options.value.find(m=>R.some(n=>e.compare(A(n),A(m.dataRef.value)))))==null?void 0:h.id)===t.id},0:()=>i.value})),c=Je(l),r=g(()=>({disabled:t.disabled,value:t.value,get textValue(){return c()},domRef:l}));ae(()=>e.registerOption(t.id,r)),Me(()=>e.unregisterOption(t.id)),ae(()=>{j([e.listboxState,i],()=>{e.listboxState.value===0&&i.value&&U(e.mode.value,{1:()=>{d.value&&e.goToOption(M.Specific,t.id)},0:()=>{e.goToOption(M.Specific,t.id)}})},{immediate:!0})}),Be(()=>{e.listboxState.value===0&&p.value&&e.activationTrigger.value!==0&&z(()=>{var h,R;return(R=(h=E(l))==null?void 0:h.scrollIntoView)==null?void 0:R.call(h,{block:"nearest"})})});function _(h){if(t.disabled)return h.preventDefault();e.select(t.value),e.mode.value===0&&(e.closeListbox(),z(()=>{var R;return(R=E(e.buttonRef))==null?void 0:R.focus({preventScroll:!0})}))}function S(){if(t.disabled)return e.goToOption(M.Nothing);e.goToOption(M.Specific,t.id)}let f=et();function y(h){f.update(h)}function k(h){f.wasMoved(h)&&(t.disabled||p.value||e.goToOption(M.Specific,t.id,0))}function $(h){f.wasMoved(h)&&(t.disabled||p.value&&e.goToOption(M.Nothing))}return()=>{let{disabled:h}=t,R={active:p.value,selected:i.value,disabled:h},{id:m,value:n,disabled:u,...v}=t,x={id:m,ref:l,role:"option",tabIndex:h===!0?void 0:-1,"aria-disabled":h===!0?!0:void 0,"aria-selected":i.value,disabled:void 0,onClick:_,onFocus:S,onPointerenter:y,onMouseenter:y,onPointermove:k,onMousemove:k,onPointerleave:$,onMouseleave:$};return Z({ourProps:x,theirProps:v,slot:R,attrs:o,slots:s,name:"ListboxOption"})}}});const me=({searchEngine:t,fixedParams:s})=>{const o=g(()=>{const e={};return Object.keys(t.params).forEach(l=>{if(s?.[l])return;const p=t.params[l];if(p!==void 0){switch(l){case"sort":case"term":case"limit":case"offset":case"count":case"buckets":case"fields":return}e[l]=p}}),e}),a=g(()=>{const e=Object.keys(o.value),l=[];return e.forEach(p=>{const i=p.replace(/[^\w.]/g,"");if(i==="specs"&&Array.isArray(o.value[p])){o.value[p].forEach(d=>{const[c]=d.split(":"),r=`specs.${c}`;l.includes(r)||l.push(r)});return}l.includes(i)||l.push(i)}),l.length});return{activeFilters:o,filtersCount:a}},ft=t=>{const{searchEngine:s,fixedParams:o}=t,a=g(()=>s.meta),e=g(()=>s.meta.buckets),{activeFilters:l,filtersCount:p}=me(t);j(s.params,()=>{s.fetch()});let i=null;const d=()=>{Object.keys(s.params).forEach(n=>{o?.[n]||delete s.params[n]}),i=null},c=({min:n,max:u})=>`${n||null}/${u||null}`,r=g(()=>{const{params:n}=s;return{min:Number(n["price>"]),max:Number(n["price<"])}}),_=F([]),S=ue(()=>{_.value.splice(0),e.value?.prices?.forEach(n=>{n.min&&(n.min=Math.round(n.min*100)/100),n.max&&(n.max=Math.round(n.max*100)/100),_.value.push({range:n,key:c(n)})}),Number.isNaN(r.value.min)||_.value.find(({range:u})=>u.min===r.value.min&&u.max===r.value.max)||_.value.unshift({range:{...r.value,count:a.value.count||0,avg:null},key:c(r.value)})},50);S();const f=F(c(r.value));j(f,()=>{i="price";const n=_.value.find(({range:u})=>c(u)===f.value);if(n){const{min:u,max:v}=n.range;u?s.params["price>"]=u:delete s.params["price>"],v?s.params["price<"]=v:delete s.params["price<"];return}delete s.params["price>"],delete s.params["price<"]});const y=({min:n,max:u})=>n&&u?u===n?W(u):`${W(n)} ${re.toLowerCase()} ${W(u)}`:!n&&u?`${re} ${W(u)}`:`${Se} ${W(n||0)}`,k=F([]),$=ue(()=>{for(let u=0;u<k.value.length;u++){const{field:v}=k.value[u];v!==i&&(k.value.splice(u,1),u-=1)}const n=e.value;if(n&&([["brands",ye],["categories",Oe]].forEach(([u,v])=>{const x=`${u}.name`;n[x]&&i!==x&&k.value.push({title:v,options:n[x],field:x})}),n.specs)){const{grids:u}=globalThis.$storefront.data;Object.keys(n.specs).forEach(v=>{const[x,B]=v.split(":");if(B){const K=`specs.${x}`;if(i===K)return;const ee=Ue(x,u||[]);let Q=k.value.find(be=>be.field===K);Q||(Q={title:ee,options:{},field:K},k.value.push(Q)),Q.options[B]=n.specs[v]}})}},50);$();const h=(n,u)=>{const[,v]=n.split(".");return["specs,",`${v}:${u}`]},R=(n,u)=>{n.startsWith("specs.")&&([n,u]=h(n,u));const v=l.value[n];return!!(v===u||Array.isArray(v)&&v.includes(u))},m=(n,u)=>{i=n,console.log({_lastParamChanged:i}),n.startsWith("specs.")&&([n,u]=h(n,u));const v=!R(n,u);let x=s.params[n];if(Array.isArray(x)||(x=[],s.params[n]=x),v)x.push(u);else for(let B=0;B<x.length;B++)if(x[B]===u){x.splice(B,1);break}};return j(e,()=>{i!=="price"&&S(),$()}),{resultMeta:a,resultBuckets:e,activeFilters:l,filtersCount:p,clearFilters:d,getPriceRangeKey:c,priceRanges:_,priceRangeKey:f,getPriceRangeLabel:y,filterOptions:k,checkFilterOption:R,toggleFilterOption:m}},vt=t=>{let{term:s}=t;const a=t.canUseUrlParams!==!1?ge("history"):null;t.ssrError&&(console.error(new Error(`SSR search error: ${t.ssrError}`)),window.location.pathname.startsWith("/s/")&&(window.location.href=`/s?q=${encodeURIComponent(s||"")}`));const e=je(t.products||[]),l=new Ee({debounce:50});s===void 0&&(s=new URLSearchParams(window.location.search).get("q")||null),s!==void 0&&(l.term.value=s),Object.assign(l.params,t.fixedParams),a&&Object.keys(a).forEach(f=>{if(f==="sort"){l.params.sort=a.sort;return}if(f==="p"){const y=parseInt(String(a.p),10);y>=1&&(l.pageNumber.value=y);return}if(f.startsWith("f\\")){const y=f.substring(2);l.params[y]=a[f]}}),l.wasFetched.value||((t.products||t.resultMeta)&&l.setResult({result:t.products,meta:t.resultMeta}),t.products||l.fetch().catch(console.error)),l.isWithCount.value=!0,l.isWithBuckets.value=!0;const p=F({count:0,...t.resultMeta||l.meta});j(l.products,()=>{e.splice(0),l.products.forEach(f=>e.push(f)),p.value={count:0,...l.meta}});const i=g(()=>{const{count:f}=l.meta;return!f||e.length<2?1:Math.ceil(f/l.pageSize.value)});j(l.pageNumber,f=>{a&&(a.p=`${f}`),l.fetch()});const d=()=>{j(l.isFetching,f=>{const y=t.showcase?.value;!f&&y&&setTimeout(()=>{xe(y,_e?-25:0)},50)})};l.wasFetched.value?d():Ie(l.wasFetched,d);const{activeFilters:c,filtersCount:r}=me({searchEngine:l,fixedParams:t.fixedParams});a&&j(c,f=>{a&&Object.keys(a).forEach(y=>{y.startsWith("f\\")&&delete a[y]}),Object.keys(f).forEach(y=>{const k=f[y];if(typeof k=="string"||typeof k=="number"){a[`f\\${y}`]=`${k}`;return}Array.isArray(k)&&typeof k[0]=="string"&&(a[`f\\${y}`]=k)})});const _=[{value:null,label:ke},{value:"-sales",label:Pe},{value:"price",label:we},{value:"-price",label:Fe},{value:"-price_discount",label:Re},{value:"-created_at",label:Le},{value:"name",label:Ce}],S=F(null);return j(S,()=>{l.params.sort=S.value||void 0,l.fetch()}),a&&(typeof a.sort=="string"&&a.sort&&(S.value=a.sort),j(l.params,f=>{delete a.sort,f.sort&&(a.sort=String(f.sort))})),{searchEngine:l,fetching:l.fetching.value,isFetching:l.isFetching,products:e,resultMeta:p,totalPages:i,activeFilters:c,filtersCount:r,sortOptions:_,sortOption:S}},mt=t=>{const s=g(()=>t.totalPages?t.totalPages:t.totalItems&&t.pageSize?Math.ceil(t.totalItems/t.pageSize):1),o=g(()=>{const i=t.page||1;return i<1?1:i>s.value?s.value:i}),a=g(()=>t.maxPages||10),e=g(()=>{if(s.value<=a.value)return 1;const i=Math.floor(a.value/2),d=Math.ceil(a.value/2)-1;return o.value<=i?1:o.value+d>=s.value?s.value-a.value+1:o.value-i}),l=g(()=>{if(s.value<=a.value)return s.value;const i=Math.floor(a.value/2),d=Math.ceil(a.value/2)-1;return o.value<=i?a.value:o.value+d>=s.value?s.value:o.value+d}),p=g(()=>Array.from(Array(l.value+1-e.value).keys()).map(i=>e.value+i));return{totalPages:s,startPage:e,endPage:l,pages:p}},bt=N({__name:"Pagination",props:{totalItems:{},totalPages:{},page:{default:1},pageSize:{},maxPages:{default:7}},emits:["update:page"],setup(t,{expose:s,emit:o}){s();const a=t,e=o,{totalPages:l,pages:p}=mt(a),i={props:a,emit:e,totalPages:l,pages:p};return Object.defineProperty(i,"__isScriptSetup",{enumerable:!1,value:!0}),i}}),ht={class:"text-base-900 flex justify-center gap-1.5 text-center text-sm font-medium leading-9"},gt=b("i",{class:"i-arrow-right rotate-180"},null,-1),xt=b("span",{class:"ml-1.5 hidden md:inline"},w("Anterior"),-1),_t=b("span",{class:"mr-1.5 hidden md:inline"},w("Próximo"),-1),yt=b("i",{class:"i-arrow-right"},null,-1);function Ot(t,s,o,a,e,l){const p=se("ALink");return O(),P("ol",ht,[b("li",null,[T(p,{href:o.page>1?`?p=${o.page-1}`:null,onClick:s[0]||(s[0]=te(i=>o.page>1&&a.emit("update:page",o.page-1),["prevent"])),class:q(["mr-1 block min-w-9 rounded border px-3",o.page>1?"border-base-100 hover:bg-base-100":"border-transparent text-base-500"])},{default:C(()=>[gt,xt]),_:1},8,["href","class"])]),(O(!0),P(I,null,H(a.pages,i=>(O(),P("li",{key:i},[T(p,{href:i!==o.page?`?p=${i}`:null,onClick:te(d=>a.emit("update:page",i),["prevent"]),class:q(["block w-9 rounded border ring-black/10",i===o.page?"bg-base-50 border-base-100 ring text-base-700":"border-transparent hover:bg-base-100"])},{default:C(()=>[V(w(i),1)]),_:2},1032,["href","onClick","class"])]))),128)),b("li",null,[T(p,{href:o.page<a.totalPages?`?p=${o.page+1}`:null,onClick:s[1]||(s[1]=te(i=>o.page<a.totalPages&&a.emit("update:page",o.page+1),["prevent"])),class:q(["ml-1 block min-w-9 rounded border px-3",o.page<a.totalPages?"border-base-100 hover:bg-base-100":"border-transparent text-base-500"])},{default:C(()=>[_t,yt]),_:1},8,["href","class"])])])}const St=Y(bt,[["render",Ot]]),kt=N({__name:"Collapse",props:{title:{}},setup(t,{expose:s}){s();const o={};return Object.defineProperty(o,"__isScriptSetup",{enumerable:!1,value:!0}),o}}),Pt={class:"group my-4 md:my-5 [&_i]:open:-rotate-90"},wt={role:"button",class:"text-base-700 hover:text-base-800 [&>i]:hover:text-primary list-none text-2xl font-medium lowercase group-open:mb-3"},Ft=b("i",{class:"i-chevron-right mr-1 rotate-90"},null,-1);function Rt(t,s,o,a,e,l){return O(),P("details",Pt,[b("summary",wt,[Ft,b("span",null,w(o.title),1)]),De(t.$slots,"default")])}const Lt=Y(kt,[["render",Rt]]),Ct=N({__name:"SearchFilters",props:{searchEngine:{},fixedParams:{}},setup(t,{expose:s}){s();const o=t,{resultBuckets:a,activeFilters:e,filtersCount:l,clearFilters:p,priceRanges:i,priceRangeKey:d,getPriceRangeLabel:c,filterOptions:r,checkFilterOption:_,toggleFilterOption:S}=ft(o),f={props:o,resultBuckets:a,activeFilters:e,filtersCount:l,clearFilters:p,priceRanges:i,priceRangeKey:d,getPriceRangeLabel:c,filterOptions:r,checkFilterOption:_,toggleFilterOption:S,Collapse:Lt};return Object.defineProperty(f,"__isScriptSetup",{enumerable:!1,value:!0}),f}}),Tt={class:"bg-base-50/40 h-screen overflow-y-auto"},Et={class:"px-6 pb-3 pt-5 text-center"},$t=b("i",{class:"i-trash ml-0.5"},null,-1),Mt={key:1,class:"text-base-500 border border-transparent pb-1 text-base font-semibold"},Bt={key:0,class:"px-6 pb-3"},At={class:"space-y-1.5"},jt=["id","value"],Dt=["for"],Vt={class:"text-base-500 font-medium"},It={key:0,class:"flex items-center"},Ut=b("label",{for:"priceRange-null",class:"cursor-pointer px-3 text-sm"},w("Qualquer preço"),-1),Nt={class:"space-y-1.5"},zt=["id","value","checked","onChange"],Kt=["for"],Wt={class:"text-base-500 font-medium"};function qt(t,s,o,a,e,l){return O(),P("aside",Tt,[b("header",Et,[a.filtersCount?(O(),P("button",{key:0,class:"ui-btn-sm ui-btn-danger py-1",onClick:s[0]||(s[0]=(...p)=>a.clearFilters&&a.clearFilters(...p))},[V(w("Limpar filtros")+" "),$t])):(O(),P("p",Mt,w("Filtrar resultados")))]),a.resultBuckets?(O(),P("article",Bt,[a.priceRanges?(O(),G(a.Collapse,{key:0,title:"Preço",class:"[&>summary]:text-xl",open:""},{default:C(()=>[b("div",At,[(O(!0),P(I,null,H(a.priceRanges,({range:p,key:i})=>(O(),P("div",{key:`prices-${i}`,class:"flex items-center"},[ne(b("input",{type:"radio",id:`priceRange-${i}`,name:"priceRange",value:i,"onUpdate:modelValue":s[1]||(s[1]=d=>a.priceRangeKey=d)},null,8,jt),[[le,a.priceRangeKey]]),b("label",{for:`priceRange-${i}`,class:"cursor-pointer px-3 text-sm"},[V(w(a.getPriceRangeLabel(p))+" ",1),b("small",Vt," ("+w(p.count)+") ",1)],8,Dt)]))),128)),a.activeFilters["price<"]||a.activeFilters["price>"]?(O(),P("div",It,[ne(b("input",{type:"radio",id:"priceRange-null",name:"priceRange",value:null,"onUpdate:modelValue":s[2]||(s[2]=p=>a.priceRangeKey=p)},null,512),[[le,a.priceRangeKey]]),Ut])):D("",!0)])]),_:1})):D("",!0),(O(!0),P(I,null,H(a.filterOptions,({title:p,options:i,field:d})=>(O(),G(a.Collapse,{key:d,title:p,class:"[&>summary]:text-xl",open:!!a.activeFilters[d]},{default:C(()=>[b("div",Nt,[(O(!0),P(I,null,H(i,(c,r,_)=>(O(),P("div",{key:`${d}-${_}`,class:"flex items-center"},[b("input",{type:"checkbox",id:`${d}-${r}`,value:r,checked:a.checkFilterOption(d,r),onChange:S=>a.toggleFilterOption(d,r)},null,40,zt),b("label",{for:`${d}-${r}`,class:"cursor-pointer px-3 text-sm"},[V(w(r)+" ",1),b("small",Wt," ("+w(c)+") ",1)],8,Kt)]))),128))])]),_:2},1032,["title","open"]))),128))])):D("",!0)])}const Ht=Y(Ct,[["render",qt]]),Qt=N({__name:"SearchShowcase",props:{term:{},fixedParams:{},products:{},resultMeta:{},ssrError:{},canUseUrlParams:{type:Boolean,default:!0},showcase:{}},async setup(t,{expose:s}){s();const o=t,a=F(null),{searchEngine:e,fetching:l,isFetching:p,products:i,resultMeta:d,totalPages:c,filtersCount:r,sortOptions:_,sortOption:S}=vt({...o,showcase:a}),f=g(()=>e.wasFetched.value),y=g(()=>e.term.value),k=g(()=>f&&!!(d.value.count>4||r.value)),$=F(!1),h={props:o,showcase:a,searchEngine:e,fetching:l,isFetching:p,products:i,resultMeta:d,totalPages:c,filtersCount:r,sortOptions:_,sortOption:S,wasFetched:f,searchTerm:y,hasFiltersBar:k,isFiltersOpen:$,get Listbox(){return ut},get ListboxButton(){return ct},get ListboxOptions(){return dt},get ListboxOption(){return pt},Drawer:at,Pagination:St,ProductShelf:Te,SearchFilters:Ht};return Object.defineProperty(h,"__isScriptSetup",{enumerable:!1,value:!0}),h}}),Gt={class:"text-base-800 inline font-bold italic"},Xt={key:1,class:"ui-section relative min-h-[300px]"},Yt={ref:"showcase",class:"relative"},Zt={key:0,class:"ui-section-slim sticky-header:translate-y-16 lg:sticky-header:translate-y-14 to-base-100 sticky top-0 z-[12] flex items-center justify-between rounded-b bg-white/80 px-6 py-4 shadow-sm backdrop-blur-sm transition-transform"},Jt={class:"text-base-700 font-medium lowercase"},ea=b("span",{class:"hidden lg:inline"},w("Itens encontrados"),-1),ta=b("span",{class:"lg:hidden"},w("Produtos"),-1),aa={class:"flex items-center gap-4"},sa=b("span",{class:"hidden text-xl leading-none md:block"},[b("i",{class:"i-adjustments-horizontal text-base-600 m-0"})],-1),na=b("span",{class:"hidden md:inline"},w("Filtrar produtos"),-1),oa=b("span",{class:"md:hidden"},[b("i",{class:"i-adjustments-horizontal mr-1"}),V(" "+w("Filtrar"))],-1),la={key:0,class:"ui-badge-pill-sm outline-secondary/80 outline-3 absolute -right-1.5 -top-1 outline"},ra={class:"w-5"},ia={class:"i-check"},ua={key:0,class:"mt-3 lg:mt-4"},ca={key:0,class:"absolute left-0 top-0 z-[14] h-full w-full bg-white/40"};function da(t,s,o,a,e,l){const p=se("Skeleton"),i=se("Fade");return O(),P(I,null,[a.searchTerm?(O(),P("section",{key:0,class:q(["ui-section-slim text-base-700 px-6 text-center text-xl lowercase",a.hasFiltersBar?"relative z-[14] -mb-4":"mb-0"])},[V(w("Buscando por")+" "),b("h1",Gt,w(a.searchTerm),1)],2)):D("",!0),a.isFetching&&!a.products.length?(O(),P("div",Xt,[T(p,{class:"absolute top-0 w-full px-5","is-bold":"","is-large":""})])):D("",!0),b("article",Yt,[T(i,null,{default:C(()=>[a.hasFiltersBar?(O(),P("section",Zt,[b("strong",Jt,[a.resultMeta.count>1?(O(),P(I,{key:0},[V(w(a.resultMeta.count)+" ",1),ea,ta],64)):D("",!0)]),b("div",aa,[sa,b("button",{onClick:s[0]||(s[0]=d=>a.isFiltersOpen=!a.isFiltersOpen),class:"ui-btn-sm ui-btn-secondary relative"},[na,oa,a.filtersCount?(O(),P("span",la,w(a.filtersCount),1)):D("",!0)]),T(a.Listbox,{modelValue:a.sortOption,"onUpdate:modelValue":s[1]||(s[1]=d=>a.sortOption=d),as:"div",class:"text-base-800 relative text-sm"},{default:C(()=>[T(a.ListboxButton,{class:"ui-btn-sm ui-btn-secondary"},{default:C(()=>[V(w("Ordenar"))]),_:1}),T(i,null,{default:C(()=>[T(a.ListboxOptions,{class:"divide-base-100 absolute right-0 mt-2 divide-y rounded bg-white shadow ring-1 ring-black/5 focus:outline-none"},{default:C(()=>[(O(!0),P(I,null,H(a.sortOptions,({label:d,value:c})=>(O(),G(a.ListboxOption,{key:c||"sort",value:c,as:"template"},{default:C(({selected:r,active:_})=>[b("li",null,[(O(),G(Ve(r?"div":"button"),{class:q(["flex w-full py-2 pl-3 pr-6",!r&&_&&"bg-secondary-100 text-secondary"])},{default:C(()=>[b("div",ra,[ne(b("i",ia,null,512),[[he,r]])]),V(" "+w(d),1)]),_:2},1032,["class"]))])]),_:2},1032,["value"]))),128))]),_:1})]),_:1})]),_:1},8,["modelValue"])])])):D("",!0)]),_:1}),T(a.ProductShelf,{products:a.products,"is-grid":""},{append:C(()=>[T(i,{slide:"down"},{default:C(()=>[!a.isFetching&&a.totalPages>1?(O(),P("nav",ua,[T(a.Pagination,{page:a.searchEngine.pageNumber.value,"onUpdate:page":s[2]||(s[2]=d=>a.searchEngine.pageNumber.value=d),"total-pages":a.totalPages},null,8,["page","total-pages"])])):D("",!0)]),_:1})]),_:1},8,["products"]),T(i,null,{default:C(()=>[a.isFetching?(O(),P("div",ca)):D("",!0)]),_:1})],512),T(a.Drawer,{modelValue:a.isFiltersOpen,"onUpdate:modelValue":s[3]||(s[3]=d=>a.isFiltersOpen=d),placement:"end","backdrop-target":null,"can-lock-scroll":!1,class:"!z-[80] bg-white shadow [&_[data-drawer-close]]:bg-white/80"},{default:C(()=>[T(a.SearchFilters,{"search-engine":a.searchEngine},null,8,["search-engine"])]),_:1},8,["modelValue"])],64)}const Ea=Y(Qt,[["render",da]]);export{Ea as default};
@@ -0,0 +1,7 @@
1
+ import{e as Ee,a as Le,d as Re,l as Ae,_ as ke}from"./customer-session.KkTHFOXl.js";import{_ as G,w as he,v as Xe,a as Je}from"./_plugin-vue_export-helper._suIQ7WC.js";import{b as ce,d as et,g as tt,e as be}from"./sf-utils.yjuG8NjM.js";import{t as nt}from"./shopping-cart.Ean2uW2R.js";import{a as at,o as ot}from"./index.m6fK0JXC.js";import{j as rt,h as lt,p as st,u as it,g as we}from"./index.TkCbiY_p.js";import{a as S,c as I,w as ne,o as re,d as D,M as b,N as C,Y as oe,Z as F,S as A,$ as ut,L as Y,U as T,T as E,Q as d,P as H,O as R,W as V,X as W,R as Q,a9 as le,a3 as se,a4 as ve,t as z,a8 as _e,n as ae,a2 as Ne,a1 as $e,a6 as Pe,a0 as Me,a7 as ct,ad as dt,V as Te,ac as Ie,ae as Oe}from"./ecom-utils.Ld2zf-Ve.js";import{m as ie,j as pt,k as ft,b as de,f as pe,o as v,y as Fe,w as De,h as Be,c as He,u as ee,l as X,H as te,t as Z,d as Ue,p as Ve,N as fe,e as vt,g as mt,x as gt,a as U,i as L,v as ht,n as j,_ as je,O as bt,E as ye,P as J,q as ge,D as _t}from"./use-text-value.f9pDzruv.js";import"./price.Easct8WC.js";const yt=n=>{const{header:a,canSetStyles:r,canCreateHeightDiv:e,isShownOnScrollDown:t,isShownOnMobile:o}={canSetStyles:!0,canCreateHeightDiv:!0,...n},{ready:l,start:u}=rt(100,{controls:!0,immediate:!1}),s=S(0),c=S(0);let i;const x=o||!ce&&!et,{y:_}=x?at(document):{y:S(0)},m=S(0);lt(_,h=>{m.value=h},{debounce:ce?100:50,maxWait:ce?800:400});const k=I(()=>l.value&&m.value>c.value*1.2),p=S("none");ne(k,async h=>{r&&a.value&&(a.value.style.position=h?"fixed":"",a.value.style.width=h?"100vw":""),i&&(i.style.height=h?`${s.value}px`:""),h?(await st(300),p.value="opacity var(--transition-slow), transform var(--transition)"):(u(),p.value="none")});const y=S(!1);return ne(m,(h,P)=>{y.value=h>0&&h<P}),re(()=>{if(!a.value)throw new Error("<header> (props.header) not set");const h=()=>{const M=a.value;s.value=M.offsetHeight,c.value=s.value+window.scrollY+M.getBoundingClientRect().top,u()},P=a.value.getElementsByTagName("IMG");let g=!0;for(let M=0;M<P.length;M++){const f=P[M];(!f.complete||f.naturalHeight===0)&&(g=!1,f.onload=h)}g&&h(),window.addEventListener("resize",it(h,300)),r&&(a.value.style.willChange="transform",ne([k,y],([M,f])=>{let w="",O="";M&&(!f||t)&&(w="0",O="translateY(-100%)");const N=a.value;N.style.opacity=w,N.style.transform=O;const q=M&&!w?"add":"remove";document.body.classList[q]("StickyHeader")}),ne(p,M=>{a.value.style.transition=M})),e&&(i=document.createElement("div"),a.value.parentElement?.insertBefore(i,a.value))}),{staticHeight:s,staticY:c,isSticky:k,isScrollUp:y,transition:p}},St=(n,a)=>{const r=n.filter(({name:e,slug:t,parent:o})=>e&&t&&!o);return a?.length&&r.sort((e,t)=>{const o=a.indexOf(e.slug),l=a.indexOf(t.slug);return o>-1?l===-1||o<l?-1:1:l>-1?1:0}),r},xt=(n,a,r=!1)=>{const e=n.filter(({name:t,slug:o,parent:l})=>t&&o&&l?l._id&&l._id===a._id||l.slug&&l.slug===a.slug:!1);return r&&e.sort((t,o)=>t.name<o.name?-1:1),e},kt=n=>{const{header:a,searchInput:r,categories:e=globalThis.$storefront.data.categories||[],menuCategorySlugs:t,menuRandomCategories:o=7,isAlphabeticalSortSubmenu:l}=n,{isSticky:u,staticHeight:s,staticY:c}=yt({header:a}),i=I(()=>u.value?a.value?.offsetHeight:c.value),x=St(e,t),_=$=>xt(e,$,!!l),m=$=>({...$,subcategories:_($).map(B=>m(B))}),k=x.map(m);let p=0;const y=k.filter(({slug:$})=>t?.includes($)?!0:p<o?(p+=1,!0):!1),h=S(!1),P=S(!1);we(h,()=>{P.value=!0});const g=S(""),M=/^\/s\/?/.test(window.location.pathname);let f;if(M){const{pathname:$,search:B}=window.location;f=new URLSearchParams(B).get("q"),!f&&$.startsWith("/s/")&&(f=decodeURIComponent($.split("/")[2]))}typeof f=="string"&&(g.value=f);const w=I(()=>g.value&&g.value.length>=2&&g.value!==f?g.value:""),O=$=>{if($.preventDefault(),h.value&&g.value){window.location.href=tt(g.value);return}h.value=!h.value,h.value&&r&&setTimeout(()=>{if(!r.value)return;const{length:B}=g.value;r.value.setSelectionRange(B,B),r.value.focus()},50)},N=S(!1),q=S(!1);we(N,()=>{q.value=!0});const ue=S(0);return{isSticky:u,staticHeight:s,staticY:c,positionY:i,mainCategories:x,getSubcategories:_,getCategoryTree:m,categoryTrees:k,inlineMenuTrees:y,isSearchOpen:h,isSearchOpenOnce:P,searchTerm:g,quickSearchTerm:w,toggleSearch:O,isCartOpen:N,isCartOpenOnce:q,cartTotalItems:ue,handleOnMounted:()=>{ne(nt,($,B)=>{typeof B=="number"&&(B<$?N.value=!0:B&&!$&&(N.value=!1)),ue.value=$},{immediate:!0})}}},wt=D({__name:"AccountLink",props:{to:{},accountUrl:{default:globalThis.$storefront?.settings.accountUrl||"/app/account"},returnUrl:{default:globalThis.location?.href},isSignUp:{type:Boolean}},setup(n,{expose:a}){a();const r=n,e=I(()=>{let o=r.accountUrl;if(!r.to)return r.isSignUp?o+="?sign_up&":o+="?",r.returnUrl?`${o}return_url=${r.returnUrl}`:o;const{settings:l}=globalThis.$storefront;return r.to==="orders"&&l.ordersUrl?l.ordersUrl:r.to==="favorites"&&l.favoritesUrl?l.favoritesUrl:`${o}/${r.to}`}),t={props:r,href:e};return Object.defineProperty(t,"__isScriptSetup",{enumerable:!1,value:!0}),t}}),Pt=["href"];function Mt(n,a,r,e,t,o){return b(),C("a",{href:e.href},[oe(n.$slots,"default")],8,Pt)}const qe=G(wt,[["render",Mt]]),Tt=D({__name:"SocialNetworkIcon",props:{as:{default:"i"},network:{}},setup(n,{expose:a}){a();const r=n,e=I(()=>{switch(r.network){case"facebook":return"i-facebook";case"instagram":return"i-instagram";case"whatsapp":return"i-whatsapp";case"youtube":return"i-youtube";case"pinterest":return"i-pinterest";case"tiktok":return"i-tiktok";case"twitter":return"i-twitter";case"threads":return"i-threads";default:return""}}),t={props:r,iconClassName:e};return Object.defineProperty(t,"__isScriptSetup",{enumerable:!1,value:!0}),t}});function It(n,a,r,e,t,o){return b(),F(ut(r.as),{class:A(e.iconClassName)},null,8,["class"])}const Ot=G(Tt,[["render",It]]),Ct=D({__name:"SocialNetworkLink",props:{network:{},href:{},message:{}},setup(n,{expose:a}){a();const r=n,e=I(()=>{let o=r.href||be[r.network]||"";if(r.network==="whatsapp"){const l=o.replace(/[^+\d]/g,"");o=`https://${ce?"api":"web"}.whatsapp.com/send?phone=`+encodeURIComponent(l.charAt(0)==="+"?l:`+55${l}`),r.message&&(o+=`&text=${encodeURIComponent(r.message)}`)}return o}),t={props:r,fixedHref:e,SocialNetworkIcon:Ot};return Object.defineProperty(t,"__isScriptSetup",{enumerable:!1,value:!0}),t}});function Et(n,a,r,e,t,o){const l=Y("ALink");return b(),F(l,{href:e.fixedHref},{default:T(()=>[oe(n.$slots,"default",{},()=>[E(e.SocialNetworkIcon,{network:r.network},null,8,["network"]),oe(n.$slots,"append")])]),_:3},8,["href"])}const Ke=G(Ct,[["render",Et]]),Lt=D({__name:"ShopSidenavCategory",props:{categoryTree:{}},setup(n,{expose:a}){a();const r=S(!1),e=S(!0);ne(r,o=>{o?setTimeout(()=>{e.value=!1},25):e.value=!0});const t={isOpen:r,isFaded:e};return Object.defineProperty(t,"__isScriptSetup",{enumerable:!1,value:!0}),t}}),Rt={class:"text-base-800 text-lg"},At=["href"],Nt=["href"],$t={class:"inline"};function Ft(n,a,r,e,t,o){const l=Y("AImg"),u=Y("ShopSidenavCategory",!0);return b(),C("li",Rt,[r.categoryTree.subcategories.length?(b(),C("details",{key:0,class:"z-10 overflow-y-auto overflow-x-hidden bg-white open:absolute open:left-0 open:top-0 open:h-full open:w-full",onToggle:a[0]||(a[0]=s=>e.isOpen=!e.isOpen)},[d("summary",{class:A(["active:bg-base-100 cursor-pointer list-none px-6 py-3 transition-colors",e.isOpen?"bg-base-100":null])},[d("i",{class:A(e.isOpen?"i-arrow-right rotate-180 text-lg":"i-arrow-right float-right mb-0 mt-1 text-xl text-base-500")},null,2),!e.isOpen&&r.categoryTree.icon?(b(),F(l,{key:0,picture:r.categoryTree.icon,alt:r.categoryTree.name,class:"mr-3 inline h-5 w-auto"},null,8,["picture","alt"])):H("",!0),d("h3",{class:A(["inline",e.isOpen?"ml-4 text-base":null])},R(r.categoryTree.name),3)],2),d("ul",{class:A(["mt-2 transition-opacity",e.isFaded?"opacity-20":"opacity-100"]),tabindex:"-1"},[(b(!0),C(V,null,W(r.categoryTree.subcategories,(s,c)=>(b(),F(u,{key:c,"category-tree":s},null,8,["category-tree"]))),128)),d("li",null,[d("a",{href:`/${r.categoryTree.slug}`,class:"active:bg-base-200 block px-6 py-3 text-base underline"},R("Ver toda a categoria $1".replace("$1",r.categoryTree.name)),9,At)])],2)],32)):(b(),C("a",{key:1,href:`/${r.categoryTree.slug}`,class:"active:bg-base-200 block px-6 py-3"},[!e.isOpen&&r.categoryTree.icon?(b(),F(l,{key:0,picture:r.categoryTree.icon,alt:r.categoryTree.name,class:"mr-3 inline h-5 w-auto"},null,8,["picture","alt"])):H("",!0),d("h3",$t,R(r.categoryTree.name),1)],8,Nt))])}const Dt=G(Lt,[["render",Ft]]),Bt=D({__name:"ShopSidenav",props:{categoryTrees:{}},setup(n,{expose:a}){a(),re(()=>Ee());const r={get customerName(){return Le},get isLogged(){return Re},get logout(){return Ae},get socialNetworks(){return be},AccountLink:qe,SocialNetworkLink:Ke,ShopSidenavCategory:Dt};return Object.defineProperty(r,"__isScriptSetup",{enumerable:!1,value:!0}),r}}),Ht={class:"flex h-full flex-col bg-white"},Ut={class:"grow py-4"},Vt={class:"relative h-full"},jt={class:"text-base"},qt={class:"bg-base-100 flex items-center px-2 py-4"},Kt=d("i",{class:"i-user-circle text-base-500 m-0 text-4xl"},null,-1),Wt={class:"leading-tight"},zt=d("small",{class:"text-primary block font-semibold lowercase"},R("Meus pedidos")+", "+R("Minha conta"),-1),Yt=d("span",{class:"text-base-600"},R("Sair"),-1),Gt=d("i",{class:"i-arrow-right-on-rectangle ml-1 text-lg"},null,-1),Qt=[Yt,Gt],Zt={class:"bg-base-200 text-base-700 flex gap-3 p-4 text-xl"};function Xt(n,a,r,e,t,o){return b(),C("aside",Ht,[d("nav",Ut,[d("ul",Vt,[(b(!0),C(V,null,W(r.categoryTrees,(l,u)=>(b(),F(e.ShopSidenavCategory,{key:u,"category-tree":l},null,8,["category-tree"]))),128))])]),d("footer",jt,[d("div",qt,[E(e.AccountLink,{class:"flex grow items-center gap-3 p-2"},{default:T(()=>[Kt,d("span",Wt,[Q(R(`Olá ${e.customerName||"Visitante"}`)+" ",1),zt])]),_:1}),e.isLogged?(b(),C("button",{key:0,onClick:a[0]||(a[0]=(...l)=>e.logout&&e.logout(...l)),class:"text-base-800 p-2 text-right"},Qt)):H("",!0)]),d("ul",Zt,[(b(!0),C(V,null,W(e.socialNetworks,(l,u)=>(b(),C("li",{key:u},[E(e.SocialNetworkLink,{network:u,class:"active:text-primary p-1"},null,8,["network"])]))),128))])])])}const Jt=G(Bt,[["render",Xt]]);function en({container:n,accept:a,walk:r,enabled:e}){le(()=>{let t=n.value;if(!t||e!==void 0&&!e.value)return;let o=ie(n);if(!o)return;let l=Object.assign(s=>a(s),{acceptNode:a}),u=o.createTreeWalker(t,NodeFilter.SHOW_ELEMENT,l,!1);for(;u.nextNode();)r(u.currentNode)})}var K=(n=>(n[n.Forwards=0]="Forwards",n[n.Backwards=1]="Backwards",n))(K||{});function We(){let n=S(0);return pt("keydown",a=>{a.key==="Tab"&&(n.value=a.shiftKey?1:0)}),n}function tn(n,a,r,e){ft.isServer||le(t=>{n=n??window,n.addEventListener(a,r,e),t(()=>n.removeEventListener(a,r,e))})}let Ce=Symbol("PortalParentContext");function nn(){let n=se(Ce,null),a=S([]);function r(o){return a.value.push(o),n&&n.register(o),()=>e(o)}function e(o){let l=a.value.indexOf(o);l!==-1&&a.value.splice(l,1),n&&n.unregister(o)}let t={register:r,unregister:e,portals:a};return[a,D({name:"PortalWrapper",setup(o,{slots:l}){return ve(Ce,t),()=>{var u;return(u=l.default)==null?void 0:u.call(l)}}})]}function an({defaultContainers:n=[],portals:a,mainTreeNodeRef:r}={}){let e=S(null),t=ie(e);function o(){var l;let u=[];for(let s of n)s!==null&&(s instanceof HTMLElement?u.push(s):"value"in s&&s.value instanceof HTMLElement&&u.push(s.value));if(a!=null&&a.value)for(let s of a.value)u.push(s);for(let s of(l=t?.querySelectorAll("html > *, body > *"))!=null?l:[])s!==document.body&&s!==document.head&&s instanceof HTMLElement&&s.id!=="headlessui-portal-root"&&(s.contains(v(e))||u.some(c=>s.contains(c))||u.push(s));return u}return{resolveContainers:o,contains(l){return o().some(u=>u.contains(l))},mainTreeNodeRef:e,MainTreeNode(){return r!=null?null:z(pe,{features:de.Hidden,ref:e})}}}var on=(n=>(n[n.Open=0]="Open",n[n.Closed=1]="Closed",n))(on||{}),rn=(n=>(n[n.Pointer=0]="Pointer",n[n.Other=1]="Other",n))(rn||{});function ln(n){requestAnimationFrame(()=>requestAnimationFrame(n))}let ze=Symbol("MenuContext");function me(n){let a=se(ze,null);if(a===null){let r=new Error(`<${n} /> is missing a parent <Menu /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(r,me),r}return a}let sn=D({name:"Menu",props:{as:{type:[Object,String],default:"template"}},setup(n,{slots:a,attrs:r}){let e=S(1),t=S(null),o=S(null),l=S([]),u=S(""),s=S(null),c=S(1);function i(_=m=>m){let m=s.value!==null?l.value[s.value]:null,k=bt(_(l.value.slice()),y=>v(y.dataRef.domRef)),p=m?k.indexOf(m):null;return p===-1&&(p=null),{items:k,activeItemIndex:p}}let x={menuState:e,buttonRef:t,itemsRef:o,items:l,searchQuery:u,activeItemIndex:s,activationTrigger:c,closeMenu:()=>{e.value=1,s.value=null},openMenu:()=>e.value=0,goToItem(_,m,k){let p=i(),y=gt(_===U.Specific?{focus:U.Specific,id:m}:{focus:_},{resolveItems:()=>p.items,resolveActiveIndex:()=>p.activeItemIndex,resolveId:h=>h.id,resolveDisabled:h=>h.dataRef.disabled});u.value="",s.value=y,c.value=k??1,l.value=p.items},search(_){let m=u.value!==""?0:1;u.value+=_.toLowerCase();let k=(s.value!==null?l.value.slice(s.value+m).concat(l.value.slice(0,s.value+m)):l.value).find(y=>y.dataRef.textValue.startsWith(u.value)&&!y.dataRef.disabled),p=k?l.value.indexOf(k):-1;p===-1||p===s.value||(s.value=p,c.value=1)},clearSearch(){u.value=""},registerItem(_,m){let k=i(p=>[...p,{id:_,dataRef:m}]);l.value=k.items,s.value=k.activeItemIndex,c.value=1},unregisterItem(_){let m=i(k=>{let p=k.findIndex(y=>y.id===_);return p!==-1&&k.splice(p,1),k});l.value=m.items,s.value=m.activeItemIndex,c.value=1}};return Fe([t,o],(_,m)=>{var k;x.closeMenu(),De(m,Be.Loose)||(_.preventDefault(),(k=v(t))==null||k.focus())},I(()=>e.value===0)),ve(ze,x),He(I(()=>ee(e.value,{0:X.Open,1:X.Closed}))),()=>{let _={open:e.value===0,close:x.closeMenu};return te({ourProps:{},theirProps:n,slot:_,slots:a,attrs:r,name:"Menu"})}}}),un=D({name:"MenuButton",props:{disabled:{type:Boolean,default:!1},as:{type:[Object,String],default:"button"},id:{type:String,default:()=>`headlessui-menu-button-${Z()}`}},setup(n,{attrs:a,slots:r,expose:e}){let t=me("MenuButton");e({el:t.buttonRef,$el:t.buttonRef});function o(c){switch(c.key){case L.Space:case L.Enter:case L.ArrowDown:c.preventDefault(),c.stopPropagation(),t.openMenu(),ae(()=>{var i;(i=v(t.itemsRef))==null||i.focus({preventScroll:!0}),t.goToItem(U.First)});break;case L.ArrowUp:c.preventDefault(),c.stopPropagation(),t.openMenu(),ae(()=>{var i;(i=v(t.itemsRef))==null||i.focus({preventScroll:!0}),t.goToItem(U.Last)});break}}function l(c){switch(c.key){case L.Space:c.preventDefault();break}}function u(c){n.disabled||(t.menuState.value===0?(t.closeMenu(),ae(()=>{var i;return(i=v(t.buttonRef))==null?void 0:i.focus({preventScroll:!0})})):(c.preventDefault(),t.openMenu(),ln(()=>{var i;return(i=v(t.itemsRef))==null?void 0:i.focus({preventScroll:!0})})))}let s=Ue(I(()=>({as:n.as,type:a.type})),t.buttonRef);return()=>{var c;let i={open:t.menuState.value===0},{id:x,..._}=n,m={ref:t.buttonRef,id:x,type:s.value,"aria-haspopup":"menu","aria-controls":(c=v(t.itemsRef))==null?void 0:c.id,"aria-expanded":t.menuState.value===0,onKeydown:o,onKeyup:l,onClick:u};return te({ourProps:m,theirProps:_,slot:i,attrs:a,slots:r,name:"MenuButton"})}}}),cn=D({name:"MenuItems",props:{as:{type:[Object,String],default:"div"},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0},id:{type:String,default:()=>`headlessui-menu-items-${Z()}`}},setup(n,{attrs:a,slots:r,expose:e}){let t=me("MenuItems"),o=S(null);e({el:t.itemsRef,$el:t.itemsRef}),en({container:I(()=>v(t.itemsRef)),enabled:I(()=>t.menuState.value===0),accept(i){return i.getAttribute("role")==="menuitem"?NodeFilter.FILTER_REJECT:i.hasAttribute("role")?NodeFilter.FILTER_SKIP:NodeFilter.FILTER_ACCEPT},walk(i){i.setAttribute("role","none")}});function l(i){var x;switch(o.value&&clearTimeout(o.value),i.key){case L.Space:if(t.searchQuery.value!=="")return i.preventDefault(),i.stopPropagation(),t.search(i.key);case L.Enter:if(i.preventDefault(),i.stopPropagation(),t.activeItemIndex.value!==null){let _=t.items.value[t.activeItemIndex.value];(x=v(_.dataRef.domRef))==null||x.click()}t.closeMenu(),je(v(t.buttonRef));break;case L.ArrowDown:return i.preventDefault(),i.stopPropagation(),t.goToItem(U.Next);case L.ArrowUp:return i.preventDefault(),i.stopPropagation(),t.goToItem(U.Previous);case L.Home:case L.PageUp:return i.preventDefault(),i.stopPropagation(),t.goToItem(U.First);case L.End:case L.PageDown:return i.preventDefault(),i.stopPropagation(),t.goToItem(U.Last);case L.Escape:i.preventDefault(),i.stopPropagation(),t.closeMenu(),ae(()=>{var _;return(_=v(t.buttonRef))==null?void 0:_.focus({preventScroll:!0})});break;case L.Tab:i.preventDefault(),i.stopPropagation(),t.closeMenu(),ae(()=>ht(v(t.buttonRef),i.shiftKey?j.Previous:j.Next));break;default:i.key.length===1&&(t.search(i.key),o.value=setTimeout(()=>t.clearSearch(),350));break}}function u(i){switch(i.key){case L.Space:i.preventDefault();break}}let s=Ve(),c=I(()=>s!==null?(s.value&X.Open)===X.Open:t.menuState.value===0);return()=>{var i,x;let _={open:t.menuState.value===0},{id:m,...k}=n,p={"aria-activedescendant":t.activeItemIndex.value===null||(i=t.items.value[t.activeItemIndex.value])==null?void 0:i.id,"aria-labelledby":(x=v(t.buttonRef))==null?void 0:x.id,id:m,onKeydown:l,onKeyup:u,role:"menu",tabIndex:0,ref:t.itemsRef};return te({ourProps:p,theirProps:k,slot:_,attrs:a,slots:r,features:fe.RenderStrategy|fe.Static,visible:c.value,name:"MenuItems"})}}}),dn=D({name:"MenuItem",inheritAttrs:!1,props:{as:{type:[Object,String],default:"template"},disabled:{type:Boolean,default:!1},id:{type:String,default:()=>`headlessui-menu-item-${Z()}`}},setup(n,{slots:a,attrs:r,expose:e}){let t=me("MenuItem"),o=S(null);e({el:o,$el:o});let l=I(()=>t.activeItemIndex.value!==null?t.items.value[t.activeItemIndex.value].id===n.id:!1),u=vt(o),s=I(()=>({disabled:n.disabled,get textValue(){return u()},domRef:o}));re(()=>t.registerItem(n.id,s)),_e(()=>t.unregisterItem(n.id)),le(()=>{t.menuState.value===0&&l.value&&t.activationTrigger.value!==0&&ae(()=>{var p,y;return(y=(p=v(o))==null?void 0:p.scrollIntoView)==null?void 0:y.call(p,{block:"nearest"})})});function c(p){if(n.disabled)return p.preventDefault();t.closeMenu(),je(v(t.buttonRef))}function i(){if(n.disabled)return t.goToItem(U.Nothing);t.goToItem(U.Specific,n.id)}let x=mt();function _(p){x.update(p)}function m(p){x.wasMoved(p)&&(n.disabled||l.value||t.goToItem(U.Specific,n.id,0))}function k(p){x.wasMoved(p)&&(n.disabled||l.value&&t.goToItem(U.Nothing))}return()=>{let{disabled:p}=n,y={active:l.value,disabled:p,close:t.closeMenu},{id:h,...P}=n;return te({ourProps:{id:h,ref:o,role:"menuitem",tabIndex:p===!0?void 0:-1,"aria-disabled":p===!0?!0:void 0,disabled:void 0,onClick:c,onFocus:i,onPointerenter:_,onMouseenter:_,onPointermove:m,onMousemove:m,onPointerleave:k,onMouseleave:k},theirProps:{...r,...P},slot:y,attrs:r,slots:a,name:"MenuItem"})}}});var pn=(n=>(n[n.Open=0]="Open",n[n.Closed=1]="Closed",n))(pn||{});let Ye=Symbol("PopoverContext");function Se(n){let a=se(Ye,null);if(a===null){let r=new Error(`<${n} /> is missing a parent <${Ze.name} /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(r,Se),r}return a}let fn=Symbol("PopoverGroupContext");function Ge(){return se(fn,null)}let Qe=Symbol("PopoverPanelContext");function vn(){return se(Qe,null)}let Ze=D({name:"Popover",inheritAttrs:!1,props:{as:{type:[Object,String],default:"div"}},setup(n,{slots:a,attrs:r,expose:e}){var t;let o=S(null);e({el:o,$el:o});let l=S(1),u=S(null),s=S(null),c=S(null),i=S(null),x=I(()=>ie(o)),_=I(()=>{var f,w;if(!v(u)||!v(i))return!1;for(let B of document.querySelectorAll("body > *"))if(Number(B?.contains(v(u)))^Number(B?.contains(v(i))))return!0;let O=ye(),N=O.indexOf(v(u)),q=(N+O.length-1)%O.length,ue=(N+1)%O.length,xe=O[q],$=O[ue];return!((f=v(i))!=null&&f.contains(xe))&&!((w=v(i))!=null&&w.contains($))}),m={popoverState:l,buttonId:S(null),panelId:S(null),panel:i,button:u,isPortalled:_,beforePanelSentinel:s,afterPanelSentinel:c,togglePopover(){l.value=ee(l.value,{0:1,1:0})},closePopover(){l.value!==1&&(l.value=1)},close(f){m.closePopover();let w=f?f instanceof HTMLElement?f:f.value instanceof HTMLElement?v(f):v(m.button):v(m.button);w?.focus()}};ve(Ye,m),He(I(()=>ee(l.value,{0:X.Open,1:X.Closed})));let k={buttonId:m.buttonId,panelId:m.panelId,close(){m.closePopover()}},p=Ge(),y=p?.registerPopover,[h,P]=nn(),g=an({mainTreeNodeRef:p?.mainTreeNodeRef,portals:h,defaultContainers:[u,i]});function M(){var f,w,O,N;return(N=p?.isFocusWithinPopoverGroup())!=null?N:((f=x.value)==null?void 0:f.activeElement)&&(((w=v(u))==null?void 0:w.contains(x.value.activeElement))||((O=v(i))==null?void 0:O.contains(x.value.activeElement)))}return le(()=>y?.(k)),tn((t=x.value)==null?void 0:t.defaultView,"focus",f=>{var w,O;f.target!==window&&f.target instanceof HTMLElement&&l.value===0&&(M()||u&&i&&(g.contains(f.target)||(w=v(m.beforePanelSentinel))!=null&&w.contains(f.target)||(O=v(m.afterPanelSentinel))!=null&&O.contains(f.target)||m.closePopover()))},!0),Fe(g.resolveContainers,(f,w)=>{var O;m.closePopover(),De(w,Be.Loose)||(f.preventDefault(),(O=v(u))==null||O.focus())},I(()=>l.value===0)),()=>{let f={open:l.value===0,close:m.close};return z(V,[z(P,{},()=>te({theirProps:{...n,...r},ourProps:{ref:o},slot:f,slots:a,attrs:r,name:"Popover"})),z(g.MainTreeNode)])}}}),mn=D({name:"PopoverButton",props:{as:{type:[Object,String],default:"button"},disabled:{type:[Boolean],default:!1},id:{type:String,default:()=>`headlessui-popover-button-${Z()}`}},inheritAttrs:!1,setup(n,{attrs:a,slots:r,expose:e}){let t=Se("PopoverButton"),o=I(()=>ie(t.button));e({el:t.button,$el:t.button}),re(()=>{t.buttonId.value=n.id}),_e(()=>{t.buttonId.value=null});let l=Ge(),u=l?.closeOthers,s=vn(),c=I(()=>s===null?!1:s.value===t.panelId.value),i=S(null),x=`headlessui-focus-sentinel-${Z()}`;c.value||le(()=>{t.button.value=i.value});let _=Ue(I(()=>({as:n.as,type:a.type})),i);function m(g){var M,f,w,O,N;if(c.value){if(t.popoverState.value===1)return;switch(g.key){case L.Space:case L.Enter:g.preventDefault(),(f=(M=g.target).click)==null||f.call(M),t.closePopover(),(w=v(t.button))==null||w.focus();break}}else switch(g.key){case L.Space:case L.Enter:g.preventDefault(),g.stopPropagation(),t.popoverState.value===1&&u?.(t.buttonId.value),t.togglePopover();break;case L.Escape:if(t.popoverState.value!==0)return u?.(t.buttonId.value);if(!v(t.button)||(O=o.value)!=null&&O.activeElement&&!((N=v(t.button))!=null&&N.contains(o.value.activeElement)))return;g.preventDefault(),g.stopPropagation(),t.closePopover();break}}function k(g){c.value||g.key===L.Space&&g.preventDefault()}function p(g){var M,f;n.disabled||(c.value?(t.closePopover(),(M=v(t.button))==null||M.focus()):(g.preventDefault(),g.stopPropagation(),t.popoverState.value===1&&u?.(t.buttonId.value),t.togglePopover(),(f=v(t.button))==null||f.focus()))}function y(g){g.preventDefault(),g.stopPropagation()}let h=We();function P(){let g=v(t.panel);if(!g)return;function M(){ee(h.value,{[K.Forwards]:()=>J(g,j.First),[K.Backwards]:()=>J(g,j.Last)})===ge.Error&&J(ye().filter(f=>f.dataset.headlessuiFocusGuard!=="true"),ee(h.value,{[K.Forwards]:j.Next,[K.Backwards]:j.Previous}),{relativeTo:v(t.button)})}M()}return()=>{let g=t.popoverState.value===0,M={open:g},{id:f,...w}=n,O=c.value?{ref:i,type:_.value,onKeydown:m,onClick:p}:{ref:i,id:f,type:_.value,"aria-expanded":t.popoverState.value===0,"aria-controls":v(t.panel)?t.panelId.value:void 0,disabled:n.disabled?!0:void 0,onKeydown:m,onKeyup:k,onClick:p,onMousedown:y};return z(V,[te({ourProps:O,theirProps:{...a,...w},slot:M,attrs:a,slots:r,name:"PopoverButton"}),g&&!c.value&&t.isPortalled.value&&z(pe,{id:x,features:de.Focusable,"data-headlessui-focus-guard":!0,as:"button",type:"button",onFocus:P})])}}}),gn=D({name:"PopoverPanel",props:{as:{type:[Object,String],default:"div"},static:{type:Boolean,default:!1},unmount:{type:Boolean,default:!0},focus:{type:Boolean,default:!1},id:{type:String,default:()=>`headlessui-popover-panel-${Z()}`}},inheritAttrs:!1,setup(n,{attrs:a,slots:r,expose:e}){let{focus:t}=n,o=Se("PopoverPanel"),l=I(()=>ie(o.panel)),u=`headlessui-focus-sentinel-before-${Z()}`,s=`headlessui-focus-sentinel-after-${Z()}`;e({el:o.panel,$el:o.panel}),re(()=>{o.panelId.value=n.id}),_e(()=>{o.panelId.value=null}),ve(Qe,o.panelId),le(()=>{var y,h;if(!t||o.popoverState.value!==0||!o.panel)return;let P=(y=l.value)==null?void 0:y.activeElement;(h=v(o.panel))!=null&&h.contains(P)||J(v(o.panel),j.First)});let c=Ve(),i=I(()=>c!==null?(c.value&X.Open)===X.Open:o.popoverState.value===0);function x(y){var h,P;switch(y.key){case L.Escape:if(o.popoverState.value!==0||!v(o.panel)||l.value&&!((h=v(o.panel))!=null&&h.contains(l.value.activeElement)))return;y.preventDefault(),y.stopPropagation(),o.closePopover(),(P=v(o.button))==null||P.focus();break}}function _(y){var h,P,g,M,f;let w=y.relatedTarget;w&&v(o.panel)&&((h=v(o.panel))!=null&&h.contains(w)||(o.closePopover(),((g=(P=v(o.beforePanelSentinel))==null?void 0:P.contains)!=null&&g.call(P,w)||(f=(M=v(o.afterPanelSentinel))==null?void 0:M.contains)!=null&&f.call(M,w))&&w.focus({preventScroll:!0})))}let m=We();function k(){let y=v(o.panel);if(!y)return;function h(){ee(m.value,{[K.Forwards]:()=>{var P;J(y,j.First)===ge.Error&&((P=v(o.afterPanelSentinel))==null||P.focus())},[K.Backwards]:()=>{var P;(P=v(o.button))==null||P.focus({preventScroll:!0})}})}h()}function p(){let y=v(o.panel);if(!y)return;function h(){ee(m.value,{[K.Forwards]:()=>{let P=v(o.button),g=v(o.panel);if(!P)return;let M=ye(),f=M.indexOf(P),w=M.slice(0,f+1),O=[...M.slice(f+1),...w];for(let N of O.slice())if(N.dataset.headlessuiFocusGuard==="true"||g!=null&&g.contains(N)){let q=O.indexOf(N);q!==-1&&O.splice(q,1)}J(O,j.First,{sorted:!1})},[K.Backwards]:()=>{var P;J(y,j.Previous)===ge.Error&&((P=v(o.button))==null||P.focus())}})}h()}return()=>{let y={open:o.popoverState.value===0,close:o.close},{id:h,focus:P,...g}=n,M={ref:o.panel,id:h,onKeydown:x,onFocusout:t&&o.popoverState.value===0?_:void 0,tabIndex:-1};return te({ourProps:M,theirProps:{...a,...g},attrs:a,slot:y,slots:{...r,default:(...f)=>{var w;return[z(V,[i.value&&o.isPortalled.value&&z(pe,{id:u,ref:o.beforePanelSentinel,features:de.Focusable,"data-headlessui-focus-guard":!0,as:"button",type:"button",onFocus:k}),(w=r.default)==null?void 0:w.call(r,...f),i.value&&o.isPortalled.value&&z(pe,{id:s,ref:o.afterPanelSentinel,features:de.Focusable,"data-headlessui-focus-guard":!0,as:"button",type:"button",onFocus:p})])]}},features:fe.RenderStrategy|fe.Static,visible:i.value,name:"PopoverPanel"})}}});const hn=n=>{const a=I(()=>{const s=n.categoryTree.pictures?.[0];if(s&&!s.alt)return{alt:n.categoryTree.name,...s}}),r=I(()=>n.categoryTree.subcategories.filter(({subcategories:s})=>s.length)),e=I(()=>{let s=r.value.length;return a.value&&(s+=1),r.value.length<n.categoryTree.subcategories.length&&(s+=1),s}),t=I(()=>(n.megaMenuMaxCols||7)>=e.value),o=I(()=>t.value?n.categoryTree.subcategories.filter(({subcategories:s})=>!s.length):n.categoryTree.subcategories),l=I(()=>t.value?n.categoryTree.subcategories.filter(({subcategories:s})=>s.length):n.categoryTree.subcategories),u=I(()=>t.value?e.value:a.value?2:1);return{categoryPicture:a,isMegaMenu:t,subcategoryLinks:o,subcategoryCols:l,countMenuCols:u}},bn=D({__name:"ShopHeaderSubmenu",props:{categoryTree:{},megaMenuMaxCols:{}},setup(n,{expose:a}){a();const r=n,{categoryPicture:e,subcategoryLinks:t,subcategoryCols:o,countMenuCols:l}=hn(r),u=S(null),s=S(null);ot(u,()=>s.value?.click());const c={props:r,categoryPicture:e,subcategoryLinks:t,subcategoryCols:o,countMenuCols:l,panel:u,close:s,get Popover(){return Ze},get PopoverButton(){return mn},get PopoverPanel(){return gn}};return Object.defineProperty(c,"__isScriptSetup",{enumerable:!1,value:!0}),c}}),_n=["href"],yn={class:"relative",ref:"panel"},Sn={class:"flex w-full gap-6"},xn={key:0,class:"flex-1"},kn=["href"],wn=["href"],Pn={class:"text-base-600 mb-1.5 mt-1 text-sm"},Mn=["href"],Tn=["href"],In=["onClick"];function On(n,a,r,e,t,o){const l=Y("AImg"),u=Y("Fade");return b(),F(e.Popover,null,{default:T(({open:s})=>[d("a",{href:`/${r.categoryTree.slug}`,role:"button"},[E(e.PopoverButton,{class:"outline-none"},{default:T(()=>[oe(n.$slots,"button",$e(Ne({open:s})))]),_:2},1024)],8,_n),d("div",yn,[E(u,null,{default:T(()=>[E(e.PopoverPanel,{class:A(["text-base-700 absolute left-1/2 top-3 z-50 -translate-x-1/2 !transform rounded bg-white px-6 py-4 text-base shadow",e.countMenuCols===1?"w-60":e.countMenuCols===2?`w-screen ${e.categoryPicture?"max-w-lg":"max-w-sm"}`:e.countMenuCols===3?`w-screen ${e.categoryPicture?"max-w-xl":"max-w-md"}`:e.countMenuCols<6?"w-screen max-w-3xl":"w-screen max-w-5xl"])},{default:T(({close:c})=>[d("div",Sn,[e.subcategoryLinks.length?(b(),C("ul",xn,[(b(!0),C(V,null,W(e.subcategoryLinks,(i,x)=>(b(),C("li",{key:`link-${x}`,class:A(e.subcategoryLinks.length>10?"text-sm mb-1":"mb-2")},[d("a",{href:`/${i.slug}`,class:"hover:text-primary"},[d("h3",null,R(i.name),1)],8,kn)],2))),128))])):H("",!0),(b(!0),C(V,null,W(e.subcategoryCols,(i,x)=>(b(),C("div",{key:x,class:"flex-1"},[d("a",{href:`/${i.slug}`,class:"hover:text-primary"},[d("h3",null,R(i.name),1)],8,wn),d("ul",Pn,[(b(!0),C(V,null,W(i.subcategories,(_,m)=>(b(),C("li",{key:`${x}-${m}`,class:"mb-0.5"},[d("a",{href:`/${_.slug}`,class:"hover:text-primary hover:underline"},[d("h3",null,R(_.name),1)],8,Mn)]))),128))])]))),128)),e.categoryPicture?(b(),C("div",{key:1,class:A(e.countMenuCols===2?"basis-1/2":e.countMenuCols<5?"basis-2/5":"basis-1/3")},[E(l,{picture:e.categoryPicture,class:"ml-auto rounded"},null,8,["picture"])],2)):H("",!0)]),d("a",{href:`/${r.categoryTree.slug}`,class:"text-base-600 mt-1 block text-xs leading-snug underline"},R("Ver toda a categoria $1".replace("$1",r.categoryTree.name)),9,Tn),d("button",{ref:"close",onClick:he(c,["stop"]),class:"hidden"},null,8,In)]),_:1},8,["class"])]),_:1})],512)]),_:3})}const Cn=G(bn,[["render",On]]),En=D({__name:"ShopHeaderMenu",props:{inlineMenuTrees:{}},setup(n,{expose:a}){a();const r=n,e=I(()=>!!r.inlineMenuTrees.find(({subcategories:o})=>!o.length)),t={props:r,hasOneLevelSubcategories:e,ShopHeaderSubmenu:Cn};return Object.defineProperty(t,"__isScriptSetup",{enumerable:!1,value:!0}),t}}),Ln={class:"hover:text-primary group"},Rn=["href"],An={class:"inline"};function Nn(n,a,r,e,t,o){return b(),C("nav",null,[d("ul",{class:A(["text-base-700 flex gap-4 xl:gap-5",r.inlineMenuTrees.length<7?"text-base":"text-sm"])},[(b(!0),C(V,null,W(r.inlineMenuTrees,(l,u)=>(b(),C("li",{key:u},[l.subcategories.length?(b(),F(e.ShopHeaderSubmenu,{key:0,"category-tree":l},{button:T(({open:s})=>[d("span",Ln,[d("h3",{class:A(["inline group-hover:underline",[r.inlineMenuTrees.length<7?"decoration-2":null,s?"underline":null]])},R(l.name),3),e.hasOneLevelSubcategories?(b(),C("i",{key:0,class:A(["i-chevron-right text-base-400 group-hover:text-primary-subtle ml-1 transition-transform",s?"-rotate-90":"rotate-90"])},null,2)):H("",!0)])]),_:2},1032,["category-tree"])):(b(),C("a",{key:1,href:`/${l.slug}`,class:A(["hover:text-primary hover:underline",r.inlineMenuTrees.length<7?"decoration-2":null])},[d("h3",An,R(l.name),1)],10,Rn))]))),128))],2)])}const $n=G(En,[["render",Nn]]),Fn=D({__name:"AccountMenu",setup(n,{expose:a}){a();const r={get Menu(){return sn},get MenuButton(){return un},get MenuItems(){return cn},get MenuItem(){return dn},get socialNetworks(){return be},get customerName(){return Le},get initializeFirebaseAuth(){return Ee},get isLogged(){return Re},get logout(){return Ae},AccountLink:qe,SocialNetworkLink:Ke};return Object.defineProperty(r,"__isScriptSetup",{enumerable:!1,value:!0}),r}}),Dn={key:0},Bn={class:"text-base-600 p-3"},Hn={class:"list-none"},Un=d("i",{class:"i-heart mr-1"},null,-1),Vn={class:"text-base-500 flex justify-center gap-2 p-2 text-base"},jn=d("span",{class:"text-base-600"},R("Sair"),-1),qn=d("i",{class:"i-arrow-right-on-rectangle ml-1 text-lg"},null,-1),Kn=[jn,qn];function Wn(n,a,r,e,t,o){const l=Y("ALink"),u=Y("Fade");return b(),F(e.Menu,{as:"div",class:"text-base-800 relative text-center text-sm"},{default:T(({open:s})=>[s?(b(),C("div",Dn,[a[0]||(Pe(-1),a[0]=d("span",null,[Q(R(e.initializeFirebaseAuth()),1)]),Pe(1),a[0])])):H("",!0),E(e.AccountLink,{role:"button",onClick:a[1]||(a[1]=he(()=>{},["prevent"]))},{default:T(()=>[E(e.MenuButton,{class:"outline-none","aria-label":"Minha conta"},{default:T(()=>[oe(n.$slots,"button",$e(Ne({open:s})))]),_:2},1024)]),_:2},1024),E(u,null,{default:T(()=>[E(e.MenuItems,{class:"divide-base-100 absolute -right-8 mt-2 w-56 divide-y rounded bg-white shadow ring-1 ring-black/5 focus:outline-none"},{default:T(()=>[d("div",Bn,[Q(R(`Olá ${e.customerName||"Visitante"}`)+" ",1),E(e.AccountLink,{role:"button",class:"ui-btn-sm ui-btn-primary my-1 block"},{default:T(()=>[Q(R("Acessar minha conta"))]),_:1}),e.isLogged?H("",!0):(b(),F(e.AccountLink,{key:0,"is-sign-up":"",class:"ui-link block"},{default:T(()=>[Q(R("Criar uma conta"))]),_:1}))]),d("ul",Hn,[E(e.MenuItem,{as:"li"},{default:T(({active:c})=>[E(e.AccountLink,{to:"orders",class:A(["block p-2",c?"bg-primary-100 text-primary":null])},{default:T(()=>[Q(R("Meus pedidos"))]),_:2},1032,["class"])]),_:1}),E(e.MenuItem,{as:"li"},{default:T(({active:c})=>[E(e.AccountLink,{to:"favorites",class:A(["block p-2",c?"bg-primary-100 text-primary":null])},{default:T(()=>[Un,Q(" "+R("Meus favoritos"))]),_:2},1032,["class"])]),_:1}),(b(!0),C(V,null,W(n.$settings.serviceLinks,({title:c,href:i},x)=>(b(),F(e.MenuItem,{as:"li",key:`s-${x}`},{default:T(({active:_})=>[E(l,{href:i,class:A(["block p-2",_?"bg-primary-100 text-primary":null])},{default:T(()=>[Q(R(c),1)]),_:2},1032,["href","class"])]),_:2},1024))),128)),E(e.MenuItem,{as:"li"},{default:T(()=>[d("div",Vn,[(b(!0),C(V,null,W(e.socialNetworks,(c,i)=>(b(),C("span",{key:i},[E(e.SocialNetworkLink,{network:i,class:"hover:text-primary p-1"},null,8,["network"])]))),128))])]),_:1}),e.isLogged?(b(),F(e.MenuItem,{key:0,as:"li"},{default:T(()=>[d("button",{onClick:a[2]||(a[2]=(...c)=>e.logout&&e.logout(...c)),class:"text-base-800 p-2 text-right"},Kn)]),_:1})):H("",!0)])]),_:1})]),_:1})]),_:3})}const zn=G(Fn,[["render",Wn]]),Yn=D({__name:"ShopHeader",props:{searchInput:{},categories:{},menuCategorySlugs:{},menuRandomCategories:{},isAlphabeticalSortSubmenu:{type:Boolean}},setup(n,{expose:a}){a();const r=Oe(()=>ke(()=>import("./SearchModal.BrVoDBvg.js"),__vite__mapDeps([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18]))),e=Oe(()=>ke(()=>import("./CartSidebar.LrfpXG2B.js"),__vite__mapDeps([19,12,5,17,8,1,18,7,6,3,4,20,16,9,10,15]))),t=n,o=S(null),l=S(null),{isSticky:u,positionY:s,categoryTrees:c,inlineMenuTrees:i,isSearchOpen:x,isSearchOpenOnce:_,searchTerm:m,quickSearchTerm:k,toggleSearch:p,isCartOpen:y,isCartOpenOnce:h,cartTotalItems:P,handleOnMounted:g}=kt({...t,header:o,searchInput:l}),M=S(!1),f=S(!1);re(()=>{f.value=!0,g()});const w={SearchModal:r,CartSidebar:e,props:t,header:o,searchInput:l,isSticky:u,positionY:s,categoryTrees:c,inlineMenuTrees:i,isSearchOpen:x,isSearchOpenOnce:_,searchTerm:m,quickSearchTerm:k,toggleSearch:p,isCartOpen:y,isCartOpenOnce:h,cartTotalItems:P,handleOnMounted:g,isSidenavOpen:M,isMounted:f,Drawer:_t,ShopSidenav:Jt,ShopHeaderMenu:$n,AccountMenu:zn};return Object.defineProperty(w,"__isScriptSetup",{enumerable:!1,value:!0}),w}}),Gn={class:"mx-auto flex w-screen grid-flow-col grid-cols-3 items-center justify-between px-1 sm:pl-2 sm:pr-2.5 md:grid lg:w-[calc(100vw-1rem)] lg:auto-cols-max lg:grid-cols-none lg:px-1 xl:max-w-[82rem] 2xl:max-w-[85rem]"},Qn={class:"basis-1/4 lg:hidden"},Zn={class:"text-base-800 flex basis-1/4 items-center justify-end gap-3 px-2 lg:gap-4"},Xn={action:"/s",method:"get",class:"relative"},Jn=d("label",{for:"HeaderSearch",class:"sr-only"},R("Buscar produtos"),-1),ea={class:"absolute -right-0.5 -top-2.5 flex items-stretch"},ta=d("div",{class:"hidden w-12 bg-gradient-to-r from-transparent to-white sm:block"},null,-1),na=["placeholder"],aa=["href"],oa=d("i",{class:"i-shopping-bag group-hover:text-primary h-7 w-7 group-hover:scale-110 group-active:scale-125"},null,-1),ra={key:0,class:"ui-badge-pill-sm absolute -right-1.5 -top-1"},la={class:"container mx-auto"},sa={class:"h-full bg-white"};function ia(n,a,r,e,t,o){const l=Y("Fade"),u=Y("Skeleton");return b(),C("header",{ref:"header",class:A(["relative top-0 z-50 transition-colors",[e.isSticky&&!e.isSidenavOpen?"bg-white/80":"bg-white",e.isSticky?"py-2 shadow backdrop-blur-md md:py-3":"py-3 sm:py-4 md:py-5"]])},[d("div",Gn,[d("div",Qn,[d("button",{class:"my-1 px-2","aria-label":"Abrir/fechar menu",onClick:a[0]||(a[0]=s=>e.isSidenavOpen=!e.isSidenavOpen)},[d("i",{class:A(["text-3xl transition-colors",[e.isSidenavOpen?"i-close":"i-bars-3-bottom-left",e.isMounted?"text-base-500":"text-base-400 animate-pulse"]])},null,2)])]),oe(n.$slots,"logo"),E(e.ShopHeaderMenu,Me({class:"hidden lg:block"},{inlineMenuTrees:e.inlineMenuTrees}),null,16),d("div",Zn,[d("form",Xn,[Jn,E(l,null,{default:T(()=>[Te(d("div",ea,[ta,Te(d("input",{ref:"searchInput",type:"search",id:"HeaderSearch",name:"q","onUpdate:modelValue":a[1]||(a[1]=s=>e.searchTerm=s),class:"to-primary-50 border-primary/20 border-1 w-72 max-w-md bg-gradient-to-r from-white py-3 pl-5 pr-12 text-base ring-0 md:w-screen",placeholder:"Buscar produtos ..."},null,8,na),[[Je,e.searchTerm,void 0,{trim:!0}]])],512),[[Xe,e.isSearchOpen]])]),_:1}),d("button",{type:"submit","aria-label":"Buscar produtos",onClick:a[2]||(a[2]=(...s)=>e.toggleSearch&&e.toggleSearch(...s))},[d("i",{class:A(["i-magnifying-glass hover:text-primary h-7 w-7 hover:scale-110 active:scale-125",e.isSearchOpen&&"text-primary-600 -translate-x-2"])},null,2)])]),E(e.AccountMenu,{class:"hidden sm:block"},{button:T(({open:s})=>[d("i",{class:A(["i-user-circle hover:text-primary h-7 w-7 hover:scale-110 active:scale-125",s?"text-black scale-110":null])},null,2)]),_:1}),d("a",{href:n.$settings.cartUrl||"/app/","aria-label":"Abrir carrinho",onClick:a[3]||(a[3]=he(s=>e.isCartOpen=!e.isCartOpen,["prevent"])),class:"group relative",role:"button"},[oa,e.cartTotalItems?(b(),C("span",ra,R(e.cartTotalItems),1)):H("",!0)],8,aa)])]),E(e.Drawer,{modelValue:e.isSidenavOpen,"onUpdate:modelValue":a[4]||(a[4]=s=>e.isSidenavOpen=s),"has-close-button":!1,position:"absolute",class:A(e.isSticky?"mt-2 md:mt-3":"mt-3 sm:mt-4 md:mt-5"),style:ct({height:`calc(100vh - ${e.positionY}px + .5rem)`,maxHeight:`calc(100dvh - ${e.positionY}px + .5rem)`})},{default:T(()=>[E(e.ShopSidenav,Me({class:"pt-6"},{categoryTrees:e.categoryTrees}),null,16)]),_:1},8,["modelValue","class","style"]),E(e.Drawer,{modelValue:e.isSearchOpen,"onUpdate:modelValue":a[5]||(a[5]=s=>e.isSearchOpen=s),"is-hidden":!e.quickSearchTerm,"has-close-button":!1,"anchor-el":e.searchInput?.parentElement,position:"absolute",placement:"top",animation:"scale","max-width":"55rem",class:A(["bg-transparent lg:mt-12",e.isSticky?"mt-2 md:mt-3":"mt-3 sm:mt-4 md:mt-5"])},{default:T(()=>[(b(),F(Ie,null,{fallback:T(()=>[d("div",la,[E(u,{class:"p-6","is-large":"","is-bold":""})])]),default:T(()=>[e.isSearchOpenOnce?(b(),F(e.SearchModal,{key:0,term:e.quickSearchTerm},null,8,["term"])):H("",!0)]),_:1}))]),_:1},8,["modelValue","is-hidden","anchor-el","class"]),e.isMounted?(b(),F(dt,{key:0,to:"#teleported-overlap"},[E(e.Drawer,{modelValue:e.isCartOpen,"onUpdate:modelValue":a[7]||(a[7]=s=>e.isCartOpen=s),placement:"end","backdrop-target":"#teleported-overlap",class:"shadow"},{default:T(()=>[(b(),F(Ie,null,{fallback:T(()=>[d("div",sa,[E(u,{class:"px-6 pt-16","is-bold":""})])]),default:T(()=>[e.isCartOpenOnce?(b(),F(e.CartSidebar,{key:0,onClose:a[6]||(a[6]=s=>e.isCartOpen=!1)})):H("",!0)]),_:1}))]),_:1},8,["modelValue"])])):H("",!0)],2)}const ba=G(Yn,[["render",ia]]);export{ba as default};
2
+ function __vite__mapDeps(indexes) {
3
+ if (!__vite__mapDeps.viteFileDeps) {
4
+ __vite__mapDeps.viteFileDeps = ["_astro/SearchModal.BrVoDBvg.js","_astro/sf-utils.yjuG8NjM.js","_astro/use-analytics.Y7amTmnr.js","_astro/customer-session.KkTHFOXl.js","_astro/index.TkCbiY_p.js","_astro/ecom-utils.Ld2zf-Ve.js","_astro/shopping-cart.Ean2uW2R.js","_astro/price.Easct8WC.js","_astro/afetch.5c8VmT0-.js","_astro/name.49dZlpDx.js","_astro/i18n.3-NUtxYq.js","_astro/ProductShelf.vj6lVDCr.js","_astro/_plugin-vue_export-helper._suIQ7WC.js","_astro/index.m6fK0JXC.js","_astro/use-product-card.zB4z32bC.js","_astro/img.pozlYdd3.js","_astro/Prices.eQ9Vd255.js","_astro/modules-info.mmwB1qIJ.js","_astro/format-money.Axn0YFLJ.js","_astro/CartSidebar.LrfpXG2B.js","_astro/QuantitySelector.qSJQlvTe.js"]
5
+ }
6
+ return indexes.map((i) => __vite__mapDeps.viteFileDeps[i])
7
+ }
@@ -0,0 +1 @@
1
+ import{i as ft,h as D,l as G,j as Et,k as Tt,m as I,p as _t,q as X,t as Nt,B as wt,v as B,x as Lt,y as Mt,z as It,A as Dt,C as Ot,E as ut,F as yt,G as Pt,H as Rt,I as lt,J as $t}from"./ecom-utils.Ld2zf-Ve.js";const xt="http://www.w3.org/2000/svg",S=typeof document<"u"?document:null,J=S&&S.createElement("template"),Bt={insert:(t,e,n)=>{e.insertBefore(t,n||null)},remove:t=>{const e=t.parentNode;e&&e.removeChild(t)},createElement:(t,e,n,o)=>{const s=e?S.createElementNS(xt,t):S.createElement(t,n?{is:n}:void 0);return t==="select"&&o&&o.multiple!=null&&s.setAttribute("multiple",o.multiple),s},createText:t=>S.createTextNode(t),createComment:t=>S.createComment(t),setText:(t,e)=>{t.nodeValue=e},setElementText:(t,e)=>{t.textContent=e},parentNode:t=>t.parentNode,nextSibling:t=>t.nextSibling,querySelector:t=>S.querySelector(t),setScopeId(t,e){t.setAttribute(e,"")},insertStaticContent(t,e,n,o,s,r){const a=n?n.previousSibling:e.lastChild;if(s&&(s===r||s.nextSibling))for(;e.insertBefore(s.cloneNode(!0),n),!(s===r||!(s=s.nextSibling)););else{J.innerHTML=o?`<svg>${t}</svg>`:t;const c=J.content;if(o){const f=c.firstChild;for(;f.firstChild;)c.appendChild(f.firstChild);c.removeChild(f)}e.insertBefore(c,n)}return[a?a.nextSibling:e.firstChild,n?n.previousSibling:e.lastChild]}},g="transition",N="animation",M=Symbol("_vtc"),pt=(t,{slots:e})=>Nt(wt,Ht(t),e);pt.displayName="Transition";const dt={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};pt.props=B({},Lt,dt);const C=(t,e=[])=>{I(t)?t.forEach(n=>n(...e)):t&&t(...e)},Q=t=>t?I(t)?t.some(e=>e.length>1):t.length>1:!1;function Ht(t){const e={};for(const i in t)i in dt||(e[i]=t[i]);if(t.css===!1)return e;const{name:n="v",type:o,duration:s,enterFromClass:r=`${n}-enter-from`,enterActiveClass:a=`${n}-enter-active`,enterToClass:c=`${n}-enter-to`,appearFromClass:f=r,appearActiveClass:u=a,appearToClass:l=c,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:m=`${n}-leave-active`,leaveToClass:E=`${n}-leave-to`}=t,T=Ft(s),ht=T&&T[0],vt=T&&T[1],{onBeforeEnter:F,onEnter:K,onEnterCancelled:q,onLeave:z,onLeaveCancelled:Ct,onBeforeAppear:bt=F,onAppear:St=K,onAppearCancelled:At=q}=e,y=(i,p,v)=>{b(i,p?l:c),b(i,p?u:a),v&&v()},U=(i,p)=>{i._isLeaving=!1,b(i,d),b(i,E),b(i,m),p&&p()},j=i=>(p,v)=>{const V=i?St:K,W=()=>y(p,i,v);C(V,[p,W]),Y(()=>{b(p,i?f:r),h(p,i?l:c),Q(V)||Z(p,o,ht,W)})};return B(e,{onBeforeEnter(i){C(F,[i]),h(i,r),h(i,a)},onBeforeAppear(i){C(bt,[i]),h(i,f),h(i,u)},onEnter:j(!1),onAppear:j(!0),onLeave(i,p){i._isLeaving=!0;const v=()=>U(i,p);h(i,d),zt(),h(i,m),Y(()=>{i._isLeaving&&(b(i,d),h(i,E),Q(z)||Z(i,o,vt,v))}),C(z,[i,v])},onEnterCancelled(i){y(i,!1),C(q,[i])},onAppearCancelled(i){y(i,!0),C(At,[i])},onLeaveCancelled(i){U(i),C(Ct,[i])}})}function Ft(t){if(t==null)return null;if(Mt(t))return[P(t.enter),P(t.leave)];{const e=P(t);return[e,e]}}function P(t){return It(t)}function h(t,e){e.split(/\s+/).forEach(n=>n&&t.classList.add(n)),(t[M]||(t[M]=new Set)).add(e)}function b(t,e){e.split(/\s+/).forEach(o=>o&&t.classList.remove(o));const n=t[M];n&&(n.delete(e),n.size||(t[M]=void 0))}function Y(t){requestAnimationFrame(()=>{requestAnimationFrame(t)})}let Kt=0;function Z(t,e,n,o){const s=t._endId=++Kt,r=()=>{s===t._endId&&o()};if(n)return setTimeout(r,n);const{type:a,timeout:c,propCount:f}=qt(t,e);if(!a)return o();const u=a+"end";let l=0;const d=()=>{t.removeEventListener(u,m),r()},m=E=>{E.target===t&&++l>=f&&d()};setTimeout(()=>{l<f&&d()},c+1),t.addEventListener(u,m)}function qt(t,e){const n=window.getComputedStyle(t),o=T=>(n[T]||"").split(", "),s=o(`${g}Delay`),r=o(`${g}Duration`),a=k(s,r),c=o(`${N}Delay`),f=o(`${N}Duration`),u=k(c,f);let l=null,d=0,m=0;e===g?a>0&&(l=g,d=a,m=r.length):e===N?u>0&&(l=N,d=u,m=f.length):(d=Math.max(a,u),l=d>0?a>u?g:N:null,m=l?l===g?r.length:f.length:0);const E=l===g&&/\b(transform|all)(,|$)/.test(o(`${g}Property`).toString());return{type:l,timeout:d,propCount:m,hasTransform:E}}function k(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max(...e.map((n,o)=>tt(n)+tt(t[o])))}function tt(t){return t==="auto"?0:Number(t.slice(0,-1).replace(",","."))*1e3}function zt(){return document.body.offsetHeight}function Ut(t,e,n){const o=t[M];o&&(e=(e?[e,...o]:[...o]).join(" ")),e==null?t.removeAttribute("class"):n?t.setAttribute("class",e):t.className=e}const H=Symbol("_vod"),le={beforeMount(t,{value:e},{transition:n}){t[H]=t.style.display==="none"?"":t.style.display,n&&e?n.beforeEnter(t):w(t,e)},mounted(t,{value:e},{transition:n}){n&&e&&n.enter(t)},updated(t,{value:e,oldValue:n},{transition:o}){!e!=!n&&(o?e?(o.beforeEnter(t),w(t,!0),o.enter(t)):o.leave(t,()=>{w(t,!1)}):w(t,e))},beforeUnmount(t,{value:e}){w(t,e)}};function w(t,e){t.style.display=e?t[H]:"none"}const jt=Symbol("");function Vt(t,e,n){const o=t.style,s=D(n);if(n&&!s){if(e&&!D(e))for(const r in e)n[r]==null&&x(o,r,"");for(const r in n)x(o,r,n[r])}else{const r=o.display;if(s){if(e!==n){const a=o[jt];a&&(n+=";"+a),o.cssText=n}}else e&&t.removeAttribute("style");H in t&&(o.display=r)}}const et=/\s*!important$/;function x(t,e,n){if(I(n))n.forEach(o=>x(t,e,o));else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{const o=Wt(t,e);et.test(n)?t.setProperty(ut(o),n.replace(et,""),"important"):t[o]=n}}const nt=["Webkit","Moz","ms"],R={};function Wt(t,e){const n=R[e];if(n)return n;let o=yt(e);if(o!=="filter"&&o in t)return R[e]=o;o=Pt(o);for(let s=0;s<nt.length;s++){const r=nt[s]+o;if(r in t)return R[e]=r}return e}const ot="http://www.w3.org/1999/xlink";function Gt(t,e,n,o,s){if(o&&e.startsWith("xlink:"))n==null?t.removeAttributeNS(ot,e.slice(6,e.length)):t.setAttributeNS(ot,e,n);else{const r=Rt(e);n==null||r&&!lt(n)?t.removeAttribute(e):t.setAttribute(e,r?"":n)}}function Xt(t,e,n,o,s,r,a){if(e==="innerHTML"||e==="textContent"){o&&a(o,s,r),t[e]=n??"";return}const c=t.tagName;if(e==="value"&&c!=="PROGRESS"&&!c.includes("-")){t._value=n;const u=c==="OPTION"?t.getAttribute("value"):t.value,l=n??"";u!==l&&(t.value=l),n==null&&t.removeAttribute(e);return}let f=!1;if(n===""||n==null){const u=typeof t[e];u==="boolean"?n=lt(n):n==null&&u==="string"?(n="",f=!0):u==="number"&&(n=0,f=!0)}try{t[e]=n}catch{}f&&t.removeAttribute(e)}function A(t,e,n,o){t.addEventListener(e,n,o)}function Jt(t,e,n,o){t.removeEventListener(e,n,o)}const st=Symbol("_vei");function Qt(t,e,n,o,s=null){const r=t[st]||(t[st]={}),a=r[e];if(o&&a)a.value=o;else{const[c,f]=Yt(e);if(o){const u=r[e]=te(o,s);A(t,c,u,f)}else a&&(Jt(t,c,a,f),r[e]=void 0)}}const rt=/(?:Once|Passive|Capture)$/;function Yt(t){let e;if(rt.test(t)){e={};let o;for(;o=t.match(rt);)t=t.slice(0,t.length-o[0].length),e[o[0].toLowerCase()]=!0}return[t[2]===":"?t.slice(3):ut(t.slice(2)),e]}let $=0;const Zt=Promise.resolve(),kt=()=>$||(Zt.then(()=>$=0),$=Date.now());function te(t,e){const n=o=>{if(!o._vts)o._vts=Date.now();else if(o._vts<=n.attached)return;$t(ee(o,n.value),e,5,[o])};return n.value=t,n.attached=kt(),n}function ee(t,e){if(I(e)){const n=t.stopImmediatePropagation;return t.stopImmediatePropagation=()=>{n.call(t),t._stopped=!0},e.map(o=>s=>!s._stopped&&o&&o(s))}else return e}const it=t=>t.charCodeAt(0)===111&&t.charCodeAt(1)===110&&t.charCodeAt(2)>96&&t.charCodeAt(2)<123,ne=(t,e,n,o,s=!1,r,a,c,f)=>{e==="class"?Ut(t,o,s):e==="style"?Vt(t,n,o):Dt(e)?Ot(e)||Qt(t,e,n,o,a):(e[0]==="."?(e=e.slice(1),!0):e[0]==="^"?(e=e.slice(1),!1):oe(t,e,o,s))?Xt(t,e,o,r,a,c,f):(e==="true-value"?t._trueValue=o:e==="false-value"&&(t._falseValue=o),Gt(t,e,o,s))};function oe(t,e,n,o){if(o)return!!(e==="innerHTML"||e==="textContent"||e in t&&it(e)&&ft(n));if(e==="spellcheck"||e==="draggable"||e==="translate"||e==="form"||e==="list"&&t.tagName==="INPUT"||e==="type"&&t.tagName==="TEXTAREA")return!1;if(e==="width"||e==="height"){const s=t.tagName;if(s==="IMG"||s==="VIDEO"||s==="CANVAS"||s==="SOURCE")return!1}return it(e)&&D(n)?!1:e in t}const O=t=>{const e=t.props["onUpdate:modelValue"]||!1;return I(e)?n=>_t(e,n):e};function se(t){t.target.composing=!0}function at(t){const e=t.target;e.composing&&(e.composing=!1,e.dispatchEvent(new Event("input")))}const _=Symbol("_assign"),pe={created(t,{modifiers:{lazy:e,trim:n,number:o}},s){t[_]=O(s);const r=o||s.props&&s.props.type==="number";A(t,e?"change":"input",a=>{if(a.target.composing)return;let c=t.value;n&&(c=c.trim()),r&&(c=G(c)),t[_](c)}),n&&A(t,"change",()=>{t.value=t.value.trim()}),e||(A(t,"compositionstart",se),A(t,"compositionend",at),A(t,"change",at))},mounted(t,{value:e}){t.value=e??""},beforeUpdate(t,{value:e,modifiers:{lazy:n,trim:o,number:s}},r){if(t[_]=O(r),t.composing)return;const a=s||t.type==="number"?G(t.value):t.value,c=e??"";a!==c&&(document.activeElement===t&&t.type!=="range"&&(n||o&&t.value.trim()===c)||(t.value=c))}},de={created(t,{value:e},n){t.checked=X(e,n.props.value),t[_]=O(n),A(t,"change",()=>{t[_](re(t))})},beforeUpdate(t,{value:e,oldValue:n},o){t[_]=O(o),e!==n&&(t.checked=X(e,o.props.value))}};function re(t){return"_value"in t?t._value:t.value}const ie=["ctrl","shift","alt","meta"],ae={stop:t=>t.stopPropagation(),prevent:t=>t.preventDefault(),self:t=>t.target!==t.currentTarget,ctrl:t=>!t.ctrlKey,shift:t=>!t.shiftKey,alt:t=>!t.altKey,meta:t=>!t.metaKey,left:t=>"button"in t&&t.button!==0,middle:t=>"button"in t&&t.button!==1,right:t=>"button"in t&&t.button!==2,exact:(t,e)=>ie.some(n=>t[`${n}Key`]&&!e.includes(n))},me=(t,e)=>{const n=t._withMods||(t._withMods={}),o=e.join(".");return n[o]||(n[o]=(s,...r)=>{for(let a=0;a<e.length;a++){const c=ae[e[a]];if(c&&c(s,e))return}return t(s,...r)})},mt=B({patchProp:ne},Bt);let L,ct=!1;function ce(){return L||(L=Et(mt))}function fe(){return L=ct?L:Tt(mt),ct=!0,L}const ge=(...t)=>{const e=ce().createApp(...t),{mount:n}=e;return e.mount=o=>{const s=gt(o);if(!s)return;const r=e._component;!ft(r)&&!r.render&&!r.template&&(r.template=s.innerHTML),s.innerHTML="";const a=n(s,!1,s instanceof SVGElement);return s instanceof Element&&(s.removeAttribute("v-cloak"),s.setAttribute("data-v-app","")),a},e},he=(...t)=>{const e=fe().createApp(...t),{mount:n}=e;return e.mount=o=>{const s=gt(o);if(s)return n(s,!0,s instanceof SVGElement)},e};function gt(t){return D(t)?document.querySelector(t):t}const ve=(t,e)=>{const n=t.__vccOpts||t;for(const[o,s]of e)n[o]=s;return n};export{pt as T,ve as _,pe as a,de as b,he as c,ge as d,le as v,me as w};
@@ -0,0 +1 @@
1
+ @keyframes astroFadeInOut{0%{opacity:1}to{opacity:0}}@keyframes astroFadeIn{0%{opacity:0}}@keyframes astroFadeOut{to{opacity:0}}@keyframes astroSlideFromRight{0%{transform:translate(100%)}}@keyframes astroSlideFromLeft{0%{transform:translate(-100%)}}@keyframes astroSlideToRight{to{transform:translate(100%)}}@keyframes astroSlideToLeft{to{transform:translate(-100%)}}@media (prefers-reduced-motion){::view-transition-group(*),::view-transition-old(*),::view-transition-new(*){animation:none!important}[data-astro-transition-scope]{animation:none!important}}*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:var(--font-family);font-feature-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{text-decoration:inherit}:where(a){color:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--font-mono);font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-image:none}:where(button,[type=button],[type=reset],[type=submit]){background-color:transparent}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#94a3b8}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}:root{--font-size: 14.5px;--font-sans: var(--custom-font-sans, ui-sans-serif), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono: var(--custom-font-mono, ui-monospace), SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--font-family: var(--font-sans);--transition-fast: 75ms linear;--transition: .15s ease-in-out;--transition-slow: .25s ease-in-out;--transition-slower: .45s ease-in-out;--rgb-on-dark: 255 255 255;--c-on-dark: rgb(var(--rgb-on-dark));--rgb-on-light: 0 0 0;--c-on-light: rgb(var(--rgb-on-light));--c-background: #fff;--c-on-background: #1e293b;--un-prose-body: #334155;--un-prose-headings: #0f172a;--un-prose-links: var(--c-primary);--un-prose-captions: #64748b;--un-prose-borders: #e2e8f0;--un-prose-hr: #cbd5e1;--un-prose-bg-soft: #f1f5f9;color-scheme:light;accent-color:var(--c-secondary)}@media (prefers-reduced-motion: reduce){:root{--transition-fast: 0s;--transition: 0s;--transition-slow: 0s;--transition-slower: .15s linear}}html{font-size:var(--font-size)}@media (min-width: 640px){html{font-size:calc(var(--font-size) * 1.0345)}}@media (min-width: 768px){html{font-size:calc(var(--font-size) * 1.0689)}}@media (min-width: 1024px){html{font-size:calc(var(--font-size) * 1.1034)}}@media (min-width: 1280px){html{font-size:calc(var(--font-size) * 1.1379)}}@media (min-width: 1536px){html{font-size:calc(var(--font-size) * 1.1724)}}:focus-visible{outline-color:var(--c-outline, rgb(var(--rgb-secondary) / .1))}::selection{background-color:var(--c-selection-background, rgb(var(--rgb-secondary-950) / .7));color:var(--c-selection-foreground, #fff)}::marker{color:var(--c-primary)}body{background:var(--c-background);color:var(--c-on-background)}d-md{display:none}@media (min-width: 768px){d-md{display:inline}}details>summary.list-none::-webkit-details-marker,details>summary.list-none::marker{display:none}.h-screen{max-height:100dvh}[data-drawer-backdrop]+[data-drawer-backdrop]{display:none}[type=text],[type=email],[type=url],[type=password],[type=number],[type=date],[type=datetime-local],[type=month],[type=search],[type=tel],[type=time],[type=week],[multiple],textarea,select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--c-background);border-color:#64748b;border-width:1px;border-radius:.25rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--un-shadow: 0 0 #0000}:where([type=text],[type=email],[type=url],[type=password],[type=number],[type=date],[type=datetime-local],[type=month],[type=search],[type=tel],[type=time],[type=week],[multiple],textarea,select):focus{outline:2px solid transparent;outline-offset:2px;--un-ring-inset: var(--un-empty, );--un-ring-offset-width: 0px;--un-ring-offset-color: var(--c-background);--un-ring-color: var(--c-primary);--un-ring-offset-shadow: var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow: var(--un-ring-inset) 0 0 0 calc(1px + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow);border-color:var(--c-primary)}input::-moz-placeholder,textarea::-moz-placeholder{color:#64748b;opacity:1}input::placeholder,textarea::placeholder{color:#64748b;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;print-color-adjust:exact}[multiple]{background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:var(--c-primary);background-color:var(--c-background);border-color:#64748b;border-width:1px;--un-shadow: 0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}:where([type=checkbox],[type=radio]):focus{outline:2px solid transparent;outline-offset:2px;--un-ring-inset: var(--un-empty, );--un-ring-offset-width: 2px;--un-ring-offset-color: var(--c-background);--un-ring-color: var(--c-primary);--un-ring-offset-shadow: var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow: var(--un-ring-inset) 0 0 0 calc(2px + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}:where([type=checkbox],[type=radio]):checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}:where([type=checkbox]):checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}:where([type=radio]):checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}:where([type=checkbox],[type=radio]):where(:checked):is(:hover,:focus){border-color:transparent;background-color:currentColor}:where([type=checkbox]):indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}:where([type=checkbox]:indeterminate):is(:hover,:focus){border-color:transparent;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}:where([type=file]):focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}[class*=sf-fade-]{will-change:var(--fade-will-change);transform:translateZ(0);backface-visibility:hidden;perspective:1000px}.sf-fade-enter-active,.sf-fade-leave-active{transition:opacity var(--fade-duration),transform var(--fade-duration),height var(--fade-duration),width var(--fade-duration);overflow:hidden}.sf-fade-enter-from{opacity:var(--fade-enter-opacity);transform:var(--fade-enter-transform);height:var(--fade-enter-height);width:var(--fade-enter-width)}.sf-fade-leave-to{opacity:var(--fade-leave-opacity);transform:var(--fade-leave-transform)}[data-carousel-wrapper]::-webkit-scrollbar{display:none}[data-tooltip]{position:relative;cursor:help;--background-color: var(--c-tooltip-background, rgb(44 44 44 / .85));--color: var(--c-tooltip-foreground, var(--c-on-dark));--border-color: transparent transparent var(--background-color) transparent}[data-tooltip]:before{content:attr(data-tooltip);visibility:hidden;opacity:0;transition:opacity var(--transition);position:absolute;z-index:1;left:0;top:102%;margin-top:5px;font-size:clamp(.75rem,90%,1rem);font-weight:400;width:max-content;background-color:var(--background-color);color:var(--color);text-align:center;border-radius:.125rem;padding:.25rem .5rem;line-height:1.375}[data-tooltip]:after{content:"";visibility:hidden;opacity:0;transition:opacity var(--transition);position:absolute;z-index:1;left:50%;top:102%;margin-left:-5px;margin-top:-4px;border-width:5px;border-style:solid;border-color:var(--border-color)}[data-tooltip]:hover:before,[data-tooltip]:hover:after{opacity:1;visibility:visible}html{scroll-behavior:smooth}body{overflow-x:hidden;overflow-y:scroll;min-height:100dvh;display:flex;flex-direction:column}a,button,button>*,[role=button],[role=button]>*{transition:background-color var(--transition),color var(--transition),border-color var(--transition),opacity var(--transition),transform var(--transition-fast)}.ui-link{--un-text-opacity:1;color:rgb(var(--rgb-primary) / var(--un-text-opacity));font-weight:500;text-decoration-line:underline;text-underline-offset:4px}.ui-link:hover{--un-text-opacity:1;color:rgb(var(--rgb-primary-bold) / var(--un-text-opacity))}.ui-link:active{--un-text-opacity:1;color:rgb(var(--rgb-primary-subtle) / var(--un-text-opacity))}[class*=ui-btn]{display:inline-block;border-width:2px;border-color:transparent;border-radius:.25rem;padding:.5rem 1rem;font-size:1rem;line-height:1.5rem;font-weight:500;text-decoration-thickness:2px;text-underline-offset:4px;--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / .1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / .1));box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}[class*=ui-btn]:focus{--un-ring-width:1px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow);--un-ring-offset-width:1px}[class*=ui-btn]:active{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}.ui-btn-sm{border-width:1px;padding:.375rem .75rem;font-size:.875rem;line-height:1.25rem}.ui-btn-lg{padding:.75rem 1.5rem;font-size:1.125rem;line-height:1.75rem;font-weight:700}.ui-btn-lg:active{--un-ring-width:3px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}@media (min-width: 1024px){.ui-btn-lg{padding-top:.625rem;padding-bottom:.625rem;font-size:1rem;line-height:1.5rem}}.ui-btn-primary{--un-border-opacity:1;border-color:rgb(var(--rgb-primary) / var(--un-border-opacity));--un-ring-color:rgb(var(--rgb-primary) / .3);background-color:var(--c-primary, rgb(55 0 60));color:var(--c-on-primary, var(--c-on-dark))}.ui-btn-primary:hover{background-color:var(--c-primary-bold, rgb(99 44 103));color:var(--c-on-primary-bold, var(--c-on-dark))}.ui-btn-secondary{--un-border-opacity:1;border-color:rgb(var(--rgb-secondary) / var(--un-border-opacity));background-color:rgb(var(--rgb-secondary-100) / .5);--un-text-opacity:1;color:rgb(var(--rgb-secondary) / var(--un-text-opacity));--un-ring-color:rgb(var(--rgb-secondary) / .3)}.ui-btn-secondary:hover{background-color:var(--c-secondary, rgb(55 0 60));color:var(--c-on-secondary, var(--c-on-dark))}.ui-btn-contrast{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity));--un-text-opacity:1;color:rgb(var(--rgb-primary) / var(--un-text-opacity));text-decoration-line:underline;-webkit-text-decoration-color:rgb(var(--rgb-primary-300) / var(--un-line-opacity));--un-line-opacity:1;text-decoration-color:rgb(var(--rgb-primary-300) / var(--un-line-opacity));--un-shadow:0 0 var(--un-shadow-color, rgb(0 0 0 / 0));box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow);--un-ring-color:rgb(255 255 255 / .3)}.ui-btn-contrast:hover{--un-bg-opacity:1;background-color:rgb(var(--rgb-primary-100) / var(--un-bg-opacity))}.ui-btn-danger{--un-border-opacity:1;border-color:rgb(255 228 230 / var(--un-border-opacity));--un-bg-opacity:1;background-color:rgb(255 241 242 / var(--un-bg-opacity));--un-text-opacity:1;color:rgb(190 18 60 / var(--un-text-opacity));--un-ring-color:rgb(225 29 72 / .3)}.ui-btn-danger:hover{--un-border-opacity:1;border-color:rgb(225 29 72 / var(--un-border-opacity));--un-bg-opacity:1;background-color:rgb(225 29 72 / var(--un-bg-opacity));--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity))}.ui-text-brand,.ui-title{font-weight:900;font-family:var(--font-brand, var(--font-sans));font-style:italic}.ui-title{font-size:1.875rem;line-height:2.25rem}@media (min-width: 1280px){.ui-title{font-size:3rem;line-height:1}}[class*=ui-badge]{display:inline-block;border-radius:.375rem;--un-bg-opacity:1;background-color:rgb(var(--rgb-secondary-200) / var(--un-bg-opacity));padding:.125rem .625rem;text-align:center;--un-text-opacity:1;color:rgb(var(--rgb-secondary-900) / var(--un-text-opacity));font-weight:600}[class*=ui-badge-pill]{border-radius:9999px;padding-top:0;padding-bottom:0;font-size:.875rem;line-height:1.25rem;line-height:1.625}.ui-badge-pill-sm{min-width:1rem;padding-left:.125rem;padding-right:.125rem;font-size:.75rem;line-height:1rem}.ui-badge-pill-lg{min-width:1.75rem;padding-left:.5rem;padding-right:.5rem;font-size:1.125rem;line-height:1.75rem}.ui-alert{border-width:1px;--un-border-opacity:1;border-color:rgb(253 230 138 / var(--un-border-opacity));border-radius:.25rem;--un-bg-opacity:1;background-color:rgb(254 243 199 / var(--un-bg-opacity));padding:.75rem 1rem;font-size:1rem;line-height:1.5rem;--un-text-opacity:1;color:rgb(146 64 14 / var(--un-text-opacity))}[class*=ui-section]{width:100%;margin-left:auto;margin-right:auto;margin-top:1.5rem;margin-bottom:1.5rem;padding-left:1rem;padding-right:1rem}@media (min-width: 640px){[class*=ui-section]{max-width:640px;padding-left:.5rem;padding-right:.5rem}}@media (min-width: 768px){[class*=ui-section]{max-width:768px;margin-top:2rem;margin-bottom:2rem}}@media (min-width: 1024px){[class*=ui-section]{max-width:1024px}}@media (min-width: 1280px){[class*=ui-section]{max-width:1280px}}@media (min-width: 1536px){[class*=ui-section]{max-width:1536px;max-width:80rem}}.ui-section{margin-top:1.5rem;margin-bottom:1.5rem}@media (min-width: 640px){.ui-section{padding-left:.5rem;padding-right:.5rem}}@media (min-width: 768px){.ui-section{margin-top:2rem;margin-bottom:2rem}}.ui-section-slim{margin-top:.75rem;margin-bottom:.75rem}*,:before,:after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / .5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / .5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }:root{--rgb-primary-50:248 246 248;--rgb-primary-100:241 237 241;--rgb-primary-200:226 218 227;--rgb-primary-300:205 191 206;--rgb-primary-400:179 159 181;--rgb-primary-500:156 129 159;--rgb-primary-600:137 105 140;--rgb-primary-700:120 83 123;--rgb-primary-800:105 64 109;--rgb-primary-900:94 49 98;--rgb-primary-950:68 17 73;--rgb-primary-subtle:25 0 24;--c-primary-subtle:rgb(25 0 24);--c-on-primary-subtle:var(--c-on-dark);--rgb-primary:55 0 60;--c-primary:rgb(55 0 60);--c-on-primary:var(--c-on-dark);--rgb-primary-bold:99 44 103;--c-primary-bold:rgb(99 44 103);--c-on-primary-bold:var(--c-on-dark);--rgb-secondary-50:248 246 248;--rgb-secondary-100:241 237 241;--rgb-secondary-200:226 218 227;--rgb-secondary-300:205 191 206;--rgb-secondary-400:179 159 181;--rgb-secondary-500:156 129 159;--rgb-secondary-600:137 105 140;--rgb-secondary-700:120 83 123;--rgb-secondary-800:105 64 109;--rgb-secondary-900:94 49 98;--rgb-secondary-950:68 17 73;--rgb-secondary-subtle:25 0 24;--c-secondary-subtle:rgb(25 0 24);--c-on-secondary-subtle:var(--c-on-dark);--rgb-secondary:55 0 60;--c-secondary:rgb(55 0 60);--c-on-secondary:var(--c-on-dark);--rgb-secondary-bold:99 44 103;--c-secondary-bold:rgb(99 44 103);--c-on-secondary-bold:var(--c-on-dark);--rgb-on-primary:var(--rgb-on-dark);--rgb-on-primary-subtle:var(--rgb-on-dark);--rgb-on-primary-bold:var(--rgb-on-dark);--rgb-on-secondary:var(--rgb-on-dark);--rgb-on-secondary-subtle:var(--rgb-on-dark);--rgb-on-secondary-bold:var(--rgb-on-dark)}.prose :where(h1,h2,h3,h4,h5,h6):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-headings);font-weight:600;line-height:1.25}.prose :where(a):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-links);text-decoration:underline;font-weight:500}.prose :where(a code):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-links)}.prose :where(p,ul,ol,pre):not(:where(.not-prose,.not-prose *)){margin:1em 0;line-height:1.75}.prose :where(blockquote):not(:where(.not-prose,.not-prose *)){margin:1em 0;padding-left:1em;font-style:italic;border-left:.25em solid var(--un-prose-borders)}.prose :where(h1):not(:where(.not-prose,.not-prose *)){margin:1rem 0;font-size:2.25em}.prose :where(h2):not(:where(.not-prose,.not-prose *)){margin:1.75em 0 .5em;font-size:1.75em}.prose :where(h3):not(:where(.not-prose,.not-prose *)){margin:1.5em 0 .5em;font-size:1.375em}.prose :where(h4):not(:where(.not-prose,.not-prose *)){margin:1em 0;font-size:1.125em}.prose :where(img,video):not(:where(.not-prose,.not-prose *)){max-width:100%}.prose :where(figure,picture):not(:where(.not-prose,.not-prose *)){margin:1em 0}.prose :where(figcaption):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-captions);font-size:.875em}.prose :where(code):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-code);font-size:.875em;font-weight:600;font-family:var(--font-mono)}.prose :where(:not(pre)>code):not(:where(.not-prose,.not-prose *)):before,.prose :where(:not(pre)>code):not(:where(.not-prose,.not-prose *)):after{content:"`"}.prose :where(pre):not(:where(.not-prose,.not-prose *)){padding:1.25rem 1.5rem;overflow-x:auto;border-radius:.375rem}.prose :where(pre,code):not(:where(.not-prose,.not-prose *)){white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;hyphens:none;background:transparent}.prose :where(pre code):not(:where(.not-prose,.not-prose *)){font-weight:inherit}.prose :where(ol,ul):not(:where(.not-prose,.not-prose *)){padding-left:1.25em}.prose :where(ol):not(:where(.not-prose,.not-prose *)){list-style-type:decimal}.prose :where(ol[type=A]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where(.not-prose,.not-prose *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where(.not-prose,.not-prose *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where(.not-prose,.not-prose *)){list-style-type:decimal}.prose :where(ul):not(:where(.not-prose,.not-prose *)){list-style-type:disc}.prose :where(ol>li):not(:where(.not-prose,.not-prose *))::marker,.prose :where(ul>li):not(:where(.not-prose,.not-prose *))::marker,.prose :where(summary):not(:where(.not-prose,.not-prose *))::marker{color:var(--un-prose-lists)}.prose :where(hr):not(:where(.not-prose,.not-prose *)){margin:2em 0;border:1px solid var(--un-prose-hr)}.prose :where(table):not(:where(.not-prose,.not-prose *)){display:block;margin:1em 0;border-collapse:collapse;overflow-x:auto}.prose :where(tr):not(:where(.not-prose,.not-prose *)):nth-child(2n){background:var(--un-prose-bg-soft)}.prose :where(td,th):not(:where(.not-prose,.not-prose *)){border:1px solid var(--un-prose-borders);padding:.625em 1em}.prose :where(abbr):not(:where(.not-prose,.not-prose *)){cursor:help}.prose :where(kbd):not(:where(.not-prose,.not-prose *)){color:var(--un-prose-code);border:1px solid;padding:.25rem .5rem;font-size:.875em;border-radius:.25rem}.prose :where(details):not(:where(.not-prose,.not-prose *)){margin:1em 0;padding:1.25rem 1.5rem;background:var(--un-prose-bg-soft)}.prose :where(summary):not(:where(.not-prose,.not-prose *)){cursor:pointer;font-weight:600}.prose{color:var(--un-prose-body);max-width:65ch}.i-adjustments-horizontal{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M10.5 6h9.75M10.5 6a1.5 1.5 0 1 1-3 0m3 0a1.5 1.5 0 1 0-3 0M3.75 6H7.5m3 12h9.75m-9.75 0a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m-3.75 0H7.5m9-6h3.75m-3.75 0a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m-9.75 0h9.75'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-amex{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 256' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%23006FCF' d='M256 138.548V0H0v256h256v-74.69c-.57 0 0-42.762 0-42.762'/%3E%3Cpath fill='%23FFF' d='M224.641 124.294h19.386V79.252H222.93v6.271l-3.991-6.271h-18.245v7.982l-3.421-7.982h-33.64c-1.14 0-2.28.57-3.42.57c-1.14 0-1.71.57-2.851 1.14c-1.14.57-1.71.57-2.85 1.14v-2.85H58.155l-2.85 7.412l-2.852-7.412H29.648v7.982l-3.42-7.982H7.981L0 98.637v25.657h13.114l2.28-6.272h4.561l2.281 6.272h100.348v-5.702l3.99 5.702h27.938v-3.42c.57.57 1.71.57 2.28 1.14c.571.57 1.711.57 2.281 1.14c1.14.57 2.281.57 3.421.57h20.526l2.28-6.272h4.562l2.28 6.272h27.938v-5.702zM256 181.31v-42.192H99.207l-3.991 5.702l-3.991-5.702H45.612v45.042h45.613l3.991-5.701l3.991 5.701h28.508v-9.692h-1.14c3.99 0 7.412-.57 10.262-1.71v11.973h20.526v-5.702l3.991 5.702h84.953c3.421-1.14 6.842-1.711 9.693-3.421'/%3E%3Cpath fill='%23006FCF' d='M246.307 170.477h-15.394v6.271h14.824c6.272 0 10.263-3.99 10.263-9.692s-3.42-8.553-9.122-8.553h-6.842c-1.71 0-2.851-1.14-2.851-2.85c0-1.71 1.14-2.851 2.85-2.851h13.114L256 146.53h-15.394c-6.272 0-10.263 3.991-10.263 9.123c0 5.701 3.42 8.552 9.122 8.552h6.842c1.71 0 2.851 1.14 2.851 2.85c.57 2.281-.57 3.422-2.85 3.422m-27.937 0h-15.394v6.271H217.8c6.271 0 10.262-3.99 10.262-9.692s-3.42-8.553-9.122-8.553h-6.842c-1.71 0-2.85-1.14-2.85-2.85c0-1.71 1.14-2.851 2.85-2.851h13.114l2.85-6.272h-15.394c-6.272 0-10.263 3.991-10.263 9.123c0 5.701 3.421 8.552 9.123 8.552h6.842c1.71 0 2.85 1.14 2.85 2.85c.57 2.281-1.14 3.422-2.85 3.422m-19.956-18.245v-6.272h-23.946v30.218h23.946v-6.272H181.31v-6.271h16.534v-6.272H181.31v-5.702h17.104zm-38.77 0c2.85 0 3.99 1.71 3.99 3.42c0 1.711-1.14 3.421-3.99 3.421h-8.553v-7.412zm-8.553 13.113h3.421l9.123 10.833h8.552l-10.263-11.403c5.132-1.14 7.982-4.561 7.982-9.122c0-5.702-3.99-9.693-10.262-9.693h-15.965v30.218h6.842zm-18.245-9.122c0 2.28-1.14 3.99-3.99 3.99h-9.123v-7.981h8.552c2.85 0 4.561 1.71 4.561 3.99m-19.955-10.263v30.218h6.842v-10.263h9.122c6.272 0 10.833-3.99 10.833-10.262c0-5.702-3.99-10.263-10.263-10.263zm-10.263 30.218h8.552l-11.973-15.394l11.973-14.824h-8.552l-7.412 9.693l-7.412-9.693h-8.552l11.973 14.824l-11.973 14.824h8.552l7.412-9.693zm-25.657-23.946v-6.272H53.024v30.218h23.947v-6.272H59.866v-6.271h16.535v-6.272H59.866v-5.702h17.105zm138.548-53.595l11.973 18.245h8.553V86.664h-6.842v19.955l-1.71-2.85l-10.834-17.105h-9.122v30.218h6.842V96.356zm-29.648-.57l2.28-6.272l2.281 6.272l2.85 6.842H183.02zm11.973 18.815h7.412l-13.113-30.218h-9.123l-13.114 30.218h7.412l2.851-6.272h14.824zm-31.929 0l2.851-6.272h-1.71c-5.132 0-7.983-3.42-7.983-8.552v-.57c0-5.132 2.851-8.553 7.983-8.553h7.412v-6.271h-7.982c-9.123 0-14.254 6.271-14.254 14.824v.57c0 9.122 5.131 14.824 13.683 14.824m-25.657 0h6.842V87.234h-6.842zm-14.824-23.947c2.851 0 3.991 1.71 3.991 3.421c0 1.71-1.14 3.421-3.99 3.421h-8.553v-7.412zm-8.552 13.114h3.42l9.123 10.833h8.553l-10.263-11.403c5.131-1.14 7.982-4.561 7.982-9.123c0-5.701-3.991-9.692-10.263-9.692H109.47v30.218h6.842zm-12.543-13.114v-6.271H80.392v30.218h23.947v-6.272H87.234v-6.271h16.534v-6.272H87.234v-5.702h17.105zm-51.885 23.947h6.272l8.552-24.517v24.517h6.842V86.664H62.717l-6.842 20.525l-6.842-20.525H37.63v30.218h6.842V92.365zm-37.06-18.815l2.28-6.272l2.281 6.272l2.851 6.842H12.543zm11.973 18.815h7.413L21.666 86.664h-8.552L0 116.882h7.412l2.85-6.272h14.825z'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-arrow-path{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0 0 13.803-3.7M4.031 9.865a8.25 8.25 0 0 1 13.803-3.7l3.181 3.182m0-4.991v4.99'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-arrow-path-rounded-square{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19.5 12c0-1.232-.046-2.453-.138-3.662a4.006 4.006 0 0 0-3.7-3.7a48.678 48.678 0 0 0-7.324 0a4.006 4.006 0 0 0-3.7 3.7c-.017.22-.032.441-.046.662M19.5 12l3-3m-3 3l-3-3m-12 3c0 1.232.046 2.453.138 3.662a4.006 4.006 0 0 0 3.7 3.7a48.656 48.656 0 0 0 7.324 0a4.006 4.006 0 0 0 3.7-3.7c.017-.22.032-.441.046-.662M4.5 12l3 3m-3-3l-3 3'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.\[\&_i\]\:i-arrow-right i,.i-arrow-right{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-arrow-right-on-rectangle{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15m3 0l3-3m0 0l-3-3m3 3H9'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-arrow-top-right-on-square{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-arrow-uturn-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9 15L3 9m0 0l6-6M3 9h12a6 6 0 0 1 0 12h-3'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-bars-3-bottom-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25H12'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-check{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m4.5 12.75l6 6l9-13.5'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-check-badge{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M9 12.75L11.25 15L15 9.75M21 12c0 1.268-.63 2.39-1.593 3.068a3.745 3.745 0 0 1-1.043 3.296a3.745 3.745 0 0 1-3.296 1.043A3.745 3.745 0 0 1 12 21c-1.268 0-2.39-.63-3.068-1.593a3.746 3.746 0 0 1-3.296-1.043a3.745 3.745 0 0 1-1.043-3.296A3.745 3.745 0 0 1 3 12c0-1.268.63-2.39 1.593-3.068a3.745 3.745 0 0 1 1.043-3.296a3.746 3.746 0 0 1 3.296-1.043A3.746 3.746 0 0 1 12 3c1.268 0 2.39.63 3.068 1.593a3.746 3.746 0 0 1 3.296 1.043a3.746 3.746 0 0 1 1.043 3.296A3.745 3.745 0 0 1 21 12'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-chevron-double-right{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m5.25 4.5l7.5 7.5l-7.5 7.5m6-15l7.5 7.5l-7.5 7.5'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-chevron-right{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m8.25 4.5l7.5 7.5l-7.5 7.5'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-clock{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M12 6v6h4.5m4.5 0a9 9 0 1 1-18 0a9 9 0 0 1 18 0'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-close{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-dinersclub{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 134' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%23006095' d='M99.285 133.86c36.446.177 69.714-29.66 69.714-65.956C169 28.215 135.731.782 99.285.794H67.92C31.037.781.68 28.221.68 67.903c0 36.305 30.357 66.133 67.24 65.956z'/%3E%3Cpath fill='%23FFF' d='M81.91 103.247V31.175c14.516 5.557 24.822 19.583 24.847 36.034c-.025 16.453-10.33 30.47-24.848 36.038M29.388 67.209c.032-16.441 10.322-30.459 24.83-36.032v72.055C39.71 97.664 29.42 83.654 29.389 67.21M68.066 6.294c-33.701.01-61.011 27.272-61.02 60.915c.009 33.639 27.319 60.895 61.02 60.905c33.714-.01 61.028-27.266 61.033-60.905c-.005-33.643-27.32-60.904-61.033-60.915'/%3E%3Cpath fill='%231A1918' d='M190.373 29.421c0-6.293-3.292-5.88-6.445-5.947v-1.819c2.733.133 5.536.133 8.275.133c2.943 0 6.941-.133 12.133-.133c18.157 0 28.042 12.103 28.042 24.497c0 6.929-4.063 24.353-28.887 24.353c-3.573 0-6.874-.138-10.167-.138c-3.153 0-6.243.066-9.396.138v-1.82c4.204-.422 6.243-.561 6.445-5.32zm6.872 32.825c0 5.388 3.862 6.017 7.295 6.017c15.149 0 20.124-11.407 20.124-21.835c0-13.083-8.415-22.53-21.947-22.53c-2.88 0-4.203.205-5.472.28zm37.593 6.44h1.33c1.961 0 3.365 0 3.365-2.315V47.41c0-3.077-1.05-3.505-3.648-4.896v-1.122c3.296-.985 7.226-2.308 7.503-2.517c.493-.28.912-.355 1.263-.355c.347 0 .492.421.492.985v26.866c0 2.315 1.543 2.315 3.508 2.315h1.19v1.82c-2.387 0-4.843-.14-7.36-.14c-2.526 0-5.052.069-7.643.14zm7.502-40.94c-1.827 0-3.436-1.68-3.436-3.5c0-1.752 1.686-3.366 3.436-3.366c1.818 0 3.435 1.476 3.435 3.366c0 1.892-1.545 3.5-3.435 3.5m14.163 20.081c0-2.587-.776-3.285-4.064-4.614v-1.33c3.012-.978 5.884-1.892 9.254-3.363c.208 0 .414.143.414.7v4.55c4.003-2.865 7.44-5.25 12.144-5.25c5.956 0 8.058 4.34 8.058 9.8v18.05c0 2.315 1.54 2.315 3.506 2.315h1.263v1.82c-2.46 0-4.914-.14-7.432-.14c-2.527 0-5.053.069-7.576.14v-1.82h1.26c1.968 0 3.364 0 3.364-2.315V48.25c0-3.993-2.443-5.948-6.446-5.948c-2.243 0-5.82 1.817-8.141 3.358v20.71c0 2.315 1.552 2.315 3.516 2.315h1.26v1.82c-2.454 0-4.912-.14-7.436-.14c-2.521 0-5.05.069-7.571.14v-1.82h1.265c1.963 0 3.362 0 3.362-2.315zm35.906 3.365c-.144.63-.144 1.677 0 4.058c.413 6.647 4.702 12.103 10.303 12.103c3.863 0 6.882-2.1 9.47-4.686l.98.98c-3.226 4.27-7.224 7.908-12.968 7.908c-11.154 0-13.395-10.78-13.395-15.256c0-13.718 9.252-17.779 14.157-17.779c5.686 0 11.791 3.568 11.853 10.986c0 .426 0 .84-.062 1.265l-.637.42zm12.414-2.242c1.752 0 1.955-.911 1.955-1.75c0-3.568-2.17-6.437-6.1-6.437c-4.275 0-7.22 3.142-8.06 8.187zm9.603 19.736h1.894c1.956 0 3.36 0 3.36-2.315v-19.66c0-2.169-2.591-2.591-3.645-3.15v-1.047c5.119-2.172 7.925-3.994 8.565-3.994c.412 0 .62.21.62.914v6.297h.15c1.746-2.73 4.697-7.21 8.972-7.21c1.754 0 3.995 1.187 3.995 3.708c0 1.89-1.329 3.575-3.291 3.575c-2.183 0-2.183-1.684-4.634-1.684c-1.193 0-5.118 1.61-5.118 5.812v16.44c0 2.314 1.399 2.314 3.364 2.314h3.925v1.82c-3.858-.071-6.793-.14-9.812-.14c-2.874 0-5.82.069-8.345.14zm26.996-7.91c.913 4.617 3.716 8.539 8.838 8.539c4.13 0 5.672-2.52 5.672-4.967c0-8.26-15.28-5.603-15.28-16.867c0-3.922 3.159-8.96 10.868-8.96c2.241 0 5.256.632 7.989 2.033l.495 7.132h-1.614c-.7-4.405-3.153-6.924-7.643-6.924c-2.808 0-5.469 1.609-5.469 4.617c0 8.194 16.268 5.67 16.268 16.656c0 4.618-3.717 9.521-12.063 9.521c-2.804 0-6.1-.981-8.552-2.38l-.773-8.048zm83.441-26.456h-1.749c-1.335-8.182-7.156-11.475-15.005-11.475c-8.068 0-19.781 5.387-19.781 22.182c0 14.144 10.105 24.288 20.9 24.288c6.939 0 12.694-4.757 14.098-12.11l1.609.42l-1.609 10.217c-2.946 1.826-10.87 3.713-15.502 3.713c-16.404 0-26.78-10.568-26.78-26.315c0-14.348 12.83-24.638 26.573-24.638c5.677 0 11.149 1.825 16.546 3.716zm2.53 34.366h1.325c1.97 0 3.373 0 3.373-2.315V27.398c0-4.553-1.052-4.693-3.716-5.462v-1.12c2.802-.908 5.748-2.168 7.22-3.011c.766-.417 1.331-.772 1.538-.772c.427 0 .568.424.568.985V66.37c0 2.315 1.541 2.315 3.507 2.315h1.184v1.82c-2.376 0-4.832-.14-7.357-.14c-2.522 0-5.047.069-7.642.14zm45.022-2.033c0 1.264.768 1.33 1.959 1.33c.843 0 1.89-.066 2.806-.066v1.473c-3.02.278-8.767 1.747-10.1 2.166l-.354-.21v-5.667c-4.2 3.428-7.431 5.877-12.415 5.877c-3.783 0-7.71-2.449-7.71-8.325v-17.92c0-1.82-.278-3.57-4.201-3.919v-1.33c2.527-.07 8.128-.488 9.043-.488c.777 0 .777.487.777 2.028v18.052c0 2.103 0 8.12 6.096 8.12c2.384 0 5.539-1.819 8.48-4.263V44.677c0-1.396-3.363-2.163-5.882-2.864v-1.26c6.304-.422 10.237-.98 10.934-.98c.567 0 .567.488.567 1.262zm13.952-23.092c2.8-2.38 6.589-5.04 10.449-5.04c8.134 0 13.036 7.073 13.036 14.698c0 9.167-6.727 18.337-16.761 18.337c-5.184 0-7.918-1.682-9.744-2.449l-2.1 1.606l-1.468-.767c.62-4.129.979-8.189.979-12.457V27.398c0-4.553-1.057-4.693-3.72-5.462v-1.12c2.811-.908 5.749-2.168 7.224-3.011c.77-.417 1.328-.772 1.546-.772c.42 0 .559.424.559.985zm0 19.033c0 2.66 2.522 7.144 7.22 7.144c7.505 0 10.658-7.352 10.658-13.584c0-7.556-5.744-13.851-11.216-13.851c-2.6 0-4.77 1.68-6.662 3.291zm-302.518 48.601h.537c1.371 0 2.82-.185 2.82-2.168V89.078c0-1.986-1.449-2.175-2.82-2.175h-.537v-1.142c1.488 0 3.778.15 5.652.15c1.906 0 4.192-.15 5.985-.15v1.142h-.535c-1.368 0-2.821.189-2.821 2.175v19.949c0 1.983 1.453 2.168 2.82 2.168h.536v1.148c-1.83 0-4.125-.15-6.025-.15c-1.872 0-4.124.15-5.612.15zm37.85-6.359l.077-.074V90.484c0-3.124-2.177-3.58-3.32-3.58h-.84V85.76c1.794 0 3.55.151 5.341.151c1.564 0 3.134-.151 4.694-.151v1.142h-.569c-1.607 0-3.4.306-3.4 4.836v17.33c0 1.331.039 2.662.226 3.842h-1.45l-19.646-21.86v15.692c0 3.313.643 4.452 3.584 4.452h.647v1.148c-1.639 0-3.277-.15-4.92-.15c-1.712 0-3.47.15-5.187.15v-1.148h.534c2.632 0 3.431-1.786 3.431-4.829v-16.04c0-2.129-1.759-3.423-3.469-3.423h-.496V85.76c1.448 0 2.936.151 4.382.151c1.147 0 2.256-.151 3.4-.151zm11.666-17.172c-2.866 0-2.973.686-3.547 3.462h-1.143c.148-1.064.342-2.129.458-3.236c.154-1.068.228-2.13.228-3.233h.915c.308 1.144 1.26 1.104 2.296 1.104h19.682c1.032 0 1.983-.038 2.063-1.182l.91.153c-.148 1.029-.302 2.054-.418 3.085c-.07 1.029-.07 2.058-.07 3.083l-1.147.423c-.078-1.408-.27-3.659-2.824-3.659h-6.257v20.26c0 2.936 1.337 3.271 3.165 3.271h.724v1.148c-1.486 0-4.159-.15-6.216-.15c-2.29 0-4.962.15-6.452.15v-1.148h.724c2.106 0 3.168-.187 3.168-3.192V87.664zm23.082 23.531h.536c1.373 0 2.824-.185 2.824-2.168V89.078c0-1.986-1.451-2.175-2.824-2.175h-.536v-1.142c2.323 0 6.3.15 9.498.15c3.21 0 7.172-.15 9.765-.15a64.604 64.604 0 0 0 .083 5.827l-1.15.305c-.184-2.473-.64-4.453-4.65-4.453h-5.297v9.973h4.534c2.288 0 2.788-1.29 3.014-3.351h1.142a88.616 88.616 0 0 0-.114 4.455c0 1.451.04 2.896.114 4.343l-1.142.226c-.226-2.282-.342-3.768-2.978-3.768h-4.57v8.872c0 2.475 2.203 2.475 4.646 2.475c4.582 0 6.6-.307 7.747-4.642l1.067.262c-.498 2.023-.954 4.036-1.293 6.058c-2.446 0-6.833-.15-10.263-.15c-3.438 0-7.979.15-10.153.15zm26.859-21.4c0-2.778-1.526-2.892-2.712-2.892h-.687V85.76c1.221 0 3.586.153 5.915.153c2.286 0 4.12-.153 6.141-.153c4.805 0 9.083 1.294 9.083 6.707c0 3.421-2.288 5.516-5.303 6.703l6.523 9.74c1.07 1.611 1.829 2.063 3.701 2.284v1.15c-1.26 0-2.482-.15-3.739-.15c-1.182 0-2.407.15-3.584.15c-2.938-3.846-5.463-7.958-7.94-12.344h-2.513v8.153c0 2.936 1.37 3.041 3.122 3.041h.69v1.15c-2.18 0-4.385-.15-6.562-.15c-1.834 0-3.627.15-5.534.15v-1.15h.687c1.417 0 2.712-.638 2.712-2.05zm4.885 8.832h1.864c3.819 0 5.874-1.443 5.874-5.939c0-3.384-2.173-5.555-5.572-5.555c-1.146 0-1.635.117-2.166.15zm43.68 6.21l.069-.075V90.484c0-3.124-2.17-3.58-3.314-3.58h-.837V85.76c1.793 0 3.542.151 5.34.151c1.567 0 3.123-.151 4.7-.151v1.142h-.577c-1.6 0-3.395.306-3.395 4.836v17.33c0 1.331.036 2.662.225 3.842h-1.447l-19.648-21.86v15.692c0 3.313.646 4.452 3.584 4.452h.648v1.148c-1.638 0-3.28-.15-4.918-.15c-1.723 0-3.477.15-5.192.15v-1.148h.53c2.636 0 3.437-1.786 3.437-4.829v-16.04c0-2.129-1.755-3.423-3.47-3.423h-.497V85.76c1.445 0 2.94.151 4.389.151c1.135 0 2.246-.151 3.394-.151zm12.093 2.06c-.388 1.293-.847 2.289-.847 2.968c0 1.145 1.604 1.33 2.86 1.33h.426v1.148a85.899 85.899 0 0 0-4.625-.148a68.39 68.39 0 0 0-4.115.148v-1.148h.231c1.487 0 2.75-.874 3.313-2.477l6.112-17.471c.49-1.41 1.184-3.315 1.413-4.729c1.215-.413 2.744-1.173 3.47-1.632c.116-.04.183-.08.304-.08c.114 0 .184 0 .27.118c.114.304.221.647.345.95l7.02 19.918c.455 1.331.91 2.739 1.403 3.887c.463 1.066 1.264 1.516 2.525 1.516h.228v1.148a107.493 107.493 0 0 0-5.264-.148c-1.868 0-3.782.065-5.728.148v-1.148h.424c.873 0 2.366-.148 2.366-1.102c0-.492-.344-1.52-.77-2.742l-1.484-4.416h-8.66zm5.568-16.871h-.078l-3.549 10.778h7.13zm16.444-2.362c-2.863 0-2.977.686-3.55 3.462h-1.147c.15-1.064.343-2.129.462-3.236c.152-1.068.223-2.13.223-3.233h.92c.303 1.144 1.261 1.104 2.287 1.104h19.691c1.026 0 1.979-.038 2.057-1.182l.914.153c-.147 1.029-.3 2.054-.414 3.085c-.085 1.029-.085 2.058-.085 3.083l-1.141.423c-.07-1.408-.262-3.659-2.82-3.659h-6.258v20.26c0 2.936 1.339 3.271 3.166 3.271h.726v1.148c-1.488 0-4.157-.15-6.22-.15c-2.284 0-4.961.15-6.448.15v-1.148h.724c2.103 0 3.17-.187 3.17-3.192V87.664zm23.264 23.531h.534c1.378 0 2.82-.185 2.82-2.168V89.078c0-1.986-1.442-2.175-2.82-2.175h-.534v-1.142c1.492 0 3.776.15 5.643.15c1.913 0 4.202-.15 5.998-.15v1.142h-.534c-1.376 0-2.83.189-2.83 2.175v19.949c0 1.983 1.454 2.168 2.83 2.168h.534v1.148c-1.834 0-4.124-.15-6.03-.15c-1.872 0-4.12.15-5.611.15zm26.857-26.003c8.134 0 14.616 5.029 14.616 13.14c0 8.759-6.296 14.581-14.42 14.581c-8.095 0-14.272-5.482-14.272-13.67c0-7.918 6.141-14.051 14.076-14.051m.576 26.045c7.404 0 8.692-6.516 8.692-12.067c0-5.568-3.005-12.306-9.342-12.306c-6.678 0-8.66 5.943-8.66 11.04c0 6.817 3.128 13.333 9.31 13.333m39.75-6.4l.079-.075V90.484c0-3.124-2.181-3.58-3.326-3.58h-.827V85.76c1.786 0 3.544.151 5.33.151c1.572 0 3.135-.151 4.702-.151v1.142h-.577c-1.599 0-3.395.306-3.395 4.836v17.33c0 1.331.036 2.662.23 3.842h-1.448l-19.654-21.86v15.692c0 3.313.65 4.452 3.584 4.452h.652v1.148c-1.642 0-3.278-.15-4.92-.15c-1.717 0-3.477.15-5.195.15v-1.148h.539c2.636 0 3.43-1.786 3.43-4.829v-16.04c0-2.129-1.746-3.423-3.47-3.423h-.5V85.76c1.453 0 2.942.151 4.39.151c1.143 0 2.247-.151 3.395-.151zm12.088 2.06c-.375 1.293-.837 2.289-.837 2.968c0 1.145 1.607 1.33 2.858 1.33h.427v1.148a86.04 86.04 0 0 0-4.62-.148a67.91 67.91 0 0 0-4.114.148v-1.148h.216c1.494 0 2.757-.874 3.32-2.477l6.114-17.471c.494-1.41 1.184-3.315 1.406-4.729c1.223-.413 2.747-1.173 3.479-1.632c.109-.04.185-.08.3-.08c.115 0 .188 0 .265.118c.115.304.233.647.348.95l7.016 19.918c.458 1.331.914 2.739 1.415 3.887c.458 1.066 1.263 1.516 2.518 1.516h.233v1.148c-1.72-.083-3.438-.148-5.272-.148c-1.864 0-3.776.065-5.722.148v-1.148h.421c.872 0 2.37-.148 2.37-1.102c0-.492-.347-1.52-.772-2.742l-1.482-4.416h-8.662zm5.576-16.871h-.076l-3.554 10.778h7.141zm24.382 18.583c0 1.526 1.06 1.98 2.281 2.136c1.565.115 3.282.115 5.042-.078c1.6-.192 2.972-1.104 3.658-2.058c.61-.839.951-1.903 1.184-2.742h1.106c-.419 2.17-.955 4.307-1.415 6.476c-3.349 0-6.718-.148-10.067-.148c-3.363 0-6.716.148-10.074.148v-1.148h.526c1.38 0 2.871-.185 2.871-2.549v-19.57c0-1.984-1.492-2.173-2.871-2.173h-.526v-1.142c2.018 0 4.005.151 6.024.151c1.953 0 3.857-.151 5.804-.151v1.142h-.959c-1.446 0-2.584.043-2.584 2.057z'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-discover{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 86' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cdefs%3E%3ClinearGradient id='logosDiscover0' x1='19.414%25' x2='88.601%25' y1='9.063%25' y2='80.499%25'%3E%3Cstop offset='0%25' stop-color='%23F34F26'/%3E%3Cstop offset='100%25' stop-color='%23F69E35'/%3E%3C/linearGradient%3E%3Cfilter id='logosDiscover1' width='200%25' height='200%25' x='-50%25' y='-50%25' filterUnits='objectBoundingBox'%3E%3CfeMorphology in='SourceAlpha' radius='1' result='shadowSpreadInner1'/%3E%3CfeGaussianBlur in='shadowSpreadInner1' result='shadowBlurInner1' stdDeviation='4'/%3E%3CfeOffset dx='3' dy='3' in='shadowBlurInner1' result='shadowOffsetInner1'/%3E%3CfeComposite in='shadowOffsetInner1' in2='SourceAlpha' k2='-1' k3='1' operator='arithmetic' result='shadowInnerInner1'/%3E%3CfeColorMatrix in='shadowInnerInner1' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/%3E%3C/filter%3E%3Cpath id='logosDiscover2' d='M270.356.365c-23.982 0-43.44 18.735-43.44 41.857c0 24.584 18.613 42.96 43.44 42.96c24.208 0 43.322-18.62 43.322-42.477c0-23.716-18.986-42.34-43.322-42.34'/%3E%3C/defs%3E%3Cuse fill='url(%23logosDiscover0)' fill-rule='evenodd' href='%23logosDiscover2'/%3E%3Cuse filter='url(%23logosDiscover1)' href='%23logosDiscover2'/%3E%3Cpath fill='%230B1015' d='M23.746 1.891H.393v81.454h23.231c12.326 0 21.24-2.92 29.06-9.398c9.278-7.695 14.78-19.298 14.78-31.29c0-24.048-17.965-40.766-43.718-40.766m18.572 61.177c-5.021 4.53-11.486 6.488-21.76 6.488H16.29V15.684h4.268c10.274 0 16.491 1.834 21.76 6.592c5.495 4.886 8.772 12.452 8.772 20.265c0 7.83-3.277 15.66-8.772 20.527m32.48 20.277H90.67V1.891H74.8zm54.728-50.209c-9.539-3.534-12.346-5.865-12.346-10.246c0-5.134 4.998-9.039 11.849-9.039c4.763 0 8.671 1.953 12.836 6.58l8.295-10.853C143.32 3.581 135.139.532 126.214.532c-14.398 0-25.399 10.02-25.399 23.32c0 11.246 5.126 16.981 20.032 22.369c6.232 2.187 9.4 3.646 10.992 4.643c3.175 2.077 4.77 4.998 4.77 8.415c0 6.606-5.257 11.484-12.351 11.484c-7.574 0-13.674-3.782-17.34-10.865L96.67 69.802c7.314 10.733 16.11 15.512 28.214 15.512c16.488 0 28.084-11.007 28.084-26.758c0-12.949-5.36-18.816-23.442-25.42m28.448 9.522c0 23.965 18.816 42.525 43.006 42.525c6.839 0 12.701-1.352 19.915-4.759V61.727c-6.36 6.358-11.98 8.916-19.19 8.916c-15.996 0-27.363-11.606-27.363-28.102c0-15.626 11.722-27.964 26.638-27.964c7.561 0 13.311 2.685 19.915 9.158V5.04C213.933 1.51 208.183.054 201.343.054c-24.067 0-43.369 18.935-43.369 42.604m191.652 13.948L327.883 1.891h-17.346l34.58 83.535h8.543L388.843 1.89h-17.217zm46.44 26.74h45.065v-13.79h-29.189V47.555h28.072V33.763h-28.072v-18.08h29.189V1.892h-45.066zM504.02 25.93c0-15.259-10.49-24.039-28.823-24.039H451.62v81.454h15.895V50.608h2.08l21.975 32.737h19.544l-25.667-34.31c11.988-2.452 18.573-10.639 18.573-23.105m-31.882 13.452h-4.623V14.7h4.877c9.915 0 15.287 4.165 15.287 12.092c0 8.177-5.372 12.59-15.541 12.59'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-elo{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 197' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%23FC0' d='M79.817 43.344A57.633 57.633 0 0 1 98.12 40.39c27.918 0 51.227 19.83 56.566 46.188l39.576-8.073C185.179 33.711 145.594 0 98.12 0a97.947 97.947 0 0 0-31.106 5.04z'/%3E%3Cpath fill='%2300A0DE' d='m33.111 171.604l26.763-30.258c-11.946-10.584-19.484-26.03-19.484-43.239c0-17.196 7.527-32.635 19.466-43.206L33.091 24.64C12.802 42.614 0 68.869 0 98.107c0 29.256 12.807 55.519 33.111 73.497'/%3E%3Cpath fill='%23EC3413' d='M154.676 109.69c-5.362 26.345-28.646 46.137-56.556 46.137c-6.405 0-12.572-1.033-18.32-2.965l-12.821 38.32c9.779 3.264 20.25 5.032 31.141 5.032c47.428 0 87.009-33.655 96.126-78.408z'/%3E%3Cpath d='M228.87 142.622c-1.297-2.1-3.06-5.46-4.12-7.932c-6.267-14.55-6.567-29.607-1.274-44.061c5.819-15.852 16.935-27.988 31.298-34.167c18.057-7.771 38.028-6.239 55.334 4.03c10.994 6.307 18.788 16.045 24.706 29.813l.549 1.339l1.024 2.66c.165.429.327.846.489 1.246zm36.065-62.803c-12.823 5.511-19.433 17.54-18.075 31.644l54.32-23.378c-9.341-10.979-21.499-14.617-36.245-8.266m64.014 64.904l-20.996-14.038l-.03.031l-1.125-.758c-3.24 5.26-8.299 9.52-14.68 12.287c-12.142 5.28-23.394 3.923-31.474-3.164l-.743 1.13c-.008-.013-.01-.023-.024-.023l-13.78 20.617a58.958 58.958 0 0 0 10.952 6c15.223 6.323 30.798 6.03 46.142-.643c11.099-4.81 19.807-12.144 25.758-21.44m45.678-118.624v114.62l17.82 7.222l-10.126 23.627l-19.67-8.191c-4.416-1.911-7.42-4.838-9.696-8.14c-2.175-3.366-3.802-7.986-3.802-14.206V26.099zm46.165 85.42c.01-9.76 4.32-18.513 11.14-24.462L413.649 66.67c-12.4 10.96-20.21 26.976-20.224 44.82c-.02 17.85 7.778 33.882 20.165 44.871l18.262-20.406c-6.787-5.972-11.068-14.699-11.06-24.437m32.484 32.533c-3.6-.01-7.067-.605-10.3-1.681l-8.731 25.96a59.903 59.903 0 0 0 19.002 3.106c28.949.028 53.121-20.512 58.722-47.817l-26.837-5.48c-3.052 14.8-16.157 25.922-31.856 25.912m.08-92.389a59.768 59.768 0 0 0-18.985 3.056l8.655 25.984a32.824 32.824 0 0 1 10.304-1.662c15.736.015 28.85 11.203 31.83 26.045L512 99.642c-5.524-27.345-29.673-47.961-58.645-47.979'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-facebook{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256c0 120 82.7 220.8 194.2 248.5V334.2h-52.8V256h52.8v-33.7c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287v175.9C413.8 494.8 512 386.9 512 256'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-heart{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M21 8.25c0-2.485-2.099-4.5-4.687-4.5c-1.936 0-3.598 1.126-4.313 2.733c-.715-1.607-2.377-2.733-4.312-2.733C5.098 3.75 3 5.765 3 8.25c0 7.22 9 12 9 12s9-4.78 9-12'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-hipercard{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 223' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%23B82126' d='M140.555 0H87.49C64.044 1.109 44.878 10.552 39.344 30.026c-2.885 10.157-4.473 21.31-6.73 31.839C21.144 115.398 10.972 170.404 0 222.867h413.12c31.939 0 53.867-6.749 59.794-32.096c2.753-11.776 5.39-25.114 8.024-38.051C491.206 102.278 501.483 51.838 512 0z'/%3E%3Cpath fill='%23FFF' d='M353.7 133.153c-5.73 5.609-21.813 7.202-20.167-6.205c1.366-11.136 13.49-13.502 26.63-11.894c-.977 6.091-2.097 13.825-6.463 18.1m-18.1-43.437c-.546 3.072-1.386 5.852-2.067 8.79c6.56-1.644 26.99-6.687 28.958 2.069c.654 2.91-.474 6-1.293 8.274c-18.474-1.75-33.531 1.32-37.49 14.479c-2.653 8.814.297 17.488 5.947 19.91c10.881 4.66 24.117-.68 28.699-8.016c-.476 2.54-.927 5.105-.776 8.274h9.566c.102-9.162 1.435-16.578 2.844-24.822c1.202-7.02 3.462-13.971 3.102-20.167c-.82-14.19-24.33-9.171-37.49-8.79m95.924 47.832c-7.485.16-11.206-4.471-11.377-12.151c-.298-13.45 5.602-28.394 17.582-29.734c5.578-.624 9.616.673 13.703 2.069c-3.751 15.108-2.397 39.44-19.908 39.816m24.82-71.101c-.952 8.354-2.226 16.389-3.877 24.044c-27.271-8.631-43.996 11.433-43.696 36.198c.059 4.79.883 9.54 3.879 12.927c5.162 5.84 19.944 7.236 27.406 2.328c1.446-.95 2.921-2.678 3.88-3.878c.718-.903 1.86-3.266 2.066-2.587c-.391 2.625-.978 5.056-1.033 8.017h10.084c1.942-27.877 7.952-51.688 12.41-77.05zM171.68 133.412c-5.949 6.3-20.572 6.203-21.718-4.396c-.5-4.612 1.219-9.448 2.068-14.22c.86-4.83 1.478-9.464 2.326-13.704c5.859-7.154 23.075-8.017 24.822 3.879c1.516 10.328-2.572 23.224-7.498 28.441m8.791-43.696c-9.41-3.534-20.879.685-25.85 4.699c.017.176-.118.2-.265.214c.085-.072.177-.143.265-.214a.233.233 0 0 0-.006-.044c.084-1.727.692-2.929.776-4.655h-9.566c-3.987 26.523-8.714 52.304-13.704 77.824h11.118c1.609-9.94 2.672-20.424 4.913-29.733c2.539 9.79 19.117 7.92 26.113 4.137c14.435-7.805 25.569-44.954 6.206-52.228m52.744 18.616h-26.113c.826-6.003 6.227-12.602 14.737-12.927c8.009-.307 13.743 2.94 11.376 12.927m-10.6-19.65c-8.034.619-14.824 2.93-19.65 8.015c-5.92 6.236-10.713 20.023-9.309 32.578c2.004 17.912 24.306 17.27 42.145 12.927c.303-3.143 1.064-5.83 1.551-8.79c-7.349 2.75-20.107 6.588-27.665 1.81c-5.706-3.608-5.74-12.745-3.878-20.685c11.989-.381 24.45-.308 36.455 0c.762-5.628 2.942-11.764 1.034-17.322c-2.515-7.339-11.52-9.238-20.683-8.533m-97.733 1.034c-.301.044-.281.41-.26.775c-2.449 18.321-5.764 35.777-9.307 53.005h11.118c2.671-18.445 5.731-36.499 9.566-53.78zm290.096.258c-9.826-4.912-18.006 3.331-21.2 8.274c.909-2.536.96-5.931 1.808-8.532h-9.825c-2.648 18.467-5.843 36.388-9.566 53.78h11.376c.072-7.128 1.472-12.4 2.585-19.392c2.378-14.926 5.868-31.294 23.27-26.372c.578-2.525.818-5.388 1.552-7.758m-124.882 40.852c-1.024-2.647-1.29-7.02-1.034-10.342c.575-7.472 3.297-16.567 7.498-20.684c5.798-5.683 17.244-4.743 26.372-1.552c.284-3.077.902-5.821 1.294-8.79c-14.973-2.445-29.181-.924-36.715 6.98c-7.374 7.739-12.209 25.524-8.791 36.715c4 13.095 21.934 13.807 36.457 8.791c.642-2.632.982-5.566 1.551-8.274c-7.935 4.123-23.105 6.266-26.632-2.844m-6.204-41.11c-9.859-3.981-17.608 2.747-21.2 9.05c.813-2.804 1.15-6.088 1.808-9.05h-9.825c-2.402 18.628-5.942 36.117-9.308 53.78h11.119c1.558-10.485 2.23-24.618 5.687-34.647c2.763-8.014 9.993-14.842 20.426-11.117c.146-2.957.993-5.214 1.293-8.016M104.714 67.998c-1.588 10.305-3.377 20.41-5.171 30.509c-11.518.121-23.278.569-34.387-.26c2.098-9.879 3.603-20.354 5.687-30.25h-12.41c-4.443 25.207-8.483 50.813-13.443 75.5h12.668c1.988-12.665 3.846-25.458 6.463-37.49c10.803-.267 23.75-.73 34.13.258c-2.14 12.511-4.727 24.575-6.722 37.232h12.669c4.07-25.577 8.36-50.935 13.445-75.498zm31.543 11.376c2.217-1.526 5.071-8.481 1.81-11.376c-1.033-.917-2.761-1.183-5.17-.775c-2.237.377-3.523 1.136-4.396 2.326c-1.406 1.913-2.693 7.682-.518 9.825c2.118 2.087 6.864.97 8.274 0'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-home{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m2.25 12l8.955-8.955a1.124 1.124 0 0 1 1.59 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-instagram{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9S287.7 141 224.1 141m0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7s74.7 33.5 74.7 74.7s-33.6 74.7-74.7 74.7m146.4-194.3c0 14.9-12 26.8-26.8 26.8c-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8s26.8 12 26.8 26.8m76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9c-26.2-26.2-58-34.4-93.9-36.2c-37-2.1-147.9-2.1-184.9 0c-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9c1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0c35.9-1.7 67.7-9.9 93.9-36.2c26.2-26.2 34.4-58 36.2-93.9c2.1-37 2.1-147.8 0-184.8M398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6c-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6c-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6c29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6c11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-lock-closed{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M16.5 10.5V6.75a4.5 4.5 0 1 0-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H6.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-magnifying-glass{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m21 21l-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-mastercard{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 199' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M46.54 198.011V184.84c0-5.05-3.074-8.342-8.343-8.342c-2.634 0-5.488.878-7.464 3.732c-1.536-2.415-3.731-3.732-7.024-3.732c-2.196 0-4.39.658-6.147 3.073v-2.634h-4.61v21.074h4.61v-11.635c0-3.731 1.976-5.488 5.05-5.488c3.072 0 4.61 1.976 4.61 5.488v11.635h4.61v-11.635c0-3.731 2.194-5.488 5.048-5.488c3.074 0 4.61 1.976 4.61 5.488v11.635zm68.271-21.074h-7.463v-6.366h-4.61v6.366h-4.171v4.17h4.17v9.66c0 4.83 1.976 7.683 7.245 7.683c1.976 0 4.17-.658 5.708-1.536l-1.318-3.952c-1.317.878-2.853 1.098-3.951 1.098c-2.195 0-3.073-1.317-3.073-3.513v-9.44h7.463zm39.076-.44c-2.634 0-4.39 1.318-5.488 3.074v-2.634h-4.61v21.074h4.61v-11.854c0-3.512 1.536-5.488 4.39-5.488c.878 0 1.976.22 2.854.439l1.317-4.39c-.878-.22-2.195-.22-3.073-.22m-59.052 2.196c-2.196-1.537-5.269-2.195-8.562-2.195c-5.268 0-8.78 2.634-8.78 6.805c0 3.513 2.634 5.488 7.244 6.147l2.195.22c2.415.438 3.732 1.097 3.732 2.195c0 1.536-1.756 2.634-4.83 2.634c-3.073 0-5.488-1.098-7.025-2.195l-2.195 3.512c2.415 1.756 5.708 2.634 9 2.634c6.147 0 9.66-2.853 9.66-6.805c0-3.732-2.854-5.708-7.245-6.366l-2.195-.22c-1.976-.22-3.512-.658-3.512-1.975c0-1.537 1.536-2.415 3.951-2.415c2.635 0 5.269 1.097 6.586 1.756zm122.495-2.195c-2.635 0-4.391 1.317-5.489 3.073v-2.634h-4.61v21.074h4.61v-11.854c0-3.512 1.537-5.488 4.39-5.488c.879 0 1.977.22 2.855.439l1.317-4.39c-.878-.22-2.195-.22-3.073-.22m-58.833 10.976c0 6.366 4.39 10.976 11.196 10.976c3.073 0 5.268-.658 7.463-2.414l-2.195-3.732c-1.756 1.317-3.512 1.975-5.488 1.975c-3.732 0-6.366-2.634-6.366-6.805c0-3.951 2.634-6.586 6.366-6.805c1.976 0 3.732.658 5.488 1.976l2.195-3.732c-2.195-1.757-4.39-2.415-7.463-2.415c-6.806 0-11.196 4.61-11.196 10.976m42.588 0v-10.537h-4.61v2.634c-1.537-1.975-3.732-3.073-6.586-3.073c-5.927 0-10.537 4.61-10.537 10.976c0 6.366 4.61 10.976 10.537 10.976c3.073 0 5.269-1.097 6.586-3.073v2.634h4.61zm-16.904 0c0-3.732 2.415-6.805 6.366-6.805c3.732 0 6.367 2.854 6.367 6.805c0 3.732-2.635 6.805-6.367 6.805c-3.951-.22-6.366-3.073-6.366-6.805m-55.1-10.976c-6.147 0-10.538 4.39-10.538 10.976c0 6.586 4.39 10.976 10.757 10.976c3.073 0 6.147-.878 8.562-2.853l-2.196-3.293c-1.756 1.317-3.951 2.195-6.146 2.195c-2.854 0-5.708-1.317-6.367-5.05h15.587v-1.755c.22-6.806-3.732-11.196-9.66-11.196m0 3.951c2.853 0 4.83 1.757 5.268 5.05h-10.976c.439-2.854 2.415-5.05 5.708-5.05m114.372 7.025v-18.879h-4.61v10.976c-1.537-1.975-3.732-3.073-6.586-3.073c-5.927 0-10.537 4.61-10.537 10.976c0 6.366 4.61 10.976 10.537 10.976c3.074 0 5.269-1.097 6.586-3.073v2.634h4.61zm-16.903 0c0-3.732 2.414-6.805 6.366-6.805c3.732 0 6.366 2.854 6.366 6.805c0 3.732-2.634 6.805-6.366 6.805c-3.952-.22-6.366-3.073-6.366-6.805m-154.107 0v-10.537h-4.61v2.634c-1.537-1.975-3.732-3.073-6.586-3.073c-5.927 0-10.537 4.61-10.537 10.976c0 6.366 4.61 10.976 10.537 10.976c3.074 0 5.269-1.097 6.586-3.073v2.634h4.61zm-17.123 0c0-3.732 2.415-6.805 6.366-6.805c3.732 0 6.367 2.854 6.367 6.805c0 3.732-2.635 6.805-6.367 6.805c-3.951-.22-6.366-3.073-6.366-6.805'/%3E%3Cpath fill='%23FF5F00' d='M93.298 16.903h69.15v124.251h-69.15z'/%3E%3Cpath fill='%23EB001B' d='M97.689 79.029c0-25.245 11.854-47.637 30.074-62.126C114.373 6.366 97.47 0 79.03 0C35.343 0 0 35.343 0 79.029c0 43.685 35.343 79.029 79.029 79.029c18.44 0 35.343-6.366 48.734-16.904c-18.22-14.269-30.074-36.88-30.074-62.125'/%3E%3Cpath fill='%23F79E1B' d='M255.746 79.029c0 43.685-35.343 79.029-79.029 79.029c-18.44 0-35.343-6.366-48.734-16.904c18.44-14.488 30.075-36.88 30.075-62.125c0-25.245-11.855-47.637-30.075-62.126C141.373 6.366 158.277 0 176.717 0c43.686 0 79.03 35.563 79.03 79.029'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-phone{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 0 0 2.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 0 1-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 0 0-1.091-.852H4.5A2.25 2.25 0 0 0 2.25 4.5z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-pinterest{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 496 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M496 256c0 137-111 248-248 248c-25.6 0-50.2-3.9-73.4-11.1c10.1-16.5 25.2-43.5 30.8-65c3-11.6 15.4-59 15.4-59c8.1 15.4 31.7 28.5 56.8 28.5c74.8 0 128.7-68.8 128.7-154.3c0-81.9-66.9-143.2-152.9-143.2c-107 0-163.9 71.8-163.9 150.1c0 36.4 19.4 81.7 50.3 96.1c4.7 2.2 7.2 1.2 8.3-3.3c.8-3.4 5-20.3 6.9-28.1c.6-2.5.3-4.7-1.7-7.1c-10.1-12.5-18.3-35.3-18.3-56.6c0-54.7 41.4-107.6 112-107.6c60.9 0 103.6 41.5 103.6 100.9c0 67.1-33.9 113.6-78 113.6c-24.3 0-42.6-20.1-36.7-44.8c7-29.5 20.5-61.3 20.5-82.6c0-19-10.2-34.9-31.4-34.9c-24.9 0-44.9 25.7-44.9 60.2c0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256C0 119 111 8 248 8s248 111 248 248'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-pix{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M242.4 292.5c5.4-5.4 14.7-5.4 20.1 0l77 77c14.2 14.2 33.1 22 53.1 22h15.1l-97.1 97.1c-30.3 29.5-79.5 29.5-109.8 0l-97.5-97.4h9.3c20 0 38.9-7.8 53.1-22zm20.1-73.6c-6.4 5.5-14.6 5.6-20.1 0l-76.7-76.7c-14.2-15.1-33.1-22-53.1-22h-9.3l97.4-97.44c30.4-30.346 79.6-30.346 109.9 0l97.2 97.14h-15.2c-20 0-38.9 7.8-53.1 22zm-149.9-76.2c13.8 0 26.5 5.6 37.1 15.4l76.7 76.7c7.2 6.3 16.6 10.8 26.1 10.8c9.4 0 18.8-4.5 26-10.8l77-77c9.8-9.7 23.3-15.3 37.1-15.3h37.7l58.3 58.3c30.3 30.3 30.3 79.5 0 109.8l-58.3 58.3h-37.7c-13.8 0-27.3-5.6-37.1-15.4l-77-77c-13.9-13.9-38.2-13.9-52.1.1l-76.7 76.6c-10.6 9.8-23.3 15.4-37.1 15.4H80.78l-58.02-58c-30.346-30.3-30.346-79.5 0-109.8l58.02-58.1z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-shield-check-solid{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M12.516 2.17a.75.75 0 0 0-1.032 0a11.209 11.209 0 0 1-7.877 3.08a.75.75 0 0 0-.722.515A12.74 12.74 0 0 0 2.25 9.75c0 5.942 4.064 10.933 9.563 12.348a.749.749 0 0 0 .374 0c5.499-1.415 9.563-6.406 9.563-12.348c0-1.39-.223-2.73-.635-3.985a.75.75 0 0 0-.722-.516l-.143.001c-2.996 0-5.717-1.17-7.734-3.08m3.094 8.016a.75.75 0 1 0-1.22-.872l-3.236 4.53L9.53 12.22a.75.75 0 0 0-1.06 1.06l2.25 2.25a.75.75 0 0 0 1.14-.094z' clip-rule='evenodd'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-shopping-bag{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15.75 10.5V6a3.75 3.75 0 1 0-7.5 0v4.5m11.356-1.993l1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 0 1-1.12-1.243l1.264-12A1.125 1.125 0 0 1 5.513 7.5h12.974c.576 0 1.059.435 1.119 1.007M8.625 10.5a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0m7.5 0a.375.375 0 1 1-.75 0a.375.375 0 0 1 .75 0'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-threads{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M331.5 235.7c2.2.9 4.2 1.9 6.3 2.8c29.2 14.1 50.6 35.2 61.8 61.4c15.7 36.5 17.2 95.8-30.3 143.2c-36.2 36.2-80.3 52.5-142.6 53h-.3c-70.2-.5-124.1-24.1-160.4-70.2c-32.3-41-48.9-98.1-49.5-169.6v-.5c.5-71.5 17.1-128.6 49.4-169.6c36.3-46.1 90.3-69.7 160.5-70.2h.3c70.3.5 124.9 24 162.3 69.9c18.4 22.7 32 50 40.6 81.7l-40.4 10.8c-7.1-25.8-17.8-47.8-32.2-65.4c-29.2-35.8-73-54.2-130.5-54.6c-57 .5-100.1 18.8-128.2 54.4C72.1 146.1 58.5 194.3 58 256c.5 61.7 14.1 109.9 40.3 143.3c28 35.6 71.2 53.9 128.2 54.4c51.4-.4 85.4-12.6 113.7-40.9c32.3-32.2 31.7-71.8 21.4-95.9c-6.1-14.2-17.1-26-31.9-34.9c-3.7 26.9-11.8 48.3-24.7 64.8c-17.1 21.8-41.4 33.6-72.7 35.3c-23.6 1.3-46.3-4.4-63.9-16c-20.8-13.8-33-34.8-34.3-59.3c-2.5-48.3 35.7-83 95.2-86.4c21.1-1.2 40.9-.3 59.2 2.8c-2.4-14.8-7.3-26.6-14.6-35.2c-10-11.7-25.6-17.7-46.2-17.8h-.7c-16.6 0-39 4.6-53.3 26.3l-34.4-23.6c19.2-29.1 50.3-45.1 87.8-45.1h.8c62.6.4 99.9 39.5 103.7 107.7l-.2.2zm-156 68.8c1.3 25.1 28.4 36.8 54.6 35.3c25.6-1.4 54.6-11.4 59.5-73.2c-13.2-2.9-27.8-4.4-43.4-4.4c-4.8 0-9.6.1-14.4.4c-42.9 2.4-57.2 23.2-56.2 41.8z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-tiktok{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M448 209.91a210.06 210.06 0 0 1-122.77-39.25v178.72A162.55 162.55 0 1 1 185 188.31v89.89a74.62 74.62 0 1 0 52.23 71.18V0h88a121.18 121.18 0 0 0 1.86 22.17A122.18 122.18 0 0 0 381 102.39a121.43 121.43 0 0 0 67 20.14Z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-trash{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m14.74 9l-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 0 1-2.244 2.077H8.084a2.25 2.25 0 0 1-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 0 0-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 0 1 3.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 0 0-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 0 0-7.5 0'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-twitter{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M459.37 151.716c.325 4.548.325 9.097.325 13.645c0 138.72-105.583 298.558-298.558 298.558c-59.452 0-114.68-17.219-161.137-47.106c8.447.974 16.568 1.299 25.34 1.299c49.055 0 94.213-16.568 130.274-44.832c-46.132-.975-84.792-31.188-98.112-72.772c6.498.974 12.995 1.624 19.818 1.624c9.421 0 18.843-1.3 27.614-3.573c-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319c-28.264-18.843-46.781-51.005-46.781-87.391c0-19.492 5.197-37.36 14.294-52.954c51.655 63.675 129.3 105.258 216.365 109.807c-1.624-7.797-2.599-15.918-2.599-24.04c0-57.828 46.782-104.934 104.934-104.934c30.213 0 57.502 12.67 76.67 33.137c23.715-4.548 46.456-13.32 66.599-25.34c-7.798 24.366-24.366 44.833-46.132 57.827c21.117-2.273 41.584-8.122 60.426-16.243c-14.292 20.791-32.161 39.308-52.628 54.253'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-user-circle{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M17.982 18.725A7.488 7.488 0 0 0 12 15.75a7.488 7.488 0 0 0-5.982 2.975m11.964 0a9 9 0 1 0-11.963 0m11.962 0A8.966 8.966 0 0 1 12 21a8.966 8.966 0 0 1-5.982-2.275M15 9.75a3 3 0 1 1-6 0a3 3 0 0 1 6 0'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-visa{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 256 83' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cdefs%3E%3ClinearGradient id='logosVisa0' x1='45.974%25' x2='54.877%25' y1='-2.006%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23222357'/%3E%3Cstop offset='100%25' stop-color='%23254AA5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23logosVisa0)' d='M132.397 56.24c-.146-11.516 10.263-17.942 18.104-21.763c8.056-3.92 10.762-6.434 10.73-9.94c-.06-5.365-6.426-7.733-12.383-7.825c-10.393-.161-16.436 2.806-21.24 5.05l-3.744-17.519c4.82-2.221 13.745-4.158 23-4.243c21.725 0 35.938 10.724 36.015 27.351c.085 21.102-29.188 22.27-28.988 31.702c.069 2.86 2.798 5.912 8.778 6.688c2.96.392 11.131.692 20.395-3.574l3.636 16.95c-4.982 1.814-11.385 3.551-19.357 3.551c-20.448 0-34.83-10.87-34.946-26.428m89.241 24.968c-3.967 0-7.31-2.314-8.802-5.865L181.803 1.245h21.709l4.32 11.939h26.528l2.506-11.939H256l-16.697 79.963zm3.037-21.601l6.265-30.027h-17.158zm-118.599 21.6L88.964 1.246h20.687l17.104 79.963zm-30.603 0L53.941 26.782l-8.71 46.277c-1.022 5.166-5.058 8.149-9.54 8.149H.493L0 78.886c7.226-1.568 15.436-4.097 20.41-6.803c3.044-1.653 3.912-3.098 4.912-7.026L41.819 1.245H63.68l33.516 79.963z' transform='matrix(1 0 0 -1 0 82.668)'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-whatsapp{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222c0-59.3-25.2-115-67.1-157m-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4l-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2c0-101.7 82.8-184.5 184.6-184.5c49.3 0 95.6 19.2 130.4 54.1c34.8 34.9 56.2 81.2 56.1 130.5c0 101.8-84.9 184.6-186.6 184.6m101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18c-5.1-1.9-8.8-2.8-12.5 2.8c-3.7 5.6-14.3 18-17.6 21.8c-3.2 3.7-6.5 4.2-12 1.4c-32.6-16.3-54-29.1-75.5-66c-5.7-9.8 5.7-9.1 16.3-30.3c1.8-3.7.9-6.9-.5-9.7c-1.4-2.8-12.5-30.1-17.1-41.2c-4.5-10.8-9.1-9.3-12.5-9.5c-3.2-.2-6.9-.2-10.6-.2c-3.7 0-9.7 1.4-14.8 6.9c-5.1 5.6-19.4 19-19.4 46.3c0 27.3 19.9 53.7 22.6 57.4c2.8 3.7 39.1 59.7 94.8 83.8c35.2 15.2 49 16.5 66.6 13.9c10.7-1.6 32.8-13.4 37.4-26.4c4.6-13 4.6-24.1 3.2-26.4c-1.3-2.5-5-3.9-10.5-6.6'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.i-youtube{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 576 512' display='inline-block' vertical-align='middle' margin-bottom='0.22rem' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597c-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821c11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305m-317.51 213.508V175.185l142.739 81.205z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;vertical-align:middle;margin-bottom:.22rem;width:1em;height:1em}.uno-bm03rg{clip-path:polygon(20% 0,100% 0,100% 100%,0 100%);position:absolute;right:.5rem;top:2.25rem;background-color:rgb(var(--rgb-secondary) / .7);padding:.125rem .375rem .125rem .75rem;font-size:.75rem;line-height:1rem;--un-text-opacity:1;color:rgb(var(--rgb-on-secondary) / var(--un-text-opacity));transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.container{width:100%}.uno-3suct9{position:absolute;top:-1.5rem;left:0;z-index:-10;display:none;width:100%;border-radius:0;opacity:0;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.uno-c36cp5{top:50%!important;height:3rem;width:3rem;border-radius:9999px;background-color:transparent;font-size:1.875rem;line-height:2.25rem;--un-text-opacity:1;color:rgb(var(--rgb-primary) / var(--un-text-opacity));line-height:1;--un-ring-color:rgb(0 0 0 / .05);--un-backdrop-blur:blur(12px);-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.group:hover .uno-3suct9{z-index:10;opacity:1}.group:hover .uno-bm03rg{--un-translate-x:.5rem;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));--un-scale-x:1.1;--un-scale-y:1.1}.group\/shelf:hover .uno-c36cp5{opacity:.9}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}.uno-3suct9{display:block}}@media (min-width: 1024px){.container{max-width:1024px}.uno-c36cp5{background-color:#fffc;font-size:1.5rem;line-height:2rem;opacity:0;--un-shadow:var(--un-shadow-inset) 0 1px 2px 0 var(--un-shadow-color, rgb(0 0 0 / .05));box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow);--un-ring-width:1px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color)}.uno-c36cp5:hover{--un-bg-opacity:1;background-color:rgb(var(--rgb-primary-200) / var(--un-bg-opacity))}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.\[-moz-appearance\:_textfield\]{-moz-appearance:textfield}.\[\&_small\]\:\[font-size\:92\%\] small{font-size:92%}.\[\&\>div\]\:\[font-size\:90\%\]>div{font-size:90%}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.\!visible{visibility:visible!important}.visible{visibility:visible}.invisible{visibility:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.sticky{position:sticky}.open\:absolute[open]{position:absolute}.static{position:static}.-right-0\.5{right:-.125rem}.-right-1\.5{right:-.375rem}.-right-8{right:-2rem}.-top-1{top:-.25rem}.-top-2\.5{top:-.625rem}.\!-left-4{left:-1rem!important}.\!-right-4{right:-1rem!important}.\!bottom-3{bottom:.75rem!important}.\!left-1\/2{left:50%!important}.bottom-0{bottom:0}.bottom-5{bottom:1.25rem}.left-0{left:0}.left-1\/2{left:50%}.left-2{left:.5rem}.left-auto{left:auto}.right-0{right:0}.right-2{right:.5rem}.right-5{right:1.25rem}.top-0{top:0}.top-1\/2{top:50%}.top-2{top:.5rem}.top-3{top:.75rem}.open\:left-0[open]{left:0}.open\:top-0[open]{top:0}.line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2}.\!z-\[80\]{z-index:80!important}.z-\[11\]{z-index:11}.z-\[12\]{z-index:12}.z-\[14\]{z-index:14}.z-\[19\]{z-index:19}.z-\[59\]{z-index:59}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.z-40{z-index:40}.z-50{z-index:50}.hover\:z-\[1\]:hover{z-index:1}.order-first{order:-9999}.order-last{order:9999}.grid{display:grid}.col-span-2{grid-column:span 2/span 2}.col-span-3{grid-column:span 3/span 3}.grid-flow-col{grid-auto-flow:column}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.float-right{float:right}.\[\&\:\:-webkit-inner-spin-button\]\:m-0::-webkit-inner-spin-button,.\[\&\:\:-webkit-outer-spin-button\]\:m-0::-webkit-outer-spin-button,.m-0{margin:0}.-mx-4{margin-left:-1rem;margin-right:-1rem}.\[\&_i\]\:mx-2 i{margin-left:.5rem;margin-right:.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-0{margin-top:0;margin-bottom:0}.my-1{margin-top:.25rem;margin-bottom:.25rem}.my-2\.5{margin-top:.625rem;margin-bottom:.625rem}.my-4{margin-top:1rem;margin-bottom:1rem}.-mb-4{margin-bottom:-1rem}.-ml-5{margin-left:-1.25rem}.-ml-7{margin-left:-1.75rem}.-mt-7{margin-top:-1.75rem}.mb-0{margin-bottom:0}.mb-0\.5{margin-bottom:.125rem}.mb-1{margin-bottom:.25rem}.mb-1\.5{margin-bottom:.375rem}.mb-2{margin-bottom:.5rem}.mb-2\.5{margin-bottom:.625rem}.mb-3,.group[open] .group-open\:mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-9{margin-bottom:2.25rem}.ml-0\.5{margin-left:.125rem}.ml-1{margin-left:.25rem}.ml-1\.5{margin-left:.375rem}.ml-4{margin-left:1rem}.ml-auto{margin-left:auto}.mr-0\.5{margin-right:.125rem}.mr-1{margin-right:.25rem}.mr-1\.5{margin-right:.375rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-7{margin-top:1.75rem}.mt-auto{margin-top:auto}.inline{display:inline}.block{display:block}.inline-block{display:inline-block}.hidden{display:none}.\[\&_img\]\:aspect-video img{aspect-ratio:16/9}.aspect-square{aspect-ratio:1/1}.\!max-w-full{max-width:100%!important}.\[\&_iframe\]\:max-w-full iframe,.\[\&_img\]\:max-w-full img,.\[\&_table\]\:max-w-full table{max-width:100%}.\[\&_img\]\:w-full img,.w-full{width:100%}.\[\&\>\*\]\:h-full>*,.h-full{height:100%}.h-1\.5{height:.375rem}.h-1\/3{height:33.3333333333%}.h-10{height:2.5rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-2,.h2{height:.5rem}.h-2\.5{height:.625rem}.h-20{height:5rem}.h-4,.h4{height:1rem}.h-5,.h5{height:1.25rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-screen{height:100vh}.h1{height:.25rem}.h3{height:.75rem}.h6{height:1.5rem}.max-h-screen{max-height:100vh}.max-w-\[140px\]{max-width:140px}.max-w-\[150px\]{max-width:150px}.max-w-\[300px\]{max-width:300px}.max-w-\[330px\]{max-width:330px}.max-w-\[340px\]{max-width:340px}.max-w-\[350px\]{max-width:350px}.max-w-\[360px\]{max-width:360px}.max-w-\[525px\]{max-width:525px}.max-w-\[600px\]{max-width:600px}.max-w-\[660px\]{max-width:660px}.max-w-\[680px\]{max-width:680px}.max-w-\[720px\]{max-width:720px}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-5xl{max-width:64rem}.max-w-lg{max-width:32rem}.max-w-md{max-width:28rem}.max-w-none{max-width:none}.max-w-prose{max-width:65ch}.max-w-sm{max-width:24rem}.max-w-xl{max-width:36rem}.min-h-\[300px\]{min-height:300px}.min-h-\[500px\]{min-height:500px}.min-h-screen{min-height:100vh}.min-w-\[150px\]{min-width:150px}.min-w-\[3rem\]{min-width:3rem}.min-w-9{min-width:2.25rem}.w-\[300px\]{width:300px}.w-10{width:2.5rem}.w-12{width:3rem}.w-14{width:3.5rem}.w-20{width:5rem}.w-3{width:.75rem}.w-4{width:1rem}.w-48{width:12rem}.w-5{width:1.25rem}.w-56{width:14rem}.w-60{width:15rem}.w-7{width:1.75rem}.w-72{width:18rem}.w-9{width:2.25rem}.w-96{width:24rem}.w-auto{width:auto}.w-screen{width:100vw}.open\:h-full[open]{height:100%}.open\:w-full[open]{width:100%}.max-w-screen-2xl{max-width:1536px}.max-w-screen-sm{max-width:640px}.flex{display:flex}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.grow{flex-grow:1}.basis-1\/2{flex-basis:50%}.basis-1\/3{flex-basis:33.3333333333%}.basis-1\/4{flex-basis:25%}.basis-2\/5{flex-basis:40%}.basis-full{flex-basis:100%}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.-translate-x-1\/2{--un-translate-x:-50%;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.-translate-x-2{--un-translate-x:-.5rem;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}body.StickyHeader .sticky-header\:translate-y-16{--un-translate-y:4rem;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.group:active .group-active\:-translate-x-1{--un-translate-x:-.25rem;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.group:active .group-active\:-translate-y-1{--un-translate-y:-.25rem;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.group:active .group-active\:translate-x-1{--un-translate-x:.25rem;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.group:active .group-active\:translate-y-1{--un-translate-y:.25rem;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.-rotate-90{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:-90deg;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.rotate-180{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:180deg;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.rotate-90{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:90deg;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.\[\&_i\]\:open\:-rotate-90[open] i{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:-90deg;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.scale-110,.group:hover .group-hover\:scale-110{--un-scale-x:1.1;--un-scale-y:1.1;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.scale-90{--un-scale-x:.9;--un-scale-y:.9;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.hover\:scale-110:hover{--un-scale-x:1.1;--un-scale-y:1.1;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.active\:scale-125:active,.group:active .group-active\:scale-125{--un-scale-x:1.25;--un-scale-y:1.25;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.\!transform{transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))!important}.transform{transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.animate-spin{animation:spin 1s linear infinite}.cursor-auto{cursor:auto}.cursor-pointer{cursor:pointer}.\[\&\>\*\]\:cursor-wait>*{cursor:wait}.cursor-zoom-in{cursor:zoom-in}.resize{resize:both}.snap-x{scroll-snap-type:x var(--un-scroll-snap-strictness)}.snap-y{scroll-snap-type:y var(--un-scroll-snap-strictness)}.snap-mandatory{--un-scroll-snap-strictness:mandatory}.\[\&\>\*\]\:snap-start>*{scroll-snap-align:start}.list-none{list-style-type:none}.\[\&\:\:-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button,.\[\&\:\:-webkit-outer-spin-button\]\:appearance-none::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none}.items-start{align-items:flex-start}.\[\&\>\*\]\:items-center>*,.items-center{align-items:center}.items-stretch{align-items:stretch}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-evenly{justify-content:space-evenly}.\[\&\>ul\]\:gap-2\.5>ul{gap:.625rem}.\[\&\>ul\]\:gap-3>ul,.gap-3{gap:.75rem}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}.gap-x-4{column-gap:1rem}.gap-x-5{column-gap:1.25rem}.gap-x-6{column-gap:1.5rem}.gap-y-1\.5{row-gap:.375rem}.gap-y-2{row-gap:.5rem}.gap-y-3{row-gap:.75rem}.gap-y-5{row-gap:1.25rem}.space-y-1\.5>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(.375rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(.375rem * var(--un-space-y-reverse))}.divide-y>:not([hidden])~:not([hidden]){--un-divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--un-divide-y-reverse)));border-bottom-width:calc(1px * var(--un-divide-y-reverse))}.divide-base-100>:not([hidden])~:not([hidden]){--un-divide-opacity:1;border-color:rgb(241 245 249 / var(--un-divide-opacity))}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-x-scroll{overflow-x:scroll}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden}.overflow-y-scroll{overflow-y:scroll}.scroll-smooth{scroll-behavior:smooth}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.border,.border-1{border-width:1px}.border-2{border-width:2px}.border-3{border-width:3px}.\[\&\:not\(\:last-child\)\]\:border-b:not(:last-child),.border-b{border-bottom-width:1px}.border-r-2{border-right-width:2px}.border-t{border-top-width:1px}.border-t-2{border-top-width:2px}.border-base-100{--un-border-opacity:1;border-color:rgb(241 245 249 / var(--un-border-opacity))}.border-base-200{--un-border-opacity:1;border-color:rgb(226 232 240 / var(--un-border-opacity))}.border-danger-700\/30{border-color:#be123c4d}.border-primary{--un-border-opacity:1;border-color:rgb(var(--rgb-primary) / var(--un-border-opacity))}.border-primary-300{--un-border-opacity:1;border-color:rgb(var(--rgb-primary-300) / var(--un-border-opacity))}.border-primary-400{--un-border-opacity:1;border-color:rgb(var(--rgb-primary-400) / var(--un-border-opacity))}.border-primary\/20{border-color:rgb(var(--rgb-primary) / .2)}.border-secondary\/50{border-color:rgb(var(--rgb-secondary) / .5)}.border-transparent{border-color:transparent}.hover\:border-primary:hover{--un-border-opacity:1;border-color:rgb(var(--rgb-primary) / var(--un-border-opacity))}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-md{border-radius:.375rem}.group:hover .group-hover\:rounded-none{border-radius:0}.rounded-b{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.border-dashed{border-style:dashed}.\[\&_\[data-drawer-close\]\]\:bg-white\/80 [data-drawer-close],.bg-white\/80{background-color:#fffc}.bg-base-100{--un-bg-opacity:1;background-color:rgb(241 245 249 / var(--un-bg-opacity))}.bg-base-100\/80{background-color:#f1f5f9cc}.bg-base-200{--un-bg-opacity:1;background-color:rgb(226 232 240 / var(--un-bg-opacity))}.bg-base-300{--un-bg-opacity:1;background-color:rgb(203 213 225 / var(--un-bg-opacity))}.bg-base-400{--un-bg-opacity:1;background-color:rgb(148 163 184 / var(--un-bg-opacity))}.bg-base-50{--un-bg-opacity:1;background-color:rgb(248 250 252 / var(--un-bg-opacity))}.bg-base-50\/40{background-color:#f8fafc66}.bg-base-700{--un-bg-opacity:1;background-color:rgb(51 65 85 / var(--un-bg-opacity))}.bg-black\/50{background-color:#00000080}.bg-gray-200{--un-bg-opacity:1;background-color:rgb(229 231 235 / var(--un-bg-opacity))}.bg-on-primary{--un-bg-opacity:1;background-color:rgb(var(--rgb-on-primary) / var(--un-bg-opacity))}.bg-primary-100{--un-bg-opacity:1;background-color:rgb(var(--rgb-primary-100) / var(--un-bg-opacity))}.bg-primary-200{--un-bg-opacity:1;background-color:rgb(var(--rgb-primary-200) / var(--un-bg-opacity))}.bg-secondary-100{--un-bg-opacity:1;background-color:rgb(var(--rgb-secondary-100) / var(--un-bg-opacity))}.bg-success-400{--un-bg-opacity:1;background-color:rgb(52 211 153 / var(--un-bg-opacity))}.bg-success-50{--un-bg-opacity:1;background-color:rgb(236 253 245 / var(--un-bg-opacity))}.bg-transparent{background-color:transparent}.bg-warning-100{--un-bg-opacity:1;background-color:rgb(254 243 199 / var(--un-bg-opacity))}.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity))}.bg-white\/40{background-color:#fff6}.bg-white\/50{background-color:#ffffff80}.bg-white\/60{background-color:#fff9}.dark .dark\:bg-gray-700{--un-bg-opacity:1;background-color:rgb(55 65 81 / var(--un-bg-opacity))}.hover\:bg-base-100:hover{--un-bg-opacity:1;background-color:rgb(241 245 249 / var(--un-bg-opacity))}.hover\:bg-primary-300\/60:hover{background-color:rgb(var(--rgb-primary-300) / .6)}.hover\:bg-primary\/10:hover{background-color:rgb(var(--rgb-primary) / .1)}.active\:bg-base-100:active{--un-bg-opacity:1;background-color:rgb(241 245 249 / var(--un-bg-opacity))}.active\:bg-base-200:active{--un-bg-opacity:1;background-color:rgb(226 232 240 / var(--un-bg-opacity))}.enabled\:hover\:bg-primary-100\/70:hover:enabled{background-color:rgb(var(--rgb-primary-100) / .7)}.\[\&\>\*\]\:from-success-200>*{--un-gradient-from-position:0%;--un-gradient-from:rgb(167 243 208 / var(--un-from-opacity, 1)) var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgb(167 243 208 / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to)}.from-base-50\/20{--un-gradient-from-position:0%;--un-gradient-from:rgb(248 250 252 / .2) var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgb(248 250 252 / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to)}.from-secondary-700{--un-gradient-from-position:0%;--un-gradient-from:rgb(var(--rgb-secondary-700) / var(--un-from-opacity, 1)) var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgb(var(--rgb-secondary-700) / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to)}.from-transparent{--un-gradient-from-position:0%;--un-gradient-from:transparent var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgb(255 255 255 / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to)}.from-white{--un-gradient-from-position:0%;--un-gradient-from:rgb(255 255 255 / var(--un-from-opacity, 1)) var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgb(255 255 255 / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to)}.\[\&\>\*\]\:to-success-700>*{--un-gradient-to-position:100%;--un-gradient-to:rgb(4 120 87 / var(--un-to-opacity, 1)) var(--un-gradient-to-position)}.to-base-100{--un-gradient-to-position:100%;--un-gradient-to:rgb(241 245 249 / var(--un-to-opacity, 1)) var(--un-gradient-to-position)}.to-primary-50{--un-gradient-to-position:100%;--un-gradient-to:rgb(var(--rgb-primary-50) / var(--un-to-opacity, 1)) var(--un-gradient-to-position)}.to-secondary-950{--un-gradient-to-position:100%;--un-gradient-to:rgb(var(--rgb-secondary-950) / var(--un-to-opacity, 1)) var(--un-gradient-to-position)}.to-white{--un-gradient-to-position:100%;--un-gradient-to:rgb(255 255 255 / var(--un-to-opacity, 1)) var(--un-gradient-to-position)}.\[\&\>\*\]\:bg-gradient-to-br>*,.bg-gradient-to-br{--un-gradient-shape:to bottom right;--un-gradient:var(--un-gradient-shape), var(--un-gradient-stops);background-image:linear-gradient(var(--un-gradient))}.bg-gradient-to-b{--un-gradient-shape:to bottom;--un-gradient:var(--un-gradient-shape), var(--un-gradient-stops);background-image:linear-gradient(var(--un-gradient))}.bg-gradient-to-r{--un-gradient-shape:to right;--un-gradient:var(--un-gradient-shape), var(--un-gradient-stops);background-image:linear-gradient(var(--un-gradient))}.\[\&_img\]\:object-cover img,.object-cover{object-fit:cover}.p-0{padding:0}.p-1{padding:.25rem}.p-12{padding:3rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px,.px-4{padding-left:1rem;padding-right:1rem}.px-0{padding-left:0;padding-right:0}.px-0\.5{padding-left:.125rem;padding-right:.125rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.pb-1{padding-bottom:.25rem}.pb-2{padding-bottom:.5rem}.pb-3{padding-bottom:.75rem}.pb-7{padding-bottom:1.75rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-5{padding-left:1.25rem}.pr-12{padding-right:3rem}.pr-2{padding-right:.5rem}.pr-6{padding-right:1.5rem}.pt-1{padding-top:.25rem}.pt-16{padding-top:4rem}.pt-2{padding-top:.5rem}.pt-20{padding-top:5rem}.pt-4{padding-top:1rem}.pt-5{padding-top:1.25rem}.pt-6{padding-top:1.5rem}.text-center{text-align:center}.text-right{text-align:right}.\[\&_i\]\:text-2xl i,.text-2xl{font-size:1.5rem;line-height:2rem}.\[\&\>summary\]\:text-xl>summary,.text-xl{font-size:1.25rem;line-height:1.75rem}.text-\[0px\]{font-size:0px}.text-\[57\%\]{font-size:57%}.text-\[87\%\]{font-size:87%}.text-\[95\%\]{font-size:95%}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.text-\[\#37003c\]{--un-text-opacity:1;color:rgb(55 0 60 / var(--un-text-opacity))}.text-\[\#77B6A8\]{--un-text-opacity:1;color:rgb(119 182 168 / var(--un-text-opacity))}.text-base-200{--un-text-opacity:1;color:rgb(226 232 240 / var(--un-text-opacity))}.text-base-300{--un-text-opacity:1;color:rgb(203 213 225 / var(--un-text-opacity))}.text-base-400{--un-text-opacity:1;color:rgb(148 163 184 / var(--un-text-opacity))}.text-base-500{--un-text-opacity:1;color:rgb(100 116 139 / var(--un-text-opacity))}.text-base-600{--un-text-opacity:1;color:rgb(71 85 105 / var(--un-text-opacity))}.text-base-700{--un-text-opacity:1;color:rgb(51 65 85 / var(--un-text-opacity))}.text-base-800{--un-text-opacity:1;color:rgb(30 41 59 / var(--un-text-opacity))}.text-base-900,.group:hover .group-hover\:text-base-900{--un-text-opacity:1;color:rgb(15 23 42 / var(--un-text-opacity))}.text-black{--un-text-opacity:1;color:rgb(0 0 0 / var(--un-text-opacity))}.text-danger-800{--un-text-opacity:1;color:rgb(159 18 57 / var(--un-text-opacity))}.text-primary,.group:hover .group-hover\:text-primary{--un-text-opacity:1;color:rgb(var(--rgb-primary) / var(--un-text-opacity))}.text-primary-600{--un-text-opacity:1;color:rgb(var(--rgb-primary-600) / var(--un-text-opacity))}.text-primary-950{--un-text-opacity:1;color:rgb(var(--rgb-primary-950) / var(--un-text-opacity))}.text-secondary{--un-text-opacity:1;color:rgb(var(--rgb-secondary) / var(--un-text-opacity))}.text-secondary-900{--un-text-opacity:1;color:rgb(var(--rgb-secondary-900) / var(--un-text-opacity))}.text-success-800{--un-text-opacity:1;color:rgb(6 95 70 / var(--un-text-opacity))}.text-success-900{--un-text-opacity:1;color:rgb(6 78 59 / var(--un-text-opacity))}.text-transparent{color:transparent}.text-warning-700{--un-text-opacity:1;color:rgb(180 83 9 / var(--un-text-opacity))}.\[\&\>i\]\:hover\:text-primary:hover>i{--un-text-opacity:1;color:rgb(var(--rgb-primary) / var(--un-text-opacity))}.group:hover .group-hover\:text-primary-subtle{--un-text-opacity:1;color:rgb(var(--rgb-primary-subtle) / var(--un-text-opacity))}.hover\:text-base-600:hover{--un-text-opacity:1;color:rgb(71 85 105 / var(--un-text-opacity))}.hover\:text-base-700:hover{--un-text-opacity:1;color:rgb(51 65 85 / var(--un-text-opacity))}.hover\:text-base-800:hover{--un-text-opacity:1;color:rgb(30 41 59 / var(--un-text-opacity))}.hover\:text-primary:hover{--un-text-opacity:1;color:rgb(var(--rgb-primary) / var(--un-text-opacity))}.hover\:text-white:hover{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity))}.active\:text-primary:active{--un-text-opacity:1;color:rgb(var(--rgb-primary) / var(--un-text-opacity))}.enabled\:text-primary:enabled{--un-text-opacity:1;color:rgb(var(--rgb-primary) / var(--un-text-opacity))}.text-opacity-70{--un-text-opacity:.7}.font-bold{font-weight:700}.font-light{font-weight:300}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.leading-12{line-height:3rem}.leading-9{line-height:2.25rem}.leading-none{line-height:1}.leading-snug{line-height:1.375}.leading-tight{line-height:1.25}.tracking-tighter{letter-spacing:-.05em}.\[\&_small\]\:lowercase small,.lowercase{text-transform:lowercase}.italic{font-style:italic}.underline,.group:hover .group-hover\:underline,.hover\:underline:hover{text-decoration-line:underline}.decoration-2{text-decoration-thickness:2px}.no-underline{text-decoration:none}.opacity-0{opacity:0}.opacity-100,.group:hover .group-hover\:opacity-100{opacity:1}.opacity-20{opacity:.2}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-70{opacity:.7}.opacity-80{opacity:.8}.opacity-90,.group:hover .group-hover\:opacity-90{opacity:.9}.hover\:opacity-100:hover{opacity:1}.disabled\:opacity-40:disabled{opacity:.4}.shadow,.group:hover .group-hover\:shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / .1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / .1));box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}.shadow-md{--un-shadow:var(--un-shadow-inset) 0 4px 6px -1px var(--un-shadow-color, rgb(0 0 0 / .1)),var(--un-shadow-inset) 0 2px 4px -2px var(--un-shadow-color, rgb(0 0 0 / .1));box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}.shadow-sm{--un-shadow:var(--un-shadow-inset) 0 1px 2px 0 var(--un-shadow-color, rgb(0 0 0 / .05));box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}.outline-3{outline-width:3px}.outline-secondary\/80{outline-color:rgb(var(--rgb-secondary) / .8)}.outline{outline-style:solid}.\[\&\>\*\]\:outline-none>*,.outline-none{outline:2px solid transparent;outline-offset:2px}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.ring,.ring-1,.group:hover .group-hover\:ring-1{--un-ring-width:1px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}.ring-0{--un-ring-width:0px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}.ring-2{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}.ring-4,.hover\:ring-4:hover{--un-ring-width:4px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow)}.ring-black\/10{--un-ring-color:rgb(0 0 0 / .1)}.ring-black\/5{--un-ring-color:rgb(0 0 0 / .05)}.ring-primary\/60{--un-ring-color:rgb(var(--rgb-primary) / .6)}.ring-secondary\/10{--un-ring-color:rgb(var(--rgb-secondary) / .1)}.hover\:ring-primary\/20:hover{--un-ring-color:rgb(var(--rgb-primary) / .2)}.backdrop-blur-md{--un-backdrop-blur:blur(12px);-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia)}.backdrop-blur-sm{--un-backdrop-blur:blur(4px);-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia)}.hover\:drop-shadow-sm:hover{--un-drop-shadow:drop-shadow(0 1px 1px var(--un-drop-shadow-color, rgb(0 0 0 / .05)));filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.secondary{background-color:var(--c-secondary, rgb(55 0 60));color:var(--c-on-secondary, var(--c-on-dark))}.secondary-subtle{background-color:var(--c-secondary-subtle, rgb(25 0 24));color:var(--c-on-secondary-subtle, var(--c-on-dark))}@media (prefers-reduced-motion: no-preference){.group:hover .motion-safe\:group-hover\:scale-110{--un-scale-x:1.1;--un-scale-y:1.1;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.motion-safe\:duration-300{transition-duration:.3s}}@media (min-width: 640px){.sm\:order-last{order:9999}.sm\:col-span-2{grid-column:span 2/span 2}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:mb-0{margin-bottom:0}.sm\:mt-4{margin-top:1rem}.sm\:block{display:block}.sm\:\[\&_img\]\:aspect-\[2\.5\] img{aspect-ratio:2.5}.sm\:\[\&_img\]\:max-w-none img{max-width:none}.sm\:max-w-\[828px\]{max-width:828px}.sm\:w-full{width:100%}.sm\:max-w-screen-lg{max-width:1024px}.sm\:basis-auto{flex-basis:auto}.sm\:gap-x-10{column-gap:2.5rem}.sm\:py-4{padding-top:1rem;padding-bottom:1rem}.sm\:pl-2{padding-left:.5rem}.sm\:pr-2\.5{padding-right:.625rem}}@media (min-width: 768px){.md\:order-2{order:2}.md\:grid{display:grid}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:mx-0{margin-left:0;margin-right:0}.md\:my-5{margin-top:1.25rem;margin-bottom:1.25rem}.md\:mb-0{margin-bottom:0}.md\:mb-12{margin-bottom:3rem}.md\:mr-5{margin-right:1.25rem}.md\:mt-10{margin-top:2.5rem}.md\:mt-3{margin-top:.75rem}.md\:mt-5{margin-top:1.25rem}.md\:mt-6{margin-top:1.5rem}.md\:mt-8{margin-top:2rem}.md\:inline{display:inline}.md\:block{display:block}.md\:hidden{display:none}.md\:aspect-auto{aspect-ratio:auto}.md\:h-\[525px\]{height:525px}.md\:w-2\/3{width:66.6666666667%}.md\:w-screen{width:100vw}.md\:max-w-screen-2xl{max-width:1536px}.md\:flex{display:flex}.md\:basis-1\/3{flex-basis:33.3333333333%}.md\:flex-wrap{flex-wrap:wrap}.md\:flex-nowrap{flex-wrap:nowrap}.md\:gap-4{gap:1rem}.md\:overflow-hidden{overflow:hidden}.md\:rounded-b{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.md\:p-8{padding:2rem}.md\:py-3{padding-top:.75rem;padding-bottom:.75rem}.md\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.md\:text-left{text-align:left}.md\:text-sm{font-size:.875rem;line-height:1.25rem}}@media (min-width: 1024px){.lg\:sticky{position:sticky}.lg\:\[\&_\[data-carousel-control\=next\]\]\:\!-right-10 [data-carousel-control=next]{right:-2.5rem!important}.lg\:\[\&_\[data-carousel-control\=previous\]\]\:\!-left-10 [data-carousel-control=previous]{left:-2.5rem!important}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:col-span-3{grid-column:span 3/span 3}.lg\:auto-cols-max{grid-auto-columns:max-content}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:grid-cols-none{grid-template-columns:none}.lg\:mb-2{margin-bottom:.5rem}.lg\:mr-auto{margin-right:auto}.lg\:mt-12{margin-top:3rem}.lg\:mt-4{margin-top:1rem}.lg\:mt-5{margin-top:1.25rem}.lg\:mt-8{margin-top:2rem}.lg\:inline{display:inline}.lg\:block{display:block}.lg\:hidden{display:none}.lg\:w-\[calc\(100vw-1rem\)\]{width:calc(100vw - 1rem)}.lg\:flex-1{flex:1 1 0%}.lg\:basis-1\/4{flex-basis:25%}.lg\:flex-wrap{flex-wrap:wrap}.lg\:flex-nowrap{flex-wrap:nowrap}body.StickyHeader .lg\:sticky-header\:translate-y-14{--un-translate-y:3.5rem;transform:translate(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotate(var(--un-rotate-z)) skew(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z))}.lg\:gap-12{gap:3rem}.lg\:gap-4{gap:1rem}.lg\:gap-8{gap:2rem}.lg\:gap-x-8{column-gap:2rem}.lg\:border-2{border-width:2px}.lg\:rounded{border-radius:.25rem}.lg\:rounded-b{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.lg\:rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.lg\:px-1{padding-left:.25rem;padding-right:.25rem}}@media (min-width: 1280px){.xl\:left-1\/2{left:50%}.xl\:right-auto{right:auto}.xl\:-ms-\[640px\]{margin-inline-start:-640px}.xl\:max-w-\[82rem\]{max-width:82rem}.xl\:max-w-screen-xl{max-width:1280px}.xl\:gap-5{gap:1.25rem}.xl\:ps-32{padding-inline-start:8rem}}@media (min-width: 1536px){.\32xl\:max-w-\[85rem\]{max-width:85rem}.\32xl\:gap-5{gap:1.25rem}.\32xl\:gap-6{gap:1.5rem}}
@@ -0,0 +1 @@
1
+ const p=s=>Object.values(s).filter(t=>t).length,f=(s=globalThis.$storefront.settings.modules)=>{const t={};if(s){const o=s.list_payments;if(o){const e=o.discount_option;e&&p(e)&&(t.list_payments={discount_option:e});const i=o.installments_option;i?.max_number&&(t.list_payments||(t.list_payments={}),t.list_payments.installments_option=i);const c=o.loyalty_points_programs||{};if(!Object.keys(c).length){const l={...o.loyalty_points_program};if(l?.id&&l.ratio){const{id:m}=l;delete l.id,c[m]=l}}Object.keys(c).length&&(t.list_payments||(t.list_payments={}),t.list_payments.loyalty_points_programs=c)}const n=s.calculate_shipping?.free_shipping_from_value;typeof n=="number"&&(t.calculate_shipping={free_shipping_from_value:n})}return t},g=new Promise(s=>{window.$storefront.modulesInfoPreset=f(),s(window.$storefront.modulesInfoPreset)});let r={};{const s="ecomUtm",t=localStorage.getItem(s),o=Date.now();try{const e=t&&JSON.parse(t)||{};new Date(e.at+1e3*60*60*24*7).getTime()>=o&&(r=e.utm||{})}catch{r={}}let a=!1;const n=new URLSearchParams(window.location.search);["source","medium","campaign","term","content"].forEach(e=>{const i=n.get(`utm_${e}`);i&&(r[e]=i,a=!0)}),a&&localStorage.setItem(s,JSON.stringify({at:o,utm:r}))}const u=r,y=(s,t,o=1e4)=>{let a,n;o&&(a=new AbortController,n=setTimeout(()=>{a.abort()},o));let e;t?.body&&(typeof t.body=="object"?(e=JSON.stringify(t.body),t.headers={...t.headers,"Content-Type":"application/json","Content-Length":e.length.toString()}):e=t.body);const i=fetch(s,{...t,body:e,signal:a?.signal});return i.finally(()=>{n&&clearTimeout(n)}),i};export{y as a,g as l,u};
@@ -0,0 +1 @@
1
+ import{_ as B,T as ne,c as oe,d as ae}from"./_plugin-vue_export-helper._suIQ7WC.js";import{d as C,c,M as y,Z as A,U as k,Y as b,$ as G,N as R,a1 as J,a2 as ee,Q as x,S as v,a3 as se,a as E,w as z,a5 as V,o as ie,n as le,ab as ue,a4 as ce,P as Z,t as O,ac as de}from"./ecom-utils.Ld2zf-Ve.js";import{g as fe}from"./img.pozlYdd3.js";import{g as me}from"./img-sizes.gxAI9JNh.js";import{i as ve}from"./i18n.3-NUtxYq.js";import{f as pe}from"./format-money.Axn0YFLJ.js";import{a as ge,b as he}from"./index.m6fK0JXC.js";import{u as ye}from"./index.TkCbiY_p.js";import"./price.Easct8WC.js";const _e=C({__name:"Fade",props:{speed:{default:"default"},slide:{},isFloating:{type:Boolean,default:!1},isLeaveTo:{type:Boolean,default:!0},isEnterFrom:{type:Boolean,default:!0}},setup(r,{expose:o}){o();const e=r,t=c(()=>e.speed==="default"?"var(--transition, .2s linear)":`var(--transition-${e.speed}, .4s linear)`),s=c(()=>{switch(e.slide){case"down":return"translate3d(0, -100%, 0)";case"left":return"translate3d(-100%, 0, 0)";case"right":return"translate3d(100%, 0, 0)";case"up":return"translate3d(0, 100%, 0)";default:return"none"}}),i=c(()=>s.value!=="none"?.1:0),u=c(()=>e.isEnterFrom?i.value:1),g=c(()=>e.isLeaveTo?i.value:1),P=c(()=>e.isEnterFrom?s.value:"none"),f=c(()=>e.isLeaveTo?s.value:"none"),l=c(()=>e.slide==="down"||e.slide==="up"),_=c(()=>e.isFloating?null:l.value?0:"auto"),T=c(()=>e.isFloating?null:e.slide&&!l.value?0:"auto"),m=c(()=>e.isEnterFrom?_.value:"auto"),w=c(()=>e.isEnterFrom?T.value:"auto"),S=c(()=>{let n="opacity";return s.value!=="none"&&(n+=", transform"),_.value===0&&(n+=", height"),T.value===0&&(n+=", width"),n}),p={props:e,duration:t,transform:s,opacity:i,enterFromOpacity:u,leaveToOpacity:g,enterFromTransform:P,leaveToTransform:f,isSlideY:l,height:_,width:T,enterFromHeight:m,enterFromWidth:w,willChange:S,setInitialStyles:n=>{n.style.setProperty("--fade-will-change",S.value),n.style.setProperty("--fade-duration",t.value),n.style.setProperty("--fade-enter-opacity",String(u.value)),n.style.setProperty("--fade-enter-transform",String(P.value)),n.style.setProperty("--fade-enter-height",String(m.value)),n.style.setProperty("--fade-enter-width",String(w.value)),n.style.setProperty("--fade-leave-opacity",String(g.value)),n.style.setProperty("--fade-leave-transform",String(f.value))},onEnter:n=>{if(e.slide&&!e.isFloating&&e.isEnterFrom){l.value?(n.style.width=getComputedStyle(n).width,n.style.height="auto"):(n.style.width="auto",n.style.height=getComputedStyle(n).height),n.style.position="absolute",n.style.visibility="hidden";const{width:h,height:N}=getComputedStyle(n);n.style.width=l.value?"":"0",n.style.height=l.value?"0":"",n.style.position="",n.style.visibility="",getComputedStyle(n)[l.value?"height":"width"],requestAnimationFrame(()=>{l.value?n.style.height=N:n.style.width=h})}},onAfterEnter:n=>{e.slide&&!e.isFloating&&e.isEnterFrom&&(n.style[l.value?"height":"width"]="")},onLeave:n=>{if(e.slide&&!e.isFloating&&e.isLeaveTo){l.value?n.style.height=getComputedStyle(n).height:n.style.width=getComputedStyle(n).width;const h=l.value?"height":"width";getComputedStyle(n)[h],requestAnimationFrame(()=>{n.style[h]="0"})}}};return Object.defineProperty(p,"__isScriptSetup",{enumerable:!1,value:!0}),p}});function Se(r,o,e,t,s,i){return y(),A(ne,{name:"sf-fade",onBeforeEnter:t.setInitialStyles,onEnter:t.onEnter,onBeforeLeave:t.setInitialStyles,onAfterEnter:t.onAfterEnter,onLeave:t.onLeave},{default:k(()=>[b(r.$slots,"default")]),_:3},8,["onBeforeEnter","onEnter","onBeforeLeave","onAfterEnter","onLeave"])}const xe=B(_e,[["render",Se]]),we=C({__name:"ALink",props:{href:{},target:{}},setup(r,{expose:o}){o();const e=r,t=c(()=>{if(e.href){if(e.target)return e.target;if(e.href.startsWith("http")){const i=globalThis.$storefront.settings.domain||window.location.host;if(e.href.startsWith(`https://${i}`))return}}}),s={props:e,linkTarget:t};return Object.defineProperty(s,"__isScriptSetup",{enumerable:!1,value:!0}),s}});function be(r,o,e,t,s,i){return y(),A(G(e.href?"a":"span"),{href:e.href,target:t.linkTarget,rel:t.linkTarget==="_blank"?"noopener":void 0},{default:k(()=>[b(r.$slots,"default")]),_:3},8,["href","target","rel"])}const Ce=B(we,[["render",be]]),Pe=C({__name:"AImg",props:{picture:{},loading:{default:"lazy"},decoding:{},alt:{},preferredSize:{}},setup(r,{expose:o}){o();const e=r,t=c(()=>e.picture.url?e.picture:fe(e.picture,void 0,e.preferredSize)||{}),s=c(()=>me(t.value)),i=c(()=>({src:t.value.url,alt:t.value.alt||e.alt,width:s.value.width||void 0,height:s.value.height||void 0,loading:e.loading,decoding:e.decoding||(s.value.height?"async":void 0)})),u={props:e,image:t,dimensions:s,attrs:i};return Object.defineProperty(u,"__isScriptSetup",{enumerable:!1,value:!0}),u}});function Te(r,o,e,t,s,i){return y(),R("img",J(ee(t.attrs)),null,16)}const Le=B(Pe,[["render",Te]]),q="bg-gray-200 rounded-md dark:bg-gray-700",Ee=C({__name:"Skeleton",props:{isBold:{type:Boolean},isLarge:{type:Boolean}},setup(r,{expose:o}){o();const e=r,t=c(()=>`${q} ${e.isBold?"h-8 mb-6":"h-2.5 mb-4"}`),s=c(()=>`${q} ${e.isBold?"h-5 mb-4":"h-2 mb-2.5"}`),i={props:e,rowClassName:q,firstRowClassName:t,nextRowsClassName:s};return Object.defineProperty(i,"__isScriptSetup",{enumerable:!1,value:!0}),i}}),Be=x("span",{class:"sr-only"},"Loading...",-1);function Fe(r,o,e,t,s,i){return y(),R("div",{role:"status",class:v(["animate-pulse",e.isLarge?"max-w-4xl":"max-w-sm"])},[x("div",{class:v([t.firstRowClassName,e.isLarge?"w-96":"w-48"])},null,2),x("div",{class:v([t.nextRowsClassName,e.isLarge?"max-w-[680px]":"max-w-[340px]"])},null,2),x("div",{class:v(t.nextRowsClassName)},null,2),x("div",{class:v([t.nextRowsClassName,e.isLarge?"max-w-[660px]":"max-w-[330px]"])},null,2),x("div",{class:v([t.nextRowsClassName,e.isLarge?"max-w-[600px]":"max-w-[300px]"])},null,2),x("div",{class:v([t.nextRowsClassName,e.isLarge?"max-w-[720px]":"max-w-[360px]"])},null,2),Be],2)}const ze=B(Ee,[["render",Fe]]),Ae=(r,o=1)=>Number.isInteger(r)?`${r}%`:`${r.toFixed(o)}%`,ke=r=>{r.use({install:(o,e)=>{o.config.globalProperties.$t=(t,s)=>ve(t,s||e?.lang),o.config.globalProperties.$money=pe,o.config.globalProperties.$percentage=Ae,o.config.globalProperties.$settings=globalThis.$storefront.settings,o.config.globalProperties.$apiContext=globalThis.$storefront.apiContext}}),r.component("Fade",xe),r.component("ALink",Ce),r.component("AImg",Le),r.component("Skeleton",ze)},Ie=C({__name:"CarouselControl",props:{isPrev:{type:Boolean,default:!1}},setup(r,{expose:o}){o();const{axis:e,changeSlide:t}=se(D),i={axis:e,changeSlide:t,isX:e==="x"};return Object.defineProperty(i,"__isScriptSetup",{enumerable:!1,value:!0}),i}}),Ne=["aria-label","data-carousel-control"];function $e(r,o,e,t,s,i){return y(),R("button",{type:"button","aria-label":e.isPrev?"Anterior":"Próximo",onClick:o[0]||(o[0]=u=>t.changeSlide(e.isPrev?-1:1)),class:v(["group absolute z-[11]",t.isX?`${e.isPrev?"left-0":"right-0"} top-0`:`${e.isPrev?"top-0":"bottom-0"} left-0`]),"data-carousel-control":e.isPrev?"previous":"next"},[b(r.$slots,"default",{},()=>[x("i",{class:v(["i-chevron-right m-0",{"group-active:translate-x-1":t.isX&&!e.isPrev,"rotate-180 group-active:-translate-x-1":t.isX&&e.isPrev,"rotate-90 group-active:translate-y-1":!t.isX&&!e.isPrev,"-rotate-90 group-active:-translate-y-1":!t.isX&&e.isPrev}])},null,2)])],10,Ne)}const te=B(Ie,[["render",$e]]),D=Symbol("carousel"),Oe=C({__name:"Carousel",props:{as:{default:"ul"},index:{default:0},autoplay:{},axis:{default:"x"},hasControls:{type:Boolean},wrapperKey:{}},emits:["update:index"],setup(r,{expose:o,emit:e}){o();const t=r,s=e,i=E(0);z(V(t,"index"),a=>{if(a!==i.value){const d=a-i.value;h(d,!1)}},{immediate:!0}),z(i,(a,d)=>{a!==d&&s("update:index",a)});const u=E(null),{[t.axis]:g,isScrolling:P,arrivedState:f}=ge(u),l=t.axis==="x",_=c(()=>l?f.left:f.top),T=c(()=>l?f.right:f.bottom),m=E([]),w=E(0),S=E(0),j=()=>{u.value&&(l?(w.value=u.value.scrollWidth,S.value=u.value.offsetWidth):(w.value=u.value.scrollHeight,S.value=u.value.offsetHeight))},H=()=>{if(!u.value)return;let a=[...u.value.children];a.length===1&&a[0].tagName.endsWith("SLOT")&&(a=[...a[0].children]),m.value=a.map(d=>({offset:l?d.offsetLeft:d.offsetTop,size:l?d.offsetWidth:d.offsetHeight}))},X=a=>{let d=i.value+a;if(d>=m.value.length)return 0;d<0&&(d=m.value.length+d);const{offset:F,size:L}=m.value[d]||{};return L?F:0},I=()=>{const a=m.value.findIndex(d=>Math.abs(d.offset-g.value)<=5);a>-1&&(i.value=a||0)};let p;const n=()=>{t.autoplay&&(clearTimeout(p),p=setTimeout(()=>{h(1)},t.autoplay))},h=(a,d=!0)=>{if(m.value.length<2)return;let F=-1;if(g.value+S.value>=w.value)F=0;else{if(d&&(a===1||a===-1)){let L=0,Q=0;for(let M=i.value;M<m.value.length;M++){const{size:K}=m.value[M]||{};if(K&&(L+=1,Q+=K,Q+K*.75>=S.value))break}L&&(a=a>0?L:-L)}F=X(a)}u.value?.scrollTo({[l?"left":"top"]:F,behavior:"smooth"}),n()};z(P,a=>{a?clearTimeout(p):(I(),n())});const N=E(null),U=he(N);z(U,a=>{a?clearTimeout(p):n()});const $=()=>{u.value&&(j(),H(),I())},W=ye(()=>{u.value&&(l?u.value.scrollLeft=0:u.value.scrollTop=0,$())},400);ie(()=>{$(),le(()=>{u.value&&[...u.value.children].forEach(a=>{a.setAttribute("tabindex","0")})}),n(),window.addEventListener("resize",W)}),z(V(t,"wrapperKey"),$),ue(()=>{window.removeEventListener("resize",W),clearTimeout(p)}),ce(D,{autoplay:V(t,"autoplay"),axis:t.axis,changeSlide:h,isBoundStart:_,isBoundEnd:T});const Y={carouselKey:D,props:t,emit:s,activeIndex:i,wrapper:u,currentPos:g,isScrolling:P,arrivedState:f,isX:l,isBoundStart:_,isBoundEnd:T,slideSizes:m,wrapperScrollSize:w,wrapperVisibleSize:S,calcWrapperSize:j,calcSlidesSize:H,calcNextOffset:X,calcCurrentIndex:I,get autoplayTimer(){return p},set autoplayTimer(a){p=a},restartAutoplay:n,changeSlide:h,carousel:N,isHovered:U,calcOnInit:$,onResize:W,CarouselControl:te};return Object.defineProperty(Y,"__isScriptSetup",{enumerable:!1,value:!0}),Y}});function Re(r,o,e,t,s,i){return y(),R("div",{ref:"carousel",class:v(`relative ${t.isX?"":"overflow-hidden"}`),"data-carousel":""},[(y(),A(G(e.as),{ref:"wrapper",class:v(["m-0 flex snap-mandatory list-none scroll-smooth p-0 [&>*]:snap-start [&>*]:outline-none",t.isX?"snap-x overflow-y-hidden overflow-x-scroll":"h-full flex-col snap-y overflow-x-hidden overflow-y-scroll"]),style:{"scrollbar-width":"none","-webkit-overflow-scrolling":"touch","-ms-overflow-style":"none"},"data-carousel-wrapper":""},{default:k(()=>[b(r.$slots,"default")]),_:3},8,["class"])),b(r.$slots,"controls",J(ee({changeSlide:t.changeSlide,isBoundStart:t.isBoundStart,isBoundEnd:t.isBoundEnd,activeIndex:t.activeIndex})),()=>[t.slideSizes.length>1||e.hasControls?(y(),A(t.CarouselControl,{key:0,"is-prev":""},{default:k(()=>[b(r.$slots,"previous")]),_:3})):Z("",!0),t.slideSizes.length>1||e.hasControls?(y(),A(t.CarouselControl,{key:1},{default:k(()=>[b(r.$slots,"next")]),_:3})):Z("",!0)])],2)}const je=B(Oe,[["render",Re]]),re=r=>{ke(r),r.component("Carousel",je),r.component("CarouselControl",te)},He=Object.freeze(Object.defineProperty({__proto__:null,default:re},Symbol.toStringTag,{value:"Module"})),Xe=r=>{"default"in He&&re(r)},We=C({props:{value:String,name:String,hydrate:{type:Boolean,default:!0}},setup({name:r,value:o,hydrate:e}){if(!o)return()=>null;let t=e?"astro-slot":"astro-static-slot";return()=>O(t,{name:r,innerHTML:o})}}),Je=r=>async(o,e,t,{client:s})=>{if(delete e.class,!r.hasAttribute("ssr"))return;const i=o.name?`${o.name} Host`:void 0,u={};for(const[l,_]of Object.entries(t))u[l]=()=>O(We,{value:_,name:l==="default"?void 0:l});const g=s!=="only",f=(g?oe:ae)({name:i,render(){let l=O(o,e,u);return Me(o.setup)&&(l=O(de,null,l)),l}});await Xe(f),f.mount(r,g),r.addEventListener("astro:unmount",()=>f.unmount(),{once:!0})};function Me(r){const o=r?.constructor;return o&&o.name==="AsyncFunction"}export{Je as default};