ultracite 7.3.2 → 7.4.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 (60) hide show
  1. package/README.md +14 -0
  2. package/config/oxlint/core/.oxlintrc.json +2 -0
  3. package/config/oxlint/vitest/.oxlintrc.json +5 -0
  4. package/dist/adal-VMG3GLKT.svg +1 -0
  5. package/dist/aider-K7JLZT2D.svg +1 -0
  6. package/dist/amazon-q-TSOJNPXB.svg +1 -0
  7. package/dist/amp-EV4LVL5I.svg +1 -0
  8. package/dist/antigravity-JVONECNW.svg +1 -0
  9. package/dist/augmentcode-Q62PVXKO.svg +1 -0
  10. package/dist/biome-TVLEY2T4.svg +1 -0
  11. package/dist/claude-6DLEHRDQ.svg +1 -0
  12. package/dist/cline-6HWKIYN7.svg +1 -0
  13. package/dist/codebuddy-OD3VECQ4.svg +1 -0
  14. package/dist/coder-7BVXO5OJ.svg +1 -0
  15. package/dist/codex-NQZ5TJCL.svg +1 -0
  16. package/dist/continue-LKI2ZW3R.svg +1 -0
  17. package/dist/copilot-L2IY45R2.svg +1 -0
  18. package/dist/crush-LYLRDQGZ.svg +1 -0
  19. package/dist/cursor-GQNH5LCA.svg +1 -0
  20. package/dist/devin-KY5ISKEW.svg +1 -0
  21. package/dist/droid-266OHJBT.svg +1 -0
  22. package/dist/eslint-7IULJKW7.svg +1 -0
  23. package/dist/firebase-studio-ILLWWYU7.svg +1 -0
  24. package/dist/firebender-UNO6LSZG.svg +1 -0
  25. package/dist/gemini-OYS6V4BH.svg +1 -0
  26. package/dist/goose-XBIEVD4H.svg +1 -0
  27. package/dist/index.js +92 -92
  28. package/dist/jules-HJPVWU73.svg +1 -0
  29. package/dist/junie-RUWBUV6N.svg +1 -0
  30. package/dist/kilo-code-4QYUYY2E.svg +1 -0
  31. package/dist/kimi-6SOFW673.svg +1 -0
  32. package/dist/kiro-N2M256R6.svg +1 -0
  33. package/dist/langchain-5SXQKAL3.svg +1 -0
  34. package/dist/lovable-UELF2DY5.svg +1 -0
  35. package/dist/mcpjam-V2GHUPJN.svg +1 -0
  36. package/dist/mistral-HQ63EC2B.svg +1 -0
  37. package/dist/ona-KYYK3HQX.svg +1 -0
  38. package/dist/open-hands-K5EYKO6T.svg +1 -0
  39. package/dist/openclaw-XFPF7FMJ.svg +1 -0
  40. package/dist/opencode-K3274JKQ.svg +1 -0
  41. package/dist/oxlint-5IE3ABOZ.svg +1 -0
  42. package/dist/oxlint.d.ts +540 -0
  43. package/dist/oxlint.js +1 -0
  44. package/dist/pi-AZOSKO3D.svg +1 -0
  45. package/dist/prettier-O4V2FSEA.svg +1 -0
  46. package/dist/qoder-LPW47DKG.svg +1 -0
  47. package/dist/qwen-N3D5CQYL.svg +1 -0
  48. package/dist/replit-WKR4Y6HH.svg +1 -0
  49. package/dist/roo-code-CVLBTS7D.svg +1 -0
  50. package/dist/snowflake-S3LTTUXJ.svg +1 -0
  51. package/dist/stylelint-DEBSWZVS.svg +1 -0
  52. package/dist/trae-RXVCFBOF.svg +1 -0
  53. package/dist/vercel-27VSITAQ.svg +1 -0
  54. package/dist/void-NYH3U3BB.svg +1 -0
  55. package/dist/vscode-DEOUEB65.svg +1 -0
  56. package/dist/warp-OZKAAQRT.svg +1 -0
  57. package/dist/windsurf-5T7JOTST.svg +1 -0
  58. package/dist/zed-SIARPESF.svg +1 -0
  59. package/dist/zencoder-VTSK5Z7Z.svg +1 -0
  60. package/package.json +24 -19
package/README.md CHANGED
@@ -18,6 +18,20 @@ npx ultracite init
18
18
 
19
19
  The interactive setup will guide you through selecting your formatter/linter, framework, editor, and AI agents.
20
20
 
21
+ ## Oxlint TypeScript Configs
22
+
23
+ If you're using `oxlint.config.ts`, import the typed presets instead of the raw JSON files:
24
+
25
+ ```ts
26
+ import { defineConfig } from "oxlint";
27
+
28
+ import { core, next, react } from "ultracite/oxlint";
29
+
30
+ export default defineConfig({
31
+ extends: [core, react, next],
32
+ });
33
+ ```
34
+
21
35
  ## Supported Tools
22
36
 
23
37
  - **Biome** — All-in-one formatting and linting
@@ -49,6 +49,8 @@
49
49
  // Rely on oxfmt `experimentalSortImports` instead
50
50
  "sort-imports": "off",
51
51
  "no-duplicate-imports": ["error", { "allowSeparateTypeImports": true }],
52
+ // Avoid conflict with typescript/no-floating-promises
53
+ "no-void": ["error", { "allowAsStatement": true }],
52
54
 
53
55
  "import/no-relative-parent-imports": "off",
54
56
  "import/no-default-export": "off",
@@ -35,6 +35,11 @@
35
35
  "vitest/no-test-prefixes": "error",
36
36
  "vitest/no-test-return-statement": "error",
37
37
  "vitest/prefer-called-with": "error",
38
+ // Disabled: conflicts with prefer-called-once — both rules enforce opposite styles
39
+ // prefer-called-times: use toHaveBeenCalledTimes(1) instead of toHaveBeenCalledOnce()
40
+ // prefer-called-once: use toHaveBeenCalledOnce() instead of toHaveBeenCalledTimes(1)
41
+ // Consistent with ESLint vitest config (packages/cli/config/eslint/vitest/rules/vitest.mjs)
42
+ "vitest/prefer-called-times": "off",
38
43
  "vitest/prefer-comparison-matcher": "error",
39
44
  "vitest/prefer-each": "error",
