diff --git a/src/clients/Element.ts b/src/clients/Element.ts
index 0693ede6302f6e595a5ab938aa1e1c8f81d71d2c..37e3db0438a6533d7e57e5803f67d4a3d71fe587 100644
--- a/src/clients/Element.ts
+++ b/src/clients/Element.ts
@@ -20,6 +20,9 @@ import {
     ClientKind,
     ClientId,
     Platform,
+    AppleStoreLink,
+    PlayStoreLink,
+    FDroidLink,
 } from './types';
 import { LinkKind } from '../parser/types';
 import logo from '../imgs/element.svg';
@@ -31,7 +34,7 @@ export const Element: LinkedClient = {
     logo: logo,
     homepage: 'https://element.io',
     maturity: Maturity.STABLE,
-    description: 'Fully-featured Matrix client for the Web',
+    description: 'Fully-featured Matrix client',
     platforms: [Platform.Desktop, Platform.Android, Platform.iOS],
     experimental: false,
     clientId: ClientId.Element,
@@ -59,6 +62,11 @@ export const Element: LinkedClient = {
         }
     },
     linkSupport: () => true,
+    installLinks: [
+        new AppleStoreLink('vector', 'id1083446067'),
+        new PlayStoreLink('im.vector.app'),
+        new FDroidLink('im.vector.app'),
+    ],
 };
 
 export const ElementDevelop: LinkedClient = {
@@ -94,4 +102,5 @@ export const ElementDevelop: LinkedClient = {
         }
     },
     linkSupport: () => true,
+    installLinks: [],
 };
diff --git a/src/clients/Fractal.tsx b/src/clients/Fractal.tsx
index bd0f068d7963c3f380ed4863157bd833de94c42f..f9ea9a243c87759b4e166a4204c85c74705871ba 100644
--- a/src/clients/Fractal.tsx
+++ b/src/clients/Fractal.tsx
@@ -69,6 +69,7 @@ const Fractal: TextClient = {
     },
 
     description: 'Fractal is a Matrix Client written in Rust',
+    installLinks: [],
 };
 
 export default Fractal;
diff --git a/src/clients/Nheko.tsx b/src/clients/Nheko.tsx
index 1195716f744b27eadcb6f86983d368379b4ede8f..f9201d373e2a0e39f83594d146b7d9675c267b28 100644
--- a/src/clients/Nheko.tsx
+++ b/src/clients/Nheko.tsx
@@ -86,6 +86,7 @@ const Nheko: TextClient = {
     },
     description:
         'A native desktop app for Matrix that feels more like a mainstream chat app.',
+    installLinks: [],
 };
 
 export default Nheko;
diff --git a/src/clients/Weechat.tsx b/src/clients/Weechat.tsx
index 105a9792ab20666ac80616d065e7729d3e927b3e..805a4b29d6c605f29847e3939b49e6be6160f64d 100644
--- a/src/clients/Weechat.tsx
+++ b/src/clients/Weechat.tsx
@@ -86,6 +86,7 @@ const Weechat: TextClient = {
     },
 
     description: 'Command-line Matrix interface using Weechat',
+    installLinks: [],
 };
 
 export default Weechat;
diff --git a/src/clients/types.ts b/src/clients/types.ts
index 3278f966f35f4a1ee794bc9e9c696e45d5fd1816..9c4c26678a8b0cb6965e0d0da298bd566dc7467f 100644
--- a/src/clients/types.ts
+++ b/src/clients/types.ts
@@ -53,6 +53,79 @@ export enum ClientId {
     Fractal = 'fractal',
 }
 
+/**
+ * Define a native distribution channel for a client.
+ * E.g App store for apple, PlayStore or F-Droid for Android
+ */
+export interface InstallLink {
+    createInstallURL(deepLink: SafeLink) : string;
+    // in AppleStoreLink, we can set the cookie here for deeplinking
+    // onInstallChosen(deepLink: SafeLink);
+    platform: Platform;
+    channelId: string;
+    description: string;
+}
+
+export class AppleStoreLink implements InstallLink {
+    constructor(private org: string, private appId: string) {}
+
+    createInstallURL(deepLink: SafeLink) : string {
+        return `https://apps.apple.com/app/${encodeURIComponent(this.org)}/${encodeURIComponent(this.appId)}`;
+    }
+
+    get platform() : Platform {
+        return Platform.iOS;
+    }
+    
+    get channelId(): string {
+        return "apple-app-store";
+    }
+
+    get description() {
+        return "Download on the App Store";
+    }
+}
+
+export class PlayStoreLink implements InstallLink {
+    constructor(private appId: string) {}
+
+    createInstallURL(deepLink: SafeLink) : string {
+        return `https://play.google.com/store/apps/details?id=${encodeURIComponent(this.appId)}&referrer=${encodeURIComponent(deepLink.originalLink)}`;
+    }
+
+    get platform() : Platform {
+        return Platform.Android;
+    }
+      
+    get channelId(): string {
+        return "play-store";
+    }
+
+    get description() {
+        return "Get it on Google Play";
+    }
+}
+
+export class FDroidLink implements InstallLink {
+    constructor(private appId: string) {}
+
+    createInstallURL(deepLink: SafeLink) : string {
+        return `https://f-droid.org/packages/${encodeURIComponent(this.appId)}`;
+    }
+
+    get platform() : Platform {
+        return Platform.Android;
+    }
+
+    get channelId(): string {
+        return "fdroid";
+    }
+
+    get description() {
+        return "Get it on F-Droid";
+    }
+}
+
 /*
  * The descriptive details of a client
  */
@@ -67,6 +140,7 @@ export interface ClientDescription {
     clientId: ClientId;
     experimental: boolean;
     linkSupport: (link: SafeLink) => boolean;
+    installLinks: InstallLink[];
 }
 
 /*
diff --git a/src/components/ClientTile.scss b/src/components/ClientTile.scss
index 996c56f672ec87db12321c88d3cbac3f6334b40f..a697aea542d0299e354914892daf352f8a7b64a0 100644
--- a/src/components/ClientTile.scss
+++ b/src/components/ClientTile.scss
@@ -51,7 +51,8 @@ limitations under the License.
 
         .button {
             height: 40px;
-            width: 130px;
+            min-width: 130px;
+            max-width: 165px;
             margin-top: 16px;
         }
     }
@@ -66,6 +67,15 @@ limitations under the License.
     &:hover {
         background-color: $app-background;
     }
+
+    .installLink {
+        display: inline-block;
+        height: 40px;
+        margin: 8px 16px 8px 0;
+        img {
+            height: 100%;
+        }
+    }
 }
 
 .clientTileLink {
diff --git a/src/components/ClientTile.tsx b/src/components/ClientTile.tsx
index e8eddde51639458a96a11d52a06e5c73897cb644..9464e61863b61d160e23adba4fafa49a7dafcf64 100644
--- a/src/components/ClientTile.tsx
+++ b/src/components/ClientTile.tsx
@@ -14,14 +14,19 @@ See the License for the specific language governing permissions and
 limitations under the License.
 */
 
-import React from 'react';
+import React, { useContext } from 'react';
 import classNames from 'classnames';
+import { UAContext } from '@quentin-sommer/react-useragent';
 
-import { Client, ClientKind } from '../clients/types';
+import { Client, ClientKind, Platform } from '../clients/types';
 import { SafeLink } from '../parser/types';
 import Tile from './Tile';
 import Button from './Button';
 
