@kando-env/kando-ui 1.2.278-alpha.47 → 1.2.278-alpha.6
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.
- package/lib/Widgets/Map/Map.js +9 -6
- package/lib/Widgets/Map/Map.scss +5 -17
- package/lib/Widgets/Map/MapUtils.js +11 -11
- package/lib/Widgets/Map/areas/AreaPolygon.js +23 -75
- package/lib/Widgets/Map/areas/AreaPolygons.js +3 -6
- package/lib/Widgets/Map/areas/AreaUtils.js +16 -23
- package/lib/Widgets/Map/edges/Edge.js +6 -1
- package/lib/Widgets/Map/edges/arrows/Arrows.js +14 -2
- package/lib/Widgets/Map/events/EventUtils.js +7 -11
- package/lib/Widgets/Map/events/PointOfEvent.js +3 -2
- package/lib/Widgets/Map/points/PointMarker.js +29 -72
- package/lib/Widgets/Map/points/PointMarkers.js +12 -2
- package/lib/Widgets/Map/points/PointUtils.js +5 -14
- package/lib/_style-colors.scss +0 -23
- package/lib/assets/icons/index.js +8 -22
- package/lib/components/CustomInputs/DoubleTabs/styles.js +3 -15
- package/lib/components/Header/DoubleTabs/styles.js +2 -2
- package/lib/components/Sector/Sector.test.js +1 -35
- package/lib/components/Sector/sectorIcons.js +18 -39
- package/lib/components/Sector/svgs/Brewing.svg +100 -0
- package/lib/components/Sector/svgs/Cowshed.svg +28 -0
- package/lib/components/Sector/svgs/Garage.svg +27 -0
- package/lib/components/Sector/svgs/Missing.svg +32 -8
- package/lib/components/Sector/svgs/Motor Vehicle.svg +21 -0
- package/lib/components/Sector/svgs/Polymer.svg +42 -0
- package/lib/components/Sector/svgs/Pulp and Paper.svg +26 -0
- package/lib/components/Sector/svgs/Seafood.svg +26 -0
- package/lib/components/Sector/svgs/barrel.svg +100 -0
- package/lib/components/Sector/svgs/beer.svg +14 -8
- package/lib/components/Sector/svgs/beverage.svg +15 -10
- package/lib/components/Sector/svgs/car-repair.svg +27 -0
- package/lib/components/Sector/svgs/car-wash.svg +36 -0
- package/lib/components/Sector/svgs/chemistry.svg +17 -3
- package/lib/components/Sector/svgs/conductor-manufacturer.svg +20 -3
- package/lib/components/Sector/svgs/cosmetic-manufacturer.svg +25 -6
- package/lib/components/Sector/svgs/cow.svg +28 -0
- package/lib/components/Sector/svgs/cpu.svg +21 -0
- package/lib/components/Sector/svgs/dairy.svg +16 -4
- package/lib/components/Sector/svgs/dippel-oil.svg +21 -5
- package/lib/components/Sector/svgs/food-donation.svg +34 -0
- package/lib/components/Sector/svgs/food-factory.svg +20 -5
- package/lib/components/Sector/svgs/garbage-truck-1.svg +31 -3
- package/lib/components/Sector/svgs/gas-station.svg +22 -3
- package/lib/components/Sector/svgs/glass-manufacturer.svg +20 -8
- package/lib/components/Sector/svgs/glass.svg +23 -0
- package/lib/components/Sector/svgs/hand-washing.svg +17 -9
- package/lib/components/Sector/svgs/hospital.svg +27 -6
- package/lib/components/Sector/svgs/hotel.svg +22 -8
- package/lib/components/Sector/svgs/laundromat.svg +26 -3
- package/lib/components/Sector/svgs/leather-factory.svg +16 -0
- package/lib/components/Sector/svgs/leather.svg +16 -0
- package/lib/components/Sector/svgs/lipstick.svg +26 -0
- package/lib/components/Sector/svgs/meat.svg +23 -6
- package/lib/components/Sector/svgs/metal-coating-plant.svg +21 -8
- package/lib/components/Sector/svgs/metal-facbrication.svg +31 -0
- package/lib/components/Sector/svgs/milk.svg +17 -0
- package/lib/components/Sector/svgs/oil-rig.svg +15 -3
- package/lib/components/Sector/svgs/petrochemical.svg +21 -3
- package/lib/components/Sector/svgs/pie.svg +21 -0
- package/lib/components/Sector/svgs/pills.svg +22 -0
- package/lib/components/Sector/svgs/plant-unkown-3.svg +37 -0
- package/lib/components/Sector/svgs/plastic-rubber.svg +35 -0
- package/lib/components/Sector/svgs/printer.svg +16 -4
- package/lib/components/Sector/svgs/recycling.svg +16 -0
- package/lib/components/Sector/svgs/refinery.svg +17 -0
- package/lib/components/Sector/svgs/repair.svg +15 -0
- package/lib/components/Sector/svgs/sewing-machine.svg +23 -0
- package/lib/components/Sector/svgs/shop.svg +27 -0
- package/lib/components/Sector/svgs/soda.svg +16 -0
- package/lib/components/Sector/svgs/spray-gun.svg +22 -0
- package/lib/components/Sector/svgs/washing-machine.svg +27 -0
- package/lib/components/Sector/svgs/waste.svg +35 -0
- package/lib/components/Sector/svgs/welder-a.svg +31 -0
- package/lib/components/Sector/svgs/wine-glass.svg +10 -4
- package/lib/hooks/useUserTimeZone.js +2 -6
- package/lib/i18n/en.json +1 -12
- package/lib/i18n/he.json +1 -12
- package/lib/macros/getVersion.js +2 -2
- package/lib/pages/DashboardMap/AreaCard.js +1 -5
- package/lib/pages/DashboardMap/FactoryCard.js +2 -6
- package/lib/pages/DashboardMap/List.js +2 -2
- package/lib/pages/DashboardMap/WWTPMap.js +6 -17
- package/lib/pages/DashboardMap/Widget.js +88 -175
- package/lib/pages/DashboardMap/utils.js +16 -19
- package/lib/pages/EventsPage/EventsMapContainer/EventsMapContainer.js +3 -9
- package/lib/pages/SamplingsPage/SamplingsPageContainer.js +7 -2
- package/lib/pages/SitePage/SamplingParameters/NoResults/index.js +12 -25
- package/lib/pages/SitePage/SamplingParameters/ParametersContainer/ParametersContainer.js +3 -7
- package/lib/pages/SitePage/SamplingParameters/SamplingContainer/ExpandableSamplingTable/ExpandableSamplingTable.js +2 -10
- package/lib/pages/SitePage/SamplingParameters/SamplingContainer/ExpandableSamplingTable/ExpandableSamplingTable.scss +16 -15
- package/lib/pages/SitePage/SamplingParameters/SamplingContainer/SamplingContainer.js +7 -6
- package/lib/pages/SitePage/SamplingParameters/SamplingParameters.js +84 -43
- package/lib/pages/SitePage/SamplingParameters/dataParser.js +4 -5
- package/lib/pages/WbeDashboard/WbeDashboardPage.js +3 -6
- package/lib/pages/WwtpPage/WwtpPage.js +8 -31
- package/lib/pages/WwtpPage/WwtpPageContainer.js +17 -8
- package/lib/scss/custom.scss +1 -47
- package/lib/store/areas/models/IArea.js +1 -1
- package/lib/store/points/models/IPoint.js +1 -1
- package/lib/styles/theme/theme.js +5 -15
- package/lib/ui-kit/ContentCard/ContentCard.js +3 -6
- package/lib/ui-kit/InletsPie/InletsPie.js +5 -5
- package/lib/ui-kit/OrganicLoad/TextInfo.js +2 -2
- package/lib/utilities/scoreToData.js +2 -2
- package/package.json +1 -1
- package/lib/assets/icons/no-result.svg +0 -20
- package/lib/assets/icons/noSamplings.svg +0 -15
- package/lib/assets/icons/upgrade.svg +0 -18
- package/lib/components/Sector/svgs/bakery.svg +0 -4
- package/lib/components/Sector/svgs/carwash.svg +0 -4
- package/lib/components/Sector/svgs/cowshed.svg +0 -18
- package/lib/components/Sector/svgs/garage.svg +0 -5
- package/lib/components/Sector/svgs/mechanical.svg +0 -5
- package/lib/components/Sector/svgs/metal-fabrication.svg +0 -7
- package/lib/components/Sector/svgs/motor-vehicle.svg +0 -4
- package/lib/components/Sector/svgs/pharmaceutical.svg +0 -11
- package/lib/components/Sector/svgs/plastic-manufacturer.svg +0 -11
- package/lib/components/Sector/svgs/plastic-recycling-factory.svg +0 -4
- package/lib/components/Sector/svgs/polymer.svg +0 -4
- package/lib/components/Sector/svgs/pulp-and-paper.svg +0 -8
- package/lib/components/Sector/svgs/refinement.svg +0 -6
- package/lib/components/Sector/svgs/seafood.svg +0 -14
- package/lib/components/Sector/svgs/shopping-malls-restaurants.svg +0 -11
- package/lib/components/Sector/svgs/textile.svg +0 -8
- package/lib/pages/SitePage/SamplingParameters/body/Body.js +0 -39
- package/lib/pages/SitePage/SamplingParameters/body/BodyContainer.js +0 -71
- package/lib/pages/SitePage/SamplingParameters/body/index.js +0 -11
- package/lib/pages/WwtpPage/ContaminateCard.js +0 -18
- package/lib/pages/WwtpPage/PredictionCard.js +0 -18
- package/lib/pages/WwtpPage/UpgradeBox.js +0 -30
|
@@ -1,13 +1,37 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path
|
|
3
|
-
<
|
|
4
|
-
<path
|
|
5
|
-
<path d="
|
|
6
|
-
<path
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_4088_34000)">
|
|
3
|
+
<path d="M14.026 23.2101H8.03271V25.5822H14.026V23.2101Z" fill="white"/>
|
|
4
|
+
<path d="M14.0623 25.6189H7.99414V23.1707H14.0623V25.6189ZM8.06894 25.5401H13.9849V23.2522H8.06894V25.5401Z" fill="black"/>
|
|
5
|
+
<path d="M2.39795 16.4333H5.01292V27.494H2.39795V16.4333Z" fill="url(#paint0_linear_4088_34000)"/>
|
|
6
|
+
<path d="M2.39795 14.1401H5.01292V15.2814H2.39795V14.1401Z" fill="url(#paint1_linear_4088_34000)"/>
|
|
7
|
+
<path d="M14.2843 21.3378C14.1477 21.3972 13.9937 21.3997 13.8553 21.3446C13.7169 21.2896 13.6052 21.1813 13.5442 21.0432C13.5148 20.9715 13.499 20.8948 13.4978 20.8171V19.7836L10.0446 21.3378C9.90802 21.3972 9.75397 21.3997 9.61557 21.3446C9.47718 21.2896 9.36549 21.1813 9.3045 21.0432C9.27704 20.971 9.26221 20.8945 9.26066 20.8171V19.7836L6.14795 21.1905V27.5019H17.7529V19.7915L14.2921 21.3378H14.2843ZM16.4248 25.7768C16.4235 25.8473 16.4077 25.9167 16.3784 25.9806C16.3491 26.0445 16.3069 26.1013 16.2546 26.1475C16.2023 26.1936 16.141 26.228 16.0748 26.2484C16.0086 26.2688 15.939 26.2748 15.8703 26.2659H8.0099C7.94116 26.2747 7.87138 26.2688 7.80504 26.2484C7.7387 26.228 7.67728 26.1937 7.62478 26.1476C7.57228 26.1015 7.52986 26.0446 7.50024 25.9808C7.47063 25.9169 7.45448 25.8474 7.45286 25.7768V23.1102C7.45286 22.9595 7.51155 22.8151 7.61601 22.7085C7.72048 22.602 7.86216 22.5422 8.0099 22.5422H15.8626C15.9356 22.5422 16.0079 22.5569 16.0754 22.5855C16.1428 22.614 16.2041 22.6559 16.2556 22.7087C16.3071 22.7615 16.3479 22.8241 16.3756 22.893C16.4033 22.9619 16.4174 23.0357 16.4171 23.1102V25.7768H16.4248Z" fill="url(#paint2_linear_4088_34000)"/>
|
|
8
|
+
<path d="M15.8624 22.5264H8.00967C7.86193 22.5264 7.72025 22.5863 7.61578 22.6928C7.51132 22.7993 7.45264 22.9438 7.45264 23.0945V25.761C7.45264 25.9117 7.51132 26.0561 7.61578 26.1627C7.72025 26.2692 7.86193 26.329 8.00967 26.329H15.8624C15.9354 26.329 16.0077 26.3143 16.0752 26.2858C16.1426 26.2572 16.2038 26.2153 16.2554 26.1625C16.3069 26.1097 16.3477 26.0471 16.3754 25.9782C16.4031 25.9093 16.4172 25.8355 16.4168 25.761V23.0945C16.4172 23.02 16.4031 22.9462 16.3754 22.8773C16.3477 22.8084 16.3069 22.7457 16.2554 22.693C16.2038 22.6402 16.1426 22.5983 16.0752 22.5697C16.0077 22.5411 15.9354 22.5264 15.8624 22.5264ZM8.56672 23.6783H10.0599V25.2009H8.56672V23.6783ZM11.1894 23.6783H12.6903V25.2009H11.1946V23.6783H11.1894ZM15.3156 25.2009H13.8199V23.6783H15.3156V25.2009Z" fill="#1D1D1D"/>
|
|
9
|
+
<path d="M19.0783 27.4861H18.8565V18.9131C18.8568 18.8387 18.8428 18.7649 18.815 18.696C18.7873 18.6271 18.7465 18.5644 18.695 18.5116C18.6435 18.4589 18.5823 18.417 18.5148 18.3884C18.4474 18.3598 18.3751 18.3451 18.302 18.3451C18.2232 18.3453 18.1452 18.3614 18.0725 18.3924L14.6271 19.9466V18.9131C14.6271 18.7625 14.5684 18.618 14.464 18.5115C14.3595 18.405 14.2178 18.3451 14.0701 18.3451C13.9913 18.3456 13.9133 18.3617 13.8406 18.3924L10.3874 19.9466V18.9131C10.3878 18.8384 10.3736 18.7644 10.3457 18.6954C10.3179 18.6263 10.2768 18.5635 10.2251 18.5107C10.1733 18.4579 10.1117 18.4161 10.044 18.3876C9.97624 18.3592 9.90366 18.3448 9.83042 18.3451C9.75488 18.3448 9.68014 18.361 9.6112 18.3924L6.14776 19.9466V13.5721C6.14913 13.4977 6.13605 13.4236 6.10928 13.3543C6.08251 13.285 6.04258 13.2218 5.99178 13.1683C5.94097 13.1148 5.8803 13.072 5.81325 13.0425C5.74619 13.013 5.67408 12.9972 5.60104 12.9962H1.84102C1.69329 12.9962 1.5516 13.0561 1.44714 13.1626C1.34267 13.2691 1.28399 13.4136 1.28399 13.5642V27.4861H1.05705C0.909312 27.4861 0.767629 27.546 0.663164 27.6525C0.558698 27.759 0.5 27.9035 0.5 28.0541C0.5 28.2048 0.558698 28.3493 0.663164 28.4558C0.767629 28.5623 0.909312 28.6222 1.05705 28.6222H19.086C19.2338 28.6222 19.3754 28.5623 19.4799 28.4558C19.5844 28.3493 19.6431 28.2048 19.6431 28.0541C19.6417 27.9026 19.5815 27.7577 19.4757 27.6512C19.3698 27.5448 19.2269 27.4854 19.0783 27.4861ZM5.02079 14.1401V15.2815H2.39807V14.1401H5.02079ZM2.39807 16.4333H5.01305V27.494H2.39807V16.4333ZM6.1426 27.4782V21.1668L9.26048 19.7599V20.7934C9.26014 20.8679 9.27422 20.9417 9.30194 21.0106C9.32965 21.0795 9.37044 21.1421 9.42196 21.1949C9.47348 21.2477 9.53471 21.2896 9.60215 21.3181C9.66959 21.3467 9.7419 21.3614 9.81493 21.3614C9.89374 21.3612 9.97175 21.3451 10.0445 21.3141L13.4976 19.7599V20.7934C13.4976 20.9441 13.5563 21.0885 13.6607 21.1951C13.7652 21.3016 13.9069 21.3614 14.0546 21.3614C14.131 21.3617 14.2065 21.3456 14.2764 21.3141L17.7295 19.7599V27.4624H6.14776L6.1426 27.4782ZM2.01638 11.7681C2.16412 11.7681 2.3058 11.7083 2.41027 11.6017C2.51473 11.4952 2.57343 11.3507 2.57343 11.2001C2.57343 11.1756 2.57816 11.1513 2.58736 11.1286C2.59656 11.106 2.61006 11.0854 2.62706 11.0681C2.64406 11.0507 2.66425 11.037 2.68646 11.0276C2.70868 11.0182 2.73248 11.0134 2.75652 11.0134H3.13046C3.3026 11.0137 3.47312 10.9794 3.63222 10.9124C3.79132 10.8454 3.93586 10.747 4.05758 10.6229C4.1793 10.4988 4.27579 10.3513 4.3415 10.1891C4.40722 10.0269 4.44088 9.853 4.44054 9.67747C4.44088 9.60278 4.4267 9.52875 4.39883 9.45968C4.37096 9.39061 4.32994 9.32785 4.27815 9.27504C4.22636 9.22222 4.16481 9.18039 4.09707 9.15197C4.02934 9.12355 3.95674 9.10909 3.88349 9.10944C3.73642 9.11082 3.5958 9.17119 3.49203 9.2775C3.38827 9.3838 3.32972 9.52748 3.32904 9.67747C3.32904 9.70199 3.3243 9.72627 3.3151 9.74892C3.3059 9.77157 3.29242 9.79215 3.27542 9.80949C3.25841 9.82683 3.23823 9.84058 3.21601 9.84997C3.1938 9.85935 3.16998 9.86418 3.14594 9.86418H2.772C2.59974 9.86383 2.42911 9.89813 2.26987 9.96511C2.11062 10.0321 1.96589 10.1304 1.84397 10.2545C1.72204 10.3786 1.62532 10.526 1.55932 10.6883C1.49332 10.8505 1.45935 11.0244 1.45935 11.2001C1.45832 11.2758 1.47214 11.3509 1.49999 11.4211C1.52785 11.4913 1.56918 11.5551 1.62156 11.6087C1.67393 11.6624 1.7363 11.7048 1.80499 11.7336C1.87369 11.7623 1.94731 11.7767 2.02155 11.776L2.01638 11.7681ZM4.63912 12.5307C4.78686 12.5307 4.92854 12.4709 5.03301 12.3644C5.13747 12.2578 5.19615 12.1134 5.19615 11.9627C5.19544 11.938 5.19969 11.9134 5.20863 11.8904C5.21758 11.8674 5.23104 11.8466 5.24819 11.8291C5.26534 11.8116 5.28581 11.7979 5.30835 11.7887C5.33089 11.7796 5.35502 11.7753 5.37926 11.776H5.75318C5.92544 11.776 6.09601 11.7414 6.25513 11.6741C6.41424 11.6068 6.55877 11.5081 6.68046 11.3838C6.80214 11.2595 6.8986 11.1119 6.96429 10.9495C7.02997 10.7871 7.0636 10.6131 7.06326 10.4375C7.06361 10.3629 7.04942 10.289 7.02152 10.2201C6.99362 10.1511 6.95256 10.0886 6.90073 10.036C6.8489 9.98335 6.78733 9.94177 6.71961 9.91363C6.65188 9.8855 6.57935 9.87137 6.50623 9.87207C6.35939 9.87276 6.21875 9.93255 6.11491 10.0384C6.01108 10.1443 5.95244 10.2877 5.95176 10.4375C5.95211 10.4621 5.94762 10.4865 5.93854 10.5093C5.92946 10.5321 5.91598 10.5529 5.89891 10.5703C5.88184 10.5877 5.86151 10.6014 5.83914 10.6107C5.81677 10.6199 5.79281 10.6245 5.76867 10.6242H5.39473C5.22192 10.6245 5.05086 10.6597 4.89139 10.7276C4.73192 10.7955 4.58718 10.8948 4.46546 11.0199C4.34374 11.145 4.24745 11.2934 4.1821 11.4566C4.11675 11.6197 4.08364 11.7944 4.08465 11.9706C4.08395 12.0458 4.09805 12.1205 4.12611 12.19C4.15418 12.2596 4.19566 12.3228 4.24807 12.3757C4.30048 12.4287 4.36279 12.4704 4.43129 12.4984C4.49978 12.5264 4.57308 12.54 4.64685 12.5386L4.63912 12.5307Z" fill="#1D1D1D"/>
|
|
10
|
+
<path d="M22.5931 27.7648C28.4241 27.7648 33.1511 22.9446 33.1511 16.9986C33.1511 11.0526 28.4241 6.23242 22.5931 6.23242C16.7621 6.23242 12.0352 11.0526 12.0352 16.9986C12.0352 22.9446 16.7621 27.7648 22.5931 27.7648Z" fill="url(#paint3_linear_4088_34000)"/>
|
|
11
|
+
<path d="M22.5932 5.12799C19.5064 5.13147 16.5471 6.38361 14.3646 8.60961C12.1821 10.8356 10.9549 13.8536 10.9521 17.0013C10.9556 20.1485 12.1831 23.1659 14.3655 25.3913C16.5479 27.6167 19.5069 28.8685 22.5932 28.872C25.6796 28.8685 28.6386 27.6167 30.8209 25.3913C33.0033 23.1659 34.2309 20.1485 34.2343 17.0013C34.2316 13.8536 33.0043 10.8356 30.8218 8.60961C28.6394 6.38361 25.68 5.13147 22.5932 5.12799ZM22.5932 27.7675C19.7943 27.7633 17.1113 26.6277 15.1322 24.6095C13.153 22.5914 12.0394 19.8554 12.0353 17.0013C12.0387 14.1468 13.1521 11.4101 15.1312 9.39137C17.1104 7.37265 19.7939 6.23666 22.5932 6.23248C25.3948 6.23667 28.0802 7.37446 30.0598 9.39602C32.0393 11.4176 33.1512 14.1576 33.1512 17.0144C33.1471 19.8685 32.0334 22.6045 30.0543 24.6227C28.0752 26.6408 25.3921 27.7765 22.5932 27.7806V27.7675Z" fill="#1D1D1D"/>
|
|
12
|
+
<path d="M22.5934 29.1428C19.4359 29.1394 16.4087 27.8588 14.176 25.582C11.9433 23.3053 10.6875 20.2184 10.6841 16.9987C10.6882 13.7793 11.9443 10.6931 14.1769 8.41698C16.4095 6.14082 19.4363 4.8606 22.5934 4.85712C25.7502 4.8606 28.7767 6.14091 31.0089 8.41714C33.2411 10.6934 34.4967 13.7796 34.5001 16.9987C34.4973 20.2182 33.2421 23.3051 31.0098 25.5819C28.7775 27.8587 25.7506 29.1394 22.5934 29.1428ZM22.5934 5.40147C19.5779 5.40495 16.6869 6.62783 14.5544 8.80189C12.4219 10.976 11.222 13.9237 11.2179 16.9987C11.2213 20.0741 12.4209 23.0225 14.5535 25.1971C16.686 27.3718 19.5775 28.595 22.5934 28.5985C25.609 28.595 28.5002 27.3717 30.6323 25.197C32.7645 23.0223 33.9635 20.0738 33.9662 16.9987C33.9628 13.924 32.7635 10.9762 30.6314 8.80206C28.4993 6.62792 25.6086 5.40495 22.5934 5.40147ZM22.5934 28.0383C19.7207 28.0383 16.9657 26.8747 14.9345 24.8033C12.9032 22.732 11.7621 19.9227 11.7621 16.9934C11.7621 14.0641 12.9032 11.2548 14.9345 9.18345C16.9657 7.11212 19.7207 5.94846 22.5934 5.94846C25.466 5.94846 28.221 7.11212 30.2523 9.18345C32.2835 11.2548 33.4247 14.0641 33.4247 16.9934C33.4247 19.9227 32.2835 22.732 30.2523 24.8033C28.221 26.8747 25.466 28.0383 22.5934 28.0383ZM22.5934 6.50597C19.866 6.51222 17.2521 7.61962 15.3233 9.58595C13.3945 11.5523 12.3079 14.2175 12.301 16.9987C12.3072 19.7803 13.3935 22.4462 15.3224 24.4131C17.2512 26.38 19.8656 27.4877 22.5934 27.494C25.3212 27.4877 27.9355 26.38 29.8644 24.4131C31.7932 22.4462 32.8796 19.7803 32.8857 16.9987C32.8789 14.2175 31.7922 11.5523 29.8635 9.58595C27.9347 7.61962 25.3207 6.51222 22.5934 6.50597Z" fill="#1D1D1D"/>
|
|
13
|
+
<path d="M22.5933 24.0648C23.2414 24.0648 23.7667 23.5291 23.7667 22.8682C23.7667 22.2074 23.2414 21.6717 22.5933 21.6717C21.9453 21.6717 21.4199 22.2074 21.4199 22.8682C21.4199 23.5291 21.9453 24.0648 22.5933 24.0648Z" fill="#1D1D1D"/>
|
|
14
|
+
<path d="M22.5934 20.9643C22.7165 20.9647 22.8385 20.9402 22.9524 20.8924C23.0663 20.8446 23.1698 20.7743 23.257 20.6857C23.3442 20.597 23.4134 20.4916 23.4606 20.3756C23.5078 20.2597 23.5321 20.1353 23.5321 20.0097V18.4319L23.6146 18.4108C24.4001 18.182 25.0915 17.6993 25.5849 17.0354C26.0783 16.3715 26.3471 15.5622 26.3508 14.7292C26.3515 14.2256 26.2548 13.7268 26.0663 13.2613C25.8777 12.7958 25.6011 12.3728 25.2521 12.0165C24.9031 11.6601 24.4887 11.3774 24.0325 11.1846C23.5763 10.9917 23.0872 10.8924 22.5934 10.8924C21.5975 10.8931 20.6426 11.2966 19.9381 12.0145C19.2337 12.7323 18.8373 13.7058 18.8359 14.7213C18.8356 14.8469 18.8596 14.9713 18.9065 15.0874C18.9534 15.2035 19.0223 15.3091 19.1092 15.398C19.1962 15.4869 19.2995 15.5575 19.4132 15.6056C19.527 15.6538 19.6489 15.6785 19.7721 15.6785C20.021 15.6785 20.2598 15.5777 20.4358 15.3982C20.6119 15.2187 20.7108 14.9752 20.7108 14.7213C20.7108 14.2101 20.9099 13.7198 21.2644 13.3583C21.619 12.9968 22.0998 12.7937 22.6011 12.7937C23.1024 12.7937 23.5833 12.9968 23.9378 13.3583C24.2923 13.7198 24.4914 14.2101 24.4914 14.7213C24.4901 15.2335 24.2894 15.7242 23.9335 16.0856C23.5776 16.447 23.0956 16.6496 22.5934 16.6489C22.3444 16.6489 22.1056 16.7498 21.9296 16.9293C21.7536 17.1088 21.6547 17.3523 21.6547 17.6061V20.0018C21.654 20.128 21.6778 20.253 21.7246 20.3698C21.7715 20.4865 21.8405 20.5927 21.9278 20.6821C22.015 20.7715 22.1187 20.8425 22.2329 20.891C22.3472 20.9394 22.4697 20.9643 22.5934 20.9643Z" fill="#1D1D1D"/>
|
|
7
15
|
</g>
|
|
8
16
|
<defs>
|
|
9
|
-
<
|
|
10
|
-
<
|
|
17
|
+
<linearGradient id="paint0_linear_4088_34000" x1="2.39795" y1="21.9636" x2="5.01292" y2="21.9636" gradientUnits="userSpaceOnUse">
|
|
18
|
+
<stop stop-color="#F37C1C"/>
|
|
19
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
20
|
+
</linearGradient>
|
|
21
|
+
<linearGradient id="paint1_linear_4088_34000" x1="2.39795" y1="14.7108" x2="5.01292" y2="14.7108" gradientUnits="userSpaceOnUse">
|
|
22
|
+
<stop stop-color="#F37C1C"/>
|
|
23
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
24
|
+
</linearGradient>
|
|
25
|
+
<linearGradient id="paint2_linear_4088_34000" x1="6.15053" y1="23.6388" x2="17.7452" y2="23.6388" gradientUnits="userSpaceOnUse">
|
|
26
|
+
<stop stop-color="#F37C1C"/>
|
|
27
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
28
|
+
</linearGradient>
|
|
29
|
+
<linearGradient id="paint3_linear_4088_34000" x1="12.0352" y1="17.0012" x2="33.1511" y2="17.0012" gradientUnits="userSpaceOnUse">
|
|
30
|
+
<stop stop-color="#EFC530"/>
|
|
31
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
32
|
+
</linearGradient>
|
|
33
|
+
<clipPath id="clip0_4088_34000">
|
|
34
|
+
<rect width="34" height="34" fill="white" transform="translate(0.5)"/>
|
|
11
35
|
</clipPath>
|
|
12
36
|
</defs>
|
|
13
37
|
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_4715_6100)">
|
|
3
|
+
<path d="M19.6025 10.8803L10.1875 20.3585H7.19793L3.82639 22.8394L3.12695 25.9564L3.82639 28.9462L8.21573 31.7452L12.3505 30.3457L13.9408 27.9284V24.557L23.3555 14.7606L27.872 15.7784L30.2256 13.9973L32.0068 9.35358L31.4979 7.69966L27.872 11.3892L24.0552 8.01772L23.3555 6.3638L26.5997 2.80151H24.0552L19.984 4.51905L18.3301 7.69966L19.6025 10.8803Z" fill="url(#paint0_linear_4715_6100)"/>
|
|
4
|
+
<path d="M9.57125 22.9904L7.02633 23.8204L5.86426 26.8083L8.13287 28.6342L10.7335 27.6936L11.6741 25.3143L9.57125 22.9904Z" fill="white"/>
|
|
5
|
+
<path d="M24.3507 19.4072L31.6988 27.0345V30.011L30.0245 31.2202H26.9549L18.7695 22.8488V21.3605L17.7466 20.1513H16.7231L15.4209 19.4072L14.8628 18.198L15.979 16.9887L7.23547 8.33821H5.46816L3.14307 3.87342L4.63117 2.66425L9.09586 4.80362V7.03599L17.7466 15.1284L19.5135 14.4773L20.4437 15.5935V16.9887L21.8393 18.198H23.3274L24.3507 19.4072Z" fill="url(#paint1_linear_4715_6100)"/>
|
|
6
|
+
<path d="M25.6 1.94375C25.4219 1.94844 25.2367 1.96016 25.0562 1.98125C24.3367 2.06329 23.5937 2.26016 22.8812 2.525C21.4562 3.05469 20.1437 3.85625 19.3 4.7C18.3883 5.61172 17.9406 6.725 17.95 7.86875C17.957 8.85782 18.3273 9.85625 18.8687 10.8125L17.5 12.2C17.3219 12.3453 17.2398 12.5773 17.2914 12.8023C17.343 13.025 17.5187 13.2008 17.7414 13.2523C17.9664 13.3039 18.1984 13.2219 18.3437 13.0438L20.0312 11.3563C20.2305 11.1547 20.2609 10.843 20.1062 10.6063C19.4922 9.65704 19.157 8.71954 19.15 7.86875C19.143 7.01797 19.4359 6.25157 20.1437 5.54375C20.8 4.8875 22.0375 4.12579 23.3125 3.65C24.114 3.35235 24.8781 3.23985 25.5812 3.21875L23.3125 5.46875C23.3055 5.48047 23.2984 5.49454 23.2937 5.50625C22.6773 6.20938 22.6492 7.28047 23.3125 7.94375L26.5 11.1313C26.507 11.1383 26.5117 11.143 26.5187 11.15C27.2219 11.7664 28.293 11.7945 28.9562 11.1313L31.225 8.8625C31.2062 9.57735 31.0937 10.3484 30.7937 11.15C30.3203 12.418 29.5586 13.6414 28.9 14.3C28.1922 15.0078 27.4398 15.268 26.5937 15.2563C25.7476 15.2445 24.789 14.9117 23.8 14.3188C23.5633 14.1781 23.2633 14.218 23.0687 14.4125L22.1125 15.3688C21.8734 15.6008 21.8711 15.9828 22.1031 16.2219C22.3351 16.4609 22.7172 16.4633 22.9562 16.2313L23.6312 15.5563C24.6062 16.0789 25.5859 16.4422 26.575 16.4563C27.7094 16.4727 28.832 16.0555 29.7437 15.1438C30.5851 14.3023 31.389 12.9992 31.9187 11.5813C32.4484 10.1633 32.7273 8.62579 32.2937 7.325C32.2258 7.12813 32.0617 6.98282 31.8601 6.93594C31.6562 6.89141 31.4453 6.95235 31.3 7.1L28.1125 10.2688C27.9437 10.4375 27.5969 10.4609 27.3437 10.2688C27.332 10.2594 27.318 10.2594 27.3062 10.25L24.1562 7.1C23.9781 6.92188 23.9687 6.54922 24.1937 6.29375L27.3437 3.14375C27.4914 2.99844 27.5523 2.7875 27.5078 2.5836C27.4609 2.38204 27.3156 2.21797 27.1187 2.15C26.6383 1.98594 26.132 1.92735 25.6 1.94375ZM4.50624 2C4.37967 2.01875 4.26014 2.07735 4.16874 2.16875L2.66874 3.66875C2.47421 3.86329 2.43436 4.16329 2.57499 4.4L5.10624 8.7875C5.2328 8.99375 5.46717 9.10391 5.70624 9.06875L7.01874 8.8625L15.1562 17L14.8562 17.3C14.193 17.9633 14.193 19.0367 14.8562 19.7L15.2687 20.1313C15.7469 20.6094 16.4055 20.607 16.9937 20.4125L18.0062 21.4063C17.9383 22.2148 18.175 23.0188 18.7562 23.6L26.0687 30.9313C27.55 32.4125 29.95 32.4125 31.4312 30.9313C31.4312 30.9242 31.4312 30.9195 31.4312 30.9125C32.8539 29.4172 32.8726 27.0102 31.4312 25.5688L24.1 18.2563C23.4953 17.6516 22.6914 17.4641 21.9062 17.5063L20.9125 16.4938C21.107 15.9055 21.1094 15.2469 20.6312 14.7688L20.2 14.3563C19.8695 14.0258 19.4359 13.85 19 13.85C18.564 13.85 18.1305 14.0258 17.8 14.3563L17.5 14.6563L9.36249 6.51875L9.56874 5.20625C9.60389 4.96719 9.49374 4.73282 9.28749 4.60625L4.89999 2.075C4.79686 2.01641 4.67967 1.99063 4.56249 2C4.54374 2 4.52499 2 4.50624 2ZM4.71249 3.35L8.33124 5.43125L8.14374 6.65C8.11796 6.83516 8.18124 7.02266 8.31249 7.15625L16.6562 15.5L16 16.1563L7.65624 7.8125C7.52264 7.68125 7.33514 7.61797 7.14999 7.64375L5.93124 7.83125L3.84999 4.2125L4.71249 3.35ZM19 15.0688C19.1336 15.0688 19.2672 15.1109 19.3562 15.2L19.7687 15.6313C19.9656 15.8281 19.9633 16.1211 19.8062 16.3063C19.5976 16.5477 19.614 16.9109 19.8437 17.1313L21.2125 18.5C21.3508 18.6383 21.5453 18.7016 21.7375 18.6688C22.293 18.5773 22.8742 18.718 23.2562 19.1L30.5687 26.4313C31.525 27.3875 31.5344 29.0422 30.5687 30.0688C29.5305 31.107 27.9695 31.107 26.9312 30.0688L19.6 22.7563C19.2015 22.3578 19.0445 21.793 19.1687 21.2938C19.2226 21.0828 19.157 20.8625 19 20.7125L17.6312 19.3438C17.4109 19.1141 17.0476 19.0977 16.8062 19.3063C16.6211 19.4633 16.3281 19.4656 16.1312 19.2688L15.7 18.8563C15.5219 18.6781 15.5219 18.3219 15.7 18.1438L18.6437 15.2C18.7328 15.1109 18.8664 15.0688 19 15.0688ZM13.1125 16.8688C12.9765 16.8875 12.85 16.9555 12.7562 17.0563L9.90624 19.9063C9.49842 19.8266 9.09764 19.7563 8.68749 19.7563C5.30546 19.7563 2.55624 22.5055 2.55624 25.8875C2.55624 29.2695 5.30546 32 8.68749 32C12.0695 32 14.8 29.2695 14.8 25.8875C14.8 25.4492 14.7015 25.0156 14.5937 24.5938L16.6562 22.5313C16.8953 22.2992 16.8976 21.9172 16.6656 21.6781C16.4336 21.4391 16.0515 21.4367 15.8125 21.6688L13.5437 23.9563C13.3726 24.1203 13.314 24.3711 13.3937 24.5938C13.5437 24.9922 13.6 25.393 13.6 25.8875C13.6 28.625 11.425 30.8 8.68749 30.8C5.94999 30.8 3.75624 28.625 3.75624 25.8875C3.75624 23.15 5.94999 20.9563 8.68749 20.9563C9.11639 20.9563 9.54764 21.0172 9.98124 21.125C10.1851 21.1695 10.3984 21.1063 10.5437 20.9563L13.6 17.9C13.7781 17.7289 13.832 17.4641 13.7359 17.2367C13.6422 17.0094 13.4148 16.8641 13.1687 16.8688C13.15 16.8688 13.1312 16.8688 13.1125 16.8688ZM21.5312 20.1688L20.6687 21.0313L27.8687 28.2313L28.7312 27.3688L21.5312 20.1688ZM9.32499 22.4C9.29217 22.4047 9.2617 22.4094 9.23124 22.4188L6.41874 23.2063C6.21952 23.2625 6.06249 23.4195 6.00624 23.6188L5.21874 26.4313C5.15311 26.6445 5.2117 26.8742 5.36874 27.0313L7.46874 29.1313C7.62108 29.2813 7.84374 29.3398 8.04999 29.2813L10.9375 28.4938C11.1484 28.4398 11.3148 28.2734 11.3687 28.0625L12.0812 25.25C12.1398 25.0438 12.0812 24.8211 11.9312 24.6688L9.83124 22.5688C9.69764 22.4375 9.51014 22.3742 9.32499 22.4ZM9.21249 23.675L10.825 25.2875L10.2812 27.4438L8.08749 28.025L6.47499 26.4125L7.05624 24.2563L9.21249 23.675Z" fill="black"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<linearGradient id="paint0_linear_4715_6100" x1="10.0177" y1="23.7932" x2="10.0177" y2="9.04956" gradientUnits="userSpaceOnUse">
|
|
10
|
+
<stop stop-color="#EFC530"/>
|
|
11
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
12
|
+
</linearGradient>
|
|
13
|
+
<linearGradient id="paint1_linear_4715_6100" x1="18.2848" y1="29.9774" x2="18.2848" y2="4.48117" gradientUnits="userSpaceOnUse">
|
|
14
|
+
<stop stop-color="#F37C1C"/>
|
|
15
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
16
|
+
</linearGradient>
|
|
17
|
+
<clipPath id="clip0_4715_6100">
|
|
18
|
+
<rect width="30" height="30" fill="white" transform="translate(2.5 2)"/>
|
|
19
|
+
</clipPath>
|
|
20
|
+
</defs>
|
|
21
|
+
</svg>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<line y1="-0.65" x2="21.8884" y2="-0.65" transform="matrix(0.5 -0.866025 -0.866025 -0.5 11.522 25.8535)" stroke="black" stroke-width="1.3"/>
|
|
3
|
+
<circle cx="2.57703" cy="2.57703" r="2.57703" transform="matrix(0.866025 0.5 0.5 -0.866025 8.00146 28.4617)" fill="url(#paint0_linear_4616_15945)" stroke="black" stroke-width="1.3"/>
|
|
4
|
+
<circle cx="2.57703" cy="2.57703" r="2.57703" transform="matrix(0.866025 0.5 0.5 -0.866025 19.9575 7.42474)" fill="url(#paint1_linear_4616_15945)" stroke="black" stroke-width="1.3"/>
|
|
5
|
+
<line x1="22.9146" y1="26.1785" x2="11.9704" y2="7.22253" stroke="black" stroke-width="1.3"/>
|
|
6
|
+
<circle cx="23.4778" cy="27.5185" r="2.57703" transform="rotate(150 23.4778 27.5185)" fill="url(#paint2_linear_4616_15945)" stroke="black" stroke-width="1.3"/>
|
|
7
|
+
<circle cx="11.5222" cy="6.48149" r="2.57703" transform="rotate(150 11.5222 6.48149)" fill="url(#paint3_linear_4616_15945)" stroke="black" stroke-width="1.3"/>
|
|
8
|
+
<line x1="28.1562" y1="16.8996" x2="6.26784" y2="16.8996" stroke="black" stroke-width="1.3"/>
|
|
9
|
+
<circle cx="29.5983" cy="17.0821" r="2.57703" transform="rotate(90 29.5983 17.0821)" fill="url(#paint4_linear_4616_15945)" stroke="black" stroke-width="1.3"/>
|
|
10
|
+
<circle cx="5.40198" cy="16.9178" r="2.57703" transform="rotate(90 5.40198 16.9178)" fill="url(#paint5_linear_4616_15945)" stroke="black" stroke-width="1.3"/>
|
|
11
|
+
<path d="M14.1868 11.1795L20.7398 11.1795L24.0163 16.8545L20.7398 22.5295L14.1868 22.5295L10.9103 16.8545L14.1868 11.1795Z" fill="url(#paint6_linear_4616_15945)" stroke="black" stroke-width="1.3"/>
|
|
12
|
+
<defs>
|
|
13
|
+
<linearGradient id="paint0_linear_4616_15945" x1="2.57703" y1="5.15405" x2="2.57703" y2="0" gradientUnits="userSpaceOnUse">
|
|
14
|
+
<stop stop-color="#EFC530"/>
|
|
15
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
16
|
+
</linearGradient>
|
|
17
|
+
<linearGradient id="paint1_linear_4616_15945" x1="2.57703" y1="5.15405" x2="2.57703" y2="0" gradientUnits="userSpaceOnUse">
|
|
18
|
+
<stop stop-color="#EFC530"/>
|
|
19
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
20
|
+
</linearGradient>
|
|
21
|
+
<linearGradient id="paint2_linear_4616_15945" x1="23.4778" y1="30.0955" x2="23.4778" y2="24.9414" gradientUnits="userSpaceOnUse">
|
|
22
|
+
<stop stop-color="#EFC530"/>
|
|
23
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
24
|
+
</linearGradient>
|
|
25
|
+
<linearGradient id="paint3_linear_4616_15945" x1="11.5222" y1="9.05851" x2="11.5222" y2="3.90446" gradientUnits="userSpaceOnUse">
|
|
26
|
+
<stop stop-color="#EFC530"/>
|
|
27
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
28
|
+
</linearGradient>
|
|
29
|
+
<linearGradient id="paint4_linear_4616_15945" x1="29.5983" y1="19.6591" x2="29.5983" y2="14.5051" gradientUnits="userSpaceOnUse">
|
|
30
|
+
<stop stop-color="#EFC530"/>
|
|
31
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
32
|
+
</linearGradient>
|
|
33
|
+
<linearGradient id="paint5_linear_4616_15945" x1="5.40198" y1="19.4949" x2="5.40198" y2="14.3408" gradientUnits="userSpaceOnUse">
|
|
34
|
+
<stop stop-color="#EFC530"/>
|
|
35
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
36
|
+
</linearGradient>
|
|
37
|
+
<linearGradient id="paint6_linear_4616_15945" x1="13.8101" y1="23.182" x2="21.1151" y2="10.5295" gradientUnits="userSpaceOnUse">
|
|
38
|
+
<stop stop-color="#F37C1C"/>
|
|
39
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
40
|
+
</linearGradient>
|
|
41
|
+
</defs>
|
|
42
|
+
</svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_4713_4647)">
|
|
3
|
+
<path d="M21.3413 21.8583V17.3945L23.1676 19.6771L24.6387 21.8583H21.3413Z" fill="url(#paint0_linear_4713_4647)"/>
|
|
4
|
+
<path d="M27.7123 4.14364L30.3209 7.40646L31.2082 12.7668L29.8098 18.9428L27.1879 21.7978L24.8574 21.3899L23.0174 19.5019L21.478 12.7668L23.0174 6.85183L25.3234 4.14364L27.7123 4.14364Z" fill="url(#paint1_linear_4713_4647)"/>
|
|
5
|
+
<path d="M10.7192 4.14368L24.588 4.14366L21.5951 9.2276L21.5951 21.7978L21.5951 29.873L7.23973 29.873L4.90634 29.873L4.48494 12.7668L6.02428 6.85187L8.33037 4.14368L10.7192 4.14368Z" fill="url(#paint2_linear_4713_4647)"/>
|
|
6
|
+
<path d="M26.7726 10.5689L27.4572 11.4252L27.69 12.832L27.3231 14.4528L26.635 15.2021L26.0233 15.095L25.5405 14.5995L25.1365 12.832L25.5405 11.2797L26.1457 10.5689L26.7726 10.5689Z" fill="white"/>
|
|
7
|
+
<path d="M9.59982 3.20001C7.97091 3.20001 6.60919 4.42111 5.68107 6.16251C4.75294 7.90392 4.19982 10.2289 4.19982 12.8V30.2C4.19513 30.4461 4.34044 30.6735 4.56779 30.7672C4.79513 30.8633 5.05997 30.8094 5.23107 30.6313C5.23107 30.6313 5.34122 30.5211 5.51232 30.4063C5.68341 30.2914 5.89435 30.2 5.99982 30.2C6.10529 30.2 6.31622 30.2914 6.48732 30.4063C6.65841 30.5211 6.76857 30.6313 6.76857 30.6313C7.00294 30.8633 7.37794 30.8633 7.61232 30.6313C7.61232 30.6313 7.73654 30.5235 7.91232 30.4063C8.0881 30.2891 8.30841 30.2 8.39982 30.2C8.49122 30.2 8.71154 30.2891 8.88732 30.4063C9.0631 30.5235 9.18732 30.6313 9.18732 30.6313C9.42169 30.8633 9.79669 30.8633 10.0311 30.6313C10.0311 30.6313 10.1365 30.5235 10.3123 30.4063C10.4881 30.2891 10.7037 30.2 10.7998 30.2C10.8959 30.2 11.1115 30.2891 11.2873 30.4063C11.4631 30.5235 11.5686 30.6313 11.5686 30.6313C11.6834 30.7461 11.8404 30.8094 12.0045 30.8047C12.1662 30.8024 12.3209 30.732 12.4311 30.6125C12.4311 30.6125 12.9818 30.2 13.1998 30.2C13.4178 30.2 13.9686 30.6125 13.9686 30.6125C14.0787 30.732 14.2334 30.8024 14.3951 30.8047C14.5592 30.8094 14.7162 30.7461 14.8311 30.6313C14.8311 30.6313 14.9389 30.5211 15.1123 30.4063C15.2858 30.2914 15.4943 30.2 15.5998 30.2C15.7053 30.2 15.9139 30.2914 16.0873 30.4063C16.2608 30.5211 16.3686 30.6313 16.3686 30.6313C16.4811 30.7485 16.6381 30.8141 16.7998 30.8141C16.9615 30.8141 17.1186 30.7485 17.2311 30.6313C17.2311 30.6313 17.3389 30.5211 17.5123 30.4063C17.6858 30.2914 17.9014 30.2 17.9998 30.2C18.0983 30.2 18.3139 30.2914 18.4873 30.4063C18.6608 30.5211 18.7686 30.6313 18.7686 30.6313C18.8811 30.7485 19.0381 30.8141 19.1998 30.8141C19.3615 30.8141 19.5186 30.7485 19.6311 30.6313C19.6311 30.6313 19.7389 30.5211 19.9123 30.4063C20.0858 30.2914 20.2967 30.2 20.3998 30.2C20.5029 30.2 20.7139 30.2914 20.8873 30.4063C21.0608 30.5211 21.1686 30.6313 21.1686 30.6313C21.3397 30.8094 21.6045 30.8633 21.8318 30.7672C22.0592 30.6735 22.2045 30.4461 22.1998 30.2V22.4H26.3998C26.4186 22.4 26.4373 22.4 26.4561 22.4C26.4631 22.4 26.4678 22.4 26.4748 22.4C28.0709 22.3625 29.4045 21.1508 30.3186 19.4375C31.2467 17.6961 31.7998 15.3711 31.7998 12.8C31.7998 10.2289 31.2467 7.90392 30.3186 6.16251C29.4233 4.48439 28.1225 3.30079 26.5686 3.21876C26.524 3.21642 26.4818 3.20001 26.4373 3.20001C26.4256 3.20001 26.4115 3.20001 26.3998 3.20001H9.59982ZM9.59982 4.40001H23.7561C23.2709 4.88048 22.8443 5.48283 22.4811 6.16251C21.5647 7.88283 21.0139 10.1727 20.9998 12.7063C20.9975 12.7367 20.9975 12.7695 20.9998 12.8V21.5188C20.9201 21.6852 20.9201 21.8774 20.9998 22.0438V29.2063C20.8029 29.1242 20.6576 29 20.3998 29C19.8983 29 19.5139 29.2086 19.2373 29.3938C19.2139 29.4102 19.2233 29.4149 19.1998 29.4313C19.1764 29.4149 19.1858 29.4102 19.1623 29.3938C18.8858 29.2086 18.499 29 17.9998 29C17.5006 29 17.1139 29.2086 16.8373 29.3938C16.8139 29.4102 16.8233 29.4149 16.7998 29.4313C16.7764 29.4149 16.7858 29.4102 16.7623 29.3938C16.4858 29.2086 16.1014 29 15.5998 29C15.0983 29 14.7139 29.2086 14.4373 29.3938C14.4256 29.4008 14.4303 29.4055 14.4186 29.4125C14.1373 29.2086 13.7248 29 13.1998 29C12.6748 29 12.2623 29.2086 11.9811 29.4125C11.9693 29.4055 11.974 29.4008 11.9623 29.3938C11.6858 29.211 11.299 29 10.7998 29C10.3006 29 9.91388 29.211 9.63732 29.3938C9.61388 29.4102 9.62325 29.4149 9.59982 29.4313C9.57169 29.4102 9.57404 29.4149 9.54357 29.3938C9.267 29.211 8.89904 29 8.39982 29C7.9006 29 7.53263 29.211 7.25607 29.3938C7.2256 29.4149 7.22794 29.4102 7.19982 29.4313C7.17638 29.4149 7.18575 29.4102 7.16232 29.3938C6.88575 29.2086 6.50138 29 5.99982 29C5.73966 29 5.59669 29.1242 5.39982 29.2063V12.8C5.39982 10.4024 5.92247 8.24142 6.73107 6.72501C7.53966 5.20861 8.57794 4.40001 9.59982 4.40001ZM26.3998 4.40001C26.4186 4.40001 26.4373 4.40001 26.4561 4.40001C27.4592 4.43048 28.474 5.23673 29.2686 6.72501C30.0772 8.24142 30.5998 10.4024 30.5998 12.8C30.5998 15.1977 30.0772 17.3586 29.2686 18.875C28.46 20.3914 27.4217 21.2 26.3998 21.2C25.3779 21.2 24.3397 20.3914 23.5311 18.875C22.7225 17.3586 22.1998 15.1977 22.1998 12.8C22.1998 12.7813 22.1998 12.7625 22.1998 12.7438C22.2092 10.3672 22.7295 8.2297 23.5311 6.72501C24.3397 5.20861 25.3779 4.40001 26.3998 4.40001ZM26.3998 9.95001C25.7647 9.95001 25.3076 10.407 25.0311 10.925C24.7545 11.443 24.5998 12.0922 24.5998 12.8C24.5998 13.5078 24.7545 14.157 25.0311 14.675C25.3076 15.193 25.7647 15.65 26.3998 15.65C27.035 15.65 27.492 15.193 27.7686 14.675C28.0451 14.157 28.1998 13.5078 28.1998 12.8C28.1998 12.0922 28.0451 11.443 27.7686 10.925C27.492 10.407 27.035 9.95001 26.3998 9.95001ZM26.3998 11.15C26.4279 11.15 26.5615 11.1922 26.7186 11.4875C26.8756 11.7828 26.9998 12.2656 26.9998 12.8C26.9998 13.3344 26.8756 13.8172 26.7186 14.1125C26.5615 14.4078 26.4279 14.45 26.3998 14.45C26.3717 14.45 26.2381 14.4078 26.0811 14.1125C25.924 13.8172 25.7998 13.3344 25.7998 12.8C25.7998 12.2656 25.924 11.7828 26.0811 11.4875C26.2381 11.1922 26.3717 11.15 26.3998 11.15ZM7.19982 14.6C6.86935 14.6 6.59982 14.8695 6.59982 15.2C6.59982 15.5305 6.86935 15.8 7.19982 15.8C7.53029 15.8 7.79982 15.5305 7.79982 15.2C7.79982 14.8695 7.53029 14.6 7.19982 14.6ZM9.59982 14.6C9.26935 14.6 8.99982 14.8695 8.99982 15.2C8.99982 15.5305 9.26935 15.8 9.59982 15.8C9.93028 15.8 10.1998 15.5305 10.1998 15.2C10.1998 14.8695 9.93028 14.6 9.59982 14.6ZM11.9998 14.6C11.6693 14.6 11.3998 14.8695 11.3998 15.2C11.3998 15.5305 11.6693 15.8 11.9998 15.8C12.3303 15.8 12.5998 15.5305 12.5998 15.2C12.5998 14.8695 12.3303 14.6 11.9998 14.6ZM14.3998 14.6C14.0693 14.6 13.7998 14.8695 13.7998 15.2C13.7998 15.5305 14.0693 15.8 14.3998 15.8C14.7303 15.8 14.9998 15.5305 14.9998 15.2C14.9998 14.8695 14.7303 14.6 14.3998 14.6ZM16.7998 14.6C16.4693 14.6 16.1998 14.8695 16.1998 15.2C16.1998 15.5305 16.4693 15.8 16.7998 15.8C17.1303 15.8 17.3998 15.5305 17.3998 15.2C17.3998 14.8695 17.1303 14.6 16.7998 14.6ZM19.1998 14.6C18.8693 14.6 18.5998 14.8695 18.5998 15.2C18.5998 15.5305 18.8693 15.8 19.1998 15.8C19.5303 15.8 19.7998 15.5305 19.7998 15.2C19.7998 14.8695 19.5303 14.6 19.1998 14.6ZM22.1998 18.875C22.2889 19.0695 22.385 19.257 22.4811 19.4375C22.8443 20.1172 23.2709 20.7195 23.7561 21.2H22.1998V18.875Z" fill="black"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<linearGradient id="paint0_linear_4713_4647" x1="23.0898" y1="21.6641" x2="23.0898" y2="17.6785" gradientUnits="userSpaceOnUse">
|
|
11
|
+
<stop stop-color="#F37C1C"/>
|
|
12
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
13
|
+
</linearGradient>
|
|
14
|
+
<linearGradient id="paint1_linear_4713_4647" x1="23.0157" y1="19.5043" x2="30.3207" y2="6.85178" gradientUnits="userSpaceOnUse">
|
|
15
|
+
<stop stop-color="#F37C1C"/>
|
|
16
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
17
|
+
</linearGradient>
|
|
18
|
+
<linearGradient id="paint2_linear_4713_4647" x1="5.35397" y1="19.9406" x2="13.5356" y2="5.76971" gradientUnits="userSpaceOnUse">
|
|
19
|
+
<stop stop-color="#EFC530"/>
|
|
20
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
21
|
+
</linearGradient>
|
|
22
|
+
<clipPath id="clip0_4713_4647">
|
|
23
|
+
<rect width="30" height="30" fill="white" transform="translate(3 2)"/>
|
|
24
|
+
</clipPath>
|
|
25
|
+
</defs>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_4613_14583)">
|
|
3
|
+
<path d="M31.219 4.80975L2.62722 20.5558L1.49209 20.9531L0.867952 21.8043L2.00281 22.5987L31.5029 8.10114L32.5811 7.02293V5.434L31.219 4.80975Z" fill="url(#paint0_linear_4613_14583)"/>
|
|
4
|
+
<path d="M12.8504 11.5331L8.07155 12.074L3.92432 14.7338V25.5531L8.07155 29.0693L15.51 28.6636L19.0713 25.9137V15.0043L17.6738 13.0207L12.8504 11.5331Z" fill="url(#paint1_linear_4613_14583)"/>
|
|
5
|
+
<path d="M32.2192 14.8098L2.82421 26.6133L1.68908 27.0105L1.06494 27.8617L2.1998 28.6562L32.5031 18.1011L33.5813 17.0229V15.434L32.2192 14.8098Z" fill="url(#paint2_linear_4613_14583)"/>
|
|
6
|
+
<path d="M13.2446 18.3742L16.1469 17.1013L16.4524 15.6247L15.5359 14.3009L9.37512 13.5881L6.47294 15.2174L6.06543 16.2357L7.79669 17.8141L13.2446 18.3742Z" fill="white"/>
|
|
7
|
+
<path d="M30.6748 4.31376C30.3773 4.34032 30.0958 4.42001 29.8248 4.56876C29.8169 4.56876 29.8115 4.56876 29.8036 4.56876L16.7136 12.0063C15.2712 11.2917 13.4145 10.88 11.3798 10.88C9.20436 10.88 7.22811 11.3449 5.74857 12.155C4.26904 12.9652 3.21982 14.1817 3.21982 15.64V19.5288L1.96607 20.2725L1.92357 20.2938C1.45873 20.5302 1.04436 20.8277 0.776075 21.25C0.497169 21.6856 0.430762 22.3364 0.712325 22.8438C0.720294 22.8517 0.725606 22.857 0.733575 22.865C0.906231 23.1545 1.18779 23.3777 1.47732 23.4813C1.76686 23.5849 2.04045 23.5822 2.28482 23.545C2.66201 23.4892 2.96217 23.3511 3.21982 23.2263V25.16C3.21982 25.3061 3.24373 25.4363 3.26232 25.5638L2.11482 26.01V26.0313H2.09357C1.61014 26.1959 1.17717 26.435 0.861075 26.8175C0.544981 27.1974 0.417481 27.8056 0.627325 28.3263C0.632638 28.3289 0.624669 28.3422 0.627325 28.3475C0.632638 28.3581 0.643263 28.3581 0.648575 28.3688C0.778731 28.6556 1.01248 28.9239 1.26482 29.0488C1.53311 29.1816 1.78811 29.2028 2.02982 29.1975C2.49467 29.1869 2.89045 29.0408 3.17732 28.9213C3.18795 28.916 3.2092 28.9266 3.21982 28.9213V28.9L5.15357 28.22C6.68889 29.3038 8.90951 29.92 11.3798 29.92C13.5553 29.92 15.5315 29.4552 17.0111 28.645C18.4906 27.8349 19.5398 26.6183 19.5398 25.16V23.2263L33.0123 18.53C33.0176 18.5274 33.0283 18.5327 33.0336 18.53C34.1917 18.1316 34.7734 16.8459 34.3936 15.7038C34.0934 14.8006 33.254 14.2242 32.3748 14.2163C32.0879 14.2136 31.8011 14.2853 31.5248 14.4075C31.5195 14.4102 31.5089 14.4049 31.5036 14.4075L19.5398 19.125V15.64C19.5398 15.4116 19.5026 15.1964 19.4548 14.9813L31.9498 8.62751C33.1106 8.04845 33.5064 6.63267 32.9273 5.54626C32.9247 5.54095 32.93 5.53032 32.9273 5.52501H32.9061C32.4625 4.66704 31.5567 4.23142 30.6748 4.31376ZM30.8236 5.65251C31.1742 5.62595 31.5408 5.81454 31.7161 6.16251C31.724 6.17048 31.7294 6.17579 31.7373 6.18376C31.9604 6.59282 31.7984 7.18517 31.3336 7.41626L18.8811 13.7275C18.6394 13.3981 18.3312 13.09 17.9886 12.8138L30.4836 5.75876C30.5845 5.70298 30.7067 5.66048 30.8236 5.65251ZM11.3798 12.24C13.1622 12.24 14.7719 12.6119 15.9698 13.175L16.6286 13.515C17.6592 14.1552 18.1798 14.9175 18.1798 15.64V19.6775L4.57982 24.9969V22.7375C4.57982 24.9969 4.57982 24.9969 4.57982 24.9969V15.64C4.57982 14.8538 5.18279 14.0144 6.40732 13.345C7.63186 12.6756 9.40623 12.24 11.3798 12.24ZM11.3798 12.92C9.61607 12.92 8.16576 13.2999 7.10857 13.8338C6.57998 14.0994 6.15498 14.4022 5.83357 14.7475C5.51217 15.0928 5.25982 15.4913 5.25982 15.98C5.25982 16.4688 5.51217 16.8672 5.83357 17.2125C6.15498 17.5578 6.57998 17.8606 7.10857 18.1263C8.16576 18.6602 9.61607 19.04 11.3798 19.04C13.1436 19.04 14.5939 18.6602 15.6511 18.1263C16.1797 17.8606 16.6047 17.5578 16.9261 17.2125C17.2475 16.8672 17.4998 16.4688 17.4998 15.98C17.4998 15.4913 17.2475 15.0928 16.9261 14.7475C16.6047 14.4022 16.1797 14.0994 15.6511 13.8338C14.5939 13.2999 13.1436 12.92 11.3798 12.92ZM11.3798 14.28C12.9497 14.28 14.2034 14.6253 15.0348 15.045C15.4492 15.2549 15.7706 15.4727 15.9486 15.6613C16.1265 15.8499 16.1398 15.9933 16.1398 15.98C16.1398 15.9667 16.1265 16.1102 15.9486 16.2988C15.7706 16.4874 15.4492 16.7052 15.0348 16.915C14.2034 17.3347 12.9497 17.68 11.3798 17.68C9.80998 17.68 8.55623 17.3347 7.72482 16.915C7.31045 16.7052 6.98904 16.4874 6.81107 16.2988C6.63311 16.1102 6.61982 15.9667 6.61982 15.98C6.61982 15.9933 6.63311 15.8499 6.81107 15.6613C6.98904 15.4727 7.31045 15.2549 7.72482 15.045C8.55623 14.6253 9.80998 14.28 11.3798 14.28ZM11.3798 15.0875C10.2536 15.0875 9.33982 15.5444 9.33982 16.1075C9.33982 16.6706 10.2536 17.1275 11.3798 17.1275C12.5061 17.1275 13.4198 16.6706 13.4198 16.1075C13.4198 15.5444 12.5061 15.0875 11.3798 15.0875ZM32.3536 15.5763C32.6644 15.5895 32.9911 15.8074 33.0973 16.1288C33.2593 16.6122 33.0495 17.0797 32.5873 17.2338C32.5794 17.2338 32.574 17.2338 32.5661 17.2338L5.17482 26.7963C5.13232 26.8069 5.08717 26.8202 5.04732 26.8388L4.98357 26.86C4.96232 26.8653 4.94107 26.8733 4.91982 26.8813L2.73107 27.6463C2.71779 27.6516 2.70186 27.6595 2.68857 27.6675C2.49998 27.7472 2.1892 27.8322 2.00857 27.8375C1.91826 27.8402 1.85982 27.8163 1.85982 27.8163C1.82264 27.7313 1.81732 27.7711 1.90232 27.6675C1.98732 27.5639 2.23967 27.4125 2.56107 27.3063C2.56904 27.2983 2.57436 27.293 2.58232 27.285L32.0348 15.6613C32.0428 15.6533 32.0481 15.648 32.0561 15.64C32.1464 15.5975 32.25 15.5709 32.3536 15.5763ZM3.21982 21.1013V21.6963L2.83732 21.9088H2.81607C2.55842 22.0363 2.25826 22.1584 2.07232 22.185C1.9767 22.1983 1.93154 22.1877 1.92357 22.185C1.91826 22.1824 1.90498 22.1877 1.90232 22.185C1.89701 22.1744 1.90764 22.1717 1.90232 22.1638C1.85982 22.092 1.85186 22.0841 1.92357 21.9725C2.00326 21.8477 2.24764 21.6511 2.58232 21.4838C2.59029 21.4758 2.59561 21.4705 2.60357 21.4625L3.21982 21.1013ZM18.1798 23.6938V25.16C18.1798 25.9463 17.5769 26.7856 16.3523 27.455C15.1278 28.1244 13.3534 28.56 11.3798 28.56C9.6267 28.56 8.03029 28.212 6.83232 27.6463L18.1798 23.6938Z" fill="black"/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<linearGradient id="paint0_linear_4613_14583" x1="16.3231" y1="18.6562" x2="16.3231" y2="4.80975" gradientUnits="userSpaceOnUse">
|
|
11
|
+
<stop stop-color="#EFC530"/>
|
|
12
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
13
|
+
</linearGradient>
|
|
14
|
+
<linearGradient id="paint1_linear_4613_14583" x1="11.4978" y1="29.0727" x2="11.4978" y2="11.5331" gradientUnits="userSpaceOnUse">
|
|
15
|
+
<stop stop-color="#F37C1C"/>
|
|
16
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
17
|
+
</linearGradient>
|
|
18
|
+
<linearGradient id="paint2_linear_4613_14583" x1="17.3231" y1="28.6562" x2="17.3231" y2="14.8098" gradientUnits="userSpaceOnUse">
|
|
19
|
+
<stop stop-color="#EFC530"/>
|
|
20
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
21
|
+
</linearGradient>
|
|
22
|
+
<clipPath id="clip0_4613_14583">
|
|
23
|
+
<rect width="34" height="34" fill="white" transform="translate(0.5)"/>
|
|
24
|
+
</clipPath>
|
|
25
|
+
</defs>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_4088_33996)">
|
|
3
|
+
<path d="M3.46094 23.0983C4.07445 23.4795 4.71044 23.8231 5.36539 24.1274L5.43573 24.1599L5.97676 24.3928V21.8635C5.06782 21.6739 4.21841 21.4627 3.4826 21.2461L3.46094 23.0983Z" fill="url(#paint0_linear_4088_33996)"/>
|
|
4
|
+
<path d="M8.7686 8.99512C8.22756 9.15218 7.68656 9.3255 7.21045 9.50964V24.8909C7.69738 25.0696 8.20592 25.243 8.73614 25.3892L8.7686 8.99512Z" fill="url(#paint1_linear_4088_33996)"/>
|
|
5
|
+
<path d="M10.0721 29.4132C10.1057 28.6372 10.2478 27.8697 10.4941 27.1331C9.58077 26.9456 8.67782 26.7106 7.78892 26.429C6.92692 26.15 6.07997 25.8264 5.25146 25.4596C4.16939 26.624 4.05578 27.3985 4.03955 29.4132H10.0721Z" fill="url(#paint2_linear_4088_33996)"/>
|
|
6
|
+
<path d="M16.6082 6.82879V6.1139C16.6068 5.7069 16.4443 5.31705 16.1563 5.02977C15.8683 4.74248 15.4783 4.58117 15.0717 4.58118C14.6651 4.58117 14.2751 4.74248 13.9871 5.02977C13.6991 5.31705 13.5366 5.7069 13.5352 6.1139V6.82879C14.5581 6.75297 15.5853 6.75297 16.6082 6.82879Z" fill="url(#paint3_linear_4088_33996)"/>
|
|
7
|
+
<path d="M10.0024 11.8711C11.6758 11.6693 13.3595 11.5663 15.0449 11.5624H15.1152C16.8006 11.5688 18.4841 11.6719 20.1577 11.8711V8.65944C19.4327 8.48613 18.7023 8.34532 17.9611 8.237C16.6337 8.04658 15.2908 7.98852 13.952 8.06369C12.6205 8.14564 11.2989 8.345 10.0024 8.65944V11.8711Z" fill="url(#paint4_linear_4088_33996)"/>
|
|
8
|
+
<path d="M19.6491 27.1331C19.8935 27.87 20.0337 28.6375 20.0656 29.4132H26.0766C26.0766 27.3985 25.9737 26.624 24.8646 25.4596C24.5183 25.6112 24.1613 25.7629 23.7825 25.8983C23.4038 26.0337 22.9494 26.2124 22.5274 26.3532C22.1054 26.494 21.6833 26.6186 21.2559 26.7377C20.7149 26.8894 20.1738 27.0194 19.6328 27.1331H19.6491Z" fill="url(#paint5_linear_4088_33996)"/>
|
|
9
|
+
<path d="M3.46094 19.9354C4.16969 20.152 5.02455 20.3795 5.95513 20.5799V17.834H3.46094V19.9354Z" fill="url(#paint6_linear_4088_33996)"/>
|
|
10
|
+
<path d="M3.46094 16.5721H5.95513V13.8208C5.02996 14.0212 4.1751 14.2433 3.46094 14.4707V16.5721Z" fill="url(#paint7_linear_4088_33996)"/>
|
|
11
|
+
<path d="M5.95513 10.0081C5.08973 10.3704 4.25551 10.8033 3.46094 11.3025V13.1547C4.20216 12.9381 5.08407 12.7268 5.95513 12.5319V10.0081Z" fill="url(#paint8_linear_4088_33996)"/>
|
|
12
|
+
<path d="M10.0024 16.5722H20.1577V13.1439C18.4742 12.9331 16.7794 12.8264 15.0828 12.8243C13.3952 12.8266 11.7093 12.9333 10.0349 13.1439V16.5722H10.0024Z" fill="url(#paint9_linear_4088_33996)"/>
|
|
13
|
+
<path d="M10.0024 21.2515C11.6752 21.4609 13.3591 21.5695 15.0449 21.5765H15.1152C16.8012 21.5732 18.4852 21.4647 20.1577 21.2515V17.8286H10.0024V21.2515Z" fill="url(#paint10_linear_4088_33996)"/>
|
|
14
|
+
<path d="M10.0025 25.7305C11.6511 26.1377 13.3416 26.3503 15.0395 26.3642H15.1153C16.8133 26.3515 18.5039 26.1388 20.1523 25.7305V22.5243C18.4788 22.7243 16.7952 22.8274 15.1099 22.833H15.0395C13.3542 22.8266 11.6706 22.7235 9.99707 22.5243V25.7305H10.0025Z" fill="url(#paint11_linear_4088_33996)"/>
|
|
15
|
+
<path d="M33.1044 20.309V18.1426C33.1044 17.704 32.9307 17.2833 32.6214 16.9727C32.3121 16.662 31.8924 16.4868 31.4542 16.4854H27.9375V17.9206H31.0538C31.2203 17.9206 31.3799 17.9868 31.4976 18.1046C31.6153 18.2224 31.6815 18.3822 31.6815 18.5488V20.3144L33.1044 20.309Z" fill="url(#paint12_linear_4088_33996)"/>
|
|
16
|
+
<path d="M24.188 16.5721H26.6822V14.4707C25.9626 14.2433 25.1132 14.0212 24.188 13.8208V16.5721Z" fill="url(#paint13_linear_4088_33996)"/>
|
|
17
|
+
<path d="M22.9329 9.50966C22.4424 9.32552 21.9338 9.15763 21.4072 9.00598V25.4C21.9212 25.2484 22.4298 25.0751 22.9329 24.8964V9.50966Z" fill="url(#paint14_linear_4088_33996)"/>
|
|
18
|
+
<path d="M26.6822 11.3025C25.8864 10.8055 25.0523 10.3727 24.188 10.0081V12.5319C25.0861 12.7214 25.941 12.9381 26.6822 13.1547V11.3025Z" fill="url(#paint15_linear_4088_33996)"/>
|
|
19
|
+
<path d="M24.188 20.5745C25.1186 20.3741 25.9734 20.1466 26.6822 19.93V17.8286H24.188V20.5745Z" fill="url(#paint16_linear_4088_33996)"/>
|
|
20
|
+
<path d="M24.188 24.3927C24.3611 24.3169 24.5397 24.241 24.729 24.1598C24.7514 24.1467 24.7749 24.1359 24.7994 24.1273C25.4559 23.8261 26.092 23.4824 26.7038 23.0983V21.2406C25.968 21.4572 25.1132 21.6685 24.2097 21.8634V24.3927H24.188Z" fill="url(#paint17_linear_4088_33996)"/>
|
|
21
|
+
<path d="M33.8076 16.2417C33.391 15.7341 32.8216 15.375 32.1844 15.2181V14.0591H32.7255C32.9168 14.0591 33.1004 13.9834 33.2362 13.8484C33.372 13.7135 33.4491 13.5303 33.4505 13.3388C33.4491 13.1467 33.3722 12.963 33.2366 12.8272C33.1009 12.6914 32.9173 12.6144 32.7255 12.613H30.2097C30.0178 12.6144 29.8343 12.6914 29.6986 12.8272C29.563 12.963 29.4861 13.1467 29.4847 13.3388C29.4861 13.5303 29.5631 13.7135 29.6989 13.8484C29.8347 13.9834 30.0183 14.0591 30.2097 14.0591H30.7507V15.1423H28.0455V10.972C28.0443 10.8549 28.0152 10.7397 27.9606 10.6361C27.9061 10.5325 27.8276 10.4434 27.7317 10.3762C26.0673 9.3117 24.2676 8.47559 22.3809 7.89033C20.9453 7.42809 19.4715 7.0946 17.9769 6.8938V6.12473C17.9769 5.36006 17.6738 4.62664 17.1342 4.08544C16.5945 3.54423 15.8624 3.23947 15.0986 3.23804C14.3328 3.23803 13.5982 3.54181 13.0556 4.08286C12.5131 4.62391 12.2069 5.35813 12.204 6.12473V6.88296C10.7114 7.08767 9.23957 7.42294 7.80542 7.88491C5.91309 8.4712 4.10796 9.30913 2.43837 10.3762C2.34053 10.4418 2.26026 10.5304 2.2046 10.6343C2.14895 10.7382 2.11959 10.8541 2.11914 10.972V23.4287C2.12081 23.5465 2.15007 23.6622 2.20457 23.7666C2.25907 23.871 2.3373 23.9612 2.43295 24.0298C2.92166 24.3512 3.42736 24.6459 3.94784 24.9126C2.73051 26.402 2.73051 27.6206 2.73051 30.0361C2.73051 30.2277 2.80614 30.4114 2.94093 30.5474C3.07572 30.6833 3.25876 30.7604 3.4501 30.7618H10.6999C10.8913 30.7604 11.0743 30.6833 11.2091 30.5474C11.3439 30.4114 11.4195 30.2277 11.4195 30.0361C11.4006 29.1608 11.5399 28.2892 11.8307 27.4635C12.8946 27.6227 13.9687 27.7041 15.0445 27.7073H15.1256C16.2031 27.7041 17.279 27.6226 18.3448 27.4635C18.631 28.2903 18.7684 29.1613 18.7505 30.0361C18.752 30.2281 18.8288 30.4119 18.9645 30.5477C19.1001 30.6835 19.2837 30.7604 19.4755 30.7618H26.72C26.9123 30.7618 27.0967 30.6854 27.2326 30.5493C27.3686 30.4132 27.445 30.2286 27.445 30.0361C27.445 27.6368 27.445 26.402 26.2114 24.9181C26.7315 24.6506 27.2372 24.3559 27.7263 24.0353C27.8238 23.9693 27.9038 23.8806 27.9595 23.7769C28.0151 23.6731 28.0446 23.5573 28.0455 23.4395V19.2692H30.3449V20.9427C30.3463 21.1343 30.4234 21.3175 30.5592 21.4524C30.695 21.5873 30.8786 21.6631 31.0699 21.6631H33.7751C33.9664 21.6631 34.15 21.5873 34.2858 21.4524C34.4216 21.3175 34.4987 21.1343 34.5001 20.9427V18.1373C34.5 17.4455 34.2632 16.7746 33.8292 16.2363L33.8076 16.2417ZM31.0753 17.8232H28.0509V16.5775H31.4757C31.8889 16.5775 32.2853 16.7418 32.5775 17.0343C32.8697 17.3269 33.0339 17.7236 33.0339 18.1373V20.217H31.7949V18.5435C31.7935 18.3529 31.7172 18.1705 31.5826 18.0357C31.4479 17.9009 31.2657 17.8246 31.0753 17.8232ZM24.3016 12.456V10.1488C25.0977 10.4936 25.868 10.8954 26.6064 11.3511V13.0301C25.9409 12.8405 25.1835 12.6509 24.2799 12.456H24.3016ZM24.3016 16.4746V13.9399C25.178 14.1349 25.9463 14.3353 26.6064 14.5411V16.4746H24.3016ZM24.3016 20.4553V17.9206H26.6064V19.8596C25.8814 20.0708 25.0915 20.282 24.2799 20.477L24.3016 20.4553ZM24.3016 24.2465V21.9393C25.2051 21.7443 25.968 21.5548 26.6064 21.3652V23.0441C26.0148 23.4148 25.4004 23.7477 24.7668 24.0407H24.7073L24.5342 24.1219L24.3178 24.214L24.3016 24.2465ZM10.1157 22.6217C11.7588 22.8143 13.4117 22.912 15.0661 22.9142H15.131C16.7854 22.9127 18.4384 22.815 20.0815 22.6217V25.6438C18.4619 26.0474 16.8 26.2564 15.131 26.2666H15.0553C13.3903 26.2553 11.7323 26.0481 10.1157 25.6492V22.6434V22.6217ZM20.0707 21.1648C18.4282 21.3672 16.7751 21.4703 15.1202 21.4735H15.0499C13.395 21.4699 11.7419 21.3668 10.0994 21.1648V17.9152H20.0545V21.1648H20.0707ZM20.0707 13.2196V16.4692H10.1102V13.2196C11.7512 13.0206 13.4024 12.9175 15.0553 12.9109H15.0878C16.7462 12.9198 18.4027 13.0247 20.049 13.225L20.0707 13.2196ZM20.0707 11.7681C18.4276 11.5739 16.7747 11.4744 15.1202 11.4703H15.0499C13.3973 11.4773 11.7463 11.5767 10.1048 11.7681V8.73522C11.3729 8.42827 12.6656 8.23434 13.9678 8.15571C14.3303 8.15571 14.6982 8.12863 15.0499 8.12863C16.0148 8.12757 16.9785 8.19634 17.9336 8.33442C18.6694 8.44274 19.3782 8.57274 20.049 8.73522V11.7681H20.0707ZM21.5153 25.2538V9.1035C21.9535 9.23348 22.3971 9.37971 22.8516 9.54219V24.8097C22.3647 24.983 21.9048 25.1293 21.499 25.2592L21.5153 25.2538ZM26.0004 29.3158H20.1735C20.1333 28.5963 20.0025 27.8848 19.7839 27.1982C20.325 27.0898 20.8119 26.9653 21.3205 26.819C21.829 26.6728 22.2024 26.5591 22.5973 26.4345H22.6514C23.0518 26.2991 23.463 26.1691 23.8579 26.0012C24.2529 25.8333 24.5613 25.7142 24.8642 25.5842C25.8868 26.6674 25.995 27.4256 26.0004 29.332V29.3158ZM16.4944 6.73131C16.0183 6.69881 15.5368 6.67715 15.0553 6.67715C14.5738 6.67715 14.0976 6.67715 13.6107 6.73131V6.1139C13.6121 5.73132 13.765 5.36489 14.0357 5.09488C14.3065 4.82486 14.6731 4.67326 15.0553 4.67326C15.4365 4.67469 15.8018 4.82693 16.0714 5.09679C16.3409 5.36666 16.493 5.73226 16.4944 6.1139V6.73131ZM10.3537 27.2036C10.1321 27.8894 10.0011 28.6013 9.96414 29.3212H4.15885C4.15885 27.4148 4.27246 26.6728 5.30043 25.5734C6.11257 25.9318 6.94334 26.2464 7.78917 26.5157C8.637 26.7894 9.49841 27.019 10.3699 27.2036H10.3537ZM7.29685 24.8097V9.5801C7.83788 9.39596 8.25449 9.24431 8.66568 9.12516V25.2701C8.22203 25.1347 7.78377 24.9884 7.32389 24.8206L7.29685 24.8097ZM5.85229 24.2302C5.72245 24.1706 5.59801 24.1165 5.47898 24.0515L5.38698 24.0136C4.75468 23.7221 4.14042 23.393 3.54748 23.0279V21.3489C4.26706 21.5493 5.05697 21.7443 5.85229 21.9176V24.2681V24.2302ZM3.54748 19.8487V17.9098H5.85229V20.477C4.98123 20.2658 4.20755 20.0654 3.5529 19.8596L3.54748 19.8487ZM3.54748 16.4638V14.5194C4.20754 14.3082 4.98123 14.1078 5.85229 13.9183V16.4529L3.54748 16.4638ZM3.54748 13.0192V11.3403C4.28715 10.8868 5.05726 10.4851 5.85229 10.1379V12.4451C5.04074 12.6293 4.25083 12.8297 3.5529 13.0301L3.54748 13.0192Z" fill="#1D1D1D"/>
|
|
22
|
+
</g>
|
|
23
|
+
<defs>
|
|
24
|
+
<linearGradient id="paint0_linear_4088_33996" x1="3.46094" y1="22.8221" x2="5.95512" y2="22.8221" gradientUnits="userSpaceOnUse">
|
|
25
|
+
<stop stop-color="#F37C1C"/>
|
|
26
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
27
|
+
</linearGradient>
|
|
28
|
+
<linearGradient id="paint1_linear_4088_33996" x1="7.21045" y1="17.1949" x2="8.7686" y2="17.1949" gradientUnits="userSpaceOnUse">
|
|
29
|
+
<stop stop-color="#EFC530"/>
|
|
30
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
31
|
+
</linearGradient>
|
|
32
|
+
<linearGradient id="paint2_linear_4088_33996" x1="4.06119" y1="27.4364" x2="10.4941" y2="27.4364" gradientUnits="userSpaceOnUse">
|
|
33
|
+
<stop stop-color="#EFC530"/>
|
|
34
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
35
|
+
</linearGradient>
|
|
36
|
+
<linearGradient id="paint3_linear_4088_33996" x1="13.5352" y1="5.70769" x2="16.6082" y2="5.70769" gradientUnits="userSpaceOnUse">
|
|
37
|
+
<stop stop-color="#EFC530"/>
|
|
38
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
39
|
+
</linearGradient>
|
|
40
|
+
<linearGradient id="paint4_linear_4088_33996" x1="9.99162" y1="9.95385" x2="20.1469" y2="9.95385" gradientUnits="userSpaceOnUse">
|
|
41
|
+
<stop stop-color="#F37C1C"/>
|
|
42
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
43
|
+
</linearGradient>
|
|
44
|
+
<linearGradient id="paint5_linear_4088_33996" x1="19.649" y1="27.4364" x2="26.0766" y2="27.4364" gradientUnits="userSpaceOnUse">
|
|
45
|
+
<stop stop-color="#EFC530"/>
|
|
46
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
47
|
+
</linearGradient>
|
|
48
|
+
<linearGradient id="paint6_linear_4088_33996" x1="3.46094" y1="19.1988" x2="5.95513" y2="19.1988" gradientUnits="userSpaceOnUse">
|
|
49
|
+
<stop stop-color="#F37C1C"/>
|
|
50
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
51
|
+
</linearGradient>
|
|
52
|
+
<linearGradient id="paint7_linear_4088_33996" x1="3.46094" y1="15.1965" x2="5.95513" y2="15.1965" gradientUnits="userSpaceOnUse">
|
|
53
|
+
<stop stop-color="#F37C1C"/>
|
|
54
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
55
|
+
</linearGradient>
|
|
56
|
+
<linearGradient id="paint8_linear_4088_33996" x1="3.46094" y1="11.5787" x2="5.95513" y2="11.5787" gradientUnits="userSpaceOnUse">
|
|
57
|
+
<stop stop-color="#F37C1C"/>
|
|
58
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
59
|
+
</linearGradient>
|
|
60
|
+
<linearGradient id="paint9_linear_4088_33996" x1="9.99162" y1="14.6983" x2="20.1469" y2="14.6983" gradientUnits="userSpaceOnUse">
|
|
61
|
+
<stop stop-color="#F37C1C"/>
|
|
62
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
63
|
+
</linearGradient>
|
|
64
|
+
<linearGradient id="paint10_linear_4088_33996" x1="9.99162" y1="19.7025" x2="20.1469" y2="19.7025" gradientUnits="userSpaceOnUse">
|
|
65
|
+
<stop stop-color="#F37C1C"/>
|
|
66
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
67
|
+
</linearGradient>
|
|
68
|
+
<linearGradient id="paint11_linear_4088_33996" x1="9.98625" y1="24.447" x2="20.1415" y2="24.447" gradientUnits="userSpaceOnUse">
|
|
69
|
+
<stop stop-color="#F37C1C"/>
|
|
70
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
71
|
+
</linearGradient>
|
|
72
|
+
<linearGradient id="paint12_linear_4088_33996" x1="27.9375" y1="18.3972" x2="33.1044" y2="18.3972" gradientUnits="userSpaceOnUse">
|
|
73
|
+
<stop stop-color="#EFC530"/>
|
|
74
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
75
|
+
</linearGradient>
|
|
76
|
+
<linearGradient id="paint13_linear_4088_33996" x1="24.188" y1="15.1965" x2="26.6822" y2="15.1965" gradientUnits="userSpaceOnUse">
|
|
77
|
+
<stop stop-color="#F37C1C"/>
|
|
78
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
79
|
+
</linearGradient>
|
|
80
|
+
<linearGradient id="paint14_linear_4088_33996" x1="21.4072" y1="17.2003" x2="22.9329" y2="17.2003" gradientUnits="userSpaceOnUse">
|
|
81
|
+
<stop stop-color="#EFC530"/>
|
|
82
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
83
|
+
</linearGradient>
|
|
84
|
+
<linearGradient id="paint15_linear_4088_33996" x1="24.188" y1="11.5787" x2="26.6822" y2="11.5787" gradientUnits="userSpaceOnUse">
|
|
85
|
+
<stop stop-color="#F37C1C"/>
|
|
86
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
87
|
+
</linearGradient>
|
|
88
|
+
<linearGradient id="paint16_linear_4088_33996" x1="24.188" y1="19.1988" x2="26.6822" y2="19.1988" gradientUnits="userSpaceOnUse">
|
|
89
|
+
<stop stop-color="#F37C1C"/>
|
|
90
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
91
|
+
</linearGradient>
|
|
92
|
+
<linearGradient id="paint17_linear_4088_33996" x1="24.188" y1="22.8166" x2="26.6822" y2="22.8166" gradientUnits="userSpaceOnUse">
|
|
93
|
+
<stop stop-color="#F37C1C"/>
|
|
94
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
95
|
+
</linearGradient>
|
|
96
|
+
<clipPath id="clip0_4088_33996">
|
|
97
|
+
<rect width="34" height="34" fill="white" transform="translate(0.5)"/>
|
|
98
|
+
</clipPath>
|
|
99
|
+
</defs>
|
|
100
|
+
</svg>
|
|
@@ -1,11 +1,17 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="
|
|
3
|
-
<
|
|
4
|
-
<path d="
|
|
5
|
-
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M25.8928 13.0919H25.3231C24.2568 13.0917 23.227 13.4804 22.4268 14.1852C21.6266 14.89 21.1109 15.8624 20.9764 16.9202C21.2089 16.6397 21.5006 16.4141 21.8305 16.2595C22.1605 16.1048 22.5205 16.025 22.8849 16.0258H24.423C25.0818 16.0258 25.7135 16.2875 26.1793 16.7533C26.6451 17.2191 26.9068 17.8509 26.9068 18.5096V22.6512C26.9053 23.309 26.643 23.9393 26.1773 24.4039C25.7117 24.8685 25.0808 25.1294 24.423 25.1294H22.8849C22.515 25.1295 22.1498 25.0473 21.8158 24.8887C21.4817 24.73 21.1872 24.4989 20.9536 24.2122C21.0531 25.3022 21.5565 26.3156 22.365 27.0535C23.1735 27.7913 24.2286 28.2003 25.3231 28.2H25.8928C26.4681 28.2 27.0378 28.0867 27.5693 27.8665C28.1008 27.6464 28.5838 27.3237 28.9906 26.9169C29.3974 26.5101 29.7201 26.0271 29.9402 25.4956C30.1604 24.9641 30.2737 24.3944 30.2737 23.8191V17.4728C30.2737 16.8975 30.1604 16.3278 29.9402 15.7963C29.7201 15.2648 29.3974 14.7819 28.9906 14.3751C28.5838 13.9682 28.1008 13.6455 27.5693 13.4254C27.0378 13.2052 26.4681 13.0919 25.8928 13.0919Z" fill="white"/>
|
|
3
|
+
<path d="M9.83877 13.5933L10.0268 14.6757C10.1143 14.7943 10.2285 14.8906 10.3601 14.9569C10.4917 15.0232 10.6371 15.0576 10.7845 15.0574C10.9091 15.0574 11.0326 15.0328 11.1477 14.9849C11.2628 14.937 11.3673 14.8668 11.4552 14.7784C11.543 14.69 11.6126 14.5851 11.6598 14.4697C11.707 14.3543 11.7309 14.2307 11.7301 14.106V8.14142H22.2351C22.626 7.65967 22.8285 7.05228 22.8048 6.43236C22.7713 5.81198 22.5117 5.22536 22.075 4.78342C21.6383 4.34149 21.0549 4.07488 20.4349 4.03399C19.9395 4.00639 19.4467 4.12315 19.0164 4.3701C18.5723 4.62651 18.0518 4.71742 17.5471 4.6267C17.0424 4.53597 16.5861 4.26949 16.2591 3.87448C15.962 3.51926 15.5909 3.23324 15.1717 3.03643C14.7525 2.83963 14.2954 2.73679 13.8323 2.73511C13.3698 2.73567 12.9131 2.83804 12.4947 3.03495C12.0763 3.23187 11.7063 3.5185 11.4111 3.87448C11.0834 4.26853 10.6272 4.53429 10.1228 4.62496C9.61841 4.71562 9.09819 4.62538 8.65381 4.3701C8.39202 4.21773 8.10419 4.11534 7.80498 4.06817C7.59716 4.04238 7.38765 4.03284 7.17834 4.03968C6.57579 4.09269 6.01206 4.35941 5.58893 4.79167L5.15026 5.38985C4.97662 5.71328 4.87736 6.07139 4.85972 6.43807C4.84513 6.6832 4.86818 6.92912 4.92807 7.16726L5.418 8.15281H9.81029V13.5933H9.83877Z" fill="url(#paint0_linear_4088_33988)"/>
|
|
4
|
+
<path d="M6.99027 31.2591H20.6627C20.7874 31.2599 20.911 31.236 21.0264 31.1888C21.1418 31.1416 21.2467 31.0721 21.3351 30.9842C21.4236 30.8963 21.4937 30.7918 21.5416 30.6767C21.5895 30.5616 21.6141 30.4381 21.6141 30.3135V10.0383H13.6385V14.1059C13.6385 14.8613 13.3384 15.5858 12.8042 16.12C12.2701 16.6542 11.5455 16.9543 10.7901 16.9543C10.3977 16.9557 10.0094 16.8742 9.6507 16.7151C9.14207 16.4931 8.70938 16.1274 8.40576 15.6628C8.10214 15.1983 7.94081 14.6552 7.94164 14.1002V10.0383H6.0332V30.3135C6.0332 30.5658 6.13344 30.8078 6.31186 30.9862C6.49027 31.1646 6.73225 31.2648 6.98457 31.2648L6.99027 31.2591Z" fill="url(#paint1_linear_4088_33988)"/>
|
|
5
|
+
<path d="M25.2945 11.8955H23.517V9.5484C23.9183 9.1176 24.2293 8.61092 24.4318 8.05815C24.6343 7.50538 24.7242 6.91771 24.6963 6.32967C24.6481 5.23763 24.1929 4.20319 23.4202 3.42997C22.6636 2.65778 21.6502 2.18961 20.5718 2.114C19.7059 2.05699 18.8424 2.25505 18.0879 2.68369C18.0296 2.71403 17.9625 2.72323 17.8981 2.70973C17.8337 2.69623 17.776 2.66086 17.7347 2.60962C17.2602 2.04384 16.6674 1.58893 15.9981 1.27693C15.3288 0.964919 14.5993 0.803386 13.8608 0.803711C13.1211 0.80364 12.3903 0.965831 11.72 1.27884C11.0497 1.59184 10.4561 2.04804 9.98129 2.61531C9.94002 2.66654 9.88232 2.70191 9.81793 2.71541C9.75355 2.72891 9.68645 2.71971 9.62808 2.68937C8.87261 2.25805 8.00643 2.05984 7.13856 2.11968C6.06035 2.19168 5.04639 2.65811 4.29013 3.42997C3.52269 4.2039 3.06998 5.23521 3.01974 6.32397C2.99287 6.91236 3.08385 7.50019 3.28734 8.05293C3.49082 8.60568 3.80269 9.11218 4.20466 9.54269V30.2964C4.20466 31.0518 4.50477 31.7763 5.03895 32.3105C5.57314 32.8447 6.29764 33.1448 7.05309 33.1448H20.7256C21.481 33.1448 22.2055 32.8447 22.7397 32.3105C23.2739 31.7763 23.574 31.0518 23.574 30.2964V29.3849H25.3571C26.9512 29.3818 28.479 28.7469 29.6057 27.6192C30.7323 26.4915 31.3658 24.963 31.3673 23.369V17.8829C31.3643 16.2904 30.7299 14.764 29.6033 13.6384C28.4767 12.5128 26.9497 11.8799 25.3571 11.8784L25.2945 11.8955ZM23.5227 17.5924H24.6621C24.9129 17.5924 25.1534 17.692 25.3308 17.8693C25.5081 18.0467 25.6078 18.2872 25.6078 18.538V22.7537C25.6085 22.8784 25.5846 23.002 25.5374 23.1174C25.4902 23.2328 25.4207 23.3377 25.3328 23.4261C25.2449 23.5145 25.1404 23.5847 25.0253 23.6326C24.9102 23.6804 24.7868 23.7051 24.6621 23.7051H23.5227V17.5924ZM4.85982 6.43221C4.89315 5.81274 5.15196 5.22687 5.58747 4.78506C6.02297 4.34326 6.6051 4.07606 7.22403 4.03384C7.72172 4.00067 8.21789 4.11777 8.64824 4.36995C9.09262 4.62523 9.61284 4.71547 10.1172 4.6248C10.6216 4.53414 11.0778 4.26838 11.4055 3.87433C11.701 3.51865 12.071 3.23223 12.4894 3.03534C12.9078 2.83845 13.3643 2.73591 13.8267 2.73496C14.2899 2.73586 14.7473 2.83834 15.1666 3.0352C15.5859 3.23206 15.9569 3.51851 16.2535 3.87433C16.5805 4.26934 17.0368 4.53582 17.5415 4.62654C18.0462 4.71726 18.5667 4.62636 19.0108 4.36995C19.4391 4.11789 19.9335 4.00077 20.4293 4.03384C21.0493 4.07473 21.6328 4.34134 22.0695 4.78327C22.5061 5.22521 22.7657 5.81183 22.7992 6.43221C22.8282 7.05289 22.6251 7.66213 22.2295 8.14127H11.7302V14.1059C11.731 14.2305 11.7071 14.3541 11.6599 14.4695C11.6127 14.5849 11.5431 14.6898 11.4553 14.7783C11.3674 14.8667 11.2629 14.9369 11.1478 14.9847C11.0327 15.0326 10.9092 15.0573 10.7846 15.0573C10.6599 15.0573 10.5365 15.0326 10.4213 14.9847C10.3062 14.9369 10.2017 14.8667 10.1138 14.7783C10.0259 14.6898 9.9564 14.5849 9.90921 14.4695C9.86202 14.3541 9.83811 14.2305 9.83887 14.1059V8.13557H5.4181C5.02898 7.65348 4.83033 7.04534 4.85982 6.42651V6.43221ZM21.6257 30.3191C21.6257 30.4438 21.601 30.5672 21.5531 30.6824C21.5053 30.7975 21.4351 30.902 21.3467 30.9899C21.2583 31.0778 21.1533 31.1473 21.0379 31.1945C20.9225 31.2417 20.799 31.2656 20.6743 31.2648H7.00184C6.87765 31.2648 6.75468 31.2404 6.63994 31.1928C6.52521 31.1453 6.42094 31.0757 6.33313 30.9878C6.24531 30.9 6.17568 30.7958 6.12815 30.681C6.08063 30.5663 6.05614 30.4433 6.05614 30.3191V10.0383H7.95891V14.1059C7.95891 14.8613 8.25902 15.5858 8.7932 16.12C9.32738 16.6542 10.0519 16.9543 10.8073 16.9543C11.5628 16.9543 12.2873 16.6542 12.8215 16.12C13.3557 15.5858 13.6558 14.8613 13.6558 14.1059V10.044H21.6314V30.3191H21.6257ZM29.4133 23.3918C29.4118 24.4837 28.9774 25.5304 28.2053 26.3025C27.4332 27.0747 26.3864 27.5091 25.2945 27.5106H23.517V25.6078H24.6564C25.4119 25.6078 26.1364 25.3077 26.6705 24.7736C27.2047 24.2394 27.5048 23.5149 27.5048 22.7594V18.5437C27.5048 17.7883 27.2047 17.0638 26.6705 16.5296C26.1364 15.9954 25.4119 15.6953 24.6564 15.6953H23.517V13.7926H25.2945C26.3864 13.7941 27.4332 14.2285 28.2053 15.0006C28.9774 15.7727 29.4118 16.8195 29.4133 17.9114V23.3918Z" fill="black"/>
|
|
6
|
+
<path d="M20.6687 33.1905H6.99624C6.23865 33.1815 5.51506 32.8746 4.982 32.3362C4.44894 31.7978 4.14926 31.0712 4.14781 30.3136V9.5485C3.74474 9.11548 3.4327 8.60597 3.23014 8.05015C3.02758 7.49433 2.93861 6.90351 2.96856 6.31269C3.01722 5.21742 3.47217 4.17956 4.24465 3.40158C5.01393 2.61676 6.04737 2.14575 7.14437 2.07992C8.01768 2.02008 8.8893 2.21818 9.65096 2.64961C9.70257 2.67618 9.76168 2.68445 9.81859 2.67306C9.87551 2.66168 9.9269 2.63131 9.96432 2.58693C10.4416 2.01584 11.0385 1.55656 11.7128 1.24154C12.3871 0.926535 13.1224 0.763478 13.8667 0.763932C14.6098 0.762051 15.3442 0.923923 16.0177 1.23802C16.6911 1.55211 17.2872 2.01071 17.7633 2.58123C17.8007 2.62561 17.8521 2.65598 17.909 2.66736C17.9659 2.67874 18.025 2.67048 18.0766 2.64391C18.836 2.21199 19.706 2.01381 20.5776 2.07422C21.6746 2.14005 22.708 2.61108 23.4773 3.3959C24.2543 4.17417 24.7133 5.21412 24.7647 6.31269C24.7934 6.90338 24.7039 7.49385 24.5014 8.04949C24.2989 8.60513 23.9875 9.11475 23.5855 9.5485V11.8272H25.3287C26.9313 11.8272 28.4685 12.4631 29.6028 13.5952C30.7371 14.7274 31.3758 16.2633 31.3788 17.8659V23.352C31.3773 24.9561 30.7394 26.4941 29.6051 27.6284C28.4708 28.7626 26.9328 29.4005 25.3287 29.4021H23.5855V30.2794C23.5893 30.6632 23.5164 31.0439 23.3711 31.3992C23.2258 31.7545 23.011 32.0772 22.7393 32.3484C22.4677 32.6195 22.1446 32.8337 21.789 32.9783C21.4334 33.1229 21.0525 33.195 20.6687 33.1905ZM7.37222 2.14258H7.11589C6.03739 2.20879 5.02208 2.67381 4.26746 3.44717C3.51129 4.20917 3.06296 5.22346 3.00844 6.2956C2.9699 6.88841 3.05311 7.48284 3.25298 8.04228C3.45285 8.60171 3.76513 9.11431 4.17059 9.5485V30.3192C4.17946 31.0629 4.47881 31.7735 5.00467 32.2994C5.53053 32.8253 6.24121 33.1246 6.98484 33.1335H20.6573C21.4069 33.1336 22.1263 32.8382 22.6595 32.3113C23.1927 31.7845 23.4967 31.0688 23.5057 30.3192V29.3736H25.3117C26.8992 29.3721 28.4212 28.7408 29.5437 27.6182C30.6663 26.4957 31.2975 24.9737 31.299 23.3862V17.9001C31.296 16.3141 30.6639 14.7941 29.5414 13.6737C28.4188 12.5533 26.8976 11.9241 25.3117 11.9241H23.483V9.5485C23.8833 9.12199 24.1936 8.61916 24.3952 8.07004C24.5968 7.52093 24.6857 6.9368 24.6565 6.35257C24.6059 5.2689 24.1529 4.24307 23.3861 3.47564C22.6321 2.70137 21.6165 2.23619 20.5377 2.17106C19.6757 2.11663 18.8165 2.31459 18.0652 2.74074C18.0011 2.77507 17.9271 2.78645 17.8556 2.77298C17.7841 2.75951 17.7194 2.72201 17.6722 2.6667C17.2022 2.10368 16.614 1.65102 15.9495 1.34089C15.2849 1.03075 14.5602 0.870724 13.8268 0.872174C13.0912 0.870923 12.3644 1.03156 11.6979 1.34268C11.0313 1.65379 10.4414 2.10775 9.97002 2.67238C9.9234 2.72861 9.85859 2.76679 9.78681 2.78031C9.71504 2.79384 9.64082 2.78185 9.57694 2.74645C8.90822 2.3541 8.14753 2.14576 7.37222 2.14258ZM20.6744 31.2706H7.00194C6.74404 31.2691 6.49713 31.166 6.31477 30.9836C6.1324 30.8013 6.02926 30.5544 6.02777 30.2965V10.0042H7.98749V14.106C7.99488 14.8506 8.29357 15.5627 8.81959 16.0898C9.34561 16.6169 10.0571 16.917 10.8017 16.9259C11.5463 16.917 12.2579 16.6169 12.7839 16.0898C13.3099 15.5627 13.6086 14.8506 13.616 14.106V10.0042H21.6657V30.3136C21.6649 30.4427 21.6387 30.5705 21.5884 30.6894C21.5381 30.8084 21.4648 30.9163 21.3726 31.0068C21.2805 31.0973 21.1714 31.1687 21.0516 31.217C20.9317 31.2652 20.8036 31.2892 20.6744 31.2877V31.2706ZM6.07906 10.0498V30.2965C6.07906 30.4162 6.10262 30.5347 6.14842 30.6453C6.19423 30.7559 6.26139 30.8563 6.34603 30.941C6.43067 31.0256 6.53113 31.0928 6.64172 31.1386C6.75231 31.1844 6.87084 31.208 6.99054 31.208H20.663C20.9053 31.208 21.1377 31.1121 21.3096 30.9413C21.4814 30.7706 21.5787 30.5387 21.5802 30.2965V10.0669H13.6616V14.106C13.6601 14.87 13.3559 15.6024 12.8156 16.1426C12.2753 16.6829 11.543 16.9871 10.779 16.9886C10.0154 16.9871 9.28368 16.6827 8.74431 16.1423C8.20495 15.6019 7.90206 14.8695 7.90206 14.106V10.0726L6.07906 10.0498ZM25.2946 27.5164H23.483V25.5567H24.6565C25.4011 25.5478 26.1126 25.2476 26.6387 24.7206C27.1647 24.1935 27.4634 23.4813 27.4708 22.7367V18.5211C27.4619 17.7774 27.1625 17.0667 26.6367 16.5409C26.1108 16.015 25.4001 15.7157 24.6565 15.7068H23.483V13.7642H25.2889C26.3878 13.7642 27.4418 14.2003 28.2194 14.9769C28.9971 15.7534 29.4347 16.8069 29.4362 17.9058V23.3862C29.4362 24.4851 29 25.5391 28.2235 26.3168C27.4469 27.0944 26.3935 27.532 25.2946 27.5335V27.5164ZM23.5513 27.4537H25.2946C26.3779 27.4537 27.4168 27.0234 28.1828 26.2574C28.9489 25.4913 29.3792 24.4524 29.3792 23.3691V17.8887C29.3777 16.8064 28.9467 15.7689 28.1808 15.0041C27.415 14.2393 26.3769 13.8098 25.2946 13.8098H23.5513V15.6441H24.6907C25.4434 15.653 26.1627 15.956 26.695 16.4882C27.2273 17.0205 27.5302 17.7399 27.5391 18.4926V22.7082C27.5392 23.4669 27.2402 24.195 26.7069 24.7346C26.1737 25.2742 25.4493 25.5819 24.6907 25.5909H23.5513V27.4537ZM24.6907 23.7109H23.483V17.5526H24.6565C24.9154 17.5541 25.1632 17.658 25.3457 17.8416C25.5282 18.0252 25.6307 18.2735 25.6307 18.5324V22.7481C25.6307 23.0051 25.5298 23.2517 25.3497 23.435C25.1697 23.6183 24.9248 23.7235 24.6679 23.728L24.6907 23.7109ZM23.5513 23.6482H24.6907C24.933 23.6467 25.1648 23.5494 25.3355 23.3776C25.5063 23.2057 25.6022 22.9733 25.6022 22.731V18.5154C25.6022 18.2736 25.5061 18.0418 25.3352 17.8708C25.1643 17.6999 24.9324 17.6039 24.6907 17.6039H23.5513V23.6482ZM10.7847 15.0631C10.5297 15.0616 10.2853 14.9609 10.1034 14.7822C9.92147 14.6035 9.81642 14.3609 9.81049 14.106V8.16985H5.40683C5.01916 7.68635 4.8171 7.08019 4.83714 6.46079C4.86932 5.83185 5.13134 5.23664 5.57349 4.78819C6.01563 4.33974 6.60708 4.06931 7.2355 4.02824C7.73728 3.99798 8.23681 4.11692 8.67112 4.37005C9.10933 4.62306 9.62281 4.7132 10.121 4.62461C10.6192 4.53602 11.0701 4.27438 11.3942 3.88582C11.6929 3.52808 12.0667 3.24054 12.4891 3.04362C12.9115 2.84669 13.3721 2.74523 13.8382 2.74645C14.3052 2.744 14.7671 2.84488 15.1906 3.04186C15.6141 3.23884 15.9888 3.52704 16.2878 3.88582C16.6103 4.2749 17.0603 4.53707 17.5578 4.62572C18.0553 4.71438 18.5682 4.62379 19.0052 4.37005C19.4418 4.11741 19.943 3.99855 20.4465 4.02824C21.0731 4.07305 21.6618 4.34485 22.1022 4.79268C22.5427 5.2405 22.8048 5.83359 22.8392 6.46079C22.866 7.08116 22.6632 7.68965 22.2695 8.16985H11.7873V14.106C11.7866 14.2356 11.7601 14.3638 11.7095 14.4832C11.6588 14.6025 11.585 14.7107 11.4923 14.8013C11.3995 14.8919 11.2898 14.9632 11.1693 15.0111C11.0488 15.0589 10.92 15.0824 10.7903 15.0801L10.7847 15.0631ZM5.43531 8.0901H9.87315V14.106C9.87314 14.3483 9.96899 14.5807 10.1398 14.7525C10.3105 14.9244 10.5424 15.0217 10.7847 15.0232C10.9051 15.0232 11.0244 14.9995 11.1356 14.9534C11.2469 14.9073 11.348 14.8397 11.4332 14.7545C11.5184 14.6694 11.5859 14.5683 11.632 14.457C11.6781 14.3457 11.7019 14.2264 11.7019 14.106V8.10719H22.2126C22.6132 7.63083 22.8169 7.01958 22.7823 6.39814C22.7488 5.7868 22.4928 5.20885 22.0625 4.77331C21.6322 4.33777 21.0574 4.07477 20.4465 4.03394C19.9567 3.99978 19.4681 4.11498 19.0451 4.36435C18.5935 4.62335 18.065 4.71506 17.5525 4.62339C17.04 4.53173 16.5761 4.26253 16.2422 3.86303C15.9516 3.50759 15.5857 3.22104 15.171 3.02402C14.7563 2.827 14.303 2.72441 13.8439 2.72365C13.3851 2.72638 12.9325 2.82986 12.518 3.02673C12.1036 3.22361 11.7375 3.50909 11.4455 3.86303C11.1132 4.26307 10.6498 4.53239 10.1377 4.62313C9.62558 4.71387 9.0979 4.62017 8.64834 4.35867C8.22346 4.11456 7.73585 4.00157 7.2469 4.03394C6.63458 4.07222 6.05771 4.33423 5.62599 4.77015C5.19427 5.20606 4.93785 5.78547 4.9055 6.39814C4.86906 7.01413 5.05957 7.62213 5.44101 8.10719L5.43531 8.0901Z" fill="#1D1D1D"/>
|
|
6
7
|
<defs>
|
|
7
|
-
<
|
|
8
|
-
<
|
|
9
|
-
|
|
8
|
+
<linearGradient id="paint0_linear_4088_33988" x1="13.8266" y1="15.0574" x2="13.8266" y2="2.7465" gradientUnits="userSpaceOnUse">
|
|
9
|
+
<stop stop-color="#EFC530"/>
|
|
10
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
11
|
+
</linearGradient>
|
|
12
|
+
<linearGradient id="paint1_linear_4088_33988" x1="13.8265" y1="31.2591" x2="13.8265" y2="10.0326" gradientUnits="userSpaceOnUse">
|
|
13
|
+
<stop stop-color="#F37C1C"/>
|
|
14
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
15
|
+
</linearGradient>
|
|
10
16
|
</defs>
|
|
11
17
|
</svg>
|
|
@@ -1,13 +1,18 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="
|
|
3
|
-
<
|
|
4
|
-
<path d="
|
|
5
|
-
<path d="
|
|
6
|
-
<path d="M24.
|
|
7
|
-
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.0847 6.47095C16.1097 6.47095 15.1443 6.66397 14.2436 7.03897C13.3429 7.41398 12.5245 7.96363 11.8353 8.65652C11.146 9.34941 10.5994 10.172 10.2266 11.0772C9.85379 11.9824 9.66215 12.9526 9.6626 13.9322H24.5103C24.5103 11.9534 23.728 10.0556 22.3354 8.65631C20.9428 7.25705 19.0541 6.47095 17.0847 6.47095Z" fill="white"/>
|
|
3
|
+
<path d="M10.8853 17.6525H23.2842L21.8342 29.8238H12.3421L10.8853 17.6525Z" fill="url(#paint0_linear_4088_33992)"/>
|
|
4
|
+
<path d="M21.8652 29.8514H12.3249L10.8853 17.6248H23.3393L21.8652 29.8514ZM12.3766 29.7926H21.8135L23.2566 17.6801H10.9335L12.3766 29.7926Z" fill="black"/>
|
|
5
|
+
<path d="M9.53174 14.9149H24.6619V15.8978H9.53519L9.53174 14.9149Z" fill="url(#paint1_linear_4088_33992)"/>
|
|
6
|
+
<path d="M24.6896 15.9255H9.50781V14.8873H24.693L24.6896 15.9255ZM9.56291 15.8702H24.6311V14.9427H9.56291V15.8702Z" fill="black"/>
|
|
7
|
+
<path d="M25.0856 13.1604C24.9319 11.2497 24.1109 9.45516 22.7677 8.09392C22.0827 7.41784 21.2794 6.87463 20.3981 6.49161L20.6943 3.6227L22.5645 4.13834C22.6748 4.1688 22.7901 4.17712 22.9036 4.16282C23.0172 4.14852 23.1268 4.11189 23.2263 4.05501C23.3258 3.99813 23.4131 3.92212 23.4833 3.83131C23.5536 3.74051 23.6053 3.63668 23.6356 3.52579C23.6968 3.30092 23.6666 3.06084 23.5516 2.85835C23.4366 2.65586 23.2463 2.50755 23.0225 2.44605L20.1639 1.65356C20.042 1.61852 19.9138 1.61121 19.7887 1.63216C19.6636 1.65311 19.5447 1.70179 19.4406 1.77467C19.3366 1.84713 19.2493 1.94117 19.1846 2.05041C19.1198 2.15966 19.0791 2.28159 19.0652 2.40799L18.6967 5.96559C18.1689 5.86374 17.6326 5.81275 17.0952 5.81332C16.0488 5.7974 15.0096 5.98877 14.0369 6.37653C13.0642 6.76428 12.177 7.3408 11.4261 8.07315C10.0814 9.43335 9.26016 11.2285 9.10821 13.1396C8.7565 13.1424 8.42011 13.2847 8.17238 13.5355C7.92464 13.7864 7.78563 14.1255 7.78564 14.4789V16.2923C7.78655 16.6476 7.92716 16.9881 8.17683 17.2396C8.4265 17.4911 8.76499 17.6333 9.11853 17.6351H9.14264L10.6856 30.5989C10.7169 30.8637 10.844 31.1078 11.0428 31.2846C11.2416 31.4614 11.4982 31.5585 11.7636 31.5575H22.4405C22.7051 31.5569 22.9604 31.4591 23.1584 31.2826C23.3563 31.106 23.4831 30.8629 23.5151 30.5989L25.058 17.6385H25.0821C25.4354 17.6376 25.7739 17.4962 26.0236 17.2453C26.2734 16.9943 26.4141 16.6542 26.415 16.2992V14.4858C26.4159 14.1327 26.2777 13.7936 26.0305 13.5427C25.7833 13.2917 25.4473 13.1493 25.0959 13.1465L25.0856 13.1604ZM9.53183 15.8978V14.915H24.662V15.8978H9.53183ZM23.3325 13.1604H19.7162L20.2121 8.34655C21.0831 8.83287 21.8227 9.52563 22.3665 10.3646C22.9103 11.2036 23.242 12.1633 23.3325 13.1604ZM17.0848 7.57135C17.5628 7.57245 18.0394 7.62232 18.5073 7.72017L17.9459 13.1604H10.8544C10.989 11.6066 11.7086 10.163 12.8665 9.12437C14.0244 8.08568 15.5332 7.53021 17.0848 7.57135ZM21.8309 29.8237H12.3388L10.8854 17.6524H23.2843L21.8412 29.8237H21.8309Z" fill="#1D1D1D"/>
|
|
8
8
|
<defs>
|
|
9
|
-
<
|
|
10
|
-
<
|
|
11
|
-
|
|
9
|
+
<linearGradient id="paint0_linear_4088_33992" x1="17.095" y1="29.8238" x2="17.095" y2="17.6525" gradientUnits="userSpaceOnUse">
|
|
10
|
+
<stop stop-color="#F37C1C"/>
|
|
11
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
12
|
+
</linearGradient>
|
|
13
|
+
<linearGradient id="paint1_linear_4088_33992" x1="17.0951" y1="15.8978" x2="17.0951" y2="14.9115" gradientUnits="userSpaceOnUse">
|
|
14
|
+
<stop stop-color="#EFC530"/>
|
|
15
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
16
|
+
</linearGradient>
|
|
12
17
|
</defs>
|
|
13
18
|
</svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M22.5987 12.0826L22.4525 11.9657C21.1965 10.8304 20.4172 9.26136 20.2716 7.57453L20.2424 7.20618H10.4193C9.88076 7.20661 9.35407 7.36461 8.9042 7.66071C8.45433 7.95682 8.10092 8.37808 7.88755 8.87258L5.73584 13.8893H22.5929V12.0826H22.5987Z" fill="white"/>
|
|
3
|
+
<path d="M2.99902 18.1752V20.514C2.99902 21.2444 3.28917 21.9449 3.80563 22.4614C4.3221 22.9779 5.02258 23.268 5.75298 23.268H22.61V15.4213H5.75298C5.02258 15.4213 4.3221 15.7114 3.80563 16.2279C3.28917 16.7444 2.99902 17.4448 2.99902 18.1752ZM13.9739 18.5787H18.6516C18.8558 18.5802 19.0512 18.662 19.1956 18.8064C19.34 18.9508 19.4219 19.1463 19.4234 19.3505C19.4219 19.5547 19.34 19.7501 19.1956 19.8945C19.0512 20.039 18.8558 20.1208 18.6516 20.1223H13.9739C13.7692 20.1223 13.5729 20.041 13.4282 19.8962C13.2834 19.7515 13.2021 19.5552 13.2021 19.3505C13.2021 19.1458 13.2834 18.9495 13.4282 18.8047C13.5729 18.66 13.7692 18.5787 13.9739 18.5787Z" fill="url(#paint0_linear_4088_34003)"/>
|
|
4
|
+
<path d="M5.3501 24.8235V29.1562H10.8522V24.8293L5.3501 24.8235Z" fill="url(#paint1_linear_4088_34003)"/>
|
|
5
|
+
<path d="M30.7199 3.72143L30.0241 2.96716V7.60387C30.0247 7.7473 29.9849 7.88802 29.9095 8.01C29.834 8.13198 29.7258 8.23032 29.5972 8.29382L27.2584 9.46323C27.1517 9.51812 27.0334 9.54674 26.9134 9.54674C26.7934 9.54674 26.6752 9.51812 26.5685 9.46323L24.2296 8.29382C24.1017 8.23005 23.9943 8.13148 23.9198 8.00944C23.8454 7.8874 23.8068 7.74682 23.8086 7.60387V2.96716L23.1012 3.72143C22.3868 4.48402 21.9484 5.46383 21.8557 6.50462C21.7619 7.35516 21.8886 8.21552 22.2234 9.00298C22.5583 9.79044 23.0901 10.4785 23.7677 11.001H23.797H23.8379C23.9414 11.0731 24.0259 11.1694 24.084 11.2814C24.142 11.3935 24.172 11.518 24.1712 11.6442V28.7468C24.1712 29.4772 24.4613 30.1777 24.9778 30.6941C25.4942 31.2106 26.1947 31.5008 26.9251 31.5008C27.6555 31.5008 28.356 31.2106 28.8725 30.6941C29.3889 30.1777 29.6791 29.4772 29.6791 28.7468V11.691C29.6846 11.5767 29.7152 11.4651 29.7687 11.364C29.8223 11.2629 29.8975 11.1749 29.989 11.1063C30.7435 10.5491 31.328 9.79291 31.677 8.92235C32.0261 8.0518 32.1259 7.10126 31.9653 6.17719C31.8012 5.25377 31.3679 4.39943 30.7199 3.72143ZM26.9017 29.4075C26.8148 29.4083 26.7285 29.3917 26.648 29.3588C26.5675 29.3259 26.4943 29.2772 26.4328 29.2157C26.3713 29.1542 26.3226 29.0811 26.2897 29.0006C26.2568 28.92 26.2402 28.8338 26.241 28.7468C26.241 28.5716 26.3106 28.4035 26.4345 28.2796C26.5584 28.1557 26.7265 28.0861 26.9017 28.0861C27.077 28.0861 27.245 28.1557 27.3689 28.2796C27.4928 28.4035 27.5624 28.5716 27.5624 28.7468C27.5632 28.8338 27.5467 28.92 27.5137 29.0006C27.4808 29.0811 27.4322 29.1542 27.3707 29.2157C27.3092 29.2772 27.236 29.3259 27.1555 29.3588C27.075 29.3917 26.9887 29.4083 26.9017 29.4075Z" fill="url(#paint2_linear_4088_34003)"/>
|
|
6
|
+
<path d="M13.9745 20.1224H18.6521C18.8563 20.1208 19.0517 20.039 19.1961 19.8946C19.3406 19.7502 19.4224 19.5548 19.4239 19.3505C19.4224 19.1463 19.3406 18.9509 19.1961 18.8065C19.0517 18.6621 18.8563 18.5803 18.6521 18.5787H13.9745C13.7698 18.5787 13.5734 18.66 13.4287 18.8048C13.284 18.9495 13.2026 19.1458 13.2026 19.3505C13.2026 19.5552 13.284 19.7516 13.4287 19.8963C13.5734 20.041 13.7698 20.1224 13.9745 20.1224Z" fill="#1D1D1D"/>
|
|
7
|
+
<path d="M18.6753 20.2335H13.9977C13.764 20.2319 13.5403 20.1384 13.375 19.9732C13.2098 19.8079 13.1163 19.5842 13.1147 19.3506C13.1163 19.1169 13.2098 18.8932 13.375 18.7279C13.5403 18.5627 13.764 18.4692 13.9977 18.4677H18.6753C18.9084 18.4692 19.1315 18.5629 19.2958 18.7283C19.4601 18.8937 19.5524 19.1174 19.5524 19.3506C19.5524 19.5837 19.4601 19.8074 19.2958 19.9728C19.1315 20.1382 18.9084 20.2319 18.6753 20.2335ZM13.9977 18.6898C13.8229 18.6914 13.6557 18.7615 13.5321 18.885C13.4086 19.0086 13.3385 19.1758 13.3369 19.3506C13.3385 19.5253 13.4086 19.6925 13.5321 19.8161C13.6557 19.9396 13.8229 20.0097 13.9977 20.0113H18.6753C18.8501 20.0097 19.0172 19.9396 19.1408 19.8161C19.2644 19.6925 19.3345 19.5253 19.336 19.3506C19.3345 19.1758 19.2644 19.0086 19.1408 18.885C19.0172 18.7615 18.8501 18.6914 18.6753 18.6898H13.9977Z" fill="#1D1D1D"/>
|
|
8
|
+
<path d="M33.5615 5.86727C33.3633 4.7832 32.8997 3.76511 32.212 2.90396C31.5243 2.04282 30.634 1.36545 29.6206 0.932361C29.4868 0.866939 29.3384 0.837397 29.1897 0.846622C29.0411 0.855847 28.8974 0.903529 28.7728 0.984992C28.6474 1.06273 28.544 1.17122 28.4724 1.30016C28.4008 1.4291 28.3633 1.57421 28.3635 1.72172V7.05422L26.8959 7.7851L25.4283 7.05422V1.73341C25.4284 1.58513 25.3909 1.43924 25.3193 1.30937C25.2478 1.17951 25.1444 1.06992 25.019 0.990835C24.8941 0.909913 24.7505 0.862558 24.602 0.85334C24.4535 0.844122 24.3051 0.873354 24.1712 0.938214C23.2524 1.3451 22.4351 1.95039 21.7779 2.71063C21.1208 3.47086 20.6402 4.36717 20.3706 5.33519L20.3121 5.55738H10.4189C9.55679 5.55706 8.7136 5.81019 7.99421 6.28528C7.27481 6.76037 6.71094 7.43647 6.37274 8.22948L3.79419 14.2695L3.70064 14.3221C2.99606 14.6895 2.40557 15.2429 1.99326 15.9222C1.58095 16.6014 1.36256 17.3807 1.36182 18.1753V20.5141C1.36097 21.2843 1.56461 22.0408 1.95189 22.7065C2.33918 23.3722 2.89624 23.9231 3.56617 24.303L3.71234 24.3907V28.7351C3.71389 29.2805 3.93123 29.8031 4.31687 30.1887C4.70252 30.5744 5.22511 30.7917 5.7705 30.7932H10.4481C10.9935 30.7917 11.5161 30.5744 11.9018 30.1887C12.2874 29.8031 12.5047 29.2805 12.5063 28.7351V24.917H22.4989V28.7351C22.4989 29.9033 22.9626 31.0238 23.7881 31.8504C24.6136 32.677 25.7335 33.1422 26.9017 33.1438C28.0705 33.1422 29.191 32.6772 30.0174 31.8508C30.8439 31.0243 31.3089 29.9039 31.3104 28.7351V12.1353L31.4098 12.0476C32.2647 11.2856 32.9109 10.3181 33.2875 9.23659C33.664 8.15509 33.7583 6.9954 33.5615 5.86727ZM22.4989 15.5324V23.1687H5.75296C5.05203 23.1687 4.37981 22.8902 3.88418 22.3946C3.38855 21.899 3.1101 21.2268 3.1101 20.5258V18.187C3.1101 17.4861 3.38855 16.8139 3.88418 16.3182C4.37981 15.8226 5.05203 15.5441 5.75296 15.5441L22.4989 15.5324ZM10.4189 7.31149H20.1426V7.58046C20.287 9.29821 21.0817 10.896 22.3644 12.0476L22.4697 12.1353V13.7725H5.88745L7.97483 8.91359C8.17952 8.43579 8.52057 8.02896 8.95529 7.744C9.39001 7.45904 9.89912 7.30859 10.4189 7.31149ZM10.7463 29.045H5.484V24.952H10.7463V29.045ZM29.5446 11.6909V28.7468C29.5446 29.4477 29.2662 30.1199 28.7705 30.6156C28.2749 31.1112 27.6027 31.3896 26.9017 31.3896C26.2008 31.3896 25.5286 31.1112 25.0329 30.6156C24.5373 30.1199 24.2589 29.4477 24.2589 28.7468V11.6909C24.2592 11.5447 24.2231 11.4007 24.1536 11.2721C24.0842 11.1434 23.9837 11.0341 23.8613 10.9542C23.1979 10.4438 22.6772 9.77111 22.3495 9.00094C22.0217 8.23077 21.898 7.38914 21.9902 6.55723C22.0859 5.53908 22.5156 4.58113 23.2123 3.8325L23.7209 3.28288V7.63308C23.7184 7.79643 23.7628 7.95707 23.8488 8.09595C23.9348 8.23483 24.0589 8.34611 24.2062 8.41658L26.5451 9.58599C26.6659 9.6495 26.8003 9.68268 26.9368 9.68268C27.0733 9.68268 27.2077 9.6495 27.3286 9.58599L29.6674 8.41658C29.813 8.34388 29.9355 8.23209 30.0212 8.09372C30.1069 7.95535 30.1525 7.79585 30.1527 7.63308V3.27118L30.6555 3.8208C31.2667 4.48466 31.6728 5.31112 31.8249 6.20056C31.9816 7.10443 31.8842 8.03406 31.5435 8.8858C31.2028 9.73754 30.6323 10.4779 29.8954 11.0244C29.7852 11.1039 29.6954 11.2084 29.6334 11.3294C29.5714 11.4503 29.5389 11.5842 29.5387 11.7202L29.5446 11.6909Z" fill="#1D1D1D"/>
|
|
9
|
+
<path d="M26.9021 33.1905C25.7246 33.1889 24.5958 32.7201 23.7637 31.8869C22.9316 31.0537 22.4642 29.9243 22.4642 28.7467V24.9695H12.5242V28.7467C12.5242 29.3019 12.3037 29.8343 11.9111 30.2269C11.5186 30.6194 10.9862 30.84 10.431 30.84H5.75335C5.20022 30.8369 4.67079 30.615 4.28076 30.2228C3.89072 29.8305 3.67179 29.2999 3.6718 28.7467V24.4258L3.54317 24.3439C2.86767 23.9615 2.30596 23.4064 1.91555 22.7355C1.52513 22.0646 1.32005 21.302 1.32129 20.5258V18.187C1.32341 17.383 1.5465 16.595 1.9662 15.9093C2.3859 15.2235 2.98604 14.6664 3.70103 14.2987L3.77704 14.2577L6.35559 8.22359C6.6965 7.42113 7.26681 6.73723 7.99496 6.25769C8.7231 5.77815 9.57667 5.52434 10.4485 5.5281H20.3125L20.3651 5.33515C20.6351 4.36185 21.1175 3.46055 21.7778 2.69618C22.438 1.9318 23.2595 1.32339 24.1832 0.914781C24.3229 0.848486 24.4771 0.818548 24.6315 0.827748C24.7858 0.836947 24.9353 0.884984 25.0662 0.967402C25.1976 1.04999 25.3058 1.16476 25.3805 1.30085C25.4552 1.43693 25.4939 1.58983 25.493 1.74506V7.04248L26.9255 7.75582L28.358 7.04248V1.73337C28.3576 1.57902 28.3965 1.42711 28.4712 1.29204C28.5459 1.15697 28.6539 1.04321 28.7849 0.961558C28.9155 0.878623 29.0651 0.83028 29.2195 0.821074C29.374 0.811868 29.5282 0.842104 29.6678 0.908937C30.6847 1.34579 31.578 2.02691 32.2686 2.89185C32.9591 3.7568 33.4255 4.77882 33.6262 5.86723C33.8261 7.00264 33.7323 8.17031 33.3536 9.25922C32.9749 10.3481 32.3241 11.3221 31.4628 12.0885L31.3751 12.1645V28.7467C31.3744 29.3325 31.2579 29.9124 31.0325 30.4531C30.8071 30.9938 30.4771 31.4847 30.0615 31.8976C29.6459 32.3105 29.1529 32.6372 28.6107 32.8591C28.0686 33.0809 27.4879 33.1936 26.9021 33.1905ZM12.4716 24.8935H22.5344V28.7467C22.5359 29.9046 22.9966 31.0147 23.8154 31.8335C24.6341 32.6523 25.7442 33.1129 26.9021 33.1145C28.0601 33.1129 29.1701 32.6523 29.9889 31.8335C30.8076 31.0147 31.2683 29.9046 31.2699 28.7467V12.1177L31.3868 12.0183C32.2376 11.2612 32.8807 10.2993 33.2552 9.22375C33.6298 8.14824 33.7233 6.99486 33.5268 5.87307C33.3278 4.79467 32.8655 3.78211 32.1811 2.92529C31.4967 2.06848 30.6112 1.39393 29.6035 0.961558C29.4756 0.900835 29.3344 0.8738 29.1932 0.88301C29.052 0.89222 28.9154 0.937367 28.7966 1.01418C28.6757 1.08865 28.5757 1.19267 28.5062 1.31645C28.4366 1.44023 28.3997 1.57969 28.399 1.72168V7.07757L26.8963 7.83184L25.3936 7.07757V1.73337C25.3927 1.59061 25.3558 1.45037 25.2863 1.32567C25.2168 1.20097 25.117 1.09584 24.996 1.02003C24.8773 0.942529 24.7403 0.897434 24.5988 0.889228C24.4572 0.881023 24.316 0.909991 24.1891 0.973255C23.2736 1.37599 22.4591 1.97738 21.8048 2.73384C21.1505 3.4903 20.6727 4.38286 20.4061 5.34684L20.3359 5.59242H10.3959C9.54121 5.59172 8.70518 5.84247 7.99196 6.31345C7.27873 6.78443 6.71984 7.45482 6.38484 8.24113L3.79458 14.2987L3.70103 14.3513C2.99791 14.7128 2.4078 15.2608 1.99529 15.9352C1.58278 16.6097 1.36375 17.3847 1.36221 18.1753V20.5141C1.35919 21.2772 1.55969 22.0273 1.94304 22.6871C2.3264 23.3469 2.87874 23.8926 3.54317 24.2679L3.70688 24.3673V28.735C3.70688 29.2716 3.92004 29.7862 4.29944 30.1656C4.67884 30.545 5.1934 30.7581 5.72996 30.7581H10.4076C10.9441 30.7581 11.4587 30.545 11.8381 30.1656C12.2175 29.7862 12.4307 29.2716 12.4307 28.735L12.4716 24.8935ZM26.9021 31.4305C26.1914 31.429 25.5102 31.1455 25.0082 30.6424C24.5061 30.1392 24.2242 29.4575 24.2242 28.7467V11.6909C24.2244 11.5514 24.1904 11.4139 24.1251 11.2906C24.0599 11.1672 23.9654 11.0618 23.85 10.9834H23.7973C23.1296 10.468 22.6053 9.78983 22.2747 9.01383C21.944 8.23783 21.818 7.38995 21.9087 6.55133C22.0073 5.5236 22.4432 4.55736 23.1483 3.80322L23.733 3.18344V7.63304C23.7316 7.79014 23.7749 7.94441 23.8577 8.07792C23.9405 8.21144 24.0594 8.31872 24.2008 8.38731L26.5396 9.55672C26.6569 9.61449 26.786 9.64454 26.9167 9.64454C27.0475 9.64454 27.1765 9.61449 27.2939 9.55672L29.6327 8.38731C29.7716 8.31627 29.8883 8.20827 29.9698 8.07518C30.0513 7.9421 30.0945 7.7891 30.0946 7.63304V3.17759L30.6793 3.79738C31.3042 4.46245 31.7208 5.29575 31.878 6.19466C32.0355 7.10544 31.9369 8.04209 31.5931 8.90007C31.2493 9.75806 30.6738 10.5036 29.9309 11.0536C29.8269 11.1307 29.7425 11.2312 29.6846 11.347C29.6267 11.4628 29.5969 11.5907 29.5976 11.7201V28.7467C29.5968 29.0999 29.5265 29.4495 29.3906 29.7756C29.2548 30.1016 29.056 30.3977 28.8057 30.6469C28.5554 30.8961 28.2585 31.0936 27.9319 31.228C27.6052 31.3625 27.2553 31.4313 26.9021 31.4305ZM23.6453 3.36469L23.2009 3.84416C22.5092 4.58617 22.0817 5.53571 21.9848 6.54549C21.893 7.37196 22.0159 8.20813 22.3416 8.97323C22.6673 9.73834 23.1848 10.4065 23.8441 10.9132H23.8851C24.0106 10.9992 24.1134 11.1144 24.1846 11.2488C24.2559 11.3832 24.2936 11.5329 24.2943 11.685V28.7467C24.2943 29.4384 24.5691 30.1017 25.0581 30.5907C25.5472 31.0798 26.2105 31.3545 26.9021 31.3545C27.5938 31.3545 28.2571 31.0798 28.7461 30.5907C29.2352 30.1017 29.5099 29.4384 29.5099 28.7467V11.6909C29.5087 11.5494 29.5415 11.4096 29.6056 11.2834C29.6698 11.1573 29.7633 11.0483 29.8783 10.9659C30.6096 10.4231 31.176 9.68819 31.5146 8.84278C31.8532 7.99736 31.9506 7.07461 31.7961 6.17712C31.6413 5.30062 31.235 4.48804 30.6267 3.8383L30.1823 3.353V7.62135C30.1823 7.79092 30.1353 7.95718 30.0465 8.10167C29.9578 8.24616 29.8307 8.36325 29.6795 8.43994L27.3407 9.60935C27.2135 9.67268 27.0734 9.70564 26.9314 9.70564C26.7893 9.70564 26.6492 9.67268 26.5221 9.60935L24.1832 8.43994C24.0311 8.36433 23.9034 8.24749 23.8144 8.10275C23.7255 7.95802 23.6791 7.7912 23.6804 7.62135L23.6453 3.36469ZM10.7818 29.0917H5.42592V24.9052H10.7877L10.7818 29.0917ZM5.51947 29.0157H10.6883V24.9812H5.47854L5.51947 29.0157ZM22.5578 23.2154H5.77674C5.06597 23.2154 4.38421 22.9335 3.88107 22.4314C3.37793 21.9294 3.0945 21.2482 3.09295 20.5375V18.1987C3.0945 17.4879 3.37793 16.8068 3.88107 16.3047C4.38421 15.8027 5.06597 15.5207 5.77674 15.5207H22.5578V23.2154ZM5.77674 15.5792C5.08512 15.5792 4.4218 15.8539 3.93275 16.343C3.44369 16.832 3.16896 17.4953 3.16896 18.187V20.5258C3.16896 21.2174 3.44369 21.8807 3.93275 22.3698C4.4218 22.8588 5.08512 23.1336 5.77674 23.1336H22.4876V15.5675L5.77674 15.5792ZM22.5519 13.8251H5.88199L7.98693 8.91355C8.19413 8.43381 8.53688 8.025 8.97312 7.73728C9.40936 7.44957 9.9201 7.29548 10.4427 7.29391H20.2014V7.59796C20.346 9.30478 21.1365 10.8921 22.4116 12.0359L22.5285 12.1353L22.5519 13.8251ZM5.99308 13.7549H22.4759V12.1703L22.3882 12.0943C21.0989 10.9359 20.2984 9.33059 20.1488 7.6038V7.36407H10.4602C9.95183 7.36538 9.45496 7.5156 9.031 7.79617C8.60704 8.07673 8.27456 8.47534 8.07463 8.94277L5.99308 13.7549Z" fill="black"/>
|
|
10
|
+
<path d="M26.9022 29.5245C27.3284 29.5245 27.674 29.1789 27.674 28.7526C27.674 28.3264 27.3284 27.9808 26.9022 27.9808C26.4759 27.9808 26.1304 28.3264 26.1304 28.7526C26.1304 29.1789 26.4759 29.5245 26.9022 29.5245Z" fill="#1D1D1D"/>
|
|
11
|
+
<path d="M8.09795 21.2977C9.17328 21.2977 10.045 20.426 10.045 19.3506C10.045 18.2753 9.17328 17.4036 8.09795 17.4036C7.02261 17.4036 6.15088 18.2753 6.15088 19.3506C6.15088 20.426 7.02261 21.2977 8.09795 21.2977Z" fill="#1D1D1D"/>
|
|
12
|
+
<path d="M8.10372 21.3327C7.57802 21.3327 7.07387 21.1239 6.70215 20.7522C6.33042 20.3804 6.12158 19.8763 6.12158 19.3506C6.12158 18.8249 6.33042 18.3207 6.70215 17.949C7.07387 17.5772 7.57802 17.3684 8.10372 17.3684C8.62895 17.37 9.13223 17.5793 9.50362 17.9507C9.87501 18.3221 10.0843 18.8253 10.0859 19.3506C10.0843 19.8758 9.87501 20.3791 9.50362 20.7504C9.13223 21.1218 8.62895 21.3312 8.10372 21.3327ZM8.10372 17.4444C7.59764 17.4444 7.11222 17.6451 6.75382 18.0024C6.39542 18.3597 6.19329 18.8445 6.19174 19.3506C6.19329 19.8572 6.39522 20.3426 6.75345 20.7008C7.11168 21.0591 7.59711 21.261 8.10372 21.2625C8.6098 21.261 9.09462 21.0589 9.45193 20.7005C9.80923 20.3421 10.0099 19.8566 10.0099 19.3506C10.0052 18.8481 9.80238 18.3677 9.44541 18.014C9.08844 17.6604 8.60624 17.4619 8.10372 17.462V17.4444Z" fill="#1D1D1D"/>
|
|
13
|
+
<defs>
|
|
14
|
+
<linearGradient id="paint0_linear_4088_34003" x1="2.99902" y1="19.3505" x2="22.61" y2="19.3505" gradientUnits="userSpaceOnUse">
|
|
15
|
+
<stop stop-color="#F37C1C"/>
|
|
16
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
17
|
+
</linearGradient>
|
|
18
|
+
<linearGradient id="paint1_linear_4088_34003" x1="5.3501" y1="26.9869" x2="10.8522" y2="26.9869" gradientUnits="userSpaceOnUse">
|
|
19
|
+
<stop stop-color="#EFC530"/>
|
|
20
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
21
|
+
</linearGradient>
|
|
22
|
+
<linearGradient id="paint2_linear_4088_34003" x1="21.8031" y1="17.234" x2="32.0179" y2="17.234" gradientUnits="userSpaceOnUse">
|
|
23
|
+
<stop stop-color="#EFC530"/>
|
|
24
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
25
|
+
</linearGradient>
|
|
26
|
+
</defs>
|
|
27
|
+
</svg>
|