@abqm-ds/icons 1.0.17 → 1.0.19
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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +12 -0
- package/dist/index.cjs +445 -209
- package/dist/index.d.cts +15 -1
- package/dist/index.d.ts +15 -1
- package/dist/index.js +438 -209
- package/package.json +1 -1
- package/src/components/icons/BarChartLineIcon.tsx +17 -0
- package/src/components/icons/CheckIcon.tsx +17 -0
- package/src/components/icons/DashIcon.tsx +17 -0
- package/src/components/icons/FileEarmarkCheckIcon.tsx +21 -0
- package/src/components/icons/ShareIcon.tsx +24 -0
- package/src/components/icons/TrophyIcon.tsx +24 -0
- package/src/components/icons/index.ts +6 -0
- package/src/components/logos/EventSummaryDefaultIcon.tsx +53 -0
- package/src/components/logos/index.ts +1 -0
- package/src/icons/bar-chart-line.svg +3 -0
- package/src/icons/check.svg +3 -0
- package/src/icons/dash.svg +3 -0
- package/src/icons/file-earmark-check.svg +4 -0
- package/src/icons/share.svg +10 -0
- package/src/icons/trophy.svg +10 -0
- package/src/logos/event-summary-default.svg +13 -0
package/package.json
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
const BarChartLineIcon = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
fill={props?.fill ? props.fill : '#1E1E1E'}
|
|
13
|
+
d="M16.5 3A1.5 1.5 0 0 1 18 1.5h3A1.5 1.5 0 0 1 22.5 3v18h.75a.75.75 0 1 1 0 1.5H.75a.75.75 0 1 1 0-1.5h.75v-4.5A1.5 1.5 0 0 1 3 15h3a1.5 1.5 0 0 1 1.5 1.5V21H9V10.5A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5V21h1.5zM18 21h3V3h-3zm-4.5 0V10.5h-3V21zM6 21v-4.5H3V21z"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
);
|
|
17
|
+
export default BarChartLineIcon;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
const CheckIcon = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
fill={props?.fill ? props.fill : '#1E1E1E'}
|
|
13
|
+
d="M16.455 7.455A1.125 1.125 0 0 1 18.06 9.03l-5.985 7.485a1.124 1.124 0 0 1-1.62.03l-3.969-3.969a1.125 1.125 0 1 1 1.59-1.59l3.141 3.14 5.21-6.638.03-.033z"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
);
|
|
17
|
+
export default CheckIcon;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
const DashIcon = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
fill={props?.fill ? props.fill : '#1E1E1E'}
|
|
13
|
+
d="M6 12a.75.75 0 0 1 .75-.75h10.5a.75.75 0 1 1 0 1.5H6.75A.75.75 0 0 1 6 12"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
);
|
|
17
|
+
export default DashIcon;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
const FileEarmarkCheckIcon = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
fill={props?.fill ? props.fill : '#1E1E1E'}
|
|
13
|
+
d="M16.281 11.781a.751.751 0 0 0-1.062-1.062l-3.969 3.97-1.719-1.72a.75.75 0 1 0-1.062 1.062l2.25 2.25a.75.75 0 0 0 1.062 0z"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
fill={props?.fill ? props.fill : '#1E1E1E'}
|
|
17
|
+
d="M21 21V6.75L14.25 0H6a3 3 0 0 0-3 3v18a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3M14.25 4.5a2.25 2.25 0 0 0 2.25 2.25h3V21a1.5 1.5 0 0 1-1.5 1.5H6A1.5 1.5 0 0 1 4.5 21V3A1.5 1.5 0 0 1 6 1.5h8.25z"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
export default FileEarmarkCheckIcon;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
const ShareIcon = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<g clipPath="url(#share_svg__a)">
|
|
12
|
+
<path
|
|
13
|
+
fill={props?.fill ? props.fill : '#1E1E1E'}
|
|
14
|
+
d="M20.25 1.5a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5M16.5 3.75a3.75 3.75 0 1 1 .904 2.442l-10.077 4.68a3.75 3.75 0 0 1 0 2.256l10.077 4.68a3.75 3.75 0 1 1-.732 1.314l-10.077-4.68a3.75 3.75 0 1 1 0-4.884l10.077-4.68A3.8 3.8 0 0 1 16.5 3.75m-12.75 6a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5M20.25 18a2.25 2.25 0 1 0 0 4.501 2.25 2.25 0 0 0 0-4.5"
|
|
15
|
+
/>
|
|
16
|
+
</g>
|
|
17
|
+
<defs>
|
|
18
|
+
<clipPath id="share_svg__a">
|
|
19
|
+
<path fill={props?.fill ? props.fill : '#fff'} d="M0 0h24v24H0z" />
|
|
20
|
+
</clipPath>
|
|
21
|
+
</defs>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
export default ShareIcon;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
const TrophyIcon = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<g clipPath="url(#trophy_svg__a)">
|
|
12
|
+
<path
|
|
13
|
+
fill={props?.fill ? props.fill : '#1E1E1E'}
|
|
14
|
+
d="M3.75.75A.75.75 0 0 1 4.5 0h15a.75.75 0 0 1 .75.75q-.001 1.21-.05 2.304a4.5 4.5 0 1 1-1.7 8.835c-1.185 2.798-2.817 4.166-4.25 4.517v3.259l2.138.534c.29.072.565.202.805.382l2.757 2.069A.75.75 0 0 1 19.5 24h-15a.75.75 0 0 1-.45-1.35l2.757-2.068c.24-.18.515-.311.806-.383l2.137-.534v-3.26c-1.432-.35-3.064-1.719-4.25-4.518a4.5 4.5 0 1 1-1.697-8.834A50 50 0 0 1 3.75.75M3.9 4.56a3 3 0 0 0 1.08 5.903c-.5-1.575-.882-3.52-1.08-5.903m15.124 5.903a3 3 0 0 0 1.08-5.903c-.2 2.385-.582 4.328-1.08 5.903M5.256 1.5q.017 1.163.084 2.204c.195 3.041.686 5.319 1.305 7C7.941 14.22 9.726 15 10.5 15a.75.75 0 0 1 .75.75v3.915a1.5 1.5 0 0 1-1.135 1.455l-2.14.534a.8.8 0 0 0-.268.128l-.957.718h10.5l-.957-.718a.8.8 0 0 0-.27-.128l-2.137-.534a1.5 1.5 0 0 1-1.136-1.455V15.75a.75.75 0 0 1 .75-.75c.774 0 2.56-.78 3.855-4.296.62-1.68 1.11-3.96 1.305-7q.068-1.041.084-2.204z"
|
|
15
|
+
/>
|
|
16
|
+
</g>
|
|
17
|
+
<defs>
|
|
18
|
+
<clipPath id="trophy_svg__a">
|
|
19
|
+
<path fill={props?.fill ? props.fill : '#fff'} d="M0 0h24v24H0z" />
|
|
20
|
+
</clipPath>
|
|
21
|
+
</defs>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
export default TrophyIcon;
|
|
@@ -2,13 +2,17 @@ export { default as AppleIcon } from './AppleIcon';
|
|
|
2
2
|
export { default as ArrowDownShortIcon } from './ArrowDownShortIcon';
|
|
3
3
|
export { default as AwardFillIcon } from './AwardFillIcon';
|
|
4
4
|
export { default as BarChartIcon } from './BarChartIcon';
|
|
5
|
+
export { default as BarChartLineIcon } from './BarChartLineIcon';
|
|
5
6
|
export { default as BoxArrowInLeftIcon } from './BoxArrowInLeftIcon';
|
|
6
7
|
export { default as BroadcastIcon } from './BroadcastIcon';
|
|
7
8
|
export { default as CaretDownFillIcon } from './CaretDownFillIcon';
|
|
8
9
|
export { default as CaretLeftFillIcon } from './CaretLeftFillIcon';
|
|
9
10
|
export { default as CaretRightFillIcon } from './CaretRightFillIcon';
|
|
11
|
+
export { default as CheckIcon } from './CheckIcon';
|
|
10
12
|
export { default as CircleIcon } from './CircleIcon';
|
|
13
|
+
export { default as DashIcon } from './DashIcon';
|
|
11
14
|
export { default as FacebookIcon } from './FacebookIcon';
|
|
15
|
+
export { default as FileEarmarkCheckIcon } from './FileEarmarkCheckIcon';
|
|
12
16
|
export { default as FileEarmarkTextIcon } from './FileEarmarkTextIcon';
|
|
13
17
|
export { default as FileTextIcon } from './FileTextIcon';
|
|
14
18
|
export { default as FilterIcon } from './FilterIcon';
|
|
@@ -22,7 +26,9 @@ export { default as PersonCircleIcon } from './PersonCircleIcon';
|
|
|
22
26
|
export { default as PlusIcon } from './PlusIcon';
|
|
23
27
|
export { default as PrinterIcon } from './PrinterIcon';
|
|
24
28
|
export { default as SearchIcon } from './SearchIcon';
|
|
29
|
+
export { default as ShareIcon } from './ShareIcon';
|
|
25
30
|
export { default as SpinnerRingResizeIcon } from './SpinnerRingResizeIcon';
|
|
26
31
|
export { default as StarIcon } from './StarIcon';
|
|
32
|
+
export { default as TrophyIcon } from './TrophyIcon';
|
|
27
33
|
export { default as XIcon } from './XIcon';
|
|
28
34
|
export { default as YoutubeIcon } from './YoutubeIcon';
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
const EventSummaryDefaultIcon = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 70 60"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<rect width={70} height={60} fill="#fff" fillOpacity={0.85} rx={4} />
|
|
12
|
+
<rect
|
|
13
|
+
width={69}
|
|
14
|
+
height={59}
|
|
15
|
+
x={0.5}
|
|
16
|
+
y={0.5}
|
|
17
|
+
stroke="#fff"
|
|
18
|
+
strokeOpacity={0.25}
|
|
19
|
+
rx={3.5}
|
|
20
|
+
/>
|
|
21
|
+
<rect
|
|
22
|
+
width={50.7}
|
|
23
|
+
height={50.7}
|
|
24
|
+
x={9.65}
|
|
25
|
+
y={4.65}
|
|
26
|
+
stroke="#002710"
|
|
27
|
+
strokeOpacity={0.25}
|
|
28
|
+
strokeWidth={1.3}
|
|
29
|
+
rx={25.35}
|
|
30
|
+
/>
|
|
31
|
+
<path
|
|
32
|
+
fill={props?.fill ? props.fill : '#002710'}
|
|
33
|
+
fillOpacity={0.25}
|
|
34
|
+
d="m26.277 25.459 1.064-.524.807.87-.168-1.176 1.075-.498-1.168-.203-.141-1.179-.554 1.05-1.163-.229.825.851zM29.212 27.494l-.003.026.006-.021zM23.532 25.684l.726-.83 1.004.457-.565-.948.743-.816-1.075.244-.544-.96-.099 1.1-1.08.223 1.013.432zM30.785 26.797l-.485-.991-1.088.178.793-.767-.505-.981.974.516.776-.784-.192 1.087.986.498-1.092.152z"
|
|
35
|
+
/>
|
|
36
|
+
<path
|
|
37
|
+
fill={props?.fill ? props.fill : '#002710'}
|
|
38
|
+
fillOpacity={0.25}
|
|
39
|
+
d="M21.432 33.887c-.626-.364-.566-.879-.626-1.125-.061-.243-.242-1.49-.242-1.853s-.323-.771-.546-1.242c-.223-.472-.809-1.714-.848-1.8-.041-.085-.303-.3-.727-.107-.425.193-.91.044-1.03.107a3.4 3.4 0 0 1-.768.236c-.202.021-.182.278-.323.364-.141.087-.546-.15-.546-.15s-.201-.106-.242-.192-.04-.206-.122-.45c-.12-.364.103-.4.103-.4s.342-.314.464-.422c.12-.107.633-.711.645-.934.021-.365.344-.579.486-.75.07-.086.23-.172.282-.302.054-.127 0-.298 0-.298-.221-.17 0-.879 0-.879h.081s0 .193.08.3c.082.108.243.472.344.365.102-.108.283.02.283.02-.162-.234.08-.814.08-.814h.082v.065c0 .064.04.3.08.407.04.108.364.643.364.643s.314.162.435.267.225.072.372.04c.304-.065 2.544 1.243 3.575 2.434.55.635 1.01.621 1.293.642.284.022 1.475.6 1.475.6s1.313.087 2.525-.363 2.16-.835 3.575-.279c0 0 .322.129.525.17.202.045.585.194.585.194s1.112-.15 1.818 1.436c.706 1.584.848 3.213.585 4.52 0 0 0-.28-.06-.43s-.363 1.007-.484 1.2v-.428c0-.065-.305.706-.364.94-.06.237-.08.43-.08.43s-.02-.706.06-.9c.08-.192-.182.343-.182.257 0-.085.02-.62.02-.77s-.162.085-.141-.92c.02-1.008.181-1.757.02-2.465-.163-.706-.1-.814-.1-.814s-.02.6-.082.729c0 0-.202 1.284-.545 1.884s-.807 1.2-.646 1.671c.16.472.404 1.007.404 1.178s.04.214.101.344c.06.127.283.557.14.878-.14.321-.12 1.007-.12 1.413s.02 1.563.02 1.65c0 .085 0 .17-.082.213-.079.044-.12.15-.14.215-.021.064-.223.107-.223.257s.122.343.122.407-.182.192-.182.192-.949.065-.949 0 .343-.536.343-.536 0-.15.142-.214c.14-.064.201-.172.201-.406 0-.236-.04-.28.041-.514.08-.236.021-2.079.021-2.079l-.062-.085s-.362 1.284-.384 1.521c-.02.235.062.578-.161.834-.223.258-.404.365-.404.365s-.1.15-.02.258c.081.107.182.257.121.32a.6.6 0 0 1-.202.108s-.666.129-.868.043c0 0 .14-.364.18-.45.042-.087.082-.214.223-.342.142-.13.283-.108.283-.301 0-.192.1-.257.243-.62.141-.365.282-1.564.282-1.714s-.282-.856-.282-1.393v-.942s-.223-.235-.364-.815c-.14-.577-.707-1.263-.848-1.392-.14-.128-.222-.084-.383-.064-.162.022-.162-.064-.345-.15-.181-.085-.929.343-1.251.58-.319.231-1.768.71-3.372.89l-.083.008c-1.636.171-.766.128-.848.128 0 0 .162.622.223 1.178.06.558.182 1.092.182 1.414 0 .323-.02.879.04.986.061.107.285 1.114.285 1.114s.32.321.24.45c-.081.127-.238.15-.24.364s-.078.578 0 .642c.079.065.104.128 0 .15s-.244.128-.244.128-.182.236-.788.108c0 0 0-.171.162-.343.161-.17.161-.17.282-.235s.06-.17.141-.387c.081-.213.122-.342.122-.342s-.162-.15-.162-.343c0-.192-.323-1.178-.363-1.285s-.324-.535-.445-1.028-.424-1.435-.546-1.713c-.12-.279-.14-.171-.14.042s-.236.879-.108 1.243.114 1.07 0 1.22c-.115.151-.115.494-.115.75 0 .257.069.9.115 1.05.047.15.155.278 0 .407-.156.129-.215.215-.277.278-.06.065-.141.428-.141.493 0 .063.182.17.122.214-.061.043-.242.279-.242.279s-.607.042-.95-.022v-.086s.326-.514.496-.62c.17-.108.13-.215.21-.343s.181-.45.181-.536 0-.3.021-.364c.021-.065-.06-1.2-.06-1.2s-.223-.664-.202-1.156c.02-.493.032-.864-.15-1.136-.658-.983-.476-1.99-.476-1.99"
|
|
40
|
+
/>
|
|
41
|
+
<path
|
|
42
|
+
fill={props?.fill ? props.fill : '#002710'}
|
|
43
|
+
fillOpacity={0.25}
|
|
44
|
+
d="M34.58 26.276c1.762 1.848 2.533 4.006 2.533 6.763a10.27 10.27 0 0 1-3.246 7.506c6.193-2.898 11.741-8.931 11.741-8.931-3.659-.473-7.875-2.759-11.028-5.338M52.417 18.503c.322 2.714.736 5.987-.827 10.823l2.942-8.066c.594-1.71-1.425-2.632-2.115-2.757"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fill={props?.fill ? props.fill : '#002710'}
|
|
48
|
+
fillOpacity={0.25}
|
|
49
|
+
d="M52.212 21.687c-4.784 3.615-18.9-1.612-24.815-1.164-5.471.413-7.667 3.739-7.667 3.739q.01-.008.02-.015a10.92 10.92 0 0 1 6.604-2.213c2.815 0 5.085 1.011 7.324 2.805.955.875 1.96 1.42 2.894 1.984 7.765 4.688 11.072 4.092 11.072 4.092-5.833 7.325-13.654 10.14-13.654 10.14 7.4 1.242 12.588-.627 12.589-.627l5.011-11.102.013-.027c.63-2.47.948-5.85.609-7.612"
|
|
50
|
+
/>
|
|
51
|
+
</svg>
|
|
52
|
+
);
|
|
53
|
+
export default EventSummaryDefaultIcon;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as EventSummaryDefaultIcon } from './EventSummaryDefaultIcon';
|
|
1
2
|
export { default as LogoPadraoIcon } from './LogoPadraoIcon';
|
|
2
3
|
export { default as LogoSeqmBlackGreenIcon } from './LogoSeqmBlackGreenIcon';
|
|
3
4
|
export { default as LogoSeqmIcon } from './LogoSeqmIcon';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.5 3C16.5 2.60218 16.658 2.22064 16.9393 1.93934C17.2206 1.65804 17.6022 1.5 18 1.5H21C21.3978 1.5 21.7794 1.65804 22.0607 1.93934C22.342 2.22064 22.5 2.60218 22.5 3V21H23.25C23.4489 21 23.6397 21.079 23.7803 21.2197C23.921 21.3603 24 21.5511 24 21.75C24 21.9489 23.921 22.1397 23.7803 22.2803C23.6397 22.421 23.4489 22.5 23.25 22.5H0.75C0.551088 22.5 0.360322 22.421 0.21967 22.2803C0.0790176 22.1397 0 21.9489 0 21.75C0 21.5511 0.0790176 21.3603 0.21967 21.2197C0.360322 21.079 0.551088 21 0.75 21H1.5V16.5C1.5 16.1022 1.65804 15.7206 1.93934 15.4393C2.22064 15.158 2.60218 15 3 15H6C6.39782 15 6.77936 15.158 7.06066 15.4393C7.34196 15.7206 7.5 16.1022 7.5 16.5V21H9V10.5C9 10.1022 9.15804 9.72064 9.43934 9.43934C9.72064 9.15804 10.1022 9 10.5 9H13.5C13.8978 9 14.2794 9.15804 14.5607 9.43934C14.842 9.72064 15 10.1022 15 10.5V21H16.5V3ZM18 21H21V3H18V21ZM13.5 21V10.5H10.5V21H13.5ZM6 21V16.5H3V21H6Z" fill="#1E1E1E"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.455 7.45498C16.6663 7.25381 16.9475 7.1426 17.2392 7.14481C17.531 7.14702 17.8104 7.26247 18.0187 7.46681C18.2269 7.67115 18.3476 7.9484 18.3553 8.24004C18.363 8.53169 18.2571 8.81492 18.06 9.02998L12.075 16.515C11.9721 16.6258 11.8479 16.7148 11.7098 16.7765C11.5717 16.8383 11.4226 16.8715 11.2714 16.8743C11.1201 16.8771 10.9699 16.8494 10.8296 16.7928C10.6894 16.7362 10.5619 16.6519 10.455 16.545L6.48599 12.576C6.37546 12.473 6.28681 12.3488 6.22532 12.2108C6.16383 12.0728 6.13077 11.9238 6.1281 11.7728C6.12544 11.6217 6.15323 11.4717 6.20981 11.3316C6.26639 11.1915 6.35061 11.0643 6.45743 10.9574C6.56426 10.8506 6.69151 10.7664 6.8316 10.7098C6.97168 10.6532 7.12172 10.6254 7.27278 10.6281C7.42383 10.6308 7.5728 10.6638 7.7108 10.7253C7.8488 10.7868 7.973 10.8754 8.07599 10.986L11.217 14.1255L16.4265 7.48798C16.4359 7.47643 16.4459 7.46541 16.4565 7.45498H16.455Z" fill="#1E1E1E"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6 12C6 11.8011 6.07902 11.6103 6.21967 11.4697C6.36032 11.329 6.55109 11.25 6.75 11.25H17.25C17.4489 11.25 17.6397 11.329 17.7803 11.4697C17.921 11.6103 18 11.8011 18 12C18 12.1989 17.921 12.3897 17.7803 12.5303C17.6397 12.671 17.4489 12.75 17.25 12.75H6.75C6.55109 12.75 6.36032 12.671 6.21967 12.5303C6.07902 12.3897 6 12.1989 6 12Z" fill="#1E1E1E"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.281 11.781C16.4218 11.6401 16.5009 11.4491 16.5009 11.25C16.5009 11.0508 16.4218 10.8598 16.281 10.719C16.1401 10.5781 15.9491 10.499 15.75 10.499C15.5508 10.499 15.3598 10.5781 15.219 10.719L11.25 14.6895L9.53097 12.969C9.39014 12.8281 9.19913 12.749 8.99997 12.749C8.80081 12.749 8.6098 12.8281 8.46897 12.969C8.32814 13.1098 8.24902 13.3008 8.24902 13.5C8.24902 13.6991 8.32814 13.8901 8.46897 14.031L10.719 16.281C10.7886 16.3508 10.8714 16.4062 10.9625 16.444C11.0536 16.4818 11.1513 16.5013 11.25 16.5013C11.3486 16.5013 11.4463 16.4818 11.5374 16.444C11.6285 16.4062 11.7113 16.3508 11.781 16.281L16.281 11.781Z" fill="#1E1E1E"/>
|
|
3
|
+
<path d="M21 21V6.75L14.25 0H6C5.20435 0 4.44129 0.316071 3.87868 0.87868C3.31607 1.44129 3 2.20435 3 3V21C3 21.7956 3.31607 22.5587 3.87868 23.1213C4.44129 23.6839 5.20435 24 6 24H18C18.7956 24 19.5587 23.6839 20.1213 23.1213C20.6839 22.5587 21 21.7956 21 21ZM14.25 4.5C14.25 5.09674 14.4871 5.66903 14.909 6.09099C15.331 6.51295 15.9033 6.75 16.5 6.75H19.5V21C19.5 21.3978 19.342 21.7794 19.0607 22.0607C18.7794 22.342 18.3978 22.5 18 22.5H6C5.60218 22.5 5.22064 22.342 4.93934 22.0607C4.65804 21.7794 4.5 21.3978 4.5 21V3C4.5 2.60218 4.65804 2.22064 4.93934 1.93934C5.22064 1.65804 5.60218 1.5 6 1.5H14.25V4.5Z" fill="#1E1E1E"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_4_3093)">
|
|
3
|
+
<path d="M20.2499 1.50023C19.6532 1.50023 19.0809 1.73728 18.6589 2.15924C18.237 2.58119 17.9999 3.15349 17.9999 3.75023C17.9999 4.34696 18.237 4.91926 18.6589 5.34122C19.0809 5.76317 19.6532 6.00023 20.2499 6.00023C20.8466 6.00023 21.4189 5.76317 21.8409 5.34122C22.2629 4.91926 22.4999 4.34696 22.4999 3.75023C22.4999 3.15349 22.2629 2.58119 21.8409 2.15924C21.4189 1.73728 20.8466 1.50023 20.2499 1.50023ZM16.4999 3.75023C16.4998 2.87038 16.8091 2.0185 17.3736 1.34364C17.9382 0.668786 18.722 0.213922 19.5881 0.0586326C20.4541 -0.096657 21.3472 0.057517 22.111 0.494181C22.8749 0.930844 23.4608 1.62219 23.7664 2.44726C24.072 3.27234 24.0778 4.1786 23.7827 5.00749C23.4876 5.83637 22.9105 6.53511 22.1522 6.98144C21.394 7.42777 20.5029 7.59328 19.635 7.449C18.7671 7.30473 17.9775 6.85986 17.4044 6.19223L7.32741 10.8722C7.55907 11.6064 7.55907 12.3941 7.32741 13.1282L17.4044 17.8082C18.0102 17.1037 18.8559 16.6492 19.7777 16.5327C20.6995 16.4162 21.6317 16.6461 22.3937 17.1778C23.1557 17.7094 23.6931 18.5051 23.9019 19.4104C24.1107 20.3158 23.976 21.2664 23.5238 22.0781C23.0716 22.8898 22.3342 23.5047 21.4545 23.8037C20.5748 24.1026 19.6154 24.0644 18.7623 23.6963C17.9092 23.3283 17.2231 22.6566 16.837 21.8115C16.4509 20.9664 16.3922 20.0081 16.6724 19.1222L6.59541 14.4422C6.09656 15.0236 5.43163 15.4382 4.69008 15.6304C3.94852 15.8225 3.16591 15.7829 2.44752 15.5169C1.72913 15.251 1.10942 14.7714 0.671771 14.1427C0.234118 13.5139 -0.000488281 12.7663 -0.000488281 12.0002C-0.000488281 11.2342 0.234118 10.4865 0.671771 9.8578C1.10942 9.22908 1.72913 8.74948 2.44752 8.48351C3.16591 8.21754 3.94852 8.17796 4.69008 8.3701C5.43163 8.56224 6.09656 8.97687 6.59541 9.55823L16.6724 4.87823C16.5577 4.51323 16.4995 4.13283 16.4999 3.75023ZM3.74991 9.75023C3.15317 9.75023 2.58088 9.98728 2.15892 10.4092C1.73696 10.8312 1.49991 11.4035 1.49991 12.0002C1.49991 12.597 1.73696 13.1693 2.15892 13.5912C2.58088 14.0132 3.15317 14.2502 3.74991 14.2502C4.34665 14.2502 4.91894 14.0132 5.3409 13.5912C5.76286 13.1693 5.99991 12.597 5.99991 12.0002C5.99991 11.4035 5.76286 10.8312 5.3409 10.4092C4.91894 9.98728 4.34665 9.75023 3.74991 9.75023ZM20.2499 18.0002C19.6532 18.0002 19.0809 18.2373 18.6589 18.6592C18.237 19.0812 17.9999 19.6535 17.9999 20.2502C17.9999 20.847 18.237 21.4193 18.6589 21.8412C19.0809 22.2632 19.6532 22.5002 20.2499 22.5002C20.8466 22.5002 21.4189 22.2632 21.8409 21.8412C22.2629 21.4193 22.4999 20.847 22.4999 20.2502C22.4999 19.6535 22.2629 19.0812 21.8409 18.6592C21.4189 18.2373 20.8466 18.0002 20.2499 18.0002Z" fill="#1E1E1E"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_4_3093">
|
|
7
|
+
<rect width="24" height="24" fill="white"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_4_3547)">
|
|
3
|
+
<path d="M3.75008 0.75C3.75008 0.551088 3.8291 0.360322 3.96975 0.21967C4.1104 0.0790176 4.30117 0 4.50008 0L19.5001 0C19.699 0 19.8898 0.0790176 20.0304 0.21967C20.1711 0.360322 20.2501 0.551088 20.2501 0.75C20.2501 1.557 20.2321 2.325 20.1991 3.054C20.7918 3.15215 21.3588 3.36798 21.8668 3.68877C22.3747 4.00956 22.8133 4.42882 23.1567 4.92181C23.5 5.41481 23.7411 5.97156 23.8659 6.55924C23.9906 7.14692 23.9964 7.75362 23.8829 8.34358C23.7694 8.93353 23.539 9.49479 23.2051 9.99426C22.8713 10.4937 22.4408 10.9213 21.939 11.2517C21.4373 11.5822 20.8745 11.8088 20.2838 11.9182C19.693 12.0277 19.0864 12.0177 18.4996 11.889C17.3146 14.6865 15.6826 16.0545 14.2501 16.4055V19.665L16.3876 20.199C16.6786 20.271 16.9531 20.4015 17.1931 20.5815L19.9501 22.65C20.076 22.7444 20.169 22.8761 20.216 23.0264C20.2629 23.1766 20.2614 23.3378 20.2116 23.4872C20.1618 23.6365 20.0663 23.7664 19.9386 23.8584C19.8109 23.9505 19.6575 24 19.5001 24H4.50008C4.34267 24 4.18925 23.9505 4.06155 23.8584C3.93385 23.7664 3.83835 23.6365 3.78857 23.4872C3.73879 23.3378 3.73726 23.1766 3.7842 23.0264C3.83113 22.8761 3.92415 22.7444 4.05008 22.65L6.80708 20.5815C7.04708 20.4015 7.32158 20.271 7.61258 20.199L9.75008 19.665V16.4055C8.31758 16.0545 6.68558 14.6865 5.50058 11.8875C4.91346 12.0169 4.30635 12.0274 3.71512 11.9183C3.12388 11.8092 2.5605 11.5827 2.05825 11.2523C1.556 10.9218 1.12506 10.494 0.79089 9.99424C0.456717 9.49445 0.226085 8.93276 0.112613 8.34235C-0.000858869 7.75193 0.00513096 7.14476 0.130229 6.5567C0.255327 5.96864 0.496996 5.41161 0.840963 4.91851C1.18493 4.4254 1.62422 4.00623 2.1329 3.68573C2.64157 3.36523 3.20931 3.14992 3.80258 3.0525C3.76727 2.28551 3.74976 1.5178 3.75008 0.75ZM3.89858 4.56C3.11586 4.70322 2.42209 5.1515 1.96989 5.80624C1.5177 6.46098 1.34411 7.26853 1.48733 8.05125C1.63055 8.83397 2.07883 9.52774 2.73357 9.97994C3.38831 10.4321 4.19586 10.6057 4.97858 10.4625C4.47908 8.8875 4.09658 6.9435 3.89858 4.56ZM19.0231 10.4625C19.8058 10.6057 20.6134 10.4321 21.2681 9.97994C21.9228 9.52774 22.3711 8.83397 22.5143 8.05125C22.6575 7.26853 22.484 6.46098 22.0318 5.80624C21.5796 5.1515 20.8858 4.70322 20.1031 4.56C19.9036 6.945 19.5211 8.8875 19.0231 10.4625ZM5.25608 1.5C5.26658 2.2755 5.29508 3.009 5.34008 3.7035C5.53508 6.7455 6.02558 9.0225 6.64508 10.704C7.94108 14.22 9.72608 15 10.5001 15C10.699 15 10.8898 15.079 11.0304 15.2197C11.1711 15.3603 11.2501 15.5511 11.2501 15.75V19.665C11.2501 19.9994 11.1383 20.3242 10.9326 20.5878C10.7269 20.8514 10.439 21.0387 10.1146 21.12L7.97558 21.654C7.87847 21.6782 7.78718 21.7215 7.70708 21.7815L6.75008 22.5H17.2501L16.2931 21.7815C16.2125 21.7214 16.1207 21.678 16.0231 21.654L13.8856 21.12C13.5612 21.0387 13.2733 20.8514 13.0676 20.5878C12.8618 20.3242 12.7501 19.9994 12.7501 19.665V15.75C12.7501 15.5511 12.8291 15.3603 12.9697 15.2197C13.1104 15.079 13.3012 15 13.5001 15C14.2741 15 16.0591 14.22 17.3551 10.704C17.9746 9.024 18.4651 6.744 18.6601 3.7035C18.7051 3.009 18.7336 2.2755 18.7441 1.5H5.25608Z" fill="#1E1E1E"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_4_3547">
|
|
7
|
+
<rect width="24" height="24" fill="white"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg width="70" height="60" viewBox="0 0 70 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="70" height="60" rx="4" fill="white" fill-opacity="0.85"/>
|
|
3
|
+
<rect x="0.5" y="0.5" width="69" height="59" rx="3.5" stroke="white" stroke-opacity="0.25"/>
|
|
4
|
+
<rect x="9.65" y="4.65" width="50.7" height="50.7" rx="25.35" stroke="#002710" stroke-opacity="0.25" stroke-width="1.3"/>
|
|
5
|
+
<path d="M26.2767 25.4587L27.3406 24.9353L28.1477 25.8059L27.9795 24.6294L29.0548 24.1311L27.8873 23.9278L27.7459 22.7494L27.1919 23.7984L26.0288 23.5703L26.8543 24.421L26.2767 25.4587Z" fill="#002710" fill-opacity="0.25"/>
|
|
6
|
+
<path d="M29.2124 27.4935L29.209 27.5195C29.2105 27.5129 29.2124 27.5053 29.2155 27.499L29.2124 27.4935Z" fill="#002710" fill-opacity="0.25"/>
|
|
7
|
+
<path d="M23.5316 25.6842L24.2582 24.8538L25.2621 25.3106L24.6974 24.3627L25.4399 23.5474L24.3655 23.7912L23.8214 22.8312L23.7225 23.9314L22.6411 24.1537L23.6554 24.5863L23.5316 25.6842Z" fill="#002710" fill-opacity="0.25"/>
|
|
8
|
+
<path d="M30.785 26.7973L30.3004 25.806L29.2119 25.9839L30.0045 25.2167L29.5002 24.2357L30.4743 24.7518L31.2502 23.9684L31.0585 25.0553L32.0441 25.553L30.9524 25.7053L30.785 26.7973Z" fill="#002710" fill-opacity="0.25"/>
|
|
9
|
+
<path d="M21.4323 33.8865C20.8058 33.523 20.8662 33.0081 20.8058 32.7622C20.7448 32.5185 20.5638 31.2725 20.5638 30.9093C20.5638 30.5457 20.2407 30.1379 20.018 29.6667C19.7955 29.1951 19.2094 27.9531 19.1705 27.8673C19.1288 27.7821 18.8675 27.5677 18.4428 27.7603C18.0183 27.9529 17.5339 27.8037 17.4121 27.8673C17.2908 27.9313 16.8477 28.0813 16.6451 28.1033C16.4429 28.1245 16.4632 28.3815 16.3218 28.4673C16.1806 28.5535 15.7764 28.3164 15.7764 28.3164C15.7764 28.3164 15.5746 28.2111 15.5344 28.1245C15.4944 28.0387 15.4944 27.9185 15.4124 27.6753C15.2926 27.3109 15.5147 27.2756 15.5147 27.2756C15.5147 27.2756 15.8575 26.9607 15.9788 26.8529C16.0999 26.7463 16.612 26.1417 16.6241 25.9185C16.6451 25.554 16.9675 25.3403 17.1104 25.1691C17.18 25.0828 17.3392 24.9972 17.3918 24.8674C17.4457 24.74 17.3918 24.5693 17.3918 24.5693C17.1706 24.3981 17.3918 23.6902 17.3918 23.6902H17.4731C17.4731 23.6902 17.4731 23.8828 17.5534 23.9909C17.6351 24.0981 17.7958 24.4618 17.8974 24.3551C17.9986 24.2466 18.1796 24.3758 18.1796 24.3758C18.0183 24.1406 18.2601 23.5614 18.2601 23.5614H18.3418V23.626C18.3418 23.6902 18.3818 23.9258 18.4225 24.0334C18.4627 24.1406 18.7862 24.6758 18.7862 24.6758C18.7862 24.6758 19.1001 24.8382 19.2212 24.9429C19.3421 25.0476 19.4456 25.0151 19.5933 24.9828C19.8969 24.9179 22.1373 26.2264 23.1678 27.4173C23.7184 28.0519 24.1789 28.0385 24.4614 28.0594C24.7446 28.0811 25.9362 28.6597 25.9362 28.6597C25.9362 28.6597 27.2491 28.7459 28.4606 28.2961C29.6722 27.8459 30.6216 27.4607 32.0355 28.0171C32.0355 28.0171 32.3581 28.1457 32.5609 28.1878C32.7631 28.2317 33.1461 28.3813 33.1461 28.3813C33.1461 28.3813 34.2577 28.2315 34.964 29.8169C35.6699 31.4011 35.8123 33.0297 35.5492 34.3366C35.5492 34.3366 35.5492 34.0571 35.4893 33.9079C35.4289 33.7577 35.1257 34.9141 35.0048 35.1069V34.6785C35.0048 34.6141 34.7004 35.3851 34.6413 35.6199C34.5808 35.8559 34.5604 36.0485 34.5604 36.0485C34.5604 36.0485 34.5403 35.3425 34.621 35.1499C34.7004 34.9569 34.4389 35.4917 34.4389 35.4061C34.4389 35.3213 34.4588 34.7855 34.4588 34.6355C34.4588 34.4849 34.2973 34.7213 34.3176 33.7153C34.3383 32.7077 34.4995 31.9587 34.3383 31.2513C34.1755 30.5455 34.2376 30.4375 34.2376 30.4375C34.2376 30.4375 34.2177 31.0371 34.1561 31.1655C34.1561 31.1655 33.9541 32.4505 33.6105 33.0503C33.2668 33.6503 32.8042 34.2503 32.9647 34.7213C33.1256 35.1925 33.3691 35.7275 33.3691 35.8991C33.3691 36.0703 33.4089 36.1133 33.4703 36.2426C33.5302 36.3699 33.7527 36.7996 33.6105 37.1206C33.4703 37.442 33.4898 38.1278 33.4898 38.5342C33.4898 38.941 33.5097 40.0974 33.5097 40.1834C33.5097 40.269 33.5097 40.3539 33.428 40.3974C33.3494 40.441 33.3077 40.5467 33.2878 40.6116C33.2668 40.6762 33.0653 40.7186 33.0653 40.869C33.0653 41.0182 33.187 41.2124 33.187 41.2762C33.187 41.34 33.0045 41.468 33.0045 41.468C33.0045 41.468 32.056 41.5328 32.056 41.468C32.056 41.4033 32.3992 40.9321 32.3992 40.9321C32.3992 40.9321 32.3992 40.7821 32.5408 40.7184C32.6812 40.6544 32.7422 40.5465 32.7422 40.3122C32.7422 40.0755 32.7022 40.0319 32.783 39.7976C32.8637 39.562 32.8042 37.7191 32.8042 37.7191L32.7422 37.6341C32.7422 37.6341 32.3795 38.9183 32.3581 39.1554C32.3384 39.3903 32.4199 39.7334 32.197 39.9895C31.9741 40.2474 31.793 40.3539 31.793 40.3539C31.793 40.3539 31.6921 40.5048 31.7729 40.6116C31.8542 40.7186 31.9546 40.869 31.894 40.9323C31.8341 40.9972 31.6921 41.0398 31.6921 41.0398C31.6921 41.0398 31.0256 41.1686 30.8242 41.0828C30.8242 41.0828 30.9648 40.7186 31.0048 40.6336C31.0457 40.5465 31.0859 40.419 31.2275 40.2914C31.3685 40.1616 31.5104 40.1832 31.5104 39.9895C31.5104 39.7978 31.6108 39.7334 31.7528 39.3696C31.894 39.0045 32.0355 37.806 32.0355 37.6564C32.0355 37.5055 31.7528 36.7996 31.7528 36.2631V35.3211C31.7528 35.3211 31.5301 35.0855 31.3885 34.5059C31.2491 33.9287 30.6819 33.2433 30.5413 33.1143C30.4005 32.9861 30.3188 33.0295 30.1577 33.0503C29.996 33.0721 29.996 32.9861 29.8128 32.9009C29.632 32.8153 28.8844 33.2433 28.562 33.4797C28.2435 33.7114 26.7936 34.1905 25.1899 34.3699C25.1622 34.3728 25.1352 34.3754 25.1071 34.3781C23.4712 34.5491 24.3407 34.5056 24.259 34.5056C24.259 34.5056 24.4209 35.1283 24.4815 35.6845C24.542 36.2421 24.664 36.7763 24.664 37.0983C24.664 37.4208 24.6435 37.9769 24.7032 38.0837C24.765 38.1911 24.9892 39.1978 24.9892 39.1978C24.9892 39.1978 25.3087 39.5192 25.2289 39.6476C25.1478 39.7751 24.991 39.7976 24.9892 40.0122C24.986 40.2258 24.9106 40.5904 24.9892 40.6544C25.0677 40.7186 25.0925 40.7819 24.9892 40.8044C24.8854 40.8254 24.7446 40.9321 24.7446 40.9321C24.7446 40.9321 24.5626 41.1684 23.9575 41.0396C23.9575 41.0396 23.9575 40.8688 24.119 40.697C24.2801 40.5264 24.2801 40.5264 24.4008 40.4622C24.5219 40.3969 24.4614 40.2914 24.542 40.0755C24.6231 39.8616 24.664 39.7332 24.664 39.7332C24.664 39.7332 24.502 39.5834 24.502 39.3901C24.502 39.1978 24.1789 38.2123 24.1385 38.1051C24.0981 37.9981 23.8152 37.5695 23.6943 37.0771C23.5728 36.5843 23.2698 35.6419 23.1481 35.3644C23.0278 35.0853 23.0075 35.1925 23.0075 35.4057C23.0075 35.6199 22.7718 36.2849 22.9 36.6489C23.0278 37.0129 23.0144 37.7191 22.9 37.8689C22.785 38.02 22.785 38.3628 22.785 38.6189C22.785 38.8761 22.8539 39.5192 22.9 39.6692C22.9467 39.8185 23.0546 39.9474 22.9 40.0755C22.7443 40.2046 22.6848 40.2912 22.6228 40.3537C22.5631 40.4188 22.482 40.7819 22.482 40.847C22.482 40.9099 22.6641 41.0177 22.6039 41.0612C22.5426 41.1038 22.3617 41.3398 22.3617 41.3398C22.3617 41.3398 21.7547 41.3824 21.4126 41.318V41.2324C21.4126 41.2324 21.7384 40.7184 21.9081 40.6112C22.0778 40.5044 22.0374 40.3969 22.1187 40.2686C22.1987 40.1414 22.2995 39.8183 22.2995 39.7329C22.2995 39.6473 22.2995 39.4331 22.32 39.3692C22.3412 39.3041 22.2603 38.1697 22.2603 38.1697C22.2603 38.1697 22.0374 37.5051 22.0579 37.0127C22.0778 36.5203 22.0904 36.1494 21.9081 35.8767C21.2504 34.8942 21.4323 33.8865 21.4323 33.8865Z" fill="#002710" fill-opacity="0.25"/>
|
|
10
|
+
<path d="M34.5797 26.2759C36.3422 28.1244 37.1126 30.2815 37.1126 33.0391C37.1126 35.9924 35.87 38.6528 33.8812 40.5301C33.877 40.5355 33.8719 40.5406 33.8667 40.545C40.0604 37.6473 45.6084 31.6139 45.6084 31.6139C41.9491 31.1406 37.733 28.8553 34.5797 26.2759Z" fill="#002710" fill-opacity="0.25"/>
|
|
11
|
+
<path d="M52.4171 18.5033C52.7389 21.217 53.1532 24.4898 51.5903 29.3259L54.532 21.26C55.1258 19.5491 53.1071 18.6285 52.4171 18.5033Z" fill="#002710" fill-opacity="0.25"/>
|
|
12
|
+
<path d="M52.2118 21.6874C47.428 25.302 33.3123 20.0749 27.3966 20.5226C21.9257 20.9363 19.7295 24.2616 19.7295 24.2616C19.7364 24.2561 19.7431 24.2519 19.7494 24.2467C21.5873 22.858 23.8749 22.0337 26.3544 22.0337C29.169 22.0337 31.4385 23.0454 33.6777 24.8385C34.6334 25.7142 35.6376 26.259 36.5723 26.823C44.3375 31.5109 47.6442 30.9151 47.6442 30.9151C41.8114 38.2395 33.9895 41.0556 33.9895 41.0556C41.3893 42.2967 46.5781 40.4281 46.5788 40.4281L51.5904 29.3259L51.6029 29.2986C52.2323 26.8286 52.5508 23.4499 52.2118 21.6874Z" fill="#002710" fill-opacity="0.25"/>
|
|
13
|
+
</svg>
|