+import appStoreBadge from '../imgs/app-store-us-alt.svg';
+import playStoreBadge from '../imgs/google-play-us.svg';
+import fdroidBadge from '../imgs/fdroid-badge.png';
+
 import './ClientTile.scss';
 
 interface IProps {
@@ -29,17 +34,54 @@ interface IProps {
     link: SafeLink;
 }
 
+interface IInstallBadgeImages {
+    [index: string]: string;
+}
+
+const installBadgeImages : IInstallBadgeImages = {
+    "fdroid": fdroidBadge,
+    "apple-app-store": appStoreBadge,
+    "play-store": playStoreBadge
+};
+
 const ClientTile: React.FC<IProps> = ({ client, link }: IProps) => {
     const inviteLine =
         client.kind === ClientKind.TEXT_CLIENT ? (
             <p>{client.toInviteString(link)}</p>
         ) : null;
 
+    const { uaResults } = useContext(UAContext);
+
     const className = classNames('clientTile', {
         clientTileLink: client.kind === ClientKind.LINKED_CLIENT,
     });
 
     let inviteButton: JSX.Element = <></>;
+    const matchingInstallLinks = client.installLinks.filter((installLink) => {
+        if ((uaResults as any).ios) {
+            return installLink.platform === Platform.iOS;
+        } else if ((uaResults as any).android) {
+            return installLink.platform === Platform.Android;
+        } else {
+            return false;
+        }
+    });
+    const hasNativeClient = matchingInstallLinks.length > 0;
+    let installButtons = undefined;
+    if (matchingInstallLinks.length) {
+        installButtons = <p>{matchingInstallLinks.map((installLink) => {
+            return <a
+                rel="noopener noreferrer"
+                aria-label={installLink.description}
+                key={installLink.channelId}
+                href={installLink.createInstallURL(link)}
+                className="installLink"
+                target="_blank">
+                <img src={installBadgeImages[installLink.channelId]} alt={installLink.description} />
+            </a>;
+        })}</p>;
+    }
+
     if (client.kind === ClientKind.LINKED_CLIENT) {
         inviteButton = <Button>Accept invite</Button>;
     } else {
@@ -62,6 +104,7 @@ const ClientTile: React.FC<IProps> = ({ client, link }: IProps) => {
             <div>
                 <h1>{client.name}</h1>
                 <p>{client.description}</p>
+                {installButtons}
                 {inviteLine}
                 {inviteButton}
             </div>
@@ -69,7 +112,11 @@ const ClientTile: React.FC<IProps> = ({ client, link }: IProps) => {
     );
 
     if (client.kind === ClientKind.LINKED_CLIENT) {
-        clientTile = <a href={client.toUrl(link).toString()}>{clientTile}</a>;
+        if (!hasNativeClient) {
+            clientTile = (
+                <a href={client.toUrl(link).toString()}>{clientTile}</a>
+            );
+        }
     }
 
     return clientTile;
diff --git a/src/imgs/app-store-us-alt.svg b/src/imgs/app-store-us-alt.svg
new file mode 100644
index 0000000000000000000000000000000000000000..83437bad26c5579c97f66b4cd34a1429a1595597
--- /dev/null
+++ b/src/imgs/app-store-us-alt.svg
@@ -0,0 +1,7 @@
+<svg width="120" height="40" viewBox="0 0 120 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path d="M110.135 0.00013H9.53468C9.16798 0.00013 8.80568 0.00013 8.43995 0.00213C8.1338 0.00413 7.83009 0.00994 7.521 0.01483C6.84951 0.0227318 6.17961 0.0818063 5.5171 0.19154C4.85552 0.303663 4.21467 0.515046 3.61622 0.81854C3.0185 1.1246 2.47235 1.5223 1.99757 1.9972C1.5203 2.47077 1.12246 3.01815 0.81935 3.61829C0.5154 4.21724 0.304641 4.85907 0.19435 5.52161C0.0830109 6.18331 0.0230984 6.85265 0.01515 7.52361C0.00587 7.83021 0.00489 8.13783 0 8.44447V31.5587C0.00489 31.8692 0.00587 32.17 0.01515 32.4806C0.0231008 33.1516 0.0830134 33.8209 0.19435 34.4825C0.304336 35.1455 0.515108 35.7877 0.81935 36.3868C1.12233 36.985 1.52022 37.5302 1.99757 38.0011C2.47054 38.4781 3.01705 38.8761 3.61622 39.1798C4.21467 39.4841 4.85545 39.6968 5.5171 39.8106C6.17972 39.9195 6.84956 39.9786 7.521 39.9874C7.83009 39.9942 8.1338 39.9981 8.43995 39.9981C8.80567 40.0001 9.168 40.0001 9.53468 40.0001H110.135C110.494 40.0001 110.859 40.0001 111.219 39.9981C111.523 39.9981 111.836 39.9942 112.141 39.9874C112.811 39.9791 113.479 39.92 114.141 39.8106C114.804 39.696 115.448 39.4834 116.049 39.1798C116.647 38.8759 117.193 38.478 117.666 38.0011C118.142 37.5284 118.541 36.9836 118.848 36.3868C119.15 35.7872 119.358 35.1451 119.467 34.4825C119.578 33.8208 119.64 33.1516 119.652 32.4806C119.656 32.17 119.656 31.8692 119.656 31.5587C119.664 31.1954 119.664 30.8341 119.664 30.4649V9.53626C119.664 9.17005 119.664 8.80677 119.656 8.44447C119.656 8.13783 119.656 7.83021 119.652 7.52357C119.64 6.85255 119.578 6.18337 119.467 5.52157C119.358 4.85941 119.149 4.21763 118.848 3.61825C118.23 2.41533 117.252 1.43616 116.049 0.81845C115.448 0.515697 114.804 0.30437 114.141 0.19145C113.48 0.0812328 112.811 0.0221378 112.141 0.01469C111.836 0.00981 111.523 0.00395 111.219 0.002C110.859 0 110.494 0 110.135 0V0.00013Z" fill="black"/>
+<path d="M8.44487 39.125C8.14019 39.125 7.84287 39.1211 7.54058 39.1143C6.91436 39.1061 6.2896 39.0516 5.67144 38.9512C5.09503 38.8519 4.53664 38.6673 4.0147 38.4033C3.49754 38.1415 3.02585 37.7983 2.6177 37.3867C2.20364 36.98 1.85891 36.5082 1.59719 35.9902C1.33258 35.4688 1.14945 34.9099 1.05419 34.333C0.951311 33.7131 0.895651 33.0863 0.887687 32.458C0.881347 32.2471 0.873047 31.5449 0.873047 31.5449V8.44434C0.873047 8.44434 0.881887 7.75293 0.887737 7.5498C0.895363 6.92248 0.950699 6.29665 1.05327 5.67773C1.14871 5.09925 1.33197 4.53875 1.59673 4.01563C1.85749 3.49794 2.2003 3.02586 2.61187 2.61768C3.02297 2.20562 3.49617 1.8606 4.01421 1.59521C4.53495 1.33209 5.09228 1.14873 5.66753 1.05127C6.28772 0.949836 6.91465 0.894996 7.54304 0.88721L8.44536 0.875H111.214L112.127 0.8877C112.75 0.895099 113.371 0.94945 113.985 1.05029C114.566 1.14898 115.13 1.33362 115.656 1.59814C116.694 2.13299 117.539 2.97916 118.071 4.01807C118.332 4.53758 118.512 5.09351 118.607 5.66699C118.71 6.29099 118.768 6.92174 118.78 7.5542C118.783 7.8374 118.783 8.1416 118.783 8.44434C118.791 8.81934 118.791 9.17627 118.791 9.53613V30.4648C118.791 30.8281 118.791 31.1826 118.783 31.54C118.783 31.8652 118.783 32.1631 118.779 32.4697C118.768 33.0909 118.711 33.7104 118.608 34.3232C118.515 34.9043 118.333 35.4675 118.068 35.9932C117.805 36.5056 117.462 36.9733 117.053 37.3789C116.644 37.7927 116.172 38.1379 115.653 38.4014C115.128 38.6674 114.566 38.8527 113.985 38.9512C113.367 39.0522 112.742 39.1067 112.116 39.1143C111.823 39.1211 111.517 39.125 111.219 39.125L110.135 39.127L8.44487 39.125Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M74.6782 29.0762C73.0435 29.0762 71.8472 28.2676 71.7095 27.0362L69.8071 27.0361C69.9272 29.2822 71.7866 30.7031 74.5405 30.7031C77.4839 30.7031 79.3335 29.248 79.3335 26.9248C79.3335 25.1084 78.2759 24.0849 75.728 23.4824L74.3598 23.1465C72.7593 22.751 72.105 22.2344 72.105 21.3565C72.105 20.2549 73.1294 19.4981 74.6264 19.4981C76.1235 19.4981 77.1479 20.2461 77.2602 21.4854H79.1362C79.0757 19.3428 77.2769 17.8711 74.6519 17.8711C72.0015 17.8711 70.1343 19.3428 70.1343 21.4854C70.1343 23.2158 71.1929 24.2822 73.4731 24.833L75.0825 25.2207C76.6919 25.6162 77.3716 26.1934 77.3716 27.1572C77.3716 28.2676 76.2446 29.0762 74.6782 29.0762ZM42.3018 27.1397H37.5684L36.4316 30.4962H34.4268L38.9102 18.0782H40.9932L45.4766 30.4962H43.4375L42.3018 27.1397ZM38.0586 25.5909H41.8106L39.961 20.1436H39.9092L38.0586 25.5909ZM51.3809 30.5909C53.6533 30.5909 55.1592 28.7833 55.1592 25.9698C55.1592 23.1641 53.6445 21.3477 51.3466 21.3477C50.1643 21.3096 49.0566 21.9245 48.4638 22.9483H48.4297V21.4424H46.6308V33.4913H48.4892V29.0069H48.5322C49.0998 30.0371 50.2062 30.6523 51.3809 30.5909ZM53.249 25.9698C53.249 24.1368 52.3017 22.9317 50.8564 22.9317C49.4365 22.9317 48.4814 24.1622 48.4814 25.9698C48.4814 27.794 49.4365 29.0157 50.8564 29.0157C52.3018 29.0157 53.249 27.8194 53.249 25.9698H53.249ZM61.3457 30.5909C63.6182 30.5909 65.1245 28.7833 65.1245 25.9698C65.1245 23.1641 63.6094 21.3477 61.3115 21.3477C60.1291 21.3096 59.0215 21.9245 58.4287 22.9483H58.3945V21.4424H56.5957V33.4913H58.4541V29.0069H58.4971C59.0647 30.0371 60.1711 30.6523 61.3457 30.5909ZM63.2139 25.9698C63.2139 24.1368 62.2666 22.9317 60.8213 22.9317C59.4014 22.9317 58.4463 24.1622 58.4463 25.9698C58.4463 27.794 59.4014 29.0157 60.8213 29.0157C62.2666 29.0157 63.2139 27.8194 63.2139 25.9698ZM83.3462 19.2999V21.4424H85.0679V22.9141H83.3462V27.9053C83.3462 28.6807 83.6909 29.042 84.4477 29.042C84.6521 29.0385 84.8562 29.0241 85.0591 28.999V30.4619C84.7188 30.5255 84.3729 30.5543 84.0268 30.5479C82.1938 30.5479 81.479 29.8594 81.479 28.1035V22.9141H80.1626V21.4424H81.479V19.2999H83.3462ZM90.3579 21.3311C87.7417 21.3311 86.064 23.1212 86.064 25.9698C86.064 28.8262 87.7251 30.6085 90.3579 30.6085C92.9917 30.6085 94.6528 28.8262 94.6528 25.9698C94.6528 23.1211 92.9829 21.3311 90.3579 21.3311ZM92.7593 25.9698C92.7593 24.0157 91.8638 22.8624 90.3579 22.8624C88.8521 22.8624 87.9565 24.0245 87.9565 25.9698C87.9565 27.9317 88.8521 29.0762 90.3579 29.0762C91.8638 29.0762 92.7593 27.9317 92.7593 25.9698ZM97.9575 21.4424H96.1851L96.185 30.4961H98.0434V25.126C97.9816 24.5827 98.1602 24.0395 98.5326 23.6391C98.9049 23.2386 99.4336 23.0208 99.98 23.043C100.263 23.0348 100.545 23.0727 100.815 23.1553V21.417C100.606 21.3702 100.392 21.3469 100.178 21.3477C99.1566 21.3087 98.2477 21.9914 98.0005 22.9834H97.9575V21.4424ZM109.383 27.837C109.133 29.4805 107.533 30.6084 105.485 30.6084C102.851 30.6084 101.216 28.8438 101.216 26.0127C101.216 23.1729 102.86 21.3311 105.407 21.3311C107.912 21.3311 109.487 23.0518 109.487 25.7969V26.4336H103.092V26.5459C103.033 27.22 103.265 27.8872 103.731 28.3778C104.197 28.8685 104.852 29.1353 105.528 29.1104C106.43 29.1949 107.28 28.677 107.619 27.837L109.383 27.837ZM107.627 25.1348H103.101C103.099 24.5236 103.342 23.937 103.775 23.5055C104.208 23.074 104.795 22.8333 105.407 22.837C106.013 22.8239 106.598 23.0645 107.019 23.5007C107.441 23.9369 107.661 24.5292 107.627 25.1348Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M59.0937 8.43701H59.9824V14.6978H59.0937V8.43701ZM39.9317 9.54888C39.3879 8.97456 38.6151 8.6744 37.8262 8.73101H35.6709V14.6979H37.8262C39.6035 14.6979 40.6338 13.6021 40.6338 11.6959C40.7333 10.9112 40.4756 10.1232 39.9317 9.54888ZM37.7226 13.854H36.5976V9.57422H37.7226C38.2835 9.5431 38.8289 9.76423 39.2096 10.1771C39.5904 10.5901 39.7668 11.1515 39.6904 11.708C39.7728 12.2668 39.5989 12.833 39.2172 13.2493C38.8355 13.6656 38.2865 13.8877 37.7226 13.854ZM41.6807 12.4444C41.6034 11.6372 41.9905 10.8561 42.6794 10.4286C43.3683 10.0011 44.2401 10.0011 44.929 10.4286C45.6179 10.8561 46.0049 11.6372 45.9277 12.4444C46.0064 13.2523 45.6197 14.035 44.9302 14.4634C44.2407 14.8918 43.3677 14.8918 42.6782 14.4634C41.9886 14.035 41.602 13.2523 41.6807 12.4444ZM43.8057 10.8975C44.5752 10.8975 45.0137 11.4683 45.0137 12.4444H45.0137C45.0137 13.4243 44.5752 13.9946 43.8057 13.9947C43.0332 13.9947 42.5987 13.4283 42.5987 12.4444C42.5987 11.4683 43.0332 10.8975 43.8057 10.8975ZM51.5732 14.6978H50.6514L49.7207 11.3814H49.6504L48.7236 14.6978H47.8105L46.5693 10.1948H47.4707L48.2773 13.6308H48.3438L49.2695 10.1948H50.1221L51.0479 13.6308H51.1182L51.9209 10.1948H52.8096L51.5732 14.6978ZM54.709 10.1948H53.8535L53.8535 14.6978H54.7422V12.0635C54.7103 11.7638 54.8109 11.4652 55.0175 11.2458C55.2242 11.0265 55.5163 10.9084 55.8174 10.9224C56.4746 10.9224 56.7891 11.2822 56.7891 12.0059V14.6977H57.6777V11.7827C57.7429 11.3424 57.6043 10.8964 57.3011 10.5706C56.9979 10.2448 56.563 10.0745 56.1191 10.1079C55.5459 10.0613 55.0063 10.3835 54.7754 10.9102H54.709V10.1948ZM62.2167 10.4285C61.5277 10.8561 61.1406 11.6372 61.2178 12.4444C61.1392 13.2524 61.5259 14.035 62.2155 14.4634C62.9051 14.8918 63.778 14.8918 64.4676 14.4634C65.1572 14.035 65.5439 13.2524 65.4653 12.4444C65.5425 11.6372 65.1554 10.8561 64.4664 10.4285C63.7774 10.001 62.9057 10.001 62.2167 10.4285ZM64.5508 12.4444C64.5508 11.4683 64.1123 10.8975 63.3428 10.8975C62.5703 10.8975 62.1358 11.4683 62.1358 12.4444C62.1358 13.4283 62.5703 13.9947 63.3428 13.9947C64.1123 13.9946 64.5508 13.4243 64.5508 12.4444ZM68.0757 12.0801C67.0044 12.1465 66.4009 12.6138 66.4009 13.4243C66.4024 13.8087 66.5664 14.1744 66.8524 14.4312C67.1383 14.6879 67.5196 14.8117 67.9019 14.772C68.4472 14.7972 68.9638 14.5271 69.2544 14.065H69.3247V14.6978H70.1802V11.6211C70.1802 10.6699 69.5435 10.1079 68.4146 10.1079C67.3931 10.1079 66.6655 10.604 66.5747 11.3775H67.4351C67.5337 11.0591 67.8774 10.877 68.3735 10.877C68.981 10.877 69.2954 11.1455 69.2954 11.6211V12.0098L68.0757 12.0801ZM69.2954 13.0396V12.6631L68.1958 12.7334C67.5757 12.7749 67.2944 12.9859 67.2944 13.3828C67.2944 13.7881 67.646 14.0239 68.1294 14.0239C68.4156 14.0529 68.7013 13.9645 68.9211 13.7789C69.1409 13.5934 69.276 13.3266 69.2954 13.0396ZM73.2173 10.1201C72.0796 10.1201 71.3481 11.0215 71.3481 12.4444C71.3481 13.8706 72.0718 14.772 73.2173 14.772C73.798 14.7934 74.3427 14.4907 74.6313 13.9863H74.7017V14.6978H75.5532V8.43701H74.6645V10.9101H74.5981C74.3298 10.4015 73.7918 10.0937 73.2173 10.1201ZM72.2661 12.4444C72.2661 13.3994 72.7163 13.9741 73.4693 13.9741C74.2183 13.9741 74.6812 13.3911 74.6812 12.4483C74.6812 11.5098 74.2134 10.9185 73.4693 10.9185C72.7212 10.9185 72.2661 11.4971 72.2661 12.4444H72.2661ZM80.2287 10.4286C79.5398 10.8561 79.1528 11.6372 79.23 12.4444C79.1513 13.2523 79.538 14.035 80.2275 14.4634C80.917 14.8918 81.79 14.8918 82.4795 14.4634C83.1691 14.035 83.5557 13.2523 83.4771 12.4444C83.5543 11.6372 83.1672 10.8561 82.4783 10.4286C81.7894 10.0011 80.9176 10.0011 80.2287 10.4286ZM82.563 12.4444C82.563 11.4683 82.1245 10.8975 81.355 10.8975C80.5825 10.8975 80.148 11.4683 80.148 12.4444C80.148 13.4283 80.5826 13.9947 81.355 13.9947C82.1245 13.9946 82.563 13.4243 82.563 12.4444ZM85.5249 10.1948H84.6694V14.6978H85.5581V12.0635C85.5262 11.7638 85.6268 11.4652 85.8335 11.2458C86.0401 11.0265 86.3323 10.9084 86.6333 10.9224C87.2905 10.9224 87.605 11.2822 87.605 12.0059V14.6977H88.4936V11.7827C88.5588 11.3424 88.4202 10.8964 88.117 10.5706C87.8138 10.2448 87.3789 10.0745 86.9351 10.1079C86.3619 10.0613 85.8222 10.3835 85.5913 10.9102H85.5249V10.1948ZM93.5151 9.07374V10.2153H94.4907V10.9639H93.5151V13.2793C93.5151 13.751 93.7095 13.9575 94.1519 13.9575C94.2651 13.9572 94.3783 13.9503 94.4907 13.937V14.6773C94.3311 14.7058 94.1694 14.721 94.0073 14.7227C93.019 14.7227 92.6255 14.375 92.6255 13.5068V10.9638H91.9106V10.2153H92.6255V9.07374H93.5151ZM96.5854 8.43701H95.7046L95.7046 14.6977H96.5933V12.0679C96.5658 11.7589 96.6761 11.4535 96.8947 11.2334C97.1133 11.0133 97.4179 10.9009 97.7271 10.9263C98.355 10.9263 98.69 11.2905 98.69 12.0098V14.6978H99.5795V11.7905C99.6384 11.3525 99.4989 10.9111 99.199 10.5864C98.8991 10.2618 98.4701 10.0878 98.0288 10.1118C97.4469 10.0646 96.8978 10.3872 96.6558 10.9185H96.5854V8.43701ZM104.761 13.4819C104.512 14.3313 103.69 14.8801 102.81 14.7847C102.21 14.8005 101.633 14.5516 101.232 14.1041C100.831 13.6565 100.648 13.0555 100.73 12.4605C100.65 11.8638 100.833 11.2618 101.231 10.8105C101.63 10.3591 102.204 10.1028 102.806 10.1079C104.059 10.1079 104.815 10.9639 104.815 12.3779V12.688H101.635V12.7378C101.607 13.072 101.721 13.4025 101.95 13.6481C102.178 13.8936 102.499 14.0315 102.834 14.0278C103.269 14.08 103.692 13.8643 103.906 13.4819L104.761 13.4819ZM103.91 12.0308H101.635C101.631 11.7203 101.753 11.4213 101.972 11.2017C102.192 10.982 102.491 10.8604 102.801 10.8643C103.108 10.8572 103.403 10.9799 103.614 11.2021C103.825 11.4242 103.932 11.7252 103.91 12.0308Z" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M23.3154 7.84717C23.4161 9.16184 23.0003 10.464 22.1564 11.4771C21.3377 12.4954 20.0971 13.0819 18.7905 13.0685C18.7074 11.7917 19.1353 10.5342 19.9799 9.57299C20.8352 8.59878 22.0261 7.98258 23.3154 7.84717ZM27.4476 15.5719C25.9446 16.4959 25.0198 18.1254 24.997 19.8896C24.9992 21.8855 26.1945 23.6868 28.0327 24.4643C27.6792 25.6128 27.1463 26.6982 26.4537 27.6802C25.5237 29.0715 24.5485 30.4307 23.0007 30.4558C22.2646 30.4728 21.7677 30.2611 21.25 30.0406C20.7099 29.8105 20.1471 29.5708 19.2665 29.5708C18.3325 29.5708 17.7445 29.8182 17.1774 30.0569C16.6874 30.2631 16.2129 30.4628 15.5443 30.4905C14.0703 30.5451 12.9438 29.0056 11.9799 27.6274C10.0534 24.8128 8.55327 19.6954 10.5644 16.2134C11.5088 14.5163 13.2746 13.4394 15.2158 13.3767C16.0518 13.3595 16.8539 13.6817 17.5572 13.9642C18.0951 14.1802 18.5751 14.373 18.9682 14.373C19.3138 14.373 19.7804 14.1878 20.3242 13.972C21.1809 13.632 22.2291 13.216 23.2972 13.3281C24.957 13.3801 26.4951 14.2116 27.4476 15.5719Z" fill="black"/>
+</svg>
\ No newline at end of file
diff --git a/src/imgs/fdroid-badge.png b/src/imgs/fdroid-badge.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c8c3c5e57a2462f347f7f2fa117bf8617690f30
Binary files /dev/null and b/src/imgs/fdroid-badge.png differ
diff --git a/src/imgs/google-play-us.svg b/src/imgs/google-play-us.svg
new file mode 100644
index 0000000000000000000000000000000000000000..888691ade4f51f147d8f95031aed57691b86381a
--- /dev/null
+++ b/src/imgs/google-play-us.svg
@@ -0,0 +1,41 @@
+<svg width="136" height="40" viewBox="0 0 136 40" fill="none" xmlns="http://www.w3.org/2000/svg">
+<rect x="0.664062" width="135" height="40" rx="5" fill="black"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M5.66406 0H130.664C133.425 0 135.664 2.23858 135.664 5V35C135.664 37.7614 133.425 40 130.664 40H5.66406C2.90264 40 0.664062 37.7614 0.664062 35V5C0.664062 2.23858 2.90264 0 5.66406 0ZM134.864 5C134.864 2.6804 132.984 0.8 130.664 0.8H5.66406C3.34447 0.8 1.46406 2.6804 1.46406 5V35C1.46406 37.3196 3.34447 39.2 5.66406 39.2H130.664C132.984 39.2 134.864 37.3196 134.864 35V5Z" fill="#A6A6A6"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M48.4042 23.0601V24.8601H52.7242C52.6564 25.7079 52.304 26.5079 51.7242 27.1301C50.8502 28.0204 49.6407 28.4998 48.3942 28.4501C45.7432 28.4501 43.5942 26.3011 43.5942 23.6501C43.5942 20.9992 45.7432 18.8501 48.3942 18.8501C49.612 18.8303 50.7879 19.2942 51.6642 20.1401L52.9342 18.8701C51.7391 17.66 50.1049 16.9854 48.4042 17.0001C45.9831 16.9059 43.7046 18.1438 42.466 20.2262C41.2275 22.3086 41.2275 24.9017 42.466 26.9841C43.7046 29.0665 45.9831 30.3044 48.4042 30.2101C50.1359 30.2884 51.8169 29.6138 53.0142 28.3601C54.0618 27.2091 54.6212 25.6959 54.5742 24.1401C54.5774 23.7611 54.5439 23.3827 54.4742 23.0101L48.4042 23.0601ZM59.4942 21.7501C57.1483 21.7557 55.2505 23.6609 55.2542 26.0068C55.2578 28.3527 57.1616 30.252 59.5075 30.2501C61.8534 30.2483 63.7542 28.346 63.7542 26.0001C63.7706 24.8645 63.3254 23.7708 62.5204 22.9696C61.7154 22.1684 60.6197 21.7283 59.4842 21.7501H59.4942ZM64.5742 26.0134C64.5668 23.6688 66.4596 21.7612 68.8042 21.7501C69.9397 21.7283 71.0354 22.1684 71.8404 22.9696C72.6454 23.7708 73.0906 24.8645 73.0742 26.0001C73.0741 28.3447 71.1754 30.2464 68.8308 30.2501C66.4862 30.2537 64.5815 28.358 64.5742 26.0134ZM66.2962 27.1186C66.7528 28.0745 67.7474 28.654 68.8042 28.5801C69.4675 28.5648 70.0964 28.2821 70.5483 27.7963C71.0002 27.3105 71.2367 26.6628 71.2042 26.0001C71.2016 24.9408 70.5517 23.9907 69.5653 23.6042C68.579 23.2178 67.4567 23.4735 66.7351 24.2492C66.0136 25.0248 65.8395 26.1627 66.2962 27.1186ZM56.9795 27.1262C57.4394 28.0815 58.4368 28.6582 59.4942 28.5801H59.4842C60.1475 28.5648 60.7764 28.2821 61.2283 27.7963C61.6802 27.3105 61.9167 26.6628 61.8842 26.0001C61.8813 24.9399 61.2301 23.9894 60.2425 23.6038C59.2549 23.2182 58.132 23.4761 57.4115 24.2538C56.691 25.0316 56.5196 26.171 56.9795 27.1262ZM90.0742 21.7501C91.7321 21.8112 93.1802 22.8893 93.7142 24.4601L93.9242 24.9101L88.2342 27.2601C88.5908 28.0723 89.4077 28.5839 90.2942 28.5501C91.15 28.5523 91.9439 28.1041 92.3842 27.3701L93.8342 28.3701C93.0448 29.5516 91.715 30.2578 90.2942 30.2501C89.1647 30.2667 88.0771 29.8233 87.2812 29.0217C86.4853 28.2202 86.0496 27.1294 86.0742 26.0001C86.0051 24.8967 86.3958 23.8138 87.1535 23.0087C87.9113 22.2035 88.9685 21.748 90.0742 21.7501ZM87.9142 25.8801C87.8732 25.2553 88.0855 24.6403 88.5031 24.1737C88.9208 23.7072 89.5086 23.4284 90.1342 23.4001C90.7935 23.3567 91.4152 23.7108 91.7142 24.3001L87.9142 25.8801ZM85.1642 30.0001H83.2942V17.5001H85.1642V30.0001ZM80.2342 22.7001H80.1642C79.5941 22.0628 78.7792 21.699 77.9242 21.7001C75.6543 21.8102 73.8705 23.6826 73.8705 25.9551C73.8705 28.2277 75.6543 30.1001 77.9242 30.2101C78.782 30.2246 79.6022 29.8584 80.1642 29.2101H80.2242V29.8201C80.2242 31.4501 79.3542 32.3201 77.9542 32.3201C77.0005 32.2978 76.1549 31.7012 75.8142 30.8101L74.1842 31.4901C74.8118 33.0169 76.3034 34.01 77.9542 34.0001C80.1442 34.0001 81.9542 32.7101 81.9542 29.5701V22.0001H80.2342V22.7001ZM78.0911 28.5799L78.0942 28.5801H78.0842L78.0911 28.5799ZM79.7761 27.7779C79.347 28.2636 78.7384 28.5531 78.0911 28.5799C76.7555 28.4606 75.7315 27.3414 75.7315 26.0001C75.7315 24.6578 76.757 23.538 78.0942 23.4201C78.7403 23.4533 79.3456 23.7459 79.773 24.2316C80.2004 24.7174 80.4135 25.3551 80.3642 26.0001C80.4193 26.6482 80.2068 27.2906 79.7761 27.7779ZM102.474 17.5001H98.0042V30.0001H99.8742V25.2601H102.484C103.937 25.3645 105.326 24.6486 106.084 23.4051C106.842 22.1616 106.842 20.5987 106.084 19.3552C105.326 18.1116 103.937 17.3958 102.484 17.5001H102.474ZM99.8642 23.5001H102.474L102.514 23.5301C103.699 23.5301 104.659 22.5698 104.659 21.3851C104.659 20.2005 103.699 19.2401 102.514 19.2401H99.8642V23.5001ZM114.004 21.7001C112.613 21.617 111.305 22.3672 110.674 23.6101L112.334 24.3001C112.669 23.6838 113.335 23.323 114.034 23.3801C114.514 23.3241 114.996 23.4631 115.372 23.7658C115.748 24.0686 115.986 24.5097 116.034 24.9901V25.1201C115.434 24.8021 114.764 24.6373 114.084 24.6401C112.294 24.6401 110.484 25.6401 110.484 27.4501C110.52 28.2298 110.869 28.962 111.453 29.4799C112.037 29.9979 112.806 30.2577 113.584 30.2001C114.543 30.269 115.464 29.8089 115.984 29.0001H116.044V30.0001H117.844V25.1901C117.844 23.0001 116.184 21.7301 114.054 21.7301L114.004 21.7001ZM112.314 27.4901C112.314 28.2401 113.164 28.5501 113.774 28.5501L113.824 28.5801C114.951 28.5527 115.885 27.6996 116.014 26.5801C115.495 26.2905 114.908 26.1455 114.314 26.1601C113.374 26.1601 112.314 26.4901 112.314 27.4901ZM124.404 22.0001L122.264 27.4201H122.204L119.984 22.0001H117.984L121.314 29.5801L119.414 33.7901H121.364L126.484 22.0001H124.404ZM109.464 30.0001H107.594V17.5001H109.464V30.0001Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M69.8742 7.76997C68.6945 9.01874 68.6945 10.9712 69.8742 12.22C71.0912 13.4302 73.0572 13.4302 74.2742 12.22C75.459 10.9732 75.459 9.01673 74.2742 7.76997C73.6922 7.18372 72.9003 6.854 72.0742 6.854C71.2481 6.854 70.4562 7.18372 69.8742 7.76997ZM47.3342 12.24C47.8475 11.7041 48.1186 10.9812 48.0842 10.24C48.0843 10.0891 48.0709 9.93849 48.0442 9.78997H45.1342V10.51H47.3042C47.2894 10.9635 47.1119 11.3965 46.8042 11.73C46.1188 12.3925 45.1021 12.5776 44.2272 12.1992C43.3522 11.8208 42.7908 10.9532 42.8042 9.99997C42.7825 9.36919 43.0186 8.75676 43.4583 8.30391C43.8979 7.85106 44.5031 7.59687 45.1342 7.59997C45.7621 7.56566 46.3696 7.82865 46.7742 8.30997L47.3042 7.77997C47.0482 7.48553 46.7261 7.25592 46.3642 7.10997C45.9756 6.94364 45.557 6.85856 45.1342 6.85997C44.3048 6.84149 43.5048 7.1673 42.9242 7.75997C42.0308 8.65929 41.7635 10.0066 42.2459 11.1789C42.7284 12.3512 43.8666 13.12 45.1342 13.13C45.9607 13.1594 46.7607 12.8358 47.3342 12.24ZM49.9642 7.73997H52.6642V6.99997H49.1642V13H52.6642V12.26H49.9642V10.36H52.4242V9.63997H49.9642V7.73997ZM55.9442 13H55.1742V7.73997H53.4942V6.99997H57.6642V7.73997H55.9442V13ZM61.3742 6.99997H60.6042V13H61.3742V6.99997ZM64.7942 13H64.0242V7.73997H62.3442V6.99997H66.4642V7.73997H64.7942V13ZM77.1842 6.99997H76.2442V13H77.0242V8.10997L80.0742 13H80.8742V6.99997H80.1042V11.67L77.1842 6.99997ZM70.4442 11.72C71.3455 12.6175 72.8029 12.6175 73.7042 11.72C74.5894 10.7441 74.5894 9.2558 73.7042 8.27997C72.8029 7.38241 71.3455 7.38241 70.4442 8.27997C69.559 9.2558 69.559 10.7441 70.4442 11.72Z" fill="white"/>
+<path d="M69.8742 12.22L69.8015 12.2887L69.8037 12.2909L69.8742 12.22ZM69.8742 7.76997L69.8032 7.6995L69.8015 7.7013L69.8742 7.76997ZM74.2742 12.22L74.3448 12.2909L74.3467 12.2889L74.2742 12.22ZM74.2742 7.76997L74.3467 7.70107L74.3452 7.69952L74.2742 7.76997ZM48.0842 10.24L47.9841 10.2399L47.9843 10.2446L48.0842 10.24ZM47.3342 12.24L47.4063 12.3093L47.4064 12.3091L47.3342 12.24ZM48.0442 9.78997L48.1427 9.77229L48.1279 9.68997H48.0442V9.78997ZM45.1342 9.78997V9.68997H45.0342V9.78997H45.1342ZM45.1342 10.51H45.0342V10.61H45.1342V10.51ZM47.3042 10.51L47.4042 10.5132L47.4075 10.41H47.3042V10.51ZM46.8042 11.73L46.8738 11.802L46.8777 11.7978L46.8042 11.73ZM44.2272 12.1992L44.1875 12.291H44.1875L44.2272 12.1992ZM42.8042 9.99997L42.9043 10.0014L42.9042 9.99652L42.8042 9.99997ZM43.4583 8.30391L43.3865 8.23425L43.4583 8.30391ZM45.1342 7.59997L45.1337 7.70015L45.1397 7.69982L45.1342 7.59997ZM46.7742 8.30997L46.6977 8.37432L46.7678 8.45778L46.8449 8.38068L46.7742 8.30997ZM47.3042 7.77997L47.3749 7.85068L47.4409 7.78474L47.3797 7.71436L47.3042 7.77997ZM46.3642 7.10997L46.3249 7.20193L46.3268 7.20271L46.3642 7.10997ZM45.1342 6.85997L45.132 6.95998L45.1346 6.95997L45.1342 6.85997ZM42.9242 7.75997L42.9952 7.83045L42.9957 7.82995L42.9242 7.75997ZM42.2459 11.1789L42.1534 11.2169L42.2459 11.1789ZM45.1342 13.13L45.1378 13.03L45.135 13.03L45.1342 13.13ZM52.6642 7.73997V7.83997H52.7642V7.73997H52.6642ZM49.9642 7.73997V7.63997H49.8642V7.73997H49.9642ZM52.6642 6.99997H52.7642V6.89997H52.6642V6.99997ZM49.1642 6.99997V6.89997H49.0642V6.99997H49.1642ZM49.1642 13H49.0642V13.1H49.1642V13ZM52.6642 13V13.1H52.7642V13H52.6642ZM52.6642 12.26H52.7642V12.16H52.6642V12.26ZM49.9642 12.26H49.8642V12.36H49.9642V12.26ZM49.9642 10.36V10.26H49.8642V10.36H49.9642ZM52.4242 10.36V10.46H52.5242V10.36H52.4242ZM52.4242 9.63997H52.5242V9.53997H52.4242V9.63997ZM49.9642 9.63997H49.8642V9.73997H49.9642V9.63997ZM55.1742 13H55.0742V13.1H55.1742V13ZM55.9442 13V13.1H56.0442V13H55.9442ZM55.1742 7.73997H55.2742V7.63997H55.1742V7.73997ZM53.4942 7.73997H53.3942V7.83997H53.4942V7.73997ZM53.4942 6.99997V6.89997H53.3942V6.99997H53.4942ZM57.6642 6.99997H57.7642V6.89997H57.6642V6.99997ZM57.6642 7.73997V7.83997H57.7642V7.73997H57.6642ZM55.9442 7.73997V7.63997H55.8442V7.73997H55.9442ZM60.6042 6.99997V6.89997H60.5042V6.99997H60.6042ZM61.3742 6.99997H61.4742V6.89997H61.3742V6.99997ZM60.6042 13H60.5042V13.1H60.6042V13ZM61.3742 13V13.1H61.4742V13H61.3742ZM64.0242 13H63.9242V13.1H64.0242V13ZM64.7942 13V13.1H64.8942V13H64.7942ZM64.0242 7.73997H64.1242V7.63997H64.0242V7.73997ZM62.3442 7.73997H62.2442V7.83997H62.3442V7.73997ZM62.3442 6.99997V6.89997H62.2442V6.99997H62.3442ZM66.4642 6.99997H66.5642V6.89997H66.4642V6.99997ZM66.4642 7.73997V7.83997H66.5642V7.73997H66.4642ZM64.7942 7.73997V7.63997H64.6942V7.73997H64.7942ZM76.2442 6.99997V6.89997H76.1442V6.99997H76.2442ZM77.1842 6.99997L77.269 6.94695L77.2396 6.89997H77.1842V6.99997ZM76.2442 13H76.1442V13.1H76.2442V13ZM77.0242 13V13.1H77.1242V13H77.0242ZM77.0242 8.10997L77.1091 8.05705L76.9242 7.76069V8.10997H77.0242ZM80.0742 13L79.9894 13.0529L80.0187 13.1H80.0742V13ZM80.8742 13V13.1H80.9742V13H80.8742ZM80.8742 6.99997H80.9742V6.89997H80.8742V6.99997ZM80.1042 6.99997V6.89997H80.0042V6.99997H80.1042ZM80.1042 11.67L80.0194 11.723L80.2042 12.0185V11.67H80.1042ZM73.7042 11.72L73.7749 11.7909L73.7783 11.7872L73.7042 11.72ZM70.4442 11.72L70.3701 11.7872L70.3737 11.7908L70.4442 11.72ZM73.7042 8.27997L73.7784 8.2127L73.7748 8.20911L73.7042 8.27997ZM70.4442 8.27997L70.3736 8.20902L70.3702 8.21278L70.4442 8.27997ZM69.9469 12.1513C68.8036 10.9411 68.8036 9.04887 69.9469 7.83864L69.8015 7.7013C68.5854 8.98861 68.5854 11.0013 69.8015 12.2886L69.9469 12.1513ZM74.2037 12.1491C73.0257 13.3205 71.1227 13.3205 69.9447 12.1491L69.8037 12.2909C71.0597 13.5399 73.0887 13.5399 74.3447 12.2909L74.2037 12.1491ZM74.2017 7.83886C75.3498 9.04702 75.3498 10.9429 74.2017 12.1511L74.3467 12.2889C75.5682 11.0035 75.5682 8.98644 74.3467 7.70109L74.2017 7.83886ZM72.0742 6.954C72.8737 6.954 73.64 7.27308 74.2033 7.84042L74.3452 7.69952C73.7444 7.09435 72.927 6.754 72.0742 6.754V6.954ZM69.9452 7.84042C70.5084 7.27308 71.2748 6.954 72.0742 6.954V6.754C71.2215 6.754 70.404 7.09435 69.8033 7.69952L69.9452 7.84042ZM47.9843 10.2446C48.0174 10.9585 47.7563 11.6547 47.262 12.1708L47.4064 12.3091C47.9387 11.7535 48.2197 11.0039 48.1841 10.2353L47.9843 10.2446ZM47.9458 9.80765C47.9714 9.95032 47.9843 10.095 47.9842 10.2399L48.1842 10.24C48.1843 10.0832 48.1704 9.92666 48.1427 9.77229L47.9458 9.80765ZM45.1342 9.88997H48.0442V9.68997H45.1342V9.88997ZM45.2342 10.51V9.78997H45.0342V10.51H45.2342ZM47.3042 10.41H45.1342V10.61H47.3042V10.41ZM46.8777 11.7978C47.2017 11.4467 47.3886 10.9907 47.4042 10.5132L47.2043 10.5067C47.1902 10.9362 47.0222 11.3463 46.7307 11.6622L46.8777 11.7978ZM44.1875 12.291C45.0995 12.6855 46.1593 12.4925 46.8737 11.8019L46.7347 11.6581C46.0784 12.2925 45.1047 12.4698 44.2669 12.1074L44.1875 12.291ZM42.7042 9.99857C42.6903 10.9921 43.2754 11.8966 44.1875 12.291L44.2669 12.1074C43.429 11.7451 42.8914 10.9142 42.9042 10.0014L42.7042 9.99857ZM43.3865 8.23425C42.9279 8.70662 42.6816 9.34545 42.7043 10.0034L42.9042 9.99652C42.8833 9.39293 43.1093 8.8069 43.53 8.37357L43.3865 8.23425ZM45.1347 7.49997C44.4764 7.49674 43.8451 7.76188 43.3865 8.23425L43.53 8.37357C43.9507 7.94023 44.5298 7.69701 45.1337 7.69997L45.1347 7.49997ZM46.8508 8.24562C46.4259 7.74023 45.788 7.46409 45.1288 7.50012L45.1397 7.69982C45.7362 7.66723 46.3133 7.91706 46.6977 8.37432L46.8508 8.24562ZM47.2335 7.70926L46.7035 8.23926L46.8449 8.38068L47.3749 7.85068L47.2335 7.70926ZM46.3268 7.20271C46.674 7.34276 46.9831 7.56306 47.2288 7.84559L47.3797 7.71436C47.1133 7.40799 46.7781 7.16909 46.4016 7.01723L46.3268 7.20271ZM45.1346 6.95997C45.5437 6.95861 45.9488 7.04094 46.3249 7.20191L46.4036 7.01804C46.0024 6.84634 45.5703 6.75852 45.1339 6.75997L45.1346 6.95997ZM42.9957 7.82995C43.5568 7.25703 44.3302 6.94208 45.132 6.95995L45.1365 6.76C44.2794 6.7409 43.4527 7.07757 42.8528 7.69L42.9957 7.82995ZM42.3384 11.1408C41.8713 10.0057 42.1301 8.70122 42.9952 7.83045L42.8533 7.68949C41.9315 8.61736 41.6557 10.0074 42.1534 11.2169L42.3384 11.1408ZM45.135 13.03C43.9076 13.0204 42.8055 12.2759 42.3384 11.1408L42.1534 11.2169C42.6512 12.4265 43.8255 13.2197 45.1334 13.23L45.135 13.03ZM47.2622 12.1706C46.7083 12.7459 45.9359 13.0584 45.1378 13.03L45.1307 13.2299C45.9856 13.2603 46.813 12.9256 47.4063 12.3093L47.2622 12.1706ZM52.6642 7.63997H49.9642V7.83997H52.6642V7.63997ZM52.5642 6.99997V7.73997H52.7642V6.99997H52.5642ZM49.1642 7.09997H52.6642V6.89997H49.1642V7.09997ZM49.2642 13V6.99997H49.0642V13H49.2642ZM52.6642 12.9H49.1642V13.1H52.6642V12.9ZM52.5642 12.26V13H52.7642V12.26H52.5642ZM49.9642 12.36H52.6642V12.16H49.9642V12.36ZM49.8642 10.36V12.26H50.0642V10.36H49.8642ZM52.4242 10.26H49.9642V10.46H52.4242V10.26ZM52.3242 9.63997V10.36H52.5242V9.63997H52.3242ZM49.9642 9.73997H52.4242V9.53997H49.9642V9.73997ZM49.8642 7.73997V9.63997H50.0642V7.73997H49.8642ZM55.1742 13.1H55.9442V12.9H55.1742V13.1ZM55.0742 7.73997V13H55.2742V7.73997H55.0742ZM53.4942 7.83997H55.1742V7.63997H53.4942V7.83997ZM53.3942 6.99997V7.73997H53.5942V6.99997H53.3942ZM57.6642 6.89997H53.4942V7.09997H57.6642V6.89997ZM57.7642 7.73997V6.99997H57.5642V7.73997H57.7642ZM55.9442 7.83997H57.6642V7.63997H55.9442V7.83997ZM56.0442 13V7.73997H55.8442V13H56.0442ZM60.6042 7.09997H61.3742V6.89997H60.6042V7.09997ZM60.7042 13V6.99997H60.5042V13H60.7042ZM61.3742 12.9H60.6042V13.1H61.3742V12.9ZM61.2742 6.99997V13H61.4742V6.99997H61.2742ZM64.0242 13.1H64.7942V12.9H64.0242V13.1ZM63.9242 7.73997V13H64.1242V7.73997H63.9242ZM62.3442 7.83997H64.0242V7.63997H62.3442V7.83997ZM62.2442 6.99997V7.73997H62.4442V6.99997H62.2442ZM66.4642 6.89997H62.3442V7.09997H66.4642V6.89997ZM66.5642 7.73997V6.99997H66.3642V7.73997H66.5642ZM64.7942 7.83997H66.4642V7.63997H64.7942V7.83997ZM64.8942 13V7.73997H64.6942V13H64.8942ZM76.2442 7.09997H77.1842V6.89997H76.2442V7.09997ZM76.3442 13V6.99997H76.1442V13H76.3442ZM77.0242 12.9H76.2442V13.1H77.0242V12.9ZM76.9242 8.10997V13H77.1242V8.10997H76.9242ZM80.1591 12.947L77.1091 8.05705L76.9394 8.16289L79.9894 13.0529L80.1591 12.947ZM80.8742 12.9H80.0742V13.1H80.8742V12.9ZM80.7742 6.99997V13H80.9742V6.99997H80.7742ZM80.1042 7.09997H80.8742V6.89997H80.1042V7.09997ZM80.2042 11.67V6.99997H80.0042V11.67H80.2042ZM77.0994 7.05299L80.0194 11.723L80.189 11.617L77.269 6.94695L77.0994 7.05299ZM73.6337 11.6491C72.7714 12.5078 71.3771 12.5078 70.5148 11.6491L70.3737 11.7908C71.314 12.7273 72.8344 12.7273 73.7748 11.7908L73.6337 11.6491ZM73.6302 8.34716C74.4808 9.28487 74.4808 10.7151 73.6302 11.6528L73.7783 11.7872C74.6981 10.7732 74.6981 9.22673 73.7783 8.21278L73.6302 8.34716ZM70.5148 8.35083C71.3771 7.49212 72.7714 7.49212 73.6337 8.35083L73.7748 8.20911C72.8344 7.27269 71.314 7.27269 70.3737 8.20911L70.5148 8.35083ZM70.5183 11.6528C69.6677 10.7151 69.6677 9.28487 70.5183 8.34716L70.3702 8.21278C69.4504 9.22673 69.4504 10.7732 70.3702 11.7872L70.5183 11.6528Z" fill="white"/>
+<path d="M11.1042 7.54021C10.7783 7.93132 10.6138 8.43201 10.6442 8.94021V31.0602C10.6138 31.5684 10.7783 32.0691 11.1042 32.4602L11.1742 32.5302L23.5642 20.1502V19.8602L11.1742 7.47021L11.1042 7.54021Z" fill="url(#paint0_linear)"/>
+<path d="M27.6635 24.2802L23.5635 20.1502V19.8602L27.6635 15.7202L27.7535 15.7702L32.6635 18.5602C34.0635 19.3502 34.0635 20.6502 32.6635 21.4502L27.7735 24.2302L27.6635 24.2802Z" fill="url(#paint1_linear)"/>
+<path d="M27.7835 24.22L23.5635 20L11.1035 32.46C11.6922 32.9775 12.5659 33.0027 13.1835 32.52L27.7935 24.22" fill="url(#paint2_linear)"/>
+<path d="M27.7838 15.7801L13.1737 7.48005C12.5562 6.99733 11.6825 7.02253 11.0938 7.54005L23.5638 20.0001L27.7838 15.7801Z" fill="url(#paint3_linear)"/>
+<path opacity="0.2" d="M27.6635 24.1299L13.1735 32.3799C12.5806 32.8232 11.7665 32.8232 11.1735 32.3799L11.1035 32.4499L11.1735 32.5199C11.7654 32.9666 12.5817 32.9666 13.1735 32.5199L27.7835 24.2199L27.6635 24.1299Z" fill="black"/>
+<path opacity="0.12" fill-rule="evenodd" clip-rule="evenodd" d="M27.6642 24.13L32.6642 21.3C33.1809 21.045 33.5502 20.5648 33.6642 20C33.6127 20.6244 33.2313 21.1736 32.6642 21.44L27.7542 24.22L27.6642 24.13ZM10.642 31.1147C10.6585 31.5546 10.82 31.979 11.1042 32.32L11.1742 32.4L11.1042 32.47C10.7878 32.0904 10.6235 31.6075 10.642 31.1147ZM10.642 31.1147C10.6426 31.0998 10.6433 31.0849 10.6442 31.07V30.92C10.6403 30.9851 10.6396 31.05 10.642 31.1147Z" fill="black"/>
+<path opacity="0.25" d="M13.1738 7.61994L32.6638 18.6999C33.1805 18.955 33.5498 19.4351 33.6638 19.9999C33.6123 19.3755 33.2309 18.8263 32.6638 18.5599L13.1738 7.47994C11.7738 6.68994 10.6338 7.34994 10.6338 8.94994V9.09994C10.6638 7.48994 11.7838 6.82994 13.1738 7.61994Z" fill="white"/>
+<defs>
+<linearGradient id="paint0_linear" x1="18.1374" y1="-7.55876" x2="-1.70199" y2="-2.28242" gradientUnits="userSpaceOnUse">
+<stop stop-color="#00A0FF"/>
+<stop offset="0.01" stop-color="#00A1FF"/>
+<stop offset="0.26" stop-color="#00BEFF"/>
+<stop offset="0.51" stop-color="#00D2FF"/>
+<stop offset="0.76" stop-color="#00DFFF"/>
+<stop offset="1" stop-color="#00E3FF"/>
+</linearGradient>
+<linearGradient id="paint1_linear" x1="34.4935" y1="9.7999" x2="10.3035" y2="9.7999" gradientUnits="userSpaceOnUse">
+<stop stop-color="#FFE000"/>
+<stop offset="0.41" stop-color="#FFBD00"/>
+<stop offset="0.78" stop-color="#FFA500"/>
+<stop offset="1" stop-color="#FF9C00"/>
+</linearGradient>
+<linearGradient id="paint2_linear" x1="10.7374" y1="13.5275" x2="-5.19904" y2="40.3341" gradientUnits="userSpaceOnUse">
+<stop stop-color="#FF3A44"/>
+<stop offset="1" stop-color="#C31162"/>
+</linearGradient>
+<linearGradient id="paint3_linear" x1="1.37377" y1="4.09606" x2="8.48705" y2="16.0665" gradientUnits="userSpaceOnUse">
+<stop stop-color="#32A071"/>
+<stop offset="0.07" stop-color="#2DA771"/>
+<stop offset="0.48" stop-color="#15CF74"/>
+<stop offset="0.8" stop-color="#06E775"/>
+<stop offset="1" stop-color="#00F076"/>
+</linearGradient>
+</defs>
+</svg>
\ No newline at end of file