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 278bf8c9 Wb 280 add webex (#111)
278bf8c9 is described below

commit 278bf8c983adbe5656b8ea54b10c1834e4bf4faa
Author: Gio <153032991+gio-start...@users.noreply.github.com>
AuthorDate: Tue Apr 9 14:42:52 2024 +0200

    Wb 280 add webex (#111)
    
    * Add frame-src header using meta tag
    
    * Fix meta tag frame-src for youtube
    
    * - Add Webex;
    - Update favicon;
    - Fix logos not working in Powered By page;
    - Remove Uber duplicate;
    - Add placeholder for YouTube videos while finding a solution.
---
 components/TextVideoSplitSection.tsx               |  46 +-
 components/VideoEmbed.tsx                          |  45 +-
 data/companiesUsingPinot.ts                        |   5 -
 data/companyQuotes.ts                              |  12 +-
 public/static/favicons/favicon-16x16.png           | Bin 1535 -> 7938 bytes
 ...{favicon-16x16.png => favicon-16x16_backup.png} | Bin
 public/static/favicons/favicon-32x32.png           | Bin 2576 -> 7938 bytes
 ...{favicon-32x32.png => favicon-32x32_backup.png} | Bin
 public/static/favicons/favicon-96x96.png           | Bin 8369 -> 7938 bytes
 ...{favicon-96x96.png => favicon-96x96_backup.png} | Bin
 public/static/images/carousel/webex.svg            | 525 +++++++++++++++++++++
 public/static/images/video_thumbnail.png           | Bin 0 -> 261677 bytes
 12 files changed, 604 insertions(+), 29 deletions(-)

diff --git a/components/TextVideoSplitSection.tsx 
b/components/TextVideoSplitSection.tsx
index 82386fc5..1350e2e3 100644
--- a/components/TextVideoSplitSection.tsx
+++ b/components/TextVideoSplitSection.tsx
@@ -1,6 +1,6 @@
 'use client';
 
-import React from 'react';
+import React, { useState } from 'react';
 import { Button } from './ui/button';
 import { ArrowRight } from 'lucide-react';
 import Link from 'next/link';
@@ -12,6 +12,20 @@ interface TextVideoSplitSectionProps {
 }
 
 const TextVideoSplitSection: React.FC<TextVideoSplitSectionProps> = ({ 
videoUrl, title }) => {
+    const [iframeLoaded, setIframeLoaded] = useState(false);
+    const imagePlaceHolder = '/static/images/video_thumbnail.png';
+
+    const handlePlaceholderClick = () => {
+        setIframeLoaded(true);
+    };
+
+    const handleKeyPress = (event) => {
+        // Check if the key pressed is 'Enter' or 'Space'
+        if (event.key === 'Enter' || event.key === ' ') {
+            setIframeLoaded(true);
+        }
+    };
+
     return (
         <section className="bg-stone-100 dark:bg-gray-900">
             <div className="flex flex-col px-5 py-14 sm:flex-row sm:px-6 
md:mx-auto md:max-w-screen-outerLiveArea md:gap-20 md:px-[5.5rem] 
md:py-[6.5rem]">
@@ -44,15 +58,27 @@ const TextVideoSplitSection: 
React.FC<TextVideoSplitSectionProps> = ({ videoUrl,
                     </Button>
                 </article>
                 <aside className="flex-1">
-                    {/* <div className=""> */}
-                    <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> */}
+                    {!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>
+                    )}
                 </aside>
             </div>
         </section>
diff --git a/components/VideoEmbed.tsx b/components/VideoEmbed.tsx
index c9004028..7b4feca5 100644
--- a/components/VideoEmbed.tsx
+++ b/components/VideoEmbed.tsx
@@ -1,19 +1,48 @@
+'use client';
+
+import { useState } from 'react';
+
 type VideoEmbedProps = {
     src: string;
     title?: string;
 };
 
 const VideoEmbed = ({ src, title }: VideoEmbedProps) => {
+    const [iframeLoaded, setIframeLoaded] = useState(false);
+    const imagePlaceHolder = '/static/images/video_thumbnail.png';
+
+    const handlePlaceholderClick = () => {
+        setIframeLoaded(true);
+    };
+
+    const handleKeyPress = (event) => {
+        // Check if the key pressed is 'Enter' or 'Space'
+        if (event.key === 'Enter' || event.key === ' ') {
+            setIframeLoaded(true);
+        }
+    };
+
     return (
         <div className="aspect-h-9 aspect-w-16">
-            <iframe
-                className="h-full w-full"
-                src={src}
-                title={title || 'Embedded Video'}
-                allowFullScreen
-                frameBorder="0"
-                allow="accelerometer; autoplay; clipboard-write; 
encrypted-media; gyroscope; picture-in-picture; web-share"
-            ></iframe>
+            {!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={{ cursor: 'pointer', backgroundImage: 
`url(${imagePlaceHolder})` }}
+                />
+            ) : (
+                <iframe
+                    className="h-full w-full"
+                    src={src}
+                    title={title || 'Embedded Video'}
+                    allowFullScreen
+                    frameBorder="0"
+                    allow="accelerometer; autoplay; clipboard-write; 
encrypted-media; gyroscope; picture-in-picture; web-share"
+                ></iframe>
+            )}
         </div>
     );
 };
diff --git a/data/companiesUsingPinot.ts b/data/companiesUsingPinot.ts
index 7b29c942..933cfc9f 100644
--- a/data/companiesUsingPinot.ts
+++ b/data/companiesUsingPinot.ts
@@ -54,11 +54,6 @@ const companiesUsingPinot: Company[] = [
         logo: '/static/images/companies/media/linkedin.svg',
         type: 'media'
     },
-    {
-        name: 'Uber',
-        logo: '/static/images/companies/food/uber.svg',
-        type: 'media'
-    },
     {
         name: 'Constant Contact',
         logo: '/static/images/companies/media/constant_contact.svg',
diff --git a/data/companyQuotes.ts b/data/companyQuotes.ts
index 2f9d7a54..62378813 100644
--- a/data/companyQuotes.ts
+++ b/data/companyQuotes.ts
@@ -10,13 +10,13 @@ const quotes = [
         company: 'Stripe',
         text: 'Pinot enables us to execute sub-second, petabyte-scale 
aggregation queries over fresh financial events in our internal ledger. We 
chose Pinot because of its rich feature set and scalability, which has enabled 
better performance than our previous solution — at a lower cost.',
         author: 'Peter Bakkum'
+    },
+    {
+        logo: '/static/images/carousel/webex.svg',
+        company: 'Webex',
+        text: 'Forget sluggish queries!! Apache Pinot whipped our runtime 
aggregates, with sub-second latencies on all but the most complex queries. On 
top of the speed boost, Pinot slashed our storage footprint by 10x, letting us 
shrink the cluster by a whopping 500 nodes',
+        author: 'WEBEX'
     }
-    // {
-    //     logo: '/static/images/carousel/razorpay.svg',
-    //     company: 'Company 3',
-    //     text: "Apache Pinot has truly played a fundamental role in 
Razorpay's monitoring journey!",
-    //     author: 'Author 3'
-    // }
 ];
 
 export default quotes;
diff --git a/public/static/favicons/favicon-16x16.png 
b/public/static/favicons/favicon-16x16.png
index 01874d0e..65c05d15 100644
Binary files a/public/static/favicons/favicon-16x16.png and 
b/public/static/favicons/favicon-16x16.png differ
diff --git a/public/static/favicons/favicon-16x16.png 
b/public/static/favicons/favicon-16x16_backup.png
similarity index 100%
copy from public/static/favicons/favicon-16x16.png
copy to public/static/favicons/favicon-16x16_backup.png
diff --git a/public/static/favicons/favicon-32x32.png 
b/public/static/favicons/favicon-32x32.png
index d4976b6f..65c05d15 100644
Binary files a/public/static/favicons/favicon-32x32.png and 
b/public/static/favicons/favicon-32x32.png differ
diff --git a/public/static/favicons/favicon-32x32.png 
b/public/static/favicons/favicon-32x32_backup.png
similarity index 100%
copy from public/static/favicons/favicon-32x32.png
copy to public/static/favicons/favicon-32x32_backup.png
diff --git a/public/static/favicons/favicon-96x96.png 
b/public/static/favicons/favicon-96x96.png
index 8603a011..65c05d15 100644
Binary files a/public/static/favicons/favicon-96x96.png and 
b/public/static/favicons/favicon-96x96.png differ
diff --git a/public/static/favicons/favicon-96x96.png 
b/public/static/favicons/favicon-96x96_backup.png
similarity index 100%
copy from public/static/favicons/favicon-96x96.png
copy to public/static/favicons/favicon-96x96_backup.png
diff --git a/public/static/images/carousel/webex.svg 
b/public/static/images/carousel/webex.svg
new file mode 100644
index 00000000..5f0382d4
--- /dev/null
+++ b/public/static/images/carousel/webex.svg
@@ -0,0 +1,525 @@
+<svg width="122" height="34" viewBox="0 0 122 34" fill="none" 
xmlns="http://www.w3.org/2000/svg";>
+<path d="M57.9947 6.45117H61.2417L56.5278 20.5727H52.8084L49.3032 
9.93919L45.798 20.611H42.1665L37.4526 6.45117H40.7381L44.1114 17.2105L47.5726 
6.45117H51.0778L54.6214 17.2542L57.9947 6.45117Z" fill="black"/>
+<mask id="mask0_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="122" height="34">
+<path d="M121.967 0.431885H0V33.8305H121.967V0.431885Z" fill="white"/>
+</mask>
+<g mask="url(#mask0_3662_2273)">
+<path d="M75.0811 14.6791H64.615C64.7208 15.4027 64.9873 16.0937 65.3952 
16.7019C65.7799 17.2165 66.2854 17.6295 66.8676 17.9047C67.4684 18.1603 68.1151 
18.2924 68.7685 18.2929C69.5075 18.2927 70.2406 18.1613 70.9331 17.9047C71.6411 
17.6447 72.299 17.2655 72.878 16.7839L74.4328 18.9708C73.6616 19.6677 72.7465 
20.1883 71.7518 20.4961C70.7288 20.8037 69.6668 20.9639 68.5982 20.9718C67.2841 
20.9928 65.9866 20.6785 64.8293 20.0588C63.734 19.4543 62.8446 18.5388 62.2746 
17.4291C61.6782 16.216 [...]
+<path d="M88.3162 7.058C89.3953 7.70015 90.2784 8.62241 90.8709 
9.72594C91.4964 10.9055 91.8233 12.2192 91.8233 13.5529C91.8233 14.8867 91.4964 
16.2003 90.8709 17.3799C90.2785 18.485 89.3955 19.409 88.3162 20.0533C87.236 
20.704 85.9908 21.0322 84.7286 20.9991C83.8503 21.0017 82.9808 20.8249 82.1739 
20.4798C81.4344 20.1277 80.7845 19.6137 80.2729 
18.9763V20.6547H77.1578V0.475586H80.2729V8.17875C80.7843 7.53974 81.4341 
7.02392 82.1739 6.66982C82.9691 6.28943 83.8473 6.11277 84.7286 6.15591 [...]
+<path d="M107.177 14.6791H96.6946C96.7951 15.4032 97.06 16.095 97.4693 
16.702C97.8552 17.2154 98.3605 17.6281 98.9417 17.9048C99.5425 18.1604 100.189 
18.2924 100.843 18.2929C101.582 18.2928 102.315 18.1613 103.007 17.9048C103.715 
17.6447 104.373 17.2656 104.952 16.784L106.512 18.9708C105.743 19.6671 104.83 
20.1877 103.837 20.4962C102.814 20.8045 101.752 20.9647 100.683 20.9718C99.372 
20.9953 98.0765 20.6848 96.9199 20.0697C95.8246 19.4653 94.9352 18.5498 94.3652 
17.44C93.7688 16.2273 93. [...]
+<path d="M121.967 20.611H118.16L114.567 15.707L111.023 20.611H107.391L112.754 
13.3835L107.435 6.45117H111.237L114.698 11.1857L118.16 6.45117H121.835L116.599 
13.3397L121.967 20.611Z" fill="black"/>
+<path d="M84.6407 32.2777H83.9924V26.5974H84.7726V28.7515C84.929 28.5326 
85.1371 28.3553 85.3785 28.2352C85.6199 28.1151 85.8873 28.0558 86.1571 
28.0626C86.4203 28.0643 86.6816 28.1067 86.9317 28.1883C87.169 28.2982 87.3777 
28.4609 87.5416 28.664C87.8497 29.1052 88.0006 29.6364 87.9701 30.1729C87.9981 
30.8012 87.7817 31.4161 87.3657 31.8896C87.1944 32.0603 86.9883 32.1926 86.7614 
32.2777C86.5407 32.3633 86.306 32.4078 86.0692 32.409C85.7988 32.4139 85.5311 
32.3539 85.289 32.234C85.0592 3 [...]
+<path d="M92.0796 28.1884L90.6511 32.3653C90.5521 32.7742 90.3646 33.1567 
90.1017 33.4861C90.0168 33.6062 89.8956 33.6963 89.7556 33.743C89.616 33.793 
89.4698 33.8225 89.3216 33.8305C89.1604 33.8267 89.0009 33.7972 88.8491 
33.743V33.1416C88.9757 33.178 89.1076 33.1927 89.2392 33.1854C89.3133 33.1917 
89.3878 33.1765 89.4534 33.1416C89.519 33.1106 89.5771 33.0658 89.6238 
33.0104C89.7685 32.7811 89.8847 32.535 89.9699 32.2778H89.7117L88.1898 
28.1501H89.0029L90.1732 31.6327L91.3379 28.1501L9 [...]
+<path d="M102.546 26.5974H101.117V32.3215H102.546V26.5974Z" fill="black"/>
+<path d="M114.226 28.2321C113.855 28.028 113.436 27.9244 113.012 
27.9314C112.805 27.9178 112.598 27.9469 112.404 28.0168C112.209 28.0867 112.031 
28.196 111.881 28.3378C111.73 28.4795 111.611 28.6506 111.531 28.8404C111.45 
29.0301 111.41 29.2344 111.413 29.4403C111.408 29.6467 111.446 29.852 111.526 
30.0426C111.605 30.2333 111.725 30.4051 111.875 30.547C112.026 30.6888 112.205 
30.7974 112.401 30.8658C112.597 30.9342 112.805 30.9607 113.012 30.9438C113.436 
30.9534 113.856 30.8496 114.226 3 [...]
+<path d="M99.1285 28.2321C98.7593 28.0275 98.3423 27.9238 97.9198 
27.9314C97.7133 27.9178 97.5062 27.9469 97.3115 28.0168C97.1168 28.0867 96.9388 
28.196 96.7886 28.3378C96.6385 28.4795 96.5194 28.6506 96.4389 28.8404C96.3585 
29.0301 96.3183 29.2344 96.321 29.4403C96.3157 29.6467 96.3541 29.852 96.4338 
30.0426C96.5134 30.2333 96.6325 30.4051 96.7834 30.547C96.9342 30.6888 97.1133 
30.7974 97.3091 30.8658C97.5049 30.9342 97.713 30.9607 97.9198 30.9438C98.3426 
30.9541 98.7603 30.8502 99.1285 [...]
+<path d="M118.764 27.9751C118.573 27.9742 118.384 28.0192 118.215 
28.1064C118.03 28.1786 117.867 28.2973 117.742 28.4508C117.6 28.5782 117.494 
28.7403 117.434 28.921C117.349 29.0899 117.321 29.2813 117.352 29.4677C117.359 
29.6524 117.386 29.8358 117.434 30.0144C117.512 30.1876 117.616 30.348 117.742 
30.49C117.882 30.6271 118.041 30.7431 118.215 30.8344C118.387 30.913 118.574 
30.9558 118.764 30.9602C118.96 30.9574 119.154 30.9141 119.333 30.8332C119.511 
30.7523 119.671 30.6354 119.802 30. [...]
+<path d="M108.04 27.8877C107.68 27.7932 107.312 27.7364 106.941 
27.7182C106.392 27.7182 106.034 27.8877 106.034 28.1884C106.034 28.4891 106.468 
28.664 106.683 28.7351L107.073 28.8608C107.454 28.9421 107.797 29.1474 108.048 
29.4445C108.299 29.7415 108.443 30.1133 108.457 30.501C108.457 31.917 107.205 
32.3926 106.078 32.3926C105.555 32.3993 105.032 32.3405 104.524 
32.2177V30.8837C104.97 31.0236 105.435 31.0973 105.903 31.1024C106.639 31.1024 
106.941 30.8837 106.941 30.583C106.941 30.2823 1 [...]
+</g>
+<mask id="mask1_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask1_3662_2273)">
+<path d="M24.4223 -9.40116L-7.63684 3.49463L3.98817 32.1123L36.0473 
19.2165L24.4223 -9.40116Z" fill="url(#paint0_linear_3662_2273)"/>
+</g>
+<mask id="mask2_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask2_3662_2273)">
+<path d="M26.336 -6.92964L-5.71875 2.02441L2.07367 29.6481L34.1284 
20.6941L26.336 -6.92964Z" fill="url(#paint1_radial_3662_2273)"/>
+</g>
+<mask id="mask3_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask3_3662_2273)">
+<path d="M0.0218848 -0.126057L-0.43042 22.2955L28.4128 22.8717L28.8651 
0.450107L0.0218848 -0.126057Z" fill="url(#paint2_radial_3662_2273)"/>
+</g>
+<mask id="mask4_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask4_3662_2273)">
+<path d="M28.3927 -0.262748L-0.541138 0.440918L0.0124294 22.9806L28.9463 
22.2769L28.3927 -0.262748Z" fill="url(#paint3_radial_3662_2273)"/>
+</g>
+<mask id="mask5_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask5_3662_2273)">
+<path d="M28.3927 -0.262748L-0.541138 0.440918L0.0124294 22.9806L28.9463 
22.2769L28.3927 -0.262748Z" fill="url(#paint4_radial_3662_2273)"/>
+</g>
+<mask id="mask6_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask6_3662_2273)">
+<path d="M28.3927 -0.262748L-0.541138 0.440918L0.0124294 22.9806L28.9463 
22.2769L28.3927 -0.262748Z" fill="url(#paint5_radial_3662_2273)"/>
+</g>
+<mask id="mask7_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask7_3662_2273)">
+<path d="M4.62094 -10.014L-8.11841 18.7286L23.7816 32.7294L36.521 
3.98678L4.62094 -10.014Z" fill="url(#paint6_radial_3662_2273)"/>
+</g>
+<mask id="mask8_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask8_3662_2273)">
+<path d="M9.46902 -12.915L-10.3649 14.9912L18.9346 35.6119L38.7685 
7.70568L9.46902 -12.915Z" fill="url(#paint7_radial_3662_2273)"/>
+</g>
+<mask id="mask9_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask9_3662_2273)">
+<path d="M9.47354 -12.9064L-10.3604 14.9999L18.9391 35.6206L38.773 
7.71434L9.47354 -12.9064Z" fill="url(#paint8_radial_3662_2273)"/>
+</g>
+<mask id="mask10_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask10_3662_2273)">
+<path d="M1.01943 -4.86011L-4.11389 21.4929L27.3794 27.5676L32.5128 
1.21458L1.01943 -4.86011Z" fill="url(#paint9_radial_3662_2273)"/>
+</g>
+<mask id="mask11_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask11_3662_2273)">
+<path d="M11.3349 -13.4238L-10.7677 13.5632L17.0676 36.1379L39.1702 
9.15085L11.3349 -13.4238Z" fill="url(#paint10_radial_3662_2273)"/>
+</g>
+<mask id="mask12_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask12_3662_2273)">
+<path d="M20.5816 -12.2052L-9.81958 6.44983L7.82568 34.9245L38.2268 
16.2695L20.5816 -12.2052Z" fill="url(#paint11_radial_3662_2273)"/>
+</g>
+<mask id="mask13_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask13_3662_2273)">
+<path d="M16.4123 -13.5422L-10.8517 9.66223L12.0062 36.2568L39.2702 
13.0523L16.4123 -13.5422Z" fill="url(#paint12_radial_3662_2273)"/>
+</g>
+<mask id="mask14_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask14_3662_2273)">
+<path d="M0.408532 -2.94244L-2.61731 21.9758L28.0088 25.6585L31.0346 
0.740183L0.408532 -2.94244Z" fill="url(#paint13_radial_3662_2273)"/>
+</g>
+<mask id="mask15_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask15_3662_2273)">
+<path d="M21.5987 -11.6388L-9.3844 5.67712L6.81147 34.3731L37.7946 
17.0571L21.5987 -11.6388Z" fill="url(#paint14_radial_3662_2273)"/>
+</g>
+<mask id="mask16_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask16_3662_2273)">
+<path d="M8.88948 -12.6715L-10.1877 15.4626L19.5239 35.4128L38.6011 
7.2787L8.88948 -12.6715Z" fill="url(#paint15_radial_3662_2273)"/>
+</g>
+<mask id="mask17_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask17_3662_2273)">
+<path d="M13.1047 -13.672L-10.9557 12.2018L15.3034 36.382L39.3638 
10.5083L13.1047 -13.672Z" fill="url(#paint16_linear_3662_2273)"/>
+</g>
+<mask id="mask18_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask18_3662_2273)">
+<path d="M26.306 -6.99817L-5.76208 2.0498L2.11796 29.7057L34.186 
20.6577L26.306 -6.99817Z" fill="url(#paint17_linear_3662_2273)"/>
+</g>
+<mask id="mask19_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask19_3662_2273)">
+<path d="M25.2174 -8.51954L-6.94543 2.88965L3.20824 31.2336L35.371 
19.8244L25.2174 -8.51954Z" fill="url(#paint18_linear_3662_2273)"/>
+</g>
+<mask id="mask20_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="0" y="0" width="29" height="23">
+<path d="M20.7179 0.431888C19.6586 0.422358 18.6152 0.688069 17.6907 
1.20275C16.7368 1.68162 15.9075 2.37403 15.2678 3.22559L12.1967 11.4263C12.1429 
11.7326 12.0714 12.0357 11.9824 12.3338C11.9384 12.5033 11.8945 12.6345 11.8505 
12.804C11.5945 13.6527 11.2919 14.4867 10.944 15.3025C10.6803 15.7726 10.2957 
16.3357 9.6035 16.2045L9.33978 16.0733C8.90687 15.749 8.56454 15.3199 8.34536 
14.8268C7.75908 13.7477 7.29476 12.6072 6.96088 11.4263C6.5293 9.9496 6.226 
8.43876 6.05436 6.91042C6.05171 [...]
+</mask>
+<g mask="url(#mask20_3662_2273)">
+<path d="M20.6451 -12.1591L-9.80029 6.41382L7.75276 34.9064L38.1982 
16.3335L20.6451 -12.1591Z" fill="url(#paint19_linear_3662_2273)"/>
+</g>
+<mask id="mask21_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="13" y="0" width="16" height="16">
+<path d="M20.7179 0.431885C19.6564 0.439314 18.6089 0.674269 17.6468 
1.12075C16.6905 1.59604 15.8604 2.28909 15.2239 3.14359L13.2791 8.34828L17.0864 
15.625L18.383 11.4919L18.5093 10.8468C18.7649 9.75717 19.1122 8.69095 19.5477 
7.65941C19.6857 7.23367 19.9407 6.85488 20.2839 6.56599L20.3279 6.52226C20.481 
6.44729 20.6531 6.41923 20.8223 6.44161C20.9915 6.46399 21.1502 6.53583 21.2783 
6.64801C21.4404 6.75972 21.574 6.90762 21.6684 7.0799C21.8003 7.24938 21.8827 
7.42433 22.0145 7.59381C22.2 [...]
+</mask>
+<g mask="url(#mask21_3662_2273)">
+<path d="M27.7335 -2.34119L10.1974 1.22009L13.796 18.7668L31.3321 
15.2055L27.7335 -2.34119Z" fill="url(#paint20_linear_3662_2273)"/>
+</g>
+<mask id="mask22_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask22_3662_2273)">
+<path d="M6.4414 -7.48508L-2.71289 20.0272L27.8555 30.099L37.0098 
2.58673L6.4414 -7.48508Z" fill="url(#paint21_linear_3662_2273)"/>
+</g>
+<mask id="mask23_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask23_3662_2273)">
+<path d="M4.40738 -3.53684L0.535889 21.6691L29.8738 26.1312L33.7453 
0.925304L4.40738 -3.53684Z" fill="url(#paint22_radial_3662_2273)"/>
+</g>
+<mask id="mask24_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask24_3662_2273)">
+<path d="M4.41288 -3.53598L0.541382 21.6699L29.8793 26.1321L33.7508 
0.926161L4.41288 -3.53598Z" fill="url(#paint23_radial_3662_2273)"/>
+</g>
+<mask id="mask25_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask25_3662_2273)">
+<path d="M4.38856 -3.51635L0.557373 21.6625L29.8798 26.0806L33.711 
0.901756L4.38856 -3.51635Z" fill="url(#paint24_radial_3662_2273)"/>
+</g>
+<mask id="mask26_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask26_3662_2273)">
+<path d="M30.0956 -2.74108L1.18884 0.744995L4.18377 25.3366L33.0905 
21.8505L30.0956 -2.74108Z" fill="url(#paint25_radial_3662_2273)"/>
+</g>
+<mask id="mask27_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask27_3662_2273)">
+<path d="M28.6152 -6.35526L-1.77808 1.95276L5.6729 28.9445L36.0662 
20.6365L28.6152 -6.35526Z" fill="url(#paint26_radial_3662_2273)"/>
+</g>
+<mask id="mask28_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask28_3662_2273)">
+<path d="M28.6152 -6.35526L-1.77808 1.95276L5.6729 28.9445L36.0662 
20.6365L28.6152 -6.35526Z" fill="url(#paint27_radial_3662_2273)"/>
+</g>
+<mask id="mask29_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask29_3662_2273)">
+<path d="M28.6152 -6.35526L-1.77808 1.95276L5.6729 28.9445L36.0662 
20.6365L28.6152 -6.35526Z" fill="url(#paint28_radial_3662_2273)"/>
+</g>
+<mask id="mask30_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask30_3662_2273)">
+<path d="M26.4218 -9.10438L-4.04993 3.74805L7.86232 31.7149L38.334 
18.8624L26.4218 -9.10438Z" fill="url(#paint29_radial_3662_2273)"/>
+</g>
+<mask id="mask31_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask31_3662_2273)">
+<path d="M28.955 -5.76911L-1.28381 1.67761L5.34958 28.3507L35.5884 
20.904L28.955 -5.76911Z" fill="url(#paint30_radial_3662_2273)"/>
+</g>
+<mask id="mask32_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask32_3662_2273)">
+<path d="M28.955 -5.76911L-1.28381 1.67761L5.34958 28.3507L35.5884 
20.904L28.955 -5.76911Z" fill="url(#paint31_radial_3662_2273)"/>
+</g>
+<mask id="mask33_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask33_3662_2273)">
+<path d="M28.955 -5.77448L-1.28381 1.67224L5.34958 28.3453L35.5884 
20.8986L28.955 -5.77448Z" fill="url(#paint32_radial_3662_2273)"/>
+</g>
+<mask id="mask34_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask34_3662_2273)">
+<path d="M30.4194 -0.889896L2.70923 0.487671L3.86413 23.4919L31.5743 
22.1144L30.4194 -0.889896Z" fill="url(#paint33_radial_3662_2273)"/>
+</g>
+<mask id="mask35_3662_2273" style="mask-type:luminance" 
maskUnits="userSpaceOnUse" x="3" y="0" width="28" height="23">
+<path d="M9.33985 0.431885C9.08004 0.444835 8.82131 0.474053 8.56519 
0.519361C7.58978 0.715758 6.66483 1.10793 5.8468 1.67191C5.02878 2.2359 4.33484 
2.95987 3.80737 3.79963C4.09747 3.86871 4.37409 3.98509 4.62599 4.14406C4.96397 
4.34333 5.25898 4.60718 5.49404 4.9204C5.85112 5.5196 6.0408 6.20286 6.04344 
6.89949C6.22507 8.39452 6.51518 9.87451 6.91149 11.3279C7.32504 9.73173 8.01277 
8.21874 8.94428 6.85575C9.05304 6.6934 9.20019 6.56012 9.37281 6.46759C9.46451 
6.41353 9.56845 6.38344 9.6 [...]
+</mask>
+<g mask="url(#mask35_3662_2273)">
+<path d="M7.5643 -8.78725L-3.7843 19.1219L26.7424 31.4137L38.091 
3.50447L7.5643 -8.78725Z" fill="url(#paint34_linear_3662_2273)"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear_3662_2273" x1="1.78445" y1="16.1151" 
x2="25.5451" y2="6.46313" 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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(16.6146 9.59811) 
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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(18.1008 9.03082) 
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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(19.4425 9.59326) 
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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(19.116 9.30632) 
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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(19.6053 9.52739) 
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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(19.2809 8.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(16.4912 -2.60257) 
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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(-16187.4 -21897.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(21.9078 11.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(15.4432 12.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(15.5494 13.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(12.6885 13.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(11.6347 14.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(12.1436 15.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(10.7787 14.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_3662_2273" x1="3.14791" y1="0.246333" 
x2="13.6001" y2="9.96601" 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_3662_2273" x1="-2.66024" y1="15.3611" 
x2="9.59469" y2="11.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_3662_2273" x1="0.511991" y1="16.8393" 
x2="14.1403" y2="11.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_3662_2273" x1="11.5945" y1="8.65001" 
x2="19.268" y2="21.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_3662_2273" x1="21.2418" y1="12.8307" 
x2="20.0574" y2="6.99861" 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_3662_2273" x1="5.84549" y1="6.52864" 
x2="31.0881" y2="14.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(23.0829 10.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(8305.08 -21318.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(7285.24 -21632.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(21.4176 10.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(23.4966 12.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(22.3672 14.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(22.5216 15.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(8.8439 13.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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(8.17383 9.92664) 
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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(8.17383 9.92664) 
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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(8.93061 9.21969) 
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_3662_2273" cx="0" cy="0" r="1" 
gradientUnits="userSpaceOnUse" gradientTransform="translate(9.93992 9.78642) 
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_3662_2273" x1="23.218" y1="-2.84494" 
x2="16.8075" y2="13.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>
+</defs>
+</svg>
diff --git a/public/static/images/video_thumbnail.png 
b/public/static/images/video_thumbnail.png
new file mode 100644
index 00000000..daac5d60
Binary files /dev/null and b/public/static/images/video_thumbnail.png differ


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to