@kando-env/kando-ui 1.2.256-alpha.5 → 1.2.256-alpha.51
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 +4 -4
- package/lib/Widgets/Map/Map.scss +2 -2
- package/lib/Widgets/Map/MapUtils.js +3 -3
- package/lib/Widgets/Map/areas/AreaPolygon.js +10 -41
- package/lib/Widgets/Map/areas/AreaUtils.js +155 -0
- package/lib/Widgets/Map/edges/Edge.js +15 -16
- package/lib/Widgets/Map/edges/Edges.js +38 -3
- package/lib/Widgets/Map/edges/arrows/Arrows.js +13 -2
- package/lib/Widgets/Map/events/EventPath.js +4 -2
- package/lib/Widgets/Map/events/EventUtils.js +57 -40
- package/lib/Widgets/Map/points/PointIcon.scss +1 -1
- package/lib/Widgets/Map/points/PointMarker.js +4 -19
- package/lib/Widgets/Map/points/PointMarkers.js +62 -2
- package/lib/Widgets/Map/points/PointUtils.js +20 -12
- package/lib/Widgets/MostPolluting/Areas/AreaBox/AreaBox.js +3 -3
- package/lib/Widgets/MostPolluting/components/PollutionScorePercent.js +6 -6
- package/lib/Widgets/UtilityInformation/UtilityInformation.js +3 -3
- package/lib/assets/icons/copy.svg +8 -0
- package/lib/assets/icons/index.js +43 -1
- package/lib/assets/icons/info-dot.svg +4 -0
- package/lib/assets/icons/map.svg +24 -0
- package/lib/assets/icons/question-info.svg +3 -0
- package/lib/assets/icons/sampling.svg +9 -0
- package/lib/assets/icons/score-info.svg +9 -0
- package/lib/components/Header/Toolbar/Toolbar.js +2 -2
- package/lib/components/Sector/svgs/AreaMissing.svg +10 -0
- package/lib/components/Sector/svgs/Brewing.svg +99 -92
- package/lib/components/Sector/svgs/Cowshed.svg +27 -22
- package/lib/components/Sector/svgs/Garage.svg +26 -23
- package/lib/components/Sector/svgs/Missing.svg +36 -35
- 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 +99 -92
- package/lib/components/Sector/svgs/beer.svg +16 -12
- package/lib/components/Sector/svgs/beverage.svg +17 -12
- package/lib/components/Sector/svgs/car-repair.svg +26 -23
- package/lib/components/Sector/svgs/car-wash.svg +35 -35
- package/lib/components/Sector/svgs/chemistry.svg +17 -29
- package/lib/components/Sector/svgs/conductor-manufacturer.svg +20 -16
- package/lib/components/Sector/svgs/cosmetic-manufacturer.svg +25 -22
- package/lib/components/Sector/svgs/cow.svg +27 -22
- package/lib/components/Sector/svgs/cpu.svg +20 -16
- package/lib/components/Sector/svgs/dairy.svg +16 -17
- package/lib/components/Sector/svgs/dippel-oil.svg +21 -16
- package/lib/components/Sector/svgs/food-donation.svg +33 -28
- package/lib/components/Sector/svgs/food-factory.svg +20 -16
- package/lib/components/Sector/svgs/garbage-truck-1.svg +31 -33
- package/lib/components/Sector/svgs/gas-station.svg +22 -25
- package/lib/components/Sector/svgs/glass-manufacturer.svg +22 -20
- package/lib/components/Sector/svgs/glass.svg +22 -20
- package/lib/components/Sector/svgs/hand-washing.svg +19 -16
- package/lib/components/Sector/svgs/hospital.svg +31 -27
- package/lib/components/Sector/svgs/hotel.svg +24 -23
- package/lib/components/Sector/svgs/laundromat.svg +26 -25
- package/lib/components/Sector/svgs/leather-factory.svg +15 -22
- package/lib/components/Sector/svgs/leather.svg +15 -22
- package/lib/components/Sector/svgs/lipstick.svg +25 -22
- package/lib/components/Sector/svgs/meat.svg +27 -23
- package/lib/components/Sector/svgs/metal-coating-plant.svg +21 -20
- package/lib/components/Sector/svgs/metal-facbrication.svg +30 -19
- package/lib/components/Sector/svgs/milk.svg +16 -17
- package/lib/components/Sector/svgs/oil-rig.svg +15 -16
- package/lib/components/Sector/svgs/petrochemical.svg +21 -12
- package/lib/components/Sector/svgs/pie.svg +20 -16
- package/lib/components/Sector/svgs/pills.svg +21 -21
- package/lib/components/Sector/svgs/plant-unkown-3.svg +36 -35
- package/lib/components/Sector/svgs/plastic-rubber.svg +34 -42
- package/lib/components/Sector/svgs/printer.svg +16 -16
- package/lib/components/Sector/svgs/recycling.svg +15 -16
- package/lib/components/Sector/svgs/refinery.svg +16 -17
- package/lib/components/Sector/svgs/repair.svg +14 -12
- package/lib/components/Sector/svgs/sewing-machine.svg +22 -21
- package/lib/components/Sector/svgs/shop.svg +26 -23
- package/lib/components/Sector/svgs/soda.svg +15 -12
- package/lib/components/Sector/svgs/spray-gun.svg +21 -20
- package/lib/components/Sector/svgs/washing-machine.svg +26 -25
- package/lib/components/Sector/svgs/waste.svg +34 -42
- package/lib/components/Sector/svgs/welder-a.svg +30 -19
- package/lib/components/Sector/svgs/wine-glass.svg +10 -14
- package/lib/components/SevereEvent/SevereEvent.js +18 -9
- package/lib/hooks/useUserTimeZone.js +36 -2
- package/lib/hooks/useUserTimeZone.test.js +15 -1
- package/lib/i18n/en.json +62 -4
- package/lib/i18n/en_uk.json +1 -1
- package/lib/i18n/fr.json +1 -2
- package/lib/i18n/he.json +26 -1
- package/lib/i18n/it.json +1 -2
- package/lib/macros/getVersion.js +2 -2
- package/lib/pages/EventsPage/DragAndDropArea/DragAndDrop.module.scss +1 -1
- package/lib/pages/EventsPage/FloatingGraph/floatingGraphStyle.scss +6 -2
- package/lib/pages/EventsPage/events/EventsStyle.scss +2 -1
- package/lib/pages/EventsPage/events/event_info/EventInfo.js +43 -20
- package/lib/pages/EventsPage/events/event_info/EventInfoStyle.scss +10 -4
- package/lib/pages/EventsPage/events/event_info/EventSection.js +47 -0
- package/lib/pages/EventsPage/events/event_info/EventSection.test.js +59 -0
- package/lib/pages/EventsPage/events/event_info/Header/Header.js +31 -0
- package/lib/pages/EventsPage/events/event_info/Header/HeaderContainer.js +86 -0
- package/lib/pages/EventsPage/events/event_info/Header/index.js +11 -0
- package/lib/pages/EventsPage/events/event_info/Samplings.js +62 -0
- package/lib/pages/EventsPage/events/event_info/SeverityScore/ScoreExplanation.js +37 -0
- package/lib/pages/EventsPage/events/event_info/SeverityScore/ScoreGauge.js +155 -0
- package/lib/pages/EventsPage/events/event_info/SeverityScore/SeverityScore.js +63 -0
- package/lib/pages/EventsPage/events/event_info/SeverityScore/index.js +11 -0
- package/lib/pages/EventsPage/events/event_info/SourceDetails/Confidence.js +38 -0
- package/lib/pages/EventsPage/events/event_info/SourceDetails/Discharging.js +26 -0
- package/lib/pages/EventsPage/events/event_info/SourceDetails/IconAndTitles.js +43 -0
- package/lib/pages/EventsPage/events/event_info/SourceDetails/MoreInfoButton.js +45 -0
- package/lib/pages/EventsPage/events/event_info/SourceDetails/OtherSources.js +36 -0
- package/lib/pages/EventsPage/events/event_info/SourceDetails/PotentialSources.js +44 -0
- package/lib/pages/EventsPage/events/event_info/SourceDetails/SingleSource.js +44 -0
- package/lib/pages/EventsPage/events/event_info/SourceDetails/SourceCardBody.js +20 -0
- package/lib/pages/EventsPage/events/event_info/SourceDetails/SourceDetails.js +70 -0
- package/lib/pages/EventsPage/events/event_info/SourceDetails/WaterConsumptionPerDay.js +28 -0
- package/lib/pages/EventsPage/events/event_info/Timelines/DischargeBox.js +30 -0
- package/lib/pages/EventsPage/events/event_info/Timelines/EarlyWarning.js +54 -0
- package/lib/pages/EventsPage/events/event_info/Timelines/LiveStatusBadge.js +29 -0
- package/lib/pages/EventsPage/events/event_info/Timelines/SeenBox.js +30 -0
- package/lib/pages/EventsPage/events/event_info/Timelines/Timelines.js +68 -0
- package/lib/pages/EventsPage/events/event_info/Timelines/Timelines.test.js +27 -0
- package/lib/pages/EventsPage/events/event_info/Timelines/Titles.js +40 -0
- package/lib/pages/EventsPage/events/event_info/Timelines/index.js +11 -0
- package/lib/pages/EventsPage/events/event_info/Timelines/style.js +20 -0
- package/lib/pages/EventsPage/events/event_info/styles.js +23 -0
- package/lib/pages/EventsPage/events/events_list/EventsList.js +3 -3
- package/lib/pages/EventsPage/events/events_list/Filter/FilterContainer.js +1 -2
- package/lib/pages/EventsPage/events/events_list/Filter/FilterStyle.scss +1 -1
- package/lib/pages/ProfilePage/ProfilePage.js +76 -44
- package/lib/pages/SitePage/SiteInformation/SiteInformation.js +2 -2
- package/lib/pages/WbeDashboard/WbeDashboardPage.js +15 -10
- package/lib/store/areas/models/IArea.js +1 -1
- package/lib/store/events/models/IEvent.js +1 -1
- package/lib/store/events/models/ISource.js +1 -1
- package/lib/store/permissions/permissionsSlice.js +7 -4
- package/lib/styles/theme/theme.js +12 -1
- package/lib/styles.scss +8 -0
- package/lib/ui-kit/siteName/SiteName.js +29 -0
- package/lib/utilities/scoreToData.js +44 -0
- package/lib/utilities/scoreToData.test.js +16 -0
- package/lib/utilities/urls.js +4 -1
- package/package.json +2 -2
- package/lib/utilities/scoreToColor.js +0 -24
|
@@ -1,23 +1,16 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
17
|
-
</linearGradient>
|
|
18
|
-
<path fill="url(#SVGID_3_)" d="M368.4 322.9s-10-41-7.2-78.3c2.4-35.4 6.9-61.9 15-75.2 4-14.1 19.4-22.3 19.4-22.3V91.2H121v55.9c14.7 4.8 25.3 32.4 28 45.5 4 19.3 9 51.3 6.8 78.7-1.8 22.5-5.4 57.3-15.5 75.7-6.7 18.6-19.3 22.1-19.3 22.1v54.3l16.1-1.5h242.5l16 1.4V369c-21.9-12.5-27.2-46.1-27.2-46.1zM186 272.5c.7-56.3-3.1-64.5-7.7-87.5"/>
|
|
19
|
-
</g>
|
|
20
|
-
<path d="M472.6 153.2l9.3-3.8V30.2l-15.6.6c-4.5.2-9.2.3-13.9.3-53.5 0-99.7 0-125.2-26.5L322.7 0H191.4L187 4.5c-26.3 26.6-72.5 26.6-126.1 26.6-4.7 0-9.5-.1-14.3-.3L31 30.2v119.1l9.6 3.7c30.9 12.1 50.9 52.8 50.9 103.8 0 50.8-20.9 94.5-50.9 106.2l-9.6 3.7v116.6l15.8-.8c7.1-.4 14.4-.6 21.6-.6 53.5 0 103.5 10.5 133.7 28l3.5 2h102.6l3.5-2c30.2-17.6 80.2-28 133.6-28 6.9 0 13.9.2 20.8.5l15.8.8V366.7l-9.3-3.8c-29.7-12.2-50.5-55.3-50.5-105 0-51.1 19.8-92.1 50.5-104.7zm-61.7 20.5c-12.3 23.3-18.8 52.4-18.8 84.1 0 57.7 23.7 107.6 59.8 128.2v65.9c-59.9-.9-115.1 10.1-151.6 30h-86.7c-35.2-19.1-87.8-30.1-145.2-30.1-2.4 0-4.9 0-7.3.1v-65.5c36.5-20.3 60.4-70.8 60.4-129.7 0-31.5-6.6-60.5-19.1-83.8-10.5-19.6-24.7-34.5-41.4-43.5V61.1c55.2 0 107.4 0 142.5-31.1h106.6c34.4 31 86.5 31.1 141.6 31.1v68.8c-16.4 9.3-30.5 24.3-40.8 43.8z" class="st4"/>
|
|
21
|
-
<path d="M376.6 346.5l-27.2 12.7c4.7 10.2 10.2 18.4 16.4 24.4v8h-15l-.1 30.1c22.7.1 27.9.1 29.1.1l16 1.4v-54.3l-6.4-4.5c-2.5-1.7-7.5-6.3-12.8-17.9zM271.7 421.6h52.7v-30.1h-52.7v30.1zM192.6 391.6v30.1h52.7v-30.1c-18.5-.1-36.7-.1-52.7 0zM167.7 359.7L140.5 347c-5.4 11.5-10.3 16-12.7 17.6l-6.6 4.5v54.3l16.1-1.5c1.2 0 6.5-.1 29.1-.2l-.1-30.1c-6.2 0-11.1 0-15 .1v-7.6c6.1-6 11.7-14.2 16.4-24.4zM148.7 323.3l29.1 7.5c4.5-17.5 7.2-37.1 8.2-58.2l-30-1.3c-.8 18.7-3.3 36.7-7.3 52zM149.2 192.5c3.9 15.2 6.2 32.7 6.9 52l30-1.1c-.8-21.5-3.4-41.1-7.8-58.4l-29.1 7.5zM140.9 169l27.1-13c-4.8-10-10.4-18.1-16.8-24.1v-10.7h15V91.1h-45.1V147l6.6 4.5c4.6 3 9.2 9.2 13.2 17.5zM192.6 91.2h52.7v30.1h-52.7V91.2zM271.6 91.2h52.7v30.1h-52.7V91.2zM350.7 121.2h15v11.1c-6.2 6.1-11.8 14.2-16.6 24.2l27.2 12.9c4-8.3 8.6-14.7 13.1-17.8l6.4-4.5V91.2h-45.1v30zM361.3 271.2l-30 1.2c.9 21 3.6 40.6 8 58l29.1-7.5c-3.9-15.1-6.3-33-7.1-51.7zM368.1 192.8l-29.1-7.4c-4.4 17.2-7 36.7-7.8 58l30 1.1c.8-19.1 3.1-36.6 6.9-51.7z" class="st4"/>
|
|
22
|
-
</g>
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M30.8484 9.45245V3.7426L24.5251 3.65111L21.1132 1.58997H13.8749L11.238 3.31207L4.33342 3.98477L3.62305 9.05421L7.75072 14.1506L7.93907 21.4372L3.6338 25.1774L4.85005 30.263L12.2659 31.8775L17.825 32.6417L21.7105 31.2855L30.6278 30.1446V24.7469L26.9307 20.5762L27.415 12.5038L30.87 9.4363L30.8484 9.45245ZM26.005 27.5776L24.9933 27.4915H9.65579L8.63329 27.5884V24.1495C8.92684 24.0213 9.18849 23.8299 9.39964 23.5889C9.61078 23.348 9.76623 23.0635 9.85491 22.7557C10.533 21.5771 10.8344 19.3223 10.8344 17.9661C11.0765 16.3516 10.4092 12.9881 10.4092 12.9881C10.4092 12.9881 10.0379 10.7925 8.63329 10.109V6.57869H26.005V10.1144C25.4407 10.4227 25.0054 10.9228 24.778 11.5244C24.064 13.0041 23.738 14.6412 23.8309 16.2817C23.709 17.9456 23.8618 19.6183 24.2829 21.2327C24.2829 21.2327 24.622 23.3584 26.0104 24.1442C26.0104 25.8017 26.0104 27.583 26.0104 27.583L26.005 27.5776Z" fill="url(#paint0_linear_4088_33980)"/>
|
|
3
|
+
<path d="M24.2722 21.2326C23.8996 19.6101 23.7476 17.9448 23.8201 16.2816C23.9708 14.0429 24.256 12.3638 24.7673 11.5243C24.9947 10.9228 25.43 10.4226 25.9943 10.1143V6.57861H8.62256V10.1143C9.55357 10.4157 10.237 12.1647 10.3931 12.9935C10.754 14.6268 10.8988 16.3004 10.8236 17.9714C10.7106 19.3921 10.4846 21.5932 9.84417 22.761C9.76083 23.0714 9.60735 23.3584 9.39555 23.6001C9.18375 23.8417 8.9193 24.0315 8.62256 24.1548V27.5937L9.63967 27.4968H24.9826L25.9943 27.5883V24.1495C24.6112 23.3584 24.2722 21.2326 24.2722 21.2326ZM12.7341 18.0468C12.7825 14.4841 12.5403 13.9675 12.2497 12.5145L12.7341 18.0468Z" fill="url(#paint1_linear_4088_33980)"/>
|
|
4
|
+
<path d="M30.8645 10.5018L31.4511 10.2597V2.72544L30.4663 2.76312C30.181 2.76312 29.885 2.76312 29.5891 2.76312C26.204 2.76312 23.2818 2.76311 21.6674 1.08406L21.3821 0.793457H13.0784L12.7985 1.07868C11.1356 2.76311 8.21343 2.76312 4.82304 2.76312C4.52705 2.76312 4.22029 2.76312 3.91892 2.76312L2.92871 2.72544V10.2597L3.53683 10.4911C5.49034 11.2606 6.76578 13.833 6.76578 17.0566C6.76578 20.2801 5.44191 23.0355 3.53683 23.7782L2.92871 24.0096V31.3877L3.92969 31.3339C4.38175 31.3339 4.83917 31.2962 5.2966 31.2962C8.68161 31.2962 11.846 31.9636 13.7564 33.0668L13.9771 33.1959H20.4673L20.6879 33.0668C22.5984 31.9582 25.7574 31.2962 29.137 31.2962C29.5729 31.2962 30.0196 31.2962 30.4555 31.3285L31.4511 31.3823V24.0096L30.8645 23.7728C28.9863 22.9978 27.6678 20.2748 27.6678 17.1265C27.6678 13.8976 28.9217 11.3037 30.8645 10.5072V10.5018ZM26.9628 11.7988C26.1434 13.4493 25.7354 15.2735 25.7735 17.1158C25.7735 20.7645 27.2696 23.9235 29.5406 25.2258V29.3965C25.7735 29.3373 22.2593 30.0316 19.9506 31.2909H14.4668C12.2388 30.0854 8.91302 29.3912 5.28046 29.3912H4.81765V25.2473C7.12635 23.9611 8.63857 20.7699 8.63857 17.0404C8.67556 15.2016 8.26168 13.3816 7.43309 11.7396C6.84693 10.5865 5.93579 9.6305 4.81226 8.9896V4.68434C8.30491 4.68434 11.6038 4.68434 13.8264 2.72006H20.5695C22.7222 4.67896 26.0426 4.68434 29.5245 4.68434V9.03804C28.4177 9.69612 27.523 10.658 26.9467 11.8095L26.9628 11.7988Z" fill="#1D1D1D"/>
|
|
5
|
+
<path d="M24.7942 22.7233L23.0721 23.5252C23.3206 24.0994 23.6727 24.623 24.1108 25.0697V25.5756H23.1582V27.4807H24.9987L26.0105 27.5668V24.1333L25.6069 23.8481C25.2435 23.5485 24.9652 23.1588 24.7996 22.718L24.7942 22.7233ZM18.1534 27.4807H21.4846V25.5756H18.1534V27.4807ZM13.1485 25.581V27.486H16.4797V25.581H13.1485ZM11.5717 23.5629L9.8496 22.761C9.68311 23.1954 9.40683 23.5792 9.04774 23.875L8.63336 24.1548V27.5937L9.65049 27.4968H11.491V25.5917H10.5384V25.1128C10.9748 24.6647 11.3267 24.1414 11.5771 23.5683L11.5717 23.5629ZM10.3716 21.2596L12.2121 21.7331C12.5181 20.528 12.6984 19.2944 12.7503 18.0521L10.856 17.9714C10.8095 19.081 10.649 20.1828 10.377 21.2596H10.3716ZM10.4039 12.9881C10.6668 14.0653 10.8129 15.1677 10.8398 16.2762L12.7341 16.2063C12.6978 14.9562 12.5301 13.7133 12.2336 12.4983L10.3931 12.9719L10.4039 12.9881ZM9.86575 11.4974L11.5825 10.6794C11.3192 10.1089 10.9545 9.59109 10.5062 9.15101V8.47831H11.4587V6.57861H8.60107V10.1143L9.02084 10.3995C9.39729 10.6856 9.69381 11.0636 9.88189 11.4974H9.86575ZM13.1377 6.57861H16.4689V8.48369H13.1377V6.57861ZM18.1318 6.57861H21.4684V8.48369H18.1534L18.1318 6.57861ZM23.1367 8.47831H24.0893V9.17792C23.6452 9.6237 23.2812 10.1425 23.0129 10.7117L24.7351 11.5243C24.9169 11.0882 25.2011 10.7024 25.5638 10.3995L25.9674 10.1143V6.57861H23.1152L23.1367 8.47831ZM23.8094 17.966L21.9097 18.0414C21.9542 19.2787 22.1237 20.5084 22.4156 21.7116L24.2561 21.2326C23.9995 20.1617 23.8553 19.0669 23.8256 17.966H23.8094ZM24.2399 13.0042L22.3994 12.536C22.1039 13.7383 21.9379 14.9687 21.9043 16.2063L23.804 16.2762C23.8369 15.1735 23.983 14.0771 24.2399 13.0042Z" fill="#1D1D1D"/>
|
|
6
|
+
<defs>
|
|
7
|
+
<linearGradient id="paint0_linear_4088_33980" x1="17.2277" y1="32.6578" x2="17.2277" y2="1.58997" gradientUnits="userSpaceOnUse">
|
|
8
|
+
<stop stop-color="#F37C1C"/>
|
|
9
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
<linearGradient id="paint1_linear_4088_33980" x1="17.3084" y1="27.5937" x2="17.3084" y2="6.57861" gradientUnits="userSpaceOnUse">
|
|
12
|
+
<stop stop-color="#EFC530"/>
|
|
13
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
14
|
+
</linearGradient>
|
|
15
|
+
</defs>
|
|
23
16
|
</svg>
|
|
@@ -1,23 +1,26 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M4.8335 13.4323H14.5399V31.2956H4.8335V13.4323Z" fill="url(#paint0_linear_4088_33995)"/>
|
|
3
|
+
<path d="M14.5743 31.3252H4.79883V13.4027H14.5743V31.3252ZM4.86298 31.2611H14.5101V13.4669H4.86298V31.2611Z" fill="black"/>
|
|
4
|
+
<path d="M9.57552 2.7093H9.39294C9.31623 3.28191 9.12024 3.83207 8.81765 4.32421C8.51505 4.81636 8.11258 5.23955 7.63622 5.56644C7.49464 5.66077 7.37832 5.78836 7.29746 5.93804C7.2166 6.08772 7.17365 6.25494 7.17236 6.42506V11.5817H11.8109V4.93974C11.8109 4.64642 11.753 4.35598 11.6406 4.08505C11.5282 3.81411 11.3635 3.56801 11.1559 3.36083C10.9482 3.15365 10.7018 2.98946 10.4306 2.87766C10.1594 2.76586 9.86884 2.70865 9.57552 2.7093Z" fill="url(#paint1_linear_4088_33995)"/>
|
|
5
|
+
<path d="M11.8408 11.6114H7.14307V6.42511C7.14526 6.24844 7.19154 6.0751 7.27771 5.92085C7.36389 5.7666 7.48723 5.63631 7.63653 5.54182C8.10148 5.21225 8.49319 4.79003 8.78702 4.30172C9.08086 3.8134 9.27046 3.26956 9.3439 2.70441V2.6748H9.55609C10.1564 2.67611 10.7318 2.91516 11.1562 3.33964C11.5807 3.76413 11.8198 4.33948 11.8211 4.93979L11.8408 11.6114ZM7.20228 11.5472H11.7767V4.93979C11.7767 4.35609 11.5448 3.7963 11.1321 3.38357C10.7193 2.97083 10.1595 2.73895 9.57583 2.73895H9.42286C9.34138 3.31119 9.14182 3.86024 8.83686 4.35125C8.53189 4.84225 8.12818 5.26449 7.65133 5.59116C7.51256 5.68136 7.39869 5.80502 7.32022 5.95075C7.24175 6.09648 7.2012 6.2596 7.20228 6.42511V11.5472Z" fill="black"/>
|
|
6
|
+
<path d="M15.004 20.6516V14.3748C15.0023 13.9027 14.8811 13.4388 14.6515 13.0263C14.422 12.6138 14.0917 12.2662 13.6914 12.016C13.6962 11.98 13.6962 11.9435 13.6914 11.9075V4.93978C13.6888 3.84687 13.2541 2.79932 12.4823 2.02559C11.7104 1.25185 10.6639 0.814717 9.57095 0.809509L9.39824 0.809509C9.11301 0.809767 8.8286 0.839533 8.5495 0.898332C8.26172 0.961039 8.00382 1.11977 7.81819 1.34844C7.63256 1.57712 7.53024 1.86213 7.52803 2.15666C7.5258 2.52062 7.43473 2.87854 7.26273 3.19931C7.09074 3.52008 6.84303 3.794 6.54111 3.99727C6.14708 4.26825 5.82456 4.63065 5.60112 5.05345C5.37769 5.47626 5.25999 5.94689 5.2581 6.4251V11.8976C5.25553 11.9337 5.25553 11.97 5.2581 12.0062C4.85717 12.2557 4.52632 12.6031 4.29669 13.0157C4.06706 13.4284 3.9462 13.8927 3.94549 14.3649V20.6368C3.62125 20.8984 3.3595 21.229 3.17937 21.6047C2.99923 21.9803 2.90526 22.3914 2.9043 22.808V30.4172C2.9056 31.1562 3.19975 31.8646 3.72233 32.3872C4.24491 32.9098 4.95331 33.204 5.69235 33.2053H13.2324C13.6005 33.2079 13.9654 33.1377 14.3062 32.9988C14.647 32.8599 14.957 32.6551 15.2184 32.396C15.4798 32.1369 15.6874 31.8287 15.8293 31.4891C15.9712 31.1495 16.0445 30.7852 16.0452 30.4172V22.8179C16.0467 22.4016 15.9538 21.9904 15.7734 21.6151C15.5931 21.2399 15.33 20.9105 15.004 20.6516ZM6.76315 13.4865H12.2208C12.3379 13.4859 12.4539 13.5084 12.5623 13.5527C12.6706 13.5971 12.7691 13.6624 12.8521 13.7449C12.9351 13.8275 13.001 13.9256 13.0459 14.0337C13.0909 14.1418 13.114 14.2577 13.114 14.3748V20.0545H5.88973V14.3748C5.89096 14.1421 5.98292 13.9191 6.14604 13.7533C6.30916 13.5874 6.53056 13.4917 6.76315 13.4865ZM7.63659 5.59115C8.11273 5.26404 8.51506 4.84079 8.81763 4.34868C9.1202 3.85658 9.31631 3.30654 9.39331 2.73401H9.57589C10.164 2.73267 10.7289 2.9637 11.1476 3.37681C11.5662 3.78992 11.8048 4.35166 11.8113 4.93978V11.5867H7.17274V6.4251C7.17402 6.25498 7.21697 6.08776 7.29783 5.93808C7.3787 5.7884 7.49501 5.66081 7.63659 5.56648V5.59115ZM14.1503 30.4172C14.1503 30.6541 14.0562 30.8813 13.8887 31.0488C13.7212 31.2163 13.494 31.3104 13.2571 31.3104H5.7269C5.49002 31.3104 5.26283 31.2163 5.09533 31.0488C4.92783 30.8813 4.83372 30.6541 4.83372 30.4172V22.8179C4.83372 22.7008 4.85686 22.5849 4.9018 22.4768C4.94675 22.3688 5.01263 22.2706 5.09563 22.1881C5.17863 22.1055 5.27712 22.0402 5.38546 21.9959C5.49379 21.9515 5.60984 21.929 5.7269 21.9297H13.2621C13.3791 21.929 13.4951 21.9515 13.6035 21.9959C13.7118 22.0402 13.8103 22.1055 13.8933 22.1881C13.9763 22.2706 14.0422 22.3688 14.0871 22.4768C14.1321 22.5849 14.1552 22.7008 14.1552 22.8179V30.4172H14.1503Z" fill="#1D1D1D"/>
|
|
7
|
+
<path d="M20.9303 13.4323L30.4147 13.4865V31.6114H20.1704V13.4865L20.9303 13.4323Z" fill="url(#paint2_linear_4088_33995)"/>
|
|
8
|
+
<path d="M30.449 31.6411H20.1406V13.457L20.9302 13.4027L30.449 13.4521V31.6411ZM20.1998 31.5818H30.3849V13.5162L20.9302 13.4669L20.1998 13.5162V31.5818Z" fill="black"/>
|
|
9
|
+
<path d="M29.9408 19.4031V23.4545L20.2344 26.2326V21.9297L29.9408 19.4031Z" fill="white"/>
|
|
10
|
+
<path d="M20.2002 26.2771V21.905H20.2249L29.9757 19.3735V23.4841H29.951L20.2002 26.2771ZM20.2643 21.9543V26.1932L29.9115 23.4298V19.4476L20.2643 21.9543Z" fill="black"/>
|
|
11
|
+
<path d="M29.0479 11.5374H21.5177C21.1509 11.5367 20.7875 11.6083 20.4484 11.7481C20.1093 11.8878 19.8011 12.093 19.5413 12.3519C19.2815 12.6108 19.0752 12.9183 18.9342 13.257C18.7933 13.5956 18.7204 13.9586 18.7197 14.3254V30.4172C18.721 31.1562 19.0152 31.8646 19.5378 32.3872C20.0604 32.9098 20.7687 33.204 21.5078 33.2053H29.0824C29.8172 33.1975 30.5193 32.9005 31.0365 32.3786C31.5538 31.8567 31.8446 31.152 31.8458 30.4172V14.3254C31.8432 13.5851 31.5473 12.8759 31.0228 12.3534C30.4984 11.8308 29.7882 11.5374 29.0479 11.5374ZM20.6245 22.9413L29.941 20.02V22.7636L20.6245 25.6849V22.9413ZM21.5177 13.4323H29.0824C29.1995 13.4322 29.3154 13.4554 29.4235 13.5003C29.5316 13.5453 29.6297 13.6111 29.7122 13.6941C29.7948 13.7772 29.8601 13.8757 29.9045 13.984C29.9488 14.0923 29.9713 14.2084 29.9706 14.3254V18.0313L20.659 20.9526V14.3254C20.6571 14.2084 20.6785 14.0922 20.722 13.9836C20.7656 13.875 20.8304 13.7762 20.9127 13.693C20.995 13.6098 21.0931 13.5438 21.2012 13.4991C21.3093 13.4543 21.4253 13.4316 21.5423 13.4323H21.5177ZM29.0479 31.2956H21.5177C21.2833 31.2956 21.0584 31.2035 20.8913 31.0392C20.7242 30.8749 20.6284 30.6515 20.6245 30.4172V27.6785L29.941 24.7572V30.4172C29.9372 30.6515 29.8413 30.8749 29.6743 31.0392C29.5072 31.2035 29.2822 31.2956 29.0479 31.2956Z" fill="#1D1D1D"/>
|
|
12
|
+
<defs>
|
|
13
|
+
<linearGradient id="paint0_linear_4088_33995" x1="9.68916" y1="31.2956" x2="9.68916" y2="13.4323" gradientUnits="userSpaceOnUse">
|
|
14
|
+
<stop stop-color="#F37C1C"/>
|
|
15
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
16
|
+
</linearGradient>
|
|
17
|
+
<linearGradient id="paint1_linear_4088_33995" x1="9.49163" y1="11.5817" x2="9.49163" y2="2.70436" gradientUnits="userSpaceOnUse">
|
|
18
|
+
<stop stop-color="#EFC530"/>
|
|
19
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
20
|
+
</linearGradient>
|
|
21
|
+
<linearGradient id="paint2_linear_4088_33995" x1="25.2925" y1="31.6114" x2="25.2925" y2="13.4323" gradientUnits="userSpaceOnUse">
|
|
22
|
+
<stop stop-color="#EFC530"/>
|
|
23
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
24
|
+
</linearGradient>
|
|
25
|
+
</defs>
|
|
23
26
|
</svg>
|
|
@@ -1,24 +1,28 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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_33979)">
|
|
3
|
+
<path d="M8.34881 23.7951C9.73022 23.7463 11.1069 23.983 12.3926 24.4904C13.6784 24.9979 14.8456 25.7651 15.8213 26.7443C17.5903 28.5433 19.9941 29.5771 22.5167 29.6237C25.0308 29.6434 27.4585 28.7071 29.3084 27.0043C31.1582 25.3015 32.2919 22.9596 32.4801 20.4524C31.3823 22.0993 29.8904 23.4459 28.14 24.3698C26.3896 25.2938 24.4361 25.7658 22.4569 25.7429C19.4441 25.6717 16.5769 24.432 14.4613 22.2857C13.675 21.497 12.734 20.8797 11.6975 20.4724C10.6609 20.0652 9.55133 19.8769 8.43848 19.9194C7.46989 19.969 6.50205 19.8082 5.60161 19.4478C4.70118 19.0875 3.88956 18.5362 3.22266 17.832V18.8832C3.26209 19.0889 3.28871 19.2969 3.30237 19.5059C3.44596 20.7284 4.04743 21.8511 4.98565 22.6479C5.92387 23.4447 7.12915 23.8564 8.35877 23.8001L8.34881 23.7951Z" fill="url(#paint0_linear_4088_33979)"/>
|
|
4
|
+
<path d="M3.29221 13.6673C3.43581 14.8898 4.03727 16.0125 4.97549 16.8093C5.91371 17.6061 7.11899 18.0178 8.34861 17.9615C9.72992 17.9136 11.1063 18.1507 12.3919 18.6581C13.6776 19.1655 14.8449 19.9323 15.8211 20.9107C17.5896 22.7111 19.9933 23.7466 22.5165 23.7951C27.7423 23.9096 32.4151 19.5855 32.5098 14.2601C32.5177 13.0212 32.2432 11.7968 31.7071 10.6798C31.1711 9.56286 30.3876 8.58272 29.4162 7.81381C26.6165 5.62186 22.4119 4.37146 17.8786 4.37146C12.5083 4.37146 7.56151 6.15989 4.97103 9.03432C4.37801 9.64288 3.92153 10.3709 3.63204 11.1698C3.34255 11.9687 3.2267 12.8201 3.29221 13.6673Z" fill="url(#paint1_linear_4088_33979)"/>
|
|
5
|
+
<path d="M30.6317 6.27445C27.4983 3.82844 22.8503 2.42859 17.9035 2.42859C12.8521 2.42859 6.94382 3.99782 3.55129 7.73408C2.79952 8.50765 2.21411 9.42696 1.83114 10.4354C1.44816 11.4438 1.27573 12.5199 1.32448 13.5975C1.32448 13.6473 1.32448 18.9927 1.32448 18.9927C1.35644 19.471 1.418 19.9468 1.5088 20.4175C1.86121 21.9763 2.75027 23.3617 4.02058 24.3315C5.29089 25.3013 6.86163 25.7938 8.45825 25.7229C9.56945 25.684 10.6767 25.876 11.7099 26.2867C12.7431 26.6974 13.68 27.318 14.4612 28.1092C16.5866 30.265 19.4699 31.5055 22.4966 31.5665C25.5166 31.5984 28.435 30.4771 30.6566 28.4313C32.8783 26.3855 34.2359 23.5693 34.4527 20.5569C34.4576 20.4956 34.4576 20.434 34.4527 20.3726V14.275C34.4651 12.7358 34.1244 11.2143 33.4569 9.82731C32.7893 8.44034 31.8126 7.22492 30.6018 6.27445H30.6317ZM22.5365 29.6236C20.0148 29.5728 17.6125 28.5397 15.8411 26.7442C14.8654 25.7651 13.6982 24.9978 12.4124 24.4903C11.1266 23.9829 9.75 23.7462 8.36858 23.795C7.13896 23.8513 5.93368 23.4396 4.99546 22.6428C4.05724 21.846 3.45576 20.7233 3.31216 19.5008C3.31216 19.3364 3.26235 19.0325 3.23246 18.8781V17.822C3.89837 18.5253 4.70813 19.0768 5.60652 19.4387C6.50492 19.8007 7.47082 19.9646 8.43832 19.9193C9.55103 19.8743 10.6609 20.061 11.6977 20.4675C12.7345 20.874 13.6755 21.4914 14.4612 22.2806C16.5866 24.4364 19.4699 25.6769 22.4966 25.7379C24.4756 25.7593 26.4286 25.2868 28.1787 24.363C29.9289 23.4392 31.421 22.0933 32.5198 20.4473C32.3294 22.9541 31.1951 25.2953 29.3459 26.9984C27.4967 28.7015 25.0703 29.6397 22.5564 29.6236H22.5365ZM32.5298 14.2601C32.4401 19.5855 27.7722 23.9096 22.5365 23.795C20.0149 23.7437 17.6128 22.7106 15.8411 20.9156C14.8638 19.9387 13.6963 19.1728 12.4109 18.6655C11.1255 18.1582 9.74967 17.9203 8.36858 17.9665C7.13896 18.0227 5.93368 17.611 4.99546 16.8142C4.05724 16.0174 3.45576 14.8948 3.31216 13.6723C3.24917 12.8224 3.3686 11.9689 3.66245 11.169C3.95629 10.3691 4.41775 9.64127 5.0159 9.0343C7.60139 6.15987 12.5532 4.37144 17.9234 4.37144C22.4518 4.37144 26.6613 5.62683 29.461 7.80881C30.4322 8.58432 31.2148 9.57009 31.7498 10.6919C32.2848 11.8137 32.5583 13.0422 32.5497 14.285L32.5298 14.2601Z" fill="#1D1D1D"/>
|
|
6
|
+
<path d="M28.2407 9.3432C25.8146 7.44517 21.9439 6.31433 17.8987 6.31433C13.1213 6.31433 8.62783 7.88356 6.44087 10.2997C6.02275 10.7075 5.69767 11.2009 5.48788 11.746C5.27809 12.2911 5.18854 12.8751 5.22535 13.4581C5.315 14.1888 5.67741 14.8586 6.24 15.3335C6.80259 15.8083 7.52381 16.053 8.25919 16.0187C9.91639 15.9517 11.5694 16.2302 13.1132 16.8365C14.6569 17.4429 16.0576 18.3638 17.2262 19.5407C17.9427 20.2678 18.7955 20.8466 19.7357 21.2441C20.676 21.6416 21.6853 21.8499 22.7061 21.8572C24.7264 21.8112 26.6539 20.9995 28.0985 19.5864C29.5432 18.1732 30.397 16.264 30.4875 14.2452V14.2153C30.504 13.2808 30.3071 12.3548 29.9117 11.508C29.5163 10.6611 28.9329 9.91557 28.2059 9.32825L28.2407 9.3432ZM22.7609 19.9143C21.2069 19.907 19.7189 19.2856 18.6211 18.1857C13.9881 13.4929 8.35883 14.1555 7.88557 14.0658C7.70336 14.0144 7.53959 13.9121 7.41342 13.7709C7.28726 13.6298 7.20392 13.4556 7.17318 13.2688C7.17297 12.9565 7.23801 12.6476 7.36411 12.362C7.49022 12.0763 7.67462 11.8201 7.90549 11.6099C9.70388 9.61719 13.7291 8.25719 17.9137 8.25719C21.5404 8.25719 24.9628 9.25353 27.0601 10.8776C27.5496 11.2757 27.9421 11.7799 28.2079 12.3521C28.4737 12.9244 28.6059 13.5496 28.5944 14.1804C28.5155 15.6948 27.8714 17.1245 26.7895 18.1871C25.7076 19.2496 24.2665 19.8677 22.7509 19.9193L22.7609 19.9143Z" fill="#1D1D1D"/>
|
|
7
|
+
<path d="M22.7558 12.1379C20.5788 12.1379 18.8701 13.4232 18.8701 15.0572C18.8701 16.6912 20.5738 17.9715 22.7558 17.9715C24.9378 17.9715 26.6415 16.6862 26.6415 15.0572C26.6415 13.4282 24.9229 12.1379 22.7558 12.1379ZM22.7558 16.0286C21.5702 16.0286 20.813 15.4508 20.813 15.0572C20.813 14.6637 21.5702 14.0609 22.7558 14.0609C23.9415 14.0609 24.6987 14.6387 24.6987 15.0572C24.6987 15.4757 23.9265 16.0286 22.7558 16.0286Z" fill="#1D1D1D"/>
|
|
8
|
+
<path d="M22.7558 16.0286C23.8289 16.0286 24.6987 15.5936 24.6987 15.0571C24.6987 14.5206 23.8289 14.0857 22.7558 14.0857C21.6828 14.0857 20.813 14.5206 20.813 15.0571C20.813 15.5936 21.6828 16.0286 22.7558 16.0286Z" fill="white"/>
|
|
9
|
+
<path d="M27.045 10.8775C24.9477 9.23848 21.5253 8.25708 17.8986 8.25708C13.7788 8.25708 9.81835 9.56229 7.98011 11.5151L7.28765 12.5114C7.18018 12.7449 7.13717 13.003 7.16311 13.2587C7.19385 13.4455 7.27718 13.6197 7.40335 13.7609C7.52951 13.902 7.69329 14.0043 7.87549 14.0558C8.34875 14.1454 13.9781 13.4829 18.611 18.1756C19.7072 19.2778 21.1963 19.8996 22.7508 19.9043C24.2638 19.8503 25.7018 19.2318 26.7815 18.1706C27.8612 17.1093 28.5044 15.6822 28.5844 14.1703C28.5941 13.5407 28.4606 12.9171 28.1939 12.3466C27.9272 11.7762 27.5344 11.2738 27.045 10.8775ZM22.7558 17.9714C20.5788 17.9714 18.8701 16.6861 18.8701 15.0571C18.8701 13.4281 20.5738 12.1378 22.7558 12.1378C24.9378 12.1378 26.6415 13.4231 26.6415 15.0571C26.6415 16.6911 24.9228 17.9714 22.7558 17.9714Z" fill="url(#paint2_linear_4088_33979)"/>
|
|
10
|
+
</g>
|
|
11
|
+
<defs>
|
|
12
|
+
<linearGradient id="paint0_linear_4088_33979" x1="17.8638" y1="29.6287" x2="17.8638" y2="17.827" gradientUnits="userSpaceOnUse">
|
|
13
|
+
<stop stop-color="#F37C1C"/>
|
|
14
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
15
|
+
</linearGradient>
|
|
16
|
+
<linearGradient id="paint1_linear_4088_33979" x1="17.8985" y1="23.7951" x2="17.8985" y2="4.37146" gradientUnits="userSpaceOnUse">
|
|
17
|
+
<stop stop-color="#EFC530"/>
|
|
18
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
19
|
+
</linearGradient>
|
|
20
|
+
<linearGradient id="paint2_linear_4088_33979" x1="17.8688" y1="19.9142" x2="17.8688" y2="8.25708" gradientUnits="userSpaceOnUse">
|
|
21
|
+
<stop stop-color="#F37C1C"/>
|
|
22
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
23
|
+
</linearGradient>
|
|
24
|
+
<clipPath id="clip0_4088_33979">
|
|
25
|
+
<rect width="34" height="34" fill="white" transform="translate(0.5)"/>
|
|
26
|
+
</clipPath>
|
|
27
|
+
</defs>
|
|
24
28
|
</svg>
|
|
@@ -1,21 +1,22 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.4633 20.5435H20.1771V16.2297H10.4422H8.76375H4.19965V19.5667C4.19965 21.3816 4.19965 21.7544 4.19965 21.8006C4.19965 21.8469 4.19965 21.8006 4.19965 21.8253L2.92773 29.9753H10.1188L8.78222 21.474C8.77999 21.466 8.77999 21.4574 8.78222 21.4494C8.78222 21.4278 8.78222 21.3015 8.78222 20.562H13.4849L13.4633 20.5435Z" fill="url(#paint0_linear_4088_33978)"/>
|
|
3
|
+
<path d="M10.1402 29.9846H2.88135V29.9507L4.15326 21.7976C4.15061 21.7886 4.15061 21.7789 4.15326 21.7699C4.15326 21.6959 4.15326 21.243 4.15326 19.5452V16.1804H8.77279H10.3896H20.183V20.5589H13.4693H8.76663C8.76663 21.2276 8.76663 21.3909 8.76663 21.4094L10.1402 29.9846ZM2.94911 29.926H10.0724L8.742 21.4617C8.74083 21.4515 8.74083 21.4412 8.742 21.4309C8.742 21.4001 8.742 21.2923 8.742 20.5404V20.5127H13.4478H20.1615V16.2513H10.482H8.74815H4.2395V19.5575C4.2395 21.4063 4.2395 21.7483 4.2395 21.7945L2.94911 29.926Z" fill="black"/>
|
|
4
|
+
<path d="M19.8936 4.00313H11.3967C11.3495 4.00266 11.3026 4.01201 11.2591 4.03057C11.2157 4.04914 11.1765 4.07651 11.1442 4.11098C11.1107 4.14528 11.085 4.18649 11.0691 4.23172C11.0531 4.27696 11.0472 4.32514 11.0518 4.37289C11.2581 7.00431 12.5239 11.1055 15.1847 11.6016C15.3391 11.6307 15.4958 11.6462 15.6528 11.6478C15.8089 11.646 15.9645 11.6305 16.1179 11.6016C17.1835 11.3951 18.1505 10.5355 18.9142 9.1119C19.6678 7.63725 20.1152 6.02519 20.2293 4.37289C20.233 4.27699 20.2 4.18328 20.1369 4.11098C20.1037 4.07671 20.064 4.0495 20.0201 4.03097C19.9761 4.01244 19.9289 4.00297 19.8813 4.00313H19.8936Z" fill="url(#paint1_linear_4088_33978)"/>
|
|
5
|
+
<path d="M15.653 11.6756C15.4938 11.6746 15.3351 11.6592 15.1787 11.6294C12.5086 11.1333 11.2306 7.00746 11.0211 4.37296C11.0171 4.32167 11.0241 4.27011 11.0416 4.22175C11.0591 4.17338 11.0868 4.12934 11.1228 4.09256C11.1581 4.05537 11.2006 4.0258 11.2477 4.00566C11.2948 3.98553 11.3456 3.97525 11.3969 3.97547H19.8937C19.9454 3.97519 19.9967 3.98543 20.0443 4.00556C20.092 4.02568 20.135 4.05528 20.1709 4.09256C20.2049 4.13053 20.2311 4.17484 20.2481 4.22295C20.265 4.27106 20.2722 4.32203 20.2694 4.37296C20.1558 6.03024 19.7085 7.64743 18.9544 9.12738C18.1845 10.554 17.2113 11.4199 16.1365 11.6294H16.1088C15.9586 11.6587 15.806 11.6742 15.653 11.6756ZM11.3969 4.03094C11.3529 4.03016 11.3092 4.03884 11.2688 4.05638C11.2284 4.07392 11.1923 4.09992 11.1628 4.13262C11.1331 4.16409 11.1103 4.20149 11.0959 4.24237C11.0816 4.28326 11.0761 4.3267 11.0796 4.36987C11.286 6.99513 12.5517 11.0809 15.191 11.5739C15.3433 11.6035 15.4979 11.619 15.653 11.6201C15.8071 11.6191 15.9607 11.6037 16.1119 11.5739H16.1303C17.1805 11.3675 18.1414 10.5109 18.9021 9.10889C19.653 7.63686 20.0982 6.02794 20.2109 4.37912C20.215 4.29224 20.1851 4.20719 20.1278 4.14186C20.0983 4.10916 20.0621 4.08316 20.0218 4.06562C19.9814 4.04808 19.9377 4.03941 19.8937 4.04018L11.3969 4.03094Z" fill="black"/>
|
|
6
|
+
<path d="M26.1639 17.5854H21.7661V16.279C21.7661 15.8418 21.5925 15.4225 21.2835 15.1133C20.9745 14.8042 20.5555 14.6305 20.1185 14.6305H17.6732V12.7293L17.7594 12.677C18.6275 12.1604 19.361 11.4456 19.8998 10.5909C20.9592 9.00097 21.6398 6.84099 21.8246 4.50846C21.8445 4.24269 21.8097 3.97567 21.7223 3.72391C21.6349 3.47216 21.4968 3.24104 21.3165 3.04485C21.1343 2.84993 20.9139 2.69462 20.6692 2.5886C20.4244 2.48258 20.1604 2.42811 19.8937 2.42859H11.3968C11.1301 2.4283 10.8662 2.48284 10.6214 2.58885C10.3767 2.69486 10.1563 2.85008 9.97399 3.04485C9.79394 3.24108 9.65618 3.47229 9.56929 3.72409C9.4824 3.97588 9.44823 4.24288 9.46892 4.50846C9.65062 6.84099 10.3312 9.00097 11.3906 10.5909C11.9374 11.4445 12.6755 12.1588 13.5464 12.677L13.6327 12.7293V14.6459H4.2242C3.79784 14.6459 3.38896 14.8154 3.08747 15.117C2.78599 15.4186 2.61661 15.8277 2.61661 16.2543V21.6527L1.36009 29.7103C1.28618 30.1787 1.25231 30.8226 1.5572 31.1801C1.86209 31.5375 2.11463 31.5714 2.58274 31.5714H10.0972C10.3312 31.5732 10.5628 31.5236 10.7756 31.4262C10.9885 31.3288 11.1774 31.1859 11.329 31.0075C11.4794 30.8301 11.5902 30.6226 11.6539 30.3989C11.7177 30.1752 11.7329 29.9404 11.6986 29.7103L10.5099 22.1488H14.883L14.9046 23.8127C14.9058 23.972 14.9564 24.1271 15.0493 24.2564L17.1835 27.3377C17.3064 27.5005 17.4868 27.61 17.6879 27.6438C17.8889 27.6776 18.0952 27.6331 18.2645 27.5195C18.4375 27.3993 18.5559 27.2156 18.594 27.0083C18.6321 26.8011 18.5867 26.5872 18.4678 26.4133L16.469 23.5323L16.4506 22.1334H20.1123C20.5493 22.1334 20.9684 21.9597 21.2774 21.6506C21.5864 21.3414 21.7599 20.9221 21.7599 20.4849V19.1754H26.1577C26.3685 19.1754 26.5706 19.0916 26.7196 18.9425C26.8686 18.7935 26.9523 18.5913 26.9523 18.3804C26.9531 18.2755 26.9332 18.1715 26.8936 18.0743C26.854 17.9771 26.7956 17.8888 26.7218 17.8143C26.6479 17.7398 26.56 17.6807 26.4632 17.6404C26.3664 17.6 26.2626 17.5793 26.1577 17.5793L26.1639 17.5854ZM11.0519 4.37288C11.0473 4.32513 11.0532 4.27696 11.0692 4.23172C11.0851 4.18648 11.1108 4.14527 11.1443 4.11097C11.1766 4.07651 11.2158 4.04913 11.2592 4.03057C11.3027 4.01201 11.3495 4.00266 11.3968 4.00313H19.8937C19.9413 4.00296 19.9885 4.01244 20.0325 4.03097C20.0764 4.0495 20.1161 4.07671 20.1493 4.11097C20.2124 4.18327 20.2454 4.27698 20.2417 4.37288C20.1276 6.02518 19.6803 7.63725 18.9266 9.1119C18.1629 10.5355 17.1959 11.3951 16.1303 11.6016C15.9769 11.6305 15.8213 11.646 15.6652 11.6478C15.5082 11.6462 15.3515 11.6307 15.1971 11.6016C12.524 11.1055 11.2582 7.0043 11.0519 4.37288ZM16.0779 13.2193V14.6243H15.2125V13.2193H15.3973C15.5644 13.2316 15.7322 13.2316 15.8993 13.2193H16.0779ZM20.1708 20.5435H13.4633H8.76059C8.76059 21.283 8.76059 21.4093 8.76059 21.4309C8.75836 21.439 8.75836 21.4475 8.76059 21.4555L10.0972 29.9568H2.9061L4.17802 21.8068C4.17802 21.8068 4.17802 21.7883 4.17802 21.7822C4.17802 21.776 4.17802 21.3631 4.17802 19.5482V16.2112H8.74211H10.4205H20.1554V20.525L20.1708 20.5435Z" fill="#1D1D1D"/>
|
|
7
|
+
<path d="M29.3731 17.3544C29.8493 17.3544 30.2354 16.9682 30.2354 16.4917C30.2354 16.0152 29.8493 15.6289 29.3731 15.6289C28.8968 15.6289 28.5107 16.0152 28.5107 16.4917C28.5107 16.9682 28.8968 17.3544 29.3731 17.3544Z" fill="#1D1D1D"/>
|
|
8
|
+
<path d="M29.3731 20.8116C29.8493 20.8116 30.2354 20.4253 30.2354 19.9488C30.2354 19.4723 29.8493 19.0861 29.3731 19.0861C28.8968 19.0861 28.5107 19.4723 28.5107 19.9488C28.5107 20.4253 28.8968 20.8116 29.3731 20.8116Z" fill="#1D1D1D"/>
|
|
9
|
+
<path d="M32.8281 22.5402C33.3044 22.5402 33.6904 22.1539 33.6904 21.6774C33.6904 21.2009 33.3044 20.8146 32.8281 20.8146C32.3519 20.8146 31.9658 21.2009 31.9658 21.6774C31.9658 22.1539 32.3519 22.5402 32.8281 22.5402Z" fill="#1D1D1D"/>
|
|
10
|
+
<path d="M32.8281 19.083C33.3044 19.083 33.6904 18.6967 33.6904 18.2202C33.6904 17.7438 33.3044 17.3575 32.8281 17.3575C32.3519 17.3575 31.9658 17.7438 31.9658 18.2202C31.9658 18.6967 32.3519 19.083 32.8281 19.083Z" fill="#1D1D1D"/>
|
|
11
|
+
<path d="M32.8281 15.6259C33.3044 15.6259 33.6904 15.2396 33.6904 14.7631C33.6904 14.2866 33.3044 13.9003 32.8281 13.9003C32.3519 13.9003 31.9658 14.2866 31.9658 14.7631C31.9658 15.2396 32.3519 15.6259 32.8281 15.6259Z" fill="#1D1D1D"/>
|
|
12
|
+
<defs>
|
|
13
|
+
<linearGradient id="paint0_linear_4088_33978" x1="11.5447" y1="29.9661" x2="11.5447" y2="16.2204" gradientUnits="userSpaceOnUse">
|
|
14
|
+
<stop stop-color="#F37C1C"/>
|
|
15
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
16
|
+
</linearGradient>
|
|
17
|
+
<linearGradient id="paint1_linear_4088_33978" x1="15.6467" y1="11.6478" x2="15.6467" y2="4.00313" gradientUnits="userSpaceOnUse">
|
|
18
|
+
<stop stop-color="#EFC530"/>
|
|
19
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
20
|
+
</linearGradient>
|
|
21
|
+
</defs>
|
|
21
22
|
</svg>
|
|
@@ -1,20 +1,31 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M31.1424 23.0156H27.6499V26.0498H31.1424V23.0156Z" fill="white"/>
|
|
3
|
+
<path d="M31.1738 26.0818H27.6172V22.9835H31.1738V26.0818ZM27.6814 26.0177H31.1097V23.0477H27.6814V26.0177Z" fill="black"/>
|
|
4
|
+
<path d="M28.6717 26.0497H31.33C31.6181 26.0497 31.8943 26.1642 32.0981 26.3679C32.3018 26.5716 32.4162 26.8479 32.4162 27.136V31.0593C32.4162 31.3948 32.2829 31.7165 32.0457 31.9538C31.8085 32.191 31.4867 32.3243 31.1512 32.3243H28.0896C27.3335 32.3243 26.6084 32.0239 26.0738 31.4893C25.5391 30.9547 25.2388 30.2295 25.2388 29.4735C25.2412 28.5646 25.6039 27.6938 26.2475 27.052C26.891 26.4102 27.7628 26.0497 28.6717 26.0497Z" fill="white"/>
|
|
5
|
+
<path d="M31.1511 32.3701H28.0894C27.3252 32.3689 26.5926 32.0647 26.0523 31.5244C25.5119 30.984 25.2078 30.2514 25.2065 29.4872C25.2078 28.5682 25.5731 27.6871 26.2225 27.0368C26.8719 26.3865 27.7525 26.0201 28.6715 26.0176H31.3298C31.6264 26.0176 31.9109 26.1355 32.1206 26.3452C32.3303 26.5549 32.4481 26.8394 32.4481 27.136V31.073C32.4481 31.417 32.3115 31.7469 32.0682 31.9902C31.825 32.2334 31.4951 32.3701 31.1511 32.3701ZM28.6715 26.0818C27.7699 26.083 26.9056 26.4417 26.2681 27.0792C25.6306 27.7167 25.2719 28.581 25.2707 29.4826C25.2707 30.2306 25.5675 30.948 26.096 31.4774C26.6245 32.0067 27.3414 32.3047 28.0894 32.3059H31.1511C31.4777 32.3047 31.7906 32.1744 32.0215 31.9435C32.2525 31.7125 32.3828 31.3996 32.384 31.073V27.136C32.384 26.8564 32.2729 26.5882 32.0752 26.3906C31.8775 26.1929 31.6094 26.0818 31.3298 26.0818H28.6715Z" fill="black"/>
|
|
6
|
+
<path d="M6.15395 22.2181V32.4342H1.88232V26.476C1.88596 25.3454 2.33761 24.2625 3.13831 23.4643C3.939 22.6662 5.02342 22.2181 6.15395 22.2181Z" fill="white"/>
|
|
7
|
+
<path d="M6.19078 32.4525H1.85498V26.4943C1.85619 25.3532 2.31001 24.2593 3.11685 23.4524C3.92369 22.6456 5.01765 22.1918 6.15869 22.1906H6.19078V32.4525ZM1.91915 32.3884H6.12661V22.2501C5.00853 22.261 3.9398 22.7122 3.15217 23.5058C2.36454 24.2994 1.92151 25.3716 1.91915 26.4897V32.3884Z" fill="black"/>
|
|
8
|
+
<path d="M24.4502 32.4205H20.1786V22.2226C21.3115 22.2226 22.398 22.6727 23.1991 23.4738C24.0001 24.2749 24.4502 25.3614 24.4502 26.4943V32.4205Z" fill="white"/>
|
|
9
|
+
<path d="M24.4823 32.4525H20.1465V22.1906H20.1786C21.3196 22.1918 22.4136 22.6456 23.2204 23.4524C24.0273 24.2593 24.4811 25.3532 24.4823 26.4943V32.4525ZM20.2107 32.3884H24.4181V26.4897C24.4158 25.3716 23.9727 24.2994 23.1851 23.5058C22.3975 22.7122 21.3287 22.261 20.2107 22.2501V32.3884Z" fill="black"/>
|
|
10
|
+
<path d="M20.2751 6.1491C19.8078 4.72743 18.9035 3.48964 17.6912 2.61228C16.4789 1.73493 15.0204 1.26282 13.5239 1.26331C12.0282 1.26378 10.5708 1.73634 9.35942 2.61363C8.14801 3.49091 7.24439 4.72817 6.77734 6.1491H20.2751Z" fill="white"/>
|
|
11
|
+
<path d="M20.3166 6.19025H6.73633V6.14901C7.2 4.71538 8.10749 3.4663 9.32765 2.58228C10.5478 1.69826 12.0174 1.22509 13.5242 1.23114C15.029 1.22845 16.4959 1.70308 17.714 2.58676C18.932 3.47044 19.8384 4.71764 20.3029 6.14901L20.3166 6.19025ZM6.82341 6.12609H20.2295C19.7626 4.71759 18.863 3.49238 17.659 2.62499C16.4551 1.75759 15.0081 1.29227 13.5242 1.2953C12.0382 1.29483 10.5902 1.76393 9.38676 2.63562C8.18336 3.5073 7.2862 4.73697 6.82341 6.14901V6.12609Z" fill="black"/>
|
|
12
|
+
<path d="M5.73226 6.47455H20.9121V19.8578L15.953 22.924L15.4122 26.0498H11.2322L10.6914 22.7223L5.61768 19.2115L5.73226 6.47455Z" fill="url(#paint0_linear_4088_33994)"/>
|
|
13
|
+
<path d="M15.4169 26.0818H11.1865L10.6457 22.7405L5.56738 19.2297L5.67738 6.46069H20.9214V19.8897L15.976 22.9514L15.4169 26.0818ZM11.2415 26.0176H15.3665L15.9073 22.901L20.8618 19.8393V6.50653H5.73696L5.62697 19.1931L10.6961 22.7039L11.2415 26.0176Z" fill="black"/>
|
|
14
|
+
<path d="M7.75342 10.7599V16.2598H18.8496V10.7599H7.75342ZM17.1858 14.5915H9.39423V12.4236H17.1858V14.5915Z" fill="#1D1D1D"/>
|
|
15
|
+
<path d="M33.6904 27.498C33.6915 27.0088 33.5253 26.5338 33.2193 26.152C32.9134 25.7702 32.4861 25.5045 32.0084 25.3989H31.9075V21.9981H30.0238V13.5282L27.5122 11.0165L26.3388 12.1852L28.3647 14.2157V22.0072H26.4718V25.6739L26.3938 25.706C26.0654 25.8463 25.7572 26.0297 25.4772 26.2514L25.2847 26.4026V26.1551C25.2281 24.9219 24.7298 23.7502 23.8807 22.854C23.0317 21.9578 21.8885 21.397 20.6601 21.2739H20.3989L20.596 21.0814C21.2186 20.4775 21.7132 19.7543 22.0503 18.955C22.3873 18.1558 22.5598 17.2968 22.5576 16.4294V4.8199H20.4493L20.3989 4.77407C19.654 3.56167 18.6096 2.56138 17.3662 1.86945C16.1229 1.17752 14.7223 0.817242 13.2994 0.823274C11.8751 0.816551 10.473 1.17645 9.22801 1.86838C7.98303 2.5603 6.93706 3.56095 6.19069 4.77407L6.14945 4.82907H4.04113V16.4156C4.03891 17.283 4.21147 18.142 4.5485 18.9413C4.88554 19.7406 5.38013 20.4637 6.00278 21.0677L6.19986 21.2602L5.92944 21.2831C4.66033 21.4021 3.48163 21.9915 2.62503 22.9354C1.76843 23.8794 1.2959 25.1096 1.30032 26.3843V33.1905H25.2801V32.1684L25.4864 32.338C26.1779 32.8955 27.041 33.1966 27.9292 33.1905H31.5409C31.8226 33.1911 32.1016 33.1362 32.3621 33.0289C32.6225 32.9217 32.8593 32.7642 33.059 32.5655C33.2586 32.3667 33.4171 32.1306 33.5254 31.8706C33.6338 31.6106 33.6898 31.3318 33.6904 31.0501V27.498ZM5.59945 31.5313H2.98239V26.3843C2.98519 25.6404 3.22608 24.9169 3.66979 24.3198C4.1135 23.7227 4.73672 23.2833 5.4482 23.066L5.6132 23.0156L5.59945 31.5313ZM8.39068 4.5999C9.02027 3.92963 9.78082 3.39582 10.6252 3.03158C11.4696 2.66733 12.3798 2.48042 13.2994 2.48242C14.22 2.48218 15.1308 2.67125 15.9752 3.03789C16.8197 3.40452 17.5797 3.94088 18.2081 4.61365L18.4052 4.83365H8.19359L8.39068 4.5999ZM19.3402 31.5313H7.2586V22.9239H8.99109L9.82066 27.7134H16.7781L17.6077 22.9239H19.3402V31.5313ZM10.6732 22.9239H15.9302L15.3894 26.0497H11.2323L10.6732 22.9239ZM16.0448 21.2739H10.5448C9.26432 21.2642 8.03964 20.7484 7.13804 19.8391C6.23644 18.9298 5.73112 17.7007 5.73237 16.4202V6.47447H20.9122V16.4202C20.9128 17.0589 20.7872 17.6915 20.5427 18.2815C20.2981 18.8716 19.9394 19.4075 19.4871 19.8585C19.0348 20.3095 18.4979 20.6667 17.9071 20.9096C17.3164 21.1525 16.6835 21.2763 16.0448 21.2739ZM23.6301 31.5405H20.9993V23.0156L21.1643 23.066C21.8758 23.2833 22.499 23.7227 22.9427 24.3198C23.3864 24.9169 23.6273 25.6404 23.6301 26.3843V31.5313V31.5405ZM28.1263 23.6572H30.2484V25.3668H28.1263V23.6572ZM32.0313 31.0592C32.0344 31.1213 32.0248 31.1834 32.0032 31.2417C31.9816 31.3 31.9483 31.3532 31.9054 31.3982C31.8626 31.4433 31.811 31.4791 31.7538 31.5035C31.6967 31.528 31.6351 31.5406 31.573 31.5405H27.9567C27.357 31.5405 26.7818 31.3026 26.3574 30.879C25.9329 30.4553 25.6938 29.8806 25.6926 29.2809C25.6997 28.6827 25.9406 28.1109 26.3636 27.6878C26.7867 27.2648 27.3585 27.0239 27.9567 27.0168H31.573C31.6974 27.0227 31.8147 27.0766 31.9001 27.1672C31.9856 27.2578 32.0326 27.3781 32.0313 27.5026V31.0592Z" fill="#1D1D1D"/>
|
|
16
|
+
<path d="M23.8867 9.74241L25.06 8.57367L26.2104 9.71949L25.0371 10.8928L23.8867 9.74241Z" fill="#1D1D1D"/>
|
|
17
|
+
<path d="M23.6714 13.4823L24.8218 12.3319L25.9905 13.5052L24.8401 14.6556L23.6714 13.4823Z" fill="#1D1D1D"/>
|
|
18
|
+
<path d="M27.6499 9.50855L28.8003 8.36273L29.9736 9.53605L28.8186 10.6819L27.6499 9.50855Z" fill="#1D1D1D"/>
|
|
19
|
+
<path d="M7.25879 22.9239H8.99127L9.82085 27.7134H16.7783L17.6079 22.9239H19.3403V31.5313H7.25879V22.9239Z" fill="url(#paint1_linear_4088_33994)"/>
|
|
20
|
+
<path d="M19.3718 31.5634H7.22607V22.8918H9.01814L9.85689 27.6905H16.7318L17.5614 22.901H19.3535L19.3718 31.5634ZM7.29024 31.4992H19.3076V22.9514H17.6485L16.8189 27.7455H9.80647L8.97689 22.9514H7.30399L7.29024 31.4992Z" fill="black"/>
|
|
21
|
+
<defs>
|
|
22
|
+
<linearGradient id="paint0_linear_4088_33994" x1="13.2443" y1="26.0498" x2="13.2443" y2="6.47455" gradientUnits="userSpaceOnUse">
|
|
23
|
+
<stop stop-color="#F37C1C"/>
|
|
24
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
25
|
+
</linearGradient>
|
|
26
|
+
<linearGradient id="paint1_linear_4088_33994" x1="13.2996" y1="31.5313" x2="13.2996" y2="22.9239" gradientUnits="userSpaceOnUse">
|
|
27
|
+
<stop stop-color="#EFC530"/>
|
|
28
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
29
|
+
</linearGradient>
|
|
30
|
+
</defs>
|
|
20
31
|
</svg>
|
|
@@ -1,18 +1,17 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
<path d="M222.6 240.5C215.5 249.4 180 295 180 320c0 28.7 23.3 52 52 52s52-23.3 52-52c0-25-35.5-70.6-42.6-79.5-4.5-5.2-12.3-5.7-17.5-1.2-.5.3-.9.7-1.3 1.2zM232 348c-15.5 0-28-12.5-28-28 0-9.1 13.3-32 28-52.2 14.7 20.2 28 43.1 28 52.2 0 15.5-12.5 28-28 28z" class="st2"/>
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6.17504 10.9982H22.5726L25.8818 6.70276L28.9098 10.436V32.0463H5.60791L6.17504 10.9982Z" fill="url(#paint0_linear_4088_33976)"/>
|
|
3
|
+
<path d="M6.17529 10.1007L8.99124 5.03099L10.1156 1.72682L25.8968 1.53448V5.38607L22.7997 10.3818L6.17529 10.1007Z" fill="url(#paint1_linear_4088_33976)"/>
|
|
4
|
+
<path d="M27.0113 6.06666C27.0163 6.01252 27.0163 5.95806 27.0113 5.90392V3.93128C27.0088 3.11324 26.6837 2.32921 26.1066 1.74938C25.5296 1.16955 24.7471 0.840717 23.9291 0.834229H10.9737C10.1523 0.834229 9.3646 1.16052 8.78379 1.74133C8.20298 2.32214 7.87669 3.10989 7.87669 3.93128V5.2776C7.82118 5.3277 7.77153 5.38395 7.72873 5.44527L4.64648 10.2191C4.61557 10.2696 4.59232 10.3245 4.57744 10.3818V10.4311C4.56286 10.4811 4.55295 10.5322 4.54785 10.584V32.3719C4.54761 32.5889 4.63102 32.7976 4.78074 32.9546C4.93045 33.1117 5.13494 33.205 5.35169 33.2152H29.0234C29.2467 33.2139 29.4604 33.1246 29.6183 32.9667C29.7762 32.8089 29.8654 32.5951 29.8667 32.3719V10.6728C29.8652 10.5121 29.8191 10.3551 29.7336 10.2191L27.0113 6.06666ZM9.56823 3.93128C9.56953 3.55891 9.71802 3.20216 9.98132 2.93886C10.2446 2.67556 10.6014 2.52707 10.9737 2.52577H23.9291C24.3014 2.52707 24.6582 2.67556 24.9215 2.93886C25.1848 3.20216 25.3333 3.55891 25.3346 3.93128V5.05569H9.55343L9.56823 3.93128ZM8.90739 6.74722H24.3483L23.0956 8.68534L22.3362 9.84427H6.90022L8.90739 6.74722ZM6.17528 11.4914H21.9564V31.4792H6.17528V11.4914ZM28.1357 31.4792H23.6283V10.9095L24.1954 10.0465L25.882 7.43271L28.1357 10.9095V31.4792Z" fill="#1D1D1D"/>
|
|
5
|
+
<path d="M11.8169 21.3546C11.8169 21.8778 12.0247 22.3795 12.3947 22.7495C12.7646 23.1194 13.2664 23.3272 13.7895 23.3272C14.3127 23.3272 14.8145 23.1194 15.1844 22.7495C15.5544 22.3795 15.7622 21.8778 15.7622 21.3546C15.7622 20.7135 14.8252 19.1008 13.7895 17.6805C12.7539 19.1107 11.8169 20.7234 11.8169 21.3546Z" fill="white"/>
|
|
6
|
+
<path d="M13.1288 15.7671C12.6356 16.3934 10.1304 19.6039 10.1304 21.3644C10.1304 22.3349 10.5159 23.2657 11.2021 23.9519C11.8884 24.6382 12.8191 25.0237 13.7896 25.0237C14.7601 25.0237 15.6909 24.6382 16.3771 23.9519C17.0634 23.2657 17.4489 22.3349 17.4489 21.3644C17.4489 19.6039 14.9535 16.3934 14.4505 15.7671C14.3755 15.6807 14.2842 15.6099 14.1819 15.5589C14.0795 15.5079 13.968 15.4776 13.8539 15.4699C13.7398 15.4621 13.6253 15.4769 13.5169 15.5135C13.4085 15.5501 13.3085 15.6078 13.2225 15.6832C13.1857 15.7043 13.1538 15.7328 13.1288 15.7671ZM13.7896 23.3371C13.2665 23.3371 12.7647 23.1293 12.3948 22.7593C12.0248 22.3894 11.817 21.8876 11.817 21.3644C11.817 20.7233 12.754 19.1107 13.7896 17.6904C14.8253 19.1107 15.7623 20.7233 15.7623 21.3644C15.7597 21.8859 15.5507 22.3851 15.181 22.7529C14.8114 23.1208 14.3111 23.3272 13.7896 23.3272V23.3371Z" fill="#1D1D1D"/>
|
|
7
|
+
<defs>
|
|
8
|
+
<linearGradient id="paint0_linear_4088_33976" x1="17.2761" y1="32.066" x2="17.2761" y2="6.72248" gradientUnits="userSpaceOnUse">
|
|
9
|
+
<stop stop-color="#F37C1C"/>
|
|
10
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
11
|
+
</linearGradient>
|
|
12
|
+
<linearGradient id="paint1_linear_4088_33976" x1="16.0434" y1="10.3818" x2="16.0434" y2="1.53448" gradientUnits="userSpaceOnUse">
|
|
13
|
+
<stop stop-color="#EFC530"/>
|
|
14
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
15
|
+
</linearGradient>
|
|
16
|
+
</defs>
|
|
18
17
|
</svg>
|
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
<path fill="#1D1D1D" d="M480 448h-32V246.1l22.8-11.1c6.2-3 9.7-9.7 8.8-16.5-9.3-70.1-39.1-131.2-88.6-181.6-4.8-4.9-12.2-6.2-18.4-3.2l-57.5 28c-7.9 3.9-11.2 13.5-7.4 21.4l21.2 43.5L75 250.5c-23.8 11.6-33.7 40.3-22.1 64.2 2.8 5.7 6.6 10.6 11.1 14.7V400c0 8.8 7.2 16 16 16s16-7.2 16-16v-58.3c7.2 0 14.3-1.6 21-4.9l81.8-39.9L148.5 448H32v32h448v-32zM103 308c-3.8 1.9-8.2 2.1-12.2.8s-7.3-4.3-9.2-8.1c-3.9-8-.5-17.6 7.4-21.4l254-123.9 14 28.8c-17.8 8.6 25.4-12.4-254 123.8zm162.8 44l10.7 32h-72.9l10.7-32h51.5zm-40.9-32l14.3-42.8 1.5-.7 14.5 43.5h-30.3zm-42.7 128l10.7-32h94.3l10.7 32H182.2zm233.8 0h-84.5l-61.9-185.6L371 212.9l20.8 42.7c2.8 5.7 8.5 9 14.4 9 4.1 0 6.2-1.2 9.7-2.9L416 448zm-2.3-220.8l-20.8-42.7-28-57.5-21.3-43.5 32.6-15.9c37.3 41 60.8 89.2 70.1 143.8l-32.6 15.8z"/>
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.447 16.9974H15.6253L10.5649 31.6875H21.9861L17.447 16.9974Z" fill="white"/>
|
|
3
|
+
<path d="M23.8281 4.53394L25.3462 7.68146L27.3703 11.836L28.8884 14.9228L31.2465 13.7741C30.6032 9.89209 28.8451 6.28089 26.1862 3.38019L23.8281 4.53394Z" fill="url(#paint0_linear_4088_33974)"/>
|
|
4
|
+
<path d="M4.89756 20.2209C4.96402 20.357 5.05685 20.4785 5.17065 20.5784C5.28444 20.6783 5.41694 20.7545 5.56046 20.8028C5.70349 20.8529 5.85511 20.8737 6.00634 20.8642C6.15758 20.8546 6.30536 20.8148 6.44095 20.7472L24.8048 11.7904L23.7928 9.70557L5.42889 18.7028C5.1568 18.8414 4.95076 19.0822 4.85591 19.3725C4.76105 19.6627 4.78513 19.9787 4.92286 20.2513L4.89756 20.2209Z" fill="url(#paint1_linear_4088_33974)"/>
|
|
5
|
+
<path d="M33.6956 30.8779H31.383V16.2839L33.0327 15.4793C33.2498 15.3715 33.4276 15.1982 33.5411 14.984C33.6545 14.7697 33.698 14.5253 33.6652 14.2851C33.0437 9.32154 30.7922 4.70467 27.2639 1.15865C27.0943 0.985554 26.8747 0.869999 26.6359 0.828243C26.3972 0.786488 26.1514 0.820629 25.9331 0.925873L21.7735 2.95C21.4989 3.08614 21.289 3.32511 21.1896 3.61502C21.0901 3.90494 21.109 4.22239 21.2421 4.49845L22.7602 7.64092L4.40648 16.5977C3.58507 17.0058 2.95822 17.7219 2.6625 18.5901C2.36677 19.4584 2.42614 20.4083 2.82766 21.2329C3.02633 21.6334 3.2974 21.9937 3.6272 22.2956V27.4065C3.62853 27.7134 3.75104 28.0074 3.96807 28.2244C4.1851 28.4415 4.47908 28.564 4.786 28.5653C5.09246 28.564 5.38592 28.4413 5.60214 28.2241C5.81837 28.0069 5.93976 27.713 5.93975 27.4065V23.1913C6.46635 23.192 6.98595 23.0707 7.45785 22.837L13.3734 19.9527L9.73499 30.8779H1.30957V33.1904H33.6956V30.8779ZM6.44073 20.7572C6.16619 20.8917 5.84951 20.9117 5.56023 20.8129C5.41658 20.7649 5.28396 20.6887 5.17014 20.5887C5.05631 20.4888 4.96356 20.3672 4.89733 20.231C4.7596 19.9584 4.73553 19.6424 4.83038 19.3522C4.92523 19.0619 5.13127 18.8211 5.40336 18.6825L23.7672 9.72577L24.7793 11.8055L6.44073 20.7572ZM18.211 23.9351L18.9852 26.2528H13.7124L14.4866 23.9351H18.211ZM15.2558 21.6226L16.2679 18.5307L16.3741 18.4801L17.4267 21.6226H15.2558ZM12.169 30.8779L12.9432 28.5653H19.7595L20.5337 30.8779H12.169ZM29.0705 30.8779H22.9627L18.4843 17.4579L25.8167 13.8803L27.3348 16.9671C27.4293 17.1631 27.5773 17.3284 27.7617 17.444C27.9462 17.5595 28.1596 17.6204 28.3772 17.6198C28.625 17.6139 28.8664 17.5404 29.0755 17.4073L29.0705 30.8779ZM28.9035 14.9176L27.3854 11.8309L25.3612 7.67128L23.8431 4.52882L26.2013 3.38013C28.8626 6.27917 30.6211 9.89114 31.2616 13.774L28.9035 14.9176Z" fill="#1D1D1D"/>
|
|
6
|
+
<defs>
|
|
7
|
+
<linearGradient id="paint0_linear_4088_33974" x1="27.5424" y1="14.9076" x2="27.5424" y2="3.36501" gradientUnits="userSpaceOnUse">
|
|
8
|
+
<stop stop-color="#F37C1C"/>
|
|
9
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
<linearGradient id="paint1_linear_4088_33974" x1="14.7905" y1="20.8787" x2="14.7905" y2="9.71569" gradientUnits="userSpaceOnUse">
|
|
12
|
+
<stop stop-color="#EFC530"/>
|
|
13
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
14
|
+
</linearGradient>
|
|
15
|
+
</defs>
|
|
17
16
|
</svg>
|
|
@@ -1,13 +1,22 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M29.9866 5.276H25.9297V7.14796H29.9866V5.276Z" fill="white"/>
|
|
3
|
+
<path d="M30.0433 7.18217H25.9238V5.24194H30.0433V7.18217ZM25.9864 7.11389H29.9693V5.30452H25.9864V7.11389Z" fill="black"/>
|
|
4
|
+
<path d="M14.6011 13.0029H7.39209V14.7383H14.6011V13.0029Z" fill="white"/>
|
|
5
|
+
<path d="M14.6352 14.7667H7.35791V12.9858H14.6352V14.7667ZM7.42619 14.7041H14.5726V13.0313H7.42619V14.7041Z" fill="black"/>
|
|
6
|
+
<path d="M2.56689 31.9273V16.9971L4.49575 14.8065L7.34068 14.4196L7.8357 14.7496L13.6792 15.0284L14.2482 14.6131L18.5611 15.4495L18.305 16.9971L19.5909 17.5092V32.3825H2.60103L2.56689 31.9273Z" fill="url(#paint0_linear_4088_33972)"/>
|
|
7
|
+
<path d="M19.591 32.411H2.52148V16.9687L4.46172 14.7724L7.30664 14.3798L7.80735 14.7098L13.6281 14.9886L14.1971 14.5733L18.5555 15.4211L18.2938 16.9687L19.5797 17.4808L19.591 32.411ZM2.59545 32.3484H19.5285V17.5377L18.2369 17.0199L18.4929 15.4837L14.2255 14.6529L13.6565 15.0626L7.80167 14.7895L7.30664 14.4595L4.50155 14.8407L2.58407 17.0142L2.59545 32.3484Z" fill="black"/>
|
|
8
|
+
<path d="M23.0962 32.3826V8.56486L25.6111 7.14807H30.3735L32.3706 8.43398V32.6386L23.0962 32.3826Z" fill="url(#paint1_linear_4088_33972)"/>
|
|
9
|
+
<path d="M32.3987 32.6727H32.3646L23.0674 32.4109V8.54199L25.5994 7.11383H30.3902L32.3987 8.41112V32.6727ZM23.13 32.3483L32.3362 32.6044V8.43388L30.3618 7.16504H25.6164L23.13 8.56475V32.3483Z" fill="black"/>
|
|
10
|
+
<path d="M30.3733 6.72696V5.15656C30.3733 5.08883 30.3599 5.02177 30.3338 4.95927C30.3077 4.89676 30.2695 4.84006 30.2213 4.79243C30.1732 4.74481 30.1161 4.7072 30.0533 4.68181C29.9905 4.65641 29.9233 4.64372 29.8556 4.64447H28.3364V2.58475C28.3364 2.38151 28.2963 2.18027 28.2186 1.9925C28.1408 1.80473 28.0268 1.63411 27.8831 1.4904C27.7394 1.34669 27.5688 1.2327 27.381 1.15492C27.1932 1.07715 26.992 1.03711 26.7887 1.03711H19.0676C18.8644 1.03711 18.6631 1.07715 18.4753 1.15492C18.2876 1.2327 18.117 1.34669 17.9733 1.4904C17.8295 1.63411 17.7155 1.80473 17.6378 1.9925C17.56 2.18027 17.52 2.38151 17.52 2.58475V9.7938C17.52 9.92962 17.466 10.0599 17.37 10.1559C17.2739 10.2519 17.1437 10.3059 17.0079 10.3059H11.887C11.6838 10.3059 11.4825 10.3459 11.2948 10.4237C11.107 10.5015 10.9364 10.6155 10.7927 10.7592C10.649 10.9029 10.5349 11.0735 10.4572 11.2613C10.3794 11.449 10.3394 11.6503 10.3394 11.8535V12.3656H7.76756C7.49488 12.3671 7.2338 12.4761 7.04099 12.6689C6.84817 12.8617 6.73918 13.1228 6.73769 13.3955V14.4253H4.16019C3.88751 14.4268 3.62643 14.5358 3.43361 14.7286C3.2408 14.9214 3.13182 15.1825 3.13032 15.4552V16.4851C2.72085 16.4866 2.32866 16.6503 2.03965 16.9404C1.75064 17.2304 1.58838 17.6232 1.58838 18.0327V32.4451C1.58838 32.5809 1.64233 32.7112 1.73836 32.8072C1.8344 32.9032 1.96465 32.9572 2.10046 32.9572H32.4843C32.6201 32.9572 32.7503 32.9032 32.8464 32.8072C32.9424 32.7112 32.9964 32.5809 32.9964 32.4451V9.27033C32.9452 7.86493 31.9551 6.89766 30.3733 6.72696ZM31.9153 9.27602V11.3357H23.6764V9.7938C23.6779 9.24799 23.8954 8.72495 24.2813 8.33901C24.6673 7.95306 25.1903 7.73556 25.7361 7.73406H29.8556C30.4758 7.72837 31.9153 7.86493 31.9153 9.27033V9.27602ZM23.6764 17.5377H25.224V21.6571H23.6764V17.5377ZM26.2539 21.6571V17.5377H29.3435V21.6571H26.2539ZM23.6764 22.687H31.9153V26.8065H23.6764V22.687ZM30.3733 21.6571V17.5377H31.9153V21.6571H30.3733ZM23.6764 16.5078V12.3599H31.9153V16.4794L23.6764 16.5078ZM29.3662 6.72696H26.2766V5.6971H29.3662V6.72696ZM7.74479 13.4182H13.924V14.4481H7.74479V13.4182ZM4.13743 15.478H17.5257V16.5078H4.13743V15.478ZM3.10757 17.5377H18.5555C18.6235 17.5377 18.6908 17.5511 18.7537 17.5771C18.8165 17.6031 18.8736 17.6413 18.9216 17.6893C18.9697 17.7374 19.0079 17.7945 19.0339 17.8573C19.0599 17.9201 19.0733 17.9875 19.0733 18.0555V21.6571H2.57272V18.0555C2.57197 17.9882 2.58447 17.9215 2.60952 17.8591C2.63456 17.7966 2.67165 17.7398 2.71867 17.6917C2.7657 17.6436 2.82174 17.6053 2.88358 17.5788C2.94543 17.5524 3.01187 17.5384 3.07912 17.5377H3.10757ZM19.0733 22.687V26.8065H2.57272V22.6586L19.0733 22.687ZM2.57272 31.9558V27.8363H19.0733V31.9558H2.57272ZM22.6522 31.9558H20.0804V18.027C20.0804 17.8238 20.0404 17.6225 19.9626 17.4347C19.8848 17.247 19.7708 17.0764 19.6271 16.9327C19.4834 16.789 19.3128 16.675 19.125 16.5972C18.9372 16.5194 18.736 16.4794 18.5328 16.4794V15.4495C18.5313 15.1768 18.4223 14.9157 18.2295 14.7229C18.0367 14.5301 17.7756 14.4211 17.5029 14.4196H14.9311V13.3898C14.9296 13.1171 14.8206 12.856 14.6278 12.6632C14.435 12.4704 14.1739 12.3614 13.9012 12.3599H11.3237V11.8478C11.3237 11.7105 11.3783 11.5788 11.4754 11.4817C11.5725 11.3846 11.7042 11.3301 11.8415 11.3301H16.9624C17.3708 11.3286 17.7622 11.1656 18.051 10.8768C18.3399 10.5879 18.5028 10.1966 18.5043 9.78811V2.57905C18.5043 2.44173 18.5589 2.31004 18.656 2.21293C18.7531 2.11583 18.8848 2.06128 19.0221 2.06128H26.7432C26.8805 2.06128 27.0122 2.11583 27.1093 2.21293C27.2064 2.31004 27.261 2.44173 27.261 2.57905V4.63878H25.7133C25.5775 4.63878 25.4473 4.69273 25.3512 4.78877C25.2552 4.8848 25.2013 5.01507 25.2013 5.15088V6.72696C24.4817 6.84905 23.8284 7.22147 23.3568 7.77846C22.8852 8.33545 22.6255 9.0412 22.6238 9.77104L22.6522 31.9558ZM23.6821 31.9558V27.8363H31.921V31.9558H23.6821Z" fill="#1D1D1D"/>
|
|
11
|
+
<path d="M32.4331 33.1848H2.04925C1.95212 33.1848 1.85593 33.1656 1.76618 33.1285C1.67644 33.0913 1.59491 33.0368 1.52622 32.9681C1.45754 32.8994 1.40305 32.8179 1.36587 32.7281C1.3287 32.6384 1.30957 32.5422 1.30957 32.4451V18.027C1.31136 17.5963 1.46914 17.181 1.75369 16.8577C2.03824 16.5344 2.43027 16.3252 2.85721 16.2688V15.4495C2.85721 15.1175 2.98909 14.7991 3.22384 14.5644C3.4586 14.3296 3.77699 14.1977 4.10898 14.1977H6.45889V13.3898C6.46039 13.0573 6.59354 12.7389 6.82919 12.5043C7.06485 12.2697 7.38383 12.138 7.71634 12.138H10.0663V11.8478C10.0663 11.3785 10.2527 10.9284 10.5845 10.5966C10.9164 10.2647 11.3665 10.0783 11.8358 10.0783H16.9567C17.0336 10.0783 17.1074 10.0477 17.1619 9.99329C17.2163 9.93887 17.2468 9.86506 17.2468 9.7881V2.57905C17.2468 2.10973 17.4333 1.65965 17.7651 1.32779C18.097 0.995938 18.5471 0.809509 19.0164 0.809509H26.7375C27.2068 0.809509 27.6569 0.995938 27.9888 1.32779C28.3206 1.65965 28.5071 2.10973 28.5071 2.57905V4.41118H29.8271C30.0233 4.41118 30.2114 4.48911 30.3501 4.62783C30.4889 4.76655 30.5668 4.95469 30.5668 5.15087V6.52213C32.1656 6.77248 33.1443 7.80803 33.1443 9.27032V32.4451C33.1444 32.6364 33.0704 32.8204 32.9378 32.9583C32.8052 33.0962 32.6243 33.1774 32.4331 33.1848ZM3.07911 16.6842C2.72902 16.6842 2.39326 16.8233 2.1457 17.0708C1.89814 17.3184 1.75906 17.6541 1.75906 18.0042V32.4451C1.75906 32.5221 1.78964 32.5959 1.84406 32.6503C1.89848 32.7047 1.97229 32.7353 2.04925 32.7353H32.4331C32.51 32.7353 32.5838 32.7047 32.6383 32.6503C32.6927 32.5959 32.7232 32.5221 32.7232 32.4451V9.27032C32.7232 7.97872 31.8356 7.10818 30.3506 6.94887H30.1457V5.17362C30.1457 5.09666 30.1152 5.02285 30.0608 4.96843C30.0063 4.91401 29.9325 4.88345 29.8556 4.88345H28.086V2.6075C28.086 2.25741 27.9469 1.92164 27.6994 1.67408C27.4518 1.42653 27.1161 1.28745 26.766 1.28745H19.0448C18.6947 1.28745 18.359 1.42653 18.1114 1.67408C17.8639 1.92164 17.7248 2.25741 17.7248 2.6075V9.81654C17.7233 10.0123 17.6449 10.1995 17.5065 10.3379C17.3681 10.4763 17.1808 10.5547 16.9851 10.5562H11.8642C11.5142 10.5562 11.1784 10.6953 10.9308 10.9429C10.6833 11.1904 10.5442 11.5262 10.5442 11.8763V12.616H7.74479C7.53149 12.6159 7.32685 12.7003 7.17549 12.8506C7.02413 13.0009 6.93834 13.2049 6.93683 13.4182V14.6757H4.13743C3.92465 14.6757 3.72059 14.7602 3.57014 14.9106C3.41968 15.0611 3.33516 15.2652 3.33516 15.4779V16.7354L3.07911 16.6842ZM32.1429 32.1321H23.4545V27.5803H32.1429V32.1321ZM23.904 31.6826H31.6934V28.0127H23.904V31.6826ZM22.8741 32.1321H19.8471V18.027C19.8471 17.6769 19.708 17.3411 19.4605 17.0936C19.2129 16.846 18.8772 16.707 18.5271 16.707H18.3052V15.4495C18.3037 15.2362 18.2179 15.0322 18.0665 14.8819C17.9152 14.7316 17.7105 14.6472 17.4972 14.6472H14.6807V13.3898C14.6807 13.2844 14.66 13.1801 14.6197 13.0828C14.5793 12.9854 14.5202 12.897 14.4457 12.8225C14.3712 12.748 14.2828 12.6889 14.1855 12.6486C14.0881 12.6082 13.9838 12.5875 13.8785 12.5875H11.079V11.8478C11.079 11.6516 11.157 11.4635 11.2957 11.3248C11.4344 11.1861 11.6226 11.1081 11.8187 11.1081H16.9396C17.2897 11.1081 17.6255 10.9691 17.873 10.7215C18.1206 10.4739 18.2596 10.1382 18.2596 9.7881V2.57905C18.2596 2.38287 18.3376 2.19474 18.4763 2.05602C18.615 1.91731 18.8031 1.83937 18.9993 1.83937H26.7205C26.9166 1.83937 27.1048 1.91731 27.2435 2.05602C27.3822 2.19474 27.4601 2.38287 27.4601 2.57905V4.85499H25.6906C25.6136 4.85499 25.5398 4.88556 25.4854 4.93998C25.431 4.9944 25.4004 5.06821 25.4004 5.14517V6.9261L25.2126 6.96024C24.5405 7.07052 23.9302 7.4183 23.4928 7.94035C23.0553 8.46241 22.8196 9.1241 22.8286 9.80517L22.8741 32.1321ZM20.2966 31.6826H22.4246V9.7881C22.4216 9.03718 22.6748 8.30769 23.1424 7.72011C23.61 7.13252 24.264 6.72198 24.9964 6.55626V5.15087C24.9964 4.95469 25.0744 4.76655 25.2131 4.62783C25.3518 4.48911 25.5399 4.41118 25.7361 4.41118H27.0562V2.57905C27.0562 2.54094 27.0487 2.50321 27.0341 2.468C27.0195 2.4328 26.9981 2.4008 26.9712 2.37385C26.9442 2.34691 26.9122 2.32554 26.877 2.31096C26.8418 2.29638 26.8041 2.28887 26.766 2.28887H19.0448C18.9679 2.28887 18.8941 2.31943 18.8396 2.37385C18.7852 2.42827 18.7547 2.50208 18.7547 2.57905V9.7881C18.7532 10.2569 18.5662 10.7062 18.2347 11.0377C17.9032 11.3692 17.454 11.5561 16.9851 11.5576H11.8642C11.7873 11.5576 11.7135 11.5882 11.6591 11.6426C11.6046 11.697 11.5741 11.7709 11.5741 11.8478V12.138H13.924C14.2555 12.1395 14.573 12.2719 14.8075 12.5063C15.0419 12.7407 15.1742 13.0582 15.1757 13.3898V14.1977H17.5257C17.8582 14.1977 18.1771 14.3294 18.4128 14.564C18.6485 14.7986 18.7816 15.117 18.7831 15.4495V16.2688C19.2095 16.3254 19.6009 16.5348 19.8845 16.8581C20.1681 17.1815 20.3247 17.5969 20.3251 18.027L20.2966 31.6826ZM19.2667 32.1321H2.33943V27.5803H19.2667V32.1321ZM2.76617 31.6826H18.7945V28.0127H2.78894L2.76617 31.6826ZM32.1201 26.9828H23.4317V22.431H32.1201V26.9828ZM23.8812 26.5333H31.6934V22.8861H23.904L23.8812 26.5333ZM19.244 26.9828H2.31668V22.431H19.244V26.9828ZM2.74342 26.5333H18.7717V22.8861H2.78894L2.74342 26.5333ZM32.0974 21.8335H30.1002V17.2816H32.0974V21.8335ZM30.6123 21.4068H31.7105V17.7368H30.6123V21.4068ZM29.5825 21.8563H26.0434V17.3044H29.5825V21.8563ZM26.4929 21.4068H29.133V17.7368H26.4929V21.4068ZM25.463 21.8563H23.4715V17.3044H25.463V21.8563ZM23.921 21.4068H25.0135V17.7368H23.921V21.4068ZM19.2838 21.8563H2.3565V18.027C2.3565 17.9299 2.37563 17.8337 2.4128 17.7439C2.44998 17.6542 2.50447 17.5727 2.57315 17.504C2.64184 17.4353 2.72338 17.3808 2.81312 17.3436C2.90287 17.3065 2.99905 17.2873 3.09618 17.2873H18.5441C18.7403 17.2873 18.9284 17.3653 19.0672 17.504C19.2059 17.6427 19.2838 17.8308 19.2838 18.027V21.8563ZM2.78324 21.4068H18.8116V18.027C18.8116 17.95 18.781 17.8762 18.7266 17.8218C18.6721 17.7674 18.5983 17.7368 18.5214 17.7368H3.07343C2.99647 17.7368 2.92266 17.7674 2.86824 17.8218C2.81382 17.8762 2.78324 17.95 2.78324 18.027V21.4068ZM32.1372 16.707H23.4488V12.1551H32.1372V16.707ZM23.8983 16.2575H31.6934V12.5875H23.904L23.8983 16.2575ZM17.7191 16.707H3.87V15.2276H17.7077L17.7191 16.707ZM4.33088 16.2575H17.2696V15.6885H4.33088V16.2575ZM14.1117 14.6472H7.48306V13.1679H14.1117V14.6472ZM7.93256 14.1977H13.6622V13.6287H7.93256V14.1977ZM32.1372 11.5576H23.4488V9.7881C23.4488 9.18448 23.6886 8.60558 24.1154 8.17876C24.5422 7.75194 25.1211 7.51216 25.7247 7.51216H29.8442C31.278 7.51216 32.1201 8.17217 32.1201 9.28169L32.1372 11.5576ZM23.8983 11.1081H31.6934V9.27032C31.6934 8.78099 31.4544 7.95027 29.8556 7.95027H25.7361C25.2497 7.95177 24.7837 8.14607 24.4402 8.49057C24.0968 8.83506 23.904 9.30166 23.904 9.7881L23.8983 11.1081ZM29.5881 6.92041H26.0491V5.44104H29.5881V6.92041ZM26.4985 6.4709H29.1386V5.90192H26.4985V6.4709Z" fill="#1D1D1D"/>
|
|
12
|
+
<defs>
|
|
13
|
+
<linearGradient id="paint0_linear_4088_33972" x1="11.0618" y1="32.3825" x2="11.0618" y2="14.4196" gradientUnits="userSpaceOnUse">
|
|
14
|
+
<stop stop-color="#F37C1C"/>
|
|
15
|
+
<stop offset="1" stop-color="#FCC191"/>
|
|
16
|
+
</linearGradient>
|
|
17
|
+
<linearGradient id="paint1_linear_4088_33972" x1="27.7334" y1="32.6386" x2="27.7334" y2="7.14807" gradientUnits="userSpaceOnUse">
|
|
18
|
+
<stop stop-color="#EFC530"/>
|
|
19
|
+
<stop offset="1" stop-color="#FCEDB6"/>
|
|
20
|
+
</linearGradient>
|
|
21
|
+
</defs>
|
|
13
22
|
</svg>
|