@dyrected/admin 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/LICENSE.md +50 -0
  3. package/README.md +73 -0
  4. package/components.json +17 -0
  5. package/eslint.config.js +22 -0
  6. package/index.html +13 -0
  7. package/package.json +99 -0
  8. package/postcss.config.js +6 -0
  9. package/public/favicon.svg +1 -0
  10. package/public/icons.svg +24 -0
  11. package/src/App.css +184 -0
  12. package/src/App.tsx +25 -0
  13. package/src/assets/dyrected.svg +155 -0
  14. package/src/assets/hero.png +0 -0
  15. package/src/assets/react.svg +1 -0
  16. package/src/assets/vite.svg +1 -0
  17. package/src/components/auth/auth-gate.tsx +64 -0
  18. package/src/components/error-boundary.tsx +45 -0
  19. package/src/components/forms/field-renderer.tsx +111 -0
  20. package/src/components/forms/fields/block-builder.tsx +213 -0
  21. package/src/components/forms/fields/date-picker.tsx +60 -0
  22. package/src/components/forms/fields/json-editor.tsx +62 -0
  23. package/src/components/forms/fields/media-picker.tsx +286 -0
  24. package/src/components/forms/fields/multi-select.tsx +145 -0
  25. package/src/components/forms/fields/radio-field.tsx +51 -0
  26. package/src/components/forms/fields/relationship-picker.tsx +143 -0
  27. package/src/components/forms/fields/rich-text-editor.tsx +224 -0
  28. package/src/components/forms/fields/select-field.tsx +35 -0
  29. package/src/components/forms/fields/switch-field.tsx +16 -0
  30. package/src/components/forms/fields/text-area-field.tsx +15 -0
  31. package/src/components/forms/fields/text-field.tsx +24 -0
  32. package/src/components/forms/form-engine.tsx +87 -0
  33. package/src/components/forms/form-field-renderer.tsx +269 -0
  34. package/src/components/forms/utils.ts +97 -0
  35. package/src/components/layout/admin-shell.tsx +479 -0
  36. package/src/components/layout/branding-provider.tsx +112 -0
  37. package/src/components/live-preview/LivePreviewPane.tsx +128 -0
  38. package/src/components/media/focal-point-picker.tsx +66 -0
  39. package/src/components/media/media-card.tsx +44 -0
  40. package/src/components/media/media-grid.tsx +32 -0
  41. package/src/components/media/media-library-dialog.tsx +465 -0
  42. package/src/components/ui/aspect-ratio.tsx +7 -0
  43. package/src/components/ui/badge.tsx +36 -0
  44. package/src/components/ui/button.tsx +56 -0
  45. package/src/components/ui/calendar.tsx +214 -0
  46. package/src/components/ui/card.tsx +79 -0
  47. package/src/components/ui/checkbox.tsx +28 -0
  48. package/src/components/ui/command.tsx +151 -0
  49. package/src/components/ui/data-table.tsx +219 -0
  50. package/src/components/ui/dialog.tsx +122 -0
  51. package/src/components/ui/dropdown-menu.tsx +200 -0
  52. package/src/components/ui/form.tsx +178 -0
  53. package/src/components/ui/input.tsx +24 -0
  54. package/src/components/ui/label.tsx +24 -0
  55. package/src/components/ui/page-header.tsx +30 -0
  56. package/src/components/ui/pagination.tsx +57 -0
  57. package/src/components/ui/popover.tsx +29 -0
  58. package/src/components/ui/progress.tsx +26 -0
  59. package/src/components/ui/radio-group.tsx +42 -0
  60. package/src/components/ui/render-cell.tsx +110 -0
  61. package/src/components/ui/scroll-area.tsx +46 -0
  62. package/src/components/ui/select.tsx +160 -0
  63. package/src/components/ui/separator.tsx +29 -0
  64. package/src/components/ui/sheet.tsx +140 -0
  65. package/src/components/ui/sidebar.tsx +771 -0
  66. package/src/components/ui/skeleton.tsx +15 -0
  67. package/src/components/ui/sonner.tsx +27 -0
  68. package/src/components/ui/switch.tsx +27 -0
  69. package/src/components/ui/table.tsx +117 -0
  70. package/src/components/ui/tabs.tsx +53 -0
  71. package/src/components/ui/textarea.tsx +22 -0
  72. package/src/components/ui/toggle.tsx +43 -0
  73. package/src/components/ui/tooltip.tsx +28 -0
  74. package/src/hooks/use-mobile.tsx +19 -0
  75. package/src/hooks/use-preferences.ts +56 -0
  76. package/src/index.css +111 -0
  77. package/src/index.tsx +198 -0
  78. package/src/lib/utils.ts +32 -0
  79. package/src/main.tsx +10 -0
  80. package/src/pages/auth/first-user-page.tsx +115 -0
  81. package/src/pages/auth/login-page.tsx +91 -0
  82. package/src/pages/collections/edit-page.tsx +280 -0
  83. package/src/pages/collections/list-page.tsx +343 -0
  84. package/src/pages/dashboard/dashboard.tsx +150 -0
  85. package/src/pages/globals/editor-page.tsx +122 -0
  86. package/src/pages/media/media-page.tsx +564 -0
  87. package/src/pages/setup/setup-prompt.tsx +152 -0
  88. package/src/providers/dyrected-provider.tsx +122 -0
  89. package/src/providers/query-provider.tsx +19 -0
  90. package/src/types/jexl.d.ts +11 -0
  91. package/tailwind.config.ts +102 -0
  92. package/tsconfig.app.json +29 -0
  93. package/tsconfig.json +12 -0
  94. package/tsconfig.node.json +27 -0
  95. package/vite.config.ts +36 -0
