This is an automated email from the ASF dual-hosted git repository.

xiangfu pushed a commit to branch new-site-dev
in repository https://gitbox.apache.org/repos/asf/pinot-site.git


The following commit(s) were added to refs/heads/new-site-dev by this push:
     new 8c540561 Fix video placeholder. Fix logos (#112)
8c540561 is described below

commit 8c540561e4f2b011347e2410fbd4509b330ff006
Author: Gio <[email protected]>
AuthorDate: Wed Apr 10 17:15:56 2024 +0200

    Fix video placeholder. Fix logos (#112)
---
 app/layout.tsx                                   |   2 +-
 components/TextVideoSplitSection.tsx             |  34 +-
 components/VideoEmbed.tsx                        |  18 +-
 data/featuresData.ts                             |   2 +-
 public/static/images/companies/media/inmobi.svg  |  33 ++
 public/static/images/companies/media/webex.svg   | 536 +++++++++++++++++++++++
 public/static/images/companies/retail/myntra.svg |  10 +
 7 files changed, 608 insertions(+), 27 deletions(-)

diff --git a/app/layout.tsx b/app/layout.tsx
index eca69283..72915395 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -89,7 +89,7 @@ export default function RootLayout({ children }: { children: 
React.ReactNode })
                     color="#5bbad5"
                 />
                 <meta
-                    http-equiv="Content-Security-Policy"
+                    httpEquiv="Content-Security-Policy"
                     content="default-src 'self';script-src 'self' 
'unsafe-eval' 'unsafe-inline' giscus.app analytics.umami.is www.youtube.com 
www.googletagmanager.com www.google-analytics.com;style-src 'self' 
'unsafe-inline';img-src * blob: data:;media-src *.s3.amazonaws.com;connect-src 
*;font-src 'self';frame-src www.youtube.com youtube.com giscus.app youtu.be;"
                 />
                 <meta name="msapplication-TileColor" content="#000000" />
diff --git a/components/TextVideoSplitSection.tsx 
b/components/TextVideoSplitSection.tsx
index 1350e2e3..524ff081 100644
--- a/components/TextVideoSplitSection.tsx
+++ b/components/TextVideoSplitSection.tsx
@@ -13,16 +13,18 @@ interface TextVideoSplitSectionProps {
 
 const TextVideoSplitSection: React.FC<TextVideoSplitSectionProps> = ({ 
videoUrl, title }) => {
     const [iframeLoaded, setIframeLoaded] = useState(false);
-    const imagePlaceHolder = '/static/images/video_thumbnail.png';
+    const imagePlaceholder = '/static/images/video_thumbnail.png';
 
     const handlePlaceholderClick = () => {
         setIframeLoaded(true);
+        window.open(videoUrl, '_blank');
     };
 
     const handleKeyPress = (event) => {
         // Check if the key pressed is 'Enter' or 'Space'
         if (event.key === 'Enter' || event.key === ' ') {
             setIframeLoaded(true);
+            window.open(videoUrl, '_blank');
         }
     };
 
@@ -58,27 +60,15 @@ const TextVideoSplitSection: 
React.FC<TextVideoSplitSectionProps> = ({ videoUrl,
                     </Button>
                 </article>
                 <aside className="flex-1">
-                    {!iframeLoaded ? (
-                        <div
-                            className="video-placeholder flex h-full 
cursor-pointer items-center justify-center bg-cover bg-center"
-                            onClick={handlePlaceholderClick}
-                            onKeyPress={handleKeyPress}
-                            role="button"
-                            tabIndex={0}
-                            style={{
-                                cursor: 'pointer',
-                                backgroundImage: `url(${imagePlaceHolder})`
-                            }}
-                        />
-                    ) : (
-                        <iframe
-                            className="h-[197px] w-full md:h-full"
-                            src={videoUrl}
-                            title={title}
-                            allow="accelerometer; autoplay; clipboard-write; 
encrypted-media; gyroscope; picture-in-picture"
-                            allowFullScreen
-                        ></iframe>
-                    )}
+                    <div
+                        className="video-placeholder flex h-[197px] w-full 
cursor-pointer items-center justify-center bg-cover bg-center md:h-full"
+                        onClick={handlePlaceholderClick}
+                        onKeyPress={handleKeyPress}
+                        role="button"
+                        tabIndex={0} // Make it focusable
+                        style={{ backgroundImage: `url(${imagePlaceholder})` }}
+                        aria-label={title || 'Open video in new tab'}
+                    />
                 </aside>
             </div>
         </section>
diff --git a/components/VideoEmbed.tsx b/components/VideoEmbed.tsx
index 7b4feca5..12693b1c 100644
--- a/components/VideoEmbed.tsx
+++ b/components/VideoEmbed.tsx
@@ -9,22 +9,34 @@ type VideoEmbedProps = {
 
 const VideoEmbed = ({ src, title }: VideoEmbedProps) => {
     const [iframeLoaded, setIframeLoaded] = useState(false);
-    const imagePlaceHolder = '/static/images/video_thumbnail.png';
+    const imagePlaceholder = '/static/images/video_thumbnail.png';
 
     const handlePlaceholderClick = () => {
         setIframeLoaded(true);
+        window.open(src, '_blank');
     };
 
     const handleKeyPress = (event) => {
         // Check if the key pressed is 'Enter' or 'Space'
         if (event.key === 'Enter' || event.key === ' ') {
             setIframeLoaded(true);
+            window.open(src, '_blank');
         }
     };
 
     return (
         <div className="aspect-h-9 aspect-w-16">
-            {!iframeLoaded ? (
+            <div
+                className="video-placeholder flex h-full cursor-pointer 
items-center justify-center bg-cover bg-center"
+                onClick={handlePlaceholderClick}
+                onKeyPress={handleKeyPress}
+                role="button"
+                tabIndex={0} // Make it focusable
+                style={{ backgroundImage: `url(${imagePlaceholder})` }}
+                aria-label={title || 'Open video in new tab'} // Improving 
accessibility
+            />
+
+            {/* {!iframeLoaded ? (
                 <div
                     className="video-placeholder flex h-full cursor-pointer 
items-center justify-center bg-cover bg-center"
                     onClick={handlePlaceholderClick}
@@ -42,7 +54,7 @@ const VideoEmbed = ({ src, title }: VideoEmbedProps) => {
                     frameBorder="0"
                     allow="accelerometer; autoplay; clipboard-write; 
encrypted-media; gyroscope; picture-in-picture; web-share"
                 ></iframe>
-            )}
+            )} */}
         </div>
     );
 };
diff --git a/data/featuresData.ts b/data/featuresData.ts
index 360cd511..6b9663d5 100644
--- a/data/featuresData.ts
+++ b/data/featuresData.ts
@@ -8,7 +8,7 @@ interface Feature {
 const featuresData: Feature[] = [
     {
         imageSrc: '/static/images/features/fast_queries.svg',
-        title: 'Fast Queries',
+        title: 'fast queries',
         description: [
             'Filter and aggregate petabyte data sets with P90 latencies in the 
tens of milliseconds—fast enough to return live results interactively in the 
UI.'
         ]
diff --git a/public/static/images/companies/media/inmobi.svg 
b/public/static/images/companies/media/inmobi.svg
new file mode 100644
index 00000000..c9c052c7
--- /dev/null
+++ b/public/static/images/companies/media/inmobi.svg
@@ -0,0 +1,33 @@
+<svg width="184" height="72" viewBox="0 0 184 72" fill="none" 
xmlns="http://www.w3.org/2000/svg";>
+<rect width="184" height="72" fill="#F9FDFE"/>
+<g clip-path="url(#clip0_1539_10314)">
+<path d="M52.5395 28.0625C54.8223 28.0625 56.6399 28.6476 57.9404 
29.8051C59.2545 30.9712 59.9206 32.6643 59.9206 34.8415V43.6021C59.9206 43.8021 
59.749 43.9656 59.539 43.9656H56.5202C56.3102 43.9656 56.1386 43.8021 56.1386 
43.6021V34.5231C56.1386 33.5206 55.818 32.7353 55.1858 32.1888C54.5355 31.6295 
53.6459 31.3476 52.5395 31.3476H49.2791C48.1727 31.3476 47.2831 31.6316 46.6328 
32.1888C45.9915 32.7418 45.6799 33.5055 45.6799 34.5231V43.6021C45.6799 43.8021 
45.5083 43.9656 45.2984 43.96 [...]
+<path d="M104.804 30.9216H104.824L114.341 30.9259C115.459 30.9495 116.299 
31.1776 116.897 31.6165C116.908 31.6251 116.926 31.6229 116.935 31.6122C116.942 
31.6035 116.942 31.5928 116.938 31.5842C116.24 30.3278 115.183 29.2865 113.889 
28.5787C113.205 28.2086 112.431 28.0172 111.645 28.0193H104.578V28.0236C102.419 
28.0709 100.728 28.7013 99.5516 29.9061C98.4069 31.0743 97.795 32.6836 97.7295 
34.6887C97.7295 34.7037 97.7408 34.7145 97.7566 34.7145C97.7656 34.7145 97.7747 
34.7102 97.7792 34.7 [...]
+<path d="M119.435 29.904C117.498 27.8774 114.278 27.9763 113.689 
28.0129C113.675 28.0129 113.664 28.0258 113.664 28.0387C113.664 28.0473 113.67 
28.0559 113.679 28.0602C116.107 29.2069 117.778 31.4272 118.141 33.9873C118.292 
35.0415 118.213 37.1413 118.213 37.1413C118.177 39.9962 116.511 42.6037 113.867 
43.9462C113.853 43.9527 113.849 43.9656 113.856 43.9785C113.86 43.9871 113.867 
43.9914 113.878 43.9914C114.44 44.0215 117.52 44.086 119.435 42.0981C120.638 
40.8503 121.264 39.1271 121.264  [...]
+<path d="M114 43.4535C115.314 42.7328 116.366 41.6507 117.021 40.3469C117.028 
40.334 117.021 40.3189 117.008 40.3125C116.999 40.3082 116.987 40.3103 116.978 
40.3168C116.375 40.8009 115.511 41.0526 114.337 41.0784H104.641C103.313 41.0504 
102.376 40.7363 101.773 40.121C101.103 39.4369 100.764 38.3698 100.764 
36.9541V35.0545C100.764 33.0988 101.442 32.2211 101.708 31.95C101.717 31.9392 
101.717 31.922 101.706 31.9134C101.697 31.9069 101.685 31.9048 101.676 
31.9091C100.371 32.4556 99.2468 33. [...]
+</g>
+<defs>
+<linearGradient id="paint0_linear_1539_10314" x1="98.5262" y1="31.3744" 
x2="117.34" y2="31.3744" gradientUnits="userSpaceOnUse">
+<stop stop-color="#A5D270"/>
+<stop offset="0.5" stop-color="#5DA4B6"/>
+<stop offset="0.7739" stop-color="#2F87E2"/>
+<stop offset="1" stop-color="#1476FC"/>
+</linearGradient>
+<linearGradient id="paint1_linear_1539_10314" x1="116.585" y1="28.4003" 
x2="121.961" y2="41.9393" gradientUnits="userSpaceOnUse">
+<stop offset="0.017" stop-color="#FFD522"/>
+<stop offset="0.1518" stop-color="#E0C437"/>
+<stop offset="0.5612" stop-color="#7B8C7E"/>
+<stop offset="0.9015" stop-color="#2379E9"/>
+<stop offset="1" stop-color="#1476FC"/>
+</linearGradient>
+<linearGradient id="paint2_linear_1539_10314" x1="97.909" y1="36.1851" 
x2="109.022" y2="47.4616" gradientUnits="userSpaceOnUse">
+<stop stop-color="#FC4B38"/>
+<stop offset="0.065" stop-color="#FC4B38"/>
+<stop offset="0.5" stop-color="#7E6985"/>
+<stop offset="0.9526" stop-color="#1476FC"/>
+</linearGradient>
+<clipPath id="clip0_1539_10314">
+<rect width="114" height="16" fill="white" transform="translate(35 28)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/static/images/companies/media/webex.svg 
b/public/static/images/companies/media/webex.svg
new file mode 100644
index 00000000..a2202545
--- /dev/null
+++ b/public/static/images/companies/media/webex.svg
@@ -0,0 +1,536 @@
+<svg width="184" height="72" viewBox="0 0 184 72" fill="none" 
xmlns="http://www.w3.org/2000/svg";>
+<rect width="184" height="72" fill="#F9FDFE"/>
+<g clip-path="url(#clip0_1539_10338)">
+<mask id="mask0_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="122" height="34">
+<path d="M152.967 19.4319H31V53H152.967V19.4319Z" fill="white"/>
+</mask>
+<g mask="url(#mask0_1539_10338)">
+<path d="M88.9947 25.4512H92.2417L87.5278 39.5727H83.8084L80.3032 
28.9392L76.798 39.611H73.1665L68.4526 25.4512H71.7381L75.1114 36.2105L78.5726 
25.4512H82.0778L85.6214 36.2542L88.9947 25.4512Z" fill="black"/>
+<mask id="mask1_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="122" height="34">
+<path d="M152.967 19.4319H31V52.8305H152.967V19.4319Z" fill="white"/>
+</mask>
+<g mask="url(#mask1_1539_10338)">
+<path d="M106.081 33.6791H95.615C95.7208 34.4027 95.9873 35.0937 96.3952 
35.7019C96.7799 36.2165 97.2854 36.6295 97.8676 36.9047C98.4684 37.1603 99.1151 
37.2924 99.7685 37.2929C100.508 37.2927 101.241 37.1613 101.933 36.9047C102.641 
36.6447 103.299 36.2655 103.878 35.7839L105.433 37.9708C104.662 38.6677 103.747 
39.1883 102.752 39.4961C101.729 39.8037 100.667 39.9639 99.5982 39.9718C98.2841 
39.9928 96.9866 39.6785 95.8293 39.0588C94.734 38.4543 93.8446 37.5388 93.2746 
36.4291C92.6782 35.2 [...]
+<path d="M119.316 26.058C120.395 26.7002 121.278 27.6224 121.871 
28.7259C122.496 29.9056 122.823 31.2192 122.823 32.5529C122.823 33.8867 122.496 
35.2003 121.871 36.3799C121.279 37.485 120.395 38.409 119.316 39.0533C118.236 
39.704 116.991 40.0322 115.729 39.9991C114.85 40.0017 113.981 39.8249 113.174 
39.4798C112.434 39.1277 111.784 38.6137 111.273 
37.9763V39.6547H108.158V19.4756H111.273V27.1788C111.784 26.5397 112.434 26.0239 
113.174 25.6698C113.969 25.2894 114.847 25.1128 115.729 25.1559 [...]
+<path d="M138.177 33.6791H127.695C127.795 34.4032 128.06 35.095 128.469 
35.702C128.855 36.2154 129.36 36.6281 129.942 36.9048C130.543 37.1604 131.189 
37.2924 131.843 37.2929C132.582 37.2928 133.315 37.1613 134.007 36.9048C134.715 
36.6447 135.373 36.2656 135.952 35.784L137.512 37.9708C136.743 38.6671 135.83 
39.1877 134.837 39.4962C133.814 39.8045 132.752 39.9647 131.683 39.9718C130.372 
39.9953 129.077 39.6848 127.92 39.0697C126.825 38.4653 125.935 37.5498 125.365 
36.44C124.769 35.2273 124 [...]
+<path d="M152.967 39.611H149.16L145.567 34.707L142.023 39.611H138.391L143.754 
32.3835L138.435 25.4512H142.237L145.698 30.1857L149.16 25.4512H152.835L147.599 
32.3397L152.967 39.611Z" fill="black"/>
+<path d="M115.641 51.2777H114.992V45.5974H115.773V47.7515C115.929 47.5326 
116.137 47.3553 116.379 47.2352C116.62 47.1151 116.887 47.0558 117.157 
47.0626C117.42 47.0643 117.682 47.1067 117.932 47.1883C118.169 47.2982 118.378 
47.4609 118.542 47.664C118.85 48.1052 119.001 48.6364 118.97 49.1729C118.998 
49.8012 118.782 50.4161 118.366 50.8896C118.194 51.0603 117.988 51.1926 117.761 
51.2777C117.541 51.3633 117.306 51.4078 117.069 51.409C116.799 51.4139 116.531 
51.3539 116.289 51.234C116.059 5 [...]
+<path d="M123.08 47.1884L121.651 51.3653C121.552 51.7742 121.365 52.1567 
121.102 52.4861C121.017 52.6062 120.896 52.6963 120.756 52.743C120.616 52.793 
120.47 52.8225 120.322 52.8305C120.16 52.8267 120.001 52.7972 119.849 
52.743V52.1416C119.976 52.178 120.108 52.1927 120.239 52.1854C120.313 52.1917 
120.388 52.1765 120.453 52.1416C120.519 52.1106 120.577 52.0658 120.624 
52.0104C120.769 51.7811 120.885 51.535 120.97 51.2778H120.712L119.19 
47.1501H120.003L121.173 50.6327L122.338 47.1501L123. [...]
+<path d="M133.546 45.5974H132.117V51.3215H133.546V45.5974Z" fill="black"/>
+<path d="M145.226 47.2321C144.855 47.028 144.436 46.9244 144.012 
46.9314C143.805 46.9178 143.598 46.9469 143.404 47.0168C143.209 47.0867 143.031 
47.196 142.881 47.3378C142.73 47.4795 142.611 47.6506 142.531 47.8404C142.45 
48.0301 142.41 48.2344 142.413 48.4403C142.408 48.6467 142.446 48.852 142.526 
49.0426C142.605 49.2333 142.725 49.4051 142.875 49.547C143.026 49.6888 143.205 
49.7974 143.401 49.8658C143.597 49.9342 143.805 49.9607 144.012 49.9438C144.436 
49.9534 144.856 49.8496 145.226 4 [...]
+<path d="M130.128 47.2321C129.759 47.0275 129.342 46.9238 128.92 
46.9314C128.713 46.9178 128.506 46.9469 128.311 47.0168C128.117 47.0867 127.939 
47.196 127.789 47.3378C127.638 47.4795 127.519 47.6506 127.439 47.8404C127.358 
48.0301 127.318 48.2344 127.321 48.4403C127.316 48.6467 127.354 48.852 127.434 
49.0426C127.513 49.2333 127.633 49.4051 127.783 49.547C127.934 49.6888 128.113 
49.7974 128.309 49.8658C128.505 49.9342 128.713 49.9607 128.92 49.9438C129.343 
49.9541 129.76 49.8502 130.128  [...]
+<path d="M149.764 46.9751C149.573 46.9742 149.384 47.0192 149.215 
47.1064C149.03 47.1786 148.867 47.2973 148.742 47.4508C148.6 47.5782 148.494 
47.7403 148.434 47.921C148.349 48.0899 148.321 48.2813 148.352 48.4677C148.359 
48.6524 148.386 48.8358 148.434 49.0144C148.512 49.1876 148.616 49.348 148.742 
49.49C148.882 49.6271 149.041 49.7431 149.215 49.8344C149.387 49.913 149.574 
49.9558 149.764 49.9602C149.96 49.9574 150.154 49.9141 150.333 49.8332C150.511 
49.7523 150.671 49.6354 150.802 49. [...]
+<path d="M139.04 46.8877C138.68 46.7932 138.312 46.7364 137.941 
46.7182C137.392 46.7182 137.034 46.8877 137.034 47.1884C137.034 47.4891 137.468 
47.664 137.683 47.7351L138.073 47.8608C138.454 47.9421 138.797 48.1474 139.048 
48.4445C139.299 48.7415 139.443 49.1133 139.457 49.501C139.457 50.917 138.205 
51.3926 137.078 51.3926C136.555 51.3993 136.032 51.3405 135.524 
51.2177V49.8837C135.97 50.0236 136.435 50.0973 136.903 50.1024C137.639 50.1024 
137.941 49.8837 137.941 49.583C137.941 49.2823 1 [...]
+</g>
+<mask id="mask2_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask2_1539_10338)">
+<path d="M55.4223 9.59884L23.3632 22.4946L34.9882 51.1123L67.0473 
38.2165L55.4223 9.59884Z" fill="url(#paint0_linear_1539_10338)"/>
+</g>
+<mask id="mask3_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask3_1539_10338)">
+<path d="M57.336 12.0704L25.2812 21.0244L33.0737 48.6481L65.1284 
39.6941L57.336 12.0704Z" fill="url(#paint1_radial_1539_10338)"/>
+</g>
+<mask id="mask4_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask4_1539_10338)">
+<path d="M31.0219 18.8739L30.5696 41.2955L59.4128 41.8717L59.8651 
19.4501L31.0219 18.8739Z" fill="url(#paint2_radial_1539_10338)"/>
+</g>
+<mask id="mask5_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask5_1539_10338)">
+<path d="M59.3927 18.7373L30.4589 19.4409L31.0124 41.9806L59.9463 
41.2769L59.3927 18.7373Z" fill="url(#paint3_radial_1539_10338)"/>
+</g>
+<mask id="mask6_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask6_1539_10338)">
+<path d="M59.3927 18.7373L30.4589 19.4409L31.0124 41.9806L59.9463 
41.2769L59.3927 18.7373Z" fill="url(#paint4_radial_1539_10338)"/>
+</g>
+<mask id="mask7_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask7_1539_10338)">
+<path d="M59.3927 18.7373L30.4589 19.4409L31.0124 41.9806L59.9463 
41.2769L59.3927 18.7373Z" fill="url(#paint5_radial_1539_10338)"/>
+</g>
+<mask id="mask8_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask8_1539_10338)">
+<path d="M35.6209 8.98605L22.8816 37.7286L54.7816 51.7294L67.521 
22.9868L35.6209 8.98605Z" fill="url(#paint6_radial_1539_10338)"/>
+</g>
+<mask id="mask9_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask9_1539_10338)">
+<path d="M40.469 6.08495L20.6351 33.9912L49.9346 54.6119L69.7685 
26.7057L40.469 6.08495Z" fill="url(#paint7_radial_1539_10338)"/>
+</g>
+<mask id="mask10_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask10_1539_10338)">
+<path d="M40.4735 6.09362L20.6396 33.9999L49.9391 54.6206L69.773 
26.7143L40.4735 6.09362Z" fill="url(#paint8_radial_1539_10338)"/>
+</g>
+<mask id="mask11_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask11_1539_10338)">
+<path d="M32.0194 14.1399L26.8861 40.4929L58.3794 46.5676L63.5128 
20.2146L32.0194 14.1399Z" fill="url(#paint9_radial_1539_10338)"/>
+</g>
+<mask id="mask12_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask12_1539_10338)">
+<path d="M42.3349 5.57616L20.2323 32.5632L48.0676 55.1379L70.1702 
28.1508L42.3349 5.57616Z" fill="url(#paint10_radial_1539_10338)"/>
+</g>
+<mask id="mask13_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask13_1539_10338)">
+<path d="M51.5816 6.79478L21.1804 25.4498L38.8257 53.9245L69.2268 
35.2695L51.5816 6.79478Z" fill="url(#paint11_radial_1539_10338)"/>
+</g>
+<mask id="mask14_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask14_1539_10338)">
+<path d="M47.4123 5.45781L20.1483 28.6622L43.0062 55.2568L70.2702 
32.0523L47.4123 5.45781Z" fill="url(#paint12_radial_1539_10338)"/>
+</g>
+<mask id="mask15_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask15_1539_10338)">
+<path d="M31.4085 16.0576L28.3827 40.9758L59.0088 44.6585L62.0346 
19.7402L31.4085 16.0576Z" fill="url(#paint13_radial_1539_10338)"/>
+</g>
+<mask id="mask16_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask16_1539_10338)">
+<path d="M52.5987 7.36115L21.6156 24.6771L37.8115 53.3731L68.7946 
36.0571L52.5987 7.36115Z" fill="url(#paint14_radial_1539_10338)"/>
+</g>
+<mask id="mask17_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask17_1539_10338)">
+<path d="M39.8895 6.32855L20.8123 34.4626L50.5239 54.4128L69.6011 
26.2787L39.8895 6.32855Z" fill="url(#paint15_radial_1539_10338)"/>
+</g>
+<mask id="mask18_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask18_1539_10338)">
+<path d="M44.1047 5.328L20.0443 31.2018L46.3034 55.382L70.3638 29.5083L44.1047 
5.328Z" fill="url(#paint16_linear_1539_10338)"/>
+</g>
+<mask id="mask19_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask19_1539_10338)">
+<path d="M57.306 12.0018L25.2379 21.0498L33.118 48.7057L65.186 39.6577L57.306 
12.0018Z" fill="url(#paint17_linear_1539_10338)"/>
+</g>
+<mask id="mask20_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask20_1539_10338)">
+<path d="M56.2174 10.4805L24.0546 21.8896L34.2082 50.2336L66.371 
38.8244L56.2174 10.4805Z" fill="url(#paint18_linear_1539_10338)"/>
+</g>
+<mask id="mask21_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="31" y="19" width="29" height="23">
+<path d="M51.7179 19.4319C50.6586 19.4224 49.6152 19.6881 48.6907 
20.2028C47.7368 20.6816 46.9075 21.374 46.2678 22.2256L43.1967 30.4263C43.1429 
30.7326 43.0714 31.0357 42.9824 31.3338C42.9384 31.5033 42.8945 31.6345 42.8505 
31.804C42.5945 32.6527 42.2919 33.4867 41.944 34.3025C41.6803 34.7726 41.2957 
35.3357 40.6035 35.2045L40.3398 35.0733C39.9069 34.749 39.5645 34.3199 39.3454 
33.8268C38.7591 32.7477 38.2948 31.6072 37.9609 30.4263C37.5293 28.9496 37.226 
27.4388 37.0544 25.9104C37.0517 [...]
+</mask>
+<g mask="url(#mask21_1539_10338)">
+<path d="M51.6451 6.84089L21.1997 25.4138L38.7528 53.9064L69.1982 
35.3335L51.6451 6.84089Z" fill="url(#paint19_linear_1539_10338)"/>
+</g>
+<mask id="mask22_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="44" y="19" width="16" height="16">
+<path d="M51.7179 19.4319C50.6564 19.4393 49.6089 19.6743 48.6468 
20.1207C47.6905 20.596 46.8604 21.2891 46.2239 22.1436L44.2791 27.3483L48.0864 
34.625L49.383 30.4919L49.5093 29.8468C49.7649 28.7572 50.1122 27.6909 50.5477 
26.6594C50.6857 26.2337 50.9407 25.8549 51.2839 25.566L51.3279 25.5223C51.481 
25.4473 51.6531 25.4192 51.8223 25.4416C51.9915 25.464 52.1502 25.5358 52.2783 
25.648C52.4404 25.7597 52.574 25.9076 52.6684 26.0799C52.8003 26.2494 52.8827 
26.4243 53.0145 26.5938C53.2243 26 [...]
+</mask>
+<g mask="url(#mask22_1539_10338)">
+<path d="M58.7335 16.6588L41.1974 20.2201L44.796 37.7668L62.3321 
34.2055L58.7335 16.6588Z" fill="url(#paint20_linear_1539_10338)"/>
+</g>
+<mask id="mask23_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask23_1539_10338)">
+<path d="M37.4414 11.5149L28.2871 39.0272L58.8555 49.099L68.0098 
21.5867L37.4414 11.5149Z" fill="url(#paint21_linear_1539_10338)"/>
+</g>
+<mask id="mask24_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask24_1539_10338)">
+<path d="M35.4074 15.4632L31.5359 40.6691L60.8738 45.1312L64.7453 
19.9253L35.4074 15.4632Z" fill="url(#paint22_radial_1539_10338)"/>
+</g>
+<mask id="mask25_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask25_1539_10338)">
+<path d="M35.4129 15.464L31.5414 40.6699L60.8793 45.1321L64.7508 
19.9262L35.4129 15.464Z" fill="url(#paint23_radial_1539_10338)"/>
+</g>
+<mask id="mask26_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask26_1539_10338)">
+<path d="M35.3886 15.4837L31.5574 40.6625L60.8798 45.0806L64.711 
19.9018L35.3886 15.4837Z" fill="url(#paint24_radial_1539_10338)"/>
+</g>
+<mask id="mask27_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask27_1539_10338)">
+<path d="M61.0956 16.2589L32.1888 19.745L35.1838 44.3366L64.0905 
40.8505L61.0956 16.2589Z" fill="url(#paint25_radial_1539_10338)"/>
+</g>
+<mask id="mask28_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask28_1539_10338)">
+<path d="M59.6152 12.6447L29.2219 20.9528L36.6729 47.9445L67.0662 
39.6365L59.6152 12.6447Z" fill="url(#paint26_radial_1539_10338)"/>
+</g>
+<mask id="mask29_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask29_1539_10338)">
+<path d="M59.6152 12.6447L29.2219 20.9528L36.6729 47.9445L67.0662 
39.6365L59.6152 12.6447Z" fill="url(#paint27_radial_1539_10338)"/>
+</g>
+<mask id="mask30_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask30_1539_10338)">
+<path d="M59.6152 12.6447L29.2219 20.9528L36.6729 47.9445L67.0662 
39.6365L59.6152 12.6447Z" fill="url(#paint28_radial_1539_10338)"/>
+</g>
+<mask id="mask31_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask31_1539_10338)">
+<path d="M57.4218 9.89562L26.9501 22.748L38.8623 50.7149L69.334 
37.8624L57.4218 9.89562Z" fill="url(#paint29_radial_1539_10338)"/>
+</g>
+<mask id="mask32_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask32_1539_10338)">
+<path d="M59.955 13.2309L29.7162 20.6776L36.3496 47.3507L66.5884 39.904L59.955 
13.2309Z" fill="url(#paint30_radial_1539_10338)"/>
+</g>
+<mask id="mask33_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask33_1539_10338)">
+<path d="M59.955 13.2309L29.7162 20.6776L36.3496 47.3507L66.5884 39.904L59.955 
13.2309Z" fill="url(#paint31_radial_1539_10338)"/>
+</g>
+<mask id="mask34_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask34_1539_10338)">
+<path d="M59.955 13.2255L29.7162 20.6722L36.3496 47.3453L66.5884 
39.8986L59.955 13.2255Z" fill="url(#paint32_radial_1539_10338)"/>
+</g>
+<mask id="mask35_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask35_1539_10338)">
+<path d="M61.4194 18.1101L33.7092 19.4877L34.8641 42.4919L62.5743 
41.1144L61.4194 18.1101Z" fill="url(#paint33_radial_1539_10338)"/>
+</g>
+<mask id="mask36_1539_10338" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="34" y="19" width="28" height="23">
+<path d="M40.3398 19.4319C40.08 19.4448 39.8213 19.4741 39.5652 
19.5194C38.5898 19.7158 37.6648 20.1079 36.8468 20.6719C36.0288 21.2359 35.3348 
21.9599 34.8074 22.7996C35.0975 22.8687 35.3741 22.9851 35.626 23.1441C35.964 
23.3433 36.259 23.6072 36.494 23.9204C36.8511 24.5196 37.0408 25.2029 37.0434 
25.8995C37.2251 27.3945 37.5152 28.8745 37.9115 30.3279C38.325 28.7317 39.0128 
27.2187 39.9443 25.8557C40.053 25.6934 40.2002 25.5601 40.3728 25.4676C40.4645 
25.4135 40.5684 25.3834 40.675 25. [...]
+</mask>
+<g mask="url(#mask36_1539_10338)">
+<path d="M38.5643 10.2127L27.2157 38.1219L57.7424 50.4137L69.091 
22.5045L38.5643 10.2127Z" fill="url(#paint34_linear_1539_10338)"/>
+</g>
+</g>
+</g>
+<defs>
+<linearGradient id="paint0_linear_1539_10338" x1="32.7844" y1="35.1151" 
x2="56.5451" y2="25.4631" gradientUnits="userSpaceOnUse">
+<stop stop-color="#1CBBF3"/>
+<stop offset="0.13" stop-color="#1CBBF3"/>
+<stop offset="0.34" stop-color="#1F99A5"/>
+<stop offset="0.45" stop-color="#209CA6"/>
+<stop offset="0.51" stop-color="#24A4AA"/>
+<stop offset="0.57" stop-color="#2BB3B0"/>
+<stop offset="0.6" stop-color="#30BDB4"/>
+<stop offset="0.79" stop-color="#38BA90"/>
+<stop offset="1" stop-color="#60F05A"/>
+</linearGradient>
+<radialGradient id="paint1_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(47.6146 28.5981) 
rotate(74.2467) scale(11.3199 8.63836)">
+<stop stop-color="#227B60"/>
+<stop offset="0.14" stop-color="#227B60"/>
+<stop offset="0.58" stop-color="#227B60"/>
+<stop offset="0.78" stop-color="#227B60"/>
+<stop offset="1" stop-color="#227B60"/>
+</radialGradient>
+<radialGradient id="paint2_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(49.1008 28.0308) 
rotate(91.1557) scale(7.65332 5.84199)">
+<stop stop-color="#227B60"/>
+<stop offset="0.25" stop-color="#227B60"/>
+<stop offset="0.71" stop-color="#227B60"/>
+<stop offset="0.92" stop-color="#227B60"/>
+<stop offset="1" stop-color="#227B60"/>
+</radialGradient>
+<radialGradient id="paint3_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(50.4425 28.5933) 
rotate(88.5931) scale(7.13504 5.09112)">
+<stop stop-color="#227B60"/>
+<stop offset="0.07" stop-color="#227B60"/>
+<stop offset="0.34" stop-color="#227B60"/>
+<stop offset="0.59" stop-color="#227B60"/>
+<stop offset="0.79" stop-color="#227B60"/>
+<stop offset="0.92" stop-color="#227B60"/>
+<stop offset="1" stop-color="#227B60"/>
+</radialGradient>
+<radialGradient id="paint4_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(50.116 28.3063) 
rotate(88.5931) scale(5.76159 4.11022)">
+<stop stop-color="#227B60"/>
+<stop offset="0.36" stop-color="#227B60"/>
+<stop offset="0.92" stop-color="#227B60"/>
+<stop offset="1" stop-color="#227B60"/>
+</radialGradient>
+<radialGradient id="paint5_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(50.6053 28.5274) 
rotate(88.5931) scale(4.59545 2.95572)">
+<stop stop-color="#20735A"/>
+<stop offset="0.15" stop-color="#20745A"/>
+<stop offset="0.38" stop-color="#21755C"/>
+<stop offset="0.67" stop-color="#21785D"/>
+<stop offset="1" stop-color="#227B60"/>
+</radialGradient>
+<radialGradient id="paint6_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(50.2809 27.5961) 
rotate(23.6964) scale(7.42029 5.55004)">
+<stop stop-color="#227A61"/>
+<stop offset="0.36" stop-color="#227A61"/>
+<stop offset="0.72" stop-color="#227A61"/>
+<stop offset="0.9" stop-color="#227A61"/>
+<stop offset="1" stop-color="#227A61"/>
+</radialGradient>
+<radialGradient id="paint7_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(47.4912 16.3974) 
rotate(35.1376) scale(9.88835 9.02851)">
+<stop stop-color="#3CD9C3"/>
+<stop offset="0.07" stop-color="#3BD7C1"/>
+<stop offset="0.41" stop-color="#38CEB9"/>
+<stop offset="0.65" stop-color="#36C8B4"/>
+<stop offset="0.76" stop-color="#35C6B2"/>
+<stop offset="1" stop-color="#35C6B2"/>
+</radialGradient>
+<radialGradient id="paint8_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(-16156.4 -21878.4) 
rotate(35.1388) scale(1757.1 1231.02)">
+<stop stop-color="#3CD9C3"/>
+<stop offset="0.07" stop-color="#3BD7C1"/>
+<stop offset="0.41" stop-color="#38CEB9"/>
+<stop offset="0.65" stop-color="#36C8B4"/>
+<stop offset="0.76" stop-color="#35C6B2"/>
+<stop offset="1" stop-color="#35C6B2"/>
+</radialGradient>
+<radialGradient id="paint9_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(52.9078 30.7871) 
rotate(101.023) scale(8.69574 10.7967)">
+<stop stop-color="#237F66"/>
+<stop offset="0.06" stop-color="#2C8C70"/>
+<stop offset="0.21" stop-color="#3DA785"/>
+<stop offset="0.35" stop-color="#4ABA93"/>
+<stop offset="0.47" stop-color="#51C59C"/>
+<stop offset="0.56" stop-color="#54C99F"/>
+<stop offset="1" stop-color="#54C99F"/>
+</radialGradient>
+<radialGradient id="paint10_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(46.4432 31.2811) 
rotate(-50.6822) scale(11.3814 12.3065)">
+<stop stop-color="#167C8A"/>
+<stop offset="0.04" stop-color="#167C8A"/>
+<stop offset="0.33" stop-color="#177F8D"/>
+<stop offset="0.54" stop-color="#17818F"/>
+<stop offset="0.65" stop-color="#178290"/>
+<stop offset="1" stop-color="#178290"/>
+</radialGradient>
+<radialGradient id="paint11_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(46.5494 32.6663) 
rotate(-31.5345) scale(11.1221 8.76646)">
+<stop stop-color="#177D87"/>
+<stop offset="0.05" stop-color="#177D87"/>
+<stop offset="0.11" stop-color="#177E89"/>
+<stop offset="0.21" stop-color="#177F8B"/>
+<stop offset="0.32" stop-color="#17818D"/>
+<stop offset="0.42" stop-color="#17818F"/>
+<stop offset="0.51" stop-color="#178290"/>
+<stop offset="0.6" stop-color="#178290"/>
+<stop offset="1" stop-color="#178290"/>
+</radialGradient>
+<radialGradient id="paint12_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(43.6885 32.0745) 
rotate(-130.679) scale(6.61753 5.21483)">
+<stop stop-color="#177F8A"/>
+<stop offset="0.26" stop-color="#177F8A"/>
+<stop offset="0.27" stop-color="#177F8A"/>
+<stop offset="0.38" stop-color="#17808C"/>
+<stop offset="0.5" stop-color="#17818D"/>
+<stop offset="0.62" stop-color="#17818F"/>
+<stop offset="0.74" stop-color="#17828F"/>
+<stop offset="0.86" stop-color="#178290"/>
+<stop offset="1" stop-color="#178290"/>
+</radialGradient>
+<radialGradient id="paint13_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(42.6347 33.7163) 
rotate(-173.143) scale(6.22351 6.19391)">
+<stop stop-color="#13656E"/>
+<stop offset="0.11" stop-color="#13646E"/>
+<stop offset="0.27" stop-color="#12646E"/>
+<stop offset="0.42" stop-color="#12636E"/>
+<stop offset="0.55" stop-color="#12636E"/>
+<stop offset="0.66" stop-color="#12636E"/>
+<stop offset="1" stop-color="#12636E"/>
+</radialGradient>
+<radialGradient id="paint14_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(43.1436 34.274) 
rotate(-119.44) scale(4.3371 3.65019)">
+<stop stop-color="#146A73"/>
+<stop offset="0.13" stop-color="#146A73"/>
+<stop offset="0.24" stop-color="#156F79"/>
+<stop offset="0.45" stop-color="#167783"/>
+<stop offset="0.65" stop-color="#167D8A"/>
+<stop offset="0.82" stop-color="#17818E"/>
+<stop offset="0.95" stop-color="#178290"/>
+<stop offset="1" stop-color="#178290"/>
+</radialGradient>
+<radialGradient id="paint15_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(41.7787 33.9883) 
rotate(-55.8595) scale(4.07912 3.23719)">
+<stop stop-color="#198E9C"/>
+<stop offset="0.1" stop-color="#198E9C"/>
+<stop offset="0.41" stop-color="#198E9C"/>
+<stop offset="0.67" stop-color="#198E9C"/>
+<stop offset="0.88" stop-color="#198E9C"/>
+<stop offset="1" stop-color="#198E9C"/>
+</radialGradient>
+<linearGradient id="paint16_linear_1539_10338" x1="34.1479" y1="19.2463" 
x2="44.6001" y2="28.966" gradientUnits="userSpaceOnUse">
+<stop stop-color="#2BF9FF"/>
+<stop offset="0.13" stop-color="#2BF9FF"/>
+<stop offset="0.27" stop-color="#29F9FF"/>
+<stop offset="0.4" stop-color="#27FAFF"/>
+<stop offset="0.49" stop-color="#26FAFF"/>
+<stop offset="0.54" stop-color="#26FAFF"/>
+<stop offset="1" stop-color="#26FAFF"/>
+</linearGradient>
+<linearGradient id="paint17_linear_1539_10338" x1="28.3398" y1="34.3611" 
x2="40.5947" y2="30.8693" gradientUnits="userSpaceOnUse">
+<stop stop-color="#26FAFF"/>
+<stop offset="0.06" stop-color="#26FAFF"/>
+<stop offset="0.24" stop-color="#26FAFF"/>
+<stop offset="0.39" stop-color="#26FAFF"/>
+<stop offset="0.5" stop-color="#26FAFF"/>
+<stop offset="0.55" stop-color="#26FAFF"/>
+<stop offset="1" stop-color="#26FAFF"/>
+</linearGradient>
+<linearGradient id="paint18_linear_1539_10338" x1="31.512" y1="35.8393" 
x2="45.1403" y2="30.9573" gradientUnits="userSpaceOnUse">
+<stop stop-color="#21DEFF"/>
+<stop offset="0.04" stop-color="#21DEFF"/>
+<stop offset="0.17" stop-color="#21DEFF"/>
+<stop offset="0.27" stop-color="#21DEFF"/>
+<stop offset="0.34" stop-color="#21DEFF"/>
+<stop offset="0.38" stop-color="#21DEFF"/>
+<stop offset="1" stop-color="#21DEFF"/>
+</linearGradient>
+<linearGradient id="paint19_linear_1539_10338" x1="42.5945" y1="27.65" 
x2="50.268" y2="40.2287" gradientUnits="userSpaceOnUse">
+<stop stop-color="#21DEFF"/>
+<stop offset="0.62" stop-color="#21DEFF"/>
+<stop offset="0.66" stop-color="#21DEFF"/>
+<stop offset="0.73" stop-color="#21DEFF"/>
+<stop offset="0.83" stop-color="#21DEFF"/>
+<stop offset="0.96" stop-color="#21DEFF"/>
+<stop offset="1" stop-color="#21DEFF"/>
+</linearGradient>
+<linearGradient id="paint20_linear_1539_10338" x1="52.2418" y1="31.8307" 
x2="51.0574" y2="25.9986" gradientUnits="userSpaceOnUse">
+<stop stop-color="#44B044"/>
+<stop offset="0.11" stop-color="#44B044"/>
+<stop offset="0.27" stop-color="#44B044"/>
+<stop offset="0.43" stop-color="#44B044"/>
+<stop offset="0.58" stop-color="#44B044"/>
+<stop offset="0.7" stop-color="#44B044"/>
+<stop offset="0.8" stop-color="#44B044"/>
+<stop offset="1" stop-color="#44B044"/>
+</linearGradient>
+<linearGradient id="paint21_linear_1539_10338" x1="36.8455" y1="25.5286" 
x2="62.0881" y2="33.9277" gradientUnits="userSpaceOnUse">
+<stop stop-color="#3066FB"/>
+<stop offset="0.38" stop-color="#2F64F7"/>
+<stop offset="0.74" stop-color="#2857D9"/>
+<stop offset="1" stop-color="#3C7EFF"/>
+</linearGradient>
+<radialGradient id="paint22_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(54.0829 29.6993) 
rotate(98.7321) scale(13.6194 9.03108)">
+<stop stop-color="#1A3D9C"/>
+<stop offset="0.4" stop-color="#1A3D9C"/>
+<stop offset="0.7" stop-color="#1A3D9C"/>
+<stop offset="1" stop-color="#1A3D9C"/>
+</radialGradient>
+<radialGradient id="paint23_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(8336.08 -21299.5) 
rotate(98.7324) scale(1675.45 907.626)">
+<stop stop-color="#1A3D9C"/>
+<stop offset="0.4" stop-color="#1A3D9C"/>
+<stop offset="0.7" stop-color="#1A3D9C"/>
+<stop offset="1" stop-color="#1A3D9C"/>
+</radialGradient>
+<radialGradient id="paint24_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(7316.24 -21613.2) 
rotate(98.6526) scale(1995.36 828.201)">
+<stop stop-color="#1A3D9C"/>
+<stop offset="0.4" stop-color="#1A3D9C"/>
+<stop offset="0.7" stop-color="#1A3D9C"/>
+<stop offset="1" stop-color="#1A3D9C"/>
+</radialGradient>
+<radialGradient id="paint25_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(52.4176 29.0881) 
rotate(83.0563) scale(11.9041 8.34574)">
+<stop stop-color="#1A3D9C"/>
+<stop offset="0.16" stop-color="#1A3D9C"/>
+<stop offset="0.33" stop-color="#1A3D9C"/>
+<stop offset="0.49" stop-color="#1A3D9C"/>
+<stop offset="0.61" stop-color="#1A3D9C"/>
+<stop offset="0.7" stop-color="#1A3D9C"/>
+<stop offset="1" stop-color="#1A3D9C"/>
+</radialGradient>
+<radialGradient id="paint26_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(54.4966 31.4002) 
rotate(74.568) scale(11.445 7.81412)">
+<stop stop-color="#18388F"/>
+<stop offset="0.37" stop-color="#193B96"/>
+<stop offset="0.7" stop-color="#1A3D9C"/>
+<stop offset="1" stop-color="#1A3D9C"/>
+</radialGradient>
+<radialGradient id="paint27_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(53.3672 33.2801) 
rotate(74.568) scale(5.31855 5.07636)">
+<stop stop-color="#18388F"/>
+<stop offset="0.09" stop-color="#183992"/>
+<stop offset="0.22" stop-color="#193B96"/>
+<stop offset="0.35" stop-color="#193C98"/>
+<stop offset="0.47" stop-color="#1A3C9A"/>
+<stop offset="0.59" stop-color="#1A3D9C"/>
+<stop offset="0.7" stop-color="#1A3D9C"/>
+<stop offset="1" stop-color="#1A3D9C"/>
+</radialGradient>
+<radialGradient id="paint28_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(53.5216 34.1551) 
rotate(74.568) scale(5.31855 5.07636)">
+<stop stop-color="#1A3D9C"/>
+<stop offset="0.01" stop-color="#1A3D9C"/>
+<stop offset="0.24" stop-color="#1A3D9C"/>
+<stop offset="0.44" stop-color="#1A3D9C"/>
+<stop offset="0.6" stop-color="#1A3D9C"/>
+<stop offset="0.7" stop-color="#1A3D9C"/>
+<stop offset="1" stop-color="#1A3D9C"/>
+</radialGradient>
+<radialGradient id="paint29_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(39.8439 32.0264) 
rotate(66.9288) scale(12.7031 8.45717)">
+<stop stop-color="#1A3D9C"/>
+<stop offset="0.4" stop-color="#1A3D9C"/>
+<stop offset="0.48" stop-color="#1A3D9C"/>
+<stop offset="0.69" stop-color="#1A3D9C"/>
+<stop offset="0.79" stop-color="#1A3D9C"/>
+<stop offset="1" stop-color="#1A3D9C"/>
+</radialGradient>
+<radialGradient id="paint30_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(39.1738 28.9266) 
rotate(76.0343) scale(9.41815 6.24387)">
+<stop stop-color="#1A3D9C"/>
+<stop offset="0.06" stop-color="#1A3D9C"/>
+<stop offset="0.21" stop-color="#1A3D9C"/>
+<stop offset="0.36" stop-color="#1A3D9C"/>
+<stop offset="0.51" stop-color="#1A3D9C"/>
+<stop offset="0.67" stop-color="#1A3D9C"/>
+<stop offset="0.83" stop-color="#1A3D9C"/>
+<stop offset="1" stop-color="#1A3D9C"/>
+</radialGradient>
+<radialGradient id="paint31_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(39.1738 28.9266) 
rotate(76.0343) scale(9.41815 6.24387)">
+<stop stop-color="#1B3E9E"/>
+<stop offset="0.06" stop-color="#1B3E9E"/>
+<stop offset="0.21" stop-color="#1B3E9D"/>
+<stop offset="0.36" stop-color="#1A3D9D"/>
+<stop offset="0.52" stop-color="#1A3D9C"/>
+<stop offset="0.67" stop-color="#1A3D9C"/>
+<stop offset="0.83" stop-color="#1A3D9C"/>
+<stop offset="1" stop-color="#1A3D9C"/>
+</radialGradient>
+<radialGradient id="paint32_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(39.9306 28.2197) 
rotate(76.0343) scale(7.20618 4.77728)">
+<stop stop-color="#183991"/>
+<stop offset="0.03" stop-color="#183992"/>
+<stop offset="0.18" stop-color="#193A95"/>
+<stop offset="0.34" stop-color="#193B97"/>
+<stop offset="0.5" stop-color="#1A3C99"/>
+<stop offset="0.66" stop-color="#1A3D9B"/>
+<stop offset="0.82" stop-color="#1A3D9C"/>
+<stop offset="1" stop-color="#1A3D9C"/>
+</radialGradient>
+<radialGradient id="paint33_radial_1539_10338" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(40.9399 28.7864) 
rotate(87.126) scale(5.69254 5.03465)">
+<stop stop-color="#2453D6"/>
+<stop offset="0.04" stop-color="#2453D6"/>
+<stop offset="0.2" stop-color="#2453D6"/>
+<stop offset="0.52" stop-color="#2453D6"/>
+<stop offset="0.73" stop-color="#2453D6"/>
+<stop offset="1" stop-color="#2453D6"/>
+</radialGradient>
+<linearGradient id="paint34_linear_1539_10338" x1="54.218" y1="16.1551" 
x2="47.8075" y2="32.0756" gradientUnits="userSpaceOnUse">
+<stop stop-color="#3774FF"/>
+<stop offset="0.05" stop-color="#3774FF"/>
+<stop offset="0.16" stop-color="#3774FF"/>
+<stop offset="0.32" stop-color="#3774FF"/>
+<stop offset="0.43" stop-color="#3774FF"/>
+<stop offset="1" stop-color="#3774FF"/>
+</linearGradient>
+<clipPath id="clip0_1539_10338">
+<rect width="122" height="34" fill="white" transform="translate(31 19)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/public/static/images/companies/retail/myntra.svg 
b/public/static/images/companies/retail/myntra.svg
new file mode 100644
index 00000000..feb61d1a
--- /dev/null
+++ b/public/static/images/companies/retail/myntra.svg
@@ -0,0 +1,10 @@
+<svg width="184" height="72" viewBox="0 0 184 72" fill="none" 
xmlns="http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink";>
+<rect width="184" height="72" fill="#F9FDFE"/>
+<rect x="35" y="19" width="114" height="34" fill="url(#pattern0)"/>
+<defs>
+<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" 
height="1">
+<use xlink:href="#image0_1539_10356" transform="matrix(0.000260417 0 0 
0.00086411 0 -0.433239)"/>
+</pattern>
+<image id="image0_1539_10356" width="3840" height="2160" 
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAADwAAAAhwCAMAAACnYDtAAAADImlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc
 [...]
+</defs>
+</svg>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to