40
45
  "vitest/prefer-equality-matcher": "error",
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#66c76f"/><g fill="#fff"><path d="m31.397 35.4775h-9.4272v25.0452h9.4272v.5628h-9.99v-26.1709h9.99z"/><path d="m74.593 61.0855h-9.99v-.5628h9.4271v-25.0452h-9.4271v-.5629h9.99z"/><path clip-rule="evenodd" d="m61.5075 44.3418c2.0205 0 3.6583 1.6379 3.6583 3.6583s-1.6378 3.6583-3.6583 3.6583c-2.0204 0-3.6583-1.6379-3.6583-3.6583s1.6379-3.6583 3.6583-3.6583zm0 .5628c-1.7095 0-3.0954 1.3859-3.0954 3.0955s1.3859 3.0955 3.0954 3.0955z" fill-rule="evenodd"/><path d="m37.1669 47.7569c.0865.0504.1396.1431.1396.2432s-.0531.1928-.1396.2432l-5.0653 2.9548-.2836-.4865 4.6482-2.7115-4.6482-2.7116.2836-.4864z"/><path clip-rule="evenodd" d="m65.1658 33.5076h10.8342v28.9849h-10.8342v5.7689h-34.0502v-5.7689h-11.1156v-28.9849h11.1156v-5.7688h34.0502zm-44.603 28.4221h10.5528v-.5628h34.0502v.5628h10.2714v-27.8593h-10.2714v.5628h-34.0502v-.5628h-10.5528z" fill-rule="evenodd"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#14b014"/><g fill="#fff"><path d="m68.0433 55.0734c-.14-.0778-.21-.2411-.21-.49s.07-.4044.21-.4667c.1555-.0777.4744-.1166.9567-.1166.4822 0 .7933.0389.9333.1166.1555.0623.2333.2178.2333.4667s-.0778.4122-.2333.49c-.14.0622-.4511.0933-.9333.0933-.4823 0-.8012-.0311-.9567-.0933zm0-2.3333c-.14-.0778-.21-.2411-.21-.49s.07-.4045.21-.4667c.1555-.0778.4744-.1167.9567-.1167.4822 0 .7933.0389.9333.1167.1555.0622.2333.2178.2333.4667s-.0778.4122-.2333.49c-.14.0622-.4511.0933-.9333.0933-.4823 0-.8012-.0311-.9567-.0933zm0-2.3334c-.14-.0777-.21-.2411-.21-.49 0-.2488.07-.4044.21-.4666.1555-.0778.4744-.1167.9567-.1167.4822 0 .7933.0389.9333.1167.1555.0622.2333.2178.2333.4666 0 .2489-.0778.4123-.2333.49-.14.0623-.4511.0934-.9333.0934-.4823 0-.8012-.0311-.9567-.0934zm5.8333-2.3333c-.14-.0778-.21-.2411-.21-.49s.07-.4044.21-.4667c.1556-.0777.4745-.1166.9567-.1166s.7933.0389.9333.1166c.1556.0623.2334.2178.2334.4667s-.0778.4122-.2334.49c-.14.0622-.4511.0933-.9333.0933s-.8011-.0311-.9567-.0933zm-5.74 0c-.2022-.0622-.3033-.2255-.3033-.49 0-.2644.1011-.4278.3033-.49s.6845-.0933 1.4467-.0933 1.2444.0311 1.4467.0933c.2022.0622.3033.2256.3033.49 0 .2645-.1011.4278-.3033.49-.2023.0622-.6845.0933-1.4467.0933s-1.2445-.0311-1.4467-.0933zm2.4034-2.3333c-.2489-.0622-.3734-.2256-.3734-.49 0-.2645.1245-.4278.3734-.49.2488-.0622.9022-.0934 1.96-.0934 1.0577 0 1.7111.0312 1.96.0934.2488.0622.3733.2255.3733.49 0 .2644-.1245.4278-.3733.49-.2489.0622-.9023.0933-1.96.0933-1.0578 0-1.7112-.0311-1.96-.0933zm-3.6634 0c-.14-.0778-.21-.2411-.21-.49s.07-.4045.21-.4667c.1556-.0778.4745-.1167.9567-.1167s.7933.0389.9333.1167c.1556.0622.2334.2178.2334.4667s-.0778.4122-.2334.49c-.14.0622-.4511.0933-.9333.0933s-.8011-.0311-.9567-.0933z"/><path d="m56.1667 54.5834c0-.2489.1166-.4044.35-.4667.2955-.0777 1.3455-.1166 3.15-.1166 2.0066 0 3.1189.07 3.3366.21.1089.0622.1634.1866.1634.3733 0 .2489-.1167.4045-.35.4667-.2956.0778-1.3456.1166-3.15.1166-2.0067 0-3.1189-.07-3.3367-.21-.1089-.0622-.1633-.1866-.1633-.3733zm-.9567-1.8433c-.14-.0778-.21-.2411-.21-.49s.07-.4045.21-.4667c.1556-.0778.4744-.1167.9567-.1167.4822 0 .7933.0389.9333.1167.1556.0622.2333.2178.2333.4667s-.0777.4122-.2333.49c-.14.0622-.4511.0933-.9333.0933-.4823 0-.8011-.0311-.9567-.0933zm-.21-2.8234c0-.2333.1167-.3811.35-.4433.3733-.0933 1.8122-.14 4.3167-.14 2.6911 0 4.1766.07 4.4566.21.14.0622.21.1867.21.3733 0 .2334-.1166.3812-.35.4434-.3733.0933-1.8122.14-4.3166.14-2.6911 0-4.1767-.07-4.4567-.21-.14-.0622-.21-.1867-.21-.3734zm7.21-1.8433c-.14-.0778-.21-.2411-.21-.49s.07-.4044.21-.4667c.1556-.0777.4744-.1166.9567-.1166.4822 0 .7933.0389.9333.1166.1556.0623.2333.2178.2333.4667s-.0777.4122-.2333.49c-.14.0622-.4511.0933-.9333.0933-.4823 0-.8011-.0311-.9567-.0933zm-7 0c-.14-.0778-.21-.2411-.21-.49s.07-.4044.21-.4667c.1556-.0777.4744-.1166.9567-.1166.4822 0 .7933.0389.9333.1166.1556.0623.2333.2178.2333.4667s-.0777.4122-.2333.49c-.14.0622-.4511.0933-.9333.0933-.4823 0-.8011-.0311-.9567-.0933zm.9567-2.8233c0-.2489.1166-.4045.35-.4667.2955-.0778 1.3455-.1167 3.15-.1167 2.0066 0 3.1189.07 3.3366.21.1089.0623.1634.1867.1634.3734 0 .2489-.1167.4044-.35.4666-.2956.0778-1.3456.1167-3.15.1167-2.0067 0-3.1189-.07-3.3367-.21-.1089-.0622-.1633-.1867-.1633-.3733z"/><path d="m44.4999 54.5833c0-.2333.1167-.3811.35-.4433.3422-.0933 1.5867-.14 3.7334-.14 2.3488 0 3.6477.07 3.8966.21.1245.0622.1867.1867.1867.3733 0 .2334-.1167.3811-.35.4434-.3422.0933-1.5867.14-3.7333.14-2.3489 0-3.6478-.07-3.8967-.21-.1245-.0623-.1867-.1867-.1867-.3734zm4.97-1.8433c-.2022-.0622-.3033-.2256-.3033-.49s.1011-.4278.3033-.49.6845-.0933 1.4467-.0933c.7778 0 1.26.0311 1.4467.0933.2022.0622.3033.2256.3033.49s-.1011.4278-.3033.49c-.1867.0622-.6689.0933-1.4467.0933-.7622 0-1.2445-.0311-1.4467-.0933zm-5.9266 0c-.14-.0778-.21-.2411-.21-.49s.07-.4044.21-.4667c.1555-.0777.4744-.1166.9566-.1166s.7934.0389.9334.1166c.1555.0623.2333.2178.2333.4667s-.0778.4122-.2333.49c-.14.0622-.4512.0933-.9334.0933s-.8011-.0311-.9566-.0933zm7-2.3333c-.14-.0778-.21-.2411-.21-.49s.07-.4045.21-.4667c.1555-.0778.4744-.1167.9566-.1167s.7934.0389.9334.1167c.1555.0622.2333.2178.2333.4667s-.0778.4122-.2333.49c-.14.0622-.4512.0933-.9334.0933s-.8011-.0311-.9566-.0933zm-7 0c-.14-.0778-.21-.2411-.21-.49s.07-.4045.21-.4667c.1555-.0778.4744-.1167.9566-.1167s.7934.0389.9334.1167c.1555.0622.2333.2178.2333.4667s-.0778.4122-.2333.49c-.14.0622-.4512.0933-.9334.0933s-.8011-.0311-.9566-.0933zm5.9266-2.3334c-.2022-.0622-.3033-.2255-.3033-.49 0-.2644.1011-.4277.3033-.49.2022-.0622.6845-.0933 1.4467-.0933.7778 0 1.26.0311 1.4467.0933.2022.0623.3033.2256.3033.49 0 .2645-.1011.4278-.3033.49-.1867.0623-.6689.0934-1.4467.0934-.7622 0-1.2445-.0311-1.4467-.0934zm-5.9266 0c-.14-.0777-.21-.2411-.21-.49s.07-.4044.21-.4666c.1555-.0778.4744-.1167.9566-.1167s.7934.0389.9334.1167c.1555.0622.2333.2177.2333.4666s-.0778.4123-.2333.49c-.14.0623-.4512.0934-.9334.0934s-.8011-.0311-.9566-.0934zm.9566-2.8233c0-.2333.1167-.3811.35-.4433.3422-.0934 1.5867-.14 3.7334-.14 2.3488 0 3.6477.07 3.8966.21.1245.0622.1867.1866.1867.3733 0 .2333-.1167.3811-.35.4433-.3422.0934-1.5867.14-3.7333.14-2.3489 0-3.6478-.07-3.8967-.21-.1245-.0622-.1867-.1866-.1867-.3733zm6.0434-1.8433c-.14-.0778-.21-.2411-.21-.49s.07-.4045.21-.4667c.1555-.0778.4744-.1167.9566-.1167s.7934.0389.9334.1167c.1555.0622.2333.2178.2333.4667s-.0778.4122-.2333.49c-.14.0622-.4512.0933-.9334.0933s-.8011-.0311-.9566-.0933zm0-2.3334c-.14-.0777-.21-.2411-.21-.49s.07-.4044.21-.4666c.1555-.0778.4744-.1167.9566-.1167s.7934.0389.9334.1167c.1555.0622.2333.2177.2333.4666s-.0778.4123-.2333.49c-.14.0623-.4512.0934-.9334.0934s-.8011-.0311-.9566-.0934z"/><path d="m32.8333 54.5833c0-.2489.1166-.4044.35-.4666.2955-.0778 1.3455-.1167 3.15-.1167 2.0066 0 3.1188.07 3.3366.21.1089.0622.1634.1867.1634.3733 0 .2489-.1167.4045-.35.4667-.2956.0778-1.3456.1167-3.15.1167-2.0067 0-3.1189-.07-3.3367-.21-.1089-.0623-.1633-.1867-.1633-.3734zm2.5433-1.8433c-.14-.0778-.21-.2411-.21-.49s.07-.4044.21-.4667c.1555-.0777.4744-.1166.9567-.1166.4822 0 .7933.0389.9333.1166.1555.0623.2333.2178.2333.4667s-.0778.4122-.2333.49c-.14.0622-.4511.0933-.9333.0933-.4823 0-.8012-.0311-.9567-.0933zm0-2.3333c-.14-.0778-.21-.2411-.21-.49s.07-.4045.21-.4667c.1555-.0778.4744-.1167.9567-.1167.4822 0 .7933.0389.9333.1167.1555.0622.2333.2178.2333.4667s-.0778.4122-.2333.49c-.14.0622-.4511.0933-.9333.0933-.4823 0-.8012-.0311-.9567-.0933zm0-2.3334c-.14-.0777-.21-.2411-.21-.49s.07-.4044.21-.4666c.1555-.0778.4744-.1167.9567-.1167.4822 0 .7933.0389.9333.1167.1555.0622.2333.2177.2333.4666s-.0778.4123-.2333.49c-.14.0623-.4511.0934-.9333.0934-.4823 0-.8012-.0311-.9567-.0934zm-1.0733-2.3333c-.2023-.0622-.3034-.2256-.3034-.49s.1011-.4278.3034-.49c.2022-.0622.6844-.0933 1.4466-.0933s1.2445.0311 1.4467.0933.3033.2256.3033.49-.1011.4278-.3033.49-.6845.0933-1.4467.0933-1.2444-.0311-1.4466-.0933zm1.0733-4.6667c-.14-.0777-.21-.2411-.21-.49s.07-.4044.21-.4666c.1555-.0778.4744-.1167.9567-.1167.4822 0 .7933.0389.9333.1167.1555.0622.2333.2177.2333.4666s-.0778.4123-.2333.49c-.14.0623-.4511.0934-.9333.0934-.4823 0-.8012-.0311-.9567-.0934z"/><path d="m21.1667 54.5834c0-.2333.1166-.3811.35-.4433.3422-.0934 1.5866-.14 3.7333-.14 2.3489 0 3.6478.07 3.8967.21.1244.0622.1866.1866.1866.3733 0 .2333-.1166.3811-.35.4433-.3422.0934-1.5866.14-3.7333.14-2.3489 0-3.6478-.07-3.8967-.21-.1244-.0622-.1866-.1866-.1866-.3733zm4.97-1.8433c-.2023-.0622-.3034-.2256-.3034-.49 0-.2645.1011-.4278.3034-.49.2022-.0622.6844-.0934 1.4466-.0934.7778 0 1.26.0312 1.4467.0934.2022.0622.3033.2255.3033.49 0 .2644-.1011.4278-.3033.49-.1867.0622-.6689.0933-1.4467.0933-.7622 0-1.2444-.0311-1.4466-.0933zm-5.9267 0c-.14-.0778-.21-.2411-.21-.49s.07-.4045.21-.4667c.1556-.0778.4744-.1167.9567-.1167.4822 0 .7933.0389.9333.1167.1556.0622.2333.2178.2333.4667s-.0777.4122-.2333.49c-.14.0622-.4511.0933-.9333.0933-.4823 0-.8011-.0311-.9567-.0933zm.9567-2.8234c0-.2333.1166-.3811.35-.4433.3422-.0933 1.5866-.14 3.7333-.14 2.3489 0 3.6478.07 3.8967.21.1244.0622.1866.1867.1866.3733 0 .2334-.1166.3812-.35.4434-.3422.0933-1.5866.14-3.7333.14-2.3489 0-3.6478-.07-3.8967-.21-.1244-.0622-.1866-.1867-.1866-.3734zm6.0433-1.8433c-.14-.0778-.21-.2411-.21-.49s.07-.4044.21-.4667c.1556-.0777.4744-.1166.9567-.1166.4822 0 .7933.0389.9333.1166.1556.0623.2333.2178.2333.4667s-.0777.4122-.2333.49c-.14.0622-.4511.0933-.9333.0933-.4823 0-.8011-.0311-.9567-.0933zm-6.0433-2.8233c0-.2489.1166-.4045.35-.4667.2955-.0778 1.3455-.1167 3.15-.1167 2.0066 0 3.1189.07 3.3366.21.1089.0623.1634.1867.1634.3734 0 .2489-.1167.4044-.35.4666-.2956.0778-1.3456.1167-3.15.1167-2.0067 0-3.1189-.07-3.3367-.21-.1089-.0622-.1633-.1867-.1633-.3733z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="70.8385" x2="36.9472" y1="3.79453" y2="76.0888"><stop offset="0" stop-color="#2fabff"/><stop offset=".3" stop-color="#5570ff"/><stop offset=".6" stop-color="#7b36ff"/><stop offset=".8" stop-color="#6a2cdc"/><stop offset="1" stop-color="#5921b8"/></linearGradient><path d="m0 0h96v96h-96z" fill="url(#a)"/><path d="m44.1416 23.9165c2.1196-1.222 4.7369-1.222 6.8564 0l15.7129 9.0732c2.1195 1.222 3.4277 3.4819 3.4278 5.9366v18.1465c0 2.444-1.3082 4.7154-3.4278 5.9375l-15.7129 9.0732c-2.1195 1.222-4.7368 1.2219-6.8564 0l-15.7139-9.0732c-2.1194-1.2221-3.4277-3.4828-3.4277-5.9375v-18.1465c.0001-2.4438 1.3085-4.7145 3.4277-5.9366zm6.251 6.6182c-1.6979-.9841-3.7855-.9841-5.4942 0l-11.1494 6.4345c-1.6977.9841-2.7469 2.7898-2.747 4.7579v12.8691c0 1.9574 1.0492 3.7747 2.747 4.7588l11.1494 6.4346c1.6979.984 3.7855.984 5.4942 0l11.1494-6.4346c1.6977-.9842 2.7461-2.7907 2.7461-4.7588v-12.8691c-.0002-1.9572-1.0485-3.7738-2.7461-4.7579zm-3.7744 3.0498c.8542-.4865 1.8918-.4865 2.7461 0l10.6201 6.1318c.8543.4867 1.373 1.3948 1.373 2.3789v12.2637c0 .0425-.0029.0848-.0049.1269l-10.9062-6.3173v-1.1631c0-.2487-.1295-.4767-.3457-.5957l-2.2822-1.3194c-.2163-.1188-.4763-.1189-.6817 0l-2.2812 1.3194c-.2163.1189-.3467.3469-.3467.5957v2.6386c.0001.2486.1305.4759.3467.5948l2.2812 1.3193c.2163.1189.4762.1189.6817 0l1.1816-.6836 10.5527 6.1113-10.1884 5.8838c-.8542.4864-1.892.4865-2.7461 0l-10.6202-6.1318c-.8541-.4866-1.3729-1.3949-1.373-2.3789v-12.2637c0-.984.5189-1.8814 1.373-2.3789z" fill="#fff"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path d="m20 20h56v56h-56z"/></clipPath><path d="m0 0h96v96h-96z" fill="#f34e3f"/><g clip-path="url(#a)" fill="#fff"><path d="m30.0656 70.9846 13.174-13.3605 4.7942 18.2027 6.9648-1.9049-6.9391-26.43-26.0102-7.0445-1.8522 7.1165 17.8976 4.8617-13.1193 13.3409z"/><path d="m68.0551 55.4969 6.9649-1.9049-6.939-26.4298-26.0104-7.0445-1.8521 7.1164 21.9643 5.9666z"/><path d="m58.0582 65.6553 6.9647-1.9049-6.939-26.43-26.0103-7.0445-1.8521 7.1165 21.9641 5.9665z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="38.8388" width="43.8083" x="13.7393" y="-4.52633"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_46_195" stdDeviation="2.46678"/></filter><filter id="b" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="85.1648" width="85.9029" x="30.3893" y="-8.00844"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_46_195" stdDeviation="11.9256"/></filter><filter id="c" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="80.6419" width="90.4427" x="-27.338" y="-1.59853"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_46_195" stdDeviation="10.1379"/></filter><filter id="d" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="80.6419" width="90.4427" x="-27.338" y="-1.59853"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_46_195" stdDeviation="10.1379"/></filter><filter id="e" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="80.8143" width="80.8965" x="-21.1752" y="-.907127"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_46_195" stdDeviation="10.1379"/></filter><filter id="f" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="75.2747" width="74.0511" x="23.1668" y="41.1319"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_46_195" stdDeviation="9.63399"/></filter><filter id="g" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="77.9011" width="79.4518" x="7.43546" y="-26.0404"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_46_195" stdDeviation="8.73112"/></filter><filter id="h" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="102.739" width="99.6258" x="-5.4114" y="20.7741"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_46_195" stdDeviation="7.79725"/></filter><filter id="i" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="53.119" width="55.4169" x="44.1556" y="23.0711"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_46_195" stdDeviation="6.97714"/></filter><filter id="j" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="66.265" width="73.9976" x="33.8812" y="-5.73966"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_46_195" stdDeviation="5.89302"/></filter><filter id="k" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="57.7491" width="49.0104" x="2.55048" y="2.19111"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_46_195" stdDeviation="7.29361"/></filter><clipPath id="l"><path d="m0 0h96v96h-96z"/></clipPath><mask id="m" height="49" maskUnits="userSpaceOnUse" width="53" x="21" y="24"><path d="m69.034 71.7144c2.9591 2.2192 7.3977.7397 3.3289-3.329-12.206-11.8361-9.6168-44.3854-24.7818-44.3854-15.1651 0-12.5759 32.5493-24.7819 44.3854-4.4386 4.4386.3698 5.5482 3.3289 3.329 11.4663-7.7675 10.7265-21.453 21.453-21.453 10.7264 0 9.9867 13.6855 21.4529 21.453z" fill="#000"/></mask><g clip-path="url(#l)"><path d="m0 0h96v96h-96z" fill="#fafafa"/><path d="m69.034 71.7144c2.9591 2.2192 7.3977.7397 3.3289-3.329-12.206-11.8361-9.6168-44.3854-24.7818-44.3854-15.1651 0-12.5759 32.5493-24.7819 44.3854-4.4386 4.4386.3698 5.5482 3.3289 3.329 11.4663-7.7675 10.7265-21.453 21.453-21.453 10.7264 0 9.9867 13.6855 21.4529 21.453z" fill="#3186ff"/><g mask="url(#m)"><g filter="url(#a)"><path d="m18.7524 12.9759c-.9 7.929 5.9327 15.2151 15.2614 16.274 9.3287 1.0588 17.6206-4.5105 18.5207-12.4395.9-7.92906-5.9328-15.21516-15.2615-16.274007-9.3286-1.058852-17.6206 4.510507-18.5206 12.439507z" fill="#ffe432"/></g><g filter="url(#b)"><path d="m54.7194 38.899c2.3372 10.0631 12.569 16.2844 22.8532 13.8958 10.2843-2.3886 16.7266-12.4827 14.3893-22.5457-2.3372-10.0631-12.5689-16.2844-22.8532-13.8958-10.2842 2.3886-16.7266 12.4827-14.3893 22.5457z" fill="#fc413d"/></g><g filter="url(#c)"><path d="m-6.47694 45.6499c2.95331 10.3853 16.25392 15.7028 29.70774 11.8769 13.4538-3.8259 21.9662-15.3464 19.0129-25.7317-2.9533-10.3854-16.2539-15.7029-29.7078-11.877-13.453798 3.8259-21.96615 15.3464-19.01284 25.7318z" fill="#00b95c"/></g><g filter="url(#d)"><path d="m-6.47694 45.6499c2.95331 10.3853 16.25392 15.7028 29.70774 11.8769 13.4538-3.8259 21.9662-15.3464 19.0129-25.7317-2.9533-10.3854-16.2539-15.7029-29.7078-11.877-13.453798 3.8259-21.96615 15.3464-19.01284 25.7318z" fill="#00b95c"/></g><g filter="url(#e)"><path d="m4.19933 54.2579c7.40357 7.562 20.15407 7.0848 28.47907-1.0658 8.325-8.1507 9.0721-20.8882 1.6685-28.4502-7.4035-7.5619-20.154-7.0847-28.47905 1.0659-8.32503 8.1506-9.07205 20.8882-1.66852 28.4501z" fill="#00b95c"/></g><g filter="url(#f)"><path d="m42.9337 82.7778c2.299 9.8983 11.8896 16.1277 21.4213 13.9139s15.395-12.0326 13.096-21.9309-11.8896-16.1278-21.4213-13.9139c-9.5317 2.2138-15.395 12.0326-13.096 21.9309z" fill="#3186ff"/></g><g filter="url(#g)"><path d="m26.6812 3.71636c-4.814 10.72364.4528 23.53294 11.7637 28.61054s24.3826.5005 29.1966-10.2231c4.8139-10.7236-.4529-23.53296-11.7638-28.61052-11.3108-5.07758-24.3826-.50053-29.1965 10.22308z" fill="#fbbc04"/></g><g filter="url(#h)"><path d="m13.7863 107.221c-11.65414-4.575 8.2624-42.2158 13.215-54.8314 4.9525-12.6156 18.4149-19.1337 30.069-14.5586 11.6542 4.575 25.4677 29.7738 20.515 42.3893-4.9527 12.6156-52.1449 31.5757-63.799 27.0007z" fill="#3186ff"/></g><g filter="url(#i)"><path d="m84.4007 60.372c-3.1203 3.6415-11.2623 1.7846-18.186-4.1477-6.9238-5.9322-10.0074-13.6933-6.8874-17.3348 3.1201-3.6415 11.2622-1.7846 18.186 4.1476 6.9235 5.9322 10.0077 13.6933 6.8874 17.3349z" fill="#749bff"/></g><g filter="url(#j)"><path d="m61.1095 41.8368c12.8326 8.6806 27.6099 9.2509 33.006 1.2737 5.3961-7.9771-.6323-21.4809-13.465-30.1615-12.8326-8.68054-27.6099-9.25081-33.006-1.2737-5.3961 7.9772.6324 21.4809 13.465 30.1615z" fill="#fc413d"/></g><g filter="url(#k)"><path d="m18.9801 27.7178c-3.1792 7.6692-2.1409 15.3851 2.3191 17.234 4.4601 1.8488 10.6529-2.8695 13.8321-10.5387 3.1792-7.6691 2.1408-15.385-2.3192-17.2339s-10.6528 2.8694-13.832 10.5386z" fill="#ffee48"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#2a3236"/><g fill="#fff" stroke="#fff" stroke-miterlimit="10" stroke-width=".659418"><path d="m30.468 69.9144c-.8495 0-1.5649-.1456-2.1463-.4355-.5798-.29-1.0193-.7316-1.3139-1.3142-.2946-.5827-.4458-1.2959-.4458-2.1331v-8.6342c0-1.0643-.2135-1.8389-.6359-2.3217-.4255-.4816-1.1799-.7362-2.2615-.7609-.3367 0-.6063-.1257-.8105-.3818-.2073-.253-.3086-.546-.3086-.8726 0-.3543.1013-.647.3086-.8756.2057-.2286.4785-.3543.8105-.3788 1.0816-.0262 1.836-.2792 2.2615-.7608.4255-.4813.6359-1.2437.6359-2.2833v-8.6341c0-1.2683.3367-2.2329 1.0054-2.8908.6686-.6579 1.6365-.9892 2.9006-.9892h10.315c.3881 0 .7076.115.9663.342.2572.2285.3881.5214.3881.8726 0 .3313-.1091.615-.3273.8573s-.5081.3634-.8713.3634h-9.5777c-.544 0-.9555.1396-1.2376.4187-.2836.2791-.4255.7101-.4255 1.2959v8.674c0 .7606-.1559 1.4507-.4644 2.0718-.3087.6226-.7217 1.1103-1.2376 1.4677-.5159.354-1.1191.532-1.8158.532v-.1533c.6967 0 1.2999.178 1.8158.532.5159.3544.9289.8436 1.2376 1.4677.3085.6211.4644 1.3112.4644 2.072v8.7121c0 .586.1419 1.0154.4255 1.2959.2837.2823.6967.4187 1.2376.4187h9.5777c.3601 0 .65.1212.8713.362.2213.2423.3273.5274.3273.8573 0 .3296-.1278.6119-.3881.8543-.2587.242-.5798.3617-.9663.3617h-10.315z"/><path d="m55.7554 69.9149c-.3882 0-.7077-.1211-.9663-.3619-.2589-.2424-.3882-.5275-.3882-.854 0-.3269.109-.615.3274-.8574.2181-.2423.5081-.3619.8713-.3619h9.5778c.5439 0 .9553-.1365 1.2373-.4187.2838-.279.4256-.71.4256-1.2959v-8.7124c0-.7606.1558-1.4506.4646-2.0717.3085-.6226.7216-1.1103 1.2373-1.4677.516-.3541 1.1193-.532 1.8159-.532v.1532c-.6966 0-1.2999-.1779-1.8159-.532-.5157-.3543-.9288-.8435-1.2373-1.4677-.3088-.6211-.4646-1.3112-.4646-2.072v-8.6738c0-.5828-.1418-1.0137-.4256-1.2959-.2835-.2791-.6967-.4187-1.2373-.4187h-9.5778c-.3602 0-.6501-.1211-.8713-.3634-.2184-.2392-.3274-.526-.3274-.8573 0-.3542.1278-.6441.3882-.8726.2571-.2285.5781-.342.9663-.342h10.3149c1.2641 0 2.2288.3313 2.9006.9892.6717.6579 1.0054 1.6225 1.0054 2.8908v8.6339c0 1.0398.2136 1.8037.6359 2.2836.4256.4816 1.1798.7361 2.2616.7608.3365.0244.6063.1502.8105.3788.2072.2283.3085.5213.3085.8756 0 .3312-.1013.6211-.3085.8726-.2042.253-.4786.3818-.8105.3818-1.0818.0244-1.8345.2792-2.2616.7606-.4256.4816-.6359 1.2546-.6359 2.3219v8.634c0 .8389-.1481 1.5473-.4457 2.1333-.2978.5857-.7341 1.0212-1.314 1.3142-.5813.29-1.2969.4356-2.1463.4356h-10.3149z"/><path d="m58.4063 56.3629c1.8783 0 3.401-1.4983 3.401-3.3463 0-1.8477-1.5227-3.3463-3.401-3.3463-1.878 0-3.401 1.4986-3.401 3.3463 0 1.848 1.523 3.3463 3.401 3.3463z"/><path d="m39.3566 56.3629c1.8782 0 3.4009-1.4983 3.4009-3.3463 0-1.8477-1.5227-3.3463-3.4009-3.3463-1.8781 0-3.4009 1.4986-3.4009 3.3463 0 1.848 1.5228 3.3463 3.4009 3.3463z"/><path d="m47.1107 26.5656-.2601 6.8382c0 .3834-.3678.5751-1.1037.5751-.7356 0-1.1034-.1917-1.1034-.5751-.0655-1.7038-.1185-3.0258-.1621-3.9628-.0218-.9585-.0437-1.6409-.0655-2.0458-.0218-.4048-.0327-.6502-.0327-.7345v-.1273c0-.4892.4551-.7346 1.3637-.7346.9087 0 1.3638.2561 1.3638.7668zm5.5206 0-.2601 6.8382c0 .3834-.3678.5751-1.1035.5751-.7356 0-1.1037-.1917-1.1037-.5751-.0654-1.7038-.1184-3.0258-.1619-3.9628-.0219-.9585-.0438-1.6409-.0654-2.0458-.0219-.4048-.0328-.6502-.0328-.7345v-.1273c0-.4892.4551-.7346 1.3638-.7346s1.3636.2561 1.3636.7668z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#60a5fa"/><path d="m48.0447 25-11.1369 19.2932c4.2259-1.3031 8.772-1.4963 13.1788-.4566l3.7639.8886-3.5412 15.019-3.7692-.8886c-2.8955-.6832-5.9137-.0062-8.2479 1.8395-1.1677.9238-2.0876 2.0835-2.718 3.3845l-3.484-1.686c.8814-1.8209 2.17-3.4449 3.7978-4.7337 3.256-2.5778 7.5012-3.5247 11.5435-2.5707l1.7652-7.4853c-6.3232-1.491-12.9872-.0063-18.0817 4.0268-5.094 4.0327-8.0696 10.1803-8.0696 16.6783l50 .0009z" fill="#fff"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#d77655"/><path d="m30.9782 57.2401 11.0128-6.1789.1851-.5367-.1851-.2984-.5367-.0002-1.8405-.1134-6.2923-.1702-5.4572-.2267-5.2871-.2834-1.3302-.2834-1.247-1.6439.1284-.82 1.1187-.7521 1.6024.1398 3.541.2418 5.3135.3666 3.8548.2268 5.7106.5933h.9067l.1285-.3664-.3099-.2269-.2419-.2268-5.4987-3.7263-5.9523-3.938-3.1178-2.2676-1.6855-1.1487-.8503-1.0771-.3665-2.3506 1.5307-1.6855 2.0558.1398.5253.1399 2.0825 1.6023 4.448 3.4429 5.8085 4.278.8503.7068.3401-.2418.0416-.1701-.3817-.6386-3.1593-5.7106-3.3711-5.8084-1.5004-2.4074-.3968-1.4436c-.1398-.5933-.2418-1.0921-.2418-1.7006l1.7422-2.3658.9636-.31 2.3243.31.9789.8503 1.4436 3.3031 2.3393 5.2002 3.6281 7.0709 1.062 2.0974.5668 1.9426.2118.5933.3661-.0002v-.3401l.2986-3.9834.5517-4.8902.5367-6.2923.1852-1.7724.8766-2.1241 1.7422-1.1487 1.3605.6501 1.1187 1.6022-.1549 1.0356-.6652 4.3233-1.3038 6.7722-.8503 4.5351h.4953l.567-.5669 2.2939-3.0459 3.8549-4.8185 1.7006-1.9122 1.9841-2.1126 1.2734-1.0053 2.4073-.0002 1.7724 2.6341-.7935 2.7211-2.4792 3.1442-2.0559 2.6642-2.9479 3.9682-1.8404 3.1745.1702.2532.4384-.0415 6.6589-1.4173 3.5977-.65 4.2933-.7368 1.9425.907.2117.9221-.7634 1.8858-4.5917 1.1338-5.3854 1.0772-8.0195 1.8972-.0982.0718.1133.1398 3.6129.3401 1.5456.0831h3.783l7.0443.5254 1.8405 1.217 1.1036 1.489-.1851 1.1338-2.8345 1.4436-3.8245-.907-8.9265-2.1239-3.0612-.7634-.4232-.0002v.2533l2.551 2.4943 4.6748 4.2213 5.8539 5.442.2986 1.3455-.7521 1.0619-.7935-.1133-5.1435-3.87-1.9841-1.742-4.4935-3.7831-.2984-.0002v.3968l1.0355 1.5156 5.4685 8.2197.2833 2.5207-.3966.8201-1.4173.4951-1.5571-.2833-3.2009-4.4937-3.3031-5.0602-2.6643-4.5351-.3249.1851-1.5722 16.9346-.7369.8654-1.7007.6501-1.4171-1.0771-.7521-1.7422.7521-3.443.907-4.4933.7368-3.5714.6652-4.4368.3968-1.4739-.0264-.0982-.3249.0415-3.3447 4.5917-5.0868 6.8744-4.0249 4.3084-.9636.3817-1.6706-.8656.1551-1.5455.9334-1.3756 5.5706-7.086 3.3597-4.3914 2.1692-2.536-.0151-.3665h-.1285l-14.7954 9.6067-2.6342.3401-1.1338-1.062.14-1.7422.5366-.5668 4.448-3.0612-.0151.0152z" fill="#fcf2ee"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#9f58fa"/><path d="m74.284 51.6312-3.3646-6.7554v-3.8905c0-6.4488-5.1758-11.6716-11.5593-11.6716h-5.7502c.4161-.8547.6447-1.8156.6447-2.8295 0-3.584-2.8838-6.4842-6.4478-6.4842-3.5639 0-6.4479 2.9002-6.4479 6.4842 0 1.0139.2287 1.9748.6449 2.8295h-5.7502c-6.3834 0-11.5593 5.2228-11.5593 11.6716v3.8905l-3.4349 6.7377c-.3459.6779-.3459 1.4854 0 2.1633l3.4349 6.6611v3.8906c0 6.4488 5.1759 11.6715 11.5593 11.6715h23.1065c6.3835 0 11.5593-5.2227 11.5593-11.6715v-3.8906l3.3587-6.6846c.3341-.6661.3341-1.4501.0059-2.1221zm-29.9942 5.5056c0 2.9297-2.3622 5.3053-5.2754 5.3053-2.9133 0-5.2755-2.3756-5.2755-5.3053v-9.4315c0-2.9298 2.3622-5.3053 5.2755-5.3053 2.9132 0 5.2754 2.3755 5.2754 5.3053zm16.9988 0c0 2.9297-2.3622 5.3053-5.2754 5.3053-2.9133 0-5.2755-2.3756-5.2755-5.3053v-9.4315c0-2.9298 2.3622-5.3053 5.2755-5.3053 2.9132 0 5.2754 2.3755 5.2754 5.3053z" fill="#fafafa"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="132.113" width="132.113" x="-35.798" y="17.8944"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_94_95" stdDeviation="16.1309"/></filter><filter id="b" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="114.58" width="114.58" x="22.727" y="47.395"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_94_95" stdDeviation="13.2004"/></filter><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="48" x2="48" y1="0" y2="96"><stop offset="0" stop-color="#6c4dff"/><stop offset="1" stop-color="#583ed3"/></linearGradient><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="39.9923" x2="84.9014" y1="26.587" y2="104.371"><stop offset="0" stop-color="#fff" stop-opacity=".8"/><stop offset=".437689" stop-color="#fff"/></linearGradient><clipPath id="e"><path d="m0 0h96v96h-96z"/></clipPath><clipPath id="f"><path d="m0 0h96v96h-96z"/></clipPath><g clip-path="url(#e)"><path d="m0 0h96v96h-96z" fill="url(#c)"/><g clip-path="url(#f)"><path d="m75.2842 0h-54.5684c-11.44103 0-20.7158 9.27477-20.7158 20.7158v54.5684c0 11.441 9.27477 20.7158 20.7158 20.7158h54.5684c11.441 0 20.7158-9.2748 20.7158-20.7158v-54.5684c0-11.44103-9.2748-20.7158-20.7158-20.7158z" fill="#000"/><path d="m75.2842 0h-54.5684c-11.44103 0-20.7158 9.27477-20.7158 20.7158v54.5684c0 11.441 9.27477 20.7158 20.7158 20.7158h54.5684c11.441 0 20.7158-9.2748 20.7158-20.7158v-54.5684c0-11.44103-9.2748-20.7158-20.7158-20.7158z" fill="url(#c)"/><g filter="url(#a)"><path d="m30.2583 117.745c18.6641 0 33.7944-15.13 33.7944-33.7944 0-18.6641-15.1303-33.7944-33.7944-33.7944-18.6642 0-33.79443 15.1303-33.79443 33.7944 0 18.6644 15.13023 33.7944 33.79443 33.7944z" fill="#28b894" fill-opacity=".4"/></g><g filter="url(#b)"><path d="m80.0168 135.574c17.0595 0 30.8892-13.83 30.8892-30.889 0-17.0597-13.8297-30.8891-30.8892-30.8891-17.0594 0-30.8889 13.8294-30.8889 30.8891 0 17.059 13.8295 30.889 30.8889 30.889z" fill="#28b894" opacity=".7"/></g><path d="m73.4211 7.50692c.9408-.8439.998-.87894 1.6877-.92034 1.1181-.08172 2.1423.45585 3.8856 2.04273 4.0734 3.70149 9.7467 11.31139 13.2732 17.81009l1.3615 2.5224 1.9265.958c1.8582.939 4.9044 2.8641 6.1774 3.8964.575.4758.657.4854 1.255.2526 2.702-1.0518 6.571.3423 9.984 3.6168 3.073 2.9448 6.017 7.9749 7.144 12.1743.165.6759.381 2.1297.461 3.2118.257 3.7989-.96 6.834-3.306 8.2077-.48.2766-.512.351-.498 1.5459.108 5.6898-1.426 11.3697-4.507 16.9083-3.478 6.2193.327 22.6544-8.055 28.7154-4.5012 3.275-25.1491-.52-29.9635 1.658-11.5335 5.193-20.781 7.183-28.8123 6.199-4.7901-.581-10.2105-2.451-13.4187-4.621-.8445-.584-.9798-.62-1.6248-.435-3.4347.986-7.9334-1.042-11.7548-5.284-1.5242-1.696-3.9826-5.859-4.78-8.086-1.8446-5.2137-1.4805-9.9189.9764-12.7287.6348-.7236.6557-.7533.5171-1.9695-.229-1.9923-.3317-4.9419-.2271-6.8445l.0837-1.7772-2.6709-4.7196c-4.13154-7.3515-6.75525-13.5252-7.7679-18.2415-.53439-2.5857-.50049-3.7335.15546-4.5825.3996-.5127 1.71042-1.0461 3.29034-1.338 3.9776-.6981 12.652-.0666 22.3013 1.6371l1.0017.1761 2.2035-1.9488c3.6567-3.2391 6.0855-5.0556 10.5636-7.848 4.6677-2.9205 9.936-5.3241 15.8682-7.2264l1.9047-.6092 1.0452-2.7482c3.7458-9.8882 7.5832-17.17781 10.3189-19.60418zm-31.3816 50.67528c-4.2327 2.4435-6.3483 3.6672-7.9038 5.0367-6.2994 5.5473-8.6537 14.3337-5.9718 22.2873.6624 1.9641 1.8837 4.0827 4.3278 8.3166 2.4438 4.2327 3.6675 6.3482 5.037 7.9032 5.547 6.3 14.3334 8.654 22.2873 5.972 1.9635-.662 4.0812-1.882 8.3139-4.326l34.3571-4.0627c4.234-2.4441-3.6494-13.6687-2.094-15.0382 6.3-5.5473 8.654-14.3337 5.972-22.2873-.662-1.9638-1.883-4.0812-4.326-8.3139-2.4448-4.2336-3.669-6.3507-5.0388-7.9062-5.547-6.2997-14.3335-8.6538-22.2874-5.9721-1.9638.6624-4.0827 1.8837-8.3163 4.3281z" fill="url(#d)"/><g fill="#fff"><path d="m48.554 72.7967c-2.301 1.3285-3.0894 4.2708-1.7609 6.5717l5.1809 8.9737c1.3285 2.301 4.2708 3.0893 6.5718 1.7609v-.0001c2.301-1.3284 3.0893-4.2707 1.7609-6.5717l-5.181-8.9736c-1.3284-2.301-4.2707-3.0894-6.5717-1.7609z"/><path d="m74.514 57.8084v.0001c-2.301 1.3284-3.0894 4.2707-1.7609 6.5717l5.1809 8.9736c1.3285 2.301 4.2707 3.0893 6.5717 1.7609 2.301-1.3285 3.0894-4.2708 1.7609-6.5718l-5.1809-8.9736c-1.3285-2.301-4.2707-3.0893-6.5717-1.7609z"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#740de1"/><g fill="#fff"><path d="m36.767 35.832c8.8266 0 13.7756 4.1356 13.9426 10.2227l-7.6227.2307c-.2009-3.3741-3.2273-5.5899-6.3199-5.5237-4.2459.0828-7.3884 2.8779-7.3884 7.3108 0 4.4327 3.1425 7.1779 7.3884 7.178 3.0927 0 6.0525-2.1171 6.3869-5.4914l7.6227.1662c-.2007 6.1861-5.4507 10.3876-14.0096 10.3876-8.5588-.0001-15.2454-4.7971-15.2455-12.2404 0-7.4765 6.4192-12.2404 15.2455-12.2405z"/><path d="m74.5897 36.4919v23.1576h-20.0605v-23.1576z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#10a37f"/><path d="m44.658 20.0001c-2.9847.0017-5.8924.9472-8.3071 2.7014-2.4148 1.7542-4.2128 4.2272-5.137 7.0652-1.9447.4019-3.7813 1.2136-5.3877 2.3809-1.6064 1.1674-2.9456 2.6637-3.9283 4.3892-1.496 2.5862-2.1332 5.5803-1.8201 8.5515.3131 2.9713 1.5605 5.7667 3.5628 7.9843-.6275 1.8811-.8457 3.8745-.64 5.8468.2057 1.9722.8305 3.8777 1.8327 5.5889 3.049 5.3283 9.1831 8.0589 15.1859 6.7885 1.3132 1.485 2.9282 2.6727 4.7371 3.4838 1.8089.811 3.7701 1.2267 5.7524 1.2193 6.1165 0 11.551-3.9451 13.445-9.7665 1.9429-.3999 3.7778-1.2109 5.3813-2.3787 1.6035-1.1677 2.9386-2.665 3.9155-4.3914 1.5033-2.5828 2.1466-5.5767 1.837-8.549-.3097-2.9724-1.5562-5.7694-3.5596-7.9869v-.0183c.6268-1.8845.8445-3.8809.6387-5.8562s-.8305-3.884-1.8323-5.5987c-1.4879-2.587-3.7574-4.6358-6.4826-5.8522-2.7251-1.2164-5.7657-1.5378-8.685-.9179-1.3193-1.4813-2.9386-2.665-4.7504-3.4725-1.8118-.8076-3.7747-1.2205-5.7583-1.2115zm0 3.6417-.0184.0184c2.4615 0 4.8285.8534 6.7217 2.428-.0753.0377-.2274.1329-.341.1898l-11.1331 6.4282c-.2794.161-.5108.3934-.6706.6733-.1598.28-.2422.5975-.2388.9198v15.0949l-4.7901-2.7683v-12.4787c-.0025-5.7947 4.6831-10.4979 10.4703-10.5062zm13.4124 4.3947c1.8458-.0031 3.6597.4814 5.258 1.4046s2.9244 2.2523 3.844 3.8527c1.2174 2.1233 1.6588 4.6038 1.2487 7.0167-.0752-.0568-.2265-.1321-.3218-.1889l-11.133-6.4483c-.2802-.1588-.5966-.2422-.9186-.2422s-.6385.0834-.9186.2422l-13.0462 7.5474v-5.5373l10.7736-6.2394c1.5839-.9197 3.3823-1.4047 5.2139-1.4075zm-27.5377 5.7312v13.2561c-.0011.3219.0823.6385.2418.918.1596.2796.3898.5124.6676.6751l13.027 7.529-4.8101 2.7866-10.7553-6.2201c-5.0049-2.9045-6.7158-9.3194-3.8239-14.3368 1.224-2.1254 3.1531-3.7556 5.4529-4.6079zm24.9558 3.2806 10.7737 6.2202c5.0183 2.9019 6.7217 9.311 3.8247 14.3367l.0192.0193c-1.2242 2.1213-3.1543 3.7456-5.4537 4.5894v-13.256c0-.6645-.341-1.2705-.9093-1.5931l-13.0455-7.5474zm-7.9152 4.5711s4.4357 1.3507 5.4922 3.1853 0 6.3522 0 6.3522l-5.4913 3.1861-5.4913-3.1853v-6.3522zm8.6349 5.0065 4.7909 2.7683v12.4595c0 5.8031-4.6965 10.5062-10.4711 10.5062v-.0192c-2.4501.0026-4.8229-.8566-6.7033-2.4272.1155-.06.2292-.1233.341-.1897l11.1331-6.4283c.2821-.1579.5158-.3898.6759-.6706.1601-.2809.2405-.6001.2326-.9233zm-3.1243 8.1543v5.5364l-10.7737 6.221c-5.0182 2.8819-11.4181 1.1752-14.3159-3.8314h.0192c-1.2303-2.1054-1.6666-4.6078-1.2503-7.0167.076.0577.2281.1329.3226.1898l11.1331 6.4483c.28.1585.5963.2418.9181.2418s.6381-.0833.9182-.2418z" fill="#fff"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#f3f3f3"/><path d="m65.1195 29.1801-3.0273 5.2483 7.6519 13.2433c.056.1005.0896.2234.0896.335 0 .1117-.0336.2346-.0896.335l-7.6519 13.2546 3.0273 5.2485 10.8805-18.8381-10.8805-18.8378zm-4.2003 4.5671 3.0273-5.2483h-6.0546l-3.0273 5.2483h6.0658zm-6.0658 1.3624 7.0712 12.2271h6.0546l-7.06-12.2271zm6.0658 25.8167 7.06-12.2383h-6.0546l-7.0712 12.2383zm-6.0658 1.3624 3.0273 5.2258h6.0546l-3.0273-5.2258h-6.0658zm-20.521 6.5214c-.1229 0-.2346-.0336-.335-.0896-.1008-.0557-.1901-.145-.2461-.2454l-7.6631-13.2549h-6.0547l10.8806 18.8269h21.7497l-3.0273-5.237h-15.2929zm16.4772-.6813 3.0272 5.237 3.0273-5.2482-3.0273-5.2481-3.0272 5.2481zm1.8542-5.9294h-14.1199l-3.0273 5.2482h14.1199zm-15.3041-.67-7.0712-12.2386-3.0274 5.2485 7.0713 12.2383zm-17.3374-7.6713h6.0547l3.0273-5.2482h-6.0435zm13.6957-26.2749c.0557-.1004.1453-.1898.2458-.2456.1004-.0558.2233-.0893.335-.0893h15.3153l3.0273-5.2483h-21.7609l-10.8805 18.8377h6.0547l7.6409-13.2433zm-4.6137 19.854-3.0273-5.2482h-6.0547l3.0274 5.2482zm5.2057-18.1566-7.06 12.2272 3.0273 5.2485 7.06-12.2275zm15.3153-.6812h-14.1423l3.0273 5.2482h14.1423zm4.2115 4.567 3.0161-5.237-3.0161-5.2482-3.0272 5.237z" fill="#33333b"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#26233a"/><g fill="#a9f0eb"><path d="m40.771 53.5502c0-1.19.9648-2.1548 2.1549-2.1548 1.19 0 2.1548.9648 2.1548 2.1548v3.9716c0 1.1901-.9648 2.1548-2.1548 2.1548-1.1901 0-2.1549-.9647-2.1549-2.1548z"/><path d="m53.9673 51.3954c-1.19 0-2.1548.9648-2.1548 2.1548v3.9716c0 1.1901.9648 2.1548 2.1548 2.1548 1.1901 0 2.1549-.9647 2.1549-2.1548v-3.9716c0-1.19-.9648-2.1548-2.1549-2.1548z"/><path clip-rule="evenodd" d="m75 51.5063v5.9393c-.0017.7669-.3816 1.5145-1.0004 1.9676-7.3046 5.3476-16.3178 9.6493-25.4996 9.6493-10.1581 0-20.3284-5.8535-25.4996-9.6493-.6188-.4531-.9989-1.2007-1.0004-1.9676v-5.9393c0-.7818.2484-1.537.7089-2.1664l1.6132-2.183c.8639-1.1712 2.1488-1.4806 3.5178-1.4806.5168-5.8963 1.7391-10.1032 4.6607-13.1838 5.565-5.8962 12.9519-6.4925 15.9994-6.4925s10.4344.5963 15.9994 6.4925c2.9183 3.0806 4.1439 7.2875 4.6607 13.1838 1.3717 0 2.651.3041 3.5145 1.4806l1.6132 2.1863c.4638.6294.7122 1.3813.7122 2.1631zm-10.1097-2.6997c-.0708-1.3528-1.1693-1.8836-2.3122-2.2592-1.205.7561-2.6764 1.0534-4.0843 1.0534-1.4972 0-4.2897-.3577-6.6117-2.6765-.5863-.583-.9872-1.4972-1.2588-2.5109-.7044-.0716-1.4119-.1092-2.12-.1126-.6294 0-1.3548.0365-2.1266.1126-.2716 1.0137-.6724 1.9279-1.2588 2.5109-2.3187 2.3188-5.1145 2.6765-6.6117 2.6765-1.4083 0-2.8834-.294-4.0876-1.0534-1.1392.3744-2.2331.9141-2.3055 2.2592-.1213 2.5424-.1319 5.0824-.1424 7.6237-.0055 1.2754-.0106 2.5511-.0299 3.8276.005.7409.4517 1.4292 1.1263 1.7357 5.4822 2.4977 10.6662 3.7564 15.4362 3.7564 4.7634 0 9.9475-1.2587 15.4263-3.7564.6746-.3065 1.1211-.9948 1.1263-1.7357.0657-3.8132.0128-7.6419-.169-11.4513zm-31.7603-5.3166c.8944.8944 2.5838 1.4906 4.4056 1.4906 1.3913 0 4.0413-.2981 6.2275-2.5175.9607-.9275 1.5569-3.2462 1.4907-5.5981-.0663-1.8881-.5963-3.445-1.3913-4.1075-.8612-.7619-2.8156-1.0931-5.0019-.8944-2.3187.2319-4.2731.9938-5.2668 2.0538-2.1532 2.3519-1.6894 8.3144-.4638 9.5731zm13.515-5.7969c.0663.3644.0994.7619.1325 1.1925 0 .2982 0 .5963-.0331.9275.6625-.0662 1.2256-.0662 1.7556-.0662.5299 0 1.0931 0 1.7556.0662-.0331-.3312-.0331-.6293-.0331-.9274.0331-.4306.0663-.8282.1325-1.1926-.6956-.0662-1.325-.0993-1.855-.0993s-1.1594.0331-1.855.0993zm5.1013-.8281c-.0663 2.3519.53 4.6706 1.4906 5.5981 2.1862 2.2194 4.8362 2.5175 6.2275 2.5175 1.8219 0 3.5112-.5962 4.4056-1.4906 1.2256-1.2587 1.6894-7.2212-.4637-9.5731-.9938-1.06-2.9482-1.8219-5.2669-2.0538-2.1863-.1987-4.1406.1325-5.0019.8944-.795.6625-1.325 2.2194-1.3912 4.1075z" fill-rule="evenodd"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path d="m23.5 40.8203h50v15.3595h-50z"/></clipPath><path d="m0 0h96v96h-96z" fill="#6b50ff"/><g clip-path="url(#a)" fill="#fffdf5"><path d="m27.2996 52.4022c.5837 0 1.1262-.2438 1.5466-.5861.2594-.2106.527-.1535.5807.0944.0206.0923.0248.1898.0248.2894 0 1.0975-.8772 2.4107-3.0964 2.4107-1.805 0-3.0469-.7977-2.8309-3.225l.2149-2.4605c.1322-1.5457.7118-2.8589 1.838-3.5902.5961-.3828 1.3576-.5986 2.2843-.5986 1.4568 0 1.9207.582 1.9207 1.2137 0 .416-.2149.8641-.53 1.0809-.281-.0498-.5466-.083-.8111-.083-.53 0-1.0104.1162-1.3575.4326-.2976.2655-.497.6815-.5466 1.2634l-.2314 2.527c-.0662.7136.1487 1.2313.9939 1.2313z"/><path d="m33.1185 53.0322c-.0496.5653-.2976.9138-.6458 1.1472-.4969.333-1.0765.4326-1.5725.4326-.5135 0-.6622-.2822-.6126-.8143l.9608-11.0392c.0496-.5156.2149-.9637.5796-1.1805.529-.3153 1.0921-.4647 1.589-.4647.464 0 .7284.2489.6954.5819l-.3978 4.1389h.1984c.2149-.2655.4473-.4823.6788-.6483.4473-.2987.9432-.4491 1.5063-.4491 1.2088 0 1.805.6317 1.6728 2.0943l-.5301 6.1503c-.0496.5156-.2149.9139-.5796 1.1307-.5631.3496-1.0931.4989-1.589.4989-.5135 0-.7119-.2821-.6788-.6317l.53-6.1835c.0331-.333-.0661-.4989-.3482-.4989-.1818 0-.4639.0498-.5961.1327-.281.166-.3978.3496-.4308.6484z"/><path d="m45.3543 52.9824c-.0496.5155-.1984.8973-.5796 1.1307-.5631.3496-1.0766.4989-1.5229.4989-.4639 0-.6623-.2489-.6292-.5819l.0496-.6484h-.1818c-.1158.1826-.2149.3496-.3482.4824-.3978.416-.8937.7479-1.7223.7479-1.5395 0-2.0199-1.3464-1.9042-2.7427l.248-2.8754c.1488-1.7292.7284-2.6763 1.6551-3.3081.8276-.5653 1.8876-.947 3.1295-.947.6623 0 1.2584.0663 1.6221.1659.6788.1826.8276.4492.7945.8973zm-4.0397-1.0809c-.0331.4658.1488.6649.5135.6649.2149 0 .3977-.0664.5465-.1826.1819-.1327.2976-.3495.3141-.5985l.4308-4.9698c-.0661-.0166-.1818-.0332-.3481-.0332-.3317 0-.5962.1328-.7945.3662-.1819.2157-.2976.5487-.3317.9636z"/><path d="m50.2051 46.0828c.2645-.6483.7945-1.3465 1.7048-1.3465.7284 0 1.027.4326 1.027 1.0311 0 .499-.1984 1.0975-.5301 1.6629-.2975-.083-.5961-.1162-.8771-.0996-.8772.0332-1.589.5487-1.6717 1.4626l-.3482 4.2385c-.0496.5654-.2975.9139-.6457 1.1473-.497.333-1.0766.4326-1.5725.4326-.5135 0-.6623-.2822-.6127-.8143l.6457-7.4138c.0496-.5155.2149-.9637.5796-1.1805.5301-.3153 1.0601-.4657 1.556-.4657.4639 0 .6623.2489.6292.5819l-.0661.7645h.1818z"/><path d="m61.0335 53.9789.5468-6.4501c.033-.333-.0167-.4989-.2977-.4989-.1817 0-.4144.0498-.5464.1327-.2647.166-.4144.3994-.4311.665l-.4474 5.1534c-.0493.5156-.2147.9139-.5794 1.1307-.5631.3496-1.0931.4989-1.5892.4989-.5134 0-.7118-.2821-.6788-.6317l.5468-6.4501c.033-.333-.0167-.4989-.2977-.4989-.1817 0-.4308.0498-.5631.1327-.2811.166-.3977.3496-.4307.6484l-.4474 5.2198c-.0496.5653-.2976.9139-.6458 1.1473-.4969.333-1.0765.4325-1.5724.4325-.5135 0-.6623-.2821-.6127-.8143l.6457-7.4137c.0496-.5156.2149-.9637.5796-1.1805.53-.3153 1.06-.4658 1.556-.4658.464 0 .6623.249.6293.582l-.0496.5155h.1817c.1653-.1991.3317-.3827.5134-.5155.497-.3994 1.0601-.582 1.7058-.582 1.0765 0 1.4732.5322 1.6223 1.0975h.132c.182-.2157.4144-.4159.6127-.5653.4804-.3662 1.0272-.5322 1.6562-.5322 1.2089 0 1.7719.6318 1.6386 2.0944l-.5301 6.1503c-.0493.5156-.2147.9139-.5794 1.1307-.5631.3496-1.0931.4989-1.5892.4989-.5134 0-.7118-.2821-.6788-.6317z"/><path d="m65.2522 56.0558c-.4143 0-.6787-.1991-.6787-.6317 0-.7977.2644-1.2801.8274-1.2801h5.5461c.4307 0 .6954.1992.6954.6318 0 .7977-.2647 1.28-.8277 1.28z"/><path d="m72.2714 53.5412h-.182v-.112h.5013v.112h-.1798v.4938h-.1395zm.4751-.112h.2419l.1219.5135h.0238l.1196-.5135h.2461v.6058h-.1261v-.5176h-.0249l-.1219.5176h-.2098l-.1258-.5176h-.0248v.5176h-.12z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="47.825" x2="47.825" y1="48" y2="76"><stop offset=".16" stop-color="#5d5d5d"/><stop offset=".658" stop-color="#d5d5d5"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="72.1501" x2="47.8251" y1="34.0863" y2="48.35"><stop offset=".182" stop-color="#454545"/><stop offset=".715" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="47.825" x2="23.5" y1="20" y2="62"><stop offset="0" stop-color="#fff" stop-opacity=".6"/><stop offset=".667" stop-color="#fff" stop-opacity=".22"/></linearGradient><clipPath id="d"><path d="m23 20h50v56h-50z"/></clipPath><path d="m0 0h96v96h-96z" fill="#000"/><g clip-path="url(#d)"><path d="m47.825 76 24.325-14-24.325-14-24.325 14z" fill="url(#a)"/><path d="m72.1501 62v-28l-24.325-14v28z" fill="url(#b)"/><path d="m47.825 20-24.325 14v28l24.325-14z" fill="url(#c)"/><path d="m72.1501 34-24.325 42v-28z" fill="#555"/><path d="m72.15 34-24.325 14-24.325-14z" fill="#fff"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#1f1f1f"/><path d="m57.6949 44.7012c1.2377-.6773 2.7768-.6773 4.0174 0l3.2083 1.7557c.1033.0558.2128.095.3249.126.0238.0056.0473.014.0711.0195.1092.0252.2215.0392.3336.0421h.0148c.0119 0 .0238-.0029.0354-.0058.1034 0 .207-.014.3072-.0392.018-.0026.0357-.0055.0534-.011.1092-.0282.2126-.07.3159-.1232.009-.0058.0209-.0058.0325-.0113l6.4166-3.5111c.4607-.2517.7444-.7165.7444-1.2205v-7.0219c0-.5041-.2837-.9686-.7444-1.2206l-6.4166-3.5111c-.4607-.252-1.0249-.252-1.4859 0l-6.4162 3.5111s-.0178.0139-.0268.0194c-.0975.0561-.189.1231-.2717.1989-.0119.0111-.0235.0253-.0354.0363-.0709.0729-.1359.1513-.189.2352-.009.0139-.0207.0252-.0268.0392-.056.0923-.0972.1904-.1297.2941-.0061.0224-.0119.0447-.0177.0671-.0268.1065-.0474.2157-.0474.3304v3.5111c0 1.355-.7711 2.6177-2.0088 3.2979-1.2378.6777-2.7769.6777-4.0178 0l-3.2079-1.7554c-.1037-.056-.2129-.0952-.3252-.126-.0235-.0055-.0471-.0139-.0709-.0197-.1091-.025-.2215-.0392-.3339-.0418-.0177 0-.0325 0-.0502 0-.1062 0-.2096.0139-.3101.0392-.0177.0026-.0325.0055-.0502.011-.1092.0282-.2157.0703-.3162.1234-.0087.0055-.0206.0055-.0293.011l-6.4165 3.5111c-.4608.252-.7445.7166-.7445 1.2206v7.0219c0 .504.2837.9688.7445 1.2209l6.4165 3.5108s.0206.0055.0293.0113c.1005.0531.207.0949.3162.1231.0177.0055.0354.0055.0531.011.1005.0227.2039.0366.3072.0392.0119 0 .0238.0058.0357.0058h.0145c.1124 0 .2216-.0168.3339-.0421.0238-.0055.0474-.011.0709-.0194.1123-.0308.2215-.07.3252-.126l3.2079-1.7557c1.238-.6774 2.7771-.6774 4.0178 0 1.2377.6776 2.0088 1.9403 2.0088 3.2953v3.5111c0 .1147.0177.2239.0474.3304.0058.0224.0116.0447.0177.0671.0325.1036.0737.2015.1297.2941.009.0139.0178.0253.0268.0392.0531.0839.1181.1623.189.2352.0119.011.0235.0252.0354.0363.0798.0755.1713.1399.2717.1989.009.0055.0149.0139.0268.0194l6.4162 3.5111c.2305.126.4875.1876.7444.1876.2573 0 .5142-.0645.7445-.1876l6.4165-3.5111c.4607-.252.7444-.7165.7444-1.2206v-7.0219c0-.504-.2837-.9688-.7444-1.2208l-6.4165-3.5108s-.0207-.0055-.0294-.0114c-.1004-.0531-.207-.0949-.3162-.1231-.0177-.0055-.0325-.0055-.0502-.011-.1033-.0226-.2067-.0366-.3133-.0392-.0145 0-.0322 0-.047 0-.1124 0-.2247.0166-.3339.0418-.0235.0058-.0444.0113-.0679.0198-.1124.0307-.2216.0699-.3249.126l-3.2083 1.7554c-1.2377.6776-2.7768.6776-4.0148 0-1.2377-.6777-2.0086-1.9404-2.0086-3.2983s.7709-2.6177 2.0086-3.2954z" fill="#21c29b"/><path d="m22.7444 42.9457 6.4164 3.5108c.2304.126.4875.1878.7445.1878s.5139-.0644.7445-.1878l6.4162-3.5108s.0177-.014.0267-.0198c.0976-.0557.189-.1231.2718-.1986.0119-.0113.0235-.0252.0354-.0365.0708-.0726.1359-.151.189-.2352.009-.0139.0209-.025.0267-.0392.056-.0923.0976-.1902.1301-.2938.0058-.0224.0116-.0447.0177-.0674.0264-.1063.047-.2154.047-.3301v-3.5111c0-1.355.7712-2.6177 2.0089-3.2954 1.2377-.6776 2.7768-.6776 4.0177 0l3.2083 1.7554c.1033.0561.2125.0953.3249.1261.0235.0058.0473.0142.0708.0197.1092.0253.2215.0392.3339.0418h.0148c.0116 0 .0235-.0055.0354-.0055.1034 0 .2067-.0139.3072-.0392.0177-.0026.0354-.0055.0531-.011.1095-.0282.2158-.0703.3162-.1234.0087-.0056.0206-.0056.0293-.0111l6.4166-3.5111c.4607-.252.7444-.7165.7444-1.2205v-7.022c0-.5039-.2837-.9687-.7444-1.2207l-6.4224-3.5081c-.4607-.252-1.0249-.252-1.4859 0l-6.4163 3.5109s-.0177.014-.0267.0196c-.0975.056-.189.1232-.2717.1988-.0119.0112-.0235.0252-.0354.0364-.0709.0728-.1359.1512-.1891.2352-.009.014-.0206.0252-.0267.0392-.056.0924-.0975.1904-.1298.294-.006.0224-.0119.0448-.018.0672-.0264.1064-.047.2155-.047.3303v3.511c0 1.355-.7711 2.6177-2.0089 3.2982-1.2377.6774-2.7768.6774-4.0177 0l-3.2082-1.7556c-.1034-.0561-.2126-.0953-.3248-.1261-.0237-.0055-.0473-.0139-.0709-.0194-.1094-.0253-.2216-.0392-.3339-.0421-.0177 0-.0325 0-.0502 0-.1063 0-.2097.0139-.3102.0392-.0177.0029-.0325.0058-.0502.0113-.1093.0279-.2156.07-.3161.1231-.0089.0055-.0207.0055-.0295.0113l-6.4135 3.5137c-.4608.2521-.7444.7166-.7444 1.2206v7.0219c0 .504.2836.9689.7444 1.2209z" fill="#3969cb"/><path d="m54.9417 62.8356-6.4166-3.5111s-.0206-.0055-.0296-.0111c-.1004-.0531-.2067-.0952-.3159-.1234-.0177-.0055-.0354-.0055-.0531-.011-.1037-.0223-.207-.0363-.3104-.0392-.0177 0-.0325 0-.0502 0-.1121 0-.2244.0169-.3339.0421-.0235.0055-.0441.011-.0679.0195-.1121.0307-.2216.0699-.3249.126l-3.2083 1.7554c-1.2377.6776-2.7768.6776-4.0145 0-1.2377-.6774-2.0089-1.9401-2.0089-3.298v-3.5111c0-.1147-.0177-.2238-.0473-.3304-.0058-.0224-.0116-.0447-.0177-.0671-.0325-.1036-.0738-.2015-.1298-.2941-.009-.0139-.0177-.0249-.0267-.0392-.0531-.0839-.1182-.1623-.189-.2351-.0119-.0111-.0235-.0253-.0354-.0363-.0799-.0755-.1713-.14-.2718-.1989-.009-.0055-.0148-.014-.0267-.0195l-6.4162-3.5111c-.461-.252-1.0252-.252-1.4861 0l-6.4164 3.5111c-.4608.252-.7444.7166-.7444 1.2206v7.0219c0 .504.2836.9689.7444 1.2209l6.4164 3.5108s.0207.0084.0296.0113c.1004.0531.2038.0949.3131.1231.0177.0055.0354.0084.0532.011.1004.0227.2038.0366.3072.0392.0118 0 .0236.0058.0384.0058h.0177c.1123 0 .2216-.0168.3309-.0421.0236-.0055.0473-.0113.0709-.0194.1122-.0311.2217-.0703.3251-.126l3.2079-1.7557c1.238-.6774 2.7771-.6774 4.0178 0 1.2377.6776 2.0088 1.9403 2.0088 3.2953v3.5111c0 .1147.0177.2239.0473.3304.0058.0224.0117.0448.0178.0671.0325.1037.0737.2015.1297.2941.009.014.0177.025.0267.0392.0532.0839.1182.1623.1891.2352.0119.011.0238.025.0354.0363.0798.0755.1713.1399.2717.1989.009.0055.0148.0139.0267.0194l6.4163 3.5111c.2305.126.4875.1876.7444.1876.2573 0 .5142-.0645.7444-.1876l6.4166-3.5111c.4607-.252.7444-.7165.7444-1.2206v-7.0218c0-.5041-.2837-.9689-.7444-1.2209z" fill="#0295df"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path d="m0 0h96v96h-96z"/></clipPath><g clip-path="url(#a)"><path d="m0 0h96v96h-96z" fill="#ef6f2e"/><path d="m60.0878 30.1941c-.1023-.0247-.1979-.0707-.2802-.1347-.0823-.0641-.1496-.1447-.197-.2365-.0474-.0917-.0739-.1923-.0778-.2949-.0039-.1028.0151-.2049.0555-.2998 1.3959-3.3129 2.0118-5.9636 1.0179-7.0733-2.6326-2.9441-13.1899 2.9104-16.5559 4.8932-.0902.0529-.191.0862-.2956.0975-.1045.0114-.2103.0006-.3102-.0315s-.1915-.0849-.2685-.1547c-.0772-.0698-.1377-.155-.178-.2498-1.415-3.3059-2.9024-5.6053-4.4101-5.705-3.9963-.2667-7.2174 11.1537-8.1603 14.8759-.0252.0997-.0721.1929-.1376.2732-.0657.0803-.1483.1459-.2423.1921-.0939.0463-.197.0721-.3022.0759-.1051.0038-.2099-.0147-.3071-.0541-3.397-1.3613-6.1163-1.962-7.253-.9925-3.019 2.5672 2.9832 12.863 5.0164 16.1457.0544.0878.0886.1861.1004.2882.0118.1018.0008.2051-.0321.3025-.033.0976-.0872.1871-.1589.2622s-.1592.1341-.2566.1732c-3.3887 1.3799-5.7465 2.8305-5.8499 4.3008-.2723 3.8973 11.4371 7.0386 15.2551 7.9582.102.0248.1973.0708.2794.1348.082.064.1491.1446.1963.2362.0473.0915.0739.192.0777.2945.0039.1024-.015.2045-.0553.2991-1.3959 3.3129-2.0117 5.9649-1.0177 7.0734 2.6324 2.9441 13.1909-2.9093 16.5571-4.8922.09-.053.1909-.0864.2955-.0979.1045-.0115.2105-.0008.3104.0314s.1916.085.2686.155c.077.0699.1377.1552.1778.2501 1.4148 3.3047 2.9011 5.6043 4.41 5.7051 3.9963.2655 7.2174-11.1538 8.159-14.8772.0255-.0996.0727-.1927.1385-.2728.0656-.0803.1485-.1456.2425-.1918.0941-.046.1972-.0719.3024-.0755s.2099.0147.3071.0543c3.397 1.3614 6.1151 1.9607 7.253.9924 3.019-2.5672-2.9844-12.8641-5.0176-16.1469-.054-.0878-.088-.1862-.0994-.2879-.0117-.102-.0005-.2052.0324-.3025.0329-.0974.0869-.1867.1584-.2618.0714-.0751.1587-.1345.2558-.1739 3.3898-1.3798 5.7477-2.8306 5.85-4.3009.2734-3.8972-11.4373-7.0384-15.2539-7.9568zm-4.5849-3.7362c.7681 1.3428-3.1902 10.2901-6.1342 16.5483-.0492.1045-.1301.192-.2319.2504-.1016.0585-.2194.0851-.337.0764-.1178-.0087-.23-.0524-.3214-.1251-.0916-.0728-.1581-.1711-.1905-.2819-1.1891-4.0689-2.548-8.8496-4.0023-12.9081-.057-.1594-.0542-.3333.0081-.4906.0624-.1575.18-.2882.332-.3688 3.6313-1.9341 9.8451-4.5026 10.8772-2.7006zm-17.4026 1.1074c1.5161.4197 5.2044 9.476 7.6597 15.9313.0411.1079.0471.2254.0176.3368-.0296.1113-.0933.2112-.1827.2862-.0896.075-.2003.1214-.3177.1332s-.2355-.0118-.3388-.0674c-3.7942-2.0536-8.2185-4.5003-12.1898-6.3672-.1555-.0736-.2792-.1985-.3491-.3527-.0699-.1541-.0815-.3275-.0326-.4891 1.1688-3.8683 3.6966-9.9735 5.7334-9.4111zm-11.5025 12.7842c1.3757-.7491 10.5513 3.1112 16.9674 5.9823.1073.048.1969.1268.2569.2261.0599.0991.0872.2139.0783.3287-.0091.1148-.0537.2241-.1284.3135-.0746.0892-.1753.154-.2889.1857-4.1711 1.1596-9.0746 2.4849-13.2362 3.9031-.1631.0553-.3412.0524-.5023-.0083-.1612-.0608-.295-.1754-.3776-.3234-1.9797-3.5414-4.6181-9.6012-2.7692-10.6077zm1.1355 16.9714c.4293-1.4784 9.7167-5.0755 16.3359-7.47.1107-.0399.2312-.0458.3453-.017.1143.0288.2166.091.2936.1782.0768.0872.1246.1954.1367.3097.012.1144-.0122.2297-.0693.3305-2.1069 3.7002-4.6158 8.0149-6.53 11.8866-.0748.1522-.2029.2733-.3611.3418-.1582.0684-.3362.0797-.5022.0316-3.9666-1.1329-10.2267-3.605-9.6489-5.5914zm13.1089 11.2176c-.7692-1.3416 3.1902-10.2899 6.1342-16.547.0492-.1046.1302-.1921.2319-.2505.1017-.0585.2194-.0851.337-.0764.1179.0087.23.0524.3214.1251.0916.0728.1581.1711.1905.2819 1.1891 4.0678 2.548 8.8498 4.0023 12.9082.0567.1593.0534.333-.009.4901-.0625.1572-.1804.2877-.3323.368-3.6301 1.9305-9.8451 4.5038-10.8724 2.7006zm17.4026-1.1075c-1.5173-.4184-5.2056-9.4758-7.6609-15.931-.0411-.1081-.0475-.226-.0178-.3376.0295-.1115.0933-.2116.1831-.2866.0896-.0751.2008-.1214.3182-.133.1177-.0117.236.0122.3393.0682 3.793 2.0536 8.2185 4.5016 12.1886 6.3684.1559.0733.2798.1982.3498.3523.07.1543.0812.3279.0319.4896-1.1676 3.8741-3.6954 9.9733-5.7322 9.4097zm11.5025-12.7842c-1.3769.7503-10.5513-3.111-16.9685-5.9821-.1074-.048-.197-.1269-.2569-.2261-.06-.0992-.0872-.2139-.0782-.3288.0089-.1148.0535-.2241.1282-.3134.0746-.0892.1754-.154.289-.1857 4.1722-1.1596 9.0745-2.485 13.2361-3.9031.1634-.0553.3419-.0523.5032.0087s.2952.1759.3779.3241c1.9785 3.5402 4.6169 9.6011 2.7692 10.6064zm-1.1355-16.9713c-.4304 1.4796-9.7167 5.0767-16.3359 7.4712-.1109.0401-.2315.0461-.346.0174-.1143-.0289-.2169-.0912-.294-.1786-.0769-.0875-.1244-.1959-.1363-.3106-.0119-.1145.0124-.2299.07-.3308 2.1057-3.699 4.6146-8.0149 6.5289-11.8866.0753-.1518.2033-.2725.3614-.3407s.336-.0795.5018-.0316c3.9666 1.1388 10.2267 3.6039 9.6501 5.5903z" fill="#fff"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#4b32c3"/><g fill="#fff"><path d="m36.7517 41.1976 10.8107-6.2415c.2706-.1563.6041-.1563.8746 0l10.8109 6.2415c.2704.1562.4373.4448.4373.7573v12.4831c0 .3123-.1669.6011-.4373.7576l-10.8109 6.2415c-.2705.1562-.604.1562-.8746 0l-10.8107-6.2415c-.2705-.1563-.4372-.4451-.4372-.7576v-12.4831c.0002-.3125.1669-.6011.4372-.7573z" fill-opacity=".8"/><path d="m76.108 46.8833-12.9167-22.4715c-.4692-.8125-1.336-1.4118-2.2741-1.4118h-25.834c-.9384 0-1.8053.5993-2.2745 1.4118l-12.9168 22.4219c-.4692.8127-.4692 1.8384 0 2.6511l12.9168 22.2873c.4692.8125 1.3361 1.2279 2.2745 1.2279h25.8337c.9382 0 1.8052-.4029 2.2741-1.2156l12.9168-22.3237c.4696-.8123.4696-1.7649.0002-2.5774zm-10.6957 10.8058c0 .3303-.1989.6359-.4853.8013l-16.4531 9.4926c-.2862.1652-.6447.1652-.9308 0l-16.4659-9.4926c-.2862-.1654-.4864-.4708-.4864-.8013v-18.9855c0-.3306.1973-.636.4837-.8014l16.4525-9.4926c.2861-.1654.6442-.1654.9303 0l16.467 9.4926c.2864.1654.488.4708.488.8014z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="31.0027" x2="52.676" y1="53.314" y2="16.8571"><stop offset="0" stop-color="#f8682f"/><stop offset="1" stop-color="#dd2c00"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="51.2853" x2="48.8069" y1="43.147" y2="86.6391"><stop offset="0" stop-color="#f8682f"/><stop offset=".566586" stop-color="#e92a4e"/><stop offset="1" stop-color="#c447ff"/></linearGradient><mask id="c" height="64" maskUnits="userSpaceOnUse" width="45" x="26" y="16"><path d="m70.8 16h-44.8v64h44.8z" fill="#fff"/></mask><path d="m0 0h96v96h-96z" fill="#000"/><g mask="url(#c)"><path d="m57.3861 40.1497c.3967.0255.9498.1766 1.5983.2707l6.5823 4.2531-21.5177 12.7983c-.3236.1172-.7054.2411-1.1418.3527-.548.1406-1.0581.231-1.5169.2891-.3503.039-.827.0792-1.3917.0837l-8.2652-9.8571 17.3495-6.7345c-.0022.0023-.0056.0045-.0089.0067 1.7748-.6663 3.3183-1.0067 4.45-1.192 1.2557-.2055 2.4879-.3973 3.8641-.2701-.0006-.0003-.0013-.0004-.002-.0006z" fill="#ffc400"/><path d="m56.9898 23.7918c-.1373-.6194-.3102-1.1942-.5045-1.7233-.3449-.9543-1.1183-3.027-3.0113-4.8999-.3471-.3438-.8037-.7523-1.383-1.1686-2.3127 2.7837-4.3876 4.7927-5.7593 6.0428-3.5996 3.2793-9.4917 7.8298-13.2755 11.2552-.6563.5939-1.9901 1.9366-3.1944 3.9803-.0022.0033-.0045.0066-.0067.0111 0 0 0-.0022 0-.0033-.2177.3751-.4844.8605-.7623 1.4421-.0413.0837-.0837.1763-.1295.2745-.1172.2534-.2355.5223-.3527.807-.4721 1.1485-1.0503 2.5861-1.24 4.4992-.1664 1.6687.0323 2.9913.1384 3.565.039.2099.0837.414.1317.6161.1663.7188.3962 1.3896.6685 2.0113 1.297 3.008 3.4333 4.7492 3.7938 5.035 2.2781 1.8003 4.5807 2.3137 5.3151 2.4544 1.0414.1986 1.9354.2255 2.5805.2075 0-.0022-.001-.0056-.0022-.0078h.0089c-.0044-.0055-.0089-.0123-.0133-.0178-.1295-.4755-.2846-1.1676-.3594-2.0136-.2557-2.9019.6663-5.1376 1.1384-6.2504.3572-.8405 1.2334-2.8138 3.1007-4.6086.8706-.8371 1.8126-1.5123 2.7469-2.1251 1.0134-.6653 1.8997-1.1832 2.4053-1.5336.0167-.0101-.0168.01 0 0 .0189-.0123.0502-.0323.0659-.0446 1.7746-1.3126 5.2592-4.2737 7.0774-9.0442.2143-.5592.3806-1.1084.3806-1.1084.5704-1.7802 1.1318-4.5315.4398-7.6545z" fill="url(#a)"/><path d="m39.991 58.2023c-.6451.0179-1.5403-.0089-2.5805-.2075-.7345-.1406-3.0371-.6541-5.3152-2.4545-.4553-.3605-3.7435-3.0403-4.5951-7.6624-.1061-.5736-.3047-1.8963-.1384-3.565.1908-1.913.7679-3.3495 1.24-4.4991.4431-1.0793.9018-1.9354 1.2445-2.5247.1462.4084.3884.9833.7891 1.6095.8929 1.3963 1.9879 2.1396 2.8373 2.6977.3694.2422 2.095 1.3495 4.7068 1.9309 1.769.394 3.1665.3739 3.6398.3583 1.0614-.0334 2.7479-.2065 4.6599-.9487 1.1049-.4286 1.9968-.9554 2.5883-1.3248-.5067.3515-1.4421.9006-2.4555 1.5647-.9342.6128-1.8762 1.2881-2.7468 2.1252-1.8674 1.7948-2.7436 3.7681-3.1007 4.6086-.4732 1.1117-1.3941 3.3484-1.1385 6.2504.0759.8606.2356 1.5626.3661 2.0381z" fill="#ff9100"/><path d="m68.046 57.2869c.7903-1.5815 1.1362-3.2502 1.1362-3.2502.0881-.4252.2143-1.0525.2701-1.8327.0503-.6987.0179-1.836-.1495-2.7469-.5336-2.8907-2.7457-5.2324-2.9734-5.4679 0 0-1.4935-1.5482-3.6934-2.6096-.3225-.1552-.8785-.4253-1.6541-.6608-.7635-.2321-1.3863-.3247-2.0035-.414-.6541-.095-1.2055-.1406-1.6028-.1642.0937.0101.2244.0291.3773.0648.3605.0848.6138.2131.8114.3091.1842.0905.4631.2311.7702.4923.1249.1072.2801.24.434.4498.1262.1741.2914.4476.3796.8092.2657 1.0972-.404 2.1196-.6474 2.4913-1.7256 2.6352-11.0588 8.1289-16.5904 13.8313-1.4085 1.452-2.4087 2.7513-3.1553 4.4434-1.6855 3.8194-1.0827 7.3565-.9254 8.1713 1.0213 5.2973 4.8687 8.1657 5.7583 8.7953 2.7122-3.0315 5.1119-5.3453 6.8833-6.9604 4.4846-4.0873 10.3288-8.6054 10.3288-8.6054s4.4881-3.6275 6.2448-7.1445z" fill="url(#b)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path d="m23 23h50v50h-50z"/></clipPath><mask id="b" height="47" maskUnits="userSpaceOnUse" width="50" x="23" y="26"><path d="m23 26.3335h50v46.6667h-50z" fill="#fff"/></mask><mask id="c" height="60" maskUnits="userSpaceOnUse" width="85" x="16" y="26"><path d="m29.0016 85.7188-12.0297-25.3938 71.6188-33.9271 12.0293 25.3938z" fill="#fff"/></mask><mask id="d" height="48" maskUnits="userSpaceOnUse" width="79" x="22" y="26"><path d="m22.9871 73.0221 65.5932-46.6188 12.0297 25.3938z" fill="#fff"/></mask><mask id="e" height="60" maskUnits="userSpaceOnUse" width="65" x="19" y="17"><path d="m25.0646 76.1588-5.1505-5.6896 58.9161-53.3359 5.1505 5.6891z" fill="#fff"/></mask><mask id="f" height="57" maskUnits="userSpaceOnUse" width="62" x="22" y="17"><path d="m22.489 73.3142 56.3344-56.175 5.1505 5.6895z" fill="#fff"/></mask><mask id="g" height="59" maskUnits="userSpaceOnUse" width="69" x="19" y="19"><path d="m26.3713 77.2912-6.8396-8.4947 61.1875-49.2667 6.8396 8.4948z" fill="#fff"/></mask><mask id="h" height="55" maskUnits="userSpaceOnUse" width="66" x="22" y="19"><path d="m22.9517 73.0438 57.7578-53.5062 6.8396 8.4948z" fill="#fff"/></mask><path d="m0 0h96v96h-96z" fill="#000"/><g clip-path="url(#a)"><g mask="url(#b)"><g mask="url(#c)"><g mask="url(#d)"><path d="m29.0016 85.7188-12.0297-25.3938 71.6188-33.9271 12.0293 25.3938z" fill="#fc6c84"/></g></g></g><g mask="url(#e)"><g mask="url(#f)"><path d="m25.0646 76.1588-5.1505-5.6896 58.9161-53.3359 5.1505 5.6891z" fill="#fdffd9"/></g></g><g mask="url(#g)"><g mask="url(#h)"><path d="m26.3713 77.2912-6.8396-8.4947 61.1875-49.2667 6.8396 8.4948z" fill="#ffcc98"/></g></g></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><radialGradient id="a" cx="0" cy="0" gradientTransform="matrix(96.79554782 32.73185485 -262.20272286 775.39315499 9.528 39.018)" gradientUnits="userSpaceOnUse" r="1"><stop offset=".067" stop-color="#9168c0"/><stop offset=".343" stop-color="#5684d1"/><stop offset=".672" stop-color="#1ba1e3"/></radialGradient><clipPath id="b"><path d="m20 20h56v56h-56z"/></clipPath><path d="m0 0h96v96h-96z" fill="url(#a)"/><g clip-path="url(#b)"><path d="m76 48.056c-7.2653.4459-14.1169 3.5331-19.2639 8.6801s-8.2342 11.9986-8.6801 19.2639h-.112c-.4451-7.2656-3.5321-14.1175-8.6793-19.2647s-11.9991-8.2342-19.2647-8.6793v-.112c7.2656-.4451 14.1175-3.5321 19.2647-8.6793s8.2342-11.9991 8.6793-19.2647h.112c.4459 7.2653 3.5331 14.1169 8.6801 19.2639s11.9986 8.2342 19.2639 8.6801z" fill="#fff"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg fill="none" height="96" viewBox="0 0 96 96" width="96" xmlns="http://www.w3.org/2000/svg"><path d="m0 0h96v96h-96z" fill="#fff"/><path d="m70.3883 75.0937c2.7231-.5913 5.6118-2.2009 5.6118-2.2009l-5.0557-4.1648c-2.4993-2.0571-4.6266-4.5288-6.2898-7.3058-2.2981-3.8369-5.4734-7.0747-9.2639-9.4471l-1.8512-1.078c-.6343-.441-1.0765-1.1282-1.1394-1.9036-.0404-.4998.0795-.9468.3589-1.3401.964-1.3586 5.9461-7.2707 6.8592-8.0262 1.1758-.972 2.4861-1.7804 3.7016-2.706.1728-.1318.3464-.2629.5171-.3967.006-.0059.0146-.0106.0199-.0159.39-.3079.7581-.635 1.0507-1.023 1.0568-1.2236 1.3136-2.3055 1.3765-2.7842-.1431-.4608-.5694-1.4911-1.7578-2.6796.7448.0457 1.6466.6349 2.4642 1.3282.549-.8773 1.1236-1.8042 1.6977-2.7332.3833-.6203-.1855-1.0846-.2014-1.0991l-.0032-.0007-.0007-.0033c-.0146-.0159-.4787-.5847-1.0977-.2012-1.3236.819-2.6465 1.6386-3.8229 2.3835 0 0-1.3944-.0291-3.0456 1.3972-.3886.2932-.7157.6614-1.0229 1.0507-.006.006-.0113.0139-.016.0199-.1344.1701-.2654.3436-.3965.5171-.9263 1.2163-1.7339 2.526-2.706 3.7019-.7547.9138-6.6671 5.8955-8.0258 6.8595-.3932.2795-.8395.4-1.34.359-.7746-.0623-1.4626-.5052-1.9034-1.1396l-1.0779-1.8512c-2.3724-3.792-5.6099-6.9663-9.4467-9.2645-2.7767-1.6632-5.2476-3.7913-7.3055-6.2901l-4.1658-5.0559s-1.6102 2.8882-2.2008 5.6122c.8217.9991 2.9649 3.4786 5.4597 5.3724-2.6822-1.2614-4.6651-2.2367-6.229-3.0525-.241 1.7838-.147 4.4813.1013 6.5703 1.6931.741 4.5757 1.8824 7.5101 2.4889-2.3471.5489-4.922.6488-6.9101.6098.3502 1.2931.8375 2.6121 1.4929 3.939.2787.6138.5839 1.2129.9136 1.7996 1.0521.2894 5.1829.8913 7.381.3973-2.1869.7807-5.8581 2.0922-5.8581 2.0922 2.8197 3.5087 5.9362 6.363 5.9362 6.363 4.7406-2.5492 5.8211-2.8974 9.3765-5.2228-5.7575 4.6852-7.2518 6.5981-8.8681 8.5639l-1.1262 1.5805c-.5852.8211-1.0931 1.6931-1.5174 2.6075-1.4202 3.0557-3.4302 9.5669-3.4302 9.5669-.359 1.1349.4726 1.9665 1.5744 1.5746 0 0 6.5096-2.0103 9.5664-3.4305.9137-.4251 1.7869-.9329 2.6073-1.5176l1.5804-1.1262c.5303-.4364 1.0574-.8641 1.636-1.3687 0 0 3.9784 4.7137 8.0682 7.8143 0 0 1.3116-3.6714 2.0921-5.8584-.4945 2.1989.1073 6.3299.3973 7.3813.5853.3299 1.1859.635 1.7996.9138 1.3274.6562 2.6457 1.1428 3.9386 1.493-.0383-1.989.061-4.5633.6099-6.9105.6065 2.9345 1.7473 5.8181 2.4888 7.5105 2.0888.2482 4.7862.3423 6.5698.1013-.8157-1.5639-1.7909-3.5483-3.0522-6.2292 1.8935 2.4948 4.3731 4.6381 5.3722 5.4597z" fill="#000"/></svg>