@omega.js/web 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1162) hide show
  1. package/LICENSE +98 -0
  2. package/README.md +640 -0
  3. package/bin/omega +2 -0
  4. package/bin/omega-web +2 -0
  5. package/bin/omg +2 -0
  6. package/core/_includes/admin/sections/sidebar.json +100 -0
  7. package/core/_includes/admin/sections/topbar.json +11 -0
  8. package/core/_includes/backend/sections/sidebar.json +39 -0
  9. package/core/_includes/backend/sections/topbar.json +16 -0
  10. package/core/_includes/core/body.html +102 -0
  11. package/core/_includes/core/foot.html +536 -0
  12. package/core/_includes/core/head.html +423 -0
  13. package/core/_includes/core/pricing/price-per-unit.html +33 -0
  14. package/core/_includes/core/showcase/entry-body.html +94 -0
  15. package/core/_includes/core/showcase/index-body.html +43 -0
  16. package/core/_includes/core/showcase/nav.html +60 -0
  17. package/core/_includes/frontend/sections/footer.json +74 -0
  18. package/core/_includes/frontend/sections/nav.json +70 -0
  19. package/core/_includes/global/sections/account.json +31 -0
  20. package/core/_includes/modules/engagement/giscus.html +26 -0
  21. package/core/_layouts/blueprint/404.html +10 -0
  22. package/core/_layouts/blueprint/about.html +10 -0
  23. package/core/_layouts/blueprint/account/index.html +11 -0
  24. package/core/_layouts/blueprint/admin/calendar/index.html +590 -0
  25. package/core/_layouts/blueprint/admin/dashboard/index.html +301 -0
  26. package/core/_layouts/blueprint/admin/firebase/index.html +214 -0
  27. package/core/_layouts/blueprint/admin/posts/editor.html +157 -0
  28. package/core/_layouts/blueprint/admin/posts/index.html +126 -0
  29. package/core/_layouts/blueprint/admin/stackblitz/index.html +30 -0
  30. package/core/_layouts/blueprint/admin/studio/index.html +85 -0
  31. package/core/_layouts/blueprint/admin/users/index.html +272 -0
  32. package/core/_layouts/blueprint/admin/users/new.html +82 -0
  33. package/core/_layouts/blueprint/admin/verts/index.html +204 -0
  34. package/core/_layouts/blueprint/alternatives/alternative.html +15 -0
  35. package/core/_layouts/blueprint/alternatives/index.html +10 -0
  36. package/core/_layouts/blueprint/app.html +10 -0
  37. package/core/_layouts/blueprint/auth/reset.html +19 -0
  38. package/core/_layouts/blueprint/auth/signin.html +19 -0
  39. package/core/_layouts/blueprint/auth/signup.html +19 -0
  40. package/core/_layouts/blueprint/auth/token.html +19 -0
  41. package/core/_layouts/blueprint/blog/categories/category.html +8 -0
  42. package/core/_layouts/blueprint/blog/categories/index.html +11 -0
  43. package/core/_layouts/blueprint/blog/index.html +10 -0
  44. package/core/_layouts/blueprint/blog/post.html +5 -0
  45. package/core/_layouts/blueprint/blog/tags/index.html +11 -0
  46. package/core/_layouts/blueprint/blog/tags/tag.html +8 -0
  47. package/core/_layouts/blueprint/careers.md +13 -0
  48. package/core/_layouts/blueprint/collection/category.html +9 -0
  49. package/core/_layouts/blueprint/collection/document.html +9 -0
  50. package/core/_layouts/blueprint/collection/index.html +9 -0
  51. package/core/_layouts/blueprint/connections/callback.html +11 -0
  52. package/core/_layouts/blueprint/contact.html +14 -0
  53. package/core/_layouts/blueprint/dashboard/index.html +10 -0
  54. package/core/_layouts/blueprint/download.html +20 -0
  55. package/core/_layouts/blueprint/extension/index.html +14 -0
  56. package/core/_layouts/blueprint/extension/installed.html +11 -0
  57. package/core/_layouts/blueprint/feedback.html +10 -0
  58. package/core/_layouts/blueprint/index.html +16 -0
  59. package/core/_layouts/blueprint/legal/cookies.md +57 -0
  60. package/core/_layouts/blueprint/legal/privacy.md +109 -0
  61. package/core/_layouts/blueprint/legal/terms.md +155 -0
  62. package/core/_layouts/blueprint/payment/checkout.html +15 -0
  63. package/core/_layouts/blueprint/payment/confirmation.html +14 -0
  64. package/core/_layouts/blueprint/portal/email-preferences.html +15 -0
  65. package/core/_layouts/blueprint/pricing.html +20 -0
  66. package/core/_layouts/blueprint/status.html +10 -0
  67. package/core/_layouts/blueprint/team/index.html +10 -0
  68. package/core/_layouts/blueprint/team/member.html +5 -0
  69. package/core/_layouts/blueprint/updates/index.html +10 -0
  70. package/core/_layouts/blueprint/updates/update.html +10 -0
  71. package/core/_layouts/core/root.html +45 -0
  72. package/core/_layouts/modules/utilities/redirect.html +129 -0
  73. package/core/css/_studio.scss +237 -0
  74. package/core/css/components/_index.scss +146 -0
  75. package/core/css/core/_.scss +0 -0
  76. package/core/css/core/_alert.scss +87 -0
  77. package/core/css/core/_animations.scss +343 -0
  78. package/core/css/core/_bindings.scss +116 -0
  79. package/core/css/core/_blog-search.scss +57 -0
  80. package/core/css/core/_chatsy.scss +61 -0
  81. package/core/css/core/_consent.scss +424 -0
  82. package/core/css/core/_custom-font-awesome.scss +146 -0
  83. package/core/css/core/_exit-popup.scss +42 -0
  84. package/core/css/core/_generated-badge.scss +33 -0
  85. package/core/css/core/_initialize.scss +29 -0
  86. package/core/css/core/_lazy-loading.scss +104 -0
  87. package/core/css/core/_social-sharing.scss +41 -0
  88. package/core/css/core/_tones.scss +32 -0
  89. package/core/css/core/_utilities.scss +157 -0
  90. package/core/css/main.scss +54 -0
  91. package/core/css/motion/_index.scss +368 -0
  92. package/core/css/pages/404/index.scss +0 -0
  93. package/core/css/pages/admin/calendar/index.scss +692 -0
  94. package/core/css/pages/admin/firebase/index.scss +33 -0
  95. package/core/css/pages/admin/index.scss +9 -0
  96. package/core/css/pages/admin/users/index.scss +9 -0
  97. package/core/css/pages/admin/verts/index.scss +9 -0
  98. package/core/css/pages/alternatives/[alternative]/index.scss +0 -0
  99. package/core/css/pages/blog/[slug].scss +55 -0
  100. package/core/css/pages/dashboard/account/index.scss +242 -0
  101. package/core/css/pages/download/index.scss +480 -0
  102. package/core/css/pages/extension/installed/index.scss +317 -0
  103. package/core/css/pages/feedback/index.scss +31 -0
  104. package/core/css/pages/payment/confirmation/index.scss +14 -0
  105. package/core/css/pages/pricing/index.scss +0 -0
  106. package/core/css/pages/status/index.scss +162 -0
  107. package/core/css/pages/test/libraries/layers/index.scss +28 -0
  108. package/core/css/pages/updates/[update].scss +46 -0
  109. package/core/css/pages/updates/index.scss +13 -0
  110. package/core/css/shell/_index.scss +207 -0
  111. package/core/css/tokens/_index.scss +166 -0
  112. package/core/icons/flags/ar.svg +1 -0
  113. package/core/icons/flags/bd.svg +1 -0
  114. package/core/icons/flags/ca.svg +1 -0
  115. package/core/icons/flags/ch.svg +1 -0
  116. package/core/icons/flags/cn.svg +1 -0
  117. package/core/icons/flags/co.svg +1 -0
  118. package/core/icons/flags/cw.svg +1 -0
  119. package/core/icons/flags/cz.svg +1 -0
  120. package/core/icons/flags/de.svg +1 -0
  121. package/core/icons/flags/dk.svg +1 -0
  122. package/core/icons/flags/eg.svg +1 -0
  123. package/core/icons/flags/es.svg +1 -0
  124. package/core/icons/flags/fi.svg +1 -0
  125. package/core/icons/flags/fr.svg +1 -0
  126. package/core/icons/flags/gb.svg +1 -0
  127. package/core/icons/flags/gq.svg +1 -0
  128. package/core/icons/flags/gr.svg +1 -0
  129. package/core/icons/flags/gt.svg +1 -0
  130. package/core/icons/flags/hn.svg +1 -0
  131. package/core/icons/flags/id.svg +1 -0
  132. package/core/icons/flags/ie.svg +1 -0
  133. package/core/icons/flags/in.svg +1 -0
  134. package/core/icons/flags/ir.svg +1 -0
  135. package/core/icons/flags/it.svg +1 -0
  136. package/core/icons/flags/jp.svg +1 -0
  137. package/core/icons/flags/kp.svg +1 -0
  138. package/core/icons/flags/kr.svg +1 -0
  139. package/core/icons/flags/ly.svg +1 -0
  140. package/core/icons/flags/ma.svg +1 -0
  141. package/core/icons/flags/mu.svg +1 -0
  142. package/core/icons/flags/mx.svg +1 -0
  143. package/core/icons/flags/ng.svg +1 -0
  144. package/core/icons/flags/pa.svg +1 -0
  145. package/core/icons/flags/ph.svg +1 -0
  146. package/core/icons/flags/pk.svg +1 -0
  147. package/core/icons/flags/pt.svg +1 -0
  148. package/core/icons/flags/ru.svg +1 -0
  149. package/core/icons/flags/sa.svg +1 -0
  150. package/core/icons/flags/sd.svg +1 -0
  151. package/core/icons/flags/se.svg +1 -0
  152. package/core/icons/flags/th.svg +1 -0
  153. package/core/icons/flags/tm.svg +1 -0
  154. package/core/icons/flags/tr.svg +1 -0
  155. package/core/icons/flags/us.svg +1 -0
  156. package/core/icons/flags/uy.svg +1 -0
  157. package/core/icons/flags/vn.svg +1 -0
  158. package/core/icons/flags/za.svg +1 -0
  159. package/core/images/exit-popup/subscriber-1.jpg +0 -0
  160. package/core/images/exit-popup/subscriber-2.jpg +0 -0
  161. package/core/images/exit-popup/subscriber-3.jpg +0 -0
  162. package/core/images/exit-popup/subscriber-4.jpg +0 -0
  163. package/core/images/placeholder/photo-1.jpg +0 -0
  164. package/core/images/placeholder/photo-2.jpg +0 -0
  165. package/core/images/placeholder/photo-3.jpg +0 -0
  166. package/core/js/core/analytics-loader.js +253 -0
  167. package/core/js/core/app-shell.js +136 -0
  168. package/core/js/core/appearance.js +195 -0
  169. package/core/js/core/auth.js +457 -0
  170. package/core/js/core/complete.js +72 -0
  171. package/core/js/core/consent.js +384 -0
  172. package/core/js/core/dev-icon-audit.js +63 -0
  173. package/core/js/core/dev-palette.js +670 -0
  174. package/core/js/core/dev-sections.js +53 -0
  175. package/core/js/core/exit-popup.js +276 -0
  176. package/core/js/core/initialize.js +8 -0
  177. package/core/js/core/language-switcher.js +167 -0
  178. package/core/js/core/lazy-loading.js +479 -0
  179. package/core/js/core/motion.js +28 -0
  180. package/core/js/core/query-strings.js +146 -0
  181. package/core/js/core/service-worker.js +28 -0
  182. package/core/js/core/social-sharing.js +293 -0
  183. package/core/js/first-paint.js +35 -0
  184. package/core/js/layouts/modules/utilities/redirect.js +122 -0
  185. package/core/js/libs/admin-helpers.js +62 -0
  186. package/core/js/libs/alert-dismiss.js +35 -0
  187. package/core/js/libs/analytics.js +368 -0
  188. package/core/js/libs/auth/email.js +144 -0
  189. package/core/js/libs/auth/errors.js +119 -0
  190. package/core/js/libs/auth/forms.js +206 -0
  191. package/core/js/libs/auth/index.js +181 -0
  192. package/core/js/libs/auth/oauth.js +394 -0
  193. package/core/js/libs/auth/orphan.js +110 -0
  194. package/core/js/libs/auth/password-toggle.js +44 -0
  195. package/core/js/libs/auth/session-params.js +266 -0
  196. package/core/js/libs/auth/tracking.js +41 -0
  197. package/core/js/libs/charts.js +516 -0
  198. package/core/js/libs/consent-region.js +127 -0
  199. package/core/js/libs/dev.js +150 -0
  200. package/core/js/libs/graph.js +201 -0
  201. package/core/js/libs/initialize-tooltips.js +31 -0
  202. package/core/js/libs/logger.js +38 -0
  203. package/core/js/libs/omega-copy.js +89 -0
  204. package/core/js/libs/path-prefix.js +44 -0
  205. package/core/js/libs/payment-config.js +76 -0
  206. package/core/js/libs/recaptcha.js +94 -0
  207. package/core/js/libs/sale-name.js +295 -0
  208. package/core/js/libs/showcase-frames.js +37 -0
  209. package/core/js/libs/srcset.js +69 -0
  210. package/core/js/libs/tracking-consent.js +161 -0
  211. package/core/js/main.js +144 -0
  212. package/core/js/pages/404/index.js +57 -0
  213. package/core/js/pages/admin/calendar/calendar-core.js +701 -0
  214. package/core/js/pages/admin/calendar/calendar-events.js +853 -0
  215. package/core/js/pages/admin/calendar/calendar-renderer.js +807 -0
  216. package/core/js/pages/admin/calendar/campaign-preview.js +105 -0
  217. package/core/js/pages/admin/calendar/index.js +40 -0
  218. package/core/js/pages/admin/firebase/index.js +727 -0
  219. package/core/js/pages/admin/index.js +531 -0
  220. package/core/js/pages/admin/posts/editor/index.js +230 -0
  221. package/core/js/pages/admin/posts/index.js +237 -0
  222. package/core/js/pages/admin/studio/index.js +538 -0
  223. package/core/js/pages/admin/users/index.js +669 -0
  224. package/core/js/pages/admin/users/new/index.js +65 -0
  225. package/core/js/pages/admin/verts/index.js +407 -0
  226. package/core/js/pages/alternatives/[alternative]/index.js +17 -0
  227. package/core/js/pages/app/index.js +135 -0
  228. package/core/js/pages/blog/[slug].js +132 -0
  229. package/core/js/pages/blog/_search.mjs +108 -0
  230. package/core/js/pages/blog/index.js +193 -0
  231. package/core/js/pages/blog/page/[num]/index.js +7 -0
  232. package/core/js/pages/connections/callback/index.js +148 -0
  233. package/core/js/pages/contact/index.js +170 -0
  234. package/core/js/pages/cookies.js +2 -0
  235. package/core/js/pages/dashboard/account/index.js +366 -0
  236. package/core/js/pages/dashboard/account/modules/orders.js +82 -0
  237. package/core/js/pages/dashboard/account/sections/api-keys.js +149 -0
  238. package/core/js/pages/dashboard/account/sections/billing.js +1667 -0
  239. package/core/js/pages/dashboard/account/sections/connections.js +333 -0
  240. package/core/js/pages/dashboard/account/sections/data-request.js +225 -0
  241. package/core/js/pages/dashboard/account/sections/delete.js +80 -0
  242. package/core/js/pages/dashboard/account/sections/notifications.js +167 -0
  243. package/core/js/pages/dashboard/account/sections/orders.js +151 -0
  244. package/core/js/pages/dashboard/account/sections/profile.js +200 -0
  245. package/core/js/pages/dashboard/account/sections/referrals.js +217 -0
  246. package/core/js/pages/dashboard/account/sections/refund.js +253 -0
  247. package/core/js/pages/dashboard/account/sections/security.js +726 -0
  248. package/core/js/pages/dashboard/account/sections/team.js +247 -0
  249. package/core/js/pages/download/index.js +418 -0
  250. package/core/js/pages/extension/index.js +164 -0
  251. package/core/js/pages/extension/installed/index.js +135 -0
  252. package/core/js/pages/feedback/index.js +193 -0
  253. package/core/js/pages/legal/_document.js +91 -0
  254. package/core/js/pages/payment/checkout/index.js +420 -0
  255. package/core/js/pages/payment/checkout/modules/api.js +139 -0
  256. package/core/js/pages/payment/checkout/modules/dev-section.js +175 -0
  257. package/core/js/pages/payment/checkout/modules/discount.js +69 -0
  258. package/core/js/pages/payment/checkout/modules/pricing.js +73 -0
  259. package/core/js/pages/payment/checkout/modules/state.js +339 -0
  260. package/core/js/pages/payment/checkout/modules/tracking.js +54 -0
  261. package/core/js/pages/payment/confirmation/index.js +91 -0
  262. package/core/js/pages/payment/confirmation/modules/celebration.js +45 -0
  263. package/core/js/pages/payment/confirmation/modules/state.js +112 -0
  264. package/core/js/pages/payment/confirmation/modules/tracking.js +133 -0
  265. package/core/js/pages/payment/confirmation/modules/verify.js +142 -0
  266. package/core/js/pages/portal/email-preferences/index.js +183 -0
  267. package/core/js/pages/pricing/index.js +425 -0
  268. package/core/js/pages/privacy.js +2 -0
  269. package/core/js/pages/reset/index.js +12 -0
  270. package/core/js/pages/signin/index.js +22 -0
  271. package/core/js/pages/signup/index.js +23 -0
  272. package/core/js/pages/status/index.js +687 -0
  273. package/core/js/pages/terms.js +2 -0
  274. package/core/js/pages/test/components/[category]/[name]/index.js +26 -0
  275. package/core/js/pages/test/libraries/appearance/index.js +220 -0
  276. package/core/js/pages/test/libraries/form-manager/index.js +328 -0
  277. package/core/js/pages/test/libraries/layers/index.js +16 -0
  278. package/core/js/pages/test/libraries/verts/index.js +68 -0
  279. package/core/js/pages/test/sections/[category]/[name]/index.js +28 -0
  280. package/core/js/pages/test/styleguide/index.js +35 -0
  281. package/core/js/pages/token/index.js +203 -0
  282. package/core/logos/brandmarks/original/apple-app-store.svg +1 -0
  283. package/core/logos/brandmarks/original/apple.svg +6 -0
  284. package/core/logos/brandmarks/original/bitbucket.svg +14 -0
  285. package/core/logos/brandmarks/original/bitcoin.svg +1 -0
  286. package/core/logos/brandmarks/original/bluesky.svg +7 -0
  287. package/core/logos/brandmarks/original/bootstrap.svg +43 -0
  288. package/core/logos/brandmarks/original/brave.svg +1 -0
  289. package/core/logos/brandmarks/original/chrome.svg +1 -0
  290. package/core/logos/brandmarks/original/discord.svg +1 -0
  291. package/core/logos/brandmarks/original/dropbox.svg +10 -0
  292. package/core/logos/brandmarks/original/edge.svg +1 -0
  293. package/core/logos/brandmarks/original/facebook-f.svg +1 -0
  294. package/core/logos/brandmarks/original/facebook.svg +8 -0
  295. package/core/logos/brandmarks/original/figma.svg +10 -0
  296. package/core/logos/brandmarks/original/firefox.svg +1 -0
  297. package/core/logos/brandmarks/original/github.svg +6 -0
  298. package/core/logos/brandmarks/original/gitlab.svg +17 -0
  299. package/core/logos/brandmarks/original/google-a-s.svg +1 -0
  300. package/core/logos/brandmarks/original/google-chrome-webstore.svg +49 -0
  301. package/core/logos/brandmarks/original/google-play-store.svg +1 -0
  302. package/core/logos/brandmarks/original/google-web-search.svg +1 -0
  303. package/core/logos/brandmarks/original/google.svg +1 -0
  304. package/core/logos/brandmarks/original/gulp.svg +4 -0
  305. package/core/logos/brandmarks/original/html-5.svg +1 -0
  306. package/core/logos/brandmarks/original/instagram.svg +1 -0
  307. package/core/logos/brandmarks/original/javascript.svg +1 -0
  308. package/core/logos/brandmarks/original/jira.svg +18 -0
  309. package/core/logos/brandmarks/original/kick.svg +7 -0
  310. package/core/logos/brandmarks/original/linkedin.svg +1 -0
  311. package/core/logos/brandmarks/original/linux.svg +28 -0
  312. package/core/logos/brandmarks/original/messenger.svg +16 -0
  313. package/core/logos/brandmarks/original/microsoft.svg +1 -0
  314. package/core/logos/brandmarks/original/npm.svg +8 -0
  315. package/core/logos/brandmarks/original/opera.svg +1 -0
  316. package/core/logos/brandmarks/original/patreon.svg +6 -0
  317. package/core/logos/brandmarks/original/pinterest.svg +6 -0
  318. package/core/logos/brandmarks/original/reddit.svg +1 -0
  319. package/core/logos/brandmarks/original/safari.svg +31 -0
  320. package/core/logos/brandmarks/original/sass.svg +3 -0
  321. package/core/logos/brandmarks/original/signal.svg +6 -0
  322. package/core/logos/brandmarks/original/skype.svg +47 -0
  323. package/core/logos/brandmarks/original/slack.svg +33 -0
  324. package/core/logos/brandmarks/original/soundcloud.svg +1 -0
  325. package/core/logos/brandmarks/original/spotify.svg +5 -0
  326. package/core/logos/brandmarks/original/steam.svg +6 -0
  327. package/core/logos/brandmarks/original/telegram.svg +14 -0
  328. package/core/logos/brandmarks/original/tiktok.svg +1 -0
  329. package/core/logos/brandmarks/original/trello.svg +16 -0
  330. package/core/logos/brandmarks/original/tumblr.svg +1 -0
  331. package/core/logos/brandmarks/original/twitch.svg +6 -0
  332. package/core/logos/brandmarks/original/twitter.svg +6 -0
  333. package/core/logos/brandmarks/original/unity.svg +6 -0
  334. package/core/logos/brandmarks/original/x.svg +7 -0
  335. package/core/logos/brandmarks/original/yahoo-y.svg +1 -0
  336. package/core/logos/brandmarks/original/youtube-square.svg +1 -0
  337. package/core/logos/brandmarks/original/youtube.svg +1 -0
  338. package/core/logos/combomarks/dark/airbnb.svg +30 -0
  339. package/core/logos/combomarks/dark/slack.svg +38 -0
  340. package/core/logos/combomarks/dark/spotify.svg +35 -0
  341. package/core/logos/combomarks/dark/twilio.svg +26 -0
  342. package/core/logos/combomarks/dark/weebly.svg +35 -0
  343. package/core/logos/combomarks/gray/airbnb.svg +33 -0
  344. package/core/logos/combomarks/gray/alphabet.svg +23 -0
  345. package/core/logos/combomarks/gray/amazon.svg +38 -0
  346. package/core/logos/combomarks/gray/boring-company.svg +91 -0
  347. package/core/logos/combomarks/gray/burberry.svg +239 -0
  348. package/core/logos/combomarks/gray/embark.svg +21 -0
  349. package/core/logos/combomarks/gray/fitbit.svg +61 -0
  350. package/core/logos/combomarks/gray/fred-perry.svg +94 -0
  351. package/core/logos/combomarks/gray/google.svg +27 -0
  352. package/core/logos/combomarks/gray/hollister.svg +34 -0
  353. package/core/logos/combomarks/gray/hubspot.svg +27 -0
  354. package/core/logos/combomarks/gray/kaplan.svg +33 -0
  355. package/core/logos/combomarks/gray/lenovo.svg +27 -0
  356. package/core/logos/combomarks/gray/levis.svg +25 -0
  357. package/core/logos/combomarks/gray/mapbox.svg +37 -0
  358. package/core/logos/combomarks/gray/netflix.svg +15 -0
  359. package/core/logos/combomarks/gray/new-balance.svg +32 -0
  360. package/core/logos/combomarks/gray/nike.svg +17 -0
  361. package/core/logos/combomarks/gray/paypal.svg +41 -0
  362. package/core/logos/combomarks/gray/puma.svg +82 -0
  363. package/core/logos/combomarks/gray/samsung.svg +26 -0
  364. package/core/logos/combomarks/gray/shopify.svg +36 -0
  365. package/core/logos/combomarks/gray/slack.svg +42 -0
  366. package/core/logos/combomarks/gray/spotify.svg +38 -0
  367. package/core/logos/combomarks/gray/stripe.svg +24 -0
  368. package/core/logos/combomarks/gray/tnf.svg +30 -0
  369. package/core/logos/combomarks/gray/twilio.svg +29 -0
  370. package/core/logos/combomarks/gray/uber.svg +24 -0
  371. package/core/logos/combomarks/gray/weebly.svg +38 -0
  372. package/core/logos/combomarks/original/airbnb.svg +33 -0
  373. package/core/logos/combomarks/original/alphabet.svg +23 -0
  374. package/core/logos/combomarks/original/amazon.svg +38 -0
  375. package/core/logos/combomarks/original/asana.svg +8 -0
  376. package/core/logos/combomarks/original/boring-company.svg +91 -0
  377. package/core/logos/combomarks/original/discord.svg +6 -0
  378. package/core/logos/combomarks/original/embark.svg +24 -0
  379. package/core/logos/combomarks/original/fitbit.svg +60 -0
  380. package/core/logos/combomarks/original/github.svg +6 -0
  381. package/core/logos/combomarks/original/gitlab.svg +20 -0
  382. package/core/logos/combomarks/original/google.svg +28 -0
  383. package/core/logos/combomarks/original/hubspot.svg +29 -0
  384. package/core/logos/combomarks/original/instagram.svg +7 -0
  385. package/core/logos/combomarks/original/kickstarter.svg +6 -0
  386. package/core/logos/combomarks/original/lenovo.svg +24 -0
  387. package/core/logos/combomarks/original/linkedin.svg +6 -0
  388. package/core/logos/combomarks/original/mapbox.svg +39 -0
  389. package/core/logos/combomarks/original/mastodon.svg +7 -0
  390. package/core/logos/combomarks/original/medium.svg +6 -0
  391. package/core/logos/combomarks/original/meta.svg +22 -0
  392. package/core/logos/combomarks/original/microsoft.svg +13 -0
  393. package/core/logos/combomarks/original/monday.svg +12 -0
  394. package/core/logos/combomarks/original/netflix.svg +15 -0
  395. package/core/logos/combomarks/original/notion.svg +9 -0
  396. package/core/logos/combomarks/original/paypal.svg +41 -0
  397. package/core/logos/combomarks/original/reddit.svg +13 -0
  398. package/core/logos/combomarks/original/samsung.svg +25 -0
  399. package/core/logos/combomarks/original/shopify.svg +35 -0
  400. package/core/logos/combomarks/original/slack.svg +47 -0
  401. package/core/logos/combomarks/original/spotify.svg +37 -0
  402. package/core/logos/combomarks/original/stackoverflow.svg +28 -0
  403. package/core/logos/combomarks/original/stripe.svg +24 -0
  404. package/core/logos/combomarks/original/tiktok.svg +12 -0
  405. package/core/logos/combomarks/original/tumblr.svg +6 -0
  406. package/core/logos/combomarks/original/uber.svg +24 -0
  407. package/core/logos/combomarks/original/weebly.svg +34 -0
  408. package/core/logos/combomarks/original/whatsapp.svg +20 -0
  409. package/core/logos/combomarks/original/youtube.svg +10 -0
  410. package/core/logos/combomarks/original/zoom.svg +7 -0
  411. package/core/logos/combomarks/white/airbnb.svg +33 -0
  412. package/core/logos/combomarks/white/alphabet.svg +23 -0
  413. package/core/logos/combomarks/white/amazon.svg +38 -0
  414. package/core/logos/combomarks/white/boring-company.svg +91 -0
  415. package/core/logos/combomarks/white/embark.svg +21 -0
  416. package/core/logos/combomarks/white/fitbit.svg +61 -0
  417. package/core/logos/combomarks/white/google.svg +27 -0
  418. package/core/logos/combomarks/white/hubspot.svg +27 -0
  419. package/core/logos/combomarks/white/kaplan.svg +33 -0
  420. package/core/logos/combomarks/white/lenovo.svg +27 -0
  421. package/core/logos/combomarks/white/mapbox.svg +37 -0
  422. package/core/logos/combomarks/white/netflix.svg +15 -0
  423. package/core/logos/combomarks/white/paypal.svg +40 -0
  424. package/core/logos/combomarks/white/samsung.svg +26 -0
  425. package/core/logos/combomarks/white/shopify.svg +36 -0
  426. package/core/logos/combomarks/white/slack.svg +42 -0
  427. package/core/logos/combomarks/white/spotify.svg +38 -0
  428. package/core/logos/combomarks/white/stripe.svg +24 -0
  429. package/core/logos/combomarks/white/twilio.svg +29 -0
  430. package/core/logos/combomarks/white/uber.svg +24 -0
  431. package/core/logos/combomarks/white/weebly.svg +38 -0
  432. package/defaults/pages/404.md +4 -0
  433. package/defaults/pages/about.md +4 -0
  434. package/defaults/pages/admin/calendar/index.html +4 -0
  435. package/defaults/pages/admin/firebase/index.html +4 -0
  436. package/defaults/pages/admin/index.md +4 -0
  437. package/defaults/pages/admin/posts/editor.html +4 -0
  438. package/defaults/pages/admin/posts/index.html +4 -0
  439. package/defaults/pages/admin/stackblitz/index.html +4 -0
  440. package/defaults/pages/admin/studio/index.html +4 -0
  441. package/defaults/pages/admin/users/index.html +4 -0
  442. package/defaults/pages/admin/users/new.html +4 -0
  443. package/defaults/pages/admin/verts/index.html +4 -0
  444. package/defaults/pages/ads-txt.html +11 -0
  445. package/defaults/pages/alternatives/index.md +4 -0
  446. package/defaults/pages/app.md +4 -0
  447. package/defaults/pages/auth/reset.md +4 -0
  448. package/defaults/pages/auth/signin.md +4 -0
  449. package/defaults/pages/auth/signup.md +4 -0
  450. package/defaults/pages/auth/token.md +4 -0
  451. package/defaults/pages/blog/categories/category.html +21 -0
  452. package/defaults/pages/blog/categories.md +4 -0
  453. package/defaults/pages/blog/index-json.html +27 -0
  454. package/defaults/pages/blog/tags/tag.html +21 -0
  455. package/defaults/pages/blog/tags.md +4 -0
  456. package/defaults/pages/blog.md +22 -0
  457. package/defaults/pages/careers.md +4 -0
  458. package/defaults/pages/connections/callback.md +4 -0
  459. package/defaults/pages/contact.md +4 -0
  460. package/defaults/pages/dashboard/account.md +4 -0
  461. package/defaults/pages/dashboard/index.md +12 -0
  462. package/defaults/pages/download.md +4 -0
  463. package/defaults/pages/extension/index.html +4 -0
  464. package/defaults/pages/extension/installed.html +4 -0
  465. package/defaults/pages/feedback.md +4 -0
  466. package/defaults/pages/feeds/posts-json.html +40 -0
  467. package/defaults/pages/feeds/posts-xml.html +38 -0
  468. package/defaults/pages/humans.html +25 -0
  469. package/defaults/pages/index.md +4 -0
  470. package/defaults/pages/legal/cookies.md +4 -0
  471. package/defaults/pages/legal/privacy.md +4 -0
  472. package/defaults/pages/legal/terms.md +4 -0
  473. package/defaults/pages/llms-txt.html +46 -0
  474. package/defaults/pages/opensearch.html +16 -0
  475. package/defaults/pages/pages-json.html +42 -0
  476. package/defaults/pages/payment/checkout.md +4 -0
  477. package/defaults/pages/payment/confirmation.md +4 -0
  478. package/defaults/pages/portal/email-preferences.md +4 -0
  479. package/defaults/pages/pricing.md +4 -0
  480. package/defaults/pages/redirects/account.md +12 -0
  481. package/defaults/pages/redirects/admin/dashboard.md +11 -0
  482. package/defaults/pages/redirects/auth/change-password.md +9 -0
  483. package/defaults/pages/redirects/auth/forgot.md +9 -0
  484. package/defaults/pages/redirects/auth/join.md +9 -0
  485. package/defaults/pages/redirects/auth/login.md +9 -0
  486. package/defaults/pages/redirects/auth/recover.md +9 -0
  487. package/defaults/pages/redirects/auth/register.md +9 -0
  488. package/defaults/pages/redirects/auth/reset-password.md +9 -0
  489. package/defaults/pages/redirects/billing/cancel.md +9 -0
  490. package/defaults/pages/redirects/billing/refund.md +9 -0
  491. package/defaults/pages/robots.html +36 -0
  492. package/defaults/pages/security-txt.html +11 -0
  493. package/defaults/pages/sitemap.html +37 -0
  494. package/defaults/pages/status.md +4 -0
  495. package/defaults/pages/team/index.md +4 -0
  496. package/defaults/pages/test/account/dashboard.html +16 -0
  497. package/defaults/pages/test/index.md +12 -0
  498. package/defaults/pages/test/libraries/appearance.html +268 -0
  499. package/defaults/pages/test/libraries/cover.html +50 -0
  500. package/defaults/pages/test/libraries/error.html +30 -0
  501. package/defaults/pages/test/libraries/firestore.html +202 -0
  502. package/defaults/pages/test/libraries/form-manager.html +374 -0
  503. package/defaults/pages/test/libraries/layers.html +52 -0
  504. package/defaults/pages/test/libraries/lazy-loading.html +450 -0
  505. package/defaults/pages/test/libraries/verts.html +149 -0
  506. package/defaults/pages/test/redirect/external.md +13 -0
  507. package/defaults/pages/test/redirect/internal.md +13 -0
  508. package/defaults/pages/test/styleguide/index.html +588 -0
  509. package/defaults/pages/test/translation/index.md +50 -0
  510. package/defaults/pages/updates/index.md +4 -0
  511. package/defaults/sample-posts/2026-01-12-welcome-to-the-blog.md +26 -0
  512. package/defaults/sample-posts/2026-02-03-a-field-guide-to-good-defaults.md +50 -0
  513. package/defaults/sample-posts/2026-02-24-shipping-week-notes.md +37 -0
  514. package/defaults/sample-posts/2026-03-17-the-case-for-one-config.md +36 -0
  515. package/defaults/sample-posts/2026-04-09-write-release-notes-people-read.md +34 -0
  516. package/defaults/sample-posts/2026-05-21-dark-mode-done-properly.md +38 -0
  517. package/defaults/sample-posts/2026-06-02-the-boring-deploy-is-the-good-deploy.md +30 -0
  518. package/defaults/sample-posts/2026-06-11-naming-things-a-survival-guide.md +30 -0
  519. package/defaults/sample-posts/2026-06-19-your-pricing-page-is-a-product.md +28 -0
  520. package/defaults/sample-posts/2026-06-30-email-is-an-api-with-feelings.md +28 -0
  521. package/defaults/sample-posts/2026-07-08-ship-the-docs-with-the-diff.md +30 -0
  522. package/defaults/sample-team/avery-quinn.md +22 -0
  523. package/defaults/sample-team/jordan-reyes.md +25 -0
  524. package/defaults/sample-team/riley-nakamura.md +22 -0
  525. package/defaults/sample-team/sam-okafor.md +22 -0
  526. package/defaults/sample-updates/v1.0.0.md +28 -0
  527. package/defaults/sample-updates/v1.1.0.md +27 -0
  528. package/defaults/sample-updates/v1.2.0.md +27 -0
  529. package/defaults/sample-updates/v1.3.0.md +28 -0
  530. package/defaults/showcase/components.html +62 -0
  531. package/defaults/showcase/entry.html +76 -0
  532. package/defaults/showcase/frame.html +62 -0
  533. package/defaults/showcase/index.html +59 -0
  534. package/dist/assets.js +1349 -0
  535. package/dist/brand-tokens.js +195 -0
  536. package/dist/build.js +192 -0
  537. package/dist/cachebreak-html.js +71 -0
  538. package/dist/cli-run.js +25 -0
  539. package/dist/cli.js +47 -0
  540. package/dist/collections.js +183 -0
  541. package/dist/commands/audit.js +470 -0
  542. package/dist/commands/build.js +197 -0
  543. package/dist/commands/clean.js +18 -0
  544. package/dist/commands/customize.js +125 -0
  545. package/dist/commands/deploy.js +441 -0
  546. package/dist/commands/dev.js +1067 -0
  547. package/dist/commands/install.js +31 -0
  548. package/dist/commands/lib/deploy-precheck.js +43 -0
  549. package/dist/commands/lib/ensure-target.js +115 -0
  550. package/dist/commands/migrate.js +86 -0
  551. package/dist/commands/purge.js +31 -0
  552. package/dist/commands/test.js +237 -0
  553. package/dist/commands/translate.js +57 -0
  554. package/dist/commands/update.js +22 -0
  555. package/dist/commands/version.js +11 -0
  556. package/dist/config-sections.js +245 -0
  557. package/dist/consumer-scan.js +118 -0
  558. package/dist/consumer.js +49 -0
  559. package/dist/customize.js +328 -0
  560. package/dist/decisions.js +153 -0
  561. package/dist/dist-audit.js +417 -0
  562. package/dist/dynamic-pages.js +357 -0
  563. package/dist/engine.js +1402 -0
  564. package/dist/firebase-auth-helpers.js +198 -0
  565. package/dist/font-metrics.js +420 -0
  566. package/dist/frontmatter-liquid.js +253 -0
  567. package/dist/github-secrets.js +80 -0
  568. package/dist/hero-animations.js +170 -0
  569. package/dist/imagemin.js +261 -0
  570. package/dist/index.js +41 -0
  571. package/dist/inline-icons.js +65 -0
  572. package/dist/language-flags.js +55 -0
  573. package/dist/layers.js +80 -0
  574. package/dist/layouts.js +44 -0
  575. package/dist/limit-collections.js +199 -0
  576. package/dist/link-resolver.js +303 -0
  577. package/dist/markdown-images.js +85 -0
  578. package/dist/merge.js +20 -0
  579. package/dist/migrate/codemod.js +172 -0
  580. package/dist/migrate/config-convert.js +448 -0
  581. package/dist/migrate/consumer-assets.js +130 -0
  582. package/dist/migrate/index.js +223 -0
  583. package/dist/migrate/lint.js +108 -0
  584. package/dist/migrate/rules.js +1929 -0
  585. package/dist/minify-html.js +148 -0
  586. package/dist/mode-helpers.js +96 -0
  587. package/dist/omega-bin.js +7 -0
  588. package/dist/overrides.js +190 -0
  589. package/dist/path-prefix.js +167 -0
  590. package/dist/paths.js +37 -0
  591. package/dist/pricing.js +301 -0
  592. package/dist/purge.js +95 -0
  593. package/dist/redirect-page.js +45 -0
  594. package/dist/sample-content.js +210 -0
  595. package/dist/scaffold.js +123 -0
  596. package/dist/sections.js +810 -0
  597. package/dist/service-worker.js +200 -0
  598. package/dist/social-pages.js +142 -0
  599. package/dist/srcset.js +67 -0
  600. package/dist/static-assets.js +154 -0
  601. package/dist/target-shortlinks.js +123 -0
  602. package/dist/theme-vocabulary.js +76 -0
  603. package/dist/translate/collect-text-nodes.js +93 -0
  604. package/dist/translate/default-routes.js +152 -0
  605. package/dist/translate/generate-defaults.js +297 -0
  606. package/dist/translate/index.js +568 -0
  607. package/dist/translate/packaged-defaults.js +127 -0
  608. package/dist/translate/sitemap.js +108 -0
  609. package/dist/vendor/account/engine.js +182 -0
  610. package/dist/vendor/account/features.js +220 -0
  611. package/dist/vendor/account/index.js +53 -0
  612. package/dist/vendor/account/schema.js +272 -0
  613. package/dist/vendor/account/subscription.js +38 -0
  614. package/dist/vendor/config/company.js +31 -0
  615. package/dist/vendor/config/defaults.js +173 -0
  616. package/dist/vendor/config/demo.js +18 -0
  617. package/dist/vendor/config/desktop-artifacts.js +110 -0
  618. package/dist/vendor/config/edit.js +769 -0
  619. package/dist/vendor/config/env-delivery.js +145 -0
  620. package/dist/vendor/config/env-rules.js +93 -0
  621. package/dist/vendor/config/env-schema.js +1078 -0
  622. package/dist/vendor/config/env.js +445 -0
  623. package/dist/vendor/config/hooks.js +97 -0
  624. package/dist/vendor/config/index.js +237 -0
  625. package/dist/vendor/config/instances.js +208 -0
  626. package/dist/vendor/config/load.js +490 -0
  627. package/dist/vendor/config/merge.js +68 -0
  628. package/dist/vendor/config/order.js +139 -0
  629. package/dist/vendor/config/ports.js +374 -0
  630. package/dist/vendor/config/providers.js +32 -0
  631. package/dist/vendor/config/repo.js +142 -0
  632. package/dist/vendor/config/retired-keys.js +430 -0
  633. package/dist/vendor/config/schema.js +1610 -0
  634. package/dist/vendor/config/secrets.js +50 -0
  635. package/dist/vendor/config/seed.js +34 -0
  636. package/dist/vendor/config/site-global.js +205 -0
  637. package/dist/vendor/config/validate.js +554 -0
  638. package/dist/vendor/config/winback.js +61 -0
  639. package/dist/vendor/devkit/actions-secrets.js +145 -0
  640. package/dist/vendor/devkit/attach-log-file.js +262 -0
  641. package/dist/vendor/devkit/bare-requires.js +153 -0
  642. package/dist/vendor/devkit/bundle.js +292 -0
  643. package/dist/vendor/devkit/ci-workflows.js +520 -0
  644. package/dist/vendor/devkit/cli-router.js +156 -0
  645. package/dist/vendor/devkit/command-path.js +46 -0
  646. package/dist/vendor/devkit/defaults-engine.js +372 -0
  647. package/dist/vendor/devkit/deploy-precheck.js +54 -0
  648. package/dist/vendor/devkit/deploy-record.js +180 -0
  649. package/dist/vendor/devkit/deploy.js +286 -0
  650. package/dist/vendor/devkit/env-watch.js +132 -0
  651. package/dist/vendor/devkit/framework-deps.js +46 -0
  652. package/dist/vendor/devkit/icons.js +178 -0
  653. package/dist/vendor/devkit/license.js +155 -0
  654. package/dist/vendor/devkit/local-https.js +360 -0
  655. package/dist/vendor/devkit/local.js +1905 -0
  656. package/dist/vendor/devkit/logger.js +128 -0
  657. package/dist/vendor/devkit/merge-line-files.js +296 -0
  658. package/dist/vendor/devkit/omega-bin.js +345 -0
  659. package/dist/vendor/devkit/reads.js +274 -0
  660. package/dist/vendor/devkit/safe-install.js +18 -0
  661. package/dist/vendor/devkit/scaffold-guard.js +96 -0
  662. package/dist/vendor/devkit/stop-signals.js +28 -0
  663. package/dist/vendor/devkit/strip-dev-blocks-plugin.js +29 -0
  664. package/dist/vendor/devkit/strip-dev-blocks.js +32 -0
  665. package/dist/vendor/devkit/target-secrets.js +165 -0
  666. package/dist/vendor/devkit/test/scope.js +162 -0
  667. package/dist/vendor/devkit/translate/cache.js +84 -0
  668. package/dist/vendor/devkit/translate/engine.js +243 -0
  669. package/dist/vendor/devkit/translate/index.js +49 -0
  670. package/dist/vendor/devkit/translate/languages.js +134 -0
  671. package/dist/vendor/devkit/translate/providers.js +188 -0
  672. package/dist/vendor/devkit/update.js +569 -0
  673. package/dist/vendor/template-kit/data/language-flags.js +54 -0
  674. package/dist/vendor/template-kit/data/languages.js +195 -0
  675. package/dist/vendor/template-kit/data/social-urls.js +26 -0
  676. package/dist/vendor/template-kit/filters.js +227 -0
  677. package/dist/vendor/template-kit/index.js +28 -0
  678. package/dist/vendor/template-kit/jekyll-compat.js +268 -0
  679. package/dist/vendor/template-kit/register-liquid.js +0 -0
  680. package/dist/vendor/template-kit/tags/collections.js +191 -0
  681. package/dist/vendor/template-kit/tags/conditionals.js +101 -0
  682. package/dist/vendor/template-kit/tags/content.js +175 -0
  683. package/dist/vendor/template-kit/tags/index.js +33 -0
  684. package/dist/vendor/template-kit/tags/media.js +376 -0
  685. package/dist/vendor/template-kit/variable-resolver.js +163 -0
  686. package/docs/ads-system.md +109 -0
  687. package/docs/classy-v2/DIRECTION.md +92 -0
  688. package/docs/classy-v2/draft-1.html +1932 -0
  689. package/docs/classy-v2/draft-2.html +1956 -0
  690. package/docs/frontmatter.md +153 -0
  691. package/docs/index.md +254 -0
  692. package/docs/libs.md +298 -0
  693. package/docs/omega-sections-spec.md +159 -0
  694. package/docs/page-contract.md +112 -0
  695. package/docs/sections.md +845 -0
  696. package/docs/shared/agent-docs.md +89 -0
  697. package/docs/shared/analytics.md +612 -0
  698. package/docs/shared/brands.md +51 -0
  699. package/docs/shared/breaking-changes.md +497 -0
  700. package/docs/shared/config.md +1387 -0
  701. package/docs/shared/deploys.md +215 -0
  702. package/docs/shared/icons.md +201 -0
  703. package/docs/shared/local-dev.md +147 -0
  704. package/docs/shared/logging.md +202 -0
  705. package/docs/shared/monitoring.md +153 -0
  706. package/docs/shared/publishing.md +183 -0
  707. package/docs/shared/rulings.md +34 -0
  708. package/docs/shared/testing.md +147 -0
  709. package/docs/shared/theming.md +604 -0
  710. package/docs/shared/translation.md +291 -0
  711. package/docs/shared/updates.md +61 -0
  712. package/docs/template-kit.md +128 -0
  713. package/docs/test-framework.md +163 -0
  714. package/package.json +122 -0
  715. package/runtime/boot.js +149 -0
  716. package/runtime/icons.js +77 -0
  717. package/runtime/manager.js +36 -0
  718. package/scaffold/.github/workflows/build.yml +139 -0
  719. package/scaffold/.nvmrc +1 -0
  720. package/scaffold/AGENTS.md +55 -0
  721. package/scaffold/CLAUDE.md +1 -0
  722. package/scaffold/_.gitattributes +4 -0
  723. package/scaffold/_.gitignore +27 -0
  724. package/scaffold/config/omega.json5 +20 -0
  725. package/scaffold/src/assets/css/pages/.gitkeep +0 -0
  726. package/scaffold/src/assets/images/.gitkeep +0 -0
  727. package/scaffold/src/assets/js/pages/.gitkeep +0 -0
  728. package/scaffold/src/pages/.gitkeep +0 -0
  729. package/scaffold/src/pages/example.md.txt +94 -0
  730. package/scaffold/src/service-worker.js +16 -0
  731. package/sw/entry.js +19 -0
  732. package/sw/manager.js +281 -0
  733. package/themes/_template/README.md +115 -0
  734. package/themes/_template/_config.scss +60 -0
  735. package/themes/_template/_theme.js +14 -0
  736. package/themes/_template/_theme.scss +28 -0
  737. package/themes/_template/css/base/_root.scss +19 -0
  738. package/themes/_template/css/components/_components.scss +23 -0
  739. package/themes/base/README.md +5 -0
  740. package/themes/base/_components/data/org-chart/component.html +33 -0
  741. package/themes/base/_components/data/org-chart/component.json5 +33 -0
  742. package/themes/base/_components/data/org-chart/component.scss +183 -0
  743. package/themes/base/_components/heading/masthead/component.html +22 -0
  744. package/themes/base/_components/heading/masthead/component.json5 +30 -0
  745. package/themes/base/_components/heading/section-head/component.html +18 -0
  746. package/themes/base/_components/heading/section-head/component.json5 +27 -0
  747. package/themes/base/_components/pricing/features/component.html +29 -0
  748. package/themes/base/_components/pricing/features/component.json5 +30 -0
  749. package/themes/base/_hero/orbit/index.html +30 -0
  750. package/themes/base/_hero/orbit/script.js +33 -0
  751. package/themes/base/_hero/orbit/style.scss +133 -0
  752. package/themes/base/_includes/admin/sections/sidebar.html +3 -0
  753. package/themes/base/_includes/admin/sections/topbar.html +3 -0
  754. package/themes/base/_includes/backend/sections/sidebar.html +3 -0
  755. package/themes/base/_includes/backend/sections/topbar.html +3 -0
  756. package/themes/base/_includes/frontend/components/connection-card.html +49 -0
  757. package/themes/base/_includes/frontend/components/post-card.html +54 -0
  758. package/themes/base/_includes/frontend/sections/account-connections.html +42 -0
  759. package/themes/base/_includes/frontend/sections/account-section-header.html +11 -0
  760. package/themes/base/_includes/frontend/sections/footer.html +154 -0
  761. package/themes/base/_includes/frontend/sections/nav.html +276 -0
  762. package/themes/base/_includes/global/sections/account.html +72 -0
  763. package/themes/base/_includes/global/sections/app-sidebar.html +248 -0
  764. package/themes/base/_includes/global/sections/app-topbar.html +228 -0
  765. package/themes/base/_includes/global/sections/page-header.html +99 -0
  766. package/themes/base/_layouts/admin/core/minimal-viewport-locked.html +22 -0
  767. package/themes/base/_layouts/admin/core/minimal.html +23 -0
  768. package/themes/base/_layouts/backend/core/base.html +57 -0
  769. package/themes/base/_layouts/backend/core/minimal-viewport-locked.html +32 -0
  770. package/themes/base/_layouts/backend/core/minimal.html +32 -0
  771. package/themes/base/_layouts/backend/pages/dashboard/index.html +230 -0
  772. package/themes/base/_layouts/frontend/core/base.html +31 -0
  773. package/themes/base/_layouts/frontend/core/cover.html +40 -0
  774. package/themes/base/_layouts/frontend/core/minimal.html +47 -0
  775. package/themes/base/_layouts/frontend/pages/404.html +54 -0
  776. package/themes/base/_layouts/frontend/pages/about.html +144 -0
  777. package/themes/base/_layouts/frontend/pages/account/index.html +2104 -0
  778. package/themes/base/_layouts/frontend/pages/alternatives/alternative.html +319 -0
  779. package/themes/base/_layouts/frontend/pages/alternatives/index.html +186 -0
  780. package/themes/base/_layouts/frontend/pages/app.html +142 -0
  781. package/themes/base/_layouts/frontend/pages/auth/reset.html +53 -0
  782. package/themes/base/_layouts/frontend/pages/auth/signin.html +90 -0
  783. package/themes/base/_layouts/frontend/pages/auth/signup.html +141 -0
  784. package/themes/base/_layouts/frontend/pages/auth/token.html +44 -0
  785. package/themes/base/_layouts/frontend/pages/blog/categories/category.html +88 -0
  786. package/themes/base/_layouts/frontend/pages/blog/categories/index.html +88 -0
  787. package/themes/base/_layouts/frontend/pages/blog/index.html +255 -0
  788. package/themes/base/_layouts/frontend/pages/blog/post.html +261 -0
  789. package/themes/base/_layouts/frontend/pages/blog/tags/index.html +84 -0
  790. package/themes/base/_layouts/frontend/pages/blog/tags/tag.html +88 -0
  791. package/themes/base/_layouts/frontend/pages/collection/category.html +72 -0
  792. package/themes/base/_layouts/frontend/pages/collection/document.html +54 -0
  793. package/themes/base/_layouts/frontend/pages/collection/index.html +84 -0
  794. package/themes/base/_layouts/frontend/pages/connections/callback.html +55 -0
  795. package/themes/base/_layouts/frontend/pages/contact.html +214 -0
  796. package/themes/base/_layouts/frontend/pages/download.html +793 -0
  797. package/themes/base/_layouts/frontend/pages/extension/index.html +253 -0
  798. package/themes/base/_layouts/frontend/pages/extension/installed.html +198 -0
  799. package/themes/base/_layouts/frontend/pages/feedback.html +171 -0
  800. package/themes/base/_layouts/frontend/pages/index.html +66 -0
  801. package/themes/base/_layouts/frontend/pages/legal/document.html +78 -0
  802. package/themes/base/_layouts/frontend/pages/payment/checkout.html +459 -0
  803. package/themes/base/_layouts/frontend/pages/payment/confirmation.html +131 -0
  804. package/themes/base/_layouts/frontend/pages/portal/email-preferences.html +104 -0
  805. package/themes/base/_layouts/frontend/pages/pricing.html +596 -0
  806. package/themes/base/_layouts/frontend/pages/status.html +361 -0
  807. package/themes/base/_layouts/frontend/pages/team/index.html +210 -0
  808. package/themes/base/_layouts/frontend/pages/team/member.html +125 -0
  809. package/themes/base/_layouts/frontend/pages/updates/index.html +119 -0
  810. package/themes/base/_layouts/frontend/pages/updates/update.html +118 -0
  811. package/themes/base/_sections/about/hero/section.html +68 -0
  812. package/themes/base/_sections/about/hero/section.json5 +58 -0
  813. package/themes/base/_sections/about/letter/section.html +60 -0
  814. package/themes/base/_sections/about/letter/section.json5 +56 -0
  815. package/themes/base/_sections/about/photo-band/section.html +24 -0
  816. package/themes/base/_sections/about/photo-band/section.json5 +23 -0
  817. package/themes/base/_sections/about/principles/section.html +17 -0
  818. package/themes/base/_sections/about/principles/section.json5 +34 -0
  819. package/themes/base/_sections/about/timeline/section.html +20 -0
  820. package/themes/base/_sections/about/timeline/section.json5 +34 -0
  821. package/themes/base/_sections/marketing/bento/section.html +91 -0
  822. package/themes/base/_sections/marketing/bento/section.json5 +152 -0
  823. package/themes/base/_sections/marketing/cta/section.html +44 -0
  824. package/themes/base/_sections/marketing/cta/section.json5 +47 -0
  825. package/themes/base/_sections/marketing/faq/section.html +52 -0
  826. package/themes/base/_sections/marketing/faq/section.json5 +68 -0
  827. package/themes/base/_sections/marketing/hero/section.html +349 -0
  828. package/themes/base/_sections/marketing/hero/section.json5 +335 -0
  829. package/themes/base/_sections/marketing/newsletter-cta/section.html +38 -0
  830. package/themes/base/_sections/marketing/newsletter-cta/section.js +86 -0
  831. package/themes/base/_sections/marketing/newsletter-cta/section.json5 +29 -0
  832. package/themes/base/_sections/marketing/pricing-cards/section.html +115 -0
  833. package/themes/base/_sections/marketing/pricing-cards/section.json5 +72 -0
  834. package/themes/base/_sections/marketing/product-demo/section.html +62 -0
  835. package/themes/base/_sections/marketing/product-demo/section.js +44 -0
  836. package/themes/base/_sections/marketing/product-demo/section.json5 +52 -0
  837. package/themes/base/_sections/marketing/prose/section.html +22 -0
  838. package/themes/base/_sections/marketing/prose/section.json5 +41 -0
  839. package/themes/base/_sections/marketing/showcase/section.html +35 -0
  840. package/themes/base/_sections/marketing/showcase/section.json5 +52 -0
  841. package/themes/base/_sections/marketing/stats/section.html +32 -0
  842. package/themes/base/_sections/marketing/stats/section.json5 +44 -0
  843. package/themes/base/_sections/marketing/testimonials/section.html +54 -0
  844. package/themes/base/_sections/marketing/testimonials/section.json5 +70 -0
  845. package/themes/base/_sections/marketing/trusted-by/section.html +30 -0
  846. package/themes/base/_sections/marketing/trusted-by/section.json5 +38 -0
  847. package/themes/base/_sections/verts/unit/section.html +7 -0
  848. package/themes/base/_sections/verts/unit/section.js +22 -0
  849. package/themes/base/_sections/verts/unit/section.json5 +24 -0
  850. package/themes/base/_sections/verts/unit/section.scss +24 -0
  851. package/themes/base/_theme.js +13 -0
  852. package/themes/base/_theme.scss +4 -0
  853. package/themes/bootstrap/_theme.js +16 -0
  854. package/themes/bootstrap/_theme.scss +11 -0
  855. package/themes/bootstrap/js/index.esm.js +19 -0
  856. package/themes/bootstrap/js/index.umd.js +34 -0
  857. package/themes/bootstrap/js/src/alert.js +87 -0
  858. package/themes/bootstrap/js/src/base-component.js +86 -0
  859. package/themes/bootstrap/js/src/button.js +72 -0
  860. package/themes/bootstrap/js/src/carousel.js +474 -0
  861. package/themes/bootstrap/js/src/collapse.js +297 -0
  862. package/themes/bootstrap/js/src/dom/data.js +55 -0
  863. package/themes/bootstrap/js/src/dom/event-handler.js +317 -0
  864. package/themes/bootstrap/js/src/dom/manipulator.js +71 -0
  865. package/themes/bootstrap/js/src/dom/selector-engine.js +126 -0
  866. package/themes/bootstrap/js/src/dropdown.js +458 -0
  867. package/themes/bootstrap/js/src/modal.js +378 -0
  868. package/themes/bootstrap/js/src/offcanvas.js +282 -0
  869. package/themes/bootstrap/js/src/popover.js +97 -0
  870. package/themes/bootstrap/js/src/scrollspy.js +296 -0
  871. package/themes/bootstrap/js/src/tab.js +315 -0
  872. package/themes/bootstrap/js/src/toast.js +224 -0
  873. package/themes/bootstrap/js/src/tooltip.js +632 -0
  874. package/themes/bootstrap/js/src/util/backdrop.js +151 -0
  875. package/themes/bootstrap/js/src/util/component-functions.js +35 -0
  876. package/themes/bootstrap/js/src/util/config.js +65 -0
  877. package/themes/bootstrap/js/src/util/focustrap.js +115 -0
  878. package/themes/bootstrap/js/src/util/index.js +306 -0
  879. package/themes/bootstrap/js/src/util/sanitizer.js +117 -0
  880. package/themes/bootstrap/js/src/util/scrollbar.js +114 -0
  881. package/themes/bootstrap/js/src/util/swipe.js +146 -0
  882. package/themes/bootstrap/js/src/util/template-factory.js +160 -0
  883. package/themes/bootstrap/overrides/_accordion.scss +21 -0
  884. package/themes/bootstrap/overrides/_avatars.scss +51 -0
  885. package/themes/bootstrap/overrides/_blog-images.scss +45 -0
  886. package/themes/bootstrap/overrides/_buttons-adaptive.scss +141 -0
  887. package/themes/bootstrap/overrides/_color-shades.scss +25 -0
  888. package/themes/bootstrap/overrides/_cursor-utilities.scss +13 -0
  889. package/themes/bootstrap/overrides/_index.scss +30 -0
  890. package/themes/bootstrap/overrides/_links.scss +26 -0
  891. package/themes/bootstrap/overrides/_soft-colors.scss +99 -0
  892. package/themes/bootstrap/overrides/_spacing-extended.scss +74 -0
  893. package/themes/bootstrap/overrides/_spinners.scss +22 -0
  894. package/themes/bootstrap/overrides/_typography-utilities.scss +40 -0
  895. package/themes/bootstrap/scss/_accordion.scss +153 -0
  896. package/themes/bootstrap/scss/_alert.scss +68 -0
  897. package/themes/bootstrap/scss/_badge.scss +38 -0
  898. package/themes/bootstrap/scss/_breadcrumb.scss +40 -0
  899. package/themes/bootstrap/scss/_button-group.scss +147 -0
  900. package/themes/bootstrap/scss/_buttons.scss +216 -0
  901. package/themes/bootstrap/scss/_card.scss +238 -0
  902. package/themes/bootstrap/scss/_carousel.scss +226 -0
  903. package/themes/bootstrap/scss/_close.scss +66 -0
  904. package/themes/bootstrap/scss/_containers.scss +41 -0
  905. package/themes/bootstrap/scss/_dropdown.scss +250 -0
  906. package/themes/bootstrap/scss/_forms.scss +9 -0
  907. package/themes/bootstrap/scss/_functions.scss +302 -0
  908. package/themes/bootstrap/scss/_grid.scss +39 -0
  909. package/themes/bootstrap/scss/_helpers.scss +12 -0
  910. package/themes/bootstrap/scss/_images.scss +42 -0
  911. package/themes/bootstrap/scss/_list-group.scss +199 -0
  912. package/themes/bootstrap/scss/_maps.scss +174 -0
  913. package/themes/bootstrap/scss/_mixins.scss +42 -0
  914. package/themes/bootstrap/scss/_modal.scss +240 -0
  915. package/themes/bootstrap/scss/_nav.scss +197 -0
  916. package/themes/bootstrap/scss/_navbar.scss +289 -0
  917. package/themes/bootstrap/scss/_offcanvas.scss +147 -0
  918. package/themes/bootstrap/scss/_pagination.scss +109 -0
  919. package/themes/bootstrap/scss/_placeholders.scss +51 -0
  920. package/themes/bootstrap/scss/_popover.scss +196 -0
  921. package/themes/bootstrap/scss/_progress.scss +68 -0
  922. package/themes/bootstrap/scss/_reboot.scss +611 -0
  923. package/themes/bootstrap/scss/_root.scss +187 -0
  924. package/themes/bootstrap/scss/_spinners.scss +85 -0
  925. package/themes/bootstrap/scss/_tables.scss +171 -0
  926. package/themes/bootstrap/scss/_toasts.scss +73 -0
  927. package/themes/bootstrap/scss/_tooltip.scss +119 -0
  928. package/themes/bootstrap/scss/_transitions.scss +27 -0
  929. package/themes/bootstrap/scss/_type.scss +106 -0
  930. package/themes/bootstrap/scss/_utilities.scss +806 -0
  931. package/themes/bootstrap/scss/_variables-dark.scss +102 -0
  932. package/themes/bootstrap/scss/_variables.scss +1753 -0
  933. package/themes/bootstrap/scss/bootstrap-grid.scss +62 -0
  934. package/themes/bootstrap/scss/bootstrap-reboot.scss +10 -0
  935. package/themes/bootstrap/scss/bootstrap-utilities.scss +19 -0
  936. package/themes/bootstrap/scss/bootstrap.scss +52 -0
  937. package/themes/bootstrap/scss/forms/_floating-labels.scss +97 -0
  938. package/themes/bootstrap/scss/forms/_form-check.scss +189 -0
  939. package/themes/bootstrap/scss/forms/_form-control.scss +214 -0
  940. package/themes/bootstrap/scss/forms/_form-range.scss +91 -0
  941. package/themes/bootstrap/scss/forms/_form-select.scss +80 -0
  942. package/themes/bootstrap/scss/forms/_form-text.scss +11 -0
  943. package/themes/bootstrap/scss/forms/_input-group.scss +132 -0
  944. package/themes/bootstrap/scss/forms/_labels.scss +36 -0
  945. package/themes/bootstrap/scss/forms/_validation.scss +12 -0
  946. package/themes/bootstrap/scss/helpers/_clearfix.scss +3 -0
  947. package/themes/bootstrap/scss/helpers/_color-bg.scss +7 -0
  948. package/themes/bootstrap/scss/helpers/_colored-links.scss +30 -0
  949. package/themes/bootstrap/scss/helpers/_focus-ring.scss +5 -0
  950. package/themes/bootstrap/scss/helpers/_icon-link.scss +25 -0
  951. package/themes/bootstrap/scss/helpers/_position.scss +36 -0
  952. package/themes/bootstrap/scss/helpers/_ratio.scss +26 -0
  953. package/themes/bootstrap/scss/helpers/_stacks.scss +15 -0
  954. package/themes/bootstrap/scss/helpers/_stretched-link.scss +15 -0
  955. package/themes/bootstrap/scss/helpers/_text-truncation.scss +7 -0
  956. package/themes/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
  957. package/themes/bootstrap/scss/helpers/_vr.scss +8 -0
  958. package/themes/bootstrap/scss/mixins/_alert.scss +18 -0
  959. package/themes/bootstrap/scss/mixins/_backdrop.scss +14 -0
  960. package/themes/bootstrap/scss/mixins/_banner.scss +7 -0
  961. package/themes/bootstrap/scss/mixins/_border-radius.scss +78 -0
  962. package/themes/bootstrap/scss/mixins/_box-shadow.scss +18 -0
  963. package/themes/bootstrap/scss/mixins/_breakpoints.scss +127 -0
  964. package/themes/bootstrap/scss/mixins/_buttons.scss +70 -0
  965. package/themes/bootstrap/scss/mixins/_caret.scss +69 -0
  966. package/themes/bootstrap/scss/mixins/_clearfix.scss +9 -0
  967. package/themes/bootstrap/scss/mixins/_color-mode.scss +21 -0
  968. package/themes/bootstrap/scss/mixins/_color-scheme.scss +7 -0
  969. package/themes/bootstrap/scss/mixins/_container.scss +11 -0
  970. package/themes/bootstrap/scss/mixins/_deprecate.scss +10 -0
  971. package/themes/bootstrap/scss/mixins/_forms.scss +163 -0
  972. package/themes/bootstrap/scss/mixins/_gradients.scss +47 -0
  973. package/themes/bootstrap/scss/mixins/_grid.scss +151 -0
  974. package/themes/bootstrap/scss/mixins/_image.scss +16 -0
  975. package/themes/bootstrap/scss/mixins/_list-group.scss +26 -0
  976. package/themes/bootstrap/scss/mixins/_lists.scss +7 -0
  977. package/themes/bootstrap/scss/mixins/_pagination.scss +10 -0
  978. package/themes/bootstrap/scss/mixins/_reset-text.scss +17 -0
  979. package/themes/bootstrap/scss/mixins/_resize.scss +6 -0
  980. package/themes/bootstrap/scss/mixins/_table-variants.scss +24 -0
  981. package/themes/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  982. package/themes/bootstrap/scss/mixins/_transition.scss +26 -0
  983. package/themes/bootstrap/scss/mixins/_utilities.scss +97 -0
  984. package/themes/bootstrap/scss/mixins/_visually-hidden.scss +38 -0
  985. package/themes/bootstrap/scss/tests/jasmine.js +16 -0
  986. package/themes/bootstrap/scss/tests/mixins/_auto-import-of-variables-dark.test.scss +7 -0
  987. package/themes/bootstrap/scss/tests/mixins/_color-modes.test.scss +69 -0
  988. package/themes/bootstrap/scss/tests/mixins/_media-query-color-mode-full.test.scss +8 -0
  989. package/themes/bootstrap/scss/tests/mixins/_utilities.test.scss +393 -0
  990. package/themes/bootstrap/scss/tests/sass-true/register.js +14 -0
  991. package/themes/bootstrap/scss/tests/sass-true/runner.js +17 -0
  992. package/themes/bootstrap/scss/tests/utilities/_api.test.scss +75 -0
  993. package/themes/bootstrap/scss/utilities/_api.scss +47 -0
  994. package/themes/bootstrap/scss/vendor/_rfs.scss +348 -0
  995. package/themes/classy/README.md +89 -0
  996. package/themes/classy/_config.scss +245 -0
  997. package/themes/classy/_theme.js +31 -0
  998. package/themes/classy/_theme.scss +57 -0
  999. package/themes/classy/css/app/_panels.scss +183 -0
  1000. package/themes/classy/css/base/_fonts.scss +79 -0
  1001. package/themes/classy/css/base/_no-raise.scss +49 -0
  1002. package/themes/classy/css/base/_root.scss +113 -0
  1003. package/themes/classy/css/base/_typography.scss +154 -0
  1004. package/themes/classy/css/base/_utilities.scss +284 -0
  1005. package/themes/classy/css/components/_alerts.scss +51 -0
  1006. package/themes/classy/css/components/_badges.scss +46 -0
  1007. package/themes/classy/css/components/_buttons.scss +175 -0
  1008. package/themes/classy/css/components/_cards.scss +41 -0
  1009. package/themes/classy/css/components/_dropdowns.scss +48 -0
  1010. package/themes/classy/css/components/_forms.scss +171 -0
  1011. package/themes/classy/css/components/_receipt.scss +45 -0
  1012. package/themes/classy/css/layout/_footer.scss +298 -0
  1013. package/themes/classy/css/layout/_general.scss +209 -0
  1014. package/themes/classy/css/layout/_nav.scss +154 -0
  1015. package/themes/classy/css/layout/_shell.scss +458 -0
  1016. package/themes/classy/css/marketing/_bento.scss +238 -0
  1017. package/themes/classy/css/marketing/_content.scss +1328 -0
  1018. package/themes/classy/css/marketing/_downloads.scss +246 -0
  1019. package/themes/classy/css/marketing/_hero.scss +311 -0
  1020. package/themes/classy/css/marketing/_sections.scss +649 -0
  1021. package/themes/classy/css/pages/404/index.scss +67 -0
  1022. package/themes/classy/css/pages/_auth.scss +235 -0
  1023. package/themes/classy/css/pages/admin/firebase/index.scss +22 -0
  1024. package/themes/classy/css/pages/blog/[slug].scss +56 -0
  1025. package/themes/classy/css/pages/cookies.scss +2 -0
  1026. package/themes/classy/css/pages/dashboard/account/index.scss +31 -0
  1027. package/themes/classy/css/pages/feedback/index.scss +39 -0
  1028. package/themes/classy/css/pages/legal/_document.scss +192 -0
  1029. package/themes/classy/css/pages/payment/checkout/index.scss +585 -0
  1030. package/themes/classy/css/pages/payment/confirmation/index.scss +9 -0
  1031. package/themes/classy/css/pages/privacy.scss +2 -0
  1032. package/themes/classy/css/pages/status/index.scss +164 -0
  1033. package/themes/classy/css/pages/terms.scss +2 -0
  1034. package/themes/classy/css/pages/updates/index.scss +128 -0
  1035. package/themes/classy/fonts/inter-italic-latin-ext.woff2 +0 -0
  1036. package/themes/classy/fonts/inter-italic-latin.woff2 +0 -0
  1037. package/themes/classy/fonts/inter-normal-latin-ext.woff2 +0 -0
  1038. package/themes/classy/fonts/inter-normal-latin.woff2 +0 -0
  1039. package/themes/classy/fonts/newsreader-italic-latin-ext.woff2 +0 -0
  1040. package/themes/classy/fonts/newsreader-italic-latin.woff2 +0 -0
  1041. package/themes/classy/fonts/newsreader-normal-latin-ext.woff2 +0 -0
  1042. package/themes/classy/fonts/newsreader-normal-latin.woff2 +0 -0
  1043. package/themes/classy/js/hero-demo-form.js +56 -0
  1044. package/themes/neobrutalism/README.md +118 -0
  1045. package/themes/neobrutalism/_config.scss +139 -0
  1046. package/themes/neobrutalism/_layouts/frontend/core/base.html +30 -0
  1047. package/themes/neobrutalism/_layouts/frontend/pages/index.html +275 -0
  1048. package/themes/neobrutalism/_theme.js +24 -0
  1049. package/themes/neobrutalism/_theme.scss +61 -0
  1050. package/themes/neobrutalism/css/base/_mixins.scss +46 -0
  1051. package/themes/neobrutalism/css/base/_root.scss +169 -0
  1052. package/themes/neobrutalism/css/base/_typography.scss +61 -0
  1053. package/themes/neobrutalism/css/base/_utilities.scss +89 -0
  1054. package/themes/neobrutalism/css/components/_billing-toggle.scss +74 -0
  1055. package/themes/neobrutalism/css/components/_buttons.scss +148 -0
  1056. package/themes/neobrutalism/css/components/_cards.scss +47 -0
  1057. package/themes/neobrutalism/css/components/_forms.scss +88 -0
  1058. package/themes/neobrutalism/css/components/_marketing.scss +244 -0
  1059. package/themes/neobrutalism/css/layout/_general.scss +213 -0
  1060. package/themes/neobrutalism/css/layout/_navigation.scss +171 -0
  1061. package/themes/neobrutalism/css/pages/index.scss +203 -0
  1062. package/themes/neobrutalism/css/pages/pricing/index.scss +58 -0
  1063. package/themes/neobrutalism/css/pages/test/libraries/layers/index.scss +7 -0
  1064. package/themes/neobrutalism/js/pages/test/libraries/layers/index.js +9 -0
  1065. package/themes/newsflash/README.md +117 -0
  1066. package/themes/newsflash/_components/heading/lede/component.html +14 -0
  1067. package/themes/newsflash/_components/heading/lede/component.json5 +23 -0
  1068. package/themes/newsflash/_components/heading/rule-head/component.html +17 -0
  1069. package/themes/newsflash/_components/heading/rule-head/component.json5 +23 -0
  1070. package/themes/newsflash/_components/news/byline/component.html +12 -0
  1071. package/themes/newsflash/_components/news/byline/component.json5 +18 -0
  1072. package/themes/newsflash/_components/news/story-card/component.html +25 -0
  1073. package/themes/newsflash/_components/news/story-card/component.json5 +21 -0
  1074. package/themes/newsflash/_config.scss +147 -0
  1075. package/themes/newsflash/_layouts/frontend/core/base.html +51 -0
  1076. package/themes/newsflash/_layouts/frontend/pages/blog/index.html +299 -0
  1077. package/themes/newsflash/_layouts/frontend/pages/blog/post.html +235 -0
  1078. package/themes/newsflash/_layouts/frontend/pages/index.html +328 -0
  1079. package/themes/newsflash/_sections/marketing/desks/section.html +39 -0
  1080. package/themes/newsflash/_sections/marketing/desks/section.json5 +49 -0
  1081. package/themes/newsflash/_sections/marketing/newsletter-cta/section.html +103 -0
  1082. package/themes/newsflash/_sections/marketing/newsletter-cta/section.json5 +50 -0
  1083. package/themes/newsflash/_sections/marketing/rundown/section.html +28 -0
  1084. package/themes/newsflash/_sections/marketing/rundown/section.json5 +40 -0
  1085. package/themes/newsflash/_theme.js +24 -0
  1086. package/themes/newsflash/_theme.scss +70 -0
  1087. package/themes/newsflash/css/base/_fonts.scss +80 -0
  1088. package/themes/newsflash/css/base/_mixins.scss +51 -0
  1089. package/themes/newsflash/css/base/_root.scss +257 -0
  1090. package/themes/newsflash/css/base/_typography.scss +49 -0
  1091. package/themes/newsflash/css/base/_utilities.scss +122 -0
  1092. package/themes/newsflash/css/components/_badges.scss +65 -0
  1093. package/themes/newsflash/css/components/_billing-toggle.scss +61 -0
  1094. package/themes/newsflash/css/components/_buttons.scss +139 -0
  1095. package/themes/newsflash/css/components/_cards.scss +47 -0
  1096. package/themes/newsflash/css/components/_editorial.scss +173 -0
  1097. package/themes/newsflash/css/components/_forms.scss +75 -0
  1098. package/themes/newsflash/css/components/_infinite-scroll.scss +102 -0
  1099. package/themes/newsflash/css/components/_panels.scss +156 -0
  1100. package/themes/newsflash/css/components/_ticker.scss +67 -0
  1101. package/themes/newsflash/css/layout/_general.scss +330 -0
  1102. package/themes/newsflash/css/layout/_navigation.scss +168 -0
  1103. package/themes/newsflash/css/pages/404/index.scss +79 -0
  1104. package/themes/newsflash/css/pages/blog/[slug].scss +186 -0
  1105. package/themes/newsflash/css/pages/blog/index.scss +17 -0
  1106. package/themes/newsflash/css/pages/index.scss +157 -0
  1107. package/themes/newsflash/css/pages/pricing/index.scss +55 -0
  1108. package/themes/newsflash/css/pages/test/libraries/layers/index.scss +7 -0
  1109. package/themes/newsflash/fonts/fraunces-italic-latin-ext.woff2 +0 -0
  1110. package/themes/newsflash/fonts/fraunces-italic-latin.woff2 +0 -0
  1111. package/themes/newsflash/fonts/fraunces-normal-latin-ext.woff2 +0 -0
  1112. package/themes/newsflash/fonts/fraunces-normal-latin.woff2 +0 -0
  1113. package/themes/newsflash/fonts/schibsted-grotesk-italic-latin-ext.woff2 +0 -0
  1114. package/themes/newsflash/fonts/schibsted-grotesk-italic-latin.woff2 +0 -0
  1115. package/themes/newsflash/fonts/schibsted-grotesk-normal-latin-ext.woff2 +0 -0
  1116. package/themes/newsflash/fonts/schibsted-grotesk-normal-latin.woff2 +0 -0
  1117. package/themes/newsflash/js/pages/blog/[slug].js +29 -0
  1118. package/themes/newsflash/js/pages/test/libraries/layers/index.js +9 -0
  1119. package/translations/es/pages/404.json +86 -0
  1120. package/translations/es/pages/account.json +36 -0
  1121. package/translations/es/pages/app.json +44 -0
  1122. package/translations/es/pages/cancel.json +36 -0
  1123. package/translations/es/pages/change-password.json +36 -0
  1124. package/translations/es/pages/connections/callback.json +41 -0
  1125. package/translations/es/pages/dashboard/account.json +475 -0
  1126. package/translations/es/pages/dashboard.json +36 -0
  1127. package/translations/es/pages/forgot.json +36 -0
  1128. package/translations/es/pages/join.json +36 -0
  1129. package/translations/es/pages/login.json +36 -0
  1130. package/translations/es/pages/payment/checkout.json +83 -0
  1131. package/translations/es/pages/payment/confirmation.json +62 -0
  1132. package/translations/es/pages/portal/email-preferences.json +46 -0
  1133. package/translations/es/pages/recover.json +36 -0
  1134. package/translations/es/pages/refund.json +36 -0
  1135. package/translations/es/pages/register.json +36 -0
  1136. package/translations/es/pages/reset-password.json +36 -0
  1137. package/translations/es/pages/reset.json +42 -0
  1138. package/translations/es/pages/signin.json +45 -0
  1139. package/translations/es/pages/signup.json +60 -0
  1140. package/translations/es/pages/token.json +39 -0
  1141. package/translations/fa/pages/404.json +86 -0
  1142. package/translations/fa/pages/account.json +36 -0
  1143. package/translations/fa/pages/app.json +44 -0
  1144. package/translations/fa/pages/cancel.json +36 -0
  1145. package/translations/fa/pages/change-password.json +36 -0
  1146. package/translations/fa/pages/connections/callback.json +41 -0
  1147. package/translations/fa/pages/dashboard/account.json +475 -0
  1148. package/translations/fa/pages/dashboard.json +36 -0
  1149. package/translations/fa/pages/forgot.json +36 -0
  1150. package/translations/fa/pages/join.json +36 -0
  1151. package/translations/fa/pages/login.json +36 -0
  1152. package/translations/fa/pages/payment/checkout.json +83 -0
  1153. package/translations/fa/pages/payment/confirmation.json +62 -0
  1154. package/translations/fa/pages/portal/email-preferences.json +46 -0
  1155. package/translations/fa/pages/recover.json +36 -0
  1156. package/translations/fa/pages/refund.json +36 -0
  1157. package/translations/fa/pages/register.json +36 -0
  1158. package/translations/fa/pages/reset-password.json +36 -0
  1159. package/translations/fa/pages/reset.json +42 -0
  1160. package/translations/fa/pages/signin.json +45 -0
  1161. package/translations/fa/pages/signup.json +60 -0
  1162. package/translations/fa/pages/token.json +39 -0