@@ -0,0 +1,155 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="75 408 880 200" width="1024" height="320">
3
+ <path d="M0 0 C80.77777778 0 80.77777778 0 104.25 16.25 C110.41149028 22.41149028 115.8130796 29.84774381 119 38 C119.37125 38.93457031 119.7425 39.86914062 120.125 40.83203125 C125.97853191 57.96580693 124.38837118 76.7725057 116.9375 93.0625 C109.56325726 107.53398146 97.58992255 116.7156145 82.375 121.875 C71.26222779 125.44607062 60.56671647 126.28755488 48.92578125 126.1953125 C47.67873413 126.19329834 46.43168701 126.19128418 45.14685059 126.18920898 C40.53536241 126.17882812 35.9239271 126.15090625 31.3125 126.125 C20.979375 126.08375 10.64625 126.0425 0 126 C0 84.42 0 42.84 0 0 Z " fill="#2E383A" transform="translate(94,437)"/>
4
+ <path d="M0 0 C2.71975521 0.35943901 3.84341638 0.83999752 5.7890625 2.828125 C6.39492188 3.62734375 7.00078125 4.4265625 7.625 5.25 C8.3159375 6.14847656 9.006875 7.04695313 9.71875 7.97265625 C10.4715625 8.97167969 11.224375 9.97070312 12 11 C13.27334297 12.66801941 14.55020731 14.33328608 15.828125 15.99780273 C16.68920631 17.1197048 17.54859726 18.24290639 18.40625 19.36743164 C20.72359821 22.39401514 23.10162467 25.33084868 25.625 28.1875 C28 31 28 31 28 33 C24.04 33 20.08 33 16 33 C16 36.96 16 40.92 16 45 C23.92 45 31.84 45 40 45 C40 52.26 40 59.52 40 67 C32.08 67 24.16 67 16 67 C16.05110565 73.01513491 16.11411805 79.02770699 16.20751953 85.04199219 C16.23569066 87.08650395 16.25692435 89.13112384 16.27099609 91.17578125 C16.29247887 94.12035322 16.3391569 97.06363041 16.390625 100.0078125 C16.39185364 100.9174173 16.39308228 101.82702209 16.39434814 102.76419067 C16.52453003 108.44478815 17.27045802 111.64305028 21 116 C25.45146778 118.22573389 31.49130269 117.61284521 36.22265625 116.45703125 C43.02192732 113.57781706 47.39900966 107.25297069 51.15625 101.109375 C56.12293503 93.05732503 66.02505874 86.96170223 75 84.4375 C75.99 84.2209375 75.99 84.2209375 77 84 C77.76934372 83.82831802 78.53868744 83.65663605 79.3313446 83.47975159 C81.85956507 83.02524638 84.13490112 82.87925324 86.69848633 82.88647461 C88.0493206 82.88658791 88.0493206 82.88658791 89.42744446 82.88670349 C90.3859581 82.89186478 91.34447174 82.89702606 92.33203125 82.90234375 C93.32377853 82.9037587 94.31552582 82.90517365 95.33732605 82.90663147 C98.49574843 82.91221582 101.65409915 82.92476548 104.8125 82.9375 C106.95768127 82.94251702 109.10286365 82.94707958 111.24804688 82.95117188 C116.49872224 82.96218012 121.749356 82.9789027 127 83 C126.41627107 81.40206803 125.81844039 79.8092836 125.21484375 78.21875 C124.88347412 77.33123047 124.55210449 76.44371094 124.21069336 75.52929688 C121.96215073 70.83179705 118.27353717 68.10625131 113.671875 65.8671875 C107.40145998 63.8320528 99.62475654 63.83565488 93.5625 66.5625 C90.74762291 68.18758368 89.23412527 69.92734346 87.375 72.5625 C83.79694231 77.15174791 79.16997757 77.25826651 73.6875 78.1875 C67.93513917 79.45496934 63.11247292 82.15885793 58 85 C56.67024353 85.67377293 55.33832199 86.34340541 54 87 C54.53283313 74.23864658 59.85622582 63.62873005 69.125 54.8125 C79.48783101 46.05739319 90.98874912 42.60318009 104.3125 42.6875 C105.24167236 42.69313965 106.17084473 42.6987793 107.12817383 42.70458984 C120.80891332 42.94676927 132.08138441 47.30179809 142 57 C150.69408674 67.01964256 154.41434505 78.42703622 154.12890625 91.5 C154.11960083 92.32242188 154.11029541 93.14484375 154.10070801 93.9921875 C154.07669258 95.99492902 154.03971288 97.99750824 154 100 C153.20788116 100.00142502 152.41576233 100.00285004 151.59963989 100.00431824 C144.09719277 100.0222236 136.5954255 100.06405798 129.09327888 100.13209057 C125.23723861 100.16623308 121.38158914 100.19145048 117.52539062 100.19555664 C113.79674299 100.1998673 110.06897502 100.22855506 106.34060287 100.27343178 C104.9254661 100.2863193 103.51022356 100.29074578 102.09503555 100.28615379 C90.97909255 100.25851196 82.24496399 102.13674731 74 110 C72.693186 111.68664002 71.44412084 113.4192826 70.25 115.1875 C60.98713546 128.13484969 49.31550166 137.60492408 33.359375 140.6015625 C22.09111259 141.93803083 11.94495066 141.67673859 1.8125 136.3125 C-6.21093351 129.71545467 -11.15550672 122.32419258 -13 112 C-13.25198192 108.45441218 -13.23420464 104.92803422 -13.1953125 101.375 C-13.1924826 100.38749756 -13.18965271 99.39999512 -13.18673706 98.38256836 C-13.1756182 95.25491785 -13.15052916 92.12756272 -13.125 89 C-13.11495948 86.86849374 -13.10583551 84.73698296 -13.09765625 82.60546875 C-13.07570607 77.4035335 -13.04123391 72.20181669 -13 67 C-17.95 67 -22.9 67 -28 67 C-28 59.74 -28 52.48 -28 45 C-25.11584117 43.55792059 -22.58278472 43.90605113 -19.375 43.9375 C-18.18648437 43.94652344 -16.99796875 43.95554687 -15.7734375 43.96484375 C-14.85820313 43.97644531 -13.94296875 43.98804688 -13 44 C-13 40.37 -13 36.74 -13 33 C-16.63 33 -20.26 33 -24 33 C-22.47026072 29.1756518 -21.7364866 27.36138218 -19.27734375 24.43359375 C-18.74262451 23.78841797 -18.20790527 23.14324219 -17.65698242 22.47851562 C-16.80583862 21.46821289 -16.80583862 21.46821289 -15.9375 20.4375 C-10.41141017 13.76832013 -5.12012996 6.98560367 0 0 Z " fill="#FCB149" transform="translate(660,423)"/>
5
+ <path d="M0 0 C9.57 0 19.14 0 29 0 C29.59839035 22.9781895 28.74526871 40.62390375 12.65625 58.3359375 C11 60 11 60 8.4375 62 C5.46025693 64.44286611 3.51309236 67.23700629 1.33203125 70.390625 C0.89246094 70.92171875 0.45289063 71.4528125 0 72 C-0.66 72 -1.32 72 -2 72 C-2.93987733 70.55661697 -3.87796552 69.11202069 -4.8046875 67.66015625 C-8.25891165 62.86262271 -12.44079328 60.54083019 -18 59 C-25.38567118 58.11965024 -31.79640485 58.30895235 -38.12890625 62.45703125 C-43.93075089 67.24143341 -46.08004443 72.64035542 -47 80 C-47.62384022 87.86038675 -46.29060096 95.4983732 -41.375 101.875 C-36.78559554 106.66837799 -31.1204383 109.16020416 -24.5 109.4375 C-17.63097442 109.06652475 -10.76252345 107.03884639 -5.6171875 102.3203125 C-2.88904376 98.40601931 -1.66280214 93.9535236 -0.1809082 89.45141602 C3.35486261 78.72166264 8.74872668 71.79757179 16.88671875 64.08325195 C20.82961215 60.32870988 23.90074122 56.47544342 27 52 C27.33 52 27.66 52 28 52 C28 78.4 28 104.8 28 132 C19.42 132 10.84 132 2 132 C2 128.37 2 124.74 2 121 C1.34 121 0.68 121 0 121 C-0.495 122.485 -0.495 122.485 -1 124 C-12.73711711 132.94256542 -25.06338231 134.43156199 -39.3125 132.56640625 C-51.92494538 129.92239101 -62.18469132 122.09849232 -69.1875 111.4375 C-76.64035884 98.17021241 -78.4709381 82.69085036 -74.375 68.0625 C-69.54605076 54.5211808 -61.09321667 44.22524607 -48 38 C-41.32156484 35.17823273 -35.2722462 34.50746377 -28.0625 34.5625 C-27.13759766 34.54251953 -26.21269531 34.52253906 -25.25976562 34.50195312 C-15.04309922 34.50911267 -8.83524108 37.47063244 -1 44 C-0.67 29.48 -0.34 14.96 0 0 Z " fill="#2E3739" transform="translate(902,431)"/>
6
+ <path d="M0 0 C1.98755052 1.41100915 3.72130576 2.89802373 5.484375 4.578125 C6.38349609 5.34576172 6.38349609 5.34576172 7.30078125 6.12890625 C15.92373572 13.93240069 20.74453573 25.07362429 21.484375 36.578125 C21.60509121 40.91384903 21.70071786 45.24490485 21.484375 49.578125 C20.484375 50.578125 20.484375 50.578125 17.63072205 50.69837952 C16.35387039 50.69615891 15.07701874 50.69393829 13.76147461 50.69165039 C13.0590715 50.69179642 12.3566684 50.69194244 11.63298035 50.6920929 C9.30086222 50.69139372 6.968823 50.68360117 4.63671875 50.67578125 C3.02389062 50.67391708 1.41106193 50.67249318 -0.20176697 50.67149353 C-4.45477857 50.66766823 -8.70775624 50.65783785 -12.96075439 50.64678955 C-17.2973993 50.63657569 -21.63404967 50.63199596 -25.97070312 50.62695312 C-34.48569269 50.61621559 -43.00065463 50.59913903 -51.515625 50.578125 C-50.76310085 52.01068418 -50.00072966 53.43807287 -49.234375 54.86328125 C-48.81091797 55.65871338 -48.38746094 56.45414551 -47.95117188 57.27368164 C-44.77728619 62.36863181 -40.24267716 65.83885608 -34.515625 67.578125 C-24.44648111 68.75306138 -13.88210791 68.97920567 -5.515625 62.578125 C-4.49191978 61.60240597 -3.48336669 60.60937474 -2.515625 59.578125 C0.41667693 60.89933328 2.47102399 62.32450697 4.71875 64.6171875 C5.29238281 65.19726562 5.86601562 65.77734375 6.45703125 66.375 C7.04355469 66.97828125 7.63007813 67.5815625 8.234375 68.203125 C8.83636719 68.81414062 9.43835938 69.42515625 10.05859375 70.0546875 C11.53842805 71.55801124 13.01202176 73.06747356 14.484375 74.578125 C6.88082899 84.58279081 -3.31152864 89.39611981 -15.515625 91.578125 C-19.0759833 91.8143607 -22.63564692 91.80900924 -26.203125 91.828125 C-27.61754883 91.8590625 -27.61754883 91.8590625 -29.06054688 91.890625 C-43.17549414 91.96823296 -55.10728015 86.56442315 -65.26171875 76.88671875 C-75.61516851 66.28205877 -79.89439154 53.46530582 -79.73046875 38.73046875 C-78.80311822 25.12370731 -72.27652509 13.81184063 -62.515625 4.578125 C-45.29287927 -9.47756591 -19.26149726 -10.88693323 0 0 Z " fill="#2E3739" transform="translate(493.515625,472.421875)"/>
7
+ <path d="M0 0 C9.57 0 19.14 0 29 0 C31.88545714 6.3480057 34.74623297 12.64267461 37.375 19.08984375 C37.66681152 19.80048477 37.95862305 20.51112579 38.25927734 21.24330139 C39.17479456 23.47391024 40.08751229 25.70565039 41 27.9375 C41.60917627 29.42390959 42.2185503 30.91023814 42.828125 32.39648438 C43.27551025 33.48759018 43.27551025 33.48759018 43.73193359 34.60073853 C44.32289018 36.04103366 44.91435386 37.48112086 45.50634766 38.92098999 C46.83058613 42.14243669 48.14705044 45.36608605 49.4453125 48.59814453 C49.87585938 49.6601709 50.30640625 50.72219727 50.75 51.81640625 C51.11609375 52.7297876 51.4821875 53.64316895 51.859375 54.58422852 C52.99948383 56.99890679 54.32194326 58.93105971 56 61 C63.85224401 42.59935141 63.85224401 42.59935141 71.375 24.0625 C74.61034321 15.88404588 78.06515289 7.86969422 82 0 C90.91 0 99.82 0 109 0 C105.62156917 11.2614361 105.62156917 11.2614361 103.94921875 15.33203125 C103.57990234 16.23373047 103.21058594 17.13542969 102.83007812 18.06445312 C102.45302734 18.97130859 102.07597656 19.87816406 101.6875 20.8125 C101.13932617 22.15538086 101.13932617 22.15538086 100.58007812 23.52539062 C98.52888864 28.50280206 96.36531611 33.41002468 94.08984375 38.2890625 C91.12034683 44.67044212 88.37355778 51.13053761 85.67678833 57.63122559 C84.27693812 61.00305678 82.86621358 64.37034217 81.45703125 67.73828125 C81.17043137 68.42368988 80.88383148 69.10909851 80.58854675 69.8152771 C77.59723903 76.96761949 74.59243132 84.11392962 71.5625 91.25 C71.09118652 92.37220947 70.61987305 93.49441895 70.13427734 94.65063477 C64.14372759 108.71158026 57.88097216 122.54500294 43.26171875 129.16015625 C32.99566383 132.97224918 18.99532524 132.39132855 9 128 C6.27254605 126.74842163 3.64641133 125.4212209 1 124 C1.6411928 121.09325931 2.56662682 118.57468666 3.84765625 115.890625 C4.38422852 114.75947266 4.38422852 114.75947266 4.93164062 113.60546875 C5.30482422 112.82816406 5.67800781 112.05085937 6.0625 111.25 C6.62807617 110.06083984 6.62807617 110.06083984 7.20507812 108.84765625 C8.13345839 106.89688254 9.06629544 104.94823094 10 103 C12.57030771 104.02467879 15.13501673 105.05651863 17.6875 106.125 C23.13926051 107.56508768 28.53393046 107.91137353 33.875 105.9375 C36.67992585 103.3800676 38.90092755 100.67546954 40 97 C39.51255272 92.02739581 37.81323979 87.84336435 35.75390625 83.34765625 C35.42739075 82.61970352 35.10087524 81.89175079 34.76446533 81.14173889 C34.06574374 79.58604999 33.36386031 78.03177798 32.65908813 76.4788208 C31.54929238 74.03339714 30.44768068 71.58443912 29.34838867 69.13427734 C28.24699442 66.67954634 27.14520032 64.22500817 26.04084778 61.77160645 C22.05427867 52.9145598 18.19057599 44.00588863 14.33935547 35.08935547 C13.03927819 32.09059902 11.73151205 29.09532776 10.42124939 26.10101318 C9.20378396 23.3178069 7.98924352 20.53332878 6.7749939 17.74871826 C6.17859872 16.3828194 5.58097738 15.01745522 4.98208618 13.65264893 C4.14875742 11.75295298 3.31997874 9.85133284 2.4921875 7.94921875 C2.01120605 6.84924561 1.53022461 5.74927246 1.03466797 4.6159668 C0 2 0 2 0 0 Z " fill="#2E3839" transform="translate(224,467)"/>
8
+ <path d="M0 0 C4.6456294 3.80490916 8.23887006 7.95463812 10.84375 13.40234375 C10.84375 14.06234375 10.84375 14.72234375 10.84375 15.40234375 C0.44875 20.84734375 0.44875 20.84734375 -10.15625 26.40234375 C-15.15625 22.40234375 -15.15625 22.40234375 -17.59375 19.83984375 C-23.69448695 14.03670372 -29.49135908 13.8685058 -37.5859375 14.05859375 C-44.66458696 14.74012674 -48.35592604 18.17840756 -52.89453125 23.42578125 C-57.35750661 30.4173154 -57.05559365 39.03898526 -55.7265625 46.96484375 C-53.69407611 54.19146201 -49.25238278 59.49703127 -42.90625 63.40234375 C-35.21481566 65.45339291 -27.19943303 65.45458604 -20.15625 61.40234375 C-17.38502725 59.04807876 -17.38502725 59.04807876 -15.15625 56.40234375 C-13.82291667 55.06901042 -12.48958333 53.73567708 -11.15625 52.40234375 C-3.48829498 54.74171986 3.61512274 57.95003181 10.84375 61.40234375 C9.71301894 68.83286216 5.25630274 73.41753074 -0.15625 78.40234375 C-14.27515309 88.65893292 -29.58374274 90.22229359 -46.59375 87.94140625 C-59.50522416 84.75107107 -71.47879005 76.68814229 -78.59375 65.40234375 C-85.12640699 53.53652894 -87.70329542 38.76522142 -84.28515625 25.4921875 C-81.80476638 18.01848819 -78.48663047 12.17115378 -73.15625 6.40234375 C-72.35574219 5.46648437 -72.35574219 5.46648437 -71.5390625 4.51171875 C-54.14361329 -14.63159857 -19.9950983 -14.8152087 0 0 Z " fill="#2E3739" transform="translate(612.15625,475.59765625)"/>
9
+ <path d="M0 0 C0.92917236 0.00563965 1.85834473 0.0112793 2.81567383 0.01708984 C16.49641332 0.25926927 27.76888441 4.61429809 37.6875 14.3125 C46.38158674 24.33214256 50.10184505 35.73953622 49.81640625 48.8125 C49.80710083 49.63492188 49.79779541 50.45734375 49.78820801 51.3046875 C49.76419258 53.30742902 49.72721288 55.31000824 49.6875 57.3125 C48.89538116 57.31392502 48.10326233 57.31535004 47.28713989 57.31681824 C39.78469277 57.3347236 32.2829255 57.37655798 24.78077888 57.44459057 C20.92473861 57.47873308 17.06908914 57.50395048 13.21289062 57.50805664 C9.48424299 57.5123673 5.75647502 57.54105506 2.02810287 57.58593178 C0.6129661 57.5988193 -0.80227644 57.60324578 -2.21746445 57.59865379 C-13.33340745 57.57101196 -22.06753601 59.44924731 -30.3125 67.3125 C-31.619314 68.99914002 -32.86837916 70.7317826 -34.0625 72.5 C-39.27138551 79.83175205 -44.31888353 86.93254032 -53.3125 89.3125 C-59.27605196 89.97511688 -63.4418563 88.64128375 -68.3125 85.3125 C-71.47815211 82.38915707 -73.44158139 79.56624985 -74.3125 75.3125 C-73.64863281 75.07015625 -72.98476563 74.8278125 -72.30078125 74.578125 C-70.97626953 74.07539062 -70.97626953 74.07539062 -69.625 73.5625 C-68.31982422 73.07523438 -68.31982422 73.07523438 -66.98828125 72.578125 C-61.914668 70.17834297 -58.99832299 67.14164616 -55.97827148 62.4387207 C-49.17329509 51.85146005 -39.91704612 44.06974446 -27.3125 41.3125 C-26.54315628 41.14081802 -25.77381256 40.96913605 -24.9811554 40.79225159 C-22.45293493 40.33774638 -20.17759888 40.19175324 -17.61401367 40.19897461 C-16.2631794 40.19908791 -16.2631794 40.19908791 -14.88505554 40.19920349 C-13.44728508 40.20694542 -13.44728508 40.20694542 -11.98046875 40.21484375 C-10.49284782 40.21696617 -10.49284782 40.21696617 -8.97517395 40.21913147 C-5.81675157 40.22471582 -2.65840085 40.23726548 0.5 40.25 C2.64518127 40.25501702 4.79036365 40.25957958 6.93554688 40.26367188 C12.18622224 40.27468012 17.436856 40.2914027 22.6875 40.3125 C22.10377107 38.71456803 21.50594039 37.1217836 20.90234375 35.53125 C20.57097412 34.64373047 20.23960449 33.75621094 19.89819336 32.84179688 C17.64965073 28.14429705 13.96103717 25.41875131 9.359375 23.1796875 C3.08895998 21.1445528 -4.68774346 21.14815488 -10.75 23.875 C-13.56487709 25.50008368 -15.07837473 27.23984346 -16.9375 29.875 C-20.51555769 34.46424791 -25.14252243 34.57076651 -30.625 35.5 C-36.37736083 36.76746934 -41.20002708 39.47135793 -46.3125 42.3125 C-47.64225647 42.98627293 -48.97417801 43.65590541 -50.3125 44.3125 C-49.77966687 31.55114658 -44.45627418 20.94123005 -35.1875 12.125 C-24.82466899 3.36989319 -13.32375088 -0.08431991 0 0 Z " fill="#2D3638" transform="translate(764.3125,465.6875)"/>
10
+ <path d="M0 0 C44.84375 0 44.84375 0 55 10 C63.50692661 20.10567615 66.02395277 31.00367642 65 44 C63.92164324 52.75980221 59.27536689 61.86408571 53 68 C36.90761972 79.76525518 20.54677762 76 0 76 C0 50.92 0 25.84 0 0 Z " fill="#ffffff" transform="translate(123,462)"/>
11
+ <path d="M0 0 C0 8.58 0 17.16 0 26 C-2.475 26.0825 -4.95 26.165 -7.5 26.25 C-15.58592043 26.68028387 -20.78770187 28.00185508 -26.8125 33.625 C-32.18698591 40.84882192 -32.45755497 50.04763218 -32.51171875 58.6953125 C-32.52966995 59.76876923 -32.54762115 60.84222595 -32.56611633 61.94821167 C-32.61983039 65.34043577 -32.65398988 68.73252235 -32.6875 72.125 C-32.72070741 74.44012315 -32.75520018 76.75522823 -32.79101562 79.0703125 C-32.87792806 84.71355721 -32.93833073 90.35619859 -33 96 C-42.24 96 -51.48 96 -61 96 C-61.11629021 91.57321943 -61.21532635 87.15195899 -61.2746582 82.72485352 C-61.29944483 81.22662179 -61.33328586 79.72850609 -61.37719727 78.23071289 C-61.84659218 61.77980184 -58.18723461 49.29745852 -47.64160156 36.32958984 C-46.11388537 34.44998397 -44.58793536 32.56895731 -43.0625 30.6875 C-42.54276611 30.05078369 -42.02303223 29.41406738 -41.48754883 28.75805664 C-38.17466035 24.64362091 -35.32555694 20.47816771 -32.625 15.9375 C-27.24219449 6.99173768 -23.75743907 3.76906718 -13.609375 0.6640625 C-10 0 -10 0 0 0 Z " fill="#2E373A" transform="translate(406,466)"/>
12
+ <path d="M0 0 C5.66129431 4.69766975 10.85228904 9.74723372 16 15 C11.92304775 22.70385133 4.05433775 27.16606635 -4 30 C-19.29250715 34.53548448 -36.16315756 33.34402642 -50.4140625 26.31640625 C-58.66486514 21.8238732 -58.66486514 21.8238732 -59.77929688 19.08422852 C-60 17 -60 17 -57.796875 13.87109375 C-56.79405635 12.71532531 -55.77778517 11.57112409 -54.75 10.4375 C-54.24597656 9.86064453 -53.74195313 9.28378906 -53.22265625 8.68945312 C-50.89341628 6.03925489 -48.51068548 3.47978615 -46 1 C-42.31120701 2.80247839 -38.77349917 4.8276212 -35.21875 6.87890625 C-27.51820571 10.76985028 -18.90673806 9.19207078 -10.88671875 7.06640625 C-6.60864698 5.48600897 -3.35300014 3.04728542 0 0 Z " fill="#2E3739" transform="translate(791,532)"/>
13
+ <path d="M0 0 C4.56326885 2.95860288 8.00828055 6.6679148 9.9375 11.8125 C9.9375 13.4625 9.9375 15.1125 9.9375 16.8125 C-4.9125 16.8125 -19.7625 16.8125 -35.0625 16.8125 C-33.85907282 9.59193695 -31.77484523 5.59340843 -25.8984375 1.19140625 C-17.83251928 -3.44583989 -8.3946856 -4.34922034 0 0 Z " fill="#ffffff" transform="translate(477.0625,489.1875)"/>
14
+ <path d="M0 0 C2.71975521 0.35943901 3.84341638 0.83999752 5.7890625 2.828125 C6.39492188 3.62734375 7.00078125 4.4265625 7.625 5.25 C8.3159375 6.14847656 9.006875 7.04695313 9.71875 7.97265625 C10.4715625 8.97167969 11.224375 9.97070312 12 11 C13.27334297 12.66801941 14.55020731 14.33328608 15.828125 15.99780273 C16.68920631 17.1197048 17.54859726 18.24290639 18.40625 19.36743164 C20.72359821 22.39401514 23.10162467 25.33084868 25.625 28.1875 C28 31 28 31 28 33 C24.04 33 20.08 33 16 33 C16 36.96 16 40.92 16 45 C15.01 44.505 15.01 44.505 14 44 C13.5859375 41.27734375 13.5859375 41.27734375 13.375 37.9375 C13.30023437 36.83277344 13.22546875 35.72804688 13.1484375 34.58984375 C13.09945312 33.73519531 13.05046875 32.88054687 13 32 C14.134375 31.54625 15.26875 31.0925 16.4375 30.625 C20.04721692 29.42904194 20.04721692 29.42904194 21 27 C20.34 27 19.68 27 19 27 C18.608125 25.9275 18.21625 24.855 17.8125 23.75 C16.27259896 20.08533167 14.21849461 18.3486312 11 16 C11 15.34 11 14.68 11 14 C10.34 14 9.68 14 9 14 C7.4921875 12.25 7.4921875 12.25 5.875 10 C5.33617187 9.2575 4.79734375 8.515 4.2421875 7.75 C3.83226562 7.1725 3.42234375 6.595 3 6 C-3.93710167 9.15322803 -9.63269943 14.06474733 -12.375 21.25 C-12.63023437 22.05953125 -12.88546875 22.8690625 -13.1484375 23.703125 C-14.07536523 26.20327869 -15.31553255 27.94852568 -17 30 C-15.02 30.33 -13.04 30.66 -11 31 C-9.51119807 35.4664058 -9.31090749 39.30056546 -11.09765625 43.70703125 C-13 46 -13 46 -16.13671875 46.48828125 C-19.42447917 46.32552083 -22.71223958 46.16276042 -26 46 C-26 52.27 -26 58.54 -26 65 C-24.1025 64.95875 -22.205 64.9175 -20.25 64.875 C-16.10895658 64.78497732 -13.61590012 65.02831107 -10 67 C-9.98786972 67.91628929 -9.98786972 67.91628929 -9.97549438 68.85108948 C-9.88922875 75.22686062 -9.78971604 81.60232871 -9.68261719 87.9777832 C-9.644408 90.35500995 -9.60954125 92.73229292 -9.578125 95.10961914 C-9.53229961 98.53291881 -9.47433332 101.95583411 -9.4140625 105.37890625 C-9.40251129 106.43646622 -9.39096008 107.49402618 -9.37905884 108.58363342 C-9.26966133 114.09218328 -8.82932532 118.79123684 -7 124 C-6.34 124 -5.68 124 -5 124 C-4.9071875 124.928125 -4.9071875 124.928125 -4.8125 125.875 C-4.19124685 128.2501999 -4.19124685 128.2501999 -1.625 129.0625 C-0.75875 129.371875 0.1075 129.68125 1 130 C2.6875 131.5625 2.6875 131.5625 4 133 C4.66 133.33 5.32 133.66 6 134 C6.625 136.0625 6.625 136.0625 7 138 C0.64042919 136.72808584 -3.00409013 132.83266023 -7 128 C-12.40978943 119.7580267 -13.30059906 110.99356957 -13.1953125 101.375 C-13.1924826 100.38749756 -13.18965271 99.39999512 -13.18673706 98.38256836 C-13.1756182 95.25491785 -13.15052916 92.12756272 -13.125 89 C-13.11495948 86.86849374 -13.10583551 84.73698296 -13.09765625 82.60546875 C-13.07570607 77.4035335 -13.04123391 72.20181669 -13 67 C-17.95 67 -22.9 67 -28 67 C-28 59.74 -28 52.48 -28 45 C-25.11584117 43.55792059 -22.58278472 43.90605113 -19.375 43.9375 C-18.18648437 43.94652344 -16.99796875 43.95554687 -15.7734375 43.96484375 C-14.85820313 43.97644531 -13.94296875 43.98804688 -13 44 C-13 40.37 -13 36.74 -13 33 C-16.63 33 -20.26 33 -24 33 C-22.47026072 29.1756518 -21.7364866 27.36138218 -19.27734375 24.43359375 C-18.74262451 23.78841797 -18.20790527 23.14324219 -17.65698242 22.47851562 C-16.80583862 21.46821289 -16.80583862 21.46821289 -15.9375 20.4375 C-10.41141017 13.76832013 -5.12012996 6.98560367 0 0 Z " fill="#EBBE76" transform="translate(660,423)"/>
15
+ <path d="M0 0 C0.68078561 10.15126993 -6.26162995 18.50517827 -12.625 25.8125 C-13.10155029 26.35165039 -13.57810059 26.89080078 -14.0690918 27.44628906 C-17.57519453 31.41656971 -20.32199043 35.44738374 -23 40 C-23.33 40 -23.66 40 -24 40 C-24 27.13 -24 14.26 -24 1 C-20.225625 0.835 -16.45125 0.67 -12.5625 0.5 C-11.37084229 0.44779297 -10.17918457 0.39558594 -8.95141602 0.34179688 C-7.55427368 0.28088867 -7.55427368 0.28088867 -6.12890625 0.21875 C-5.17056885 0.17685547 -4.21223145 0.13496094 -3.22485352 0.09179688 C-1 0 -1 0 0 0 Z " fill="#2C3537" transform="translate(369,467)"/>
16
+ <path d="M0 0 C2.00720923 0.28674418 4.0085944 0.61866701 6 1 C6.495 2.485 6.495 2.485 7 4 C7.66 4 8.32 4 9 4 C9.495 5.98 9.495 5.98 10 8 C10.66 8 11.32 8 12 8 C12.474375 8.639375 12.94875 9.27875 13.4375 9.9375 C14.9091365 12.28372963 14.9091365 12.28372963 18 13 C18.495 15.97 18.495 15.97 19 19 C19.66 19 20.32 19 21 19 C22.0625 20.8125 22.0625 20.8125 23 23 C22.505 24.485 22.505 24.485 22 26 C21.3709375 25.17757813 20.741875 24.35515625 20.09375 23.5078125 C17.8531051 20.58200082 15.60149285 17.6647905 13.34716797 14.74951172 C12.10990021 13.14272289 10.88443769 11.52686179 9.66015625 9.91015625 C8.96792969 9.01167969 8.27570312 8.11320312 7.5625 7.1875 C6.63630859 5.97126953 6.63630859 5.97126953 5.69140625 4.73046875 C5.13324219 4.15941406 4.57507813 3.58835937 4 3 C3.01 3 2.02 3 1 3 C-1.1667738 5.33134682 -1.1667738 5.33134682 -3.375 8.4375 C-4.25611385 9.62008724 -5.13764692 10.80236221 -6.01953125 11.984375 C-6.49342285 12.62568359 -6.96731445 13.26699219 -7.45556641 13.92773438 C-9.12007314 16.16110984 -10.81214938 18.37132519 -12.51171875 20.578125 C-13.10098145 21.34326416 -13.69024414 22.10840332 -14.29736328 22.89672852 C-15.46363033 24.41029473 -16.62997013 25.92380488 -17.79638672 27.43725586 C-18.32893066 28.13214111 -18.86147461 28.82702637 -19.41015625 29.54296875 C-19.88590088 30.16196045 -20.36164551 30.78095215 -20.85180664 31.41870117 C-22.07331217 33.0102519 -22.07331217 33.0102519 -23 35 C-19.37 35 -15.74 35 -12 35 C-12 38.63 -12 42.26 -12 46 C-16.95 46.33 -21.9 46.66 -27 47 C-27 54.26 -27 61.52 -27 69 C-22.05 69 -17.1 69 -12 69 C-11.98541748 70.31081543 -11.97083496 71.62163086 -11.95581055 72.97216797 C-11.89747545 77.87396394 -11.82024648 82.77531735 -11.73754883 87.67675781 C-11.70446426 89.7909421 -11.67638204 91.90521123 -11.65356445 94.01953125 C-11.61971392 97.07328159 -11.56738455 100.12626594 -11.51171875 103.1796875 C-11.50532883 104.11239471 -11.4989389 105.04510193 -11.49235535 106.006073 C-11.26437364 116.37399184 -8.63724873 126.05256773 -1.3671875 133.72265625 C6.92807918 141.29255208 16.09690889 142.40300166 27.015625 142.2109375 C37.64372477 141.64827339 45.9753421 138.49041118 55 133 C55.66 132.67 56.32 132.34 57 132 C56.17631135 135.60363786 54.73164913 137.5598772 51.8125 139.6875 C43.36448472 144.51927852 32.57412865 144.15231016 23.0625 144.25 C22.03491577 144.2641394 22.03491577 144.2641394 20.98657227 144.27856445 C16.010662 144.24659412 11.7517971 143.33793617 7 142 C6.67 142.66 6.34 143.32 6 144 C6 143.34 6 142.68 6 142 C5.2575 141.731875 4.515 141.46375 3.75 141.1875 C1.10938051 140.04723249 -0.85552844 138.90619694 -3 137 C-3 136.34 -3 135.68 -3 135 C-4.32 134.67 -5.64 134.34 -7 134 C-7.495 132.02 -7.495 132.02 -8 130 C-8.66 130 -9.32 130 -10 130 C-13.3917714 117.17092103 -13.35377076 104.75435973 -13.1875 91.5625 C-13.17241597 89.4629003 -13.15873419 87.36329003 -13.14648438 85.26367188 C-13.1137965 80.17551518 -13.0622224 75.0878777 -13 70 C-17.95 70 -22.9 70 -28 70 C-29.81226714 66.37546571 -29.18470181 62.11521368 -29.1875 58.125 C-29.19974609 57.21363281 -29.21199219 56.30226563 -29.22460938 55.36328125 C-29.22654297 54.48285156 -29.22847656 53.60242188 -29.23046875 52.6953125 C-29.23457764 51.89109863 -29.23868652 51.08688477 -29.24291992 50.25830078 C-28.96966064 47.71795063 -28.41516433 46.12497675 -27 44 C-24.1796875 43.390625 -24.1796875 43.390625 -20.875 43.25 C-19.77929688 43.19328125 -18.68359375 43.1365625 -17.5546875 43.078125 C-16.71164062 43.05234375 -15.86859375 43.0265625 -15 43 C-14.505 40.03 -14.505 40.03 -14 37 C-14.721875 37.20625 -15.44375 37.4125 -16.1875 37.625 C-19.54297056 38.07239607 -21.11604375 37.76241771 -24 36 C-24.875 33.7421875 -24.875 33.7421875 -25 31 C-23.453125 28.359375 -23.453125 28.359375 -21.25 25.75 C-20.53328125 24.87859375 -19.8165625 24.0071875 -19.078125 23.109375 C-17 21 -17 21 -14 20 C-14 19.34 -14 18.68 -14 18 C-13.34 18 -12.68 18 -12 18 C-12 17.01 -12 16.02 -12 15 C-11.34 15 -10.68 15 -10 15 C-9.938125 14.46375 -9.87625 13.9275 -9.8125 13.375 C-8.59964736 9.82973843 -6.55389074 7.7407608 -4 5 C-3.34 5 -2.68 5 -2 5 C-1.855625 4.360625 -1.71125 3.72125 -1.5625 3.0625 C-1 1 -1 1 0 0 Z " fill="#FDF2D6" transform="translate(659,421)"/>
17
+ <path d="M0 0 C7.92 0 15.84 0 24 0 C24 7.26 24 14.52 24 22 C16.08 22 8.16 22 0 22 C0.05110565 28.01513491 0.11411805 34.02770699 0.20751953 40.04199219 C0.23569066 42.08650395 0.25692435 44.13112384 0.27099609 46.17578125 C0.29247887 49.12035322 0.3391569 52.06363041 0.390625 55.0078125 C0.39185364 55.9174173 0.39308228 56.82702209 0.39434814 57.76419067 C0.52424586 63.4323883 1.24752639 66.66904733 5 71 C7.15616421 71.84067552 7.15616421 71.84067552 9.4375 71.875 C13.59953049 72.52786753 13.59953049 72.52786753 15.484375 74.75 C16.28446347 76.16314328 17.06211601 77.58923329 17.81640625 79.02734375 C20.15058208 82.91763679 23.83300287 84.61100096 28 86 C29.72795352 86.06802967 31.45835365 86.08495645 33.1875 86.0625 C34.08855469 86.05347656 34.98960937 86.04445313 35.91796875 86.03515625 C36.60503906 86.02355469 37.29210937 86.01195312 38 86 C28.4198669 94.94145756 15.04998512 96.35397366 2.5546875 96.203125 C-1.58388881 95.96663493 -5.07173198 95.28269976 -9 94 C-6.13129876 93.17066175 -3.67877335 92.90857069 -0.69921875 93.0078125 C0.51991211 93.03294922 0.51991211 93.03294922 1.76367188 93.05859375 C3.45140273 93.10256528 5.13894568 93.15453885 6.82617188 93.21484375 C12.36551383 93.31102806 16.06333211 92.5449489 21 90 C21 89.01 21 88.02 21 87 C19.5459375 86.0409375 19.5459375 86.0409375 18.0625 85.0625 C15 83 15 83 14.125 80.75 C14.08375 80.1725 14.0425 79.595 14 79 C13.34 79 12.68 79 12 79 C12 78.34 12 77.68 12 77 C11.278125 76.896875 10.55625 76.79375 9.8125 76.6875 C5.46614904 75.62505865 2.79905402 74.21337832 0.3125 70.4375 C-0.120625 69.633125 -0.55375 68.82875 -1 68 C-1.66 67.34 -2.32 66.68 -3 66 C-4.56682324 55.65896659 -4.02187183 44.9749078 -3.6875 34.5625 C-3.65293701 33.35924072 -3.61837402 32.15598145 -3.58276367 30.91625977 C-3.53869385 29.79018311 -3.49462402 28.66410645 -3.44921875 27.50390625 C-3.41143311 26.49142822 -3.37364746 25.4789502 -3.3347168 24.43579102 C-3 22 -3 22 -1 20 C1.15478516 19.68115234 1.15478516 19.68115234 3.7890625 19.5859375 C5.20058594 19.52792969 5.20058594 19.52792969 6.640625 19.46875 C7.62546875 19.4378125 8.6103125 19.406875 9.625 19.375 C11.11386719 19.31699219 11.11386719 19.31699219 12.6328125 19.2578125 C15.08835385 19.1633686 17.5438841 19.07780125 20 19 C19.98839844 18.18015625 19.97679687 17.3603125 19.96484375 16.515625 C19.95582031 15.43796875 19.94679688 14.3603125 19.9375 13.25 C19.92589844 12.18265625 19.91429687 11.1153125 19.90234375 10.015625 C19.98489913 7.46631499 20.25382442 5.42066409 21 3 C20.01966797 3.29197266 20.01966797 3.29197266 19.01953125 3.58984375 C15.00486508 4.13517357 11.62136988 3.38864783 7.6875 2.5625 C6.94693359 2.41490234 6.20636719 2.26730469 5.44335938 2.11523438 C3.62718357 1.75199921 1.81333589 1.37715682 0 1 C0 0.67 0 0.34 0 0 Z " fill="#DFB06A" transform="translate(676,468)"/>
18
+ <path d="M0 0 C3 3 3 3 3.2578125 5.3046875 C3.21398437 6.15289062 3.17015625 7.00109375 3.125 7.875 C3.00502835 11.46371724 3.2754511 14.48076247 4 18 C3.60976365 21.31700894 2.61164065 22.93522445 0 25 C-2.36010742 25.34057617 -2.36010742 25.34057617 -5.10546875 25.29296875 C-6.08837891 25.28330078 -7.07128906 25.27363281 -8.08398438 25.26367188 C-9.10814453 25.23853516 -10.13230469 25.21339844 -11.1875 25.1875 C-12.22326172 25.17396484 -13.25902344 25.16042969 -14.32617188 25.14648438 C-16.88463699 25.11111389 -19.4420578 25.06175544 -22 25 C-21.93433838 25.60046143 -21.86867676 26.20092285 -21.80102539 26.81958008 C-20.93290834 35.43139683 -20.67409758 44.04154841 -20.4375 52.6875 C-20.39418922 54.17904546 -20.35057152 55.67058205 -20.30664062 57.16210938 C-20.20089527 60.77464429 -20.09928034 64.38728094 -20 68 C-19.05898438 68.29648437 -18.11796875 68.59296875 -17.1484375 68.8984375 C-14.2055568 69.92808062 -12.3554191 71.00695307 -10 73 C-14.03645882 73.31658501 -16.32333195 73.4210379 -19.8125 71.25 C-23.0830854 67.88596931 -24.25459399 65.28097814 -24.22705078 60.59863281 C-24.22689972 59.7380426 -24.22674866 58.87745239 -24.22659302 57.99078369 C-24.21627045 57.07085632 -24.20594788 56.15092896 -24.1953125 55.203125 C-24.1924826 54.25435486 -24.18965271 53.30558472 -24.18673706 52.32806396 C-24.17555448 49.30191361 -24.1504533 46.2760607 -24.125 43.25 C-24.11496772 41.19661886 -24.1058423 39.14323308 -24.09765625 37.08984375 C-24.07732418 32.05968942 -24.03817166 27.03017714 -24 22 C-16.08 22 -8.16 22 0 22 C0 14.74 0 7.48 0 0 Z " fill="#FDEFCD" transform="translate(700,468)"/>
19
+ <path d="M0 0 C4.62 0 9.24 0 14 0 C14.01458252 1.31081543 14.02916504 2.62163086 14.04418945 3.97216797 C14.10252455 8.87396394 14.17975352 13.77531735 14.26245117 18.67675781 C14.29553574 20.7909421 14.32361796 22.90521123 14.34643555 25.01953125 C14.38028608 28.07328159 14.43261545 31.12626594 14.48828125 34.1796875 C14.49467117 35.11239471 14.5010611 36.04510193 14.50764465 37.006073 C14.73562636 47.37399184 17.36275127 57.05256773 24.6328125 64.72265625 C32.92807918 72.29255208 42.09690889 73.40300166 53.015625 73.2109375 C63.64372477 72.64827339 71.9753421 69.49041118 81 64 C81.66 63.67 82.32 63.34 83 63 C82.17631135 66.60363786 80.73164913 68.5598772 77.8125 70.6875 C69.36448472 75.51927852 58.57412865 75.15231016 49.0625 75.25 C48.03491577 75.2641394 48.03491577 75.2641394 46.98657227 75.27856445 C42.010662 75.24659412 37.7517971 74.33793617 33 73 C32.67 73.66 32.34 74.32 32 75 C32 74.34 32 73.68 32 73 C31.2575 72.731875 30.515 72.46375 29.75 72.1875 C27.10938051 71.04723249 25.14447156 69.90619694 23 68 C23 67.34 23 66.68 23 66 C21.68 65.67 20.36 65.34 19 65 C18.67 63.68 18.34 62.36 18 61 C17.34 61 16.68 61 16 61 C12.6082286 48.17092103 12.64622924 35.75435973 12.8125 22.5625 C12.82758403 20.4629003 12.84126581 18.36329003 12.85351562 16.26367188 C12.8862035 11.17551518 12.9377776 6.0878777 13 1 C8.71 1 4.42 1 0 1 C0 0.67 0 0.34 0 0 Z " fill="#FDEDC8" transform="translate(633,490)"/>
20
+ <path d="M0 0 C0.81434143 2.85160391 1.11881242 5.36626131 1.09765625 8.328125 C1.09443359 9.12734375 1.09121094 9.9265625 1.08789062 10.75 C1.07951172 11.575 1.07113281 12.4 1.0625 13.25 C1.05798828 14.09046875 1.05347656 14.9309375 1.04882812 15.796875 C1.03707961 17.86461401 1.01914522 19.93231624 1 22 C1.99 22 2.98 22 4 22 C4 28.27 4 34.54 4 41 C-5.24 41 -14.48 41 -24 41 C-24 40.67 -24 40.34 -24 40 C-22.35 40 -20.7 40 -19 40 C-19 28.12 -19 16.24 -19 4 C-18.34 3.67 -17.68 3.34 -17 3 C-17 15.21 -17 27.42 -17 40 C-11.72 40 -6.44 40 -1 40 C-1.00523682 38.82381104 -1.01047363 37.64762207 -1.01586914 36.43579102 C-1.03391663 32.08797969 -1.04543108 27.7401717 -1.05493164 23.39233398 C-1.05997244 21.5075627 -1.06680498 19.62279535 -1.07543945 17.73803711 C-1.08751617 15.03498364 -1.09323068 12.33198169 -1.09765625 9.62890625 C-1.10281754 8.78099014 -1.10797882 7.93307404 -1.11329651 7.0594635 C-1.11349195 5.03928932 -1.06206211 3.01922066 -1 1 C-0.67 0.67 -0.34 0.34 0 0 Z " fill="#252E30" transform="translate(369,521)"/>
21
+ <path d="M0 0 C7.92 0 15.84 0 24 0 C24 7.26 24 14.52 24 22 C11.625 22.495 11.625 22.495 -1 23 C-1.33 36.2 -1.66 49.4 -2 63 C-2.33 63 -2.66 63 -3 63 C-4.13448821 53.55756734 -4.00188302 44.23836711 -3.6875 34.75 C-3.65277588 33.53530029 -3.61805176 32.32060059 -3.58227539 31.0690918 C-3.5383667 29.92738525 -3.49445801 28.78567871 -3.44921875 27.609375 C-3.41143311 26.57780273 -3.37364746 25.54623047 -3.3347168 24.48339844 C-3 22 -3 22 -1 20 C1.15478516 19.68115234 1.15478516 19.68115234 3.7890625 19.5859375 C5.20058594 19.52792969 5.20058594 19.52792969 6.640625 19.46875 C7.62546875 19.4378125 8.6103125 19.406875 9.625 19.375 C11.11386719 19.31699219 11.11386719 19.31699219 12.6328125 19.2578125 C15.08835385 19.1633686 17.5438841 19.07780125 20 19 C19.98839844 18.18015625 19.97679687 17.3603125 19.96484375 16.515625 C19.95582031 15.43796875 19.94679688 14.3603125 19.9375 13.25 C19.92589844 12.18265625 19.91429687 11.1153125 19.90234375 10.015625 C19.98489913 7.46631499 20.25382442 5.42066409 21 3 C20.01966797 3.29197266 20.01966797 3.29197266 19.01953125 3.58984375 C15.00486508 4.13517357 11.62136988 3.38864783 7.6875 2.5625 C6.94693359 2.41490234 6.20636719 2.26730469 5.44335938 2.11523438 C3.62718357 1.75199921 1.81333589 1.37715682 0 1 C0 0.67 0 0.34 0 0 Z " fill="#EBB361" transform="translate(676,468)"/>
22
+ <path d="M0 0 C1.98 0 3.96 0 6 0 C6.96345149 5.39532832 6.9764649 10.29708307 6.5625 15.75 C6.15134315 21.36947121 6.15134315 21.36947121 6 27 C4.94140625 29.04296875 4.94140625 29.04296875 3.5625 31.1875 C2.88380859 32.26064453 2.88380859 32.26064453 2.19140625 33.35546875 C1.79824219 33.89816406 1.40507812 34.44085938 1 35 C0.67 35 0.34 35 0 35 C0 23.45 0 11.9 0 0 Z " fill="#2E3738" transform="translate(345,472)"/>
23
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 25.74 1 51.48 1 78 C0.01 77.67 -0.98 77.34 -2 77 C-1.83734146 76.29841263 -1.67468292 75.59682526 -1.50709534 74.87397766 C-0.97453003 71.8556482 -0.87991379 69.08025882 -0.88647461 66.01635742 C-0.88655014 64.83551071 -0.88662567 63.654664 -0.88670349 62.43803406 C-0.89186478 61.17328751 -0.89702606 59.90854095 -0.90234375 58.60546875 C-0.9037587 57.30297684 -0.90517365 56.00048492 -0.90663147 54.65852356 C-0.91043645 51.20783546 -0.92024936 47.75718992 -0.93133545 44.30651855 C-0.94159311 40.78052343 -0.9461384 37.25452139 -0.95117188 33.72851562 C-0.96187356 26.81899301 -0.97892557 19.90949855 -1 13 C-1.99 12.67 -2.98 12.34 -4 12 C-3.649375 11.236875 -3.29875 10.47375 -2.9375 9.6875 C-1.67639116 6.95240621 -1.67639116 6.95240621 -3 4 C-1.625 1.8125 -1.625 1.8125 0 0 Z " fill="#252E2E" transform="translate(929,483)"/>
24
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C3.78043103 8.12172411 3 15.65909482 3 23 C-16.47 23 -35.94 23 -56 23 C-56 22.67 -56 22.34 -56 22 C-28.775 21.505 -28.775 21.505 -1 21 C-1.66 18.03 -2.32 15.06 -3 12 C-2.70676058 7.60140869 -1.82135506 4.00698114 0 0 Z " fill="#424949" transform="translate(811,500)"/>
25
+ <path d="M0 0 C10.89 0 21.78 0 33 0 C32 2 32 2 28.9375 3.125 C27.968125 3.41375 26.99875 3.7025 26 4 C26 4.33 26 4.66 26 5 C22.9166866 5.02911321 19.83340875 5.04683682 16.75 5.0625 C15.87730469 5.07087891 15.00460938 5.07925781 14.10546875 5.08789062 C13.26113281 5.09111328 12.41679687 5.09433594 11.546875 5.09765625 C10.38430176 5.10551147 10.38430176 5.10551147 9.19824219 5.11352539 C6.99642569 4.99981541 5.11528675 4.60281778 3 4 C2.2575 3.814375 1.515 3.62875 0.75 3.4375 C0.1725 3.293125 -0.405 3.14875 -1 3 C-0.67 2.01 -0.34 1.02 0 0 Z " fill="#252F30" transform="translate(127,456)"/>
26
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1.00808685 0.61085953 1.01617371 1.22171906 1.02450562 1.85108948 C1.11077125 8.22686062 1.21028396 14.60232871 1.31738281 20.9777832 C1.355592 23.35500995 1.39045875 25.73229292 1.421875 28.10961914 C1.46770039 31.53291881 1.52566668 34.95583411 1.5859375 38.37890625 C1.60326431 39.9652462 1.60326431 39.9652462 1.62094116 41.58363342 C1.73033867 47.09218328 2.17067468 51.79123684 4 57 C4.66 57 5.32 57 6 57 C6.061875 57.61875 6.12375 58.2375 6.1875 58.875 C6.80875315 61.2501999 6.80875315 61.2501999 9.375 62.0625 C10.24125 62.371875 11.1075 62.68125 12 63 C13.6875 64.5625 13.6875 64.5625 15 66 C15.66 66.33 16.32 66.66 17 67 C17.625 69.0625 17.625 69.0625 18 71 C11.64674292 69.72934858 7.98595005 65.83583279 4 61 C-0.20320088 54.43626224 -1.13694835 48.50999461 -1.09375 40.75 C-1.09016479 40.05398682 -1.08657959 39.35797363 -1.08288574 38.64086914 C-1.02339219 30.75687156 -0.77025329 22.87906229 -0.5 15 C-0.4515835 13.53125787 -0.40340556 12.06250786 -0.35546875 10.59375 C-0.23971031 7.06240545 -0.12078988 3.53117647 0 0 Z " fill="#ECB35D" transform="translate(649,490)"/>
27
+ <path d="M0 0 C6.93 0 13.86 0 21 0 C21 0.66 21 1.32 21 2 C23.475 2.99 23.475 2.99 26 4 C26 4.33 26 4.66 26 5 C14.78 5 3.56 5 -8 5 C-4 3 -4 3 -1 2 C-0.67 1.34 -0.34 0.68 0 0 Z " fill="#20292B" transform="translate(132,539)"/>
28
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1.0093457 1.27117676 1.01869141 2.54235352 1.02832031 3.85205078 C1.0682865 8.58238362 1.13406414 13.31207062 1.20751953 18.04199219 C1.23569066 20.08650395 1.25692435 22.13112384 1.27099609 24.17578125 C1.29247887 27.12035322 1.3391569 30.06363041 1.390625 33.0078125 C1.39246796 34.3722197 1.39246796 34.3722197 1.39434814 35.76419067 C1.52438447 41.4384366 2.24925859 44.66233702 6 49 C8.30476633 50.12133721 8.30476633 50.12133721 10.75 50.375 C11.54921875 50.50648438 12.3484375 50.63796875 13.171875 50.7734375 C13.77515625 50.84820313 14.3784375 50.92296875 15 51 C15 51.33 15 51.66 15 52 C13.22992286 52.08114106 11.45877902 52.13925505 9.6875 52.1875 C8.70136719 52.22230469 7.71523438 52.25710938 6.69921875 52.29296875 C4 52 4 52 2.20703125 50.67578125 C1 49 1 49 0 46 C-0.66 45.34 -1.32 44.68 -2 44 C-2.20927429 42.1337738 -2.20927429 42.1337738 -2.15112305 39.84155273 C-2.13417892 38.98403915 -2.1172348 38.12652557 -2.09977722 37.24302673 C-2.07071793 36.31591385 -2.04165863 35.38880096 -2.01171875 34.43359375 C-1.98906448 33.48436539 -1.96641022 32.53513702 -1.94306946 31.55714417 C-1.8930653 29.54879358 -1.83809315 27.54056154 -1.77856445 25.5324707 C-1.68777846 22.4469639 -1.61311485 19.36138491 -1.54101562 16.27539062 C-1.49053325 14.32810014 -1.43913222 12.38083321 -1.38671875 10.43359375 C-1.36373215 9.50445663 -1.34074554 8.57531952 -1.31706238 7.61802673 C-1.29066177 6.76366531 -1.26426117 5.90930389 -1.23706055 5.02905273 C-1.21548386 4.27341537 -1.19390717 3.51777802 -1.17167664 2.73924255 C-1 1 -1 1 0 0 Z " fill="#EDBD73" transform="translate(675,490)"/>
29
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 14.85 1 29.7 1 45 C-1 43 -1 43 -1.125 40.72265625 C-1.04178877 38.95181718 -0.95845579 37.18098382 -0.875 35.41015625 C-0.80800597 32.73455911 -0.80800597 32.73455911 -3 30 C-2.505 28.515 -2.505 28.515 -2 27 C-2.31050297 25.32892945 -2.64717051 23.66264856 -3 22 C-3.09035285 20.00160753 -3.13010313 18.00042747 -3.125 16 C-3.12757813 14.989375 -3.13015625 13.97875 -3.1328125 12.9375 C-3.00826727 10.18285256 -2.62110865 7.68161197 -2 5 C-1.34 5 -0.68 5 0 5 C0 3.35 0 1.7 0 0 Z " fill="#ffffff" transform="translate(901,431)"/>
30
+ <path d="M0 0 C2.57069617 3.85604425 2.35065056 7.12746343 2.4140625 11.60546875 C2.43342865 12.44467361 2.4527948 13.28387848 2.4727478 14.14851379 C2.53251213 16.82807258 2.57891612 19.5076744 2.625 22.1875 C2.6631827 24.00457599 2.70223461 25.82163394 2.7421875 27.63867188 C2.83821103 32.09230132 2.92225359 36.54601551 3 41 C3.94101562 41.29648437 4.88203125 41.59296875 5.8515625 41.8984375 C8.7944432 42.92808062 10.6445809 44.00695307 13 46 C8.86001651 46.32470459 6.66000999 46.4304413 3.125 44.125 C0.12481839 41.12481839 0.01401021 40.48116775 -0.11352539 36.10107422 C-0.11336671 34.418937 -0.10769737 32.73679475 -0.09765625 31.0546875 C-0.0962413 30.1696756 -0.09482635 29.2846637 -0.09336853 28.37283325 C-0.0877614 25.54018809 -0.07520771 22.70762136 -0.0625 19.875 C-0.05748592 17.95703239 -0.05292285 16.03906354 -0.04882812 14.12109375 C-0.03778966 9.41403218 -0.02052025 4.7070294 0 0 Z " fill="#FDF7DE" transform="translate(677,495)"/>
31
+ <path d="M0 0 C0.82200425 6.24723226 -2.07448606 10.71317837 -5 16 C-6.95100616 14.37586398 -7.92782782 13.56206818 -8.2578125 10.9921875 C-8.21398437 10.29351562 -8.17015625 9.59484375 -8.125 8.875 C-8.08375 7.59625 -8.0425 6.3175 -8 5 C-8.98267859 3.79438816 -8.98267859 3.79438816 -10.84765625 3.90234375 C-12.8984375 3.93489583 -14.94921875 3.96744792 -17 4 C-17 3.01 -17 2.02 -17 1 C-14.3541898 0.832959 -11.70835369 0.66634934 -9.0625 0.5 C-8.30775391 0.45230469 -7.55300781 0.40460938 -6.77539062 0.35546875 C-1.11328125 0 -1.11328125 0 0 0 Z " fill="#333B3D" transform="translate(369,467)"/>
32
+ <path d="M0 0 C4.29 0 8.58 0 13 0 C13.02505615 1.34747314 13.0501123 2.69494629 13.07592773 4.08325195 C13.17000223 9.07602678 13.27022294 14.06866249 13.37231445 19.0612793 C13.41566313 21.2233556 13.45733825 23.38546613 13.49731445 25.54760742 C13.55501844 28.65293702 13.61871272 31.75809436 13.68359375 34.86328125 C13.70030624 35.83211746 13.71701874 36.80095367 13.73423767 37.79914856 C13.75418289 38.6998558 13.77412811 39.60056305 13.79467773 40.52856445 C13.81022202 41.32132278 13.8257663 42.11408112 13.84178162 42.93086243 C13.93081226 45.19739774 13.93081226 45.19739774 15 48 C15.12781786 50.67394964 15.04391871 53.32095857 15 56 C14.67 56 14.34 56 14 56 C13.29066112 53.54623548 12.60781467 51.08945724 11.9375 48.625 C11.73833984 47.94566406 11.53917969 47.26632812 11.33398438 46.56640625 C10.04560625 41.72933752 10.02964032 37.78697173 10.67358398 32.84228516 C11.33901124 27.04804123 11.37950304 21.20090331 11.5625 15.375 C11.60568359 14.08464844 11.64886719 12.79429687 11.69335938 11.46484375 C11.79852148 8.30998067 11.90066604 5.15505105 12 2 C11.25363281 2.17402344 10.50726562 2.34804688 9.73828125 2.52734375 C6.30488867 3.11998355 3.41085419 2.60191545 0 2 C0 1.34 0 0.68 0 0 Z " fill="#FCF6E2" transform="translate(633,491)"/>
33
+ <path d="M0 0 C7.26 0 14.52 0 22 0 C21.34 0.66 20.68 1.32 20 2 C20.33 2.66 20.66 3.32 21 4 C14.73 4 8.46 4 2 4 C2 6.64 2 9.28 2 12 C1.34 12.66 0.68 13.32 0 14 C0.01160156 13.30132812 0.02320313 12.60265625 0.03515625 11.8828125 C0.04417969 10.97273438 0.05320313 10.06265625 0.0625 9.125 C0.07410156 8.22007812 0.08570313 7.31515625 0.09765625 6.3828125 C0.16249257 3.9831415 0.16249257 3.9831415 -1 2 C-0.67 1.34 -0.34 0.68 0 0 Z " fill="#242C2E" transform="translate(230,468)"/>
34
+ <path d="M0 0 C3.26587942 0.14550948 6.38789358 0.49324673 9.5625 1.3125 C9.2325 2.3025 8.9025 3.2925 8.5625 4.3125 C9.2225 4.6425 9.8825 4.9725 10.5625 5.3125 C9.5625 6.3125 9.5625 6.3125 6.87866211 6.42602539 C5.71085205 6.42078857 4.54304199 6.41555176 3.33984375 6.41015625 C2.07978516 6.40693359 0.81972656 6.40371094 -0.47851562 6.40039062 C-1.81901109 6.39203403 -3.15950588 6.38356907 -4.5 6.375 C-5.84439942 6.3699866 -7.1888006 6.36542342 -8.53320312 6.36132812 C-11.83467941 6.34949488 -15.13606803 6.33300971 -18.4375 6.3125 C-15.4375 4.3125 -15.4375 4.3125 -12 4.4375 C-8.38721028 4.72990718 -8.38721028 4.72990718 -6.5625 2.3125 C-4.04895307 -0.05319123 -3.34014743 0.01650814 0 0 Z " fill="#262F31" transform="translate(584.4375,465.6875)"/>
35
+ <path d="M0 0 C1.32 0 2.64 0 4 0 C4 0.66 4 1.32 4 2 C4.73605469 1.855625 5.47210937 1.71125 6.23046875 1.5625 C7.20628906 1.376875 8.18210937 1.19125 9.1875 1 C10.15042969 0.814375 11.11335937 0.62875 12.10546875 0.4375 C18.83937824 -0.58031088 18.83937824 -0.58031088 22 1 C22.99 0.67 23.98 0.34 25 0 C25.33 0.33 25.66 0.66 26 1 C27.99964982 1.08758003 30.0023611 1.10696576 32.00390625 1.09765625 C33.82631836 1.09282227 33.82631836 1.09282227 35.68554688 1.08789062 C36.96494141 1.07951172 38.24433594 1.07113281 39.5625 1.0625 C41.48739258 1.05573242 41.48739258 1.05573242 43.45117188 1.04882812 C46.63416022 1.03699545 49.81705762 1.02051068 53 1 C53.495 1.99 53.495 1.99 54 3 C36.18 3 18.36 3 0 3 C0 2.01 0 1.02 0 0 Z " fill="#212A2C" transform="translate(731,509)"/>
36
+ <path d="M0 0 C3.3 0 6.6 0 10 0 C10 0.33 10 0.66 10 1 C7.69 1.33 5.38 1.66 3 2 C3 4.64 3 7.28 3 10 C3.66 9.67 4.32 9.34 5 9 C6.44848582 8.91657841 7.90070869 8.89267139 9.3515625 8.90234375 C10.20234375 8.90556641 11.053125 8.90878906 11.9296875 8.91210938 C12.81914063 8.92048828 13.70859375 8.92886719 14.625 8.9375 C15.5221875 8.94201172 16.419375 8.94652344 17.34375 8.95117188 C19.56256648 8.96297409 21.78125018 8.97943845 24 9 C24 9.99 24 10.98 24 12 C16.08 12 8.16 12 0 12 C0 8.04 0 4.08 0 0 Z " fill="#FEF0CE" transform="translate(676,456)"/>
37
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1.02893932 3.62498334 1.04677792 7.24993713 1.0625 10.875 C1.07087891 11.90753906 1.07925781 12.94007813 1.08789062 14.00390625 C1.09111328 14.99003906 1.09433594 15.97617187 1.09765625 16.9921875 C1.10289307 17.90339355 1.10812988 18.81459961 1.11352539 19.75341797 C1 22 1 22 0 24 C-0.99 23.67 -1.98 23.34 -3 23 C-5.01862148 17.75866703 -4.98056566 10.73616357 -3.10546875 5.50390625 C-2.15670432 3.62314001 -1.08879621 1.80331872 0 0 Z " fill="#252F30" transform="translate(831,508)"/>
38
+ <path d="M0 0 C1.98 0 3.96 0 6 0 C5.67 0.99 5.34 1.98 5 3 C5.99 3.33 6.98 3.66 8 4 C7.34 4 6.68 4 6 4 C6.66 5.65 7.32 7.3 8 9 C9.65 8.67 11.3 8.34 13 8 C13.33 9.32 13.66 10.64 14 12 C16.31 12 18.62 12 21 12 C21 11.34 21 10.68 21 10 C21.66 10 22.32 10 23 10 C23.33 10.99 23.66 11.98 24 13 C18.94576102 14.68474633 14.71544468 14.58019314 9.875 12.375 C5.29909504 9.86935884 1.9168134 6.67991608 0.1875 1.625 C0.125625 1.08875 0.06375 0.5525 0 0 Z " fill="#362C18" transform="translate(690,541)"/>
39
+ <path d="M0 0 C6.93 0.33 13.86 0.66 21 1 C20.34 1.66 19.68 2.32 19 3 C19.33 3.66 19.66 4.32 20 5 C17.10410348 5.02706445 14.20846205 5.04687029 11.3125 5.0625 C10.08756836 5.07506836 10.08756836 5.07506836 8.83789062 5.08789062 C4.75500916 5.10442051 0.98348293 5.03035098 -3 4 C-2.34 3.67 -1.68 3.34 -1 3 C-0.67 2.01 -0.34 1.02 0 0 Z " fill="#353E3F" transform="translate(241,593)"/>
40
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 8.25 1 16.5 1 25 C0.34 25 -0.32 25 -1 25 C-3.52775351 21.20836973 -3.22443035 18.19125969 -3.125 13.8125 C-3.11597656 13.06291016 -3.10695312 12.31332031 -3.09765625 11.54101562 C-3.07412578 9.69387346 -3.03825561 7.84689588 -3 6 C-2.67 6 -2.34 6 -2 6 C-1.34 4.02 -0.68 2.04 0 0 Z " fill="#222B2D" transform="translate(191,487)"/>
41
+ <path d="M0 0 C0.66 0.66 1.32 1.32 2 2 C1.525625 2.845625 1.05125 3.69125 0.5625 4.5625 C-1.69167803 9.67126796 -1.51097377 15.18235336 -1.69140625 20.671875 C-2 24 -2 24 -4 27 C-4.39387788 29.32387947 -4.73486085 31.65793749 -5 34 C-5.33 34 -5.66 34 -6 34 C-6.52846015 21.74266038 -5.86678537 11.12575063 0 0 Z " fill="#384141" transform="translate(832,489)"/>
42
+ <path d="M0 0 C0.98742187 0.16242187 1.97484375 0.32484375 2.9921875 0.4921875 C7.03537925 1.06688527 11.04640663 1.15126811 15.125 1.125 C15.858396 1.12306641 16.59179199 1.12113281 17.34741211 1.11914062 C23.93030125 1.06771738 30.4468302 0.63822175 37 0 C33.42278921 2.9386979 31.63341748 3.18911908 27 3 C22.9008693 3.63063549 18.97489026 4.83091463 15 6 C15 5.34 15 4.68 15 4 C13.02 4.66 11.04 5.32 9 6 C8.67 5.34 8.34 4.68 8 4 C6.8553125 4.12375 6.8553125 4.12375 5.6875 4.25 C3 4 3 4 1.1875 2 C0.5996875 1.01 0.5996875 1.01 0 0 Z " fill="#FCF9E6" transform="translate(667,563)"/>
43
+ <path d="M0 0 C-1.70577342 0.65256456 -3.41476089 1.29673041 -5.125 1.9375 C-6.07632813 2.29714844 -7.02765625 2.65679688 -8.0078125 3.02734375 C-18.08362171 6.30263943 -29.94180625 6.28430816 -40 3 C-37.09031691 2.16087482 -34.5469594 1.89148572 -31.5234375 1.9375 C-30.27046875 1.94910156 -30.27046875 1.94910156 -28.9921875 1.9609375 C-28.12851562 1.97382812 -27.26484375 1.98671875 -26.375 2 C-24.65370809 2.0254629 -22.93234349 2.04651171 -21.2109375 2.0625 C-20.45087402 2.07410156 -19.69081055 2.08570313 -18.90771484 2.09765625 C-16.91256704 2.12332635 -16.91256704 2.12332635 -15 1 C-12.70190464 0.69130062 -10.40279871 0.49116352 -8.09375 0.28125 C-1.8556701 -0.55670103 -1.8556701 -0.55670103 0 0 Z " fill="#E8BB75" transform="translate(707,559)"/>
44
+ <path d="M0 0 C9.57 0 19.14 0 29 0 C29 0.33 29 0.66 29 1 C21.41 1 13.82 1 6 1 C6.33 2.32 6.66 3.64 7 5 C6.87890625 7.359375 6.87890625 7.359375 6.5625 9.75 C6.46066406 10.54921875 6.35882813 11.3484375 6.25390625 12.171875 C6.12822266 13.07679688 6.12822266 13.07679688 6 14 C4.31821339 11.47732009 3.09893258 9.18908177 1.875 6.4375 C1.52179688 5.65246094 1.16859375 4.86742187 0.8046875 4.05859375 C0 2 0 2 0 0 Z " fill="#555A5C" transform="translate(224,467)"/>
45
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 7.59 1 15.18 1 23 C0.01 23 -0.98 23 -2 23 C-3.53887884 8.19349005 -3.53887884 8.19349005 -1 1 C-0.67 0.67 -0.34 0.34 0 0 Z " fill="#364041" transform="translate(372,520)"/>
46
+ <path d="M0 0 C6.93 0 13.86 0 21 0 C19.02 0.99 19.02 0.99 17 2 C16.37609375 2.53238281 15.7521875 3.06476563 15.109375 3.61328125 C12.34672115 5.42947035 10.52244363 5.30437299 7.25 5.1875 C5.77273438 5.14689453 5.77273438 5.14689453 4.265625 5.10546875 C3.14414062 5.05326172 3.14414062 5.05326172 2 5 C2.33 4.01 2.66 3.02 3 2 C2.01 1.34 1.02 0.68 0 0 Z " fill="#394243" transform="translate(454,466)"/>
47
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 2.97 1 5.94 1 9 C2.32451172 8.87431641 2.32451172 8.87431641 3.67578125 8.74609375 C11.27709596 8.10108423 18.43413122 7.99636435 26 9 C26 9.66 26 10.32 26 11 C17.42 11 8.84 11 0 11 C0 7.37 0 3.74 0 0 Z " fill="#42494A" transform="translate(904,552)"/>
48
+ <path d="M0 0 C1.28132812 0.00902344 2.56265625 0.01804687 3.8828125 0.02734375 C4.87023437 0.03894531 5.85765625 0.05054688 6.875 0.0625 C6.875 0.7225 6.875 1.3825 6.875 2.0625 C7.535 2.3925 8.195 2.7225 8.875 3.0625 C7.875 4.0625 7.875 4.0625 4.27734375 4.16015625 C2.78903133 4.1534822 1.30073568 4.14152183 -0.1875 4.125 C-0.94611328 4.12048828 -1.70472656 4.11597656 -2.48632812 4.11132812 C-4.36591871 4.0995068 -6.24546899 4.08157078 -8.125 4.0625 C-8.455 3.0725 -8.785 2.0825 -9.125 1.0625 C-6.12186252 -0.43906874 -3.33432478 -0.03031204 0 0 Z " fill="#282F31" transform="translate(874.125,559.9375)"/>
49
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 2.97 1 5.94 1 9 C3.31 9 5.62 9 8 9 C6.47291037 12.43595166 4.40072955 15.11912454 2 18 C1.01 17.67 0.02 17.34 -1 17 C-0.67 11.39 -0.34 5.78 0 0 Z " fill="#262D2F" transform="translate(351,479)"/>
50
+ <path d="M0 0 C6.6 0 13.2 0 20 0 C20 0.99 20 1.98 20 3 C15.38 3.33 10.76 3.66 6 4 C6 3.67 6 3.34 6 3 C3.03 2.505 3.03 2.505 0 2 C0 1.34 0 0.68 0 0 Z " fill="#1C2526" transform="translate(384,488)"/>
51
+ <path d="M0 0 C14.7664042 -0.22834646 14.7664042 -0.22834646 22 1 C23 2 23 2 23.09765625 4.50390625 C23.08605469 5.51324219 23.07445312 6.52257812 23.0625 7.5625 C23.05347656 8.57441406 23.04445313 9.58632813 23.03515625 10.62890625 C23.02355469 11.41136719 23.01195312 12.19382812 23 13 C22.67 13 22.34 13 22 13 C21.505 8.05 21.505 8.05 21 3 C20.01966797 3.29197266 20.01966797 3.29197266 19.01953125 3.58984375 C15.00486508 4.13517357 11.62136988 3.38864783 7.6875 2.5625 C6.94693359 2.41490234 6.20636719 2.26730469 5.44335938 2.11523438 C3.62718357 1.75199921 1.81333589 1.37715682 0 1 C0 0.67 0 0.34 0 0 Z " fill="#ECB565" transform="translate(676,468)"/>
52
+ <path d="M0 0 C5.61 0.33 11.22 0.66 17 1 C14 4 14 4 10.64453125 4.29296875 C9.37996094 4.25816406 8.11539063 4.22335937 6.8125 4.1875 C5.54019531 4.16042969 4.26789062 4.13335938 2.95703125 4.10546875 C1.98121094 4.07066406 1.00539063 4.03585937 0 4 C0 2.68 0 1.36 0 0 Z " fill="#232C2D" transform="translate(569,540)"/>
53
+ <path d="M0 0 C6.27 0 12.54 0 19 0 C18.01 0.495 18.01 0.495 17 1 C17 1.66 17 2.32 17 3 C11.39 3 5.78 3 0 3 C0 2.01 0 1.02 0 0 Z " fill="#EFF1EE" transform="translate(761,523)"/>
54
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1.33 9.24 1.66 18.48 2 28 C2.99 28.33 3.98 28.66 5 29 C3.69593116 31.01920337 2.36176581 33.01924973 1 35 C0.67 35 0.34 35 0 35 C0 23.45 0 11.9 0 0 Z " fill="#434746" transform="translate(345,472)"/>
55
+ <path d="M0 0 C0 1.65 0 3.3 0 5 C-1.134375 5.28875 -2.26875 5.5775 -3.4375 5.875 C-4.613125 6.24625 -5.78875 6.6175 -7 7 C-8.2981424 9.2236068 -8.2981424 9.2236068 -8 13 C-8.66 13 -9.32 13 -10 13 C-11 10.4375 -11 10.4375 -11 7 C-7.98890645 3.33845177 -4.8796426 0 0 0 Z " fill="#262E30" transform="translate(736,475)"/>
56
+ <path d="M0 0 C0.66 0 1.32 0 2 0 C2 0.66 2 1.32 2 2 C3.36125 2.37125 3.36125 2.37125 4.75 2.75 C8.13493865 4.05189948 9.60793414 5.35164137 12 8 C12.66 8.33 13.32 8.66 14 9 C14.625 11.0625 14.625 11.0625 15 13 C8.7298413 11.74596826 4.95911962 7.77173128 1 3 C0.67 2.01 0.34 1.02 0 0 Z " fill="#E5BC78" transform="translate(652,548)"/>
57
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 4.62 1 9.24 1 14 C0.01 14.495 0.01 14.495 -1 15 C-1 14.01 -1 13.02 -1 12 C-1.99 12 -2.98 12 -4 12 C-3.53439347 7.25081338 -2.83067342 3.89217595 0 0 Z " fill="#252D2D" transform="translate(287,513)"/>
58
+ <path d="M0 0 C2.4375 0.8125 2.4375 0.8125 5 2 C5.33 2.99 5.66 3.98 6 5 C7.49985609 6.66710346 7.49985609 6.66710346 9 8 C5.68585212 12.10954337 3.12159208 12.43093421 -2 13 C-2.66 13.66 -3.32 14.32 -4 15 C-3.67 13.35 -3.34 11.7 -3 10 C1.455 9.505 1.455 9.505 6 9 C5.566875 8.43410156 5.13375 7.86820312 4.6875 7.28515625 C3.8521875 6.18494141 3.8521875 6.18494141 3 5.0625 C2.1646875 3.96615234 2.1646875 3.96615234 1.3125 2.84765625 C0 1 0 1 0 0 Z " fill="#FDF6E2" transform="translate(682,447)"/>
59
+ <path d="M0 0 C2.31 0 4.62 0 7 0 C6.67 1.32 6.34 2.64 6 4 C-1.26 4 -8.52 4 -16 4 C-16 3.67 -16 3.34 -16 3 C-11.05 3 -6.1 3 -1 3 C-0.67 2.01 -0.34 1.02 0 0 Z " fill="#393F40" transform="translate(472,560)"/>
60
+ <path d="M0 0 C3.63 0 7.26 0 11 0 C9 4 9 4 7.25 4.8125 C4.36824559 5.0526462 1.82252185 4.57733402 -1 4 C-0.67 2.68 -0.34 1.36 0 0 Z " fill="#313B3C" transform="translate(449,506)"/>
61
+ <path d="M0 0 C3.3 0.33 6.6 0.66 10 1 C10.33 2.32 10.66 3.64 11 5 C9.58376784 5.05447047 8.16691809 5.09300508 6.75 5.125 C5.96109375 5.14820313 5.1721875 5.17140625 4.359375 5.1953125 C1.79268059 4.9828378 0.2083933 4.28654105 -2 3 C-1.34 2.01 -0.68 1.02 0 0 Z " fill="#DDDFDD" transform="translate(760,537)"/>
62
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C1.67 1.99 1.34 2.98 1 4 C1.74765625 3.97679687 2.4953125 3.95359375 3.265625 3.9296875 C4.25046875 3.91164063 5.2353125 3.89359375 6.25 3.875 C7.22453125 3.85179687 8.1990625 3.82859375 9.203125 3.8046875 C12 4 12 4 16 6 C9.73 6 3.46 6 -3 6 C-3 4.68 -3 3.36 -3 2 C-2.01 2 -1.02 2 0 2 C0 1.34 0 0.68 0 0 Z " fill="#232D2E" transform="translate(447,506)"/>
63
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1.22212255 2.74951693 1.42815588 5.49865612 1.625 8.25 C1.68945312 9.02730469 1.75390625 9.80460937 1.8203125 10.60546875 C2.30707097 17.72431144 2.30707097 17.72431144 0 21 C-0.86860031 16.51223172 -1.13464852 12.25607233 -1.125 7.6875 C-1.12757813 6.45386719 -1.13015625 5.22023438 -1.1328125 3.94921875 C-1 1 -1 1 0 0 Z " fill="#262E2F" transform="translate(553,496)"/>
64
+ <path d="M0 0 C0 1.65 0 3.3 0 5 C-3.63 5 -7.26 5 -11 5 C-11.33 4.34 -11.66 3.68 -12 3 C-10.75336669 2.49166409 -9.50250613 1.99368855 -8.25 1.5 C-7.55390625 1.2215625 -6.8578125 0.943125 -6.140625 0.65625 C-4 0 -4 0 0 0 Z " fill="#384042" transform="translate(454,467)"/>
65
+ <path d="M0 0 C0.98613281 0.03480469 1.97226562 0.06960938 2.98828125 0.10546875 C3.98214844 0.13253906 4.97601563 0.15960937 6 0.1875 C7.13888672 0.23970703 7.13888672 0.23970703 8.30078125 0.29296875 C8.63078125 1.28296875 8.96078125 2.27296875 9.30078125 3.29296875 C4.35078125 3.29296875 -0.59921875 3.29296875 -5.69921875 3.29296875 C-2.69921875 0.29296875 -2.69921875 0.29296875 0 0 Z " fill="#1D2628" transform="translate(461.69921875,559.70703125)"/>
66
+ <path d="M0 0 C0.56203125 0.30679688 1.1240625 0.61359375 1.703125 0.9296875 C4.06346934 2.02957585 6.20465562 2.60095851 8.75 3.125 C9.54921875 3.29257812 10.3484375 3.46015625 11.171875 3.6328125 C11.77515625 3.75398437 12.3784375 3.87515625 13 4 C13 4.66 13 5.32 13 6 C8.126739 7.5912689 4.19209404 8.21192221 -1 8 C0.32 7.34 1.64 6.68 3 6 C2.690625 5.38125 2.38125 4.7625 2.0625 4.125 C1.375 2.75 0.6875 1.375 0 0 Z " fill="#EEB55F" transform="translate(695,552)"/>
67
+ <path d="M0 0 C-0.99 1.485 -0.99 1.485 -2 3 C-4.8984375 3.36328125 -4.8984375 3.36328125 -8.375 3.3125 C-9.51710938 3.30863281 -10.65921875 3.30476562 -11.8359375 3.30078125 C-14.80057739 3.01895746 -16.49947121 2.54589341 -19 1 C-12.65758005 -0.15316726 -6.43311296 -0.09507063 0 0 Z " fill="#1F2829" transform="translate(884,541)"/>
68
+ <path d="M0 0 C1.58323688 -0.027193 3.16661062 -0.04648306 4.75 -0.0625 C6.07257812 -0.07990234 6.07257812 -0.07990234 7.421875 -0.09765625 C9.7818838 -0.00826198 11.74498524 0.33087179 14 1 C14 1.66 14 2.32 14 3 C9.05 3 4.1 3 -1 3 C-0.67 2.01 -0.34 1.02 0 0 Z " fill="#262E30" transform="translate(581,560)"/>
69
+ <path d="M0 0 C0 0.99 0 1.98 0 3 C-5.28 3 -10.56 3 -16 3 C-16 2.34 -16 1.68 -16 1 C-10.62915894 0.31798844 -5.41499441 -0.11521265 0 0 Z " fill="#21272A" transform="translate(479,541)"/>
70
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 5.28 1 10.56 1 16 C-2.37152003 12.62847997 -2.82142723 11.64289204 -3 7 C-2.21181089 4.49988422 -1.17946058 2.35892116 0 0 Z " fill="#242D2D" transform="translate(247,504)"/>
71
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C2.08082094 2.95766281 2.13910778 4.91626728 2.1875 6.875 C2.23970703 8.51082031 2.23970703 8.51082031 2.29296875 10.1796875 C2.19628906 11.11039062 2.09960938 12.04109375 2 13 C1.01 13.66 0.02 14.32 -1 15 C-1.02685412 12.68756208 -1.04632841 10.3750373 -1.0625 8.0625 C-1.07410156 6.77472656 -1.08570312 5.48695313 -1.09765625 4.16015625 C-1 1 -1 1 0 0 Z " fill="#252D2F" transform="translate(121,466)"/>
72
+ <path d="M0 0 C0 2.97 0 5.94 0 9 C-0.99 9.495 -0.99 9.495 -2 10 C-3.32 6.7 -4.64 3.4 -6 0 C-2 -1 -2 -1 0 0 Z " fill="#363F40" transform="translate(254,523)"/>
73
+ <path d="M0 0 C2.64 0.33 5.28 0.66 8 1 C7.34 2.32 6.68 3.64 6 5 C3.69 5 1.38 5 -1 5 C-0.67 3.35 -0.34 1.7 0 0 Z " fill="#ECEDEA" transform="translate(880,489)"/>
74
+ <path d="M0 0 C1.953125 0.390625 3.90625 0.78125 5.859375 1.171875 C5.859375 2.161875 5.859375 3.151875 5.859375 4.171875 C1.899375 4.171875 -2.060625 4.171875 -6.140625 4.171875 C-2.140625 0.171875 -2.140625 0.171875 0 0 Z " fill="#252E2F" transform="translate(780.140625,467.828125)"/>
75
+ <path d="M0 0 C0.598125 0.20625 1.19625 0.4125 1.8125 0.625 C0.8225 0.955 -0.1675 1.285 -1.1875 1.625 C-1.5175 5.915 -1.8475 10.205 -2.1875 14.625 C-2.8475 14.295 -3.5075 13.965 -4.1875 13.625 C-4.6015625 10.90234375 -4.6015625 10.90234375 -4.8125 7.5625 C-4.88726563 6.45777344 -4.96203125 5.35304688 -5.0390625 4.21484375 C-5.08804688 3.36019531 -5.13703125 2.50554687 -5.1875 1.625 C-2.1875 -0.375 -2.1875 -0.375 0 0 Z " fill="#F1BA6A" transform="translate(678.1875,453.375)"/>
76
+ <path d="M0 0 C3 3.75 3 3.75 3 6 C0.03 6 -2.94 6 -6 6 C-5.67 4.68 -5.34 3.36 -5 2 C-2.4375 0.75 -2.4375 0.75 0 0 Z " fill="#262F30" transform="translate(743,538)"/>
77
+ <path d="M0 0 C3.63 0 7.26 0 11 0 C9.515 1.98 9.515 1.98 8 4 C4.8125 4.25 4.8125 4.25 2 4 C1.34 2.68 0.68 1.36 0 0 Z " fill="#323C3D" transform="translate(473,506)"/>
78
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C2.62227918 5.43940666 3.3864587 9.33862697 2 15 C1.01 15.495 1.01 15.495 0 16 C0 13.36 0 10.72 0 8 C-0.66 7.67 -1.32 7.34 -2 7 C-1.125 2.25 -1.125 2.25 0 0 Z " fill="#2A3133" transform="translate(294,496)"/>
79
+ <path d="M0 0 C1.134375 0.020625 2.26875 0.04125 3.4375 0.0625 C4.0975 2.0425 4.7575 4.0225 5.4375 6.0625 C4.4475 6.7225 3.4575 7.3825 2.4375 8.0625 C0.10416667 5.72916667 -2.22916667 3.39583333 -4.5625 1.0625 C-3.5625 0.0625 -3.5625 0.0625 0 0 Z " fill="#3F4749" transform="translate(594.5625,489.9375)"/>
80
+ <path d="M0 0 C0 0.33 0 0.66 0 1 C-2.31 1 -4.62 1 -7 1 C-7 1.66 -7 2.32 -7 3 C-7.99 3 -8.98 3 -10 3 C-10 3.66 -10 4.32 -10 5 C-11.65 5 -13.3 5 -15 5 C-15 4.34 -15 3.68 -15 3 C-15.66 2.67 -16.32 2.34 -17 2 C-11.19233704 0.4943096 -6.0018137 -0.21824777 0 0 Z " fill="#474C4E" transform="translate(750,506)"/>
81
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 3.63 1 7.26 1 11 C0.34 9.68 -0.32 8.36 -1 7 C-2.32 7.33 -3.64 7.66 -5 8 C-4.67 6.35 -4.34 4.7 -4 3 C-3.01 3 -2.02 3 -1 3 C-0.67 2.01 -0.34 1.02 0 0 Z " fill="#21282A" transform="translate(303,481)"/>
82
+ <path d="M0 0 C4.62 0 9.24 0 14 0 C14 0.66 14 1.32 14 2 C11 3 11 3 8.625 2.4375 C5.45352412 1.90892069 3.84890119 2.61624799 1 4 C0.67 2.68 0.34 1.36 0 0 Z " fill="#EEAB49" transform="translate(634,469)"/>
83
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 2.64 1 5.28 1 8 C-5.27 7.67 -11.54 7.34 -18 7 C-18 6.67 -18 6.34 -18 6 C-9.585 5.505 -9.585 5.505 -1 5 C-0.67 3.35 -0.34 1.7 0 0 Z " fill="#E5E8E7" transform="translate(931,557)"/>
84
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C1.34 3.31 0.68 5.62 0 8 C-0.99 8 -1.98 8 -3 8 C-3 5.69 -3 3.38 -3 1 C-2.01 0.67 -1.02 0.34 0 0 Z " fill="#383F41" transform="translate(621,536)"/>
85
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1.66 2.97 2.32 5.94 3 9 C-0.96 9 -4.92 9 -9 9 C-8.67 8.34 -8.34 7.68 -8 7 C-5.69 7 -3.38 7 -1 7 C-0.67 4.69 -0.34 2.38 0 0 Z " fill="#212A2A" transform="translate(808,513)"/>
86
+ <path d="M0 0 C0 3.73675706 -1.26051811 5.72174568 -3 9 C-3.391875 9.78375 -3.78375 10.5675 -4.1875 11.375 C-4.455625 11.91125 -4.72375 12.4475 -5 13 C-5.99 13 -6.98 13 -8 13 C-7.51294002 8.6164602 -6.21626567 6.93247752 -3 4 C-1.97676564 2.68441297 -0.96873032 1.35622245 0 0 Z " fill="#F1B65F" transform="translate(648,441)"/>
87
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C2.36923077 6.53846154 2.36923077 6.53846154 0.5 8.875 C-0.2425 9.431875 -0.2425 9.431875 -1 10 C-1.66 9.67 -2.32 9.34 -3 9 C-2.30058404 5.85262818 -1.23921302 2.97411124 0 0 Z " fill="#3E4646" transform="translate(228,582)"/>
88
+ <path d="M0 0 C0.66 0 1.32 0 2 0 C2.125 5.75 2.125 5.75 1 8 C0.34 8 -0.32 8 -1 8 C-1.33 8.99 -1.66 9.98 -2 11 C-3.13643966 7.59068103 -2.86747764 6.99664544 -1.5625 3.8125 C-1.13130859 2.73935547 -1.13130859 2.73935547 -0.69140625 1.64453125 C-0.46324219 1.10183594 -0.23507812 0.55914063 0 0 Z " fill="#363E3F" transform="translate(350,514)"/>
89
+ <path d="M0 0 C3.3 0 6.6 0 10 0 C10.33 1.32 10.66 2.64 11 4 C9.35 4 7.7 4 6 4 C6 3.67 6 3.34 6 3 C3.03 2.505 3.03 2.505 0 2 C0 1.34 0 0.68 0 0 Z " fill="#252C2E" transform="translate(384,488)"/>
90
+ <path d="M0 0 C0.845625 0.804375 1.69125 1.60875 2.5625 2.4375 C5.8515158 5.21628662 8.68629604 5.74117776 13 6 C13 6.33 13 6.66 13 7 C11.20866022 7.05391993 9.41686101 7.09275571 7.625 7.125 C6.62726562 7.14820313 5.62953125 7.17140625 4.6015625 7.1953125 C2 7 2 7 0 5 C-0.125 2.375 -0.125 2.375 0 0 Z " fill="#EAC17F" transform="translate(677,535)"/>
91
+ <path d="M0 0 C0.33 1.65 0.66 3.3 1 5 C-1.97 5 -4.94 5 -8 5 C-3 0 -3 0 0 0 Z " fill="#283132" transform="translate(175,531)"/>
92
+ <path d="M0 0 C2.97 0 5.94 0 9 0 C9.33 0.66 9.66 1.32 10 2 C3.71428571 4.42857143 3.71428571 4.42857143 0 3 C0 2.01 0 1.02 0 0 Z " fill="#374041" transform="translate(739,522)"/>
93
+ <path d="M0 0 C0.66 0 1.32 0 2 0 C2.33 3.63 2.66 7.26 3 11 C2.01 11 1.02 11 0 11 C0 7.37 0 3.74 0 0 Z " fill="#252F31" transform="translate(304,520)"/>
94
+ <path d="M0 0 C0 0.66 0 1.32 0 2 C-4.95 2 -9.9 2 -15 2 C-11.5998228 0.2999114 -9.96676075 -0.32111638 -6.375 -0.6875 C-5.21097656 -0.81705078 -5.21097656 -0.81705078 -4.0234375 -0.94921875 C-2 -1 -2 -1 0 0 Z " fill="#222B2E" transform="translate(507,520)"/>
95
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1.33 2.97 1.66 5.94 2 9 C1.01 9.33 0.02 9.66 -1 10 C-2.1875 7.8125 -2.1875 7.8125 -3 5 C-1.6875 2.1875 -1.6875 2.1875 0 0 Z " fill="#394143" transform="translate(421,489)"/>
96
+ <path d="M0 0 C0.66 0 1.32 0 2 0 C2 3.96 2 7.92 2 12 C1.01 11.67 0.02 11.34 -1 11 C-0.67 7.37 -0.34 3.74 0 0 Z " fill="#293234" transform="translate(238,488)"/>
97
+ <path d="M0 0 C1.32 0 2.64 0 4 0 C4 0.99 4 1.98 4 3 C4.66 3 5.32 3 6 3 C7.0625 4.8125 7.0625 4.8125 8 7 C7.67 7.99 7.34 8.98 7 10 C5.83043409 8.52312468 4.66441854 7.04343707 3.5 5.5625 C2.8503125 4.73878906 2.200625 3.91507812 1.53125 3.06640625 C0 1 0 1 0 0 Z " fill="#FDEDC6" transform="translate(674,437)"/>
98
+ <path d="M0 0 C3.23739279 1.6186964 4.42244771 4.84489543 6 8 C2.31245243 7.50168276 0.39509338 6.89932357 -2 4 C-1.34 2.68 -0.68 1.36 0 0 Z " fill="#21292B" transform="translate(230,587)"/>
99
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1 3.3 1 6.6 1 10 C0.01 10.495 0.01 10.495 -1 11 C-2.1875 8.3125 -2.1875 8.3125 -3 5 C-1.6875 2.125 -1.6875 2.125 0 0 Z " fill="#343E3F" transform="translate(533,527)"/>
100
+ <path d="M0 0 C0.33 0 0.66 0 1 0 C1.22151549 1.79008467 1.42682213 3.58218162 1.625 5.375 C1.74101563 6.37273438 1.85703125 7.37046875 1.9765625 8.3984375 C1.98429688 9.25695312 1.99203125 10.11546875 2 11 C1.34 11.66 0.68 12.32 0 13 C-0.66 10.03 -1.32 7.06 -2 4 C-1.34 4 -0.68 4 0 4 C0 2.68 0 1.36 0 0 Z " fill="#3A4244" transform="translate(554,513)"/>
101
+ <path d="M0 0 C0.33 0.66 0.66 1.32 1 2 C-3.51718381 3.36884358 -6.58774263 2.47075246 -11 1 C-6.78915963 -1.80722691 -4.88445782 -0.94537893 0 0 Z " fill="#383F42" transform="translate(399,468)"/>
102
+ <path d="M0 0 C-0.66 0.66 -1.32 1.32 -2 2 C-1.34 2.66 -0.68 3.32 0 4 C-3.96 3.67 -7.92 3.34 -12 3 C-7.27030266 -0.54727301 -5.56673301 -1.35407019 0 0 Z " fill="#DEE2DD" transform="translate(167,435)"/>
103
+ <path d="M0 0 C0.33 0.66 0.66 1.32 1 2 C0.0625 4.625 0.0625 4.625 -1 7 C-1.33 6.34 -1.66 5.68 -2 5 C-4.32156597 4.59270772 -6.6568787 4.25561323 -9 4 C-9 3.67 -9 3.34 -9 3 C-6.03 2.01 -3.06 1.02 0 0 Z " fill="#384042" transform="translate(891,537)"/>
104
+ <path d="M0 0 C0.66 0 1.32 0 2 0 C2 2.31 2 4.62 2 7 C2.66 7 3.32 7 4 7 C4 7.99 4 8.98 4 10 C2.68 10 1.36 10 0 10 C0 6.7 0 3.4 0 0 Z " fill="#222C2D" transform="translate(296,537)"/>
105
+ <path d="M0 0 C1.7074998 1.28062485 3.37373596 2.61767557 5 4 C5 4.66 5 5.32 5 6 C1.04 6 -2.92 6 -7 6 C-7 5.67 -7 5.34 -7 5 C-3.535 4.505 -3.535 4.505 0 4 C0 2.68 0 1.36 0 0 Z " fill="#E5C491" transform="translate(683,450)"/>
106
+ <path d="M0 0 C5.94 0.99 5.94 0.99 12 2 C12 2.66 12 3.32 12 4 C10.56416999 4.10836453 9.1259798 4.18576167 7.6875 4.25 C6.48673828 4.31960938 6.48673828 4.31960938 5.26171875 4.390625 C3 4 3 4 0 0 Z " fill="#FBF3DC" transform="translate(667,563)"/>
107
+ <path d="M0 0 C1.65 0 3.3 0 5 0 C5.33 1.98 5.66 3.96 6 6 C3.69 5.01 1.38 4.02 -1 3 C-0.67 2.01 -0.34 1.02 0 0 Z " fill="#3B4344" transform="translate(848,554)"/>
108
+ <path d="M0 0 C3 4 3 4 4 7 C0.25 10 0.25 10 -2 10 C-1.34 6.7 -0.68 3.4 0 0 Z " fill="#3E4648" transform="translate(187,506)"/>
109
+ <path d="M0 0 C1.9451 2.91765 2.45276317 4.62537285 3 8 C1.02 8.99 1.02 8.99 -1 10 C-0.67 6.7 -0.34 3.4 0 0 Z " fill="#494C4D" transform="translate(715,500)"/>
110
+ <path d="M0 0 C2.9375 1.1875 2.9375 1.1875 3.9375 3.1875 C1.02267222 3.99717438 -0.52363217 4.40595993 -3.375 3.25 C-3.931875 2.899375 -4.48875 2.54875 -5.0625 2.1875 C-5.0625 1.5275 -5.0625 0.8675 -5.0625 0.1875 C-3.0625 -0.8125 -3.0625 -0.8125 0 0 Z " fill="#E5E6E6" transform="translate(606.0625,467.8125)"/>
111
+ <path d="M0 0 C0.5625 1.9375 0.5625 1.9375 1 4 C0 5 0 5 -3.0625 5.0625 C-4.031875 5.041875 -5.00125 5.02125 -6 5 C-6.33 4.34 -6.66 3.68 -7 3 C-4.69 2.01 -2.38 1.02 0 0 Z " fill="#3B4345" transform="translate(485,537)"/>
112
+ <path d="M0 0 C0.99 0.33 1.98 0.66 3 1 C2.01 3.97 1.02 6.94 0 10 C-0.33 10 -0.66 10 -1 10 C-1.125 2.25 -1.125 2.25 0 0 Z " fill="#3F4648" transform="translate(322,486)"/>
113
+ <path d="M0 0 C1.65 0 3.3 0 5 0 C5 0.99 5 1.98 5 3 C3.35 3.66 1.7 4.32 0 5 C0 3.35 0 1.7 0 0 Z " fill="#282D30" transform="translate(738,552)"/>
114
+ <path d="M0 0 C0.91007813 0.00902344 1.82015625 0.01804687 2.7578125 0.02734375 C3.45648438 0.03894531 4.15515625 0.05054688 4.875 0.0625 C5.205 0.7225 5.535 1.3825 5.875 2.0625 C4.82699219 2.15337891 4.82699219 2.15337891 3.7578125 2.24609375 C2.84773437 2.32988281 1.93765625 2.41367187 1 2.5 C0.09507812 2.58121094 -0.80984375 2.66242188 -1.7421875 2.74609375 C-4.13610861 2.93239285 -4.13610861 2.93239285 -6.125 4.0625 C-6.455 3.0725 -6.785 2.0825 -7.125 1.0625 C-4.60024538 -0.19987731 -2.81299534 -0.03606404 0 0 Z " fill="#353E3F" transform="translate(128.125,458.9375)"/>
115
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C0.515 4.465 0.515 4.465 -1 8 C-1.66 8 -2.32 8 -3 8 C-3 6.02 -3 4.04 -3 2 C-2.01 2 -1.02 2 0 2 C0 1.34 0 0.68 0 0 Z " fill="#3F4647" transform="translate(294,556)"/>
116
+ <path d="M0 0 C1.51400391 0.01740234 1.51400391 0.01740234 3.05859375 0.03515625 C4.07050781 0.04417969 5.08242188 0.05320312 6.125 0.0625 C7.29869141 0.07990234 7.29869141 0.07990234 8.49609375 0.09765625 C8.49609375 0.42765625 8.49609375 0.75765625 8.49609375 1.09765625 C5.52609375 1.09765625 2.55609375 1.09765625 -0.50390625 1.09765625 C-0.50390625 1.75765625 -0.50390625 2.41765625 -0.50390625 3.09765625 C-2.81390625 3.09765625 -5.12390625 3.09765625 -7.50390625 3.09765625 C-6.86453125 2.78828125 -6.22515625 2.47890625 -5.56640625 2.16015625 C-1.48563778 0.05794219 -1.48563778 0.05794219 0 0 Z " fill="#484D52" transform="translate(463.50390625,540.90234375)"/>
117
+ <path d="M0 0 C0.33 0.66 0.66 1.32 1 2 C2.32 1.67 3.64 1.34 5 1 C3.9024777 3.99324263 3.32317108 4.84610901 0.375 6.25 C-0.40875 6.4975 -1.1925 6.745 -2 7 C-1.34 4.69 -0.68 2.38 0 0 Z " fill="#E7EAE6" transform="translate(306,531)"/>
118
+ <path d="M0 0 C0.33 0.99 0.66 1.98 1 3 C-0.98 4.98 -2.96 6.96 -5 9 C-5.99 8.67 -6.98 8.34 -8 8 C-5.33333333 5.33333333 -2.66666667 2.66666667 0 0 Z " fill="#3A4343" transform="translate(601,528)"/>
119
+ <path d="M0 0 C0.99 0 1.98 0 3 0 C3.125 2.875 3.125 2.875 3 6 C2.34 6.66 1.68 7.32 1 8 C0 7 0 7 -0.0625 3.4375 C-0.041875 2.303125 -0.02125 1.16875 0 0 Z " fill="#222A2B" transform="translate(272,520)"/>
120
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C1.67 1.66 1.34 2.32 1 3 C0.95977609 5.3329866 0.95679753 7.66706666 1 10 C0.34 10 -0.32 10 -1 10 C-1.9765625 3.9453125 -1.9765625 3.9453125 -2 2 C-1.34 1.34 -0.68 0.68 0 0 Z " fill="#21292B" transform="translate(359,502)"/>
121
+ <path d="M0 0 C3.63 0.66 7.26 1.32 11 2 C11 2.33 11 2.66 11 3 C7.37 3 3.74 3 0 3 C0 2.01 0 1.02 0 0 Z " fill="#21282C" transform="translate(387,469)"/>
122
+ <path d="M0 0 C2.31 0.33 4.62 0.66 7 1 C6.67 1.66 6.34 2.32 6 3 C4.35 3 2.7 3 1 3 C1 3.99 1 4.98 1 6 C0.01 6 -0.98 6 -2 6 C-1.34 4.02 -0.68 2.04 0 0 Z " fill="#383F41" transform="translate(305,468)"/>
123
+ <path d="M0 0 C1.65 0.33 3.3 0.66 5 1 C5 1.99 5 2.98 5 4 C3.35 4 1.7 4 0 4 C0 2.68 0 1.36 0 0 Z " fill="#212A2B" transform="translate(549,552)"/>
124
+ <path d="M0 0 C0.94875 0.04125 1.8975 0.0825 2.875 0.125 C2.875 0.785 2.875 1.445 2.875 2.125 C0.895 2.785 -1.085 3.445 -3.125 4.125 C-3.785 3.465 -4.445 2.805 -5.125 2.125 C-3.125 0.125 -3.125 0.125 0 0 Z " fill="#434B4C" transform="translate(181.125,553.875)"/>
125
+ <path d="M0 0 C1.9375 0.3125 1.9375 0.3125 4 1 C4.33 1.99 4.66 2.98 5 4 C2.69 4 0.38 4 -2 4 C-1.34 2.68 -0.68 1.36 0 0 Z " fill="#1F292A" transform="translate(587,540)"/>
126
+ <path d="M0 0 C0 2.31 0 4.62 0 7 C-0.99 7.495 -0.99 7.495 -2 8 C-2 7.01 -2 6.02 -2 5 C-2.66 5 -3.32 5 -4 5 C-3.625 3.0625 -3.625 3.0625 -3 1 C-1 0 -1 0 0 0 Z " fill="#242C2E" transform="translate(185,520)"/>
127
+ <path d="M0 0 C0.66 0 1.32 0 2 0 C1.67 2.64 1.34 5.28 1 8 C0.01 7.67 -0.98 7.34 -2 7 C-1.34 7 -0.68 7 0 7 C0 6.01 0 5.02 0 4 C-1.32 3.67 -2.64 3.34 -4 3 C-2.68 2.67 -1.36 2.34 0 2 C0 1.34 0 0.68 0 0 Z " fill="#242B2D" transform="translate(616,486)"/>
128
+ <path d="M0 0 C3.125 -0.1875 3.125 -0.1875 6 0 C6 0.99 6 1.98 6 3 C3.36 3 0.72 3 -2 3 C-1.34 2.01 -0.68 1.02 0 0 Z " fill="#1E2628" transform="translate(842,477)"/>
129
+ <path d="M0 0 C2.475 0.495 2.475 0.495 5 1 C4.67 2.32 4.34 3.64 4 5 C2.68 5.33 1.36 5.66 0 6 C0 4.02 0 2.04 0 0 Z " fill="#262D2B" transform="translate(920,472)"/>
130
+ <path d="M0 0 C1.65 0 3.3 0 5 0 C5.33 0.99 5.66 1.98 6 3 C3.69 3 1.38 3 -1 3 C-0.67 2.01 -0.34 1.02 0 0 Z " fill="#1F2728" transform="translate(568,560)"/>
131
+ <path d="M0 0 C3.39609044 1.19322096 5.62433927 2.28495916 8 5 C8.66 5.66 9.32 6.32 10 7 C7.29068581 6.84518205 5.53415961 6.51827919 3.5546875 4.59765625 C2.32320358 3.10228292 1.1570163 1.5537076 0 0 Z " fill="#F0B761" transform="translate(656,551)"/>
132
+ <path d="M0 0 C-3.6441774 2.4294516 -5.71241272 2.16179575 -10 2 C-10 1.34 -10 0.68 -10 0 C-6.33694766 -0.74926071 -3.57644848 -1.2380014 0 0 Z " fill="#283033" transform="translate(762,542)"/>
133
+ <path d="M0 0 C1.32 0 2.64 0 4 0 C4 1.65 4 3.3 4 5 C3.01 5 2.02 5 1 5 C0.34 3.68 -0.32 2.36 -1 1 C-0.67 0.67 -0.34 0.34 0 0 Z " fill="#232B2D" transform="translate(780,539)"/>
134
+ <path d="M0 0 C0 1.98 0 3.96 0 6 C-0.99 6 -1.98 6 -3 6 C-3.66 4.68 -4.32 3.36 -5 2 C-1.125 0 -1.125 0 0 0 Z " fill="#E8EBE7" transform="translate(611,497)"/>
135
+ <path d="M0 0 C2 3 2 3 1.625 5.1875 C1.41875 5.785625 1.2125 6.38375 1 7 C0.01 7 -0.98 7 -2 7 C-2 5.35 -2 3.7 -2 2 C-1.34 2 -0.68 2 0 2 C0 1.34 0 0.68 0 0 Z " fill="#3C4748" transform="translate(260,485)"/>
136
+ <path d="M0 0 C0.99 0.33 1.98 0.66 3 1 C3.33 2.98 3.66 4.96 4 7 C2.35 6.01 0.7 5.02 -1 4 C-0.67 2.68 -0.34 1.36 0 0 Z " fill="#E2E2DE" transform="translate(896,467)"/>
137
+ <path d="M0 0 C2.97 0 5.94 0 9 0 C9 1.32 9 2.64 9 4 C8.01 4 7.02 4 6 4 C5.67 3.34 5.34 2.68 5 2 C2.47266765 1.34444881 2.47266765 1.34444881 0 1 C0 0.67 0 0.34 0 0 Z " fill="#464C4E" transform="translate(396,466)"/>
138
+ <path d="M0 0 C1.32 0.33 2.64 0.66 4 1 C4 1.99 4 2.98 4 4 C1.69 4.33 -0.62 4.66 -3 5 C-2.01 3.35 -1.02 1.7 0 0 Z " fill="#E7C489" transform="translate(660,423)"/>
139
+ <path d="M0 0 C1.32 0.33 2.64 0.66 4 1 C4.33 2.65 4.66 4.3 5 6 C4.01 6 3.02 6 2 6 C1.34 4.02 0.68 2.04 0 0 Z " fill="#48381B" transform="translate(690,541)"/>
140
+ <path d="M0 0 C1.32 0.99 2.64 1.98 4 3 C3.67 3.66 3.34 4.32 3 5 C1.35 5 -0.3 5 -2 5 C-1.34 3.35 -0.68 1.7 0 0 Z " fill="#252D2E" transform="translate(858,531)"/>
141
+ <path d="M0 0 C0.66 0.99 1.32 1.98 2 3 C1.67 3.99 1.34 4.98 1 6 C-1.5625 7.1875 -1.5625 7.1875 -4 8 C-2.68 5.36 -1.36 2.72 0 0 Z " fill="#3C4345" transform="translate(373,482)"/>
142
+ <path d="M0 0 C1.74959319 2.62438979 2.62068453 3.96547627 3 7 C2.01 8.485 2.01 8.485 1 10 C0.34 9.67 -0.32 9.34 -1 9 C-0.67 8.34 -0.34 7.68 0 7 C0.04022391 4.6670134 0.04320247 2.33293334 0 0 Z " fill="#283030" transform="translate(360,477)"/>
143
+ <path d="M0 0 C0 0.66 0 1.32 0 2 C-0.66 2 -1.32 2 -2 2 C-2 2.99 -2 3.98 -2 5 C-3.32 5 -4.64 5 -6 5 C-5.6875 3.0625 -5.6875 3.0625 -5 1 C-2 0 -2 0 0 0 Z " fill="#EAECEA" transform="translate(891,561)"/>
144
+ <path d="M0 0 C0.33 0.66 0.66 1.32 1 2 C0.01 3.32 -0.98 4.64 -2 6 C-3.32 5.34 -4.64 4.68 -6 4 C-4.02 2.68 -2.04 1.36 0 0 Z " fill="#F0E9D5" transform="translate(715,553)"/>
145
+ <path d="M0 0 C1.98 0 3.96 0 6 0 C6.33 1.65 6.66 3.3 7 5 C3.535 3.02 3.535 3.02 0 1 C0 0.67 0 0.34 0 0 Z " fill="#3D4545" transform="translate(432,552)"/>
146
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C1.60196439 3.88575819 1.20990931 4.82189513 -1.0625 6.75 C-1.701875 7.1625 -2.34125 7.575 -3 8 C-1.125 1.125 -1.125 1.125 0 0 Z " fill="#E8EAE8" transform="translate(299,549)"/>
147
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C2 1.99 2 2.98 2 4 C-1.13349732 5.04449911 -1.98968256 4.93423645 -5 4 C-3.35 2.68 -1.7 1.36 0 0 Z " fill="#E9ECE8" transform="translate(198,546)"/>
148
+ <path d="M0 0 C1.32 0.33 2.64 0.66 4 1 C4 4 4 4 2.5 5.6875 C2.005 6.120625 1.51 6.55375 1 7 C0.67 4.69 0.34 2.38 0 0 Z " fill="#39403F" transform="translate(802,545)"/>
149
+ <path d="M0 0 C2 1.3125 2 1.3125 4 3 C4 3.99 4 4.98 4 6 C2.02 5.34 0.04 4.68 -2 4 C-1.34 2.68 -0.68 1.36 0 0 Z " fill="#E2E5E3" transform="translate(617,530)"/>
150
+ <path d="M0 0 C2 1.8125 2 1.8125 4 4 C4 4.99 4 5.98 4 7 C2.68 7.33 1.36 7.66 0 8 C0 5.36 0 2.72 0 0 Z " fill="#212B2C" transform="translate(552,520)"/>
151
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C0.1875 4 0.1875 4 -2 7 C-2.99 7 -3.98 7 -5 7 C-3.35 4.69 -1.7 2.38 0 0 Z " fill="#414747" transform="translate(715,519)"/>
152
+ <path d="M0 0 C2.50037734 2.17424117 3.43628586 3.73045798 4 7 C2.68 6.67 1.36 6.34 0 6 C0 4.02 0 2.04 0 0 Z " fill="#EDEEEE" transform="translate(483,496)"/>
153
+ <path d="M0 0 C0.66 0.33 1.32 0.66 2 1 C1.67 2.98 1.34 4.96 1 7 C0.34 6.67 -0.32 6.34 -1 6 C-1.625 3.4375 -1.625 3.4375 -2 1 C-1.34 0.67 -0.68 0.34 0 0 Z " fill="#202728" transform="translate(182,471)"/>
154
+ <path d="M0 0 C0.33 1.32 0.66 2.64 1 4 C3.31 4 5.62 4 8 4 C8 4.33 8 4.66 8 5 C4.7 5 1.4 5 -2 5 C-1.34 3.35 -0.68 1.7 0 0 Z " fill="#E3C38E" transform="translate(638,451)"/>
155
+ </svg>
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="77" height="47" fill="none" aria-labelledby="vite-logo-title" viewBox="0 0 77 47"><title id="vite-logo-title">Vite</title><style>.parenthesis{fill:#000}@media (prefers-color-scheme:dark){.parenthesis{fill:#fff}}</style><path fill="#9135ff" d="M40.151 45.71c-.663.844-2.02.374-2.02-.699V34.708a2.26 2.26 0 0 0-2.262-2.262H24.493c-.92 0-1.457-1.04-.92-1.788l7.479-10.471c1.07-1.498 0-3.578-1.842-3.578H15.443c-.92 0-1.456-1.04-.92-1.788l9.696-13.576c.213-.297.556-.474.92-.474h28.894c.92 0 1.456 1.04.92 1.788l-7.48 10.472c-1.07 1.497 0 3.578 1.842 3.578h11.376c.944 0 1.474 1.087.89 1.83L40.153 45.712z"/><mask id="a" width="48" height="47" x="14" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="#000" d="M40.047 45.71c-.663.843-2.02.374-2.02-.699V34.708a2.26 2.26 0 0 0-2.262-2.262H24.389c-.92 0-1.457-1.04-.92-1.788l7.479-10.472c1.07-1.497 0-3.578-1.842-3.578H15.34c-.92 0-1.456-1.04-.92-1.788l9.696-13.575c.213-.297.556-.474.92-.474H53.93c.92 0 1.456 1.04.92 1.788L47.37 13.03c-1.07 1.498 0 3.578 1.842 3.578h11.376c.944 0 1.474 1.088.89 1.831L40.049 45.712z"/></mask><g mask="url(#a)"><g filter="url(#b)"><ellipse cx="5.508" cy="14.704" fill="#eee6ff" rx="5.508" ry="14.704" transform="rotate(269.814 20.96 11.29)scale(-1 1)"/></g><g filter="url(#c)"><ellipse cx="10.399" cy="29.851" fill="#eee6ff" rx="10.399" ry="29.851" transform="rotate(89.814 -16.902 -8.275)scale(1 -1)"/></g><g filter="url(#d)"><ellipse cx="5.508" cy="30.487" fill="#8900ff" rx="5.508" ry="30.487" transform="rotate(89.814 -19.197 -7.127)scale(1 -1)"/></g><g filter="url(#e)"><ellipse cx="5.508" cy="30.599" fill="#8900ff" rx="5.508" ry="30.599" transform="rotate(89.814 -25.928 4.177)scale(1 -1)"/></g><g filter="url(#f)"><ellipse cx="5.508" cy="30.599" fill="#8900ff" rx="5.508" ry="30.599" transform="rotate(89.814 -25.738 5.52)scale(1 -1)"/></g><g filter="url(#g)"><ellipse cx="14.072" cy="22.078" fill="#eee6ff" rx="14.072" ry="22.078" transform="rotate(93.35 31.245 55.578)scale(-1 1)"/></g><g filter="url(#h)"><ellipse cx="3.47" cy="21.501" fill="#8900ff" rx="3.47" ry="21.501" transform="rotate(89.009 35.419 55.202)scale(-1 1)"/></g><g filter="url(#i)"><ellipse cx="3.47" cy="21.501" fill="#8900ff" rx="3.47" ry="21.501" transform="rotate(89.009 35.419 55.202)scale(-1 1)"/></g><g filter="url(#j)"><ellipse cx="14.592" cy="9.743" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(39.51 14.592 9.743)"/></g><g filter="url(#k)"><ellipse cx="61.728" cy="-5.321" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(37.892 61.728 -5.32)"/></g><g filter="url(#l)"><ellipse cx="55.618" cy="7.104" fill="#00c2ff" rx="5.971" ry="9.665" transform="rotate(37.892 55.618 7.104)"/></g><g filter="url(#m)"><ellipse cx="12.326" cy="39.103" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(37.892 12.326 39.103)"/></g><g filter="url(#n)"><ellipse cx="12.326" cy="39.103" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(37.892 12.326 39.103)"/></g><g filter="url(#o)"><ellipse cx="49.857" cy="30.678" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(37.892 49.857 30.678)"/></g><g filter="url(#p)"><ellipse cx="52.623" cy="33.171" fill="#00c2ff" rx="5.971" ry="15.297" transform="rotate(37.892 52.623 33.17)"/></g></g><path d="M6.919 0c-9.198 13.166-9.252 33.575 0 46.789h6.215c-9.25-13.214-9.196-33.623 0-46.789zm62.424 0h-6.215c9.198 13.166 9.252 33.575 0 46.789h6.215c9.25-13.214 9.196-33.623 0-46.789" class="parenthesis"/><defs><filter id="b" width="60.045" height="41.654" x="-5.564" y="16.92" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="7.659"/></filter><filter id="c" width="90.34" height="51.437" x="-40.407" y="-6.762" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="7.659"/></filter><filter id="d" width="79.355" height="29.4" x="-35.435" y="2.801" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="e" width="79.579" height="29.4" x="-30.84" y="20.8" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="f" width="79.579" height="29.4" x="-29.307" y="21.949" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="g" width="74.749" height="58.852" x="29.961" y="-17.13" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="7.659"/></filter><filter id="h" width="61.377" height="25.362" x="37.754" y="3.055" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="i" width="61.377" height="25.362" x="37.754" y="3.055" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="j" width="56.045" height="63.649" x="-13.43" y="-22.082" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="k" width="54.814" height="64.646" x="34.321" y="-37.644" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="l" width="33.541" height="35.313" x="38.847" y="-10.552" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="m" width="54.814" height="64.646" x="-15.081" y="6.78" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="n" width="54.814" height="64.646" x="-15.081" y="6.78" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="o" width="54.814" height="64.646" x="22.45" y="-1.645" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="p" width="39.409" height="43.623" x="32.919" y="11.36" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter></defs></svg>
@@ -0,0 +1,64 @@
1
+ import React from "react";
2
+ import { useDyrected } from "../../providers/dyrected-provider";
3
+ import { useQuery } from "@tanstack/react-query";
4
+ import { LoginPage } from "../../pages/auth/login-page";
5
+ import { FirstUserPage } from "../../pages/auth/first-user-page";
6
+
7
+ /**
8
+ * AuthGate protects the admin dashboard and handles the initial bootstrap flow.
9
+ *
10
+ * 1. Checks if any user collection has 'auth: true'.
11
+ * 2. If yes, checks if at least one user exists (initialized).
12
+ * 3. If not initialized, shows the 'First User' registration page.
13
+ * 4. If initialized but not logged in, shows the 'Login' page.
14
+ * 5. If logged in (or no auth required), renders the children.
15
+ */
16
+ export function AuthGate({ children }: { children: React.ReactNode }) {
17
+ const { client, user, setToken, schemas } = useDyrected();
18
+
19
+ // 1. Prefer __admins as the sole dashboard auth collection; fall back to the first auth collection.
20
+ const authCollection =
21
+ schemas?.collections.find((c: any) => c.slug === '__admins') ??
22
+ schemas?.collections.find((c: any) => c.auth);
23
+
24
+ // 2. Check if the collection is initialized
25
+ const { data: initData, isLoading: isLoadingInit } = useQuery({
26
+ queryKey: ["auth-init", authCollection?.slug],
27
+ queryFn: () => client!.collection(authCollection!.slug).isInitialized(),
28
+ enabled: !!client && !!authCollection,
29
+ });
30
+
31
+ const isLoading = !schemas || (authCollection && isLoadingInit);
32
+
33
+ if (isLoading) {
34
+ return (
35
+ <div className="flex h-screen items-center justify-center bg-background">
36
+ <div className="flex flex-col items-center gap-4">
37
+ <div className="h-8 w-8 animate-spin rounded-full border-2 border-primary border-t-transparent" />
38
+ <p className="text-sm text-muted-foreground animate-pulse">Authenticating...</p>
39
+ </div>
40
+ </div>
41
+ );
42
+ }
43
+
44
+ // If no auth collection exists, the app is open
45
+ if (!authCollection) {
46
+ return <>{children}</>;
47
+ }
48
+
49
+ // If not initialized, show first user registration
50
+ if (initData && !initData.initialized) {
51
+ return <FirstUserPage collectionSlug={authCollection.slug} onComplete={(data: any) => {
52
+ setToken(data.token);
53
+ }} />;
54
+ }
55
+
56
+ // If not logged in, show login page
57
+ if (!user) {
58
+ return <LoginPage collectionSlug={authCollection.slug} onLogin={(data: any) => {
59
+ setToken(data.token);
60
+ }} />;
61
+ }
62
+
63
+ return <>{children}</>;
64
+ }
@@ -0,0 +1,45 @@
1
+ import { Component, type ErrorInfo, type ReactNode } from "react";
2
+
3
+ interface Props {
4
+ children: ReactNode;
5
+ fallback?: ReactNode;
6
+ }
7
+
8
+ interface State {
9
+ hasError: boolean;
10
+ error: Error | null;
11
+ }
12
+
13
+ export class ErrorBoundary extends Component<Props, State> {
14
+ public state: State = {
15
+ hasError: false,
16
+ error: null,
17
+ };
18
+
19
+ public static getDerivedStateFromError(error: Error): State {
20
+ return { hasError: true, error };
21
+ }
22
+
23
+ public componentDidCatch(error: Error, errorInfo: ErrorInfo) {
24
+ console.error("Uncaught error in AdminUI:", error, errorInfo);
25
+ }
26
+
27
+ public render() {
28
+ if (this.state.hasError) {
29
+ return this.props.fallback || (
30
+ <div className="flex-1 flex flex-col items-center justify-center p-12 bg-destructive/5 text-destructive min-h-[400px]">
31
+ <h2 className="text-xl font-bold mb-2">Something went wrong</h2>
32
+ <p className="text-sm opacity-80 mb-4">{this.state.error?.message}</p>
33
+ <button
34
+ onClick={() => window.location.reload()}
35
+ className="px-4 py-2 bg-destructive text-destructive-foreground rounded-md text-sm font-medium hover:bg-destructive/90 transition-colors"
36
+ >
37
+ Reload Page
38
+ </button>
39
+ </div>
40
+ );
41
+ }
42
+
43
+ return this.props.children;
44
+ }
45
+ }
@@ -0,0 +1,111 @@
1
+ import type { Field as FieldSchema } from "@dyrected/sdk"
2
+ import { TextField } from "./fields/text-field"
3
+ import { TextAreaField } from "./fields/text-area-field"
4
+ import { SwitchField } from "./fields/switch-field"
5
+ import { SelectField } from "./fields/select-field"
6
+ import { RadioField } from "./fields/radio-field"
7
+ import { MultiSelect } from "./fields/multi-select"
8
+ import { MediaPicker } from "./fields/media-picker"
9
+ import { RichTextEditor } from "./fields/rich-text-editor"
10
+ import { JsonEditor } from "./fields/json-editor"
11
+ import { DatePicker } from "./fields/date-picker"
12
+ import { RelationshipPicker } from "./fields/relationship-picker"
13
+ import jexl from 'jexl'
14
+
15
+ interface FieldRendererProps {
16
+ schema: FieldSchema
17
+ field: any
18
+ collection: string
19
+ context?: { user: any, schemas?: any, siblingData: any }
20
+ }
21
+
22
+ /**
23
+ * FieldRenderer (Field Registry/Dispatcher)
24
+ *
25
+ * This component is a pure dispatcher that maps a field schema type to its
26
+ * corresponding UI component (e.g., TextField, MediaPicker, SelectField).
27
+ *
28
+ * It receives standard props (field, schema, collection, context) and ensures
29
+ * they are passed down to the specialized field implementation.
30
+ */
31
+ export function FieldRenderer({ schema, field, collection, context }: FieldRendererProps) {
32
+
33
+ // Evaluate Update Access
34
+ const updateAccess = (schema.access as any)?.update
35
+ let canUpdate = true
36
+ if (updateAccess === false) {
37
+ canUpdate = false
38
+ } else if (typeof updateAccess === 'string' && context) {
39
+ try {
40
+ canUpdate = jexl.evalSync(updateAccess, { user: context.user, ...context.siblingData })
41
+ } catch (e) {
42
+ console.warn("Update access eval failed:", e)
43
+ }
44
+ }
45
+
46
+ const disabled = schema.admin?.readOnly || !canUpdate
47
+
48
+ switch (schema.type) {
49
+ case "textarea":
50
+ return <TextAreaField schema={schema} field={field} disabled={disabled} />
51
+ case "boolean":
52
+ return <SwitchField field={field} disabled={disabled} />
53
+ case "select":
54
+ if (schema.admin?.layout === "radio") {
55
+ return <RadioField schema={schema} field={field} disabled={disabled} />
56
+ }
57
+ return <SelectField schema={schema} field={field} disabled={disabled} />
58
+ case "multiSelect":
59
+ return (
60
+ <MultiSelect
61
+ options={schema.options as any}
62
+ value={field.value || []}
63
+ onChange={field.onChange}
64
+ disabled={disabled}
65
+ />
66
+ )
67
+ case "image" as any:
68
+ return (
69
+ <MediaPicker
70
+ collection={collection}
71
+ value={field.value}
72
+ onChange={field.onChange}
73
+ disabled={disabled}
74
+ multiple={(schema as any).hasMany}
75
+ />
76
+ )
77
+ case "richText":
78
+ return <RichTextEditor collection={collection} value={field.value} onChange={field.onChange} disabled={disabled} />
79
+ case "json":
80
+ return <JsonEditor value={field.value} onChange={field.onChange} disabled={disabled} />
81
+ case "date":
82
+ return <DatePicker value={field.value} onChange={field.onChange} disabled={disabled} />
83
+ case "relationship":
84
+ const isMediaRel = (schema as any).relationTo === "media" ||
85
+ (context?.schemas?.collections?.find((c: any) => c.slug === (schema as any).relationTo)?.upload)
86
+
87
+ if (isMediaRel) {
88
+ return (
89
+ <MediaPicker
90
+ collection={collection}
91
+ value={field.value}
92
+ onChange={field.onChange}
93
+ multiple={(schema as any).hasMany}
94
+ disabled={disabled}
95
+ />
96
+ )
97
+ }
98
+
99
+ return (
100
+ <RelationshipPicker
101
+ value={field.value}
102
+ onChange={field.onChange}
103
+ relationTo={(schema as any).relationTo || (schema as any).collection}
104
+ multiple={(schema as any).hasMany}
105
+ disabled={disabled}
106
+ />
107
+ )
108
+ default:
109
+ return <TextField schema={schema} field={field} disabled={disabled} />
110
+ }
111
+ }