@kando-env/kando-ui 1.2.278-alpha.29 → 1.2.278-alpha.30
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/components/Sector/Sector.test.js +91 -1
- package/lib/components/Sector/sectorIcons.js +36 -21
- package/lib/macros/getVersion.js +1 -1
- package/package.json +1 -1
- package/lib/components/Sector/svgs/Brewing.svg +0 -11
- package/lib/components/Sector/svgs/barrel.svg +0 -100
- package/lib/components/Sector/svgs/cow.svg +0 -28
- package/lib/components/Sector/svgs/cpu.svg +0 -21
- package/lib/components/Sector/svgs/glass.svg +0 -23
- package/lib/components/Sector/svgs/leather-factory.svg +0 -16
- package/lib/components/Sector/svgs/leather.svg +0 -16
- package/lib/components/Sector/svgs/lipstick.svg +0 -26
- package/lib/components/Sector/svgs/milk.svg +0 -17
- package/lib/components/Sector/svgs/pie.svg +0 -21
- package/lib/components/Sector/svgs/plant-unkown-3.svg +0 -37
- package/lib/components/Sector/svgs/repair.svg +0 -15
- package/lib/components/Sector/svgs/soda.svg +0 -11
- package/lib/components/Sector/svgs/spray-gun.svg +0 -22
- package/lib/components/Sector/svgs/washing-machine.svg +0 -27
- package/lib/components/Sector/svgs/waste.svg +0 -35
- package/lib/components/Sector/svgs/welder-a.svg +0 -31
- /package/lib/components/Sector/svgs/{food-donation.svg → bakery.svg} +0 -0
- /package/lib/components/Sector/svgs/{car-wash.svg → carwash.svg} +0 -0
- /package/lib/components/Sector/svgs/{Cowshed.svg → cowshed.svg} +0 -0
- /package/lib/components/Sector/svgs/{Garage.svg → garage.svg} +0 -0
- /package/lib/components/Sector/svgs/{metal-facbrication.svg → metal-fabrication.svg} +0 -0
- /package/lib/components/Sector/svgs/{car-repair.svg → motor-vehicle.svg} +0 -0
- /package/lib/components/Sector/svgs/{pills.svg → pharmaceutical.svg} +0 -0
- /package/lib/components/Sector/svgs/{plastic-rubber.svg → plastic-manufacturer.svg} +0 -0
- /package/lib/components/Sector/svgs/{recycling.svg → plastic-recycling-factory.svg} +0 -0
- /package/lib/components/Sector/svgs/{Pulp and Paper.svg → pulp-and-paper.svg} +0 -0
- /package/lib/components/Sector/svgs/{refinery.svg → refinement.svg} +0 -0
- /package/lib/components/Sector/svgs/{Seafood.svg → seafood.svg} +0 -0
- /package/lib/components/Sector/svgs/{shop.svg → shopping-malls-restaurants.svg} +0 -0
- /package/lib/components/Sector/svgs/{sewing-machine.svg → textile.svg} +0 -0
|
@@ -29,5 +29,95 @@ describe('Sector unit tests', function () {
|
|
|
29
29
|
var imgElement = screen.getByRole('img');
|
|
30
30
|
expect(imgElement.src).toContain('Missing');
|
|
31
31
|
});
|
|
32
|
+
test('all icons are rendered', function () {
|
|
33
|
+
var sectorIconNames = [{
|
|
34
|
+
name: 'metal-fabrication'
|
|
35
|
+
}, {
|
|
36
|
+
name: 'gas-station'
|
|
37
|
+
}, {
|
|
38
|
+
name: 'garbage-truck-1'
|
|
39
|
+
}, {
|
|
40
|
+
name: 'plastic-recycling-factory'
|
|
41
|
+
}, {
|
|
42
|
+
name: 'conductor-manufacturer'
|
|
43
|
+
}, {
|
|
44
|
+
name: 'meat'
|
|
45
|
+
}, {
|
|
46
|
+
name: 'shopping-malls-restaurants'
|
|
47
|
+
}, {
|
|
48
|
+
name: 'glass-manufacturer'
|
|
49
|
+
}, {
|
|
50
|
+
name: 'wine-glass'
|
|
51
|
+
}, {
|
|
52
|
+
name: 'dairy'
|
|
53
|
+
}, {
|
|
54
|
+
name: 'garage'
|
|
55
|
+
}, {
|
|
56
|
+
name: 'hospital'
|
|
57
|
+
}, {
|
|
58
|
+
name: 'laundromat'
|
|
59
|
+
}, {
|
|
60
|
+
name: 'pharmaceutical'
|
|
61
|
+
}, {
|
|
62
|
+
name: 'leather',
|
|
63
|
+
src: 'conductor-manufacturer'
|
|
64
|
+
}, {
|
|
65
|
+
name: 'cosmetic-manufacturer'
|
|
66
|
+
}, {
|
|
67
|
+
name: 'beer'
|
|
68
|
+
}, {
|
|
69
|
+
name: 'beverage'
|
|
70
|
+
}, {
|
|
71
|
+
name: 'food-factory'
|
|
72
|
+
}, {
|
|
73
|
+
name: 'meat'
|
|
74
|
+
}, {
|
|
75
|
+
name: 'chemistry'
|
|
76
|
+
}, {
|
|
77
|
+
name: 'metal-coating-plant'
|
|
78
|
+
}, {
|
|
79
|
+
name: 'carwash'
|
|
80
|
+
}, {
|
|
81
|
+
name: 'refinement'
|
|
82
|
+
}, {
|
|
83
|
+
name: 'plastic-manufacturer'
|
|
84
|
+
}, {
|
|
85
|
+
name: 'conductor-manufacturer'
|
|
86
|
+
}, {
|
|
87
|
+
name: 'Missing'
|
|
88
|
+
}, {
|
|
89
|
+
name: 'hotel'
|
|
90
|
+
}, {
|
|
91
|
+
name: 'cowshed'
|
|
92
|
+
}, {
|
|
93
|
+
name: 'printer'
|
|
94
|
+
}, {
|
|
95
|
+
name: 'harbor',
|
|
96
|
+
src: 'petrochemical'
|
|
97
|
+
}, {
|
|
98
|
+
name: 'paints',
|
|
99
|
+
src: 'petrochemical'
|
|
100
|
+
}, {
|
|
101
|
+
name: 'glass-manufacturer'
|
|
102
|
+
}, {
|
|
103
|
+
name: 'textile'
|
|
104
|
+
}, {
|
|
105
|
+
name: 'bakery'
|
|
106
|
+
}, {
|
|
107
|
+
name: 'seafood'
|
|
108
|
+
}, {
|
|
109
|
+
name: 'pulp-and-paper'
|
|
110
|
+
}, {
|
|
111
|
+
name: 'motor-vehicle'
|
|
112
|
+
}];
|
|
113
|
+
sectorIconNames.forEach(function (sector) {
|
|
114
|
+
render( /*#__PURE__*/_react.default.createElement(_Sector.default, {
|
|
115
|
+
sectorIconName: sector.name
|
|
116
|
+
}));
|
|
117
|
+
var imgElement = screen.getByRole('img');
|
|
118
|
+
expect(imgElement.src).toContain((sector === null || sector === void 0 ? void 0 : sector.src) || sector.name);
|
|
119
|
+
imgElement.remove();
|
|
120
|
+
});
|
|
121
|
+
});
|
|
32
122
|
});
|
|
33
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
123
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJfU2VjdG9yIiwiX2ludGVyb3BSZXF1aXJlRGVmYXVsdCIsInJlcXVpcmUiLCJfcmVhY3QiLCJfcmVxdWlyZSIsInNjcmVlbiIsInJlbmRlciIsImRlc2NyaWJlIiwidGVzdCIsImRlZmF1bHQiLCJjcmVhdGVFbGVtZW50Iiwic2VjdG9ySWNvbk5hbWUiLCJpbWdFbGVtZW50IiwiZ2V0QnlSb2xlIiwiZXhwZWN0Iiwic3JjIiwidG9Db250YWluIiwic2VjdG9ySWNvbk5hbWVzIiwibmFtZSIsImZvckVhY2giLCJzZWN0b3IiLCJyZW1vdmUiXSwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY29tcG9uZW50cy9TZWN0b3IvU2VjdG9yLnRlc3QuanN4Il0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBTZWN0b3IgZnJvbSAnLi9TZWN0b3InO1xuaW1wb3J0IFJlYWN0IGZyb20gJ3JlYWN0JztcbmltcG9ydCAnQHRlc3RpbmctbGlicmFyeS9qZXN0LWRvbS9leHRlbmQtZXhwZWN0JztcbmNvbnN0IHsgc2NyZWVuLCByZW5kZXIgfSA9IHJlcXVpcmUoJ0B0ZXN0aW5nLWxpYnJhcnkvcmVhY3QnKTtcblxuZGVzY3JpYmUoJ1NlY3RvciB1bml0IHRlc3RzJywgKCkgPT4ge1xuICB0ZXN0KFwiZXhpc3RpbmcgaWNvbiBpcyByZW5kZXJlZCBhbmQgaXQncyBzcmMgY29udGFpbnMgc2VjdG9ySWNvbk5hbWVcIiwgKCkgPT4ge1xuICAgIHJlbmRlcig8U2VjdG9yIHNlY3Rvckljb25OYW1lPXsnZm9vZC1mYWN0b3J5J30gLz4pO1xuICAgIGNvbnN0IGltZ0VsZW1lbnQgPSBzY3JlZW4uZ2V0QnlSb2xlKCdpbWcnKTtcbiAgICBleHBlY3QoaW1nRWxlbWVudC5zcmMpLnRvQ29udGFpbignZm9vZC1mYWN0b3J5Jyk7XG4gIH0pO1xuXG4gIHRlc3QoXCJleGlzdGluZyBpY29uIHdpdGggY2FtZWwtY2FzZWQgc2VjdG9ySWNvbk5hbWUgaXMgcmVuZGVyZWQgYW5kIGl0J3Mgc3JjIGlzIGRhc2hlcml6ZWRcIiwgKCkgPT4ge1xuICAgIHJlbmRlcig8U2VjdG9yIHNlY3Rvckljb25OYW1lPXsnZm9vZEZhY3RvcnknfSAvPik7XG4gICAgY29uc3QgaW1nRWxlbWVudCA9IHNjcmVlbi5nZXRCeVJvbGUoJ2ltZycpO1xuICAgIGV4cGVjdChpbWdFbGVtZW50LnNyYykudG9Db250YWluKCdmb29kLWZhY3RvcnknKTtcbiAgfSk7XG5cbiAgdGVzdChcIndoZW4gdGhlcmUncyBubyBpbXBvcnRlZCBpY29uIHRvIHJlbmRlciwgTWlzc2luZyBpY29uIHNob3VsZCBiZSByZW5kZXJlZFwiLCAoKSA9PiB7XG4gICAgcmVuZGVyKDxTZWN0b3Igc2VjdG9ySWNvbk5hbWU9eydvdGhlci1mYWN0b3J5J30gLz4pO1xuICAgIGNvbnN0IGltZ0VsZW1lbnQgPSBzY3JlZW4uZ2V0QnlSb2xlKCdpbWcnKTtcbiAgICBleHBlY3QoaW1nRWxlbWVudC5zcmMpLnRvQ29udGFpbignTWlzc2luZycpO1xuICB9KTtcblxuICB0ZXN0KCdhbGwgaWNvbnMgYXJlIHJlbmRlcmVkJywgKCkgPT4ge1xuICAgIGNvbnN0IHNlY3Rvckljb25OYW1lcyA9IFtcbiAgICAgIHsgbmFtZTogJ21ldGFsLWZhYnJpY2F0aW9uJyB9LFxuICAgICAgeyBuYW1lOiAnZ2FzLXN0YXRpb24nIH0sXG4gICAgICB7IG5hbWU6ICdnYXJiYWdlLXRydWNrLTEnIH0sXG4gICAgICB7IG5hbWU6ICdwbGFzdGljLXJlY3ljbGluZy1mYWN0b3J5JyB9LFxuICAgICAgeyBuYW1lOiAnY29uZHVjdG9yLW1hbnVmYWN0dXJlcicgfSxcbiAgICAgIHsgbmFtZTogJ21lYXQnIH0sXG4gICAgICB7IG5hbWU6ICdzaG9wcGluZy1tYWxscy1yZXN0YXVyYW50cycgfSxcbiAgICAgIHsgbmFtZTogJ2dsYXNzLW1hbnVmYWN0dXJlcicgfSxcbiAgICAgIHsgbmFtZTogJ3dpbmUtZ2xhc3MnIH0sXG4gICAgICB7IG5hbWU6ICdkYWlyeScgfSxcbiAgICAgIHsgbmFtZTogJ2dhcmFnZScgfSxcbiAgICAgIHsgbmFtZTogJ2hvc3BpdGFsJyB9LFxuICAgICAgeyBuYW1lOiAnbGF1bmRyb21hdCcgfSxcbiAgICAgIHsgbmFtZTogJ3BoYXJtYWNldXRpY2FsJyB9LFxuICAgICAgeyBuYW1lOiAnbGVhdGhlcicsIHNyYzogJ2NvbmR1Y3Rvci1tYW51ZmFjdHVyZXInIH0sXG4gICAgICB7IG5hbWU6ICdjb3NtZXRpYy1tYW51ZmFjdHVyZXInIH0sXG4gICAgICB7IG5hbWU6ICdiZWVyJyB9LFxuICAgICAgeyBuYW1lOiAnYmV2ZXJhZ2UnIH0sXG4gICAgICB7IG5hbWU6ICdmb29kLWZhY3RvcnknIH0sXG4gICAgICB7IG5hbWU6ICdtZWF0JyB9LFxuICAgICAgeyBuYW1lOiAnY2hlbWlzdHJ5JyB9LFxuICAgICAgeyBuYW1lOiAnbWV0YWwtY29hdGluZy1wbGFudCcgfSxcbiAgICAgIHsgbmFtZTogJ2Nhcndhc2gnIH0sXG4gICAgICB7IG5hbWU6ICdyZWZpbmVtZW50JyB9LFxuICAgICAgeyBuYW1lOiAncGxhc3RpYy1tYW51ZmFjdHVyZXInIH0sXG4gICAgICB7IG5hbWU6ICdjb25kdWN0b3ItbWFudWZhY3R1cmVyJyB9LFxuICAgICAgeyBuYW1lOiAnTWlzc2luZycgfSxcbiAgICAgIHsgbmFtZTogJ2hvdGVsJyB9LFxuICAgICAgeyBuYW1lOiAnY293c2hlZCcgfSxcbiAgICAgIHsgbmFtZTogJ3ByaW50ZXInIH0sXG4gICAgICB7IG5hbWU6ICdoYXJib3InLCBzcmM6ICdwZXRyb2NoZW1pY2FsJyB9LFxuICAgICAgeyBuYW1lOiAncGFpbnRzJywgc3JjOiAncGV0cm9jaGVtaWNhbCcgfSxcbiAgICAgIHsgbmFtZTogJ2dsYXNzLW1hbnVmYWN0dXJlcicgfSxcbiAgICAgIHsgbmFtZTogJ3RleHRpbGUnIH0sXG4gICAgICB7IG5hbWU6ICdiYWtlcnknIH0sXG4gICAgICB7IG5hbWU6ICdzZWFmb29kJyB9LFxuICAgICAgeyBuYW1lOiAncHVscC1hbmQtcGFwZXInIH0sXG4gICAgICB7IG5hbWU6ICdtb3Rvci12ZWhpY2xlJyB9LFxuICAgIF07XG4gICAgc2VjdG9ySWNvbk5hbWVzLmZvckVhY2goKHNlY3RvcikgPT4ge1xuICAgICAgcmVuZGVyKDxTZWN0b3Igc2VjdG9ySWNvbk5hbWU9e3NlY3Rvci5uYW1lfSAvPik7XG4gICAgICBjb25zdCBpbWdFbGVtZW50ID0gc2NyZWVuLmdldEJ5Um9sZSgnaW1nJyk7XG4gICAgICBleHBlY3QoaW1nRWxlbWVudC5zcmMpLnRvQ29udGFpbihzZWN0b3I/LnNyYyB8fCBzZWN0b3IubmFtZSk7XG4gICAgICBpbWdFbGVtZW50LnJlbW92ZSgpO1xuICAgIH0pO1xuICB9KTtcbn0pO1xuIl0sIm1hcHBpbmdzIjoiOzs7QUFBQSxJQUFBQSxPQUFBLEdBQUFDLHNCQUFBLENBQUFDLE9BQUE7QUFDQSxJQUFBQyxNQUFBLEdBQUFGLHNCQUFBLENBQUFDLE9BQUE7QUFDQUEsT0FBQTtBQUNBLElBQUFFLFFBQUEsR0FBMkJGLE9BQU8sQ0FBQyx3QkFBd0IsQ0FBQztFQUFwREcsTUFBTSxHQUFBRCxRQUFBLENBQU5DLE1BQU07RUFBRUMsTUFBTSxHQUFBRixRQUFBLENBQU5FLE1BQU07QUFFdEJDLFFBQVEsQ0FBQyxtQkFBbUIsRUFBRSxZQUFNO0VBQ2xDQyxJQUFJLENBQUMsZ0VBQWdFLEVBQUUsWUFBTTtJQUMzRUYsTUFBTSxlQUFDSCxNQUFBLENBQUFNLE9BQUEsQ0FBQUMsYUFBQSxDQUFDVixPQUFBLENBQUFTLE9BQU07TUFBQ0UsY0FBYyxFQUFFO0lBQWUsQ0FBRSxDQUFDLENBQUM7SUFDbEQsSUFBTUMsVUFBVSxHQUFHUCxNQUFNLENBQUNRLFNBQVMsQ0FBQyxLQUFLLENBQUM7SUFDMUNDLE1BQU0sQ0FBQ0YsVUFBVSxDQUFDRyxHQUFHLENBQUMsQ0FBQ0MsU0FBUyxDQUFDLGNBQWMsQ0FBQztFQUNsRCxDQUFDLENBQUM7RUFFRlIsSUFBSSxDQUFDLHNGQUFzRixFQUFFLFlBQU07SUFDakdGLE1BQU0sZUFBQ0gsTUFBQSxDQUFBTSxPQUFBLENBQUFDLGFBQUEsQ0FBQ1YsT0FBQSxDQUFBUyxPQUFNO01BQUNFLGNBQWMsRUFBRTtJQUFjLENBQUUsQ0FBQyxDQUFDO0lBQ2pELElBQU1DLFVBQVUsR0FBR1AsTUFBTSxDQUFDUSxTQUFTLENBQUMsS0FBSyxDQUFDO0lBQzFDQyxNQUFNLENBQUNGLFVBQVUsQ0FBQ0csR0FBRyxDQUFDLENBQUNDLFNBQVMsQ0FBQyxjQUFjLENBQUM7RUFDbEQsQ0FBQyxDQUFDO0VBRUZSLElBQUksQ0FBQywwRUFBMEUsRUFBRSxZQUFNO0lBQ3JGRixNQUFNLGVBQUNILE1BQUEsQ0FBQU0sT0FBQSxDQUFBQyxhQUFBLENBQUNWLE9BQUEsQ0FBQVMsT0FBTTtNQUFDRSxjQUFjLEVBQUU7SUFBZ0IsQ0FBRSxDQUFDLENBQUM7SUFDbkQsSUFBTUMsVUFBVSxHQUFHUCxNQUFNLENBQUNRLFNBQVMsQ0FBQyxLQUFLLENBQUM7SUFDMUNDLE1BQU0sQ0FBQ0YsVUFBVSxDQUFDRyxHQUFHLENBQUMsQ0FBQ0MsU0FBUyxDQUFDLFNBQVMsQ0FBQztFQUM3QyxDQUFDLENBQUM7RUFFRlIsSUFBSSxDQUFDLHdCQUF3QixFQUFFLFlBQU07SUFDbkMsSUFBTVMsZUFBZSxHQUFHLENBQ3RCO01BQUVDLElBQUksRUFBRTtJQUFvQixDQUFDLEVBQzdCO01BQUVBLElBQUksRUFBRTtJQUFjLENBQUMsRUFDdkI7TUFBRUEsSUFBSSxFQUFFO0lBQWtCLENBQUMsRUFDM0I7TUFBRUEsSUFBSSxFQUFFO0lBQTRCLENBQUMsRUFDckM7TUFBRUEsSUFBSSxFQUFFO0lBQXlCLENBQUMsRUFDbEM7TUFBRUEsSUFBSSxFQUFFO0lBQU8sQ0FBQyxFQUNoQjtNQUFFQSxJQUFJLEVBQUU7SUFBNkIsQ0FBQyxFQUN0QztNQUFFQSxJQUFJLEVBQUU7SUFBcUIsQ0FBQyxFQUM5QjtNQUFFQSxJQUFJLEVBQUU7SUFBYSxDQUFDLEVBQ3RCO01BQUVBLElBQUksRUFBRTtJQUFRLENBQUMsRUFDakI7TUFBRUEsSUFBSSxFQUFFO0lBQVMsQ0FBQyxFQUNsQjtNQUFFQSxJQUFJLEVBQUU7SUFBVyxDQUFDLEVBQ3BCO01BQUVBLElBQUksRUFBRTtJQUFhLENBQUMsRUFDdEI7TUFBRUEsSUFBSSxFQUFFO0lBQWlCLENBQUMsRUFDMUI7TUFBRUEsSUFBSSxFQUFFLFNBQVM7TUFBRUgsR0FBRyxFQUFFO0lBQXlCLENBQUMsRUFDbEQ7TUFBRUcsSUFBSSxFQUFFO0lBQXdCLENBQUMsRUFDakM7TUFBRUEsSUFBSSxFQUFFO0lBQU8sQ0FBQyxFQUNoQjtNQUFFQSxJQUFJLEVBQUU7SUFBVyxDQUFDLEVBQ3BCO01BQUVBLElBQUksRUFBRTtJQUFlLENBQUMsRUFDeEI7TUFBRUEsSUFBSSxFQUFFO0lBQU8sQ0FBQyxFQUNoQjtNQUFFQSxJQUFJLEVBQUU7SUFBWSxDQUFDLEVBQ3JCO01BQUVBLElBQUksRUFBRTtJQUFzQixDQUFDLEVBQy9CO01BQUVBLElBQUksRUFBRTtJQUFVLENBQUMsRUFDbkI7TUFBRUEsSUFBSSxFQUFFO0lBQWEsQ0FBQyxFQUN0QjtNQUFFQSxJQUFJLEVBQUU7SUFBdUIsQ0FBQyxFQUNoQztNQUFFQSxJQUFJLEVBQUU7SUFBeUIsQ0FBQyxFQUNsQztNQUFFQSxJQUFJLEVBQUU7SUFBVSxDQUFDLEVBQ25CO01BQUVBLElBQUksRUFBRTtJQUFRLENBQUMsRUFDakI7TUFBRUEsSUFBSSxFQUFFO0lBQVUsQ0FBQyxFQUNuQjtNQUFFQSxJQUFJLEVBQUU7SUFBVSxDQUFDLEVBQ25CO01BQUVBLElBQUksRUFBRSxRQUFRO01BQUVILEdBQUcsRUFBRTtJQUFnQixDQUFDLEVBQ3hDO01BQUVHLElBQUksRUFBRSxRQUFRO01BQUVILEdBQUcsRUFBRTtJQUFnQixDQUFDLEVBQ3hDO01BQUVHLElBQUksRUFBRTtJQUFxQixDQUFDLEVBQzlCO01BQUVBLElBQUksRUFBRTtJQUFVLENBQUMsRUFDbkI7TUFBRUEsSUFBSSxFQUFFO0lBQVMsQ0FBQyxFQUNsQjtNQUFFQSxJQUFJLEVBQUU7SUFBVSxDQUFDLEVBQ25CO01BQUVBLElBQUksRUFBRTtJQUFpQixDQUFDLEVBQzFCO01BQUVBLElBQUksRUFBRTtJQUFnQixDQUFDLENBQzFCO0lBQ0RELGVBQWUsQ0FBQ0UsT0FBTyxDQUFDLFVBQUNDLE1BQU0sRUFBSztNQUNsQ2QsTUFBTSxlQUFDSCxNQUFBLENBQUFNLE9BQUEsQ0FBQUMsYUFBQSxDQUFDVixPQUFBLENBQUFTLE9BQU07UUFBQ0UsY0FBYyxFQUFFUyxNQUFNLENBQUNGO01BQUssQ0FBRSxDQUFDLENBQUM7TUFDL0MsSUFBTU4sVUFBVSxHQUFHUCxNQUFNLENBQUNRLFNBQVMsQ0FBQyxLQUFLLENBQUM7TUFDMUNDLE1BQU0sQ0FBQ0YsVUFBVSxDQUFDRyxHQUFHLENBQUMsQ0FBQ0MsU0FBUyxDQUFDLENBQUFJLE1BQU0sYUFBTkEsTUFBTSx1QkFBTkEsTUFBTSxDQUFFTCxHQUFHLEtBQUlLLE1BQU0sQ0FBQ0YsSUFBSSxDQUFDO01BQzVETixVQUFVLENBQUNTLE1BQU0sQ0FBQyxDQUFDO0lBQ3JCLENBQUMsQ0FBQztFQUNKLENBQUMsQ0FBQztBQUNKLENBQUMsQ0FBQyJ9
|
|
@@ -6,32 +6,38 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
});
|
|
7
7
|
exports.default = void 0;
|
|
8
8
|
var _Missing = _interopRequireDefault(require("./svgs/Missing.svg"));
|
|
9
|
-
var
|
|
9
|
+
var _bakery = _interopRequireDefault(require("./svgs/bakery.svg"));
|
|
10
10
|
var _conductorManufacturer = _interopRequireDefault(require("./svgs/conductor-manufacturer.svg"));
|
|
11
11
|
var _dairy = _interopRequireDefault(require("./svgs/dairy.svg"));
|
|
12
12
|
var _cosmeticManufacturer = _interopRequireDefault(require("./svgs/cosmetic-manufacturer.svg"));
|
|
13
|
-
var
|
|
14
|
-
var
|
|
13
|
+
var _seafood = _interopRequireDefault(require("./svgs/seafood.svg"));
|
|
14
|
+
var _garage = _interopRequireDefault(require("./svgs/garage.svg"));
|
|
15
15
|
var _gasStation = _interopRequireDefault(require("./svgs/gas-station.svg"));
|
|
16
16
|
var _glassManufacturer = _interopRequireDefault(require("./svgs/glass-manufacturer.svg"));
|
|
17
17
|
var _hospital = _interopRequireDefault(require("./svgs/hospital.svg"));
|
|
18
18
|
var _hotel = _interopRequireDefault(require("./svgs/hotel.svg"));
|
|
19
19
|
var _laundromat = _interopRequireDefault(require("./svgs/laundromat.svg"));
|
|
20
|
-
var
|
|
21
|
-
var
|
|
22
|
-
var
|
|
23
|
-
var
|
|
20
|
+
var _pharmaceutical = _interopRequireDefault(require("./svgs/pharmaceutical.svg"));
|
|
21
|
+
var _plasticManufacturer = _interopRequireDefault(require("./svgs/plastic-manufacturer.svg"));
|
|
22
|
+
var _plasticRecyclingFactory = _interopRequireDefault(require("./svgs/plastic-recycling-factory.svg"));
|
|
23
|
+
var _shoppingMallsRestaurants = _interopRequireDefault(require("./svgs/shopping-malls-restaurants.svg"));
|
|
24
24
|
var _meat = _interopRequireDefault(require("./svgs/meat.svg"));
|
|
25
25
|
var _garbageTruck = _interopRequireDefault(require("./svgs/garbage-truck-1.svg"));
|
|
26
26
|
var _wineGlass = _interopRequireDefault(require("./svgs/wine-glass.svg"));
|
|
27
|
-
var
|
|
27
|
+
var _metalFabrication = _interopRequireDefault(require("./svgs/metal-fabrication.svg"));
|
|
28
28
|
var _beverage = _interopRequireDefault(require("./svgs/beverage.svg"));
|
|
29
29
|
var _beer = _interopRequireDefault(require("./svgs/beer.svg"));
|
|
30
30
|
var _chemistry = _interopRequireDefault(require("./svgs/chemistry.svg"));
|
|
31
31
|
var _metalCoatingPlant = _interopRequireDefault(require("./svgs/metal-coating-plant.svg"));
|
|
32
|
-
var
|
|
32
|
+
var _cowshed = _interopRequireDefault(require("./svgs/cowshed.svg"));
|
|
33
33
|
var _printer = _interopRequireDefault(require("./svgs/printer.svg"));
|
|
34
|
-
var
|
|
34
|
+
var _carwash = _interopRequireDefault(require("./svgs/carwash.svg"));
|
|
35
|
+
var _petrochemical = _interopRequireDefault(require("./svgs/petrochemical.svg"));
|
|
36
|
+
var _textile = _interopRequireDefault(require("./svgs/textile.svg"));
|
|
37
|
+
var _refinement = _interopRequireDefault(require("./svgs/refinement.svg"));
|
|
38
|
+
var _pulpAndPaper = _interopRequireDefault(require("./svgs/pulp-and-paper.svg"));
|
|
39
|
+
var _foodFactory = _interopRequireDefault(require("./svgs/food-factory.svg"));
|
|
40
|
+
var _motorVehicle = _interopRequireDefault(require("./svgs/motor-vehicle.svg"));
|
|
35
41
|
var iconsKeyValue = {
|
|
36
42
|
Missing: _Missing.default,
|
|
37
43
|
beer: _beer.default,
|
|
@@ -40,9 +46,9 @@ var iconsKeyValue = {
|
|
|
40
46
|
conductorManufacturer: _conductorManufacturer.default,
|
|
41
47
|
cosmeticManufacturer: _cosmeticManufacturer.default,
|
|
42
48
|
dairy: _dairy.default,
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
garage:
|
|
49
|
+
bakery: _bakery.default,
|
|
50
|
+
seafood: _seafood.default,
|
|
51
|
+
garage: _garage.default,
|
|
46
52
|
garbageTruck1: _garbageTruck.default,
|
|
47
53
|
gasStation: _gasStation.default,
|
|
48
54
|
glassManufacturer: _glassManufacturer.default,
|
|
@@ -51,16 +57,25 @@ var iconsKeyValue = {
|
|
|
51
57
|
laundromat: _laundromat.default,
|
|
52
58
|
meat: _meat.default,
|
|
53
59
|
metalCoatingPlant: _metalCoatingPlant.default,
|
|
54
|
-
pharmaceutical:
|
|
55
|
-
plasticRecyclingFactory:
|
|
56
|
-
shoppingMallsRestaurants:
|
|
57
|
-
plasticManufacturer:
|
|
58
|
-
metalFabrication:
|
|
60
|
+
pharmaceutical: _pharmaceutical.default,
|
|
61
|
+
plasticRecyclingFactory: _plasticRecyclingFactory.default,
|
|
62
|
+
shoppingMallsRestaurants: _shoppingMallsRestaurants.default,
|
|
63
|
+
plasticManufacturer: _plasticManufacturer.default,
|
|
64
|
+
metalFabrication: _metalFabrication.default,
|
|
59
65
|
wineGlass: _wineGlass.default,
|
|
60
|
-
cowshed:
|
|
66
|
+
cowshed: _cowshed.default,
|
|
61
67
|
printer: _printer.default,
|
|
62
|
-
carwash:
|
|
68
|
+
carwash: _carwash.default,
|
|
69
|
+
leather: _conductorManufacturer.default,
|
|
70
|
+
harbor: _petrochemical.default,
|
|
71
|
+
paints: _petrochemical.default,
|
|
72
|
+
buildingsConstruction: _glassManufacturer.default,
|
|
73
|
+
textile: _textile.default,
|
|
74
|
+
refinement: _refinement.default,
|
|
75
|
+
pulpAndPaper: _pulpAndPaper.default,
|
|
76
|
+
foodFactory: _foodFactory.default,
|
|
77
|
+
motorVehicle: _motorVehicle.default
|
|
63
78
|
};
|
|
64
79
|
var _default = iconsKeyValue;
|
|
65
80
|
exports.default = _default;
|
|
66
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
81
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJpY29uc0tleVZhbHVlIiwiTWlzc2luZyIsImJlZXIiLCJiZXZlcmFnZSIsImNoZW1pc3RyeSIsImNvbmR1Y3Rvck1hbnVmYWN0dXJlciIsImNvc21ldGljTWFudWZhY3R1cmVyIiwiZGFpcnkiLCJiYWtlcnkiLCJzZWFmb29kIiwiZ2FyYWdlIiwiZ2FyYmFnZVRydWNrMSIsImdhc1N0YXRpb24iLCJnbGFzc01hbnVmYWN0dXJlciIsImhvc3BpdGFsIiwiaG90ZWwiLCJsYXVuZHJvbWF0IiwibWVhdCIsIm1ldGFsQ29hdGluZ1BsYW50IiwicGhhcm1hY2V1dGljYWwiLCJwbGFzdGljUmVjeWNsaW5nRmFjdG9yeSIsInNob3BwaW5nTWFsbHNSZXN0YXVyYW50cyIsInBsYXN0aWNNYW51ZmFjdHVyZXIiLCJtZXRhbEZhYnJpY2F0aW9uIiwid2luZUdsYXNzIiwiY293c2hlZCIsInByaW50ZXIiLCJjYXJ3YXNoIiwibGVhdGhlciIsImhhcmJvciIsInBhaW50cyIsImJ1aWxkaW5nc0NvbnN0cnVjdGlvbiIsInRleHRpbGUiLCJyZWZpbmVtZW50IiwicHVscEFuZFBhcGVyIiwiZm9vZEZhY3RvcnkiLCJtb3RvclZlaGljbGUiLCJfZGVmYXVsdCIsImV4cG9ydHMiLCJkZWZhdWx0Il0sInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvU2VjdG9yL3NlY3Rvckljb25zLnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBNaXNzaW5nIGZyb20gJy4vc3Zncy9NaXNzaW5nLnN2Zyc7XG5pbXBvcnQgYmFrZXJ5IGZyb20gJy4vc3Zncy9iYWtlcnkuc3ZnJztcbmltcG9ydCBjb25kdWN0b3JNYW51ZmFjdHVyZXIgZnJvbSAnLi9zdmdzL2NvbmR1Y3Rvci1tYW51ZmFjdHVyZXIuc3ZnJztcbmltcG9ydCBkYWlyeSBmcm9tICcuL3N2Z3MvZGFpcnkuc3ZnJztcbmltcG9ydCBjb3NtZXRpY01hbnVmYWN0dXJlciBmcm9tICcuL3N2Z3MvY29zbWV0aWMtbWFudWZhY3R1cmVyLnN2Zyc7XG5pbXBvcnQgc2VhZm9vZCBmcm9tICcuL3N2Z3Mvc2VhZm9vZC5zdmcnO1xuaW1wb3J0IGdhcmFnZSBmcm9tICcuL3N2Z3MvZ2FyYWdlLnN2Zyc7XG5pbXBvcnQgZ2FzU3RhdGlvbiBmcm9tICcuL3N2Z3MvZ2FzLXN0YXRpb24uc3ZnJztcbmltcG9ydCBnbGFzc01hbnVmYWN0dXJlciBmcm9tICcuL3N2Z3MvZ2xhc3MtbWFudWZhY3R1cmVyLnN2Zyc7XG5pbXBvcnQgYnVpbGRpbmdzQ29uc3RydWN0aW9uIGZyb20gJy4vc3Zncy9nbGFzcy1tYW51ZmFjdHVyZXIuc3ZnJztcbmltcG9ydCBob3NwaXRhbCBmcm9tICcuL3N2Z3MvaG9zcGl0YWwuc3ZnJztcbmltcG9ydCBob3RlbCBmcm9tICcuL3N2Z3MvaG90ZWwuc3ZnJztcbmltcG9ydCBsYXVuZHJvbWF0IGZyb20gJy4vc3Zncy9sYXVuZHJvbWF0LnN2Zyc7XG5pbXBvcnQgcGhhcm1hY2V1dGljYWwgZnJvbSAnLi9zdmdzL3BoYXJtYWNldXRpY2FsLnN2Zyc7XG5pbXBvcnQgcGxhc3RpY01hbnVmYWN0dXJlciBmcm9tICcuL3N2Z3MvcGxhc3RpYy1tYW51ZmFjdHVyZXIuc3ZnJztcbmltcG9ydCBwbGFzdGljUmVjeWNsaW5nRmFjdG9yeSBmcm9tICcuL3N2Z3MvcGxhc3RpYy1yZWN5Y2xpbmctZmFjdG9yeS5zdmcnO1xuaW1wb3J0IHNob3BwaW5nTWFsbHNSZXN0YXVyYW50cyBmcm9tICcuL3N2Z3Mvc2hvcHBpbmctbWFsbHMtcmVzdGF1cmFudHMuc3ZnJztcbmltcG9ydCBtZWF0IGZyb20gJy4vc3Zncy9tZWF0LnN2Zyc7XG5pbXBvcnQgZ2FyYmFnZVRydWNrMSBmcm9tICcuL3N2Z3MvZ2FyYmFnZS10cnVjay0xLnN2Zyc7XG5pbXBvcnQgd2luZUdsYXNzIGZyb20gJy4vc3Zncy93aW5lLWdsYXNzLnN2Zyc7XG5pbXBvcnQgbWV0YWxGYWJyaWNhdGlvbiBmcm9tICcuL3N2Z3MvbWV0YWwtZmFicmljYXRpb24uc3ZnJztcbmltcG9ydCBiZXZlcmFnZSBmcm9tICcuL3N2Z3MvYmV2ZXJhZ2Uuc3ZnJztcbmltcG9ydCBiZWVyIGZyb20gJy4vc3Zncy9iZWVyLnN2Zyc7XG5pbXBvcnQgY2hlbWlzdHJ5IGZyb20gJy4vc3Zncy9jaGVtaXN0cnkuc3ZnJztcbmltcG9ydCBtZXRhbENvYXRpbmdQbGFudCBmcm9tICcuL3N2Z3MvbWV0YWwtY29hdGluZy1wbGFudC5zdmcnO1xuaW1wb3J0IGNvd3NoZWQgZnJvbSAnLi9zdmdzL2Nvd3NoZWQuc3ZnJztcbmltcG9ydCBwcmludGVyIGZyb20gJy4vc3Zncy9wcmludGVyLnN2Zyc7XG5pbXBvcnQgY2Fyd2FzaCBmcm9tICcuL3N2Z3MvY2Fyd2FzaC5zdmcnO1xuaW1wb3J0IGxlYXRoZXIgZnJvbSAnLi9zdmdzL2NvbmR1Y3Rvci1tYW51ZmFjdHVyZXIuc3ZnJztcbmltcG9ydCBoYXJib3IgZnJvbSAnLi9zdmdzL3BldHJvY2hlbWljYWwuc3ZnJztcbmltcG9ydCBwYWludHMgZnJvbSAnLi9zdmdzL3BldHJvY2hlbWljYWwuc3ZnJztcbmltcG9ydCB0ZXh0aWxlIGZyb20gJy4vc3Zncy90ZXh0aWxlLnN2Zyc7XG5pbXBvcnQgcmVmaW5lbWVudCBmcm9tICcuL3N2Z3MvcmVmaW5lbWVudC5zdmcnO1xuaW1wb3J0IHB1bHBBbmRQYXBlciBmcm9tICcuL3N2Z3MvcHVscC1hbmQtcGFwZXIuc3ZnJztcbmltcG9ydCBmb29kRmFjdG9yeSBmcm9tICcuL3N2Z3MvZm9vZC1mYWN0b3J5LnN2Zyc7XG5pbXBvcnQgbW90b3JWZWhpY2xlIGZyb20gJy4vc3Zncy9tb3Rvci12ZWhpY2xlLnN2Zyc7XG5cbmNvbnN0IGljb25zS2V5VmFsdWU6IHsgW2tleTogc3RyaW5nXTogc3RyaW5nIH0gPSB7XG4gIE1pc3NpbmcsXG4gIGJlZXIsXG4gIGJldmVyYWdlLFxuICBjaGVtaXN0cnksXG4gIGNvbmR1Y3Rvck1hbnVmYWN0dXJlcixcbiAgY29zbWV0aWNNYW51ZmFjdHVyZXIsXG4gIGRhaXJ5LFxuICBiYWtlcnksXG4gIHNlYWZvb2QsXG4gIGdhcmFnZSxcbiAgZ2FyYmFnZVRydWNrMSxcbiAgZ2FzU3RhdGlvbixcbiAgZ2xhc3NNYW51ZmFjdHVyZXIsXG4gIGhvc3BpdGFsLFxuICBob3RlbCxcbiAgbGF1bmRyb21hdCxcbiAgbWVhdCxcbiAgbWV0YWxDb2F0aW5nUGxhbnQsXG4gIHBoYXJtYWNldXRpY2FsLFxuICBwbGFzdGljUmVjeWNsaW5nRmFjdG9yeSxcbiAgc2hvcHBpbmdNYWxsc1Jlc3RhdXJhbnRzLFxuICBwbGFzdGljTWFudWZhY3R1cmVyLFxuICBtZXRhbEZhYnJpY2F0aW9uLFxuICB3aW5lR2xhc3MsXG4gIGNvd3NoZWQsXG4gIHByaW50ZXIsXG4gIGNhcndhc2gsXG4gIGxlYXRoZXIsXG4gIGhhcmJvcixcbiAgcGFpbnRzLFxuICBidWlsZGluZ3NDb25zdHJ1Y3Rpb24sXG4gIHRleHRpbGUsXG4gIHJlZmluZW1lbnQsXG4gIHB1bHBBbmRQYXBlcixcbiAgZm9vZEZhY3RvcnksXG4gIG1vdG9yVmVoaWNsZSxcbn07XG5cbmV4cG9ydCBkZWZhdWx0IGljb25zS2V5VmFsdWU7XG4iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFxQ0EsSUFBTUEsYUFBd0MsR0FBRztFQUMvQ0MsT0FBTyxFQUFQQSxnQkFBTztFQUNQQyxJQUFJLEVBQUpBLGFBQUk7RUFDSkMsUUFBUSxFQUFSQSxpQkFBUTtFQUNSQyxTQUFTLEVBQVRBLGtCQUFTO0VBQ1RDLHFCQUFxQixFQUFyQkEsOEJBQXFCO0VBQ3JCQyxvQkFBb0IsRUFBcEJBLDZCQUFvQjtFQUNwQkMsS0FBSyxFQUFMQSxjQUFLO0VBQ0xDLE1BQU0sRUFBTkEsZUFBTTtFQUNOQyxPQUFPLEVBQVBBLGdCQUFPO0VBQ1BDLE1BQU0sRUFBTkEsZUFBTTtFQUNOQyxhQUFhLEVBQWJBLHFCQUFhO0VBQ2JDLFVBQVUsRUFBVkEsbUJBQVU7RUFDVkMsaUJBQWlCLEVBQWpCQSwwQkFBaUI7RUFDakJDLFFBQVEsRUFBUkEsaUJBQVE7RUFDUkMsS0FBSyxFQUFMQSxjQUFLO0VBQ0xDLFVBQVUsRUFBVkEsbUJBQVU7RUFDVkMsSUFBSSxFQUFKQSxhQUFJO0VBQ0pDLGlCQUFpQixFQUFqQkEsMEJBQWlCO0VBQ2pCQyxjQUFjLEVBQWRBLHVCQUFjO0VBQ2RDLHVCQUF1QixFQUF2QkEsZ0NBQXVCO0VBQ3ZCQyx3QkFBd0IsRUFBeEJBLGlDQUF3QjtFQUN4QkMsbUJBQW1CLEVBQW5CQSw0QkFBbUI7RUFDbkJDLGdCQUFnQixFQUFoQkEseUJBQWdCO0VBQ2hCQyxTQUFTLEVBQVRBLGtCQUFTO0VBQ1RDLE9BQU8sRUFBUEEsZ0JBQU87RUFDUEMsT0FBTyxFQUFQQSxnQkFBTztFQUNQQyxPQUFPLEVBQVBBLGdCQUFPO0VBQ1BDLE9BQU8sRUFBUEEsOEJBQU87RUFDUEMsTUFBTSxFQUFOQSxzQkFBTTtFQUNOQyxNQUFNLEVBQU5BLHNCQUFNO0VBQ05DLHFCQUFxQixFQUFyQkEsMEJBQXFCO0VBQ3JCQyxPQUFPLEVBQVBBLGdCQUFPO0VBQ1BDLFVBQVUsRUFBVkEsbUJBQVU7RUFDVkMsWUFBWSxFQUFaQSxxQkFBWTtFQUNaQyxXQUFXLEVBQVhBLG9CQUFXO0VBQ1hDLFlBQVksRUFBWkE7QUFDRixDQUFDO0FBQUMsSUFBQUMsUUFBQSxHQUVhckMsYUFBYTtBQUFBc0MsT0FBQSxDQUFBQyxPQUFBLEdBQUFGLFFBQUEifQ==
|
package/lib/macros/getVersion.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var packageJsonVersion = "1.2.278-alpha.
|
|
3
|
+
var packageJsonVersion = "1.2.278-alpha.30";
|
|
4
4
|
if (typeof packageJsonVersion === 'string') {
|
|
5
5
|
// eslint-disable-next-line no-console
|
|
6
6
|
console.log("%c Kando UI %c v".concat(packageJsonVersion, " "), 'font-size: 15px; background-color: #fff; color: #e20f53;', 'font-weight: bold; font-size: 15px; background-color: #e20f53; color: #fff;', "with NODE_ENV=".concat(process.env.NODE_ENV));
|
package/package.json
CHANGED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
-
<g clip-path="url(#clip0_6415_4769)">
|
|
4
|
-
<path d="M11.8333 13H10.1667C10.1667 12.1499 10.4915 11.3319 11.0748 10.7133C11.658 10.0948 12.4555 9.72247 13.3042 9.67252C13.6381 9.17851 14.0847 8.77104 14.6072 8.4838C15.1297 8.19656 15.7131 8.03778 16.3091 8.0206C16.9051 8.00342 17.4966 8.12833 18.0348 8.385C18.573 8.64167 19.0424 9.02273 19.4042 9.49669C19.4568 9.56388 19.5258 9.6163 19.6047 9.64887C19.6836 9.68144 19.7695 9.69303 19.8542 9.68252C20.5364 9.62085 21.2214 9.76604 21.82 10.0992C22.3372 10.3844 22.7669 10.8052 23.0629 11.3163C23.3589 11.8274 23.51 12.4095 23.5 13H18.5C17.837 13 17.2011 13.2634 16.7322 13.7323C16.2634 14.2011 16 14.837 16 15.5V18.8334C16 19.0544 15.9122 19.2663 15.7559 19.4226C15.5997 19.5789 15.3877 19.6667 15.1667 19.6667C14.9457 19.6667 14.7337 19.5789 14.5774 19.4226C14.4211 19.2663 14.3333 19.0544 14.3333 18.8334V15.5C14.3333 14.837 14.07 14.2011 13.6011 13.7323C13.1323 13.2634 12.4964 13 11.8333 13ZM27.6667 19.25V21.75C27.6667 22.5236 27.3594 23.2654 26.8124 23.8124C26.2654 24.3594 25.5236 24.6667 24.75 24.6667H24.25C24.0566 25.6072 23.5449 26.4522 22.8011 27.0594C22.0572 27.6666 21.1268 27.9988 20.1667 28H13.5C12.3953 27.9987 11.3363 27.5593 10.5552 26.7782C9.77408 25.9971 9.33467 24.938 9.33334 23.8334V15.5C9.33334 15.279 9.42114 15.067 9.57742 14.9108C9.7337 14.7545 9.94566 14.6667 10.1667 14.6667H11.8333C12.0544 14.6667 12.2663 14.7545 12.4226 14.9108C12.5789 15.067 12.6667 15.279 12.6667 15.5V18.8334C12.6667 19.4964 12.9301 20.1323 13.3989 20.6011C13.8678 21.07 14.5036 21.3334 15.1667 21.3334C15.8297 21.3334 16.4656 21.07 16.9344 20.6011C17.4033 20.1323 17.6667 19.4964 17.6667 18.8334V15.5C17.6667 15.279 17.7545 15.067 17.9108 14.9108C18.067 14.7545 18.279 14.6667 18.5 14.6667H23.5C23.721 14.6667 23.933 14.7545 24.0893 14.9108C24.2455 15.067 24.3333 15.279 24.3333 15.5V16.3334H24.75C25.5236 16.3334 26.2654 16.6406 26.8124 17.1876C27.3594 17.7346 27.6667 18.4765 27.6667 19.25ZM26 19.25C26 18.9185 25.8683 18.6006 25.6339 18.3661C25.3995 18.1317 25.0815 18 24.75 18H24.3333V23H24.75C25.0815 23 25.3995 22.8683 25.6339 22.6339C25.8683 22.3995 26 22.0815 26 21.75V19.25Z" fill="#3B82F6"/>
|
|
5
|
-
</g>
|
|
6
|
-
<defs>
|
|
7
|
-
<clipPath id="clip0_6415_4769">
|
|
8
|
-
<rect width="20" height="20" fill="white" transform="translate(8.5 8)"/>
|
|
9
|
-
</clipPath>
|
|
10
|
-
</defs>
|
|
11
|
-
</svg>
|
|
@@ -1,100 +0,0 @@
|
|
|
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,28 +0,0 @@
|
|
|
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_33999)">
|
|
3
|
-
<path d="M32.2887 10.9053L27.8252 7.92683L27.6304 8.34271C27.5981 8.40741 27.5508 8.4634 27.4926 8.50596C27.4343 8.54853 27.3667 8.57645 27.2955 8.58736C27.239 8.59596 27.1813 8.59304 27.1259 8.57881C27.0706 8.56458 27.0186 8.53931 26.9732 8.50451C26.9277 8.4697 26.8897 8.42607 26.8614 8.37622C26.8331 8.32636 26.815 8.27129 26.8083 8.21428C26.7718 8.00634 26.8875 6.57519 24.4639 6.33055L24.056 6.28162L24.0255 6.69139C23.9573 7.22455 24.044 7.76614 24.2752 8.25098C24.5674 8.81365 24.6283 8.86258 25.3773 9.06441C25.487 9.09702 25.5794 9.17197 25.6342 9.27285C25.689 9.37374 25.7017 9.49231 25.6696 9.60261C25.6466 9.69368 25.5939 9.77441 25.52 9.83202C25.4461 9.88963 25.3552 9.92082 25.2616 9.92065H25.0181L24.878 10.1041C24.5368 10.5772 24.088 10.9617 23.569 11.2255C23.0501 11.4893 22.4759 11.6249 21.8943 11.6209H15.1352L15.2509 12.1224C15.3892 12.6827 15.3751 13.2701 15.2102 13.8231C15.0452 14.3761 14.7354 14.8744 14.3131 15.2661C13.702 15.8043 13.3132 16.5525 13.2231 17.3638C13.1656 18.0774 12.8467 18.7443 12.328 19.2353C11.5608 19.9693 9.81313 20.5075 8.15685 20.5075C7.58897 20.5141 7.02432 20.421 6.48839 20.2323C6.16142 20.1417 5.86817 19.9566 5.64513 19.7C5.42209 19.4434 5.27913 19.1265 5.234 18.7889C5.13844 18.2127 4.9245 17.6629 4.6058 17.1743C4.2871 16.6857 3.87061 16.2691 3.38285 15.951L2.77393 15.5413V28.9476C2.77393 29.0608 2.79613 29.173 2.83928 29.2776C2.88243 29.3822 2.94568 29.4773 3.02541 29.5574C3.10514 29.6374 3.19978 29.701 3.30395 29.7443C3.40812 29.7876 3.51976 29.81 3.63252 29.81H4.29017C4.40292 29.81 4.51457 29.7876 4.61873 29.7443C4.7229 29.701 4.81755 29.6374 4.89728 29.5574C4.977 29.4773 5.04024 29.3822 5.08338 29.2776C5.12653 29.173 5.14874 29.0608 5.14874 28.9476V24.6664C5.15096 24.5339 5.18611 24.4041 5.25098 24.2888C5.31585 24.1734 5.40839 24.0762 5.5202 24.0059C5.63424 23.935 5.76391 23.8935 5.89773 23.8849C6.03155 23.8764 6.16541 23.9011 6.28745 23.9569C6.34225 23.9569 12.6873 26.8681 19.4342 23.9569C19.5547 23.9079 19.6852 23.889 19.8146 23.9017C19.944 23.9145 20.0684 23.9586 20.1771 24.0303C20.2874 24.1012 20.3781 24.1989 20.4409 24.3144C20.5037 24.4298 20.5366 24.5593 20.5364 24.6908V28.9721C20.5364 29.2008 20.6268 29.4201 20.7878 29.5818C20.9488 29.7436 21.1672 29.8344 21.3949 29.8344H22.3022C22.5059 29.8355 22.7032 29.7633 22.8585 29.6309C23.0137 29.4986 23.1166 29.3147 23.1486 29.1127L24.5187 20.9111C24.79 19.2326 25.7006 17.7259 27.058 16.7094C27.1048 16.6696 27.1585 16.6385 27.2163 16.6177L32.1364 14.5321C32.3287 14.4519 32.4927 14.316 32.6077 14.1417C32.7227 13.9674 32.7833 13.7626 32.7819 13.5536V11.7921C32.7787 11.615 32.732 11.4413 32.646 11.2866C32.5599 11.1319 32.4372 11.0009 32.2887 10.9053ZM28.1601 11.6515C28.0164 11.6515 27.8785 11.5941 27.7769 11.4921C27.6753 11.39 27.6182 11.2515 27.6182 11.1072C27.6174 11.0352 27.6308 10.9637 27.6577 10.897C27.6846 10.8302 27.7243 10.7695 27.7748 10.7183C27.8252 10.6671 27.8852 10.6265 27.9513 10.5987C28.0175 10.571 28.0884 10.5567 28.1601 10.5567C28.3055 10.5567 28.4449 10.6147 28.5477 10.7179C28.6504 10.8212 28.7082 10.9612 28.7082 11.1072C28.7106 11.1807 28.6982 11.254 28.6717 11.3225C28.6452 11.3911 28.6052 11.4536 28.5539 11.5062C28.5027 11.5588 28.4414 11.6004 28.3737 11.6285C28.306 11.6566 28.2334 11.6707 28.1601 11.6698V11.6515ZM32.106 12.5383C32.0705 12.5587 32.031 12.5712 31.9903 12.575C31.9642 12.575 31.9383 12.5698 31.9143 12.5595C31.8902 12.5493 31.8685 12.5344 31.8503 12.5155C31.8321 12.4967 31.8179 12.4744 31.8085 12.4499C31.799 12.4255 31.7946 12.3994 31.7954 12.3732C31.7954 12.3213 31.816 12.2715 31.8525 12.2348C31.889 12.1981 31.9386 12.1775 31.9903 12.1775C32.0123 12.178 32.034 12.1832 32.0539 12.1927C32.0738 12.2022 32.0916 12.2157 32.106 12.2325L32.313 12.3854L32.106 12.5383Z" fill="url(#paint0_linear_4088_33999)"/>
|
|
4
|
-
<path d="M6.60416 18.5688V18.7706L6.78076 18.8746C7.20709 19.0728 7.67589 19.1611 8.14475 19.1315C8.40941 19.1331 8.67388 19.1168 8.93635 19.0826C9.81083 19.0305 10.6539 18.7363 11.3721 18.2324C11.6791 17.9402 11.8586 17.5379 11.8714 17.1132C11.999 16.0251 12.5163 15.0209 13.3267 14.2876C13.6089 14.0423 13.8127 13.7186 13.9123 13.3574C14.012 12.9961 14.0032 12.6133 13.8869 12.2571C13.8338 12.1014 13.7687 11.95 13.6921 11.8045L13.5703 11.5966H6.48847C5.76442 11.5975 5.05635 11.8103 4.45077 12.2089C3.84518 12.6076 3.36832 13.1747 3.07847 13.8411L2.91406 14.2264L3.30986 14.3793C4.16806 14.7373 4.92045 15.3105 5.49509 16.044C6.06974 16.7775 6.44742 17.6468 6.59199 18.5688H6.60416Z" fill="url(#paint1_linear_4088_33999)"/>
|
|
5
|
-
<path d="M4.44828 4.81385V4.95452L4.55181 5.0585C4.66197 5.17723 4.80345 5.26207 4.95978 5.30313C4.99808 5.30952 5.03717 5.30952 5.07547 5.30313C5.15884 5.30048 5.24076 5.28065 5.31618 5.24488C5.3916 5.20911 5.4589 5.15816 5.5139 5.09519L5.58089 5.02791C5.81169 4.76055 6.10154 4.5511 6.42729 4.41631L7.26152 4.11051L6.48819 3.67016C6.20933 3.51907 5.89774 3.43925 5.58089 3.43774C5.336 3.44083 5.09326 3.48422 4.86235 3.56618C4.70338 3.61649 4.56183 3.71096 4.45408 3.83867C4.34632 3.96638 4.27675 4.12212 4.25342 4.28787V4.44689L4.35085 4.57532C4.40187 4.64585 4.43529 4.72765 4.44828 4.81385Z" fill="url(#paint2_linear_4088_33999)"/>
|
|
6
|
-
<path d="M28.16 11.6882C28.4795 11.6882 28.7385 11.428 28.7385 11.1071C28.7385 10.7863 28.4795 10.5261 28.16 10.5261C27.8405 10.5261 27.5815 10.7863 27.5815 11.1071C27.5815 11.428 27.8405 11.6882 28.16 11.6882Z" fill="black"/>
|
|
7
|
-
<path d="M31.9902 12.6057C32.0345 12.6051 32.0782 12.5947 32.1181 12.5751L32.3616 12.3977L32.1302 12.2265C32.0946 12.1849 32.0445 12.1586 31.9902 12.1531C31.9309 12.153 31.8738 12.1758 31.8307 12.2168C31.7877 12.2577 31.7619 12.3138 31.7588 12.3733C31.7588 12.4038 31.7648 12.434 31.7764 12.4622C31.788 12.4904 31.8051 12.516 31.8266 12.5376C31.848 12.5592 31.8736 12.5763 31.9016 12.588C31.9297 12.5997 31.9598 12.6057 31.9902 12.6057Z" fill="black"/>
|
|
8
|
-
<path d="M21.389 31.4858C20.7192 31.4842 20.0774 31.2163 19.6038 30.7406C19.1303 30.265 18.8635 29.6203 18.8619 28.9477V25.9447L18.4478 26.0854C16.6756 26.6506 14.827 26.9374 12.9675 26.9355C11.0216 26.934 9.08653 26.6434 7.22528 26.0731L6.81731 25.9447V28.9477C6.81731 29.6208 6.55107 30.2664 6.07715 30.7424C5.60324 31.2184 4.96048 31.4858 4.29027 31.4858H3.63261C2.96184 31.4858 2.31845 31.2186 1.84357 30.7428C1.36869 30.267 1.10108 29.6214 1.09947 28.9477V15.3395C1.09432 14.6539 1.22472 13.9742 1.4831 13.3396L1.544 13.1867L1.45266 13.046C0.313965 11.358 0.326136 9.32136 1.4831 7.16241C1.97048 6.29592 2.55923 5.49105 3.23681 4.76493L3.32815 4.66095V4.52028C3.30201 4.11203 3.41246 3.70672 3.64194 3.36874C3.87142 3.03076 4.20678 2.7795 4.59473 2.65489C4.92216 2.5426 5.26564 2.48476 5.61163 2.48364C6.25173 2.52197 6.86742 2.74405 7.38554 3.12351C7.90367 3.50297 8.30243 4.02384 8.53448 4.62425C8.57206 4.71255 8.58457 4.80959 8.5706 4.90459C8.55663 4.99959 8.51673 5.08885 8.45533 5.16246C8.40671 5.22114 8.34633 5.26888 8.27814 5.3026C8.20995 5.33631 8.13546 5.35525 8.05951 5.35817C8.02526 5.36411 7.99026 5.36411 7.95601 5.35817C7.68915 5.3024 7.41836 5.26764 7.14612 5.2542C6.97398 5.25514 6.80447 5.29657 6.65114 5.37517C6.49782 5.45376 6.36495 5.56734 6.26319 5.70679L6.19619 5.78018C5.90175 6.08192 5.50234 6.2573 5.08186 6.26946C4.96924 6.26937 4.85696 6.25707 4.74696 6.23277C4.52551 6.1795 4.31792 6.07943 4.13803 5.9392L3.90664 5.76795L3.71787 6.00036C2.75577 7.1624 1.24563 9.42533 2.02505 11.5782L2.21382 12.0797L2.57308 11.6944C3.07407 11.1427 3.68457 10.7026 4.36523 10.4024C5.04589 10.1022 5.78162 9.94851 6.52502 9.95131H21.937C22.2072 9.95348 22.4751 9.90037 22.7243 9.79523C22.9734 9.69008 23.1986 9.5351 23.3862 9.33971L23.5811 9.13177L23.3984 8.91159C23.2536 8.74555 23.1289 8.56283 23.027 8.36726C22.5868 7.35637 22.4451 6.23968 22.619 5.15023C22.6536 5.05056 22.7175 4.96383 22.8024 4.90156C22.8872 4.83929 22.9889 4.80443 23.0939 4.80162H23.2218C24.3957 4.82869 25.5322 5.22198 26.4735 5.92697L26.5527 5.98813H27.6792C27.8516 5.98759 28.0205 6.03638 28.1663 6.1288L33.257 9.54154C33.6286 9.79155 33.9338 10.1289 34.146 10.5244C34.3583 10.9198 34.4711 11.3613 34.4748 11.8106V13.5047C34.4745 14.0431 34.3153 14.5693 34.0172 15.0167C33.7191 15.4641 33.2956 15.8127 32.8003 16.0184L28.0385 18.0489H27.9897H27.9532C27.0029 18.812 26.3674 19.9013 26.169 21.1069L24.7563 29.4064C24.6555 29.9839 24.3569 30.5078 23.9121 30.8876C23.4673 31.2673 22.9043 31.4789 22.3206 31.4858H21.389ZM19.7083 23.7919C19.8848 23.7893 20.0582 23.8382 20.2076 23.9325C20.3308 24.0089 20.4321 24.1162 20.5015 24.2438C20.5709 24.3714 20.606 24.515 20.6034 24.6603V28.9416C20.6018 29.1465 20.6809 29.3438 20.8235 29.4905C20.966 29.6371 21.1605 29.7212 21.3646 29.7244H22.2719C22.4562 29.724 22.6343 29.6581 22.7748 29.5383C22.9153 29.4185 23.0089 29.2526 23.0391 29.07L24.4153 20.8806C24.6942 19.1741 25.6166 17.6409 26.9911 16.5994C27.05 16.5578 27.1133 16.523 27.1799 16.4955L32.0939 14.4099C32.2735 14.3405 32.4279 14.218 32.5366 14.0585C32.6454 13.8991 32.7033 13.7102 32.7028 13.517V11.7922C32.7022 11.6308 32.6618 11.4721 32.5853 11.3302C32.5088 11.1883 32.3986 11.0676 32.2644 10.9788L27.8801 8.05534L27.7279 8.37949C27.6912 8.45987 27.6343 8.52924 27.5627 8.58073C27.4912 8.63222 27.4075 8.66405 27.3199 8.67306H27.2407C27.1144 8.67245 26.9927 8.62548 26.8985 8.54099C26.8043 8.45651 26.7441 8.34034 26.7292 8.21436C26.7333 8.18801 26.7333 8.1612 26.7292 8.13485C26.6623 7.13182 25.895 6.5508 24.4701 6.3979H24.1596V6.70982C24.0954 7.22839 24.1799 7.75457 24.4032 8.22659C24.6833 8.74645 24.7137 8.78315 25.4444 8.99109C25.5774 9.0286 25.6908 9.11624 25.761 9.23574C25.7948 9.29573 25.815 9.36242 25.8202 9.43111C25.8255 9.4998 25.8157 9.56881 25.7915 9.63327C25.7641 9.74151 25.701 9.83726 25.6126 9.90498C25.5242 9.97271 25.4155 10.0084 25.3044 10.0064H25.0912L24.9877 10.1593C24.6396 10.642 24.1817 11.0343 23.6521 11.3035C23.1225 11.5726 22.5366 11.7108 21.9431 11.7066H15.2875L15.3788 12.1042C15.5239 12.6795 15.5111 13.2836 15.3417 13.8522C15.1723 14.4208 14.8526 14.9327 14.4167 15.3334C13.8246 15.8579 13.4453 16.5828 13.3511 17.37C13.2943 18.1053 12.969 18.7936 12.4377 19.3027C11.6583 20.0489 9.87413 20.5932 8.20567 20.5932C7.63755 20.6104 7.07082 20.5276 6.53112 20.3485C6.19063 20.2512 5.88562 20.0566 5.6532 19.7885C5.42077 19.5203 5.27095 19.19 5.22192 18.8379C5.12989 18.2726 4.91946 17.7333 4.60456 17.2557C4.28966 16.7781 3.87744 16.3731 3.39514 16.0673L2.90799 15.7371V28.9844C2.90798 29.0853 2.92787 29.1852 2.96651 29.2784C3.00514 29.3715 3.06176 29.4561 3.13308 29.5271C3.20441 29.5982 3.28903 29.6544 3.38208 29.6924C3.47513 29.7305 3.57477 29.7497 3.67524 29.7489H4.33897C4.54198 29.7489 4.73686 29.6687 4.88154 29.5257C5.02622 29.3827 5.10911 29.1882 5.1123 28.9844V24.7032C5.1129 24.5561 5.15064 24.4117 5.222 24.2833C5.29336 24.1549 5.396 24.0469 5.52029 23.9692C5.66142 23.8765 5.82662 23.8276 5.99526 23.8286C6.12341 23.8271 6.25027 23.8543 6.36669 23.9081C8.46268 24.7346 10.6976 25.1478 12.9492 25.1252C15.1529 25.1314 17.3347 24.686 19.3612 23.8163C19.4751 23.7901 19.5914 23.7757 19.7083 23.7735V23.7919ZM6.84775 18.8073C7.26305 18.9917 7.71568 19.0755 8.16913 19.052C8.42154 19.0567 8.67393 19.0424 8.9242 19.0091C9.77951 18.9555 10.6044 18.6702 11.3112 18.1835C11.6042 17.9038 11.775 17.519 11.7862 17.1132C11.9155 16.0032 12.4439 14.9789 13.272 14.2325C13.5384 13.9974 13.731 13.6895 13.8262 13.3463C13.9213 13.0031 13.9149 12.6395 13.8078 12.2999C13.7575 12.1479 13.6943 12.0006 13.619 11.8595L13.5277 11.6944H6.48849C5.78196 11.6968 5.09128 11.9049 4.50011 12.2935C3.90893 12.6821 3.44262 13.2346 3.15765 13.8839L3.02978 14.1897L3.34642 14.3059C4.22105 14.6728 4.98722 15.2592 5.57151 16.0088C6.1558 16.7585 6.53864 17.6463 6.68335 18.5871V18.7339L6.81122 18.8318L6.84775 18.8073ZM4.6617 5.00345C4.76451 5.10783 4.89247 5.18368 5.03314 5.22363C5.06534 5.22961 5.09837 5.22961 5.13057 5.22363C5.203 5.21934 5.27382 5.20033 5.33872 5.16774C5.40362 5.13515 5.46125 5.08965 5.50812 5.03402L5.58119 4.96675C5.82013 4.68186 6.12264 4.45765 6.46412 4.31234L7.12178 4.07992L6.51285 3.73132C6.24994 3.58582 5.95443 3.51004 5.65426 3.51114C5.41732 3.51444 5.18263 3.55785 4.96007 3.63957C4.81724 3.6868 4.69033 3.77303 4.59354 3.88861C4.49675 4.00419 4.4339 4.14456 4.41204 4.29399V4.4102L4.47903 4.51417C4.5423 4.59223 4.57861 4.68881 4.58254 4.78939V4.89947L4.6617 5.00345Z" fill="black"/>
|
|
9
|
-
<path d="M5.60515 2.54479C6.23578 2.58337 6.8422 2.8026 7.35264 3.17655C7.86308 3.55049 8.25618 4.06348 8.48539 4.65482C8.51304 4.73427 8.52084 4.81932 8.5081 4.9025C8.49536 4.98568 8.46247 5.06445 8.41232 5.13187C8.36966 5.18327 8.31671 5.22508 8.25691 5.25458C8.19711 5.28408 8.1318 5.30062 8.06523 5.30312C8.03507 5.30905 8.00405 5.30905 7.97389 5.30312C7.70343 5.24438 7.42835 5.20959 7.15183 5.19915C6.972 5.20272 6.7952 5.24625 6.63411 5.32662C6.47303 5.40698 6.33166 5.52219 6.22018 5.66396L6.1532 5.73736C6.01389 5.88452 5.84689 6.00246 5.66189 6.08434C5.47688 6.16623 5.27753 6.21044 5.07539 6.21441C4.96481 6.21365 4.85463 6.20136 4.74658 6.17771C4.52773 6.12658 4.3209 6.0331 4.13765 5.90249L3.86363 5.68843L3.6444 5.95754C2.67012 7.1257 1.15999 9.39474 1.93941 11.5965L2.15864 12.1775L2.5727 11.7249C3.07101 11.1785 3.67686 10.742 4.3519 10.443C5.02693 10.144 5.75644 9.98905 6.4942 9.98799H21.9062C22.182 9.99125 22.4556 9.9388 22.7109 9.83373C22.9661 9.72866 23.1977 9.57313 23.3919 9.37639L23.6233 9.13175L23.4041 8.87487C23.2675 8.70964 23.1471 8.53144 23.0449 8.34278C22.6046 7.34919 22.4628 6.24809 22.6369 5.17469C22.6646 5.08512 22.7193 5.0064 22.7935 4.94942C22.8677 4.89245 22.9576 4.86003 23.0509 4.85665H23.1788C24.3407 4.88263 25.4652 5.27409 26.394 5.97588L26.4853 6.04316H27.6362C27.7951 6.04445 27.9508 6.08881 28.0868 6.17159L33.1774 9.58433C33.542 9.82865 33.8406 10.1598 34.0468 10.5483C34.2529 10.9367 34.3601 11.3704 34.3587 11.8106V13.5597C34.3567 14.0836 34.2008 14.5952 33.9105 15.0304C33.6202 15.4656 33.2084 15.805 32.7268 16.0062L27.9589 18.0306H27.9102L27.8675 18.0673C26.9035 18.8251 26.2528 19.9143 26.0408 21.1253L24.7072 29.4064C24.6152 29.9864 24.3184 30.5137 23.8712 30.8922C23.424 31.2706 22.8562 31.4748 22.2715 31.4675H21.3642C20.7182 31.4675 20.0987 31.2097 19.6419 30.7509C19.1851 30.2921 18.9285 29.6699 18.9285 29.0211V25.9325L18.4292 26.0976C16.6566 26.6603 14.8078 26.943 12.9488 26.9355C11.008 26.9315 9.07793 26.6452 7.21883 26.0854L6.73167 25.9325V29.0211C6.73167 29.6699 6.47506 30.2921 6.01827 30.7509C5.56149 31.2097 4.94195 31.4675 4.29596 31.4675H3.63833C2.99234 31.4675 2.3728 31.2097 1.91602 30.7509C1.45923 30.2921 1.20262 29.6699 1.20262 29.0211V15.3395C1.1994 14.6612 1.32548 13.9886 1.57405 13.3579L1.64105 13.1744L1.53752 13.0093C0.404914 11.3213 0.411002 9.30299 1.57405 7.17462C2.0522 6.30902 2.63736 5.50759 3.3156 4.78937L3.4191 4.67317V4.50803C3.38722 4.10922 3.49006 3.71126 3.71102 3.37837C3.93199 3.04547 4.25818 2.79706 4.63696 2.67323C4.96305 2.57345 5.30095 2.51792 5.64169 2.5081M5.13629 5.24808C5.29528 5.2378 5.44393 5.16534 5.55035 5.04625L5.62342 4.97897C5.85382 4.70104 6.14578 4.48112 6.47593 4.33678L7.25536 4.05545L6.48811 3.71907C6.21297 3.56969 5.90573 3.48991 5.59298 3.48666C5.35179 3.48681 5.11256 3.53031 4.88662 3.6151C4.73484 3.66519 4.60013 3.75712 4.49785 3.8804C4.39557 4.00367 4.32984 4.15334 4.30815 4.31232V4.46523L4.3873 4.58143C4.4454 4.65254 4.47952 4.74035 4.48473 4.83219V4.96062L4.57606 5.05848C4.68532 5.1696 4.82187 5.24978 4.97188 5.29089C5.0095 5.30306 5.04996 5.30306 5.08758 5.29089M25.2309 9.94518H24.9934L24.8655 10.1164C24.521 10.5914 24.0694 10.9776 23.5475 11.2434C23.0257 11.5092 22.4486 11.647 21.8635 11.6454H15.1653L15.2689 12.1103C15.4097 12.6753 15.3958 13.268 15.2285 13.8258C15.0613 14.3835 14.747 14.8854 14.3189 15.2783C13.7148 15.8103 13.3304 16.5498 13.2411 17.3517C13.1744 18.0688 12.8522 18.7377 12.3338 19.2354C11.5544 19.9816 9.79458 20.5198 8.13829 20.5198C7.57837 20.5333 7.02027 20.4506 6.48811 20.2751C6.15468 20.1854 5.85549 19.9977 5.62879 19.7363C5.40209 19.4748 5.25818 19.1513 5.21545 18.8073C5.12041 18.2327 4.90589 17.6846 4.58589 17.1988C4.26589 16.713 3.84758 16.3004 3.35821 15.9878L2.77974 15.6025V28.9477C2.77973 29.1672 2.86614 29.3779 3.02013 29.5337C3.17412 29.6895 3.38321 29.7778 3.60179 29.7794H4.26552C4.48524 29.7779 4.6956 29.6899 4.85154 29.5344C5.00747 29.379 5.09657 29.1683 5.09975 28.9477V24.6664C5.0992 24.5286 5.13356 24.3928 5.1996 24.2719C5.26564 24.151 5.36119 24.0489 5.47728 23.9753C5.61571 23.8931 5.77318 23.8489 5.93398 23.8469C6.0551 23.8448 6.1747 23.8743 6.28107 23.9325C8.41063 24.7906 10.6848 25.2287 12.9793 25.223C15.1898 25.2263 17.3778 24.7768 19.4096 23.9019C19.5023 23.8565 19.6049 23.8355 19.7079 23.8408C19.8726 23.8411 20.0335 23.89 20.1707 23.9815C20.2844 24.0556 20.3779 24.1571 20.4428 24.2767C20.5076 24.3963 20.5418 24.5303 20.5422 24.6664V28.9477C20.5421 29.1678 20.6284 29.3791 20.7822 29.5359C20.936 29.6926 21.1451 29.7823 21.3642 29.7856H22.2715C22.4694 29.7893 22.6619 29.7206 22.8132 29.5923C22.9644 29.464 23.064 29.2849 23.0936 29.0883L24.4636 20.8867C24.7406 19.2006 25.6545 17.6868 27.0151 16.6606C27.071 16.6229 27.1301 16.5901 27.1917 16.5627L32.1118 14.4772C32.2948 14.395 32.4499 14.2609 32.558 14.0914C32.6662 13.9219 32.7228 13.7244 32.7207 13.5231V11.7922C32.7175 11.6219 32.6738 11.4547 32.5933 11.3047C32.5128 11.1547 32.3978 11.0262 32.2579 10.9299L27.8006 8.00029L27.6179 8.3856C27.5828 8.45409 27.5318 8.51313 27.4693 8.55782C27.4068 8.6025 27.3346 8.63153 27.2586 8.64247H27.1917C27.0805 8.64179 26.9734 8.60042 26.8905 8.52611C26.8075 8.4518 26.7544 8.34965 26.741 8.23881C26.7462 8.2105 26.7462 8.18149 26.741 8.15319C26.6741 7.11958 25.8946 6.51409 24.4332 6.37342L24.0618 6.32449L24.0252 6.69757C23.967 7.22717 24.0555 7.76264 24.281 8.24492C24.5611 8.79536 24.622 8.85653 25.3588 9.05224C25.4773 9.08583 25.5779 9.16492 25.6389 9.27242C25.6688 9.32479 25.6874 9.38283 25.6937 9.44286C25.7 9.50288 25.6938 9.56356 25.6754 9.62103C25.651 9.71747 25.5952 9.80296 25.5169 9.8639C25.4385 9.92485 25.3422 9.95776 25.2431 9.95741M8.1931 19.1314C8.45781 19.135 8.72243 19.1186 8.98471 19.0825C9.85769 19.0325 10.7002 18.7427 11.4204 18.2446C11.5707 18.1018 11.6912 17.9304 11.7748 17.7403C11.8584 17.5503 11.9036 17.3454 11.9076 17.1376C12.0321 16.0411 12.5572 15.0299 13.3812 14.2998C13.6565 14.0576 13.8546 13.7394 13.951 13.3848C14.0474 13.0303 14.0377 12.655 13.9231 12.306C13.8707 12.1499 13.8056 11.9986 13.7283 11.8534L13.6247 11.6516H6.48811C5.76973 11.6534 5.06735 11.8647 4.46631 12.26C3.86528 12.6552 3.39147 13.2172 3.10247 13.8778L2.95024 14.2386L3.32167 14.3793C4.18494 14.7401 4.94196 15.3167 5.52071 16.0542C6.09946 16.7918 6.4807 17.6659 6.62817 18.5932V18.7828L6.78647 18.8746C7.206 19.0738 7.66919 19.1622 8.13222 19.1314M5.56862 2.45305C5.21807 2.45329 4.8701 2.51327 4.53953 2.63042C4.14039 2.75974 3.79529 3.01847 3.55835 3.36604C3.32141 3.7136 3.20604 4.13033 3.23034 4.55085V4.66706L3.15727 4.74656C2.47183 5.46754 1.88049 6.27317 1.39748 7.14405C0.222248 9.31523 0.179623 11.3763 1.39748 13.101L1.46445 13.205L1.42182 13.3335C1.16337 13.9766 1.03303 14.6644 1.03819 15.3579V28.9844C1.03819 29.3241 1.10482 29.6605 1.23426 29.9744C1.36371 30.2883 1.55345 30.5735 1.79263 30.8137C2.03181 31.0539 2.31576 31.2445 2.62827 31.3745C2.94077 31.5045 3.27571 31.5714 3.61397 31.5714H4.2716C4.60985 31.5714 4.94481 31.5045 5.25732 31.3745C5.56982 31.2445 5.85378 31.0539 6.09296 30.8137C6.33214 30.5735 6.52186 30.2883 6.6513 29.9744C6.78075 29.6605 6.84737 29.3241 6.84737 28.9844V26.0609L7.18229 26.1649C9.05207 26.7343 10.995 27.0249 12.9488 27.0272C14.8084 27.0307 16.6573 26.7439 18.4292 26.1771L18.7763 26.0609V28.9844C18.7779 29.67 19.0498 30.3271 19.5325 30.8119C20.0152 31.2967 20.6694 31.5698 21.352 31.5714H22.3202C22.9287 31.5727 23.5179 31.3569 23.9829 30.9627C24.4479 30.5685 24.7585 30.0213 24.8595 29.4186L26.2174 21.2048C26.4187 20.018 27.0445 18.9458 27.9772 18.1896H28.0137H28.0502L32.8121 16.1652C33.3262 15.9424 33.7618 15.5697 34.0626 15.0954C34.3633 14.621 34.5153 14.0668 34.4988 13.5047V11.7555C34.502 11.2982 34.3925 10.8472 34.18 10.4427C33.9675 10.0383 33.6586 9.69296 33.2809 9.43755L28.1903 6.02481C28.0372 5.92231 27.8567 5.86899 27.6727 5.87191H26.5584L26.4853 5.8291C25.5381 5.1153 24.393 4.71556 23.2093 4.6854H23.0814C22.9648 4.68616 22.8515 4.72379 22.7575 4.79297C22.6635 4.86214 22.5936 4.95934 22.5577 5.07071C22.3701 6.17451 22.5142 7.30943 22.9718 8.33055C23.0791 8.53145 23.2077 8.72011 23.3554 8.89323L23.5198 9.06448L23.3554 9.24184C23.1757 9.4341 22.9587 9.58751 22.7179 9.69267C22.4771 9.79783 22.2175 9.85254 21.9549 9.85344H6.48811C5.73512 9.85336 4.99038 10.0111 4.30152 10.3165C3.61265 10.6219 2.9948 11.0682 2.48745 11.6271L2.19517 11.939L2.04902 11.5292C1.28177 9.40086 2.76756 7.16239 3.72966 6.02481L3.8758 5.83522L4.07676 5.97588C4.27302 6.11779 4.494 6.22151 4.7283 6.28168C4.84271 6.30497 4.95876 6.31927 5.07539 6.32449C5.29246 6.31983 5.50646 6.27203 5.70504 6.18385C5.90361 6.09568 6.08283 5.96887 6.23235 5.81075L6.30543 5.74347C6.64035 5.40709 6.81083 5.30312 7.15183 5.30312C7.42031 5.31359 7.68729 5.34839 7.94953 5.40709C7.9878 5.41383 8.02695 5.41383 8.06523 5.40709C8.14904 5.40366 8.23125 5.38288 8.30669 5.34605C8.38214 5.30921 8.4492 5.25712 8.50366 5.19303C8.57769 5.11184 8.62638 5.01062 8.6437 4.9019C8.66101 4.79319 8.6462 4.68177 8.60109 4.58143C8.26009 3.8047 7.25535 2.42859 5.60515 2.42859L5.56862 2.45305ZM4.35076 4.43464V4.33067C4.36857 4.19197 4.42482 4.06109 4.5131 3.95296C4.60139 3.84482 4.71816 3.76377 4.85009 3.71907C5.06555 3.64386 5.29182 3.6046 5.51991 3.60286C5.81407 3.60354 6.10323 3.6793 6.36024 3.82304L6.85347 4.09826L6.3237 4.30009C5.97427 4.44645 5.6636 4.67261 5.41639 4.96062L5.34941 5.03401C5.30682 5.08143 5.2553 5.11991 5.19781 5.1472C5.14033 5.1745 5.07801 5.19007 5.01449 5.19303H4.94142C4.82883 5.13402 4.73259 5.04786 4.66132 4.94227L4.59435 4.875V4.77103C4.57757 4.65825 4.53821 4.55006 4.47865 4.45299L4.35076 4.43464ZM25.1822 10.0797C25.3065 10.0813 25.4279 10.0413 25.5271 9.96604C25.6263 9.89075 25.6978 9.78443 25.7302 9.66384C25.751 9.59181 25.7574 9.51636 25.749 9.44184C25.7407 9.36731 25.7177 9.29518 25.6815 9.2296C25.645 9.16269 25.5954 9.10385 25.5358 9.05656C25.4762 9.00928 25.4077 8.97453 25.3344 8.95438C24.6159 8.74032 24.5794 8.72197 24.3236 8.20823C24.1069 7.74723 24.0226 7.23466 24.08 6.72815V6.47128L24.3358 6.50797C25.7302 6.64864 26.4731 7.21744 26.5401 8.18377C26.5333 8.21397 26.5333 8.24531 26.5401 8.27551C26.5578 8.41388 26.6251 8.54106 26.7292 8.63333C26.8334 8.72561 26.9675 8.77668 27.1064 8.77702C27.1324 8.7835 27.1596 8.7835 27.1856 8.77702C27.2798 8.76175 27.3691 8.72446 27.4463 8.66815C27.5235 8.61185 27.5865 8.53811 27.6301 8.45287L27.7579 8.18377L32.0813 11.0705C32.2058 11.1568 32.3079 11.2718 32.3789 11.4059C32.4499 11.54 32.4878 11.6893 32.4893 11.8411V13.5903C32.4902 13.7703 32.4372 13.9463 32.3373 14.0957C32.2374 14.2451 32.0952 14.3609 31.9291 14.4282L27.0272 16.5016C26.9567 16.5338 26.8894 16.5727 26.8263 16.6178C25.4449 17.656 24.5157 19.1896 24.2323 20.899L22.8622 29.0944C22.8385 29.2652 22.7538 29.4214 22.6238 29.534C22.4938 29.6465 22.3274 29.7077 22.1558 29.706H21.2485C21.1549 29.7052 21.0625 29.6859 20.9763 29.6492C20.8902 29.6125 20.8121 29.5592 20.7465 29.4921C20.6809 29.4251 20.6291 29.3458 20.5941 29.2587C20.559 29.1715 20.5413 29.0783 20.5422 28.9844V24.7031C20.5459 24.5474 20.5084 24.3934 20.4335 24.2569C20.3586 24.1205 20.249 24.0064 20.1159 23.9264C19.9593 23.8267 19.7777 23.7737 19.5922 23.7735C19.4732 23.7727 19.3553 23.7956 19.2452 23.8408C17.2654 24.686 15.1366 25.1228 12.9854 25.1251C10.7072 25.1311 8.44935 24.695 6.33587 23.8408C6.21336 23.7859 6.08029 23.7587 5.94615 23.7613C5.76623 23.7616 5.58965 23.8102 5.43465 23.9019C5.30159 23.986 5.19171 24.1023 5.1151 24.2402C5.03849 24.378 4.99761 24.533 4.99623 24.6909V28.9721C4.99544 29.0666 4.97602 29.16 4.9391 29.2469C4.90218 29.3338 4.84848 29.4126 4.78111 29.4785C4.71374 29.5445 4.63404 29.5964 4.54659 29.6312C4.45914 29.6661 4.36567 29.6832 4.2716 29.6816H3.61397C3.52121 29.6816 3.42936 29.6632 3.34366 29.6276C3.25796 29.5919 3.18008 29.5397 3.11449 29.4738C3.0489 29.4079 2.99688 29.3297 2.96139 29.2436C2.92589 29.1576 2.90761 29.0653 2.90761 28.9721V15.8104L3.3095 16.0673C3.79015 16.3677 4.20163 16.7673 4.5166 17.2398C4.83157 17.7122 5.04282 18.2465 5.13629 18.8073C5.18098 19.1726 5.33191 19.5165 5.57018 19.7961C5.80845 20.0756 6.12351 20.2784 6.47593 20.3791C7.01992 20.5589 7.59007 20.6457 8.16266 20.636C9.8433 20.636 11.6396 20.0855 12.4252 19.3272C12.9679 18.813 13.3037 18.1165 13.369 17.37C13.4577 16.5896 13.8255 15.868 14.4042 15.3395C14.8474 14.932 15.1721 14.4112 15.3437 13.8328C15.5153 13.2543 15.5273 12.64 15.3785 12.0552L15.3115 11.7311H21.8818C22.4855 11.7348 23.0815 11.5942 23.6204 11.3208C24.1593 11.0475 24.6258 10.6494 24.9812 10.1592L25.0726 10.0369H25.2613L25.1822 10.0797ZM3.06593 14.1714L3.16944 13.9267C3.44613 13.2867 3.90309 12.7419 4.48408 12.3594C5.06506 11.9769 5.74472 11.7734 6.4394 11.7739H13.4542L13.5273 11.9084C13.5997 12.048 13.6608 12.1932 13.71 12.3427C13.8201 12.6713 13.8291 13.0257 13.7357 13.3596C13.6423 13.6934 13.4508 13.9913 13.1863 14.2142C12.3517 14.9731 11.8176 16.0089 11.6823 17.1315C11.6719 17.5218 11.5102 17.8927 11.2317 18.1651C10.5337 18.6451 9.71936 18.9262 8.87511 18.9785C8.61695 19.0151 8.35636 19.0314 8.09568 19.0275C7.65138 19.0499 7.20782 18.9705 6.79866 18.7951L6.68297 18.7217V18.5932C6.5309 17.6499 6.14109 16.7613 5.55063 16.0119C4.96017 15.2626 4.18867 14.6774 3.3095 14.312L3.07811 14.1958L3.06593 14.1714Z" fill="#1D1D1D"/>
|
|
10
|
-
</g>
|
|
11
|
-
<defs>
|
|
12
|
-
<linearGradient id="paint0_linear_4088_33999" x1="2.75566" y1="18.055" x2="32.7636" y2="18.055" gradientUnits="userSpaceOnUse">
|
|
13
|
-
<stop stop-color="#EFC530"/>
|
|
14
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
15
|
-
</linearGradient>
|
|
16
|
-
<linearGradient id="paint1_linear_4088_33999" x1="2.92624" y1="15.364" x2="14.0087" y2="15.364" gradientUnits="userSpaceOnUse">
|
|
17
|
-
<stop stop-color="#F37C1C"/>
|
|
18
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
19
|
-
</linearGradient>
|
|
20
|
-
<linearGradient id="paint2_linear_4088_33999" x1="4.25951" y1="4.3735" x2="7.28588" y2="4.3735" gradientUnits="userSpaceOnUse">
|
|
21
|
-
<stop stop-color="#EFC530"/>
|
|
22
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
23
|
-
</linearGradient>
|
|
24
|
-
<clipPath id="clip0_4088_33999">
|
|
25
|
-
<rect width="34" height="34" fill="white" transform="translate(0.5)"/>
|
|
26
|
-
</clipPath>
|
|
27
|
-
</defs>
|
|
28
|
-
</svg>
|
|
@@ -1,21 +0,0 @@
|
|
|
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_33981)">
|
|
3
|
-
<path d="M7.875 7.37476H27.1255V26.6253H7.875V7.37476Z" fill="url(#paint0_linear_4088_33981)" stroke="black" stroke-miterlimit="10"/>
|
|
4
|
-
<path d="M33.5044 15.381C33.7684 15.381 34.0217 15.2761 34.2084 15.0894C34.3952 14.9026 34.5001 14.6494 34.5001 14.3853C34.5001 14.2545 34.4743 14.1251 34.4243 14.0042C34.3742 13.8834 34.3009 13.7737 34.2084 13.6812C34.116 13.5888 34.0062 13.5154 33.8854 13.4654C33.7646 13.4153 33.6351 13.3896 33.5044 13.3896H29.1248V10.0705H33.5044C33.7684 10.0705 34.0217 9.96563 34.2084 9.7789C34.3952 9.59217 34.5001 9.3389 34.5001 9.07482C34.5001 8.81074 34.3952 8.55749 34.2084 8.37076C34.0217 8.18402 33.7684 8.07912 33.5044 8.07912H29.1248V7.4153C29.1227 6.88565 28.9114 6.3783 28.5368 6.00377C28.1623 5.62925 27.655 5.41791 27.1253 5.41578H26.4615V1.03625C26.4615 0.772171 26.3566 0.518899 26.1698 0.332166C25.9831 0.145434 25.7299 0.0405273 25.4658 0.0405273C25.2017 0.0405273 24.9484 0.145434 24.7617 0.332166C24.575 0.518899 24.47 0.772171 24.47 1.03625V5.41578H21.151V1.03625C21.151 0.772171 21.0461 0.518899 20.8594 0.332166C20.6726 0.145434 20.4194 0.0405273 20.1553 0.0405273C19.8912 0.0405273 19.638 0.145434 19.4512 0.332166C19.2645 0.518899 19.1596 0.772171 19.1596 1.03625V5.41578H15.881V1.03625C15.881 0.772171 15.7761 0.518899 15.5894 0.332166C15.4027 0.145434 15.1494 0.0405273 14.8853 0.0405273C14.6212 0.0405273 14.368 0.145434 14.1812 0.332166C13.9945 0.518899 13.8896 0.772171 13.8896 1.03625V5.41578H10.5705V1.03625C10.5705 0.772171 10.4656 0.518899 10.2789 0.332166C10.0921 0.145434 9.83892 0.0405273 9.57484 0.0405273C9.31076 0.0405273 9.05749 0.145434 8.87076 0.332166C8.68402 0.518899 8.57909 0.772171 8.57909 1.03625V5.41578H7.91528C7.38563 5.41791 6.87832 5.62925 6.5038 6.00377C6.12928 6.3783 5.91791 6.88565 5.91578 7.4153V8.07912H1.53628C1.2722 8.07912 1.01892 8.18402 0.832191 8.37076C0.645458 8.55749 0.540527 8.81074 0.540527 9.07482C0.540527 9.3389 0.645458 9.59217 0.832191 9.7789C1.01892 9.96563 1.2722 10.0705 1.53628 10.0705H5.91578V13.3896H1.53628C1.40552 13.3896 1.27604 13.4153 1.15523 13.4654C1.03442 13.5154 0.924652 13.5888 0.832191 13.6812C0.73973 13.7737 0.666361 13.8834 0.616321 14.0042C0.566282 14.1251 0.540527 14.2545 0.540527 14.3853C0.540527 14.6494 0.645458 14.9026 0.832191 15.0894C1.01892 15.2761 1.2722 15.381 1.53628 15.381H5.91578V18.7001H1.53628C1.40552 18.7001 1.27604 18.7258 1.15523 18.7759C1.03442 18.8259 0.924652 18.8992 0.832191 18.9917C0.73973 19.0842 0.666361 19.1939 0.616321 19.3147C0.566282 19.4355 0.540527 19.565 0.540527 19.6958C0.540527 19.9598 0.645458 20.2131 0.832191 20.3998C1.01892 20.5866 1.2722 20.6915 1.53628 20.6915H5.91578V24.0105H1.53628C1.2722 24.0105 1.01892 24.1154 0.832191 24.3022C0.645458 24.4889 0.540527 24.7422 0.540527 25.0063C0.540527 25.2703 0.645458 25.5236 0.832191 25.7103C1.01892 25.8971 1.2722 26.002 1.53628 26.002H5.91578V26.6658C5.91791 27.1954 6.12928 27.7028 6.5038 28.0773C6.87832 28.4518 7.38563 28.6632 7.91528 28.6653H8.57909V33.0448C8.57909 33.3089 8.68402 33.5622 8.87076 33.7489C9.05749 33.9356 9.31076 34.0405 9.57484 34.0405C9.83892 34.0405 10.0921 33.9356 10.2789 33.7489C10.4656 33.5622 10.5705 33.3089 10.5705 33.0448V28.6653H13.8896V33.0448C13.8896 33.3089 13.9945 33.5622 14.1812 33.7489C14.368 33.9356 14.6212 34.0405 14.8853 34.0405C15.1494 34.0405 15.4027 33.9356 15.5894 33.7489C15.7761 33.5622 15.881 33.3089 15.881 33.0448V28.6653H19.2V33.0448C19.2 33.3089 19.305 33.5622 19.4917 33.7489C19.6784 33.9356 19.9317 34.0405 20.1958 34.0405C20.4599 34.0405 20.7131 33.9356 20.8999 33.7489C21.0866 33.5622 21.1915 33.3089 21.1915 33.0448V28.6653H24.5105V33.0448C24.5105 33.3089 24.6154 33.5622 24.8022 33.7489C24.9889 33.9356 25.2422 34.0405 25.5063 34.0405C25.7703 34.0405 26.0236 33.9356 26.2103 33.7489C26.3971 33.5622 26.502 33.3089 26.502 33.0448V28.6653H27.1658C27.6954 28.6632 28.2028 28.4518 28.5773 28.0773C28.9518 27.7028 29.1631 27.1954 29.1653 26.6658V26.002H33.5448C33.6756 26.002 33.8051 25.9762 33.9259 25.9262C34.0467 25.8761 34.1565 25.8028 34.2489 25.7103C34.3414 25.6179 34.4147 25.5081 34.4647 25.3873C34.5148 25.2665 34.5405 25.137 34.5405 25.0063C34.5405 24.8755 34.5148 24.746 34.4647 24.6252C34.4147 24.5044 34.3414 24.3946 34.2489 24.3022C34.1565 24.2097 34.0467 24.1364 33.9259 24.0863C33.8051 24.0363 33.6756 24.0105 33.5448 24.0105H29.1653V20.6915H33.5448C33.6756 20.6915 33.8051 20.6657 33.9259 20.6157C34.0467 20.5657 34.1565 20.4923 34.2489 20.3998C34.3414 20.3074 34.4147 20.1976 34.4647 20.0768C34.5148 19.956 34.5405 19.8265 34.5405 19.6958C34.5405 19.565 34.5148 19.4355 34.4647 19.3147C34.4147 19.1939 34.3414 19.0842 34.2489 18.9917C34.1565 18.8992 34.0467 18.8259 33.9259 18.7759C33.8051 18.7258 33.6756 18.7001 33.5448 18.7001H29.1653V15.381H33.5044ZM27.1253 26.6658H7.87481V7.37481H27.1253C27.1253 27.1677 27.1334 26.6253 27.1253 26.6253V26.6658Z" fill="#1D1D1D"/>
|
|
5
|
-
<path d="M14.5941 12.6853H20.4065L21.8151 14.0939V19.9062L20.4065 21.3148H14.5941L13.1855 19.9062V14.0939L14.5941 12.6853Z" fill="url(#paint1_linear_4088_33981)" stroke="black" stroke-miterlimit="10"/>
|
|
6
|
-
<path d="M21.5478 10.9853C21.4553 10.8928 21.3455 10.8195 21.2247 10.7695C21.1038 10.7195 20.9743 10.6938 20.8435 10.6938H14.2054C14.0746 10.6938 13.9451 10.7195 13.8243 10.7695C13.7034 10.8195 13.5936 10.8928 13.5011 10.9853L11.5097 12.9767C11.4172 13.0692 11.3439 13.179 11.2939 13.2999C11.2439 13.4207 11.2182 13.5502 11.2183 13.681V20.3191C11.2182 20.4499 11.2439 20.5794 11.2939 20.7002C11.3439 20.8211 11.4172 20.9309 11.5097 21.0234L13.5011 23.0148C13.5936 23.1072 13.7034 23.1806 13.8243 23.2306C13.9451 23.2806 14.0746 23.3063 14.2054 23.3062H20.8435C20.9743 23.3063 21.1038 23.2806 21.2247 23.2306C21.3455 23.1806 21.4553 23.1072 21.5478 23.0148L23.5392 21.0234C23.6317 20.9309 23.705 20.8211 23.755 20.7002C23.805 20.5794 23.8307 20.4499 23.8307 20.3191V13.681C23.8307 13.5502 23.805 13.4207 23.755 13.2999C23.705 13.179 23.6317 13.0692 23.5392 12.9767L21.5478 10.9853ZM21.8392 19.8901L20.4306 21.2986H14.6183L13.2097 19.8901V14.0777L14.6183 12.6691H20.4306L21.8392 14.0777V19.8901Z" fill="#1D1D1D"/>
|
|
7
|
-
</g>
|
|
8
|
-
<defs>
|
|
9
|
-
<linearGradient id="paint0_linear_4088_33981" x1="17.5002" y1="26.6253" x2="17.5002" y2="7.37476" gradientUnits="userSpaceOnUse">
|
|
10
|
-
<stop stop-color="#F37C1C"/>
|
|
11
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
12
|
-
</linearGradient>
|
|
13
|
-
<linearGradient id="paint1_linear_4088_33981" x1="17.5003" y1="21.3148" x2="17.5003" y2="12.6853" gradientUnits="userSpaceOnUse">
|
|
14
|
-
<stop stop-color="#EFC530"/>
|
|
15
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
16
|
-
</linearGradient>
|
|
17
|
-
<clipPath id="clip0_4088_33981">
|
|
18
|
-
<rect width="34" height="34" fill="white" transform="translate(0.5)"/>
|
|
19
|
-
</clipPath>
|
|
20
|
-
</defs>
|
|
21
|
-
</svg>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M6.70801 5.17133H28.2718V28.8438H6.70801V5.17133Z" fill="url(#paint0_linear_4088_33970)"/>
|
|
3
|
-
<path d="M28.307 28.8789H6.69287V5.12115H28.307V28.8789ZM6.74312 28.8087H28.2366V5.20644H6.74312V28.8087Z" fill="black"/>
|
|
4
|
-
<path d="M6.70801 28.8438H28.2718V5.17133H27.4173L6.70801 25.8991V28.8438Z" fill="url(#paint1_linear_4088_33970)"/>
|
|
5
|
-
<path d="M25.0303 25.6132L25.5731 25.0764L26.111 25.6132L25.5731 26.1499L25.0303 25.6132Z" fill="white"/>
|
|
6
|
-
<path d="M30.4233 21.3091L30.9612 20.7723L31.499 21.3091L30.9612 21.8509L30.4233 21.3091Z" fill="white"/>
|
|
7
|
-
<path d="M3.47119 13.2428L4.00903 12.706L4.54686 13.2428L4.00903 13.7795L3.47119 13.2428Z" fill="white"/>
|
|
8
|
-
<path d="M8.85938 8.9386L9.39722 8.40186L9.93505 8.9386L9.39722 9.47536L8.85938 8.9386Z" fill="white"/>
|
|
9
|
-
<path d="M33.1226 20.7724C32.9099 20.773 32.6991 20.7317 32.5025 20.6508C32.3058 20.5698 32.1271 20.4509 31.9767 20.3007C31.8262 20.1506 31.7071 19.9723 31.6259 19.776C31.5448 19.5797 31.5034 19.3694 31.5041 19.1571C31.5041 19.0147 31.4474 18.8782 31.3466 18.7775C31.2457 18.6769 31.1089 18.6203 30.9662 18.6203C30.8236 18.6203 30.6868 18.6769 30.5859 18.7775C30.4851 18.8782 30.4284 19.0147 30.4284 19.1571C30.426 19.4886 30.3209 19.8112 30.1274 20.0807C29.9339 20.3502 29.6615 20.5532 29.3477 20.662V4.61952C29.3477 4.47717 29.291 4.34065 29.1902 4.23999C29.0893 4.13932 28.9525 4.08276 28.8099 4.08276H6.19046C6.04782 4.08276 5.91101 4.13932 5.81014 4.23999C5.70928 4.34065 5.65262 4.47717 5.65262 4.61952V12.5856C5.33841 12.4775 5.06565 12.2745 4.87204 12.0049C4.67843 11.7353 4.57356 11.4124 4.57192 11.0807C4.57192 10.9383 4.51524 10.8018 4.41438 10.7011C4.31351 10.6005 4.17672 10.5439 4.03407 10.5439C3.89143 10.5439 3.75464 10.6005 3.65377 10.7011C3.55291 10.8018 3.49623 10.9383 3.49623 11.0807C3.49623 11.2928 3.45438 11.5028 3.37304 11.6988C3.2917 11.8948 3.17247 12.0729 3.02217 12.2228C2.87188 12.3728 2.69345 12.4918 2.49708 12.573C2.30071 12.6542 2.09024 12.696 1.87769 12.696C1.73504 12.696 1.59825 12.7525 1.49738 12.8532C1.39652 12.9538 1.33984 13.0904 1.33984 13.2327C1.33984 13.3751 1.39652 13.5116 1.49738 13.6122C1.59825 13.7129 1.73504 13.7695 1.87769 13.7695C2.09042 13.7688 2.30119 13.8101 2.49786 13.8911C2.69453 13.972 2.87323 14.091 3.02366 14.2411C3.17409 14.3912 3.29328 14.5695 3.37439 14.7658C3.45549 14.9621 3.4969 15.1724 3.49623 15.3847C3.49623 15.5271 3.55291 15.6636 3.65377 15.7643C3.75464 15.865 3.89143 15.9215 4.03407 15.9215C4.17672 15.9215 4.31351 15.865 4.41438 15.7643C4.51524 15.6636 4.57192 15.5271 4.57192 15.3847C4.57502 15.0534 4.68046 14.7311 4.87387 14.4618C5.06727 14.1924 5.33922 13.9892 5.65262 13.8798V29.3805C5.65262 29.5229 5.70928 29.6594 5.81014 29.7601C5.91101 29.8607 6.04782 29.9173 6.19046 29.9173H28.8099C28.9525 29.9173 29.0893 29.8607 29.1902 29.7601C29.291 29.6594 29.3477 29.5229 29.3477 29.3805V21.9512C29.6619 22.0594 29.9347 22.2623 30.1283 22.5319C30.3219 22.8015 30.4268 23.1245 30.4284 23.4561C30.4284 23.599 30.4849 23.736 30.5856 23.8375C30.6864 23.9389 30.8231 23.9966 30.9662 23.9979C31.1093 23.9966 31.2461 23.9389 31.3469 23.8375C31.4476 23.736 31.5041 23.599 31.5041 23.4561C31.5041 23.2443 31.546 23.0345 31.6274 22.8388C31.7088 22.6431 31.8281 22.4653 31.9785 22.3157C32.1288 22.1661 32.3073 22.0476 32.5036 21.967C32.7 21.8864 32.9103 21.8452 33.1226 21.8459C33.2657 21.8446 33.4025 21.7869 33.5033 21.6854C33.604 21.584 33.6605 21.4469 33.6605 21.3041C33.6591 21.1626 33.6019 21.0274 33.5012 20.9278C33.4005 20.8282 33.2644 20.7724 33.1226 20.7724ZM4.01396 13.7795C3.8581 13.5786 3.67738 13.3983 3.47612 13.2427C3.67738 13.0872 3.8581 12.9068 4.01396 12.706C4.16983 12.9068 4.35055 13.0872 4.55181 13.2427C4.35055 13.3983 4.16983 13.5786 4.01396 13.7795ZM28.272 25.6132V28.8438H17.1734L21.0992 24.9209C21.1501 24.8718 21.1906 24.813 21.2183 24.7479C21.2459 24.6828 21.2602 24.6129 21.2602 24.5422C21.2602 24.4715 21.2459 24.4016 21.2183 24.3365C21.1906 24.2714 21.1501 24.2126 21.0992 24.1635C20.9982 24.0675 20.8641 24.0139 20.7247 24.0139C20.5852 24.0139 20.4512 24.0675 20.3502 24.1635L15.6605 28.8438H13.9514L21.0992 21.6753C21.1496 21.6254 21.1897 21.566 21.217 21.5006C21.2443 21.4352 21.2584 21.365 21.2584 21.2941C21.2584 21.2232 21.2443 21.153 21.217 21.0876C21.1897 21.0221 21.1496 20.9627 21.0992 20.9128C20.9982 20.8168 20.8641 20.7633 20.7247 20.7633C20.5852 20.7633 20.4512 20.8168 20.3502 20.9128L12.4284 28.8237H6.71824V5.17133H22.6473L18.7216 9.09417C18.6707 9.14329 18.6302 9.20212 18.6025 9.26719C18.5749 9.33226 18.5606 9.40222 18.5606 9.4729C18.5606 9.54358 18.5749 9.61353 18.6025 9.6786C18.6302 9.74367 18.6707 9.80252 18.7216 9.85164C18.7712 9.90184 18.8303 9.94171 18.8954 9.96892C18.9606 9.99613 19.0305 10.0101 19.1011 10.0101C19.1717 10.0101 19.2417 9.99613 19.3068 9.96892C19.372 9.94171 19.431 9.90184 19.4806 9.85164L24.1704 5.17133H25.8844L18.7116 12.3197C18.6611 12.3696 18.6211 12.429 18.5937 12.4944C18.5664 12.5599 18.5523 12.6301 18.5523 12.701C18.5523 12.7719 18.5664 12.8421 18.5937 12.9075C18.6211 12.9729 18.6611 13.0323 18.7116 13.0822C18.7608 13.133 18.8197 13.1734 18.8849 13.2011C18.9501 13.2287 19.0202 13.2429 19.0911 13.2429C19.1619 13.2429 19.232 13.2287 19.2972 13.2011C19.3624 13.1734 19.4213 13.133 19.4706 13.0822L27.4024 5.17133H28.257L28.272 25.6132ZM30.9662 21.8509C30.8117 21.6474 30.6309 21.4652 30.4284 21.3091C30.6308 21.1548 30.8116 20.9743 30.9662 20.7724C31.1209 20.9743 31.3017 21.1548 31.5041 21.3091C31.3016 21.4652 31.1208 21.6474 30.9662 21.8509Z" fill="#1D1D1D"/>
|
|
10
|
-
<path d="M28.8098 29.9524H6.19035C6.03837 29.9524 5.89261 29.8921 5.78515 29.7849C5.67768 29.6776 5.61732 29.5322 5.61732 29.3805V13.9299C5.32161 14.0449 5.06751 14.2462 4.88817 14.5075C4.70883 14.7688 4.61259 15.078 4.61201 15.3947C4.61201 15.5464 4.55164 15.6919 4.44418 15.7991C4.33671 15.9064 4.19097 15.9666 4.03899 15.9666C3.88702 15.9666 3.74125 15.9064 3.63379 15.7991C3.52633 15.6919 3.46596 15.5464 3.46596 15.3947C3.46596 14.9757 3.29914 14.5737 3.00221 14.2774C2.70527 13.9811 2.30254 13.8146 1.8826 13.8146C1.73063 13.8146 1.58488 13.7543 1.47742 13.6471C1.36996 13.5398 1.30957 13.3944 1.30957 13.2427C1.30957 13.091 1.36996 12.9456 1.47742 12.8383C1.58488 12.7311 1.73063 12.6708 1.8826 12.6708C2.30254 12.6708 2.70527 12.5043 3.00221 12.208C3.29914 11.9117 3.46596 11.5097 3.46596 11.0907C3.46596 10.939 3.52633 10.7935 3.63379 10.6863C3.74125 10.579 3.88702 10.5188 4.03899 10.5188C4.19097 10.5188 4.33671 10.579 4.44418 10.6863C4.55164 10.7935 4.61201 10.939 4.61201 11.0907C4.61259 11.4074 4.70883 11.7166 4.88817 11.9779C5.06751 12.2392 5.32161 12.4405 5.61732 12.5555V4.61949C5.61732 4.46782 5.67768 4.32236 5.78515 4.21512C5.89261 4.10787 6.03837 4.04761 6.19035 4.04761H28.8098C28.9617 4.04761 29.1075 4.10787 29.2149 4.21512C29.3224 4.32236 29.3828 4.46782 29.3828 4.61949V20.6218C29.6789 20.5074 29.9334 20.3063 30.1128 20.0449C30.2922 19.7834 30.3882 19.4739 30.3881 19.1571C30.3894 19.0063 30.4504 18.8621 30.5577 18.7559C30.665 18.6498 30.81 18.5902 30.9611 18.5902C31.1122 18.5902 31.2572 18.6498 31.3645 18.7559C31.4719 18.8621 31.5328 19.0063 31.5341 19.1571C31.5341 19.5761 31.7009 19.9781 31.9979 20.2744C32.2948 20.5707 32.6976 20.7372 33.1175 20.7372C33.2691 20.7385 33.4141 20.7992 33.5212 20.9062C33.6284 21.0131 33.6892 21.1578 33.6905 21.3091C33.6905 21.4608 33.6302 21.6062 33.5227 21.7135C33.4152 21.8207 33.2695 21.881 33.1175 21.881C32.698 21.8823 32.296 22.0492 31.9994 22.3453C31.7027 22.6413 31.5355 23.0424 31.5341 23.4611C31.5341 23.6128 31.4738 23.7583 31.3663 23.8655C31.2588 23.9727 31.1131 24.033 30.9611 24.033C30.8091 24.033 30.6634 23.9727 30.5559 23.8655C30.4485 23.7583 30.3881 23.6128 30.3881 23.4611C30.3875 23.1444 30.2913 22.8352 30.1119 22.5739C29.9326 22.3126 29.6785 22.1113 29.3828 21.9963V29.3805C29.3828 29.4556 29.368 29.53 29.3392 29.5993C29.3104 29.6687 29.2682 29.7318 29.2149 29.7849C29.1617 29.838 29.0986 29.8801 29.029 29.9088C28.9595 29.9376 28.885 29.9524 28.8098 29.9524ZM5.66255 13.8346V29.3855C5.66255 29.5186 5.71552 29.6462 5.80978 29.7402C5.90405 29.8343 6.03189 29.8872 6.16521 29.8872H28.7846C28.9179 29.8872 29.0458 29.8343 29.1401 29.7402C29.2343 29.6462 29.2873 29.5186 29.2873 29.3855V21.901H29.3325C29.6515 22.0159 29.9276 22.2256 30.1235 22.5018C30.3194 22.7781 30.4258 23.1076 30.4283 23.4461C30.4283 23.5791 30.4813 23.7067 30.5755 23.8008C30.6698 23.8949 30.7976 23.9477 30.931 23.9477C31.0643 23.9477 31.1921 23.8949 31.2864 23.8008C31.3806 23.7067 31.4336 23.5791 31.4336 23.4461C31.4336 23.0097 31.6073 22.5912 31.9165 22.2826C32.2257 21.9741 32.6451 21.8007 33.0823 21.8007C33.2156 21.8007 33.3435 21.7478 33.4377 21.6538C33.532 21.5597 33.585 21.4321 33.585 21.2991C33.585 21.166 33.532 21.0384 33.4377 20.9444C33.3435 20.8503 33.2156 20.7974 33.0823 20.7974C32.8654 20.7974 32.6506 20.7547 32.4502 20.6717C32.2499 20.5887 32.0679 20.467 31.9147 20.3137C31.7616 20.1604 31.6402 19.9784 31.5577 19.7782C31.4751 19.578 31.433 19.3635 31.4336 19.147C31.4336 19.014 31.3806 18.8864 31.2864 18.7923C31.1921 18.6982 31.0643 18.6454 30.931 18.6454C30.7976 18.6454 30.6698 18.6982 30.5755 18.7923C30.4813 18.8864 30.4283 19.014 30.4283 19.147C30.4273 19.4858 30.3215 19.816 30.1253 20.0926C29.9292 20.3691 29.6523 20.5785 29.3325 20.6921H29.2873V4.61949C29.2873 4.48644 29.2343 4.35886 29.1401 4.26478C29.0458 4.1707 28.9179 4.11784 28.7846 4.11784H6.16521C6.03189 4.11784 5.90405 4.1707 5.80978 4.26478C5.71552 4.35886 5.66255 4.48644 5.66255 4.61949V12.6457H5.61732C5.29656 12.533 5.01861 12.3239 4.82153 12.0473C4.62446 11.7707 4.51791 11.4401 4.5165 11.1007C4.5165 10.9677 4.46355 10.8401 4.36929 10.746C4.27502 10.6519 4.14716 10.5991 4.01385 10.5991C3.88054 10.5991 3.75269 10.6519 3.65843 10.746C3.56416 10.8401 3.5112 10.9677 3.5112 11.1007C3.5112 11.5371 3.33749 11.9556 3.0283 12.2642C2.71911 12.5727 2.29976 12.7461 1.86249 12.7461C1.72918 12.7461 1.60134 12.7989 1.50707 12.893C1.4128 12.9871 1.35984 13.1147 1.35984 13.2477C1.35984 13.3808 1.4128 13.5084 1.50707 13.6024C1.60134 13.6965 1.72918 13.7494 1.86249 13.7494C2.30022 13.7507 2.71956 13.9252 3.02861 14.2345C3.33765 14.5439 3.5112 14.9629 3.5112 15.3998C3.5112 15.5328 3.56416 15.6604 3.65843 15.7545C3.75269 15.8485 3.88054 15.9014 4.01385 15.9014C4.14716 15.9014 4.27502 15.8485 4.36929 15.7545C4.46355 15.6604 4.5165 15.5328 4.5165 15.3998C4.51718 15.0602 4.62344 14.7292 4.82061 14.4525C5.01779 14.1757 5.29615 13.9669 5.61732 13.8547L5.66255 13.8346ZM28.3071 28.8839H17.118L21.1041 24.9059C21.1512 24.8592 21.1886 24.8037 21.2141 24.7426C21.2396 24.6815 21.2528 24.6159 21.2528 24.5497C21.2528 24.4835 21.2396 24.4179 21.2141 24.3568C21.1886 24.2956 21.1512 24.2402 21.1041 24.1935C21.0103 24.1031 20.8851 24.0526 20.7547 24.0526C20.6244 24.0526 20.4991 24.1031 20.4054 24.1935L15.7056 28.8839H13.896L21.0789 21.6753C21.1261 21.6287 21.1634 21.5732 21.189 21.5121C21.2145 21.4509 21.2276 21.3854 21.2276 21.3191C21.2276 21.2529 21.2145 21.1873 21.189 21.1262C21.1634 21.0651 21.1261 21.0096 21.0789 20.963C20.9852 20.8725 20.86 20.822 20.7296 20.822C20.5992 20.822 20.474 20.8725 20.3802 20.963L12.4434 28.8839H6.68797V5.12113H22.7729L18.7868 9.09914C18.739 9.14586 18.7009 9.20166 18.675 9.26325C18.649 9.32484 18.6356 9.39099 18.6356 9.45781C18.6356 9.52463 18.649 9.59079 18.675 9.65239C18.7009 9.71398 18.739 9.76976 18.7868 9.81648C18.8797 9.911 19.0061 9.9651 19.1387 9.96698C19.2053 9.96869 19.2717 9.95716 19.3338 9.93304C19.3959 9.90893 19.4526 9.87272 19.5006 9.82652L24.1552 5.12113H25.9647L18.7366 12.3297C18.6895 12.3763 18.6521 12.4318 18.6265 12.493C18.601 12.5541 18.5879 12.6196 18.5879 12.6859C18.5879 12.7521 18.601 12.8177 18.6265 12.8788C18.6521 12.9399 18.6895 12.9954 18.7366 13.042C18.8313 13.1374 18.959 13.193 19.0935 13.1976C19.1596 13.1979 19.2252 13.1853 19.2864 13.1603C19.3477 13.1353 19.4034 13.0986 19.4504 13.0521L27.3923 5.13115H28.297L28.3071 28.8839ZM17.2487 28.8137H28.2317V5.20641H27.4224L19.4906 13.1173C19.4369 13.1698 19.3732 13.2111 19.3033 13.2387C19.2333 13.2662 19.1586 13.2796 19.0834 13.2778C19.008 13.2772 18.9334 13.2613 18.8643 13.2311C18.7952 13.201 18.7329 13.1571 18.6813 13.1022C18.627 13.0499 18.5839 12.9871 18.5544 12.9177C18.5249 12.8483 18.5097 12.7738 18.5097 12.6984C18.5097 12.6231 18.5249 12.5485 18.5544 12.4791C18.5839 12.4097 18.627 12.347 18.6813 12.2946L25.7888 5.20641H24.1753L19.4805 9.89174C19.4268 9.94428 19.3631 9.98554 19.2932 10.0131C19.2233 10.0407 19.1485 10.054 19.0734 10.0523C18.9215 10.0482 18.7772 9.98525 18.6712 9.87669C18.6176 9.82395 18.575 9.76109 18.5459 9.69176C18.5168 9.62243 18.5018 9.54801 18.5018 9.47286C18.5018 9.3977 18.5168 9.3233 18.5459 9.25397C18.575 9.18465 18.6176 9.12178 18.6712 9.06904L22.5417 5.20641H6.70808V28.8086H12.3679L20.2797 20.9128C20.3859 20.8092 20.5284 20.7512 20.6768 20.7512C20.8252 20.7512 20.9678 20.8092 21.0739 20.9128C21.1282 20.9652 21.1713 21.0279 21.2008 21.0973C21.2303 21.1667 21.2455 21.2413 21.2455 21.3166C21.2455 21.392 21.2303 21.4665 21.2008 21.5359C21.1713 21.6053 21.1282 21.668 21.0739 21.7204L13.9714 28.8086H15.5849L20.2646 24.1383C20.3708 24.0348 20.5133 23.9768 20.6617 23.9768C20.8102 23.9768 20.9527 24.0348 21.0588 24.1383C21.1131 24.1907 21.1563 24.2535 21.1857 24.3229C21.2152 24.3922 21.2304 24.4668 21.2304 24.5422C21.2304 24.6175 21.2152 24.6921 21.1857 24.7615C21.1563 24.8309 21.1131 24.8936 21.0588 24.946L17.2487 28.8137ZM30.9611 21.9111L30.936 21.8759C30.7831 21.6757 30.6038 21.4968 30.4032 21.3442L30.368 21.3141H30.4032C30.6038 21.1615 30.7831 20.9826 30.936 20.7824L30.9611 20.7472L30.9862 20.7824C31.1405 20.9815 31.3196 21.1601 31.5191 21.3141H31.5542L31.5191 21.3442C31.3196 21.4982 31.1405 21.6768 30.9862 21.8759L30.9611 21.9111ZM30.4585 21.3141C30.6444 21.4619 30.813 21.6302 30.9611 21.8157C31.1092 21.6302 31.2779 21.4619 31.4638 21.3141C31.2764 21.1679 31.1076 20.9995 30.9611 20.8125C30.8222 20.9962 30.6619 21.1629 30.4836 21.3091L30.4585 21.3141ZM3.98872 13.8397L3.96358 13.8045C3.808 13.6066 3.62911 13.4281 3.43077 13.2728L3.3956 13.2477L3.43077 13.2176C3.63027 13.0637 3.80931 12.885 3.96358 12.6859L3.98872 12.6558L4.01385 12.6859C4.16677 12.8861 4.34598 13.065 4.54666 13.2176L4.58185 13.2477L4.54666 13.2728C4.35985 13.4274 4.19273 13.6043 4.04904 13.7995L3.98872 13.8397ZM3.48607 13.2477C3.67346 13.3939 3.84226 13.5623 3.98872 13.7494C4.13518 13.5623 4.30398 13.3939 4.49138 13.2477C4.30293 13.1027 4.13399 12.9341 3.98872 12.7461C3.86049 12.9277 3.7121 13.0943 3.54639 13.2427L3.48607 13.2477Z" fill="#1D1D1D"/>
|
|
11
|
-
<path d="M27.734 25.0764C27.5213 25.0771 27.3105 25.0357 27.1138 24.9548C26.9172 24.8739 26.7385 24.7549 26.588 24.6048C26.4376 24.4547 26.3184 24.2763 26.2373 24.08C26.1562 23.8838 26.1148 23.6734 26.1155 23.4611C26.1155 23.3188 26.0588 23.1823 25.9579 23.0816C25.8571 22.9809 25.7203 22.9244 25.5776 22.9244C25.4345 22.9244 25.2972 22.9808 25.1955 23.0813C25.0939 23.1818 25.0361 23.3183 25.0348 23.4611C25.0361 23.6732 24.9953 23.8834 24.9147 24.0797C24.8342 24.2759 24.7155 24.4543 24.5654 24.6045C24.4154 24.7547 24.2371 24.8737 24.0407 24.9547C23.8443 25.0357 23.6337 25.0771 23.4212 25.0764C23.2781 25.0764 23.1408 25.1328 23.0391 25.2333C22.9375 25.3338 22.8797 25.4704 22.8784 25.6132C22.8797 25.7565 22.9373 25.8935 23.0388 25.9948C23.1403 26.0961 23.2777 26.1536 23.4212 26.1549C23.6333 26.1543 23.8434 26.1955 24.0395 26.2762C24.2356 26.3569 24.4137 26.4754 24.5636 26.6251C24.7136 26.7748 24.8324 26.9525 24.9133 27.1482C24.9941 27.3439 25.0354 27.5536 25.0348 27.7652C25.0361 27.9085 25.0937 28.0455 25.1952 28.1469C25.2967 28.2482 25.434 28.3057 25.5776 28.307C25.7207 28.3057 25.8575 28.248 25.9582 28.1465C26.059 28.0451 26.1155 27.908 26.1155 27.7652C26.1148 27.5531 26.1562 27.343 26.2374 27.147C26.3186 26.951 26.4378 26.773 26.5883 26.6233C26.7388 26.4736 26.9176 26.3551 27.1142 26.2747C27.3109 26.1943 27.5215 26.1536 27.734 26.1549C27.8771 26.1536 28.0139 26.096 28.1146 25.9945C28.2153 25.893 28.2719 25.756 28.2718 25.6132C28.2718 25.4708 28.2152 25.3343 28.1143 25.2336C28.0135 25.133 27.8766 25.0764 27.734 25.0764ZM25.5776 26.1549C25.4227 25.9501 25.24 25.7678 25.0348 25.6132C25.2399 25.4603 25.4226 25.2797 25.5776 25.0764C25.7309 25.2796 25.9119 25.4602 26.1155 25.6132C25.9118 25.7679 25.7307 25.9502 25.5776 26.1549ZM11.5586 8.40186C11.3463 8.40186 11.1361 8.36005 10.94 8.27881C10.7439 8.19757 10.5658 8.07851 10.4159 7.92845C10.266 7.77839 10.1473 7.60028 10.0665 7.40434C9.98568 7.20839 9.94444 6.99846 9.9451 6.78658C9.94377 6.64376 9.88599 6.50724 9.78432 6.40672C9.68266 6.3062 9.54533 6.24981 9.40222 6.24982C9.25958 6.24982 9.12278 6.30636 9.02192 6.40702C8.92106 6.50769 8.86438 6.64422 8.86438 6.78658C8.86504 6.99888 8.82364 7.20922 8.74254 7.4055C8.66143 7.60177 8.54224 7.7801 8.39181 7.93023C8.24138 8.08035 8.06269 8.19931 7.86602 8.28025C7.66935 8.36119 7.45857 8.40252 7.24584 8.40186C7.10319 8.40186 6.9664 8.45841 6.86553 8.55907C6.76467 8.65973 6.70801 8.79625 6.70801 8.93861C6.70801 9.08096 6.76467 9.2175 6.86553 9.31816C6.9664 9.41882 7.10319 9.47537 7.24584 9.47537C7.45857 9.4747 7.66935 9.51604 7.86602 9.59698C8.06269 9.67792 8.24138 9.79688 8.39181 9.947C8.54224 10.0971 8.66143 10.2755 8.74254 10.4717C8.82364 10.668 8.86504 10.8783 8.86438 11.0907C8.86438 11.233 8.92106 11.3695 9.02192 11.4702C9.12278 11.5709 9.25958 11.6274 9.40222 11.6274C9.54533 11.6274 9.68266 11.571 9.78432 11.4705C9.88599 11.37 9.94377 11.2335 9.9451 11.0907C9.94444 10.8788 9.98568 10.6688 10.0665 10.4729C10.1473 10.2769 10.266 10.0988 10.4159 9.94878C10.5658 9.79872 10.7439 9.67966 10.94 9.59842C11.1361 9.51718 11.3463 9.47537 11.5586 9.47537C11.7017 9.47537 11.839 9.41899 11.9407 9.31847C12.0424 9.21795 12.1001 9.08142 12.1015 8.93861C12.1001 8.79579 12.0424 8.65928 11.9407 8.55876C11.839 8.45824 11.7017 8.40186 11.5586 8.40186ZM9.40222 9.47537C9.2476 9.27343 9.06673 9.09292 8.86438 8.93861C9.06673 8.78429 9.2476 8.6038 9.40222 8.40186C9.55862 8.60393 9.74117 8.78441 9.9451 8.93861C9.74117 9.0928 9.55862 9.2733 9.40222 9.47537Z" fill="#1D1D1D"/>
|
|
12
|
-
<path d="M25.5776 28.3371C25.4257 28.3371 25.2799 28.2769 25.1725 28.1696C25.065 28.0624 25.0046 27.9169 25.0046 27.7653C25.0033 27.3466 24.8361 26.9454 24.5394 26.6494C24.2428 26.3533 23.8408 26.1864 23.4213 26.1851C23.2693 26.1851 23.1235 26.1248 23.0161 26.0176C22.9086 25.9104 22.8482 25.7649 22.8482 25.6132C22.8496 25.462 22.9104 25.3173 23.0175 25.2103C23.1247 25.1033 23.2697 25.0427 23.4213 25.0414C23.8408 25.04 24.2428 24.8731 24.5394 24.5771C24.8361 24.281 25.0033 23.8799 25.0046 23.4612C25.0059 23.3099 25.0667 23.1652 25.1739 23.0583C25.2811 22.9513 25.4261 22.8906 25.5776 22.8893C25.7292 22.8906 25.8742 22.9513 25.9814 23.0583C26.0886 23.1652 26.1494 23.3099 26.1507 23.4612C26.1507 23.8803 26.3175 24.2822 26.6144 24.5785C26.9114 24.8749 27.3141 25.0414 27.734 25.0414C27.8856 25.0427 28.0306 25.1033 28.1378 25.2103C28.245 25.3173 28.3058 25.462 28.3071 25.6132C28.3058 25.7645 28.245 25.9092 28.1378 26.0162C28.0306 26.1231 27.8856 26.1838 27.734 26.1851C27.3145 26.1864 26.9126 26.3533 26.6159 26.6494C26.3193 26.9454 26.152 27.3466 26.1507 27.7653C26.1494 27.9165 26.0886 28.0612 25.9814 28.1682C25.8742 28.2752 25.7292 28.3358 25.5776 28.3371ZM25.5776 22.9595C25.4443 22.9595 25.3165 23.0124 25.2222 23.1065C25.128 23.2006 25.075 23.3281 25.075 23.4612C25.0757 23.6777 25.0335 23.8922 24.9509 24.0924C24.8684 24.2926 24.7471 24.4746 24.5939 24.6279C24.4407 24.7812 24.2588 24.9029 24.0584 24.9859C23.858 25.0689 23.6432 25.1116 23.4263 25.1116C23.293 25.1116 23.1651 25.1644 23.0709 25.2585C22.9766 25.3526 22.9236 25.4802 22.9236 25.6132C22.9236 25.7463 22.9766 25.8739 23.0709 25.9679C23.1651 26.062 23.293 26.1149 23.4263 26.1149C23.8636 26.1149 24.2829 26.2882 24.5921 26.5968C24.9013 26.9054 25.075 27.3239 25.075 27.7603C25.075 27.8933 25.128 28.0209 25.2222 28.115C25.3165 28.209 25.4443 28.2619 25.5776 28.2619C25.711 28.2619 25.8388 28.209 25.9331 28.115C26.0273 28.0209 26.0803 27.8933 26.0803 27.7603C26.0803 27.5438 26.1231 27.3294 26.2063 27.1294C26.2895 26.9295 26.4113 26.7479 26.565 26.595C26.7186 26.4422 26.9009 26.3211 27.1016 26.2387C27.3022 26.1563 27.5171 26.1142 27.734 26.1149C27.8673 26.1149 27.9952 26.062 28.0895 25.9679C28.1837 25.8739 28.2367 25.7463 28.2367 25.6132C28.2367 25.4802 28.1837 25.3526 28.0895 25.2585C27.9952 25.1644 27.8673 25.1116 27.734 25.1116C27.5169 25.1116 27.3018 25.0689 27.1012 24.986C26.9005 24.903 26.7182 24.7815 26.5647 24.6282C26.4111 24.4749 26.2893 24.293 26.2062 24.0928C26.1231 23.8925 26.0803 23.6779 26.0803 23.4612C26.0803 23.3281 26.0273 23.2006 25.9331 23.1065C25.8388 23.0124 25.711 22.9595 25.5776 22.9595ZM25.5776 26.2102L25.5475 26.1751C25.3959 25.9736 25.2165 25.7946 25.0147 25.6433L24.9795 25.6132L25.0147 25.5881C25.2165 25.4369 25.3959 25.2579 25.5475 25.0564L25.5776 25.0213L25.6028 25.0564C25.7544 25.2579 25.9337 25.4369 26.1356 25.5881L26.1708 25.6132L26.1356 25.6433C25.9337 25.7946 25.7544 25.9736 25.6028 26.1751L25.5776 26.2102ZM25.075 25.6132C25.2607 25.7612 25.4293 25.9295 25.5776 26.1149C25.7243 25.9281 25.8931 25.7596 26.0803 25.6132C25.8916 25.4685 25.7227 25.2999 25.5776 25.1116C25.4357 25.2975 25.272 25.4659 25.0901 25.6132H25.075ZM9.40226 11.6425C9.25069 11.6412 9.10569 11.5805 8.99851 11.4736C8.89133 11.3666 8.83055 11.2219 8.82924 11.0706C8.82924 10.6516 8.66241 10.2496 8.36547 9.95329C8.06854 9.65695 7.6658 9.49047 7.24587 9.49047C7.0943 9.48916 6.94932 9.4285 6.84214 9.32154C6.73496 9.21458 6.67416 9.06988 6.67285 8.91861C6.67416 8.76735 6.73496 8.62264 6.84214 8.51568C6.94932 8.40872 7.0943 8.34804 7.24587 8.34673C7.6658 8.34673 8.06854 8.18025 8.36547 7.88391C8.66241 7.58757 8.82924 7.18565 8.82924 6.76657C8.83055 6.6153 8.89133 6.4706 8.99851 6.36364C9.10569 6.25667 9.25069 6.19601 9.40226 6.1947C9.55423 6.1947 9.69999 6.25495 9.80746 6.3622C9.91492 6.46944 9.97529 6.6149 9.97529 6.76657C9.97661 7.18525 10.1438 7.58641 10.4405 7.88246C10.7371 8.17851 11.1391 8.34541 11.5586 8.34673C11.7106 8.34673 11.8564 8.40698 11.9638 8.51423C12.0713 8.62147 12.1317 8.76694 12.1317 8.91861C12.1317 9.07028 12.0713 9.21573 11.9638 9.32298C11.8564 9.43023 11.7106 9.49047 11.5586 9.49047C11.1391 9.4918 10.7371 9.65871 10.4405 9.95476C10.1438 10.2508 9.97661 10.652 9.97529 11.0706C9.97529 11.2223 9.91492 11.3678 9.80746 11.475C9.69999 11.5823 9.55423 11.6425 9.40226 11.6425ZM9.40226 6.2599C9.26894 6.2599 9.1411 6.31276 9.04683 6.40684C8.95257 6.50091 8.8996 6.6285 8.8996 6.76154C8.89827 7.19839 8.72346 7.61688 8.41347 7.92531C8.10348 8.23374 7.6836 8.40693 7.24587 8.40693C7.11256 8.40693 6.98471 8.45979 6.89045 8.55386C6.79618 8.64794 6.74322 8.77552 6.74322 8.90857C6.74322 9.04161 6.79618 9.16921 6.89045 9.26329C6.98471 9.35737 7.11256 9.41021 7.24587 9.41021C7.68406 9.41153 8.10393 9.58585 8.41378 9.89507C8.72363 10.2043 8.89828 10.6233 8.8996 11.0606C8.8996 11.1937 8.95257 11.3213 9.04683 11.4153C9.1411 11.5094 9.26894 11.5623 9.40226 11.5623C9.53557 11.5623 9.66343 11.5094 9.75769 11.4153C9.85196 11.3213 9.90491 11.1937 9.90491 11.0606C9.90491 10.6238 10.0785 10.2047 10.3875 9.89538C10.6965 9.58601 11.1159 9.41154 11.5536 9.41021C11.6869 9.41021 11.8148 9.35737 11.9091 9.26329C12.0033 9.16921 12.0563 9.04161 12.0563 8.90857C12.0563 8.77552 12.0033 8.64794 11.9091 8.55386C11.8148 8.45979 11.6869 8.40693 11.5536 8.40693C11.1164 8.40693 10.697 8.23359 10.3878 7.92502C10.0786 7.61645 9.90491 7.19793 9.90491 6.76154C9.89971 6.63201 9.84447 6.50952 9.75076 6.41974C9.65705 6.32996 9.53216 6.27987 9.40226 6.27997V6.2599ZM9.40226 9.51054V9.47543C9.24799 9.27633 9.06895 9.09764 8.86945 8.94369L8.83426 8.91861L8.86945 8.89352C9.06895 8.73956 9.24799 8.56088 9.40226 8.36178V8.32668L9.43242 8.36178C9.58668 8.56088 9.76573 8.73956 9.96523 8.89352L10.0004 8.91861L9.96523 8.94369C9.76455 9.0963 9.58534 9.27515 9.43242 9.47543L9.40226 9.51054ZM8.8996 8.91861C9.08827 9.06333 9.25725 9.23196 9.40226 9.42025C9.54894 9.23343 9.71771 9.065 9.90491 8.91861C9.719 8.77079 9.55038 8.60251 9.40226 8.41697C9.26331 8.60985 9.10127 8.78504 8.91971 8.93867L8.8996 8.91861Z" fill="#1D1D1D"/>
|
|
13
|
-
<defs>
|
|
14
|
-
<linearGradient id="paint0_linear_4088_33970" x1="17.4899" y1="28.8438" x2="17.4899" y2="5.17133" gradientUnits="userSpaceOnUse">
|
|
15
|
-
<stop stop-color="#EFC530"/>
|
|
16
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
17
|
-
</linearGradient>
|
|
18
|
-
<linearGradient id="paint1_linear_4088_33970" x1="17.4899" y1="28.8438" x2="17.4899" y2="5.17133" gradientUnits="userSpaceOnUse">
|
|
19
|
-
<stop stop-color="#F37C1C"/>
|
|
20
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
21
|
-
</linearGradient>
|
|
22
|
-
</defs>
|
|
23
|
-
</svg>
|
|
@@ -1,16 +0,0 @@
|
|
|
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>
|
|
16
|
-
</svg>
|
|
@@ -1,16 +0,0 @@
|
|
|
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>
|
|
16
|
-
</svg>
|
|
@@ -1,26 +0,0 @@
|
|
|
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>
|
|
26
|
-
</svg>
|
|
@@ -1,17 +0,0 @@
|
|
|
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>
|
|
17
|
-
</svg>
|
|
@@ -1,21 +0,0 @@
|
|
|
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_33973)">
|
|
3
|
-
<path d="M7.11846 32.0073H27.8617C28.0927 32.0062 28.3162 31.9256 28.4948 31.7791C28.6733 31.6326 28.7961 31.429 28.8423 31.2027L29.848 26.1363C29.472 26.6937 28.9658 27.151 28.3732 27.4686C27.7807 27.7863 27.1197 27.9546 26.4474 27.9592C25.9073 27.956 25.3735 27.8429 24.8785 27.6268C24.3836 27.4107 23.9379 27.096 23.5684 26.7021H23.3422C22.9618 27.1008 22.5026 27.4161 21.9938 27.6278C21.485 27.8395 20.9376 27.943 20.3867 27.9318C19.8357 27.9206 19.2931 27.7948 18.7933 27.5625C18.2935 27.3303 17.8476 26.9966 17.4838 26.5826C17.1103 27.0076 16.6506 27.348 16.1352 27.5812C15.6198 27.8145 15.0606 27.9351 14.4949 27.9351C13.9291 27.9351 13.3699 27.8145 12.8545 27.5812C12.3391 27.348 11.8794 27.0076 11.5059 26.5826C11.1321 27.0078 10.6718 27.3483 10.1558 27.5813C9.63981 27.8144 9.08006 27.9347 8.51389 27.9341C7.84093 27.9293 7.17932 27.7602 6.58664 27.4414C5.99395 27.1226 5.48817 26.6638 5.11328 26.1049L6.119 31.1776C6.1606 31.4117 6.28381 31.6235 6.46678 31.7754C6.64975 31.9273 6.88066 32.0095 7.11846 32.0073Z" fill="url(#paint0_linear_4088_33973)"/>
|
|
4
|
-
<path d="M28.4589 24.4958C28.4945 24.3601 28.559 24.2337 28.6479 24.1252C28.7369 24.0167 28.8482 23.9287 28.9743 23.8672C29.0996 23.8048 29.2366 23.7697 29.3764 23.7643C29.5162 23.7589 29.6556 23.7833 29.7852 23.8358C30.0633 23.9459 30.3626 23.992 30.6609 23.9706C30.9592 23.9493 31.2489 23.8611 31.5084 23.7125C31.768 23.564 31.9908 23.3589 32.1603 23.1125C32.3298 22.8661 32.4417 22.5848 32.4876 22.2892C32.5336 21.9937 32.5124 21.6917 32.4257 21.4054C32.339 21.1192 32.189 20.8562 31.9868 20.6358C31.7846 20.4155 31.5354 20.2435 31.2576 20.1326C30.9799 20.0217 30.6807 19.9747 30.3824 19.9952C30.2227 20.0043 30.0631 19.9755 29.9166 19.911C29.7702 19.8466 29.6412 19.7483 29.5401 19.6243C28.0651 17.8645 26.2224 16.4493 24.1416 15.4784C22.0609 14.5074 19.7926 14.0042 17.4964 14.0042C15.2003 14.0042 12.932 14.5074 10.8512 15.4784C8.77048 16.4493 6.92779 17.8645 5.45282 19.6243C5.3359 19.7625 5.1856 19.8686 5.01618 19.9324C4.84677 19.9962 4.66387 20.0156 4.48482 19.9889C3.95635 19.9889 3.44949 20.1988 3.07581 20.5725C2.70212 20.9462 2.49219 21.453 2.49219 21.9815C2.49219 22.5099 2.70212 23.0168 3.07581 23.3905C3.44949 23.7642 3.95635 23.9741 4.48482 23.9741C4.73425 23.9726 4.98131 23.9258 5.21396 23.8358C5.34362 23.7833 5.48298 23.7589 5.62278 23.7643C5.76258 23.7697 5.89961 23.8048 6.02482 23.8672C6.14951 23.9307 6.25971 24.0193 6.34843 24.1275C6.43715 24.2357 6.50246 24.3611 6.54026 24.4958C6.66915 24.9232 6.93288 25.2974 7.29203 25.5625C7.65118 25.8276 8.0865 25.9694 8.53289 25.9667C8.82307 25.9674 9.10982 25.9041 9.37275 25.7813C9.63568 25.6586 9.8683 25.4793 10.054 25.2564C10.2358 25.0451 10.461 24.8755 10.7143 24.7593C10.9676 24.6431 11.2431 24.5829 11.5218 24.5829C11.8005 24.5829 12.0759 24.6431 12.3292 24.7593C12.5826 24.8755 12.8078 25.0451 12.9895 25.2564C13.176 25.4784 13.4087 25.657 13.6715 25.7795C13.9343 25.9019 14.2207 25.9654 14.5107 25.9654C14.8006 25.9654 15.0871 25.9019 15.3498 25.7795C15.6126 25.657 15.8454 25.4784 16.0319 25.2564C16.2136 25.0451 16.4388 24.8755 16.6921 24.7593C16.9455 24.6431 17.2209 24.5829 17.4996 24.5829C17.7783 24.5829 18.0537 24.6431 18.307 24.7593C18.5603 24.8755 18.7856 25.0451 18.9673 25.2564C19.1544 25.4786 19.3877 25.6572 19.651 25.7797C19.9143 25.9022 20.2012 25.9657 20.4916 25.9657C20.7821 25.9657 21.069 25.9022 21.3323 25.7797C21.5956 25.6572 21.8289 25.4786 22.0159 25.2564C22.1945 25.0439 22.4178 24.8734 22.6699 24.7571C22.922 24.6408 23.1967 24.5817 23.4743 24.5838C23.754 24.5798 24.0311 24.6381 24.2855 24.7544C24.5399 24.8707 24.7652 25.0422 24.9452 25.2564C25.1312 25.479 25.3639 25.658 25.6267 25.7807C25.8896 25.9035 26.1762 25.967 26.4663 25.9667C26.9127 25.9694 27.348 25.8276 27.7071 25.5625C28.0663 25.2974 28.33 24.9232 28.4589 24.4958Z" fill="url(#paint1_linear_4088_33973)"/>
|
|
5
|
-
<path d="M30.7974 18.0026C29.1306 16.1208 27.0834 14.6141 24.7911 13.5823C22.4988 12.5504 20.0136 12.0169 17.4997 12.0169C14.9859 12.0169 12.5007 12.5504 10.2084 13.5823C7.91606 14.6141 5.86886 16.1208 4.20208 18.0026C3.30283 18.0673 2.45208 18.435 1.78881 19.0457C1.12554 19.6564 0.688958 20.4739 0.550331 21.3647C0.411705 22.2556 0.579218 23.1671 1.02557 23.9505C1.47191 24.7338 2.17069 25.3427 3.00776 25.6776L4.17692 31.5925C4.31546 32.2698 4.68288 32.8788 5.21743 33.3172C5.75198 33.7556 6.42111 33.9967 7.11242 34H27.8556C28.5476 33.9991 29.2179 33.7588 29.7529 33.32C30.2879 32.8812 30.6547 32.2709 30.7911 31.5925L31.9602 25.6776C32.7968 25.3434 33.4955 24.7356 33.9423 23.9534C34.3891 23.1712 34.5577 22.2606 34.4206 21.3703C34.2835 20.4799 33.8488 19.6623 33.1874 19.0507C32.526 18.4391 31.6769 18.0696 30.7785 18.0026H30.7974ZM28.8613 31.2028C28.8151 31.4291 28.6924 31.6326 28.5139 31.7792C28.3353 31.9257 28.1117 32.0063 27.8808 32.0074H7.13755C6.90656 32.0063 6.68301 31.9257 6.50444 31.7792C6.32587 31.6326 6.20316 31.4291 6.15696 31.2028L5.15125 26.1301C5.52463 26.691 6.02993 27.1516 6.62284 27.4716C7.21574 27.7916 7.87812 27.9613 8.55186 27.9656C9.11803 27.9662 9.67778 27.8459 10.1938 27.6129C10.7097 27.3798 11.1701 27.0393 11.5439 26.6142C11.9173 27.0391 12.3771 27.3796 12.8925 27.6128C13.4079 27.846 13.9671 27.9666 14.5328 27.9666C15.0985 27.9666 15.6577 27.846 16.1731 27.6128C16.6886 27.3796 17.1483 27.0391 17.5217 26.6142C17.8946 27.039 18.3538 27.3793 18.8687 27.6125C19.3836 27.8457 19.9423 27.9663 20.5075 27.9663C21.0727 27.9663 21.6314 27.8457 22.1463 27.6125C22.6612 27.3793 23.1204 27.039 23.4933 26.6142C23.8671 27.0393 24.3274 27.3798 24.8434 27.6129C25.3594 27.8459 25.9192 27.9662 26.4853 27.9656C27.1583 27.9609 27.8199 27.7917 28.4126 27.4729C29.0053 27.1541 29.511 26.6953 29.8859 26.1364L28.8613 31.2028ZM29.7854 23.8421C29.6557 23.7896 29.5164 23.7652 29.3766 23.7706C29.2368 23.776 29.0997 23.8111 28.9745 23.8735C28.8498 23.937 28.7396 24.0256 28.6509 24.1338C28.5622 24.242 28.4968 24.3674 28.459 24.5021C28.3301 24.9295 28.0664 25.3037 27.7073 25.5688C27.3481 25.8339 26.9128 25.9757 26.4664 25.973C26.1763 25.9737 25.8895 25.9104 25.6266 25.7877C25.3637 25.6649 25.131 25.4856 24.9453 25.2627C24.7654 25.0485 24.54 24.877 24.2856 24.7607C24.0312 24.6444 23.7541 24.5861 23.4744 24.5901C23.1968 24.588 22.9221 24.6471 22.6701 24.7634C22.418 24.8797 22.1947 25.0502 22.0161 25.2627C21.829 25.4849 21.5957 25.6635 21.3324 25.786C21.0691 25.9085 20.7822 25.972 20.4918 25.972C20.2014 25.972 19.9144 25.9085 19.6511 25.786C19.3878 25.6635 19.1545 25.4849 18.9675 25.2627C18.7857 25.0514 18.5605 24.8818 18.3072 24.7656C18.0538 24.6494 17.7784 24.5892 17.4997 24.5892C17.221 24.5892 16.9456 24.6494 16.6923 24.7656C16.439 24.8818 16.2138 25.0514 16.032 25.2627C15.8456 25.4847 15.6128 25.6633 15.35 25.7858C15.0872 25.9082 14.8007 25.9717 14.5108 25.9717C14.2209 25.9717 13.9345 25.9082 13.6717 25.7858C13.4089 25.6633 13.1761 25.4847 12.9896 25.2627C12.8104 25.0493 12.5861 24.8784 12.3328 24.7621C12.0796 24.6458 11.8037 24.5871 11.525 24.5901C11.2453 24.5861 10.9682 24.6444 10.7138 24.7607C10.4594 24.877 10.2341 25.0485 10.0542 25.2627C9.86814 25.4853 9.63544 25.6643 9.37258 25.7871C9.10972 25.9098 8.82313 25.9733 8.53302 25.973C8.08721 25.9764 7.65237 25.8348 7.29408 25.5695C6.9358 25.3042 6.67346 24.9295 6.54668 24.5021C6.51109 24.3664 6.44661 24.24 6.35766 24.1315C6.2687 24.023 6.15735 23.935 6.03124 23.8735C5.90603 23.8111 5.76901 23.776 5.62921 23.7706C5.48941 23.7652 5.35005 23.7896 5.22038 23.8421C4.98774 23.9321 4.74064 23.9789 4.49121 23.9804C3.96274 23.9804 3.45592 23.7705 3.08223 23.3968C2.70854 23.0231 2.49861 22.5163 2.49861 21.9878C2.49861 21.4593 2.70854 20.9525 3.08223 20.5788C3.45592 20.2051 3.96274 19.9952 4.49121 19.9952C4.67026 20.0219 4.85319 20.0025 5.02261 19.9387C5.19203 19.8749 5.34233 19.7688 5.45925 19.6306C6.93422 17.8708 8.77691 16.4557 10.8577 15.4847C12.9384 14.5137 15.2067 14.0105 17.5029 14.0105C19.799 14.0105 22.0673 14.5137 24.1481 15.4847C26.2288 16.4557 28.0715 17.8708 29.5465 19.6306C29.6476 19.7546 29.7767 19.8529 29.9231 19.9173C30.0695 19.9818 30.2291 20.0106 30.3888 20.0015C30.6865 19.9851 30.984 20.0358 31.2595 20.1497C31.5349 20.2637 31.7813 20.438 31.9805 20.6598C32.1797 20.8816 32.3266 21.1453 32.4103 21.4314C32.4941 21.7175 32.5125 22.0187 32.4644 22.3129C32.4162 22.6071 32.3027 22.8868 32.1321 23.1313C31.9615 23.3757 31.7383 23.5788 31.4788 23.7256C31.2193 23.8723 30.9301 23.959 30.6327 23.9791C30.3353 23.9993 30.0371 23.9525 29.7602 23.8421H29.7854ZM13.1217 5.95265C13.5872 5.62837 13.9674 5.19638 14.23 4.69348C14.4925 4.19057 14.6297 3.63166 14.6297 3.06434C14.6297 2.49701 14.4925 1.93809 14.23 1.43518C13.9674 0.932273 13.5872 0.500283 13.1217 0.176002C13.0127 0.103774 12.8906 0.0537107 12.7623 0.0286783C12.6339 0.00364584 12.502 0.00412351 12.3738 0.0300978C12.2457 0.0560721 12.124 0.107023 12.0155 0.18005C11.9071 0.253076 11.8142 0.346745 11.7419 0.455707C11.6697 0.564668 11.6196 0.686789 11.5946 0.815096C11.5696 0.943404 11.57 1.07539 11.596 1.20351C11.622 1.33163 11.673 1.45338 11.746 1.56181C11.819 1.67023 11.9127 1.76322 12.0216 1.83545C12.2197 1.97175 12.3808 2.1551 12.4905 2.36904C12.6002 2.58298 12.6551 2.82081 12.6502 3.06119C12.6587 3.30655 12.6056 3.55012 12.4958 3.76971C12.386 3.98929 12.223 4.17791 12.0216 4.31836C11.5535 4.62699 11.1693 5.04697 10.9035 5.54065C10.6376 6.03433 10.4985 6.58627 10.4985 7.14697C10.4985 7.70768 10.6376 8.2596 10.9035 8.75328C11.1693 9.24696 11.5535 9.66696 12.0216 9.97559C12.1306 10.0478 12.2527 10.0979 12.381 10.1229C12.5093 10.1479 12.6413 10.1475 12.7694 10.1215C12.8976 10.0955 13.0193 10.0446 13.1277 9.97153C13.2362 9.8985 13.3292 9.80483 13.4014 9.69587C13.4736 9.58691 13.5237 9.46479 13.5487 9.33648C13.5737 9.20817 13.5732 9.07619 13.5473 8.94807C13.5213 8.81995 13.4703 8.6982 13.3973 8.58977C13.3243 8.48134 13.2306 8.38836 13.1217 8.31613C12.9297 8.18958 12.7722 8.01738 12.6632 7.81498C12.5543 7.61257 12.4972 7.38628 12.4972 7.15639C12.4972 6.92651 12.5543 6.70022 12.6632 6.49781C12.7722 6.2954 12.9297 6.12321 13.1217 5.99666V5.95265ZM18.1063 5.95265C18.5706 5.62748 18.9496 5.19519 19.2113 4.6924C19.473 4.18961 19.6096 3.63115 19.6096 3.06434C19.6096 2.49752 19.473 1.93904 19.2113 1.43625C18.9496 0.933465 18.5706 0.501178 18.1063 0.176002C17.8865 0.0498007 17.6269 0.0118422 17.3801 0.0698446C17.1333 0.127847 16.9178 0.277467 16.7772 0.488394C16.6366 0.699321 16.5813 0.955804 16.6227 1.20591C16.6641 1.45601 16.799 1.68104 17 1.83545C17.1989 1.97093 17.3606 2.15412 17.4704 2.36825C17.5803 2.58238 17.6346 2.82062 17.6286 3.06119C17.6382 3.30673 17.5856 3.55071 17.4757 3.77049C17.3658 3.99028 17.2022 4.17873 17 4.31836C16.5319 4.62699 16.1477 5.04697 15.8818 5.54065C15.616 6.03433 15.4769 6.58627 15.4769 7.14697C15.4769 7.70768 15.616 8.2596 15.8818 8.75328C16.1477 9.24696 16.5319 9.66696 17 9.97559C17.1139 10.0478 17.241 10.0969 17.3738 10.12C17.5067 10.1432 17.6429 10.1399 17.7745 10.1104C17.9061 10.081 18.0306 10.0258 18.141 9.94824C18.2513 9.87064 18.3452 9.77207 18.4175 9.65816C18.4897 9.54424 18.5388 9.41721 18.5619 9.28432C18.585 9.15144 18.5818 9.01531 18.5523 8.88369C18.5228 8.75207 18.4677 8.62753 18.3901 8.5172C18.3125 8.40688 18.2139 8.31293 18.1 8.2407C17.9067 8.11517 17.7479 7.94332 17.6379 7.74078C17.528 7.53824 17.4704 7.31143 17.4704 7.08097C17.4704 6.8505 17.528 6.62369 17.6379 6.42115C17.7479 6.21862 17.9067 6.04676 18.1 5.92123L18.1063 5.95265ZM23.0847 5.95265C23.5502 5.62837 23.9304 5.19638 24.193 4.69348C24.4555 4.19057 24.5927 3.63166 24.5927 3.06434C24.5927 2.49701 24.4555 1.93809 24.193 1.43518C23.9304 0.932273 23.5502 0.500283 23.0847 0.176002C22.9757 0.103774 22.8536 0.0537107 22.7253 0.0286783C22.597 0.00364584 22.465 0.00412351 22.3369 0.0300978C22.2088 0.0560721 22.087 0.107023 21.9786 0.18005C21.8702 0.253076 21.7772 0.346745 21.7049 0.455707C21.6327 0.564668 21.5826 0.686789 21.5576 0.815096C21.5326 0.943404 21.5331 1.07539 21.5591 1.20351C21.585 1.33163 21.636 1.45338 21.709 1.56181C21.782 1.67023 21.8757 1.76322 21.9847 1.83545C22.1827 1.97175 22.3438 2.1551 22.4536 2.36904C22.5633 2.58298 22.6181 2.82081 22.6132 3.06119C22.6217 3.30655 22.5686 3.55012 22.4588 3.76971C22.349 3.98929 22.186 4.17791 21.9847 4.31836C21.5165 4.62699 21.1323 5.04697 20.8665 5.54065C20.6007 6.03433 20.4615 6.58627 20.4615 7.14697C20.4615 7.70768 20.6007 8.2596 20.8665 8.75328C21.1323 9.24696 21.5165 9.66696 21.9847 9.97559C22.2047 10.1215 22.4737 10.1739 22.7325 10.1215C22.9912 10.069 23.2185 9.91593 23.3644 9.69587C23.5103 9.47581 23.5628 9.20682 23.5103 8.94807C23.4578 8.68932 23.3047 8.462 23.0847 8.31613C22.8928 8.18958 22.7353 8.01738 22.6263 7.81498C22.5173 7.61257 22.4602 7.38628 22.4602 7.15639C22.4602 6.92651 22.5173 6.70022 22.6263 6.49781C22.7353 6.2954 22.8928 6.12321 23.0847 5.99666V5.95265Z" fill="#1D1D1D"/>
|
|
6
|
-
<path d="M17.5028 16.0037C17.2377 16.0037 16.9835 16.109 16.7961 16.2964C16.6086 16.4838 16.5033 16.738 16.5033 17.0031V18.9957C16.5233 19.2463 16.6369 19.4801 16.8215 19.6507C17.0062 19.8212 17.2483 19.916 17.4996 19.916C17.751 19.916 17.9931 19.8212 18.1778 19.6507C18.3624 19.4801 18.476 19.2463 18.4959 18.9957V17.0031C18.4959 16.7391 18.3915 16.4859 18.2054 16.2986C18.0194 16.1113 17.7667 16.0053 17.5028 16.0037ZM24.1783 18.298L22.1857 16.3054C22.0943 16.2111 21.9849 16.1361 21.8639 16.0849C21.743 16.0337 21.613 16.0074 21.4817 16.0074C21.3504 16.0074 21.2204 16.0337 21.0995 16.0849C20.9785 16.1361 20.8691 16.2111 20.7777 16.3054C20.6849 16.3977 20.6113 16.5074 20.5611 16.6282C20.5109 16.749 20.485 16.8786 20.485 17.0094C20.485 17.1402 20.5109 17.2698 20.5611 17.3906C20.6113 17.5114 20.6849 17.6211 20.7777 17.7134L22.7703 19.706C22.957 19.8927 23.2102 19.9976 23.4743 19.9976C23.7383 19.9976 23.9916 19.8927 24.1783 19.706C24.365 19.5193 24.4699 19.266 24.4699 19.002C24.4699 18.7379 24.365 18.4847 24.1783 18.298ZM14.2216 16.3054C14.1302 16.2111 14.0207 16.1361 13.8998 16.0849C13.7789 16.0337 13.6489 16.0074 13.5176 16.0074C13.3863 16.0074 13.2562 16.0337 13.1353 16.0849C13.0144 16.1361 12.905 16.2111 12.8136 16.3054L10.8209 18.298C10.7267 18.3894 10.6517 18.4988 10.6005 18.6198C10.5493 18.7407 10.5229 18.8707 10.5229 19.002C10.5229 19.1333 10.5493 19.2633 10.6005 19.3842C10.6517 19.5052 10.7267 19.6146 10.8209 19.706C11.0081 19.8918 11.2612 19.996 11.5249 19.996C11.7887 19.996 12.0417 19.8918 12.229 19.706L14.2216 17.7134C14.3143 17.6211 14.3879 17.5114 14.4381 17.3906C14.4883 17.2698 14.5142 17.1402 14.5142 17.0094C14.5142 16.8786 14.4883 16.749 14.4381 16.6282C14.3879 16.5074 14.3143 16.3977 14.2216 16.3054Z" fill="#1D1D1D"/>
|
|
7
|
-
</g>
|
|
8
|
-
<defs>
|
|
9
|
-
<linearGradient id="paint0_linear_4088_33973" x1="17.5026" y1="32.0073" x2="17.5026" y2="26.1301" gradientUnits="userSpaceOnUse">
|
|
10
|
-
<stop stop-color="#F37C1C"/>
|
|
11
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
12
|
-
</linearGradient>
|
|
13
|
-
<linearGradient id="paint1_linear_4088_33973" x1="17.5027" y1="25.9667" x2="17.5027" y2="14.0111" gradientUnits="userSpaceOnUse">
|
|
14
|
-
<stop stop-color="#EFC530"/>
|
|
15
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
16
|
-
</linearGradient>
|
|
17
|
-
<clipPath id="clip0_4088_33973">
|
|
18
|
-
<rect width="34" height="34" fill="white" transform="translate(0.5)"/>
|
|
19
|
-
</clipPath>
|
|
20
|
-
</defs>
|
|
21
|
-
</svg>
|
|
@@ -1,37 +0,0 @@
|
|
|
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"/>
|
|
15
|
-
</g>
|
|
16
|
-
<defs>
|
|
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)"/>
|
|
35
|
-
</clipPath>
|
|
36
|
-
</defs>
|
|
37
|
-
</svg>
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M15.1059 21.9725L15.6422 22.231V31.2778H19.3514V22.2052L19.8878 21.9467C20.8272 21.492 21.6201 20.7828 22.1765 19.8997C22.7328 19.0167 23.0301 17.9952 23.0347 16.9516C23.0367 16.1188 22.8505 15.2964 22.4903 14.5456C22.13 13.7948 21.6048 13.1351 20.954 12.6156V17.1002L17.5033 19.1745L14.0461 17.1002V12.6221C13.3946 13.1409 12.8689 13.8005 12.5085 14.5515C12.1482 15.3024 11.9625 16.1251 11.9654 16.958C11.9657 18.0043 12.2604 19.0294 12.8158 19.9161C13.3711 20.8029 14.1647 21.5155 15.1059 21.9725Z" fill="url(#paint0_linear_4088_33986)"/>
|
|
3
|
-
<path d="M24.2564 26.3796L26.2919 28.4151L28.9154 25.7915L26.8799 23.756L27.2806 23.1098C27.9608 22.0257 28.4544 20.8353 28.741 19.588L28.909 18.8513H31.791V15.1422H28.909L28.741 14.4055C28.4544 13.1582 27.9608 11.9678 27.2806 10.8837L26.8799 10.2375L28.9154 8.20202L26.2919 5.57846L24.2564 7.61397L23.6102 7.21333C22.5261 6.53315 21.3357 6.0395 20.0884 5.75292L19.3517 5.58491V2.69641H15.6425V5.57846L14.8994 5.74001C13.6522 6.02658 12.4617 6.52022 11.3777 7.20041L10.7315 7.60105L8.69592 5.56553L6.07236 8.18909L6.88011 8.99684L8.1079 10.2246L7.70726 10.8708C7.02707 11.9549 6.53342 13.1453 6.24685 14.3926L6.07883 15.1293H3.19678V18.8384H6.07883L6.24685 19.5751C6.53342 20.8224 7.02707 22.0128 7.70726 23.0969L8.1079 23.7431L6.07236 25.7786L8.69592 28.4021L10.7315 26.3666L11.3777 26.7673C12.1211 27.2317 12.9144 27.6111 13.7427 27.8981V23.3747C12.7291 22.7819 11.8717 21.9555 11.2419 20.9644C10.4734 19.7695 10.0651 18.3787 10.0659 16.958C10.0617 15.4927 10.4924 14.0591 11.3033 12.8386C12.1143 11.6181 13.2691 10.6657 14.6215 10.1018L15.9139 9.55257V16.0533L17.4713 16.9903L19.0221 16.0533V9.59134L20.3145 10.1406C21.6672 10.7049 22.8224 11.6573 23.6344 12.8775C24.4463 14.0977 24.8786 15.5311 24.8767 16.9968C24.8792 18.4186 24.4684 19.8106 23.6942 21.0032C23.0627 21.9929 22.2057 22.8189 21.1934 23.4135V27.9369C22.0206 27.6473 22.8137 27.2681 23.5585 26.806L24.2047 26.4054L24.2564 26.3796Z" fill="url(#paint1_linear_4088_33986)"/>
|
|
4
|
-
<path d="M33.6905 20.7512V13.2489H30.3885C30.1151 12.3054 29.738 11.3952 29.2641 10.5348L31.5904 8.20853L26.2851 2.89679L23.9588 5.2231C23.0979 4.75022 22.1878 4.37317 21.2447 4.09871V0.80957H13.7359V4.11164C12.7925 4.38495 11.8823 4.76206 11.0219 5.23603L8.68913 2.90971L3.38388 8.215L5.71017 10.5413C5.2373 11.4022 4.86025 12.3123 4.5858 13.2553H1.30957V20.7641H4.59873C4.87205 21.7076 5.24914 22.6178 5.72311 23.4782L3.39678 25.8109L8.70207 31.1162L11.0284 28.7899C11.8887 29.2639 12.7989 29.641 13.7424 29.9143V33.1905H21.2512V29.9014C22.1947 29.6281 23.1049 29.251 23.9653 28.777L26.2915 31.1033L31.5968 25.798L29.2705 23.4717C29.7445 22.6114 30.1216 21.7011 30.3949 20.7577H33.6905V20.7512ZM19.3579 22.2052V31.2519H15.6487V22.2052L15.1123 21.9467C14.1729 21.492 13.38 20.7828 12.8236 19.8997C12.2673 19.0167 11.9699 17.9952 11.9654 16.9516C11.9634 16.1188 12.1496 15.2964 12.5098 14.5456C12.8701 13.7948 13.3953 13.1351 14.0461 12.6156V17.1067L17.5033 19.181L20.954 17.1067V12.6285C21.6055 13.1474 22.1312 13.807 22.4915 14.5579C22.8519 15.3088 23.0376 16.1316 23.0347 16.9645C23.0301 18.0082 22.7328 19.0296 22.1765 19.9127C21.6201 20.7957 20.8272 21.5049 19.8877 21.9596L19.3579 22.2116V22.2052ZM28.9216 25.7722L26.298 28.3957L24.2625 26.3602L23.6163 26.7609C22.8729 27.2253 22.0795 27.6047 21.2512 27.8917V23.3683C22.2649 22.7755 23.1222 21.9491 23.752 20.958C24.5205 19.7631 24.9288 18.3723 24.9281 16.9516C24.9349 15.4899 24.509 14.059 23.7041 12.8389C22.8991 11.6188 21.7511 10.6643 20.4047 10.0954L19.1123 9.53969V16.0017L17.555 16.9387L15.9976 16.0017V9.53969L14.7052 10.089C13.3533 10.6536 12.199 11.6062 11.3881 12.8265C10.5773 14.0468 10.1462 15.48 10.1495 16.9451C10.1447 18.3664 10.5534 19.7584 11.3256 20.9515C11.959 21.9397 12.8156 22.7653 13.8264 23.3619V27.8852C12.9981 27.5982 12.2048 27.2189 11.4613 26.7544L10.8151 26.3538L8.77961 28.3893L6.15605 25.7657L8.19159 23.7302L7.79095 23.084C7.11076 21.9999 6.61711 20.8095 6.33054 19.5622L6.16252 18.8256H3.28046V15.1164H6.16252L6.33054 14.3797C6.61711 13.1324 7.11076 11.942 7.79095 10.8579L8.19159 10.2117L6.15605 8.17622L8.77961 5.55266L10.8151 7.58818L11.4613 7.18754C12.5454 6.50735 13.7358 6.01371 14.9831 5.72713L15.7198 5.55912V2.67062H19.4289V5.55266L20.1656 5.72067C21.4129 6.00725 22.6033 6.50089 23.6874 7.18108L24.3336 7.58172L26.3691 5.5462L28.9927 8.16976L26.9571 10.2053L27.3578 10.8515C28.038 11.9355 28.5316 13.126 28.8182 14.3733L28.9862 15.1099H31.8747V18.8191H28.9927L28.8247 19.5558C28.5381 20.803 28.0444 21.9935 27.3643 23.0775L26.9636 23.7237L29.0056 25.7722H28.9216Z" fill="#1D1D1D"/>
|
|
5
|
-
<defs>
|
|
6
|
-
<linearGradient id="paint0_linear_4088_33986" x1="17.5033" y1="31.2972" x2="17.5033" y2="12.6414" gradientUnits="userSpaceOnUse">
|
|
7
|
-
<stop stop-color="#EFC530"/>
|
|
8
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
9
|
-
</linearGradient>
|
|
10
|
-
<linearGradient id="paint1_linear_4088_33986" x1="17.5036" y1="28.4151" x2="17.5036" y2="2.70934" gradientUnits="userSpaceOnUse">
|
|
11
|
-
<stop stop-color="#F37C1C"/>
|
|
12
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
13
|
-
</linearGradient>
|
|
14
|
-
</defs>
|
|
15
|
-
</svg>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<svg width="37" height="36" viewBox="0 0 37 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M0.5 18C0.5 8.05888 8.55888 0 18.5 0C28.4411 0 36.5 8.05888 36.5 18C36.5 27.9411 28.4411 36 18.5 36C8.55888 36 0.5 27.9411 0.5 18Z" fill="#E7F1FF"/>
|
|
3
|
-
<g clip-path="url(#clip0_6415_4758)">
|
|
4
|
-
<path d="M25.1667 14.68C25.2933 12.5192 22.5608 12.0442 21 11.3333V9.66667C21.221 9.66667 21.433 9.57887 21.5893 9.42259C21.7455 9.26631 21.8333 9.05435 21.8333 8.83333C21.8333 8.61232 21.7455 8.40036 21.5893 8.24408C21.433 8.0878 21.221 8 21 8H16C15.779 8 15.567 8.0878 15.4107 8.24408C15.2545 8.40036 15.1667 8.61232 15.1667 8.83333C15.1667 9.05435 15.2545 9.26631 15.4107 9.42259C15.567 9.57887 15.779 9.66667 16 9.66667V11.3333L13.9283 12.1667C13.4963 12.2616 13.0944 12.462 12.7585 12.7499C12.4226 13.0378 12.1631 13.4043 12.0032 13.8167C11.8432 14.2292 11.7878 14.6748 11.8417 15.1139C11.8957 15.553 12.0574 15.9719 12.3125 16.3333H21C21.221 16.3333 21.433 16.4211 21.5893 16.5774C21.7455 16.7337 21.8333 16.9457 21.8333 17.1667C21.8333 17.3877 21.7455 17.5996 21.5893 17.7559C21.433 17.9122 21.221 18 21 18H12.3117C12.0043 18.5016 11.8416 19.0784 11.8416 19.6667C11.8416 20.2549 12.0043 20.8317 12.3117 21.3333H21C21.221 21.3333 21.433 21.4211 21.5893 21.5774C21.7455 21.7337 21.8333 21.9457 21.8333 22.1667C21.8333 22.3877 21.7455 22.5996 21.5893 22.7559C21.433 22.9122 21.221 23 21 23H12.3117C12.018 23.504 11.8621 24.0764 11.8596 24.6597C11.857 25.2431 12.008 25.8168 12.2972 26.3234C12.5864 26.8299 13.0038 27.2515 13.5075 27.5458C14.0111 27.8401 14.5833 27.9967 15.1667 28H21.8333C22.5072 27.9927 23.1631 27.7816 23.7147 27.3946C24.2664 27.0075 24.688 26.4625 24.924 25.8313C25.1601 25.2001 25.1996 24.5122 25.0374 23.8581C24.8751 23.204 24.5187 22.6144 24.015 22.1667C24.3705 21.8544 24.6554 21.4698 24.8505 21.0387C25.0456 20.6076 25.1465 20.1399 25.1465 19.6667C25.1465 19.1935 25.0456 18.7257 24.8505 18.2946C24.6554 17.8635 24.3705 17.479 24.015 17.1667C24.3719 16.8572 24.6592 16.4756 24.8577 16.0469C25.0562 15.6183 25.1615 15.1524 25.1667 14.68Z" fill="#3B82F6"/>
|
|
5
|
-
</g>
|
|
6
|
-
<defs>
|
|
7
|
-
<clipPath id="clip0_6415_4758">
|
|
8
|
-
<rect width="20" height="20" fill="white" transform="translate(8.5 8)"/>
|
|
9
|
-
</clipPath>
|
|
10
|
-
</defs>
|
|
11
|
-
</svg>
|
|
@@ -1,22 +0,0 @@
|
|
|
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>
|
|
22
|
-
</svg>
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M17.3361 29.8243C22.5831 29.8243 26.8367 25.5707 26.8367 20.3236C26.8367 15.0766 22.5831 10.823 17.3361 10.823C12.089 10.823 7.83545 15.0766 7.83545 20.3236C7.83545 25.5707 12.089 29.8243 17.3361 29.8243Z" fill="white"/>
|
|
3
|
-
<path d="M29.0351 30.356V9.84961H5.63721V30.356C5.63721 30.6078 5.73725 30.8493 5.91533 31.0274C6.09342 31.2055 6.33495 31.3056 6.5868 31.3056H28.0902C28.3412 31.3043 28.5816 31.2037 28.7586 31.0257C28.9357 30.8478 29.0351 30.607 29.0351 30.356ZM17.3361 29.093C15.0695 29.093 12.8957 28.1926 11.293 26.5899C9.69025 24.9871 8.78984 22.8133 8.78984 20.5467C8.78984 18.2801 9.69025 16.1063 11.293 14.5036C12.8957 12.9008 15.0695 12.0004 17.3361 12.0004C19.6027 12.0004 21.7765 12.9008 23.3793 14.5036C24.982 16.1063 25.8824 18.2801 25.8824 20.5467C25.8787 22.8109 24.9766 24.981 23.3742 26.5807C21.7719 28.1803 19.6003 29.0788 17.3361 29.0788V29.093Z" fill="url(#paint0_linear_4088_34002)"/>
|
|
4
|
-
<path d="M28.0855 31.3056H6.58208C6.32224 31.3043 6.07347 31.2002 5.89018 31.0161C5.70689 30.8319 5.604 30.5826 5.604 30.3228V9.82117H29.0683V30.356C29.0597 30.6109 28.9524 30.8524 28.769 31.0296C28.5856 31.2068 28.3405 31.3057 28.0855 31.3056ZM5.66572 9.8639V30.356C5.66572 30.599 5.76227 30.8321 5.93412 31.004C6.10597 31.1758 6.33905 31.2724 6.58208 31.2724H28.0855C28.206 31.273 28.3255 31.2497 28.4369 31.2039C28.5484 31.1581 28.6496 31.0906 28.7349 31.0054C28.8201 30.9202 28.8876 30.8189 28.9334 30.7074C28.9792 30.596 29.0025 30.4765 29.0019 30.356V9.88289L5.66572 9.8639ZM17.3362 29.0883C15.0665 29.0871 12.8898 28.1865 11.2826 26.5838C9.67551 24.9811 8.76892 22.8069 8.76138 20.5373C8.77017 18.2692 9.67665 16.097 11.2826 14.4954C12.8886 12.8939 15.0634 11.9935 17.3314 11.991C19.5995 11.9935 21.7742 12.8939 23.3802 14.4954C24.9862 16.097 25.8927 18.2692 25.9014 20.5373C25.8989 22.8086 24.9959 24.9862 23.3902 26.5928C21.7846 28.1993 19.6075 29.1035 17.3362 29.1073V29.0883ZM17.3362 11.9957C15.0812 11.9982 12.9193 12.8948 11.3243 14.4888C9.72939 16.0829 8.83162 18.2443 8.82785 20.4993C8.83037 22.7551 9.72759 24.9177 11.3227 26.5128C12.9177 28.1079 15.0804 29.0051 17.3362 29.0076C19.5874 29.0089 21.7475 28.1184 23.3438 26.531C24.9401 24.9436 25.8427 22.7885 25.854 20.5373C25.8514 18.2803 24.9528 16.1167 23.3555 14.5221C21.7583 12.9275 19.5931 12.0324 17.3362 12.0337V11.9957Z" fill="black"/>
|
|
5
|
-
<path d="M5.63721 3.65357V7.9552H10.822V2.70398H6.58205C6.33103 2.70523 6.09071 2.80583 5.91365 2.98377C5.7366 3.16172 5.6372 3.40254 5.63721 3.65357Z" fill="url(#paint1_linear_4088_34002)"/>
|
|
6
|
-
<path d="M10.8505 7.98361H5.604V3.65349C5.604 3.39409 5.70705 3.14531 5.89047 2.96189C6.07389 2.77846 6.32268 2.67542 6.58208 2.67542H10.8552L10.8505 7.98361ZM5.66572 7.92188H10.7888V2.73713H6.58208C6.33943 2.73837 6.10708 2.83533 5.9355 3.00691C5.76392 3.17849 5.66697 3.41084 5.66572 3.65349V7.92188Z" fill="black"/>
|
|
7
|
-
<path d="M28.0854 2.70398H12.7163V7.9552H29.035V3.65357C29.035 3.40172 28.9349 3.16019 28.7569 2.98211C28.5788 2.80402 28.3372 2.70398 28.0854 2.70398ZM15.8167 6.3124C15.5649 6.3124 15.3233 6.21236 15.1453 6.03428C14.9672 5.85619 14.8671 5.61466 14.8671 5.36281C14.8671 5.11097 14.9672 4.86945 15.1453 4.69137C15.3233 4.51329 15.5649 4.41323 15.8167 4.41323C16.0686 4.41323 16.3101 4.51329 16.4882 4.69137C16.6663 4.86945 16.7663 5.11097 16.7663 5.36281C16.7663 5.61466 16.6663 5.85619 16.4882 6.03428C16.3101 6.21236 16.0686 6.3124 15.8167 6.3124ZM20.878 6.3124H19.8667C19.6149 6.3124 19.3733 6.21236 19.1952 6.03428C19.0172 5.85619 18.9171 5.61466 18.9171 5.36281C18.9171 5.11097 19.0172 4.86945 19.1952 4.69137C19.3733 4.51329 19.6149 4.41323 19.8667 4.41323H20.878C21.1299 4.41323 21.3714 4.51329 21.5495 4.69137C21.7276 4.86945 21.8276 5.11097 21.8276 5.36281C21.8276 5.61466 21.7276 5.85619 21.5495 6.03428C21.3714 6.21236 21.1299 6.3124 20.878 6.3124ZM25.9346 6.3124H24.9043C24.6524 6.3124 24.4109 6.21236 24.2328 6.03428C24.0547 5.85619 23.9547 5.61466 23.9547 5.36281C23.9547 5.11097 24.0547 4.86945 24.2328 4.69137C24.4109 4.51329 24.6524 4.41323 24.9043 4.41323H25.9156C26.1674 4.41323 26.409 4.51329 26.587 4.69137C26.7651 4.86945 26.8652 5.11097 26.8652 5.36281C26.8652 5.6114 26.7678 5.85011 26.5938 6.02765C26.4198 6.2052 26.1831 6.30743 25.9346 6.3124Z" fill="url(#paint2_linear_4088_34002)"/>
|
|
8
|
-
<path d="M29.0684 7.98361H12.688V2.67542H28.0856C28.3454 2.67541 28.5947 2.77829 28.7788 2.96158C28.963 3.14487 29.0671 3.39365 29.0684 3.65349V7.98361ZM12.7497 7.92188H29.0019V3.64874C29.0019 3.40571 28.9054 3.17263 28.7335 3.00078C28.5617 2.82893 28.3286 2.73239 28.0856 2.73239H12.7497V7.92188ZM25.9347 6.34083H24.9044C24.645 6.34083 24.3963 6.23778 24.2128 6.05435C24.0294 5.87093 23.9264 5.62214 23.9264 5.36274C23.9264 5.1029 24.0293 4.85363 24.2125 4.66945C24.3958 4.48528 24.6446 4.38118 24.9044 4.37992H25.9158C26.1764 4.37992 26.4264 4.48347 26.6107 4.66779C26.795 4.8521 26.8986 5.10208 26.8986 5.36274C26.8974 5.61932 26.7959 5.86526 26.6158 6.04802C26.4357 6.23078 26.1913 6.33587 25.9347 6.34083ZM24.9234 4.44165C24.6804 4.44165 24.4473 4.53819 24.2755 4.71004C24.1036 4.88189 24.0071 5.11497 24.0071 5.358C24.0083 5.60065 24.1053 5.833 24.2769 6.00458C24.4484 6.17616 24.6808 6.2731 24.9234 6.27435H25.9347C26.1778 6.27435 26.4108 6.17781 26.5827 6.00596C26.7545 5.83411 26.8511 5.60103 26.8511 5.358C26.8517 5.23749 26.8284 5.11804 26.7826 5.00658C26.7368 4.89512 26.6693 4.79385 26.5841 4.70863C26.4989 4.62342 26.3976 4.55594 26.2862 4.51011C26.1747 4.46428 26.0553 4.44102 25.9347 4.44165H24.9234ZM20.8782 6.34083H19.8669C19.607 6.34083 19.3578 6.23793 19.1736 6.05464C18.9894 5.87135 18.8853 5.62257 18.8841 5.36274C18.8841 5.10208 18.9876 4.8521 19.1719 4.66779C19.3562 4.48347 19.6062 4.37992 19.8669 4.37992H20.8782C21.138 4.38118 21.3868 4.48528 21.5701 4.66945C21.7534 4.85363 21.8563 5.1029 21.8563 5.36274C21.8563 5.62214 21.7532 5.87093 21.5698 6.05435C21.3864 6.23778 21.1376 6.34083 20.8782 6.34083ZM19.8669 4.44165C19.7461 4.44102 19.6265 4.46425 19.5147 4.51003C19.403 4.5558 19.3014 4.62321 19.2158 4.70836C19.1302 4.79351 19.0623 4.89473 19.016 5.00622C18.9696 5.11771 18.9458 5.23726 18.9458 5.358C18.947 5.60147 19.0446 5.83453 19.2172 6.00625C19.3898 6.17796 19.6234 6.27435 19.8669 6.27435H20.8782C21.1208 6.2731 21.3532 6.17616 21.5248 6.00458C21.6963 5.833 21.7933 5.60065 21.7945 5.358C21.7945 5.11497 21.698 4.88189 21.5261 4.71004C21.3543 4.53819 21.1212 4.44165 20.8782 4.44165H19.8669ZM15.8169 6.34083C15.5575 6.34083 15.3087 6.23778 15.1253 6.05435C14.9419 5.87093 14.8388 5.62214 14.8388 5.36274C14.8388 5.1029 14.9417 4.85363 15.125 4.66945C15.3083 4.48528 15.557 4.38118 15.8169 4.37992C16.0775 4.37992 16.3275 4.48347 16.5118 4.66779C16.6962 4.8521 16.7997 5.10208 16.7997 5.36274C16.7984 5.62257 16.6943 5.87135 16.5102 6.05464C16.326 6.23793 16.0767 6.34083 15.8169 6.34083ZM15.8169 4.44165C15.5738 4.44165 15.3408 4.53819 15.1689 4.71004C14.9971 4.88189 14.9005 5.11497 14.9005 5.358C14.9018 5.60065 14.9987 5.833 15.1703 6.00458C15.3419 6.17616 15.5742 6.2731 15.8169 6.27435C16.0599 6.27435 16.293 6.17781 16.4648 6.00596C16.6367 5.83411 16.7332 5.60103 16.7332 5.358C16.7332 5.23788 16.7095 5.11896 16.6634 5.00805C16.6173 4.89714 16.5497 4.79642 16.4646 4.71171C16.3794 4.62699 16.2783 4.55995 16.1672 4.51442C16.056 4.46888 15.937 4.44576 15.8169 4.44639V4.44165Z" fill="black"/>
|
|
9
|
-
<path d="M28.0856 33.2048H6.58216C5.82662 33.2048 5.10203 32.9046 4.56778 32.3704C4.03353 31.8361 3.7334 31.1115 3.7334 30.356V3.65357C3.7334 2.89803 4.03353 2.17344 4.56778 1.63919C5.10203 1.10494 5.82662 0.80481 6.58216 0.80481H28.0856C28.8411 0.80481 29.5657 1.10494 30.1 1.63919C30.6342 2.17344 30.9343 2.89803 30.9343 3.65357V30.356C30.9343 31.1115 30.6342 31.8361 30.1 32.3704C29.5657 32.9046 28.8411 33.2048 28.0856 33.2048ZM6.58216 2.72297C6.33032 2.72297 6.08878 2.82301 5.9107 3.00109C5.73262 3.17918 5.63257 3.42071 5.63257 3.67255V30.356C5.63257 30.6078 5.73262 30.8494 5.9107 31.0274C6.08878 31.2055 6.33032 31.3056 6.58216 31.3056H28.0856C28.3374 31.3056 28.579 31.2055 28.757 31.0274C28.9351 30.8494 29.0352 30.6078 29.0352 30.356V3.65357C29.0352 3.40173 28.9351 3.1602 28.757 2.98211C28.579 2.80403 28.3374 2.70399 28.0856 2.70399L6.58216 2.72297Z" fill="#1D1D1D"/>
|
|
10
|
-
<path d="M29.9849 9.84962H4.68787C4.43602 9.84962 4.19449 9.74957 4.01641 9.57149C3.83833 9.39341 3.73828 9.15187 3.73828 8.90003C3.73828 8.64818 3.83833 8.40665 4.01641 8.22857C4.19449 8.05048 4.43602 7.95044 4.68787 7.95044H29.9849C30.2367 7.95044 30.4783 8.05048 30.6564 8.22857C30.8344 8.40665 30.9345 8.64818 30.9345 8.90003C30.9345 9.15187 30.8344 9.39341 30.6564 9.57149C30.4783 9.74957 30.2367 9.84962 29.9849 9.84962Z" fill="#1D1D1D"/>
|
|
11
|
-
<path d="M11.7713 9.84963C11.5194 9.84963 11.2779 9.74959 11.0998 9.5715C10.9217 9.39342 10.8217 9.15189 10.8217 8.90004V1.7544C10.8217 1.50255 10.9217 1.26102 11.0998 1.08294C11.2779 0.904854 11.5194 0.80481 11.7713 0.80481C12.0231 0.80481 12.2646 0.904854 12.4427 1.08294C12.6208 1.26102 12.7208 1.50255 12.7208 1.7544V8.90479C12.7196 9.15582 12.619 9.39613 12.441 9.57318C12.2631 9.75024 12.0223 9.84963 11.7713 9.84963ZM25.9344 6.31241H24.9041C24.6522 6.31241 24.4107 6.21236 24.2326 6.03428C24.0545 5.8562 23.9545 5.61467 23.9545 5.36282C23.9545 5.11097 24.0545 4.86946 24.2326 4.69137C24.4107 4.51329 24.6522 4.41323 24.9041 4.41323H25.9154C26.1672 4.41323 26.4088 4.51329 26.5868 4.69137C26.7649 4.86946 26.865 5.11097 26.865 5.36282C26.865 5.61141 26.7676 5.85011 26.5936 6.02766C26.4196 6.20521 26.1829 6.30744 25.9344 6.31241ZM20.8778 6.31241H19.8665C19.6146 6.31241 19.3731 6.21236 19.195 6.03428C19.017 5.8562 18.9169 5.61467 18.9169 5.36282C18.9169 5.11097 19.017 4.86946 19.195 4.69137C19.3731 4.51329 19.6146 4.41323 19.8665 4.41323H20.8778C21.1297 4.41323 21.3712 4.51329 21.5493 4.69137C21.7274 4.86946 21.8274 5.11097 21.8274 5.36282C21.8274 5.61467 21.7274 5.8562 21.5493 6.03428C21.3712 6.21236 21.1297 6.31241 20.8778 6.31241ZM17.3358 29.0788C15.0692 29.0788 12.8954 28.1784 11.2927 26.5756C9.68996 24.9729 8.78955 22.7991 8.78955 20.5325C8.78955 18.2659 9.68996 16.0921 11.2927 14.4894C12.8954 12.8866 15.0692 11.9862 17.3358 11.9862C19.6025 11.9862 21.7762 12.8866 23.379 14.4894C24.9817 16.0921 25.8821 18.2659 25.8821 20.5325C25.8821 22.7991 24.9817 24.9729 23.379 26.5756C21.7762 28.1784 19.6025 29.0788 17.3358 29.0788ZM17.3358 13.8854C15.5729 13.8854 13.8822 14.5857 12.6356 15.8323C11.389 17.0788 10.6887 18.7696 10.6887 20.5325C10.6887 22.2954 11.389 23.9861 12.6356 25.2327C13.8822 26.4793 15.5729 27.1796 17.3358 27.1796C19.0988 27.1796 20.7895 26.4793 22.0361 25.2327C23.2826 23.9861 23.983 22.2954 23.983 20.5325C23.9792 18.772 23.2772 17.085 22.031 15.8415C20.7849 14.598 19.0963 13.8996 17.3358 13.8996V13.8854Z" fill="#1D1D1D"/>
|
|
12
|
-
<path d="M15.8168 6.31251C16.3412 6.31251 16.7664 5.88736 16.7664 5.36292C16.7664 4.83848 16.3412 4.41333 15.8168 4.41333C15.2923 4.41333 14.8672 4.83848 14.8672 5.36292C14.8672 5.88736 15.2923 6.31251 15.8168 6.31251Z" fill="#1D1D1D"/>
|
|
13
|
-
<defs>
|
|
14
|
-
<linearGradient id="paint0_linear_4088_34002" x1="17.3361" y1="31.2913" x2="17.3361" y2="9.84961" gradientUnits="userSpaceOnUse">
|
|
15
|
-
<stop stop-color="#F37C1C"/>
|
|
16
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
17
|
-
</linearGradient>
|
|
18
|
-
<linearGradient id="paint1_linear_4088_34002" x1="8.22958" y1="7.9552" x2="8.22958" y2="2.70398" gradientUnits="userSpaceOnUse">
|
|
19
|
-
<stop stop-color="#EFC530"/>
|
|
20
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
21
|
-
</linearGradient>
|
|
22
|
-
<linearGradient id="paint2_linear_4088_34002" x1="20.878" y1="7.9552" x2="20.878" y2="2.70398" gradientUnits="userSpaceOnUse">
|
|
23
|
-
<stop stop-color="#EFC530"/>
|
|
24
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
25
|
-
</linearGradient>
|
|
26
|
-
</defs>
|
|
27
|
-
</svg>
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
<svg width="35" height="34" viewBox="0 0 35 34" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M16.3173 8.55833C16.0316 8.35363 15.1701 9.03596 15.1701 9.03596L13.8225 10.3537C13.8225 10.3537 13.2468 12.179 13.4941 12.179C13.7415 12.179 13.8652 14.2473 13.8652 14.2473V14.9509L11.3491 15.5309L10.1934 16.9979V18.8871L10.6198 21.2455C10.6198 21.2455 12.4493 25.7318 12.573 25.6039C12.6967 25.4759 13.7287 27.6253 13.7287 27.6253L13.976 29.1989C13.976 29.1989 13.315 31.0668 13.315 31.2587C13.315 31.4506 14.5262 32.7428 14.5262 32.7428C14.5262 32.7428 16.7693 33.1394 16.7779 33.0114C16.7864 32.8835 17.2726 28.9089 17.2726 28.9089L16.1211 26.0943L14.9739 23.736L13.7287 21.2455C13.7287 21.2455 13.1359 18.6483 12.7734 18.7677C12.4109 18.8871 12.5303 17.7272 12.5303 17.7272L14.0997 17.0022H15.7544C15.7544 17.0022 15.6861 14.8017 15.6648 14.6524C15.6435 14.5032 15.4175 12.3069 15.4175 12.3069L16.3045 10.567L16.6883 9.81638V9.38993L16.3173 8.55833Z" fill="white"/>
|
|
3
|
-
<path d="M9.021 2.30212H12.2407V4.13589H9.021V2.30212Z" fill="white"/>
|
|
4
|
-
<path d="M7.2256 11.6757C7.05255 11.6751 6.88131 11.6405 6.72164 11.5737C6.56198 11.507 6.41702 11.4095 6.29505 11.2867C6.17308 11.1639 6.0765 11.0184 6.01079 10.8583C5.94509 10.6982 5.91156 10.5267 5.91212 10.3537C5.91339 9.07461 6.42088 7.84805 7.32369 6.942L8.97408 5.27881H12.2877L13.9381 6.942C14.6679 7.6697 15.1435 8.61342 15.2942 9.63295V9.70119L15.2473 9.74382C14.7075 10.2092 14.3671 10.8642 14.2963 11.5733V11.6714H14.1982H14.0447L7.2256 11.6757Z" fill="url(#paint0_linear_4088_33991)"/>
|
|
5
|
-
<path d="M12.2407 5.38122L13.8527 7.00603C14.5604 7.71567 15.0222 8.6333 15.1704 9.62447C14.61 10.1144 14.2564 10.7987 14.1811 11.5393C14.1299 11.5393 14.0872 11.5393 14.036 11.5393H7.21272C7.05591 11.5387 6.90076 11.5073 6.7561 11.4467C6.61144 11.3862 6.48012 11.2978 6.36963 11.1865C6.25915 11.0752 6.17166 10.9433 6.11217 10.7982C6.05268 10.6531 6.02235 10.4977 6.02291 10.3409C6.02107 9.72039 6.1418 9.10559 6.37818 8.53183C6.61457 7.95807 6.96193 7.43664 7.40036 6.99749L9.00812 5.37269H12.2279M12.326 5.11682H8.9143L8.84179 5.19358L7.22978 6.81838C6.76762 7.27993 6.40152 7.8285 6.15264 8.43239C5.90377 9.03627 5.77706 9.68351 5.77983 10.3367C5.77927 10.526 5.81599 10.7135 5.88791 10.8886C5.95984 11.0637 6.06555 11.2229 6.199 11.3572C6.33245 11.4914 6.49104 11.598 6.66571 11.671C6.84038 11.744 7.0277 11.7818 7.21699 11.7823H14.0403C14.1 11.7823 14.1555 11.7823 14.2152 11.7823L14.4156 11.7568V11.5563C14.4846 10.8781 14.8113 10.2523 15.3282 9.80786L15.4306 9.71829V9.58184C15.2719 8.53782 14.785 7.57142 14.0403 6.82265L12.4326 5.19784L12.3558 5.12961L12.326 5.11682Z" fill="#1D1D1D"/>
|
|
6
|
-
<path d="M7.02516 18.3882C6.72918 18.386 6.44608 18.2668 6.23759 18.0567C6.02909 17.8466 5.9121 17.5626 5.91211 17.2667V13.791C5.91322 13.4958 6.03071 13.2129 6.23908 13.0037C6.44746 12.7945 6.72991 12.6759 7.02516 12.6737H14.3858L14.8507 15.9788L14.6588 15.9063C14.4446 15.8257 14.221 15.7727 13.9935 15.7485C13.8884 15.742 13.783 15.742 13.6779 15.7485C13.0412 15.747 12.4236 15.9654 11.9294 16.3668C11.6366 16.6019 11.3937 16.8932 11.215 17.2235C11.0364 17.5538 10.9255 17.9164 10.8889 18.2901V18.401L7.02516 18.3882Z" fill="url(#paint1_linear_4088_33991)"/>
|
|
7
|
-
<path d="M14.2279 12.7973H14.2663L14.6928 15.7825C14.4699 15.7005 14.2379 15.6461 14.0019 15.6204C13.8925 15.6141 13.7829 15.6141 13.6735 15.6204C13.0071 15.6186 12.3606 15.8476 11.844 16.2687C11.5384 16.5144 11.2848 16.8186 11.0981 17.1635C10.9113 17.5084 10.7952 17.887 10.7565 18.2773H7.02504C6.76259 18.275 6.5116 18.1695 6.32642 17.9835C6.14123 17.7975 6.03677 17.5461 6.03566 17.2836V13.808C6.03565 13.5448 6.13962 13.2923 6.32492 13.1054C6.51023 12.9185 6.76185 12.8123 7.02504 12.8101H14.2279M14.2279 12.5585H7.01651C6.68808 12.5618 6.37417 12.6944 6.14272 12.9274C5.91127 13.1605 5.78089 13.4753 5.77979 13.8037V17.2794C5.77978 17.6082 5.90981 17.9236 6.1415 18.1569C6.37319 18.3902 6.68773 18.5224 7.01651 18.5246H10.974L10.9996 18.3029C11.0333 17.9459 11.1383 17.5994 11.3082 17.2837C11.4781 16.968 11.7096 16.6895 11.989 16.4648C12.463 16.0806 13.0548 15.8713 13.665 15.8721C13.7663 15.8728 13.8674 15.8799 13.9678 15.8934C14.1865 15.9154 14.4015 15.9656 14.6075 16.0426L14.9955 16.1834L14.9401 15.7569L14.5136 12.7717L14.4838 12.567H14.2748C14.2579 12.5638 14.2406 12.5638 14.2236 12.567L14.2279 12.5585Z" fill="#1D1D1D"/>
|
|
8
|
-
<path d="M7.02516 31.8216C6.72952 31.8183 6.44708 31.6987 6.23882 31.4889C6.03057 31.279 5.91321 30.9957 5.91211 30.7V20.5034C5.91322 20.2082 6.03071 19.9253 6.23908 19.7161C6.44746 19.5069 6.72991 19.3884 7.02516 19.3861H10.987L11.0211 19.4714C11.0431 19.551 11.0731 19.6281 11.1106 19.7017L13.2429 24.5335C13.7334 25.6421 14.4196 26.6533 15.2686 27.5187L15.307 27.557V29.4377L15.2686 29.4761C14.9796 29.7495 14.7641 30.0913 14.6419 30.4699C14.5197 30.8485 14.4947 31.2517 14.5692 31.6425L14.5948 31.7619L14.4754 31.7832C14.3986 31.8018 14.3198 31.8104 14.2408 31.8088H7.01663L7.02516 31.8216Z" fill="url(#paint2_linear_4088_33991)"/>
|
|
9
|
-
<path d="M10.9017 19.5098L10.9955 19.7529L13.1278 24.5846C13.6242 25.7089 14.3191 26.7346 15.179 27.6125V29.3908C14.8756 29.6804 14.6492 30.041 14.5203 30.4402C14.3915 30.8393 14.3643 31.2643 14.4413 31.6766C14.3726 31.6917 14.3026 31.7003 14.2323 31.7022H7.02091C6.75772 31.7 6.50608 31.5938 6.32078 31.4069C6.13548 31.22 6.03151 30.9675 6.03152 30.7043V20.512C6.03151 20.2488 6.13548 19.9962 6.32078 19.8093C6.50608 19.6224 6.75772 19.5163 7.02091 19.5141H10.8974M11.0723 19.2582H7.02091C6.69247 19.2615 6.37856 19.3941 6.14711 19.6271C5.91566 19.8602 5.78528 20.175 5.78418 20.5034V30.7001C5.78417 31.0288 5.91419 31.3443 6.14588 31.5776C6.37757 31.8109 6.69212 31.9431 7.02091 31.9453H14.228C14.3155 31.9438 14.4026 31.9338 14.4882 31.9155L14.7227 31.8643L14.6801 31.6255C14.6097 31.2552 14.6338 30.8732 14.7501 30.5146C14.8663 30.1561 15.0711 29.8327 15.3454 29.5742L15.4221 29.4974V27.5187L15.3496 27.4419C14.5084 26.5876 13.8293 25.5877 13.3453 24.4908L11.213 19.6591C11.1787 19.586 11.1502 19.5105 11.1277 19.433L11.0723 19.2582Z" fill="#1D1D1D"/>
|
|
10
|
-
<path d="M7.02501 33.0668C6.71495 33.0663 6.40806 33.0046 6.12187 32.8853C5.83568 32.766 5.57581 32.5914 5.35716 32.3716C5.13851 32.1517 4.96537 31.8909 4.84762 31.6041C4.72987 31.3173 4.66984 31.01 4.67096 30.7V20.5034C4.67105 19.9029 4.89977 19.325 5.31065 18.8871C4.89613 18.4498 4.6669 17.8691 4.67096 17.2666V13.7909C4.67478 13.1616 4.92421 12.5587 5.36609 12.1107C4.91543 11.6355 4.66629 11.0043 4.67096 10.3494C4.669 9.54945 4.82467 8.75694 5.12907 8.01717C5.43347 7.27739 5.88064 6.60483 6.44503 6.03791L7.7244 4.75854C7.68837 4.65289 7.67106 4.54177 7.67323 4.43017V1.99936C7.6721 1.85919 7.69874 1.7202 7.7516 1.59038C7.80446 1.46056 7.8825 1.34249 7.98122 1.24298C8.07993 1.14347 8.19737 1.06449 8.32677 1.01059C8.45616 0.956698 8.59494 0.928951 8.73511 0.928955H12.5221C12.6624 0.928954 12.8014 0.956671 12.931 1.01052C13.0607 1.06436 13.1784 1.14327 13.2774 1.24272C13.3765 1.34217 13.455 1.46021 13.5083 1.59005C13.5616 1.71989 13.5888 1.85899 13.5882 1.99936V4.43017C13.5861 4.54144 13.5689 4.65191 13.537 4.75854L14.8164 6.03791C15.6198 6.84995 16.1797 7.87079 16.4327 8.98474L16.4583 9.10415L16.3389 9.134C15.9339 9.24293 15.559 9.44274 15.2429 9.71825L15.0765 9.86751L15.0424 9.64576C14.8992 8.67839 14.451 7.78198 13.763 7.08701L12.1851 5.49205H9.07201L7.49838 7.09553C6.63898 7.96019 6.15743 9.13031 6.1593 10.3494C6.15874 10.4898 6.1859 10.6289 6.23923 10.7587C6.29256 10.8886 6.371 11.0066 6.47006 11.106C6.56911 11.2055 6.68683 11.2844 6.81646 11.3383C6.94609 11.3921 7.08507 11.4198 7.22544 11.4198H14.1682H14.3217V11.5733C14.294 11.7971 14.294 12.0234 14.3217 12.2472L14.4198 12.9423H7.02927C6.80307 12.9423 6.58612 13.0321 6.42617 13.1921C6.26622 13.352 6.17636 13.569 6.17636 13.7952V17.2708C6.17636 17.497 6.26622 17.714 6.42617 17.8739C6.58612 18.0339 6.80307 18.1237 7.02927 18.1237H10.8973V18.2602C10.8526 18.6634 10.8992 19.0715 11.0337 19.4543L11.0892 19.6163H7.03781C6.8116 19.6163 6.59466 19.7062 6.43471 19.8662C6.27476 20.0261 6.1849 20.2431 6.1849 20.4693V30.6659C6.1849 30.8921 6.27476 31.109 6.43471 31.269C6.59466 31.4289 6.8116 31.5188 7.03781 31.5188H14.2279C14.2903 31.5249 14.3531 31.5249 14.4155 31.5188L14.5392 31.4932L14.5605 31.6169C14.5858 31.7378 14.6171 31.8573 14.6543 31.9751C14.7513 32.2406 14.8958 32.4863 15.0808 32.7001L15.1917 32.8408L15.0254 32.9005C14.7724 32.9919 14.5054 33.0381 14.2364 33.037H7.02501V33.0668ZM12.1169 4.00798V2.42581H9.13171V4.00798H12.1169Z" fill="#1D1D1D"/>
|
|
11
|
-
<path d="M12.5223 1.05688C12.6464 1.05688 12.7693 1.0814 12.884 1.12903C12.9986 1.17666 13.1027 1.24646 13.1903 1.33443C13.2778 1.4224 13.3472 1.52681 13.3943 1.64165C13.4414 1.75649 13.4653 1.87949 13.4648 2.00362V4.43444C13.4654 4.55799 13.4393 4.68022 13.388 4.79266L14.7143 6.12747C15.5078 6.91703 16.0584 7.91748 16.3007 9.01032C15.8768 9.12562 15.4846 9.33559 15.1536 9.62442C15.0053 8.63325 14.5435 7.71562 13.8358 7.00598L12.2238 5.38117H9.00404L7.40482 7.00598C6.96639 7.44513 6.61901 7.96654 6.38263 8.5403C6.14624 9.11406 6.02551 9.72886 6.02736 10.3494C6.0268 10.506 6.05716 10.6612 6.1167 10.806C6.17624 10.9509 6.26379 11.0825 6.37434 11.1935C6.48488 11.3044 6.61623 11.3925 6.76086 11.4525C6.9055 11.5126 7.06057 11.5435 7.21718 11.5435H14.0405C14.0887 11.5481 14.1373 11.5481 14.1855 11.5435C14.1557 11.7771 14.1557 12.0135 14.1855 12.2471L14.2665 12.8015H7.01674C6.75356 12.8038 6.50192 12.9099 6.31662 13.0968C6.13131 13.2837 6.02735 13.5363 6.02736 13.7994V17.2751C6.02847 17.5375 6.13293 17.789 6.31811 17.975C6.5033 18.161 6.7543 18.2665 7.01674 18.2687H10.7482C10.7079 18.6894 10.7573 19.1138 10.8932 19.514H7.01674C6.75391 19.5173 6.50292 19.6238 6.31785 19.8105C6.13279 19.9971 6.02845 20.249 6.02736 20.5119V30.7042C6.02735 30.9674 6.13131 31.22 6.31662 31.4069C6.50192 31.5938 6.75356 31.6999 7.01674 31.7022H14.2281C14.2987 31.7044 14.3692 31.6958 14.4371 31.6766C14.4612 31.8042 14.4955 31.9297 14.5395 32.0519C14.6346 32.3299 14.779 32.5885 14.9659 32.8152C14.7277 32.9004 14.4769 32.9451 14.2239 32.9474H7.01247C6.71866 32.9468 6.42784 32.8884 6.15666 32.7753C5.88547 32.6622 5.63925 32.4967 5.43209 32.2884C5.22492 32.08 5.06087 31.8329 4.94934 31.561C4.83781 31.2892 4.78098 30.9981 4.78211 30.7042V20.5119C4.78332 20.2097 4.84465 19.9108 4.96253 19.6326C5.0804 19.3544 5.25247 19.1024 5.4687 18.8914C5.25064 18.6826 5.07733 18.4316 4.9593 18.1538C4.84126 17.8759 4.78098 17.577 4.78211 17.2751V13.7867C4.78163 13.4701 4.84827 13.1571 4.97765 12.8682C5.10703 12.5793 5.29619 12.3211 5.53266 12.1107C5.29465 11.8834 5.10538 11.61 4.97635 11.3072C4.84732 11.0044 4.78123 10.6785 4.78211 10.3494C4.7786 8.76774 5.40284 7.24932 6.51779 6.12747L7.8398 4.79266C7.79233 4.67901 7.7663 4.55756 7.76304 4.43444V2.00362C7.76248 1.87949 7.78644 1.75649 7.83356 1.64165C7.88067 1.52681 7.95 1.4224 8.03757 1.33443C8.12514 1.24646 8.22924 1.17666 8.34387 1.12903C8.45849 1.0814 8.58139 1.05688 8.70551 1.05688H12.5436M9.02536 4.13591H12.2451V2.30215H9.02536V4.13591ZM12.5436 0.809542H8.7311C8.57449 0.809541 8.41943 0.840453 8.2748 0.900514C8.13016 0.960574 7.99881 1.0486 7.88827 1.15954C7.77773 1.27048 7.69018 1.40215 7.63063 1.54699C7.57109 1.69184 7.54073 1.84701 7.54129 2.00362V4.43444C7.54185 4.53207 7.55329 4.62933 7.5754 4.72442L6.35999 5.95262C5.1976 7.12188 4.5472 8.70495 4.55182 10.3537C4.54865 10.9992 4.78059 11.6237 5.2043 12.1107C4.78465 12.5697 4.5519 13.169 4.55182 13.7909V17.2666C4.54773 17.8613 4.75991 18.4372 5.14885 18.8871C4.76088 19.3359 4.54876 19.9101 4.55182 20.5034V30.7C4.55069 31.0263 4.61392 31.3496 4.73788 31.6514C4.86185 31.9533 5.04412 32.2277 5.27425 32.459C5.50438 32.6903 5.77787 32.874 6.07906 32.9995C6.38026 33.125 6.70324 33.1899 7.02954 33.1905H14.2281C14.5187 33.1919 14.8073 33.1429 15.0811 33.0455L15.4137 32.9304L15.1834 32.6532C15.012 32.4491 14.8804 32.2148 14.7953 31.9623C14.7576 31.8519 14.7263 31.7394 14.7015 31.6254L14.6503 31.378L14.403 31.4335C14.3528 31.4466 14.3013 31.4537 14.2495 31.4548H7.03807C6.94007 31.4542 6.84313 31.4344 6.7528 31.3964C6.66246 31.3583 6.5805 31.3029 6.5116 31.2332C6.44269 31.1635 6.3882 31.0809 6.35121 30.9902C6.31422 30.8994 6.29547 30.8023 6.29603 30.7042V20.5119C6.29602 20.3147 6.37407 20.1255 6.51311 19.9857C6.65215 19.8458 6.84088 19.7667 7.03807 19.7656H11.26L11.1491 19.433C11.0257 19.0669 10.9821 18.6786 11.0212 18.2943L11.0425 18.0214H7.03807C6.84088 18.0203 6.65215 17.9411 6.51311 17.8013C6.37407 17.6615 6.29602 17.4723 6.29603 17.2751V13.7994C6.29546 13.7016 6.31425 13.6047 6.35129 13.5142C6.38833 13.4237 6.4429 13.3413 6.51186 13.272C6.58082 13.2026 6.6628 13.1476 6.75311 13.11C6.84342 13.0725 6.94027 13.0531 7.03807 13.0531H14.2879H14.5864L14.5437 12.7632L14.4627 12.2088C14.4351 11.9964 14.4351 11.7814 14.4627 11.5691L14.4925 11.2535L14.1855 11.2919C14.1472 11.2957 14.1086 11.2957 14.0704 11.2919H7.24703C6.99668 11.2907 6.75697 11.1905 6.58034 11.0131C6.40371 10.8357 6.30456 10.5955 6.30456 10.3451C6.30182 9.15719 6.76945 8.01647 7.60526 7.17229L9.14903 5.61572H12.1342L13.678 7.17229C14.3508 7.84585 14.7902 8.71715 14.9318 9.65855L15 10.1063L15.3412 9.80781C15.6416 9.54332 15.9992 9.35208 16.386 9.24914L16.6163 9.18517L16.5609 8.95062C16.3009 7.81236 15.7277 6.7695 14.9062 5.93983L13.6908 4.7159C13.7164 4.61991 13.7293 4.52098 13.7292 4.42164V1.9951C13.7303 1.83793 13.7004 1.68208 13.6412 1.5365C13.5819 1.39092 13.4945 1.25846 13.384 1.14673C13.2734 1.035 13.1419 0.946209 12.997 0.885417C12.8521 0.824625 12.6965 0.793038 12.5394 0.79248L12.5436 0.809542ZM9.27698 2.55375H11.9978V3.8843H9.27698V2.55375Z" fill="#1D1D1D"/>
|
|
12
|
-
<path d="M24.8892 24.124C24.8851 24.0594 24.8674 23.9964 24.8373 23.9391C24.8071 23.8818 24.7653 23.8314 24.7144 23.7914C24.6651 23.7503 24.6078 23.72 24.5461 23.7024C24.4844 23.6848 24.4197 23.6802 24.3561 23.6891C24.2921 23.6932 24.2298 23.711 24.1731 23.7411C24.1165 23.7713 24.067 23.8131 24.0278 23.8639C23.9084 24.0046 23.7847 24.1368 23.6568 24.2904C23.6111 24.3356 23.5749 24.3894 23.5502 24.4487C23.5254 24.5079 23.5127 24.5715 23.5127 24.6358C23.5127 24.7 23.5254 24.7636 23.5502 24.8229C23.5749 24.8822 23.6111 24.936 23.6568 24.9812C23.7019 25.027 23.7556 25.0634 23.8149 25.0883C23.8742 25.1132 23.9379 25.1261 24.0022 25.1262C24.1332 25.1252 24.2586 25.0732 24.3519 24.9812C24.5054 24.8277 24.6419 24.6742 24.7783 24.5079C24.8483 24.3983 24.8853 24.271 24.885 24.1411L24.8892 24.124ZM26.1345 20.1111C26.0107 20.0778 25.8788 20.0939 25.7666 20.1559C25.6545 20.218 25.5708 20.3212 25.5332 20.4437L25.2048 21.6207C25.0906 22.0171 24.9378 22.4014 24.7485 22.7679C24.7179 22.8238 24.6987 22.8853 24.692 22.9487C24.6853 23.0121 24.6912 23.0762 24.7095 23.1372C24.7277 23.1983 24.7579 23.2552 24.7983 23.3045C24.8386 23.3538 24.8884 23.3947 24.9447 23.4247C25.0156 23.462 25.0948 23.4811 25.175 23.4801C25.2624 23.4821 25.3487 23.4596 25.4241 23.4151C25.4994 23.3707 25.5609 23.306 25.6014 23.2285C25.8222 22.803 25.998 22.3556 26.1259 21.8937L26.4543 20.7166C26.4725 20.6562 26.4784 20.5927 26.4716 20.5299C26.4649 20.4671 26.4457 20.4063 26.4151 20.3511C26.3845 20.2958 26.3431 20.2473 26.2935 20.2082C26.2438 20.1692 26.1869 20.1405 26.1259 20.1239L26.1345 20.1111Z" fill="#1D1D1D"/>
|
|
13
|
-
<path d="M28.8047 15.3604C28.8687 15.5103 28.8777 15.6779 28.8301 15.8337L26.459 23.2498C26.1448 24.2463 25.5964 25.1529 24.8597 25.8938C24.7692 25.9859 24.7186 26.1101 24.719 26.2393V30.2053H17.2688V27.0581C17.2678 26.9271 17.2158 26.8016 17.1238 26.7084L16.6675 26.2478C15.9487 25.5312 15.3701 24.6865 14.9617 23.7573L12.7611 18.789C12.7023 18.6465 12.6863 18.4899 12.7151 18.3384C12.7439 18.187 12.8162 18.0472 12.9232 17.9361C12.9942 17.864 13.0789 17.8068 13.1722 17.7677C13.2656 17.7287 13.3657 17.7086 13.4669 17.7086C13.5681 17.7086 13.6683 17.7287 13.7616 17.7677C13.855 17.8068 13.9396 17.864 14.0107 17.9361C14.0303 17.9549 14.0488 17.9749 14.0661 17.9958L16.386 20.9171C16.4255 20.9673 16.4746 21.0092 16.5304 21.0403C16.5862 21.0714 16.6476 21.0911 16.7111 21.0983C16.7746 21.1054 16.8389 21.0999 16.9002 21.0819C16.9616 21.064 17.0187 21.034 17.0684 20.9938C17.1278 20.9493 17.1758 20.8912 17.2084 20.8245C17.241 20.7578 17.2573 20.6843 17.256 20.61V19.1046V19.0364L16.2197 11.6715C16.1929 11.4738 16.2449 11.2734 16.3646 11.1138C16.4843 10.9542 16.6621 10.8481 16.8594 10.8185C16.9563 10.8034 17.0552 10.8074 17.1505 10.8305C17.2459 10.8536 17.3357 10.8952 17.4149 10.9531C17.4941 11.0109 17.5612 11.0838 17.6122 11.1675C17.6632 11.2513 17.6972 11.3443 17.7123 11.4412L18.6804 17.4841C18.7104 17.6984 18.8174 17.8946 18.9814 18.0358C19.1454 18.1771 19.3552 18.2538 19.5717 18.2517C19.6919 18.2517 19.8109 18.228 19.9219 18.1818C20.0329 18.1357 20.1337 18.0681 20.2185 17.9829C20.3033 17.8977 20.3704 17.7966 20.416 17.6854C20.4617 17.5742 20.4849 17.455 20.4843 17.3348V10.1106C20.4837 10.0158 20.502 9.92184 20.538 9.83414C20.574 9.74644 20.6271 9.66678 20.6941 9.59974C20.7611 9.5327 20.8408 9.47963 20.9285 9.44362C21.0162 9.4076 21.1102 9.38934 21.205 9.38991C21.2994 9.3899 21.393 9.40857 21.4802 9.44484C21.5674 9.48111 21.6465 9.53427 21.7131 9.60125C21.7797 9.66823 21.8324 9.74771 21.8681 9.83513C21.9039 9.92255 21.922 10.0162 21.9215 10.1106V17.3348C21.9209 17.455 21.9441 17.5742 21.9897 17.6854C22.0353 17.7966 22.1024 17.8977 22.1872 17.9829C22.272 18.0681 22.3728 18.1357 22.4838 18.1818C22.5948 18.228 22.7139 18.2517 22.8341 18.2517C23.0527 18.2509 23.2637 18.1718 23.4289 18.0285C23.594 17.8853 23.7022 17.6876 23.7339 17.4713C23.8832 16.4009 24.4034 13.373 24.702 11.6672C24.7281 11.5174 24.8124 11.384 24.9365 11.2962C24.9978 11.2529 25.067 11.2223 25.1403 11.2062C25.2135 11.1901 25.2892 11.1888 25.363 11.2024C25.5045 11.2303 25.6306 11.31 25.7166 11.4259C25.8026 11.5418 25.8422 11.6857 25.8278 11.8292L25.1327 18.1152C25.1244 18.1788 25.1292 18.2433 25.1468 18.3049C25.1644 18.3666 25.1944 18.4239 25.235 18.4735C25.2712 18.526 25.3188 18.5698 25.3741 18.6015C25.4295 18.6332 25.4912 18.6522 25.5549 18.6568C25.6529 18.6656 25.7512 18.6446 25.8372 18.5967C25.9231 18.5488 25.9927 18.4761 26.0368 18.3882L27.5635 15.3262C27.6022 15.2439 27.6573 15.1704 27.7256 15.1103C27.7938 15.0501 27.8736 15.0046 27.9601 14.9765C28.1319 14.9208 28.3186 14.9346 28.4804 15.0149C28.6259 15.0882 28.7407 15.2106 28.8047 15.3604Z" fill="url(#paint3_linear_4088_33991)"/>
|
|
14
|
-
<path d="M16.7868 31.135C16.7027 31.1362 16.6224 31.1704 16.5634 31.2302C16.5043 31.2901 16.4712 31.3708 16.4712 31.4549C16.4712 31.5386 16.5044 31.6188 16.5636 31.678C16.6228 31.7372 16.7031 31.7705 16.7868 31.7705H24.8084C24.8921 31.7705 24.9724 31.7372 25.0316 31.678C25.0908 31.6188 25.124 31.5386 25.124 31.4549C25.1252 31.4129 25.1178 31.3712 25.1024 31.3321C25.087 31.2931 25.0639 31.2576 25.0344 31.2277C25.0049 31.1978 24.9697 31.1742 24.9309 31.1583C24.8921 31.1424 24.8504 31.1344 24.8084 31.135H16.7868Z" fill="white"/>
|
|
15
|
-
<path d="M16.7865 32.875C16.4933 32.8715 16.2085 32.7768 15.9716 32.6041C15.7347 32.4314 15.5574 32.1892 15.4644 31.9112C15.3462 31.5815 15.3539 31.2197 15.4862 30.8954C15.6184 30.5711 15.8658 30.3071 16.1809 30.1542V27.2585L15.9037 26.977C15.0911 26.164 14.4348 25.2085 13.9676 24.1582L11.7671 19.1857C11.6051 18.81 11.5704 18.3917 11.6681 17.9944C11.7659 17.5972 11.9908 17.2427 12.3087 16.9851C12.6365 16.714 13.0475 16.5634 13.4729 16.5587H13.6861C14.1803 16.6136 14.6326 16.862 14.9442 17.2495L16.134 18.7464L15.1531 11.7696C15.0856 11.2896 15.209 10.8023 15.4969 10.4124C15.7847 10.0224 16.2141 9.76097 16.6926 9.68418C16.7858 9.66932 16.8798 9.66077 16.9741 9.65859C17.3663 9.65859 17.7478 9.78579 18.0616 10.0211C18.2581 10.1628 18.424 10.3427 18.5493 10.5501C18.6746 10.7575 18.7568 10.9881 18.7908 11.228L19.3879 15.0021V10.1064C19.389 9.6241 19.5805 9.16178 19.9207 8.81997C20.2609 8.47815 20.7223 8.2845 21.2046 8.28113C21.6868 8.2845 22.1483 8.47815 22.4885 8.81997C22.8287 9.16178 23.0202 9.6241 23.0213 10.1064V14.9808C23.2302 13.7441 23.4477 12.3495 23.6226 11.471C23.6872 11.0846 23.8868 10.7337 24.1859 10.4807C24.485 10.2277 24.8642 10.089 25.2559 10.0893H25.4436C25.6615 10.1132 25.8725 10.1802 26.0643 10.2864C26.2561 10.3925 26.4249 10.5357 26.5609 10.7077C26.8351 11.0551 26.9636 11.4955 26.9191 11.9359L26.6035 14.7931C26.7514 14.502 26.9772 14.2577 27.2558 14.0875C27.5345 13.9174 27.8549 13.828 28.1814 13.8293C28.4066 13.8289 28.6297 13.8723 28.8382 13.9573C29.2559 14.128 29.5942 14.4493 29.7861 14.8577C29.978 15.266 30.0096 15.7316 29.8745 16.1621L27.5204 23.5654C27.1705 24.6438 26.5882 25.6322 25.8146 26.461V30.4612C26.073 30.7259 26.2183 31.0807 26.2197 31.4506C26.2186 31.8261 26.0692 32.1861 25.8041 32.452C25.5389 32.718 25.1794 32.8684 24.8039 32.8707H16.7865V32.875ZM16.7865 31.2587C16.7352 31.2598 16.6864 31.281 16.6505 31.3176C16.6146 31.3543 16.5945 31.4036 16.5946 31.4549C16.594 31.4802 16.5986 31.5054 16.608 31.529C16.6174 31.5525 16.6315 31.5739 16.6495 31.5918C16.6674 31.6098 16.6888 31.6239 16.7124 31.6333C16.7359 31.6428 16.7611 31.6473 16.7865 31.6468H24.8081C24.859 31.6468 24.9079 31.6265 24.9438 31.5905C24.9798 31.5546 25.0001 31.5057 25.0001 31.4549C25.0012 31.4291 24.9971 31.4035 24.9879 31.3794C24.9788 31.3554 24.9647 31.3334 24.9467 31.3151C24.9287 31.2966 24.9071 31.2822 24.8833 31.2725C24.8595 31.2628 24.8339 31.2581 24.8081 31.2587H16.7865ZM24.5906 30.0348V26.1966C24.5929 26.0367 24.6571 25.8838 24.7698 25.7702C25.4919 25.0465 26.03 24.1603 26.3391 23.1858L28.6932 15.7825C28.7338 15.6568 28.7283 15.5207 28.6774 15.3987C28.6266 15.2767 28.5339 15.1769 28.416 15.1172C28.3391 15.0795 28.2543 15.0605 28.1686 15.0618C28.1078 15.0634 28.0476 15.0735 27.9895 15.0917C27.9198 15.1131 27.8555 15.1494 27.801 15.198C27.7466 15.2465 27.7032 15.3063 27.6739 15.3731L26.1472 18.4351C26.0967 18.5369 26.0189 18.6227 25.9226 18.6829C25.8262 18.7432 25.715 18.7755 25.6014 18.7763H25.5331C25.4502 18.7703 25.3695 18.7472 25.296 18.7083C25.2226 18.6693 25.1581 18.6155 25.1067 18.5502C25.0565 18.4871 25.0194 18.4146 24.9974 18.337C24.9755 18.2594 24.9691 18.1783 24.9787 18.0982L25.6739 11.8122C25.6842 11.7005 25.6522 11.5891 25.5843 11.4999C25.5164 11.4106 25.4175 11.3501 25.3071 11.3303C25.2817 11.3261 25.2557 11.3261 25.2303 11.3303C25.1412 11.329 25.0541 11.3576 24.983 11.4113C24.9353 11.4443 24.8948 11.4866 24.864 11.5357C24.8332 11.5849 24.8127 11.6398 24.8039 11.6971C24.5054 13.4029 23.9851 16.435 23.8358 17.4969C23.8009 17.7448 23.6778 17.9719 23.489 18.1364C23.3002 18.3009 23.0585 18.3918 22.8081 18.3924C22.5317 18.3913 22.267 18.2807 22.072 18.0849C21.877 17.8891 21.7675 17.624 21.7675 17.3476V10.0978C21.7664 9.93984 21.7031 9.78863 21.5914 9.6769C21.4797 9.56518 21.3285 9.50192 21.1705 9.5008C21.0132 9.50303 20.8631 9.56678 20.7523 9.67839C20.6415 9.78999 20.5788 9.94057 20.5777 10.0978V17.322C20.5782 17.4592 20.5518 17.5952 20.4998 17.7222C20.4478 17.8492 20.3713 17.9647 20.2747 18.0621C20.178 18.1595 20.0632 18.2369 19.9366 18.29C19.8101 18.343 19.6743 18.3706 19.5371 18.3711C19.2892 18.3695 19.0498 18.2806 18.8611 18.1199C18.6723 17.9592 18.5462 17.7371 18.5051 17.4926L17.5712 11.4412C17.546 11.2966 17.4706 11.1655 17.3583 11.0711C17.2459 10.9767 17.1038 10.925 16.9571 10.9252C16.9302 10.921 16.9029 10.921 16.876 10.9252C16.7955 10.935 16.7178 10.961 16.6476 11.0017C16.5774 11.0424 16.5162 11.0968 16.4676 11.1617C16.419 11.2267 16.384 11.3008 16.3648 11.3796C16.3456 11.4584 16.3425 11.5403 16.3557 11.6203L17.392 18.981C17.3941 19.0079 17.3941 19.035 17.392 19.062V20.5802C17.3937 20.6729 17.3738 20.7647 17.3338 20.8483C17.2938 20.932 17.2349 21.0051 17.1618 21.0621C17.0536 21.1508 16.9179 21.1991 16.7779 21.1985C16.686 21.1992 16.5952 21.1788 16.5124 21.1389C16.4296 21.099 16.357 21.0406 16.3003 20.9683L13.9761 18.0428C13.9639 18.0229 13.948 18.0055 13.9292 17.9916C13.8705 17.931 13.8002 17.8828 13.7226 17.8499C13.645 17.8169 13.5615 17.7998 13.4772 17.7997C13.3919 17.798 13.3073 17.8142 13.2287 17.8472C13.1501 17.8803 13.0793 17.9295 13.0209 17.9916C12.929 18.0845 12.8669 18.2027 12.8426 18.3311C12.8183 18.4595 12.8329 18.5922 12.8844 18.7123L15.0849 23.6848C15.4895 24.5975 16.0575 25.4285 16.7609 26.1369L17.2215 26.5975C17.3341 26.7111 17.3983 26.864 17.4006 27.024V30.0348H24.5906Z" fill="#1D1D1D"/>
|
|
16
|
-
<path d="M21.2048 8.41335C21.6572 8.41335 22.0911 8.59307 22.411 8.91297C22.7309 9.23288 22.9106 9.66677 22.9106 10.1192V16.5587C23.1324 15.1855 23.5204 12.9125 23.7635 11.518C23.8273 11.1609 24.014 10.8375 24.2913 10.6038C24.5687 10.3701 24.9191 10.2409 25.2817 10.2386H25.4566C25.6589 10.2608 25.8548 10.3232 26.0327 10.4221C26.2106 10.5209 26.3671 10.6543 26.4929 10.8143C26.6198 10.9713 26.7136 11.1523 26.7686 11.3466C26.8236 11.5408 26.8386 11.7442 26.8127 11.9444L26.4161 15.5139L26.7189 14.8912C26.8567 14.6157 27.0685 14.3839 27.3307 14.222C27.5928 14.06 27.8948 13.9743 28.2029 13.9744C28.4134 13.9743 28.6219 14.0149 28.817 14.0938C29.2031 14.2528 29.5155 14.5509 29.6924 14.9292C29.8692 15.3074 29.8978 15.7382 29.7723 16.1365L27.414 23.5398C27.0635 24.6167 26.4812 25.6036 25.7082 26.4312V30.5295C25.8358 30.65 25.9372 30.7955 26.0062 30.9569C26.0751 31.1183 26.1101 31.2921 26.109 31.4677C26.109 31.807 25.9742 32.1324 25.7343 32.3723C25.4944 32.6122 25.169 32.747 24.8297 32.747H16.7867C16.522 32.7472 16.2638 32.6652 16.0476 32.5125C15.8315 32.3597 15.668 32.1437 15.5798 31.8941C15.4662 31.5822 15.4783 31.2383 15.6136 30.9351C15.7489 30.6319 15.9967 30.3931 16.3048 30.2693V27.2201L15.9935 26.9046C15.1921 26.1024 14.5471 25.1581 14.0914 24.1198L11.8909 19.1516C11.7348 18.7982 11.6995 18.4033 11.7905 18.0278C11.8815 17.6524 12.0936 17.3174 12.3942 17.0747C12.7 16.8253 13.0828 16.6897 13.4773 16.6909H13.6778C13.9054 16.7153 14.1258 16.7853 14.3258 16.8966C14.5258 17.008 14.7014 17.1585 14.842 17.3391L16.2962 19.1729V19.0876L15.2642 11.7568C15.2013 11.3098 15.3155 10.8559 15.5823 10.4919C15.8492 10.1278 16.2477 9.88241 16.6928 9.80787C16.7823 9.80165 16.8721 9.80165 16.9615 9.80787C17.3215 9.81074 17.6718 9.92549 17.9637 10.1362C18.1478 10.2688 18.3032 10.4373 18.4205 10.6315C18.5378 10.8257 18.6145 11.0417 18.646 11.2664L19.4989 16.6525V10.1107C19.4989 9.65824 19.6787 9.22435 19.9986 8.90445C20.3185 8.58454 20.7524 8.40482 21.2048 8.40482M19.5629 18.2645C19.346 18.2668 19.1356 18.1902 18.9709 18.049C18.8062 17.9078 18.6983 17.7116 18.6673 17.4969L17.7206 11.4412C17.6923 11.2668 17.6031 11.1081 17.4688 10.9933C17.3345 10.8785 17.1638 10.8151 16.9871 10.8143H16.889C16.6917 10.8439 16.514 10.9499 16.3942 11.1096C16.2745 11.2692 16.2225 11.4695 16.2493 11.6672L17.2856 19.0321C17.2856 19.0577 17.2856 19.0748 17.2856 19.1004V20.6058C17.287 20.68 17.2707 20.7536 17.238 20.8203C17.2054 20.887 17.1574 20.945 17.098 20.9896C17.0123 21.0554 16.9075 21.0913 16.7995 21.0919C16.7265 21.0918 16.6545 21.0753 16.5888 21.0435C16.5231 21.0118 16.4654 20.9657 16.4199 20.9086L14.0829 17.9873C14.0668 17.9641 14.0482 17.9427 14.0275 17.9234C13.9559 17.8519 13.8707 17.7955 13.7769 17.7574C13.6832 17.7193 13.5828 17.7003 13.4816 17.7016C13.3811 17.7006 13.2815 17.7198 13.1885 17.7579C13.0955 17.7959 13.011 17.8522 12.94 17.9234C12.833 18.0344 12.7607 18.1742 12.7319 18.3257C12.7032 18.4772 12.7192 18.6337 12.778 18.7763L14.9785 23.7445C15.3861 24.6742 15.9647 25.519 16.6843 26.235L17.1406 26.6999C17.2324 26.7915 17.2845 26.9156 17.2856 27.0453V30.184H24.7401V26.2436C24.7406 26.1125 24.7927 25.9869 24.8851 25.8939C25.6202 25.1534 26.1684 24.2485 26.4843 23.2541L28.8384 15.8508C28.8866 15.6949 28.8784 15.527 28.8152 15.3765C28.7521 15.226 28.638 15.1025 28.4929 15.0277C28.3979 14.9796 28.2923 14.9561 28.1859 14.9595C28.1117 14.9597 28.0382 14.9727 27.9684 14.9979C27.7963 15.057 27.654 15.1809 27.5718 15.3433L26.0493 18.4095C26.0096 18.489 25.9488 18.5561 25.8736 18.6034C25.7985 18.6508 25.7117 18.6767 25.6229 18.6782H25.5717C25.5085 18.6718 25.4473 18.6522 25.3922 18.6206C25.3371 18.589 25.2893 18.5461 25.2519 18.4948C25.2111 18.4455 25.1812 18.388 25.1643 18.3262C25.1474 18.2645 25.1438 18.1998 25.1538 18.1366L25.8446 11.8506C25.8611 11.7066 25.8222 11.5618 25.7359 11.4454C25.6496 11.3291 25.5223 11.2498 25.3798 11.2237C25.3473 11.2191 25.3142 11.2191 25.2817 11.2237C25.1671 11.2242 25.0555 11.26 24.9619 11.3261C24.8365 11.4134 24.7507 11.5468 24.723 11.6971C24.4288 13.4029 23.9043 16.4308 23.7593 17.5012C23.7268 17.7171 23.6183 17.9143 23.4533 18.0574C23.2884 18.2005 23.0778 18.28 22.8594 18.2816C22.617 18.2805 22.3849 18.1834 22.2138 18.0115C22.0428 17.8397 21.9468 17.6071 21.9468 17.3647V10.1149C21.9468 9.92452 21.8715 9.74184 21.7372 9.6068C21.603 9.47176 21.4208 9.39534 21.2304 9.39421C21.0392 9.39421 20.8559 9.47013 20.7207 9.60529C20.5856 9.74045 20.5097 9.92378 20.5097 10.1149V17.3391C20.5102 17.4593 20.487 17.5785 20.4414 17.6897C20.3958 17.8009 20.3287 17.902 20.2439 17.9872C20.1591 18.0724 20.0583 18.14 19.9473 18.1861C19.8363 18.2323 19.7172 18.256 19.597 18.256H19.5629M16.7867 31.779H24.8083C24.8924 31.7779 24.9727 31.7437 25.0317 31.6838C25.0908 31.6239 25.1239 31.5432 25.1239 31.4591C25.1239 31.3754 25.0907 31.2952 25.0315 31.236C24.9723 31.1768 24.892 31.1436 24.8083 31.1436H16.7867C16.703 31.1436 16.6227 31.1768 16.5635 31.236C16.5043 31.2952 16.4711 31.3754 16.4711 31.4591C16.4711 31.5432 16.5042 31.6239 16.5633 31.6838C16.6223 31.7437 16.7026 31.7779 16.7867 31.779ZM21.1962 8.15747C20.679 8.1586 20.1833 8.36489 19.8179 8.73106C19.4525 9.09723 19.2473 9.59338 19.2473 10.1107V13.3858L18.9062 11.2194C18.8204 10.7084 18.5409 10.2502 18.1258 9.94007C17.7933 9.69149 17.3894 9.55686 16.9743 9.55625C16.8728 9.55629 16.7716 9.56486 16.6715 9.58185C16.1585 9.66489 15.6986 9.946 15.3907 10.3647C15.0828 10.7834 14.9517 11.3063 15.0254 11.8208L15.9465 18.3328L15.0339 17.1984C14.7033 16.7836 14.2218 16.5168 13.6948 16.4564H13.4731C13.0203 16.4526 12.5796 16.603 12.2236 16.8828C11.8806 17.1629 11.6384 17.5472 11.5337 17.9775C11.4291 18.4077 11.4676 18.8604 11.6436 19.2667L13.8441 24.2392C14.3138 25.306 14.9775 26.2763 15.8016 27.1007L16.0446 27.3438V30.1115C15.7233 30.2886 15.4754 30.574 15.3449 30.9169C15.2145 31.2598 15.2101 31.6378 15.3324 31.9837C15.4384 32.2844 15.6345 32.5452 15.8939 32.7307C16.1533 32.9161 16.4635 33.0171 16.7824 33.02H24.8041C25.0074 33.0194 25.2086 32.9788 25.3962 32.9005C25.5838 32.8222 25.7541 32.7077 25.8975 32.5635C26.0408 32.4194 26.1544 32.2484 26.2317 32.0604C26.3089 31.8724 26.3484 31.671 26.3479 31.4677C26.3452 31.0816 26.2011 30.7098 25.9427 30.4228V26.5293C26.707 25.6931 27.2804 24.7007 27.623 23.6208L29.977 16.2175C30.1211 15.7564 30.0871 15.258 29.8819 14.8207C29.6766 14.3834 29.315 14.0388 28.8682 13.855C28.645 13.7683 28.4082 13.7221 28.1688 13.7185C27.9058 13.7165 27.6454 13.7707 27.4049 13.8773C27.1644 13.9839 26.9495 14.1406 26.7743 14.3369L27.0345 11.9743C27.0607 11.7388 27.0403 11.5005 26.9745 11.273C26.9086 11.0454 26.7986 10.833 26.6506 10.648C26.505 10.4622 26.3235 10.3075 26.1169 10.1932C25.9103 10.0789 25.6828 10.0073 25.448 9.98271H25.2476C24.824 9.98386 24.4145 10.1347 24.0914 10.4086C23.7683 10.6826 23.5525 11.0619 23.4821 11.4796C23.3882 12.0127 23.2646 12.7376 23.1281 13.501V10.1192C23.1309 9.86329 23.0831 9.60937 22.9874 9.37205C22.8917 9.13472 22.7499 8.91867 22.5704 8.73634C22.3908 8.55401 22.177 8.409 21.9411 8.30965C21.7053 8.2103 21.4521 8.15858 21.1962 8.15747ZM19.5544 18.5076C19.7078 18.5071 19.8597 18.4763 20.0012 18.417C20.1428 18.3578 20.2713 18.2713 20.3794 18.1624C20.4875 18.0535 20.5731 17.9243 20.6313 17.7823C20.6895 17.6404 20.7192 17.4883 20.7186 17.3349V10.1107C20.7197 9.98772 20.7691 9.87013 20.856 9.7832C20.9429 9.69626 21.0605 9.64693 21.1834 9.64582C21.3067 9.64582 21.425 9.69479 21.5121 9.78196C21.5993 9.86914 21.6483 9.98737 21.6483 10.1107V17.3349C21.6477 17.4883 21.6774 17.6404 21.7356 17.7823C21.7938 17.9243 21.8794 18.0535 21.9875 18.1624C22.0956 18.2713 22.2241 18.3578 22.3657 18.417C22.5072 18.4763 22.6591 18.5071 22.8125 18.5076C23.0935 18.5074 23.3649 18.406 23.5771 18.2219C23.7894 18.0379 23.9282 17.7835 23.9682 17.5054C24.1217 16.4393 24.642 13.42 24.9363 11.7056C24.9416 11.6643 24.9559 11.6246 24.9779 11.5893C25 11.554 25.0294 11.5238 25.0642 11.5009C25.1167 11.4642 25.1793 11.4448 25.2433 11.4455H25.2988C25.378 11.4601 25.4486 11.5044 25.4962 11.5695C25.5438 11.6345 25.5647 11.7152 25.5546 11.7952L24.8894 18.0897C24.8775 18.1863 24.8857 18.2842 24.9136 18.3775C24.9415 18.4707 24.9884 18.5571 25.0514 18.6313C25.1745 18.7832 25.352 18.8811 25.5461 18.9042H25.6271C25.7666 18.9015 25.9026 18.8603 26.02 18.785C26.1375 18.7097 26.2318 18.6034 26.2924 18.4778L27.8149 15.4158C27.8401 15.3657 27.8749 15.3211 27.9173 15.2846C27.9598 15.248 28.009 15.2201 28.0622 15.2026C28.1075 15.1963 28.1534 15.1963 28.1987 15.2026C28.2651 15.2016 28.3308 15.2162 28.3906 15.2452C28.4821 15.2904 28.5543 15.3669 28.5942 15.4608C28.6341 15.5547 28.639 15.6597 28.6081 15.757L26.254 23.1603C25.9495 24.116 25.4201 24.9847 24.7103 25.6934C24.6411 25.7622 24.5864 25.8439 24.549 25.9339C24.5117 26.024 24.4926 26.1205 24.4928 26.218V29.9026H17.55V27.0197C17.5516 26.9227 17.5331 26.8264 17.4957 26.7368C17.4583 26.6473 17.4027 26.5665 17.3325 26.4994L16.8762 26.0389C16.1814 25.3418 15.6218 24.5219 15.2258 23.6208L13.0253 18.6526C12.9835 18.5563 12.9713 18.4497 12.9903 18.3464C13.0093 18.2431 13.0586 18.1478 13.1319 18.0726C13.2291 17.9745 13.3606 17.9179 13.4987 17.9148C13.5669 17.9135 13.6346 17.9268 13.6972 17.9541C13.7597 17.9813 13.8157 18.0217 13.8612 18.0726L13.8996 18.1153L16.2323 21.045C16.3011 21.1327 16.3893 21.2034 16.4899 21.2514C16.5905 21.2995 16.7008 21.3237 16.8123 21.3222C16.9798 21.3227 17.1425 21.2655 17.2728 21.1602C17.3606 21.0905 17.4312 21.0015 17.4793 20.9003C17.5273 20.799 17.5515 20.688 17.55 20.5759V19.062C17.5522 19.0293 17.5522 18.9966 17.55 18.9639L16.5137 11.6161C16.5048 11.5518 16.5088 11.4864 16.5255 11.4237C16.5422 11.3611 16.5713 11.3024 16.611 11.2511C16.6508 11.1998 16.7003 11.157 16.7569 11.1252C16.8134 11.0934 16.8757 11.0733 16.9402 11.0659H17.0042C17.1222 11.0678 17.2356 11.1119 17.3239 11.1901C17.4123 11.2683 17.4698 11.3755 17.4861 11.4924L18.4371 17.5566C18.4863 17.8276 18.6297 18.0725 18.8419 18.2481C19.0542 18.4236 19.3216 18.5186 19.597 18.5161L19.5544 18.5076ZM16.7867 31.5146C16.7708 31.5146 16.7556 31.5083 16.7444 31.4971C16.7333 31.4859 16.727 31.4707 16.727 31.4549C16.7264 31.4467 16.7275 31.4385 16.7302 31.4307C16.733 31.423 16.7373 31.4159 16.7429 31.4099C16.7485 31.4039 16.7552 31.3991 16.7628 31.3958C16.7703 31.3926 16.7785 31.3909 16.7867 31.3909H24.8083C24.8253 31.3909 24.8416 31.3976 24.8536 31.4096C24.8656 31.4216 24.8723 31.4379 24.8723 31.4549C24.8712 31.4711 24.864 31.4863 24.8521 31.4974C24.8403 31.5085 24.8246 31.5146 24.8083 31.5146H16.7867Z" fill="#1D1D1D"/>
|
|
17
|
-
<defs>
|
|
18
|
-
<linearGradient id="paint0_linear_4088_33991" x1="5.91212" y1="8.47298" x2="15.307" y2="8.47298" gradientUnits="userSpaceOnUse">
|
|
19
|
-
<stop stop-color="#EFC530"/>
|
|
20
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
21
|
-
</linearGradient>
|
|
22
|
-
<linearGradient id="paint1_linear_4088_33991" x1="5.91211" y1="15.531" x2="14.8507" y2="15.531" gradientUnits="userSpaceOnUse">
|
|
23
|
-
<stop stop-color="#EFC530"/>
|
|
24
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
25
|
-
</linearGradient>
|
|
26
|
-
<linearGradient id="paint2_linear_4088_33991" x1="5.91211" y1="25.6039" x2="15.3155" y2="25.6039" gradientUnits="userSpaceOnUse">
|
|
27
|
-
<stop stop-color="#EFC530"/>
|
|
28
|
-
<stop offset="1" stop-color="#FCEDB6"/>
|
|
29
|
-
</linearGradient>
|
|
30
|
-
<linearGradient id="paint3_linear_4088_33991" x1="12.7228" y1="19.7869" x2="28.8599" y2="19.7869" gradientUnits="userSpaceOnUse">
|
|
31
|
-
<stop stop-color="#F37C1C"/>
|
|
32
|
-
<stop offset="1" stop-color="#FCC191"/>
|
|
33
|
-
</linearGradient>
|
|
34
|
-
</defs>
|
|
35
|
-
</svg>
|
|
@@ -1,31 +0,0 @@
|
|
|
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>
|
|
31
|
-
</svg>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|