@@ -0,0 +1,207 @@
1
+ // OMEGA app shell — structural mechanics for backend/admin surfaces (C3).
2
+ // Layout GEOMETRY only: regions (sidebar / topbar / main / scrim) and
3
+ // STATES (desktop rail collapse, mobile drawer, viewport lock). All paint
4
+ // comes from the token contract (tokens/_index.scss), so a skin restyles by
5
+ // redefining tokens or layering rules — never by fighting these.
6
+ //
7
+ // Markup contract (theme layouts emit this; core/js/core/app-shell.js drives it):
8
+ //
9
+ // <div class="omega-shell" data-omega-shell>
10
+ // <aside class="omega-shell__sidebar" id="…">
11
+ // …pinned head: brand, and any popover-owning module (the selector)…
12
+ // <div class="omega-shell__sidebar-scroll">
13
+ // …nav; text that hides in the rail wears .omega-shell__label…
14
+ // </div>
15
+ // </aside>
16
+ // <header class="omega-shell__topbar">
17
+ // <div class="omega-shell__topbar-start"> (both toggles render only while the page has a rail, #740)
18
+ // <button data-shell-toggle="drawer" aria-expanded="false" aria-controls="…">…</button>
19
+ // <button data-shell-toggle="collapse" aria-expanded="true" aria-controls="…">…</button>
20
+ // </div>
21
+ // <div class="omega-shell__topbar-end">…</div>
22
+ // </header>
23
+ // <button class="omega-shell__drawer-toggle"> (only when the page has a rail and NO topbar, #719)
24
+ // <main class="omega-shell__main">…</main>
25
+ // <div class="omega-shell__scrim" data-shell-dismiss></div>
26
+ // </div>
27
+ //
28
+ // States (stamped on .omega-shell by app-shell.js):
29
+ // data-shell-collapsed="true" — desktop sidebar → icon rail (persisted)
30
+ // data-shell-open="true" — mobile drawer slid in (scrim visible)
31
+ // Variant: .omega-shell--locked — main never scrolls (calendar/studio pages
32
+ // manage their own interior scroll).
33
+
34
+ // Below this, the sidebar becomes the drawer (matches classy's xl cutover).
35
+ $shell-breakpoint: 1200px;
36
+
37
+ :root {
38
+ --omega-shell-sidebar-w: 264px;
39
+ --omega-shell-rail-w: 68px;
40
+ --omega-shell-topbar-h: 60px;
41
+ --omega-shell-pad: 24px;
42
+ }
43
+
44
+ .omega-shell {
45
+ display: grid;
46
+ grid-template-columns: auto minmax(0, 1fr);
47
+ grid-template-rows: auto minmax(0, 1fr);
48
+ height: 100dvh;
49
+ background: var(--omega-ground);
50
+ color: var(--omega-ink);
51
+ }
52
+
53
+ // The rail clips NOTHING (#319): a module that opens a popover — the project
54
+ // selector — has to paint outside the 264px box, so the scroll lives one level
55
+ // down on __sidebar-scroll and the rail is merely positioned. Its z-index is
56
+ // the explicit stacking order for those popovers: above sticky page chrome
57
+ // inside the content column (bootstrap's 1020 band), below the drawer/modal
58
+ // layers.
59
+ .omega-shell__sidebar {
60
+ display: flex;
61
+ flex-direction: column;
62
+ grid-row: 1 / -1;
63
+ position: relative;
64
+ z-index: 1030;
65
+ width: var(--omega-shell-sidebar-w);
66
+ background: var(--omega-surface);
67
+ border-inline-end: 1px solid var(--omega-line);
68
+ transition: width var(--omega-speed) var(--omega-ease), transform var(--omega-speed) var(--omega-ease);
69
+ }
70
+
71
+ // Everything under the pinned head scrolls here — nav plus the bottom slot,
72
+ // which keeps its `mt-auto` push because this region is the flex column now.
73
+ .omega-shell__sidebar-scroll {
74
+ display: flex;
75
+ flex: 1;
76
+ flex-direction: column;
77
+ min-height: 0;
78
+ overflow-y: auto;
79
+ }
80
+
81
+ // A rail popover can now outgrow the viewport (nothing clips it), and the
82
+ // shell page itself never scrolls (100dvh grid) — so a long selector menu
83
+ // caps itself and scrolls internally, keeping the tail reachable on short
84
+ // viewports (#319).
85
+ .omega-shell__sidebar .dropdown-menu {
86
+ max-height: calc(100dvh - 8rem);
87
+ overflow-y: auto;
88
+ }
89
+
90
+ .omega-shell__topbar {
91
+ display: flex;
92
+ align-items: center;
93
+ gap: 8px;
94
+ grid-column: 2;
95
+ min-height: var(--omega-shell-topbar-h);
96
+ padding-inline: 12px;
97
+ background: var(--omega-surface);
98
+ border-bottom: 1px solid var(--omega-line);
99
+ }
100
+
101
+ .omega-shell__topbar-start,
102
+ .omega-shell__topbar-end {
103
+ display: flex;
104
+ align-items: center;
105
+ gap: 8px;
106
+ }
107
+
108
+ .omega-shell__topbar-end {
109
+ margin-inline-start: auto;
110
+ }
111
+
112
+ // The row is PINNED, not auto-placed (#741): a page that turns the topbar off
113
+ // would otherwise land main in the `auto` row, size it to its content, and
114
+ // hand the scroll back to the document. An empty `auto` row is zero height,
115
+ // so row 2 is the whole `1fr` with or without a topbar — and the drawer block
116
+ // below re-places only the column, so the pin holds at every width.
117
+ .omega-shell__main {
118
+ grid-column: 2;
119
+ grid-row: 2;
120
+ overflow-y: auto;
121
+ padding: var(--omega-shell-pad);
122
+ }
123
+
124
+ // The floating drawer toggle: a page with a rail and no topbar renders it
125
+ // instead of the topbar's copy ([#719]). It sits above main and below the
126
+ // drawer + scrim, so opening the drawer covers it and the scrim takes the
127
+ // next tap. The layout hides it above the cutover with `d-xl-none` (the rail
128
+ // is on screen there), so this block is geometry only.
129
+ .omega-shell__drawer-toggle {
130
+ position: fixed;
131
+ inset-block-start: 12px;
132
+ inset-inline-start: 12px;
133
+ z-index: 1035;
134
+ background: var(--omega-surface);
135
+ border: 1px solid var(--omega-line);
136
+ border-radius: var(--omega-radius-m);
137
+ }
138
+
139
+ // Scrim only participates in the mobile drawer state.
140
+ .omega-shell__scrim {
141
+ display: none;
142
+ position: fixed;
143
+ inset: 0;
144
+ z-index: 1040; // pairs with the drawer below; sits under modal layers (1050+)
145
+ background: rgb(0 0 0 / 45%);
146
+ }
147
+
148
+ // ─── Desktop rail collapse ───────────────────────────────────────────────────
149
+
150
+ .omega-shell[data-shell-collapsed='true'] .omega-shell__sidebar {
151
+ width: var(--omega-shell-rail-w);
152
+ }
153
+
154
+ .omega-shell[data-shell-collapsed='true'] .omega-shell__label {
155
+ display: none;
156
+ }
157
+
158
+ // ─── Viewport-locked variant ─────────────────────────────────────────────────
159
+
160
+ .omega-shell--locked .omega-shell__main {
161
+ overflow: hidden;
162
+ }
163
+
164
+ // ─── Mobile: sidebar becomes the drawer ──────────────────────────────────────
165
+
166
+ @media (max-width: ($shell-breakpoint - 0.02px)) {
167
+ .omega-shell {
168
+ grid-template-columns: minmax(0, 1fr);
169
+ }
170
+
171
+ .omega-shell__topbar,
172
+ .omega-shell__main {
173
+ grid-column: 1;
174
+ }
175
+
176
+ .omega-shell__sidebar {
177
+ position: fixed;
178
+ inset-block: 0;
179
+ inset-inline-start: 0;
180
+ z-index: 1045;
181
+ transform: translateX(-100%);
182
+ }
183
+
184
+ // The drawer always shows at full width with labels — desktop rail
185
+ // collapse has no meaning here.
186
+ .omega-shell[data-shell-collapsed='true'] .omega-shell__sidebar {
187
+ width: var(--omega-shell-sidebar-w);
188
+ }
189
+
190
+ .omega-shell[data-shell-collapsed='true'] .omega-shell__label {
191
+ display: revert;
192
+ }
193
+
194
+ .omega-shell[data-shell-open='true'] .omega-shell__sidebar {
195
+ transform: translateX(0);
196
+ }
197
+
198
+ .omega-shell[data-shell-open='true'] .omega-shell__scrim {
199
+ display: block;
200
+ }
201
+ }
202
+
203
+ @media (prefers-reduced-motion: reduce) {
204
+ .omega-shell__sidebar {
205
+ transition: none;
206
+ }
207
+ }
@@ -0,0 +1,166 @@
1
+ // OMEGA core design tokens — the runtime contract every theme (and, at C4,
2
+ // every target) consumes. CSS custom properties ONLY: themes restyle by
3
+ // redefining tokens, components read `var(--omega-*)` and never hardcode.
4
+ //
5
+ // VALUES are the classy v2 sheet (docs/web/classy-v2/DIRECTION.md, Ian-approved
6
+ // draft-2 comps): warm-paper light neutrals, de-blued charcoal dark, a single
7
+ // brand accent slot, reserved status hues, and the Manus-split type stacks.
8
+ // The NAMES plus the light/dark/attribute plumbing below are the contract
9
+ // (D2: dual-theme at the token level from day one).
10
+ //
11
+ // The accent family is a BUILD-TIME override surface: when `brand.color`
12
+ // is set, head.html emits inline `:root` ramps from composeBrandTokens
13
+ // (src/brand-tokens.js) — a light ramp AND a dark-variant ramp stamped with
14
+ // this same plumbing — that win the cascade over these placeholders.
15
+ //
16
+ // Theme attribute: `data-bs-theme` is what core/js/core/appearance.js
17
+ // stamps today (Bootstrap-era name; renames alongside the appearance UI
18
+ // when classy retires — keyed here in exactly one place on purpose).
19
+ //
20
+ // Type presets: `data-omega-type` on <html> re-pairs the font tokens
21
+ // (mix is the default pairing — serif marketing display over sans UI).
22
+ //
23
+ // Surface-2 moves in OPPOSITE directions per mode, on purpose (#152): dark
24
+ // elevates by getting lighter (#1d1d1f over the #0d0d0e ground), light
25
+ // elevates with white + shadow and RECESSES by getting darker. It shipped at
26
+ // #f6f6f5, one point off the light ground, so anything painting it directly
27
+ // on the page was invisible in light mode and correct in dark. #ececeb sits
28
+ // between the ground and the hairline in the warm-neutral ramp: a visible well
29
+ // on the ground AND on a white card, still nowhere near --omega-line-strong.
30
+ // Its Bootstrap twins (`$classy-surface-2-light`, `--bs-secondary-bg-rgb` in
31
+ // classy's root bridge) carry the same value and move with it.
32
+ //
33
+ // Status hues ship in PAIRS: `--omega-ok` and `--omega-ok-rgb` (same for
34
+ // warn/danger). Bootstrap's translucency utilities paint from
35
+ // `rgba(var(--bs-success-rgb), …)`, which no var() can feed a hex to, so each
36
+ // theme's root bridge points --bs-success/-warning/-danger and their -rgb
37
+ // companions at these — ONE green for `bg-success`, `.text-success` and every
38
+ // token-painted glyph, in both modes (#13). A theme that re-values a status
39
+ // hue MUST re-value its -rgb twin or the two drift apart again.
40
+
41
+ @mixin light-tokens {
42
+ --omega-ground: #f5f5f4;
43
+ --omega-surface: #ffffff;
44
+ --omega-surface-2: #ececeb; // the light well: RECESSED off the ground, never a second white
45
+ --omega-ink: #1a1a19;
46
+ --omega-ink-muted: #6d6d6c;
47
+ --omega-ink-faint: #a1a19e;
48
+ --omega-line: #e8e8e6;
49
+ --omega-line-strong: #d8d8d5;
50
+ --omega-accent: #2563eb; // placeholder — brand.color wins at build
51
+ --omega-accent-hover: #1451d8;
52
+ --omega-accent-active: #124ac6;
53
+ --omega-accent-subtle: rgba(37, 99, 235, 0.12);
54
+ --omega-accent-ink: #ffffff;
55
+ --omega-accent-ring: rgba(37, 99, 235, 0.35);
56
+ --omega-ok: #12925c;
57
+ --omega-ok-rgb: 18, 146, 92;
58
+ --omega-warn: #c47206;
59
+ --omega-warn-rgb: 196, 114, 6;
60
+ --omega-danger: #d92d20;
61
+ --omega-danger-rgb: 217, 45, 32;
62
+ --omega-chart-2: #0f8fa9;
63
+ --omega-chart-3: #7a45b5;
64
+ --omega-chart-4: #b0416a;
65
+ --omega-chart-5: #a06a08;
66
+ --omega-chart-6: #6a7f2b;
67
+ --omega-shadow-1: 0 1px 2px rgb(24 23 21 / 5%);
68
+ --omega-shadow-2: 0 18px 44px rgb(24 23 21 / 10%);
69
+ }
70
+
71
+ @mixin dark-tokens {
72
+ --omega-ground: #0d0d0e;
73
+ --omega-surface: #151516;
74
+ --omega-surface-2: #1d1d1f;
75
+ --omega-ink: #ebebea;
76
+ --omega-ink-muted: #9f9fa0;
77
+ --omega-ink-faint: #6c6c6e;
78
+ --omega-line: #262628;
79
+ --omega-line-strong: #333336;
80
+ --omega-accent: #5484ef; // placeholder — brand.color's dark ramp wins at build
81
+ --omega-accent-hover: #336dec;
82
+ --omega-accent-active: #2060eb;
83
+ --omega-accent-subtle: rgba(84, 132, 239, 0.16);
84
+ --omega-accent-ink: #111213;
85
+ --omega-accent-ring: rgba(84, 132, 239, 0.35);
86
+ --omega-ok: #3ecf8e;
87
+ --omega-ok-rgb: 62, 207, 142;
88
+ --omega-warn: #f5a524;
89
+ --omega-warn-rgb: 245, 165, 36;
90
+ --omega-danger: #f0574d;
91
+ --omega-danger-rgb: 240, 87, 77;
92
+ --omega-chart-2: #1f9fb4;
93
+ --omega-chart-3: #c09aec;
94
+ --omega-chart-4: #ee89a8;
95
+ --omega-chart-5: #e0a33c;
96
+ --omega-chart-6: #a9c153;
97
+ --omega-shadow-1: 0 1px 2px rgb(0 0 0 / 30%);
98
+ --omega-shadow-2: 0 18px 44px rgb(0 0 0 / 45%);
99
+ }
100
+
101
+ :root {
102
+ @include light-tokens;
103
+
104
+ // scheme-agnostic
105
+ --omega-radius-xs: 6px;
106
+ --omega-radius-s: 8px;
107
+ --omega-radius-m: 10px;
108
+ --omega-radius-l: 14px;
109
+ --omega-radius-xl: 20px;
110
+ --omega-radius-pill: 50rem;
111
+ --omega-speed: 160ms;
112
+ --omega-speed-slow: 550ms;
113
+ --omega-speed-first-paint: 300ms; // the first viewport's reveal, see motion/_index.scss
114
+ --omega-ease: cubic-bezier(0.25, 0.5, 0.35, 1);
115
+
116
+ // Type stacks (D5: system stacks until Ian picks vendored faces — the
117
+ // token seam makes that swap a values-only change).
118
+ --omega-font-ui: -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, 'Helvetica Neue', arial, sans-serif;
119
+ --omega-font-serif: ui-serif, georgia, 'Times New Roman', times, serif;
120
+ --omega-font-mono: ui-monospace, 'SF Mono', sfmono-regular, menlo, consolas, 'Liberation Mono', monospace;
121
+
122
+ // Pairing slots components actually read: marketing display vs app display.
123
+ // Default = the "mix" pairing (serif marketing, sans app).
124
+ --omega-font-marketing: var(--omega-font-serif);
125
+ --omega-font-display: var(--omega-font-ui);
126
+
127
+ // Chart series-1 rides the accent; 2–6 are the CVD-validated categorical
128
+ // ramp above (cool half first, warm half after — what keeps two vocabularies
129
+ // apart at a glance). It is ONE ramp for two surfaces: a chart series
130
+ // (core/js/libs/charts.js) and a `.omega-badge-tone` chip read the same slot,
131
+ // so the same thing is the same color wherever it appears. Muted on purpose
132
+ // — status is told by a dot and a label, never by color alone.
133
+ --omega-chart-1: var(--omega-accent);
134
+ }
135
+
136
+ // Consumer type presets — one attribute (or a token override in main.scss)
137
+ // re-pairs the display faces everywhere.
138
+ :root[data-omega-type='sans'] {
139
+ --omega-font-marketing: var(--omega-font-ui);
140
+ }
141
+
142
+ :root[data-omega-type='serif'] {
143
+ --omega-font-marketing: var(--omega-font-serif);
144
+ --omega-font-display: var(--omega-font-serif);
145
+ }
146
+
147
+ :root[data-omega-type='mono'] {
148
+ --omega-font-marketing: var(--omega-font-mono);
149
+ --omega-font-display: var(--omega-font-mono);
150
+ }
151
+
152
+ // OS preference carries when no explicit choice is stamped…
153
+ @media (prefers-color-scheme: dark) {
154
+ :root {
155
+ @include dark-tokens;
156
+ }
157
+ }
158
+
159
+ // …and the appearance.js stamp beats the OS in BOTH directions.
160
+ :root[data-bs-theme='dark'] {
161
+ @include dark-tokens;
162
+ }
163
+
164
+ :root[data-bs-theme='light'] {
165
+ @include light-tokens;
166
+ }
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_41.argentina" data-name="41.argentina"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#4cc1ff"/><path d="m150.45 113.75h-148.9a459.61 459.61 0 0 1 0-75.49h148.9a459.61 459.61 0 0 1 0 75.49z" fill="#f0f9ff"/><path d="m96 74.15a1 1 0 0 1 -.6-.77 1 1 0 0 1 .35-.91 5 5 0 0 0 -4-8.79 1 1 0 0 1 -.92-.34.94.94 0 0 1 -.2-1 5 5 0 0 0 -8.13-5.23 1 1 0 0 1 -1 .22.94.94 0 0 1 -.68-.7 5 5 0 0 0 -9.67 0 1 1 0 0 1 -1.63.48 5 5 0 0 0 -8.14 5.23 1 1 0 0 1 -1.11 1.29 5 5 0 0 0 -4 8.79 1 1 0 0 1 -.27 1.73 5 5 0 0 0 1.37 9.58 1 1 0 0 1 .79.57.94.94 0 0 1 -.08 1 5 5 0 0 0 6.33 7.31 1 1 0 0 1 1.43.92 5 5 0 0 0 9.28 2.73 1 1 0 0 1 .85-.48.94.94 0 0 1 .85.48 5 5 0 0 0 4.27 2.39 4.87 4.87 0 0 0 1.41-.21 5 5 0 0 0 3.6-4.91 1 1 0 0 1 1.43-.92 5 5 0 0 0 6.33-7.31 1 1 0 0 1 -.08-1 1 1 0 0 1 .79-.57 5 5 0 0 0 1.43-9.58z" fill="#ffcb24"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_29.bangladesh" data-name="29.bangladesh"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#00c853"/><path d="m76 43a33 33 0 1 0 33 33 33 33 0 0 0 -33-33z" fill="#d50000"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_46.canada" data-name="46.canada"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f40055"/><path d="m117.3 1.86v148.27a459.45 459.45 0 0 1 -82.6 0v-148.27a459.45 459.45 0 0 1 82.6 0z" fill="#f0f9ff"/><path d="m99.88 61.22-5.43-2.52a5 5 0 0 0 -4.74.29l-1.34.83v-2.82a5 5 0 0 0 -2-4l-7.37-5.46a5 5 0 0 0 -6 0l-7.35 5.46a5 5 0 0 0 -2 4v2.78l-1.36-.78a5 5 0 0 0 -4.74-.29l-5.43 2.52a5 5 0 0 0 -2.9 4.62l.19 12.34a5 5 0 0 0 2.59 4.29l11.4 6.31v2.33a5 5 0 0 0 5 5h2.6v4.31a5 5 0 0 0 10 0v-4.3h2.6a5 5 0 0 0 5-5v-2.34l11.4-6.31a5 5 0 0 0 2.58-4.3l.19-12.34a5 5 0 0 0 -2.9-4.62z" fill="#f40055"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_44.switzerland" data-name="44.switzerland"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f40055"/><path d="m103.55 64.13h-15.68v-15.68a5 5 0 0 0 -5-5h-13.73a5 5 0 0 0 -5 5v15.68h-15.69a5 5 0 0 0 -5 5v13.73a5 5 0 0 0 5 5h15.68v15.68a5 5 0 0 0 5 5h13.73a5 5 0 0 0 5-5v-15.67h15.68a5 5 0 0 0 5-5v-13.73a5 5 0 0 0 -4.99-5.01z" fill="#f0f9ff"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_34.china" data-name="34.china"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f40055"/><g fill="#ffcb24"><path d="m57.05 34a4.45 4.45 0 0 0 8.84 0 4.45 4.45 0 0 0 0-8.84 4.45 4.45 0 0 0 -8.84 0 4.45 4.45 0 0 0 0 8.84z"/><path d="m65.89 81.42a4.45 4.45 0 0 0 -8.84 0 4.45 4.45 0 0 0 0 8.84 4.45 4.45 0 0 0 8.84 0 4.45 4.45 0 0 0 0-8.84z"/><path d="m68.88 45.82a4.45 4.45 0 0 0 3.92 4.42 4.46 4.46 0 0 0 8.85 0 4.46 4.46 0 0 0 0-8.85 4.46 4.46 0 0 0 -8.85 0 4.46 4.46 0 0 0 -3.92 4.43z"/><path d="m68.88 69.65a4.45 4.45 0 0 0 3.92 4.42 4.46 4.46 0 0 0 8.85 0 4.45 4.45 0 0 0 0-8.84 4.46 4.46 0 0 0 -8.85 0 4.45 4.45 0 0 0 -3.92 4.42z"/><path d="m48.76 58.47 11.37-8.26a2.86 2.86 0 0 0 -1.68-5.21h-14.05a2.86 2.86 0 0 1 -2.72-2l-4.34-13.3a2.86 2.86 0 0 0 -5.44 0l-4.34 13.36a2.87 2.87 0 0 1 -2.72 2h-14a2.86 2.86 0 0 0 -1.68 5.17l11.36 8.26a2.87 2.87 0 0 1 1 3.2l-4.35 13.31a2.86 2.86 0 0 0 4.4 3.19l11.37-8.19a2.85 2.85 0 0 1 3.36 0l11.36 8.25a2.86 2.86 0 0 0 4.41-3.25l-4.34-13.33a2.85 2.85 0 0 1 1-3.2z"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_39.colombia" data-name="39.colombia"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#ffcb24"/><path d="m152 76.41q0 17.1-1.31 34.2c0 .46-.06.92-.1 1.39h-149.18c0-.47-.07-.93-.1-1.39q-1.31-17.08-1.31-34.2c0-1.41 0-2.76 0-4.15h152z" fill="#406bd4"/><path d="m150.69 110.61c0 .46-.06.92-.1 1.39q-.51 6.41-1.19 12.81a27.68 27.68 0 0 1 -24.59 24.59 459 459 0 0 1 -97.62 0 27.68 27.68 0 0 1 -24.59-24.59q-.69-6.4-1.19-12.81c0-.47-.07-.93-.1-1.39z" fill="#f40055"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_23.curacao" data-name="23.curacao"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#406bd4"/><g fill="#ffcb24"><path d="m150.3 115.61q-.41 4.61-.9 9.21c0 .27-.06.54-.11.81h-146.58c0-.27-.08-.54-.11-.81q-.5-4.6-.9-9.21z"/><path d="m56.5 67.21 12.77-9.28a3.22 3.22 0 0 0 -1.89-5.82h-15.78a3.2 3.2 0 0 1 -3.06-2.22l-4.88-15a3.22 3.22 0 0 0 -6.12 0l-4.87 15a3.21 3.21 0 0 1 -3.06 2.22h-15.79a3.22 3.22 0 0 0 -1.89 5.82l12.77 9.28a3.21 3.21 0 0 1 1.17 3.59l-4.87 15.02a3.22 3.22 0 0 0 5 3.59l12.77-9.28a3.21 3.21 0 0 1 3.78 0l12.77 9.28a3.22 3.22 0 0 0 5-3.59l-4.88-15a3.21 3.21 0 0 1 1.17-3.59z"/><path d="m20.63 25.41a5 5 0 0 0 -9.94 0 5 5 0 0 0 0 9.94 5 5 0 0 0 9.94 0 5 5 0 0 0 0-9.94z"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_15.czech_republic" data-name="15.czech republic"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m152 76a457.88 457.88 0 0 1 -2.6 48.79 27.7 27.7 0 0 1 -24.59 24.59 460.34 460.34 0 0 1 -97.62 0 27.72 27.72 0 0 1 -24.59-24.61 457.88 457.88 0 0 1 -2.6-48.77z" fill="#f40055"/><path d="m81 76a5 5 0 0 1 -1.6 3.67l-67.72 62.79a27.59 27.59 0 0 1 -9.08-17.69 459.08 459.08 0 0 1 0-97.58 27.68 27.68 0 0 1 8.54-17.19l68.24 62.3a5 5 0 0 1 1.62 3.7z" fill="#406bd4"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_32.germany" data-name="32.germany"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f40055"/><path d="m151.38 52.26h-150.76q.63-12.54 2-25.08a27.68 27.68 0 0 1 24.57-24.58 459 459 0 0 1 97.62 0 27.68 27.68 0 0 1 24.59 24.58q1.33 12.53 1.98 25.08z" fill="#141a1a"/><path d="m151.38 99.73q-.63 12.54-2 25.08a27.68 27.68 0 0 1 -24.59 24.58 459 459 0 0 1 -97.62 0 27.68 27.68 0 0 1 -24.57-24.58q-1.34-12.54-2-25.08z" fill="#ffcb24"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_14.denmark" data-name="14.denmark"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f40055"/><path d="m54.52 151.48v-80.67h97.48q-.06-5-.22-10h-97.26v-60.3q-5 .23-10 .58v59.7h-44.27q-.16 5-.22 10h44.47v80.1z" fill="#f0f9ff"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_12.egypt" data-name="12.egypt"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m150.45 38.25h-148.9c.31-3.69.65-7.38 1.05-11.07a27.68 27.68 0 0 1 24.59-24.58 459 459 0 0 1 97.62 0 27.68 27.68 0 0 1 24.59 24.58c.4 3.69.74 7.38 1.05 11.07z" fill="#f40055"/><path d="m150.45 113.74q-.47 5.54-1 11.07a27.68 27.68 0 0 1 -24.59 24.58 459 459 0 0 1 -97.62 0 27.68 27.68 0 0 1 -24.64-24.58q-.59-5.53-1-11.07z" fill="#141a1a"/><path d="m92.6 62.39a9.8 9.8 0 0 0 -8.49-1.77l-3.11.78v-3.19a5 5 0 1 0 -10 0v3.19l-3.1-.78a9.86 9.86 0 0 0 -12.3 9.57v8.39a5 5 0 1 0 10 0v-8.21l5.4 1.37v16a5 5 0 0 0 -2.31 9.61 18.84 18.84 0 0 0 14.64 0 5 5 0 0 0 -2.33-9.64v-16l5.38-1.37v8.21a5 5 0 0 0 10 0v-8.36a9.83 9.83 0 0 0 -3.78-7.8z" fill="#ffcb24"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_35.spain" data-name="35.spain"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f40055"/><path d="m150.45 113.74h-148.9a459.49 459.49 0 0 1 0-75.48h148.9a459.49 459.49 0 0 1 0 75.48z" fill="#ffcb24"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_16.finland" data-name="16.finland"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m151.83 81.21h-80.83v70.69q-16.8-.18-33.58-1.59v-69.1h-37.42q-.16-16.78.88-33.59h36.55v-45.93q16.77-1.42 33.57-1.59v47.52h80q1 16.8.83 33.59z" fill="#406bd4"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_31.france" data-name="31.france"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m44.2 1.1v149.8q-8.51-.59-17-1.5a27.69 27.69 0 0 1 -24.6-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59q8.51-.91 17.01-1.5z" fill="#406bd4"/><path d="m149.4 124.81a27.69 27.69 0 0 1 -24.59 24.59q-8.5.91-17 1.5v-149.8q8.51.59 17 1.5a27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62z" fill="#f40055"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_46.england" data-name="46.england"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m151.77 90.17h-61.6v61.61q-14.17.43-28.34 0v-61.61h-61.6q-.45-14.17 0-28.34h61.6v-61.61q14.17-.44 28.34 0v61.61h61.6q.45 14.17 0 28.34z" fill="#f40055"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_24.equatorial_guinea" data-name="24.equatorial guinea"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m150.83 43.24h-124.83l-19.34-27.78c.2-.33.41-.66.64-1a27.63 27.63 0 0 1 19.89-11.85 459 459 0 0 1 97.62 0 27.68 27.68 0 0 1 24.59 24.58q.86 8.02 1.43 16.05z" fill="#39b44a"/><path d="m150.83 108.77q-.57 8-1.43 16a27.68 27.68 0 0 1 -24.59 24.58 459 459 0 0 1 -97.62 0 27.66 27.66 0 0 1 -20.07-12.08l20.12-28.5z" fill="#f0f9ff"/><path d="m102.86 58.27h-20.48a5 5 0 0 0 -5 5v15.2a15.25 15.25 0 1 0 30.5 0v-15.19a5 5 0 0 0 -5-5z" fill="#39b44a"/><path d="m45 83.6-17.76 25.16-20.12 28.5c-.19-.28-.38-.57-.55-.86a27.73 27.73 0 0 1 -4-11.59 459 459 0 0 1 0-97.62 27.61 27.61 0 0 1 4.09-11.73c.2-.33.41-.66.64-1l20.14 28.78 17.61 25.15a13.22 13.22 0 0 1 -.05 15.21z" fill="#406bd4"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_18..greece" data-name="18..greece"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#406bd4"/><g fill="#f0f9ff"><path d="m150.31 115.33c-.28 3.17-.58 6.33-.92 9.49 0 .18 0 .35-.07.53h-146.65c0-.18 0-.35-.07-.53q-.51-4.74-.91-9.49z"/><path d="m151.87 86.34q-.1 5-.33 10h-151.08q-.24-5-.34-10z"/><path d="m151.87 65.67h-75.87v-10h75.54q.22 4.99.33 10z"/><path d="m150.3 36.52h-74.3v-9.86h73.32c0 .18.05.35.07.53q.5 4.67.91 9.33z"/><path d="m76 36.52v10.11h-37.74v40h-10v-40h-27.32q.33-5.06.76-10.11h26.54v-34.02q5-.53 10-.94v35z"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_05.guatemala" data-name="05.guatemala"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#4cc1ff"/><path d="m116.71 1.82v148.36q-7.62.67-15.25 1.11t-15.26.6q-13 .29-25.91-.16t-26.19-1.66v-148.14q16.14-1.48 32.31-1.82 9.59-.21 19.19 0 15.56.33 31.11 1.71z" fill="#f0f9ff"/><path d="m82.49 64.86 2.8-2.8a5 5 0 1 0 -7.09-7.06l-2.8 2.8-2.8-2.8a5 5 0 0 0 -7.08 7.08l2.8 2.8-2.8 2.8a5 5 0 0 0 7.08 7.09l2.8-2.77 2.8 2.8a5 5 0 0 0 7.09-7.09z" fill="#cee5f5"/><path d="m105.36 66.61a30 30 0 0 0 -3.5-14.06 5 5 0 0 0 -8.86 4.71 19.64 19.64 0 0 1 2.33 9.35 19.94 19.94 0 1 1 -39.88 0 19.75 19.75 0 0 1 2.33-9.35 5 5 0 1 0 -8.78-4.71 30 30 0 0 0 17 42.5l-.75.89a5 5 0 1 0 7.69 6.42l2.5-3 2.5 3a5 5 0 0 0 7.69-6.42l-.75-.89a30 30 0 0 0 20.52-28.44z" fill="#39b44a"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_22.honduras" data-name="22.honduras"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#4cc1ff"/><path d="m150.45 113.79h-148.9a460.71 460.71 0 0 1 0-75.58h148.9a460.71 460.71 0 0 1 0 75.58z" fill="#f0f9ff"/><g fill="#4cc1ff"><path d="m57.19 93.14a5 5 0 0 0 -10 0 5 5 0 0 0 0 10 5 5 0 0 0 10 0 5 5 0 0 0 0-10z"/><path d="m104.78 93.14a5 5 0 0 0 -10 0 5 5 0 0 0 0 10 5 5 0 0 0 10 0 5 5 0 0 0 0-10z"/><path d="m81 71a5 5 0 0 0 -10 0 5 5 0 0 0 0 10 5 5 0 0 0 10 0 5 5 0 0 0 0-10z"/><path d="m57.19 48.89a5 5 0 0 0 -10 0 5 5 0 0 0 0 10 5 5 0 0 0 10 0 5 5 0 0 0 0-10z"/><path d="m94.81 58.85a5 5 0 0 0 10 0 5 5 0 0 0 0-10 5 5 0 0 0 -10 0 5 5 0 0 0 0 10z"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="clip"><path d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z"/></clipPath></defs><g clip-path="url(#clip)"><rect width="152" height="76" fill="#f40055"/><rect y="76" width="152" height="76" fill="#f0f9ff"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_19.ireland" data-name="19.ireland"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m44.23 1.11q-8.53.58-17 1.49a27.69 27.69 0 0 0 -24.63 24.59 459 459 0 0 0 0 97.62 27.67 27.67 0 0 0 24.58 24.59q8.52.9 17 1.49l1.82.11v-150z" fill="#39b44a"/><path d="m106.59 1v150c.39 0 .78 0 1.17-.09q8.52-.58 17-1.49a27.69 27.69 0 0 0 24.59-24.59 460.34 460.34 0 0 0 0-97.62 27.7 27.7 0 0 0 -24.54-24.61q-8.52-.9-17-1.49z" fill="#f49600"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="india" data-name="india"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m151.38 52.26h-150.76q.63-12.54 2-25.08a27.68 27.68 0 0 1 24.57-24.58 459 459 0 0 1 97.62 0 27.68 27.68 0 0 1 24.59 24.58q1.33 12.53 1.98 25.08z" fill="#ff9933"/><path d="m151.38 99.73q-.63 12.54-2 25.08a27.68 27.68 0 0 1 -24.59 24.58 459 459 0 0 1 -97.62 0 27.68 27.68 0 0 1 -24.57-24.58q-1.34-12.54-2-25.08z" fill="#138808"/><circle cx="76" cy="76" r="13" fill="#000080"/><circle cx="76" cy="76" r="10.5" fill="#f0f9ff"/><circle cx="76" cy="76" r="3" fill="#000080"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_11.iran" data-name="11.iran"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m151.08 46.87h-150.16q.63-9.87 1.68-19.69a27.68 27.68 0 0 1 24.59-24.58 459 459 0 0 1 97.62 0 27.68 27.68 0 0 1 24.59 24.58q1.05 9.82 1.68 19.69z" fill="#39b44a"/><g fill="#f40055"><path d="m151.08 105.13q-.63 9.84-1.68 19.68a27.68 27.68 0 0 1 -24.59 24.58 459 459 0 0 1 -97.62 0 27.68 27.68 0 0 1 -24.59-24.58q-1.05-9.81-1.68-19.68z"/><path d="m91.67 59.9h-1.83a5 5 0 0 0 -5 5v9.22a8.82 8.82 0 0 1 -3.84 7.27v-23.19a5 5 0 1 0 -10 0v23.2a8.31 8.31 0 0 1 -1.21-1 8.73 8.73 0 0 1 -2.61-6.26v-9.23a5 5 0 0 0 -5-5h-1.85a16.57 16.57 0 0 0 -16.54 16.54 25.62 25.62 0 0 0 7.56 18.22 5 5 0 0 0 7.09-7.08 15.63 15.63 0 0 1 -4.63-11.14 6.52 6.52 0 0 1 3.34-5.69v3.37a18.73 18.73 0 0 0 5.56 13.37 19.32 19.32 0 0 0 4.55 3.34 5 5 0 0 0 4 8h9.4a5 5 0 0 0 5-5 5 5 0 0 0 -1-3 18.89 18.89 0 0 0 10.19-16.71v-3.37a6.52 6.52 0 0 1 3.34 5.69 15.59 15.59 0 0 1 -4.91 11.41 5 5 0 0 0 6.91 7.26 25.89 25.89 0 0 0 8-18.67 16.57 16.57 0 0 0 -16.52-16.55z"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_36.italy" data-name="36.italy"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m34.7 1.87v148.26c-2.5-.22-5-.47-7.51-.74a27.66 27.66 0 0 1 -24.59-24.57 459.21 459.21 0 0 1 0-97.64 27.68 27.68 0 0 1 24.59-24.57c2.5-.27 5.01-.51 7.51-.74z" fill="#39b44a"/><path d="m149.4 124.82a27.66 27.66 0 0 1 -24.59 24.57c-2.5.27-5 .52-7.51.74v-148.26c2.5.23 5 .47 7.51.74a27.68 27.68 0 0 1 24.59 24.57 459.21 459.21 0 0 1 0 97.64z" fill="#d1004a"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_30.japan" data-name="30.japan"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m76 43a33 33 0 1 0 33 33 33 33 0 0 0 -33-33z" fill="#f40055"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_20.north_korea" data-name="20.north korea"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#406bd4"/><path d="m149.68 120.5h-147.36a459.48 459.48 0 0 1 -.32-89h148a459.48 459.48 0 0 1 -.32 89z" fill="#f40055"/><path d="m56 37.05a39 39 0 1 0 38.91 38.95 39 39 0 0 0 -38.91-38.95z" fill="#f0f9ff"/><path d="m84.77 66.21a5 5 0 0 0 -4.77-3.46h-12a3.67 3.67 0 0 1 -3.5-2.54l-3.78-11.47a5 5 0 0 0 -9.53 0l-3.72 11.47a3.67 3.67 0 0 1 -3.47 2.54h-12.09a5 5 0 0 0 -2.91 9.07l9.76 7.08a3.69 3.69 0 0 1 1.3 4.1l-3.73 11.49a5 5 0 0 0 7.71 5.6l9.76-7.09a3.66 3.66 0 0 1 4.32 0l9.76 7.09a5 5 0 0 0 7.71-5.6l-3.73-11.49a3.68 3.68 0 0 1 1.34-4.1l9.8-7.08a5 5 0 0 0 1.82-5.61z" fill="#f40055"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_01.south_korea" data-name="01.south korea"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m99.31 52.69a33 33 0 1 0 0 46.62 33 33 0 0 0 0-46.62z" fill="#f40055"/><g fill="#141a1a"><path d="m124.45 42.54a5 5 0 1 0 7.09-7.08l-11.54-11.58a5 5 0 0 0 -7.12 7.12z"/><path d="m111.3 54.7a5 5 0 1 0 7.08-7.08l-10.8-10.81a5 5 0 0 0 -7.09 7.09z"/><path d="m24 44a5 5 0 0 0 3.55-1.47l11.57-11.53a5 5 0 1 0 -7.12-7.12l-11.54 11.58a5 5 0 0 0 3.54 8.54z"/><path d="m44.42 36.81-10.8 10.81a5 5 0 1 0 7.08 7.08l10.81-10.8a5 5 0 0 0 -7.09-7.09z"/><path d="m124.45 109.46-11.57 11.54a5 5 0 0 0 7.09 7.09l11.57-11.58a5 5 0 1 0 -7.09-7.08z"/><path d="m118.38 97.3a5 5 0 0 0 -7.08 0l-10.81 10.8a5 5 0 1 0 7.09 7.09l10.8-10.81a5 5 0 0 0 0-7.08z"/><path d="m27.55 109.46a5 5 0 0 0 -7.09 7.08l11.54 11.58a5 5 0 1 0 7.12-7.12z"/><path d="m40.7 97.3a5 5 0 0 0 -7.08 7.08l10.8 10.81a5 5 0 1 0 7.09-7.09z"/></g><path d="m101.39 75.58a17.65 17.65 0 0 0 -25 0l-.85.85a17.64 17.64 0 0 1 -30.09-12.83 33 33 0 0 0 53.86 35.71 32.66 32.66 0 0 0 7.24-10.91 17.59 17.59 0 0 0 -5.16-12.82z" fill="#406bd4"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_25.libya" data-name="25.libya"><path d="m150.65 111.15c-.06.86-.13 1.73-.2 2.6-.31 3.69-.65 7.38-1 11.07a27.68 27.68 0 0 1 -24.59 24.58 459 459 0 0 1 -97.62 0 27.68 27.68 0 0 1 -24.64-24.58c-.4-3.69-.74-7.38-1-11.07-.07-.87-.14-1.74-.2-2.6z" fill="#39b44a"/><path d="m150.64 40.77h-149.28c.06-.84.12-1.68.19-2.52q.45-5.53 1.05-11.07a27.68 27.68 0 0 1 24.59-24.58 459 459 0 0 1 97.62 0 27.68 27.68 0 0 1 24.59 24.58q.58 5.54 1 11.07c.12.84.18 1.68.24 2.52z" fill="#f40055"/><path d="m150.65 111.15c-.06.86-.13 1.73-.2 2.6h-148.9c-.07-.87-.14-1.74-.2-2.6a458 458 0 0 1 0-70.38c.06-.84.12-1.68.19-2.52h148.9c.07.84.13 1.68.19 2.52a458 458 0 0 1 .02 70.38z" fill="#141a1a"/><g fill="#f0f9ff"><path d="m115.26 76a5 5 0 0 0 -4.41-5 5 5 0 0 0 -9.94 0 5 5 0 0 0 0 9.94 5 5 0 0 0 9.94 0 5 5 0 0 0 4.41-5z"/><path d="m78.36 92.33a16.33 16.33 0 0 1 -.61-32.65 16.67 16.67 0 0 1 4.87.55 1.46 1.46 0 0 0 1.38-2.49 24.62 24.62 0 1 0 0 36.52 1.46 1.46 0 0 0 -1.32-2.5 16.24 16.24 0 0 1 -4.27.57z"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_13.morocco" data-name="13.morocco"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f40055"/><path d="m116 63.68a3.87 3.87 0 0 0 -3.72-2.68h-24.28l-8.3-23.76a3.88 3.88 0 0 0 -7.32 0l-8.38 23.76h-24.28a3.87 3.87 0 0 0 -2.3 7l19.22 14.2-9.3 26.65a3.87 3.87 0 0 0 6 4.39l22.66-16.75 22.7 16.75a3.87 3.87 0 0 0 6-4.39l-9.34-26.65 19.22-14.2a3.87 3.87 0 0 0 1.42-4.32zm-40-13.39 3.75 10.71h-7.5zm-24.5 18.48h9.84l-2 5.77zm7.29 30.78 4.38-12.55 6.3 4.65zm7.06-20.19 3.69-10.59h12.92l3.69 10.59-10.15 7.49zm16.68 12.31 6.3-4.67 4.38 12.53zm10.15-17.13-2-5.77h9.84z" fill="#39b44a"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_28.mauritius" data-name="28.mauritius"><path d="m152 76v.84h-152v-.84q0-20.55 1.84-41.08c0-.27 0-.54.07-.81h148.18c0 .27 0 .54.07.81q1.84 20.52 1.84 41.08z" fill="#406bd4"/><path d="m150.23 116.32c0 .25 0 .51-.07.76q-.34 3.87-.76 7.74a27.68 27.68 0 0 1 -24.59 24.58 459 459 0 0 1 -97.62 0 27.68 27.68 0 0 1 -24.59-24.58q-.42-3.87-.76-7.74c0-.25-.05-.51-.07-.76z" fill="#39b44a"/><path d="m150.16 34.92h-148.32c0-.27 0-.54.07-.81q.32-3.46.69-6.93a27.68 27.68 0 0 1 24.59-24.58 459 459 0 0 1 97.62 0 27.68 27.68 0 0 1 24.59 24.58q.38 3.46.69 6.93c.02.27.05.54.07.81z" fill="#f40055"/><path d="m152 76v.84q0 19.75-1.77 39.48c0 .25 0 .51-.07.76h-148.32c0-.25-.05-.51-.07-.76q-1.77-19.72-1.77-39.48v-.84z" fill="#ffcb24"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_37.mexico" data-name="37.mexico"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m34.7 1.87v148.26c-2.5-.22-5-.47-7.51-.74a27.66 27.66 0 0 1 -24.59-24.57 459.21 459.21 0 0 1 0-97.64 27.68 27.68 0 0 1 24.59-24.57c2.5-.27 5.01-.51 7.51-.74z" fill="#39b44a"/><path d="m149.4 124.82a27.66 27.66 0 0 1 -24.59 24.57c-2.5.27-5 .52-7.51.74v-148.26c2.5.23 5 .47 7.51.74a27.68 27.68 0 0 1 24.59 24.57 459.21 459.21 0 0 1 0 97.64z" fill="#d1004a"/><path d="m101.55 62.5a5 5 0 0 0 -8.85 4.71 18.67 18.67 0 0 1 2.21 8.88 18.92 18.92 0 1 1 -35.62-8.88 5 5 0 0 0 -8.84-4.71 28.93 28.93 0 1 0 51.1 0z" fill="#39b44a"/><path d="m89.44 75.15a13.45 13.45 0 0 0 -16.89-12.15v-1.3a8.36 8.36 0 0 0 -8.35-8.35 5 5 0 0 0 -1.67 9.74v12.91a13.48 13.48 0 0 0 13.47 13.47 5 5 0 1 0 0-10 3.46 3.46 0 0 1 -3.45-3.47 3.46 3.46 0 0 1 3.68-3.44 3.48 3.48 0 0 1 3.21 3.21 5 5 0 0 0 10-.62z" fill="#f49600"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_50.nigeria" data-name="50.nigeria"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><g fill="#00c853"><path d="m34.7 1.87v148.26c-2.5-.22-5-.47-7.51-.74a27.66 27.66 0 0 1 -24.59-24.57 459.21 459.21 0 0 1 0-97.64 27.68 27.68 0 0 1 24.59-24.57c2.5-.27 5.01-.51 7.51-.74z"/><path d="m149.4 124.82a27.66 27.66 0 0 1 -24.59 24.57c-2.5.27-5 .52-7.51.74v-148.26c2.5.23 5 .47 7.51.74a27.68 27.68 0 0 1 24.59 24.57 459.21 459.21 0 0 1 0 97.64z"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_09.panama" data-name="09.panama"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m152 76h-76v-76a460.89 460.89 0 0 1 48.81 2.6 27.68 27.68 0 0 1 24.59 24.58 458.58 458.58 0 0 1 2.6 48.82z" fill="#d60354"/><path d="m76 76v76a458.25 458.25 0 0 1 -48.81-2.6 27.68 27.68 0 0 1 -24.59-24.59 458.39 458.39 0 0 1 -2.6-48.81z" fill="#406bd4"/><path d="m46.14 44 9-6.52a2.26 2.26 0 0 0 -1.33-4.08h-11.12a2.25 2.25 0 0 1 -2.14-1.56l-3.43-10.59a2.26 2.26 0 0 0 -4.3 0l-3.42 10.55a2.27 2.27 0 0 1 -2.15 1.56h-11.09a2.26 2.26 0 0 0 -1.33 4.08l9 6.52a2.26 2.26 0 0 1 .82 2.53l-3.45 10.51a2.26 2.26 0 0 0 3.47 2.53l9-6.52a2.28 2.28 0 0 1 2.66 0l9 6.52a2.26 2.26 0 0 0 3.42-2.53l-3.43-10.51a2.27 2.27 0 0 1 .82-2.49z" fill="#406bd4"/><path d="m127.16 114.35 9-6.52a2.26 2.26 0 0 0 -1.33-4.09h-11.12a2.27 2.27 0 0 1 -2.15-1.56l-3.42-10.54a2.26 2.26 0 0 0 -4.3 0l-3.43 10.54a2.25 2.25 0 0 1 -2.14 1.56h-11.09a2.26 2.26 0 0 0 -1.33 4.09l9 6.52a2.25 2.25 0 0 1 .82 2.52l-3.43 10.55a2.26 2.26 0 0 0 3.48 2.52l9-6.51a2.25 2.25 0 0 1 2.66 0l9 6.51a2.25 2.25 0 0 0 3.47-2.52l-3.42-10.55a2.22 2.22 0 0 1 .82-2.52z" fill="#d60354"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="clip"><path d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z"/></clipPath></defs><g clip-path="url(#clip)"><rect width="152" height="76" fill="#406bd4"/><rect y="76" width="152" height="76" fill="#f40055"/><path d="m0 0v152l76-76z" fill="#f0f9ff"/><g fill="#ffcb24"><circle cx="25" cy="76" r="7"/><circle cx="10" cy="24" r="3.5"/><circle cx="10" cy="128" r="3.5"/><circle cx="52" cy="76" r="3.5"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="clip"><path d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z"/></clipPath></defs><g clip-path="url(#clip)"><rect width="152" height="152" fill="#01411c"/><rect width="38" height="152" fill="#f0f9ff"/><g transform="rotate(-270, 90, 76)"><circle cx="90" cy="76" r="24" fill="#f0f9ff"/><circle cx="82" cy="68" r="20" fill="#01411c"/></g><path d="m117.72 58.47a5 5 0 0 0 -4.5-5 5 5 0 0 0 -10 0 5 5 0 0 0 0 10 5 5 0 0 0 10 0 5 5 0 0 0 4.5-5z" fill="#f0f9ff"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_40.portugal" data-name="40.portugal"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f40055"/><path d="m54.39.51v151q-13.62-.65-27.2-2.09a27.68 27.68 0 0 1 -24.59-24.61 459 459 0 0 1 0-97.62 27.7 27.7 0 0 1 24.59-24.59q13.59-1.44 27.2-2.09z" fill="#39b44a"/><path d="m54.39 33.37a41.11 41.11 0 1 0 41.11 41.11 41.15 41.15 0 0 0 -41.11-41.11zm30.69 36.1h-18.59l3.51-3.53 9.6-9.61a30.89 30.89 0 0 1 5.48 13.14zm-25.68-25.68a30.89 30.89 0 0 1 13.14 5.46l-10.4 10.39-2.74 2.74zm-10 0v18.59l-13.15-13.13a30.9 30.9 0 0 1 13.13-5.46zm-20.23 12.54 9.6 9.61 3.53 3.53h-18.59a30.89 30.89 0 0 1 5.46-13.14zm-5.46 23.16h18.59l-13.13 13.13a30.9 30.9 0 0 1 -5.46-13.13zm25.67 25.67a31 31 0 0 1 -13.13-5.45l10-10 3.12-3.12zm10 0v-18.59l3.13 3.13 10 10a31 31 0 0 1 -13.11 5.46zm20.24-12.54-13.13-13.13h18.59a30.9 30.9 0 0 1 -5.46 13.13z" fill="#ffcb24"/><path d="m54.4 92a15.62 15.62 0 0 1 -15.63-15.64v-11.71a5 5 0 0 1 5-5h21.23a5 5 0 0 1 5 5v11.71a15.62 15.62 0 0 1 -15.6 15.64z" fill="#fff"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="russia" data-name="russia"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#406bd4"/><path d="m151.38 52.26h-150.76q.63-12.54 2-25.08a27.68 27.68 0 0 1 24.57-24.58 459 459 0 0 1 97.62 0 27.68 27.68 0 0 1 24.59 24.58q1.33 12.53 1.98 25.08z" fill="#f0f9ff"/><path d="m151.38 99.73q-.63 12.54-2 25.08a27.68 27.68 0 0 1 -24.59 24.58 459 459 0 0 1 -97.62 0 27.68 27.68 0 0 1 -24.57-24.58q-1.34-12.54-2-25.08z" fill="#f40055"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_21.saudi_arabia" data-name="21.saudi arabia"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#39b44a"/><g fill="#f0f9ff"><path d="m118.3 94.65h-8.81v-1.07a5 5 0 1 0 -10 0v1.07h-65.79a5 5 0 0 0 0 10h65.77v1.07a5 5 0 1 0 10 0v-1.07h8.81a5 5 0 1 0 0-10z"/><path d="m48.24 84.2a12 12 0 0 0 11.95-12v-19a1.93 1.93 0 1 1 3.86 0v19a12 12 0 0 0 23.9 0 5 5 0 1 0 -10 0 1.93 1.93 0 0 1 -3.86 0v-19a12 12 0 1 0 -23.9 0v19a1.93 1.93 0 0 1 -3.86 0 5 5 0 0 0 -10 0 12 12 0 0 0 11.91 12z"/><path d="m82.94 58.21a5 5 0 0 0 5-5 1.93 1.93 0 0 1 3.86 0v19a11.95 11.95 0 1 0 23.9 0v-26a5 5 0 1 0 -10 0v26a1.93 1.93 0 1 1 -3.86 0v-19a12 12 0 0 0 -23.9 0 5 5 0 0 0 5 5z"/><path d="m41.3 63a5 5 0 0 0 5-5v-11.74a5 5 0 0 0 -10 0v11.74a5 5 0 0 0 5 5z"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_26.sudan" data-name="26.sudan"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><path d="m151 45.36h-123.49l-20.85-29.9c.2-.33.41-.66.64-1a27.63 27.63 0 0 1 19.89-11.85 459 459 0 0 1 97.62 0 27.68 27.68 0 0 1 24.59 24.58q.98 9.08 1.6 18.17z" fill="#f40055"/><path d="m151 106.65q-.61 9.09-1.58 18.17a27.68 27.68 0 0 1 -24.59 24.58 459 459 0 0 1 -97.62 0 27.66 27.66 0 0 1 -20.09-12.13c-.19-.28-.38-.57-.55-.87l21.2-29.75z" fill="#141a1a"/><path d="m45 83.6-16.28 23-21.6 30.66c-.19-.28-.38-.57-.55-.87a27.55 27.55 0 0 1 -4-11.58 459 459 0 0 1 0-97.62 27.61 27.61 0 0 1 4.09-11.73c.2-.33.41-.66.64-1l21.62 30.9 16.13 23a13.22 13.22 0 0 1 -.05 15.24z" fill="#39b44a"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_17.sweden" data-name="17.sweden"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#4cc1ff"/><path d="m151.83 81.21h-80.83v70.69q-16.8-.18-33.58-1.59v-69.1h-37.42q-.16-16.78.88-33.59h36.55v-45.93q16.77-1.42 33.57-1.59v47.52h80q1 16.8.83 33.59z" fill="#ffcb24"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_42.thailand" data-name="42.thailand"><path d="m151.38 99.82q-.16 3.33-.39 6.67-.47 7.07-1.16 14.13c-.14 1.4-.28 2.79-.43 4.19a27.69 27.69 0 0 1 -24.59 24.59 459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59c-.15-1.4-.29-2.79-.43-4.19q-.69-7.06-1.17-14.13-.23-3.34-.39-6.67a456 456 0 0 1 0-47.64q.16-3.33.39-6.67.47-7.07 1.16-14.13c.14-1.4.28-2.79.43-4.19a27.69 27.69 0 0 1 24.6-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59c.15 1.4.29 2.79.43 4.19q.69 7.07 1.16 14.13.22 3.35.39 6.67a456 456 0 0 1 0 47.64z" fill="#f40055"/><path d="m151.38 99.82q-.16 3.33-.39 6.67h-149.99q-.23-3.34-.39-6.67a456 456 0 0 1 0-47.64q.16-3.33.39-6.67h150q.22 3.35.39 6.67a456 456 0 0 1 -.01 47.64z" fill="#406bd4"/><path d="m151.38 99.82q-.16 3.33-.39 6.67-.47 7.07-1.16 14.13h-147.66q-.69-7.06-1.17-14.13-.23-3.34-.39-6.67z" fill="#f0f9ff"/><path d="m151.38 52.18h-150.76q.16-3.33.39-6.67.47-7.07 1.16-14.13h147.66q.69 7.07 1.16 14.13.22 3.35.39 6.67z" fill="#fff"/></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_27.turkmenistan" data-name="27.turkmenistan"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#39b44a"/><path d="m49.24.79v150.43q-11-.65-22-1.82a28.1 28.1 0 0 1 -4.7-.91v-144.97a28.1 28.1 0 0 1 4.7-.91q10.97-1.18 22-1.82z" fill="#f40055"/><g fill="#f0f9ff"><path d="m72.72 30.47a5 5 0 0 0 -4.5-5 5 5 0 0 0 -10 0 5 5 0 0 0 0 10 5 5 0 0 0 10 0 5 5 0 0 0 4.5-5z"/><path d="m117.44 37.22a27.49 27.49 0 0 0 -18.14-8 1.62 1.62 0 0 0 -.93 3 18.44 18.44 0 0 1 3.83 2.94 18.3 18.3 0 0 1 -25.39 26.33c-.28-.26-.55-.53-.81-.8a18 18 0 0 1 -2.61-3.49 1.63 1.63 0 0 0 -3 .91 27.46 27.46 0 0 0 5.61 15.38 27.6 27.6 0 1 0 41.44-36.28z"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_38.turkey" data-name="38.turkey"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f40055"/><g fill="#fff"><path d="m68 101.32a25.32 25.32 0 0 1 -.06-50.64q1.25 0 2.46.12a3.44 3.44 0 0 0 2.27-6.26 38.17 38.17 0 1 0 0 62.9 3.44 3.44 0 0 0 -2.3-6.24 23.81 23.81 0 0 1 -2.4.12z"/><path d="m100 71a5 5 0 0 0 -10 0h-.05a5 5 0 1 0 0 10h.05a5 5 0 1 0 10 0 5 5 0 0 0 0-10z"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg height="512" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_06.united_states_of_america" data-name="06.united states of america"><path id="path" d="m124.81 149.4a459 459 0 0 1 -97.62 0 27.69 27.69 0 0 1 -24.59-24.59 459 459 0 0 1 0-97.62 27.69 27.69 0 0 1 24.59-24.59 459 459 0 0 1 97.62 0 27.69 27.69 0 0 1 24.59 24.59 459 459 0 0 1 0 97.62 27.69 27.69 0 0 1 -24.59 24.59z" fill="#f0f9ff"/><g fill="#f40055"><path d="m152 82.47h-80.26v-12.93h80.26q.06 6.46 0 12.93z"/><path d="m150.31 115.44c-.27 3.12-.58 6.25-.91 9.37a27.72 27.72 0 0 1 -.62 3.57h-145.56a27.72 27.72 0 0 1 -.62-3.57c-.33-3.12-.64-6.25-.91-9.37z"/><path d="m144.08 13.61h-72.34v-13.61h4.26q6.1 0 12.21.16t12.21.49q9.15.48 18.29 1.33c2 .19 4.07.39 6.1.61.56.06 1.11.14 1.66.24.39.06.77.13 1.15.21l.24.05c.43.1.86.2 1.28.32s.93.26 1.38.41a27 27 0 0 1 2.68 1c.43.19.86.39 1.27.61l1 .56c.49.28 1 .58 1.45.88s.76.51 1.13.78l.9.68.49.4c.2.16.39.32.57.49s.54.47.8.72l.59.57a25 25 0 0 1 1.83 2c.33.41.59.75.85 1.1z"/><path d="m151.71 59.52h-80v-12.94h79.32q.45 6.42.68 12.94z"/><path d="m151.71 92.49q-.24 6.47-.65 12.93h-150.12q-.42-6.42-.65-12.93z"/><path d="m144.08 138.4a27.64 27.64 0 0 1 -19.27 11 459 459 0 0 1 -97.62 0 27.64 27.64 0 0 1 -19.27-11z"/><path d="m150.31 36.56h-78.57v-12.93h77a27.87 27.87 0 0 1 .62 3.56c.37 3.12.64 6.24.95 9.37z"/></g><path d="m76 0v82.47h-75.95c0-1 0-2 0-3-.05-2.72-.05-5.47-.05-8.24 0-1.21 0-2.41.05-3.62s.05-2.54.08-3.81c0-.09 0-.19 0-.29 0-1.36.08-2.72.13-4.09a5 5 0 0 0 3.21 1.58 5 5 0 0 0 10 0 5 5 0 0 0 0-10 5 5 0 0 0 -10 0 4.93 4.93 0 0 0 -2.86 1.34c0-.25 0-.5 0-.75.12-1.53.21-3.07.31-4.59s.2-3 .31-4.54c0-.35.05-.69.08-1 .12-1.69.26-3.38.4-5.07a.2.2 0 0 0 0-.07c.16-1.79.32-3.58.5-5.36.12-1.24.25-2.48.38-3.72.06-.55.14-1.1.23-1.65s.24-1.29.39-1.92c.1-.38.2-.77.31-1.15s.18-.6.28-.9c.16-.51.34-1 .54-1.51s.3-.75.46-1.11.33-.73.51-1.09c.26-.52.53-1 .82-1.53.14-.25.29-.5.44-.74.3-.49.62-1 1-1.44s.64-.88 1-1.31c.56-.7 1.15-1.36 1.77-2l.55-.55c.63-.61 1.29-1.2 2-1.75l.6-.59c.22-.18.46-.34.69-.51a26.91 26.91 0 0 1 2.4-1.49l.54-.3c.38-.2.76-.4 1.16-.59l.85-.38c.29-.13.58-.25.88-.36s.73-.28 1.1-.41l.76-.25h.14l.65-.19 1-.26c.34-.14.73-.26 1.11-.26h.09c.37-.07.74-.14 1.12-.19s.8-.12 1.21-.16q5-.52 10-1l2.21-.18s0 0 0 0c1.49-.12 3-.24 4.46-.34h.06c1.46-.13 2.92-.2 4.38-.29h.23l2.47-.15h.54c3-.16 6-.29 9-.39 1.91-.09 3.77-.14 5.63-.18s3.51-.07 5.27-.12h.3z" fill="#406bd4"/><path d="m63 51.05a5 5 0 0 1 0 10 5 5 0 0 1 -10 0 5 5 0 0 1 0-10 5 5 0 0 1 10 0z" fill="#fff"/><path d="m23.78 56a5 5 0 0 1 4.49-5 5 5 0 0 1 10 0 5 5 0 0 1 0 10 5 5 0 0 1 -10 0 5 5 0 0 1 -4.49-5z" fill="#fff"/><path d="m42.73 26.22a5 5 0 0 1 -4.5 5 5 5 0 0 1 -10 0 5 5 0 0 1 0-10 5 5 0 0 1 10 0 5 5 0 0 1 4.5 5z" fill="#fff"/><path d="m17.93 26.22a5 5 0 0 1 -4.49 5 5 5 0 0 1 -10 0 4.76 4.76 0 0 1 -1.25-.3c.12-1.24.25-2.48.38-3.72a27.67 27.67 0 0 1 2.72-9.33 4.92 4.92 0 0 1 3.13-1.11 5 5 0 0 1 5 4.49 5 5 0 0 1 4.51 4.97z" fill="#fff"/><path d="m67.52 26.22a5 5 0 0 1 -4.49 5 5 5 0 0 1 -10 0 5 5 0 0 1 0-10 5 5 0 0 1 10 0 5 5 0 0 1 4.49 5z" fill="#fff"/></g></g></svg>