Moving badges to theme, fixing bug with links not being clickable, adding disclaimer to apps for distribution icons.

This commit is contained in:
Ad5001 2021-08-03 14:59:16 +02:00
parent 1171b352c5
commit 29770627da
No known key found for this signature in database
GPG Key ID: 9C87C7D3A69E6BBE
40 changed files with 3375 additions and 43 deletions

View File

@ -2,10 +2,25 @@
Hugo theme for ad5001.eu Hugo theme for ad5001.eu
## Licenses ## Licenses acknowledgments.
- static/font/metropolis/* is licensed under the SIL Open Font License, a copy being available in said folder. - `static/font/metropolis/*` is licensed under the SIL Open Font License, a copy being available in said folder.
- static/font/omegicons/\* fonts, static/icons/\*.svg, static/icons/platform/\* , static/icons/social/\* include custom icons as well as icons from [Iconmonstr](https://iconmonstr.com) under it's [permissive license](https://iconmonstr.com/license/) - `static/font/omegicons/\*` fonts, `static/icons/\*.svg`, `static/icons/platform/\*` , `static/icons/social/\*` include custom icons as well as icons from [Iconmonstr](https://iconmonstr.com) under it's [permissive license](https://iconmonstr.com/license/)
- static/icons/flag/\* are flags from the [Wikimedia Commons](https://commons.wikimedia.org/wiki/Flag) under Public Domain. - `static/icons/flag/\*` are flags from the [Wikimedia Commons](https://commons.wikimedia.org/wiki/Flag) under Public Domain.
- layouts/, assets/ aswell as static/js are under the [GNU AGPL v3](https://www.gnu.org/licenses/agpl-3.0.html), for which a copy is available in the LICENSE file. - `layouts/` and `assets/` are under the [GNU AGPL v3](https://www.gnu.org/licenses/agpl-3.0.html), for which a copy is available in the LICENSE file.
- static/img/*, icon.svg are under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode) - `static/img/badges/\*` icons are owned by their respective owners, and are only used to represent product to which they refer:
- `amo.svg`, `amo-text.svg`: Firefox icon used to refer to [addons.mozilla.org].
The Firefox logo is a trademark of the Mozilla Foundation in the U.S. and other countries.
This badge is the translated and updated form of [the old badge](https://blog.mozilla.org/addons/2015/11/10/promote-your-add-ons-with-the-get-the-add-on-button/) with the new AMO colors and branding.
- `snapcraft.svg`, `snapcraft-text.svg`: Snapcraft icon used to refer to [snapcraft.io].
The Snapcraft logo is licensed under [CC BY-ND 2.0 UK](https://creativecommons.org/licenses/by-nd/2.0/uk/legalcode), a registered trademark of Canonical Limited, 2018.
These icons are adapted versions of [the official snapcraft badges](https://github.com/snapcore/snap-store-badges).
- `flathub.svg`, `flathub-text.svg`: Flathub icon used to refer to [flathub.org]
These icons are modified and translated versions of [the official flathub badges](https://flathub.org/badges), the official ones being under [CC0](http://creativecommons.org/publicdomain/zero/1.0/).
- `static/icons/distribution/\*` icons are owned by their respective owners, and are only used to represent product to which they refer:
- `firefox.svg`: Firefox icon used to refer to [addons.mozilla.org].
The Firefox logo is a trademark of the Mozilla Foundation in the U.S. and other countries.
- `snapcraft.svg`: Snapcraft icon used to refer to [snapcraft.io].
The Snapcraft logo is licensed under [CC BY-ND 2.0 UK](https://creativecommons.org/licenses/by-nd/2.0/uk/legalcode), a registered trademark of Canonical Limited, 2018.
- `flathub.svg`: Flathub icon used to refer to [flathub.org]
- `static/img/*`, `icon.svg` are under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode)

View File

@ -72,26 +72,16 @@
.app-os-sources { .app-os-sources {
hr { hr {
color: var(--primary-color); border: 0;
height: 1px;
background: var(--primary-color);
&:last-of-type { &:last-of-type {
opacity: 0; opacity: 0;
height: 0.1em; height: 0.1em;
} }
} }
a img {
width: Min(300px, calc(100% - 2em));
box-shadow: 0px 0px 0px 0px #000000;
transition: box-shadow 0.15s ease-in-out, filter 0.15s ease-in-out;
border-radius: 0.5em;
filter: brightness(100%);
&:hover {
box-shadow: 0px 0px 8px 0px #000000;
filter: brightness(90%);
}
}
} }
} }

View File

@ -18,3 +18,4 @@
@import "components/blocks/preview"; @import "components/blocks/preview";
@import "components/blocks/card"; @import "components/blocks/card";
@import "components/blocks/badge";

View File

@ -40,6 +40,13 @@ body {
max-width: 75em; max-width: 75em;
} }
.fit-content {
width: -moz-fit-content;
height: -moz-fit-content;
width: fit-content;
height: fit-content;
}
hr { hr {
opacity: 0.5; opacity: 0.5;
} }

View File

@ -0,0 +1,29 @@
/**
* Omegamma - Hugo theme for ad5001.eu and related websites.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
.badge {
width: Min(300px, calc(100% - 2em));
box-shadow: 0px 0px 0px 0px #000000;
transition: box-shadow 0.15s ease-in-out, filter 0.15s ease-in-out;
border-radius: 0.5em;
filter: brightness(100%);
&:hover {
box-shadow: 0px 0px 8px 0px #000000;
filter: brightness(90%);
}
}

View File

@ -21,11 +21,13 @@
color: black; color: black;
cursor: pointer; cursor: pointer;
width: -moz-fit-content;
height: -moz-fit-content;
width: fit-content; width: fit-content;
height: fit-content; height: fit-content;
&.primary, &.secondary { &.primary, &.secondary {
padding: 0.5em;
margin: 0.1em; margin: 0.1em;
text-transform: uppercase; text-transform: uppercase;
font-size: larger; font-size: larger;
@ -42,6 +44,13 @@
box-shadow: 0px 0px 8px 0px #000000; box-shadow: 0px 0px 8px 0px #000000;
filter: brightness(90%); filter: brightness(90%);
} }
& a, &:not(div) {
text-decoration: none;
display: inline-block;
color: black;
padding: 0.5em;
}
} }
} }

View File

@ -61,6 +61,11 @@
} }
} }
*/ */
.shadowed {
filter: drop-shadow(0 0 1px rgba(0, 0, 0, .6));
}
[class^="icon-"]:before, [class*=" icon-"]:before { [class^="icon-"]:before, [class*=" icon-"]:before {
font-family: "omegicons"; font-family: "omegicons";
font-style: normal; font-style: normal;
@ -87,7 +92,7 @@
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */ /* Uncomment for 3D effect */
text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
} }
.icon-windows:before { content: '\e800'; } /* '' */ .icon-windows:before { content: '\e800'; } /* '' */

View File

@ -33,6 +33,13 @@
color: white; color: white;
} }
p, .text-content { p, .text-content, ul {
line-height: 1.5em; line-height: 1.5em;
} }
code, .code {
font-family: monospace;
padding: 0.5em;
margin-bottom: 0.5em;
background: white;
}

View File

@ -21,9 +21,8 @@ section.section-skewed {
transform: skewY(var(--angle)); transform: skewY(var(--angle));
background: #D2D2D2; background: #D2D2D2;
background: linear-gradient(170deg, rgba(238,238,238,1) 0%, rgba(210,210,210,1) 49%, rgba(238,238,238,1) 100%); background: linear-gradient(170deg, rgba(238,238,238,1) 0%, rgba(210,210,210,1) 49%, rgba(238,238,238,1) 100%);
padding-top: 3em; padding-top: 0.5em;
padding-bottom: 3em; padding-bottom: 3em;
margin-bottom: 2em;
} }
section.section-skewed > * { section.section-skewed > * {

View File

@ -66,6 +66,7 @@ nav {
&.background a[role=button] { &.background a[role=button] {
background-color: var(--nav-background); background-color: var(--nav-background);
color: black; color: black;
display: inline;
} }
a { a {

View File

@ -71,6 +71,12 @@
"storeFirefoxAddons": { "storeFirefoxAddons": {
"other": "Get it from the Firefox Addons" "other": "Get it from the Firefox Addons"
}, },
"disclaimerSnapcraft": {
"other": "The Snapcraft logo is licensed under [CC BY-ND 2.0 UK](https://creativecommons.org/licenses/by-nd/2.0/uk/legalcode), a registered trademark of Canonical Limited, 2018."
},
"disclaimerFirefox": {
"other": "The Firefox logo is a trademark of the Mozilla Foundation in the U.S. and other countries."
},
"websiteSource": { "websiteSource": {
"other": "Website source code" "other": "Website source code"
}, },

View File

@ -71,6 +71,12 @@
"storeFirefoxAddons": { "storeFirefoxAddons": {
"other": "Installer depuis Firefox Addons" "other": "Installer depuis Firefox Addons"
}, },
"disclaimerSnapcraft": {
"other": "Le logo Snapcraft est sous licence [CC BY-ND 2.0 UK](https://creativecommons.org/licenses/by-nd/2.0/uk/legalcode), une marque déposée de Canonical Limited, 2018."
},
"disclaimerFirefox": {
"other": "Le logo Firefox est une marque déposée de la Fondation Mozilla aux États-Unis et dans d'autres pays."
},
"websiteSource": { "websiteSource": {
"other": "Code source du site" "other": "Code source du site"
}, },

View File

@ -3,6 +3,9 @@
{{ $appindex := .Params.SectionHeader.AppIndex }} {{ $appindex := .Params.SectionHeader.AppIndex }}
{{ $data := index .Site.Data $lang }} {{ $data := index .Site.Data $lang }}
{{ $appdata := index $data.apps $appindex }} {{ $appdata := index $data.apps $appindex }}
{{ $disclaimers := newScratch }}
{{ $disclaimers.Set "snapcraft" false }}
{{ $disclaimers.Set "firefox" false }}
<html lang="{{ $lang }}"> <html lang="{{ $lang }}">
{{- partial "head.html" . -}} {{- partial "head.html" . -}}
@ -116,24 +119,26 @@
<div> <div>
<h3>{{ .Title }}</h3> <h3>{{ .Title }}</h3>
{{ if hasPrefix .Title "Flatpak" }} {{ if hasPrefix .Title "Flatpak" }}
<a href="https://flathub.org/apps/details/{{ .Index }}" class="padding-container-1"> <a href="https://flathub.org/apps/details/{{ .Index }}">
<img src="/img/badges/{{ $lang }}/flathub.svg" alt="{{ i18n "storeFlathub" }}"></img> {{ partial "badge.html" (dict "Icon" "flathub" "Lang" $lang "Alt" "storeFlathub" ) }}
</a> </a>
<br><br>{{ i18n "warnExternalWebsite" "flathub.org" }} <br><br>{{ i18n "warnExternalWebsite" "flathub.org" }}
{{ else if hasPrefix .Title "Snap" }} {{ else if hasPrefix .Title "Snap" }}
<a href="https://snapcraft.io/{{ .Index }}" class="padding-container-1"> {{ $disclaimers.Set "snapcraft" true }}
<img src="/img/badges/{{ $lang }}/snapcraft.svg" alt="{{ i18n "storeSnapcraft" }}"></img> <a href="https://snapcraft.io/{{ .Index }}">
</a> {{ partial "badge.html" (dict "Icon" "snapcraft" "Lang" $lang "Alt" "storeSnapcraft" ) }}
<br><br>{{ i18n "warnExternalWebsite" "snapcraft.io" }} </a>
<br><br>{{ i18n "warnExternalWebsite" "snapcraft.io" }}
{{ else if hasPrefix .Title "Firefox" }} {{ else if hasPrefix .Title "Firefox" }}
<a href="https://addons.mozilla.org/en-US/firefox/addon/{{ .Index }}/" class="padding-container-1"> {{ $disclaimers.Set "firefox" true }}
<img src="/img/badges/{{ $lang }}/amo.svg" alt="{{ i18n "storeFirefoxAddons" }}"></img> <a href="https://addons.mozilla.org/en-US/firefox/addon/{{ .Index }}/">
</a> {{ partial "badge.html" (dict "Icon" "amo" "Lang" $lang "Alt" "storeFirefoxAddons" ) }}
<br><br>{{ i18n "warnExternalWebsite" "addons.mozilla.org" }} </a>
<br><br>{{ i18n "warnExternalWebsite" "addons.mozilla.org" }}
{{ else }} {{ else }}
{{ i18n "file" }} {{ replace .Name "<version>" $appdata.version }}<br> {{ i18n "file" }} {{ replace .Name "<version>" $appdata.version }}<br>
<div class="primary center fit-content" role="button"> <div class="primary center fit-content" role="button">
<a href="https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/{{ $appindex }}/v{{ $appdata.version }}/{{ replace .File "<version>" $appdata.version }}" role="button"> <a href="https://artifacts.accountfree.org/repository/apps.ad5001.eu-apps/{{ $appindex }}/v{{ $appdata.version }}/{{ replace .File "<version>" $appdata.version }}">
<i class="icon-download icon-as-text" alt=""></i>{{ i18n "download" }} <i class="icon-download icon-as-text" alt=""></i>{{ i18n "download" }}
</a> </a>
</div> </div>
@ -146,6 +151,13 @@
{{ end }} {{ end }}
</div> </div>
<p>{{ .Params.Download.Footnote | markdownify }} </p> <p>{{ .Params.Download.Footnote | markdownify }} </p>
<!-- Disclaimers -->
{{ if ($disclaimers.Get "snapcraft") }}
<p>{{ i18n "disclaimerSnapcraft" | markdownify }}</p>
{{ end }}
{{ if ($disclaimers.Get "firefox") }}
<p>{{ i18n "disclaimerFirefox" | markdownify }}</p>
{{ end }}
</section> </section>
{{ end }} {{ end }}
</div> </div>

View File

@ -25,6 +25,7 @@
</div> </div>
</section> </section>
<section class="section-skewed"> <section class="section-skewed">
<br>
<h1 class="text-center">Software commitments</h1> <h1 class="text-center">Software commitments</h1>
<div class="columns-container padding-container-3" > <div class="columns-container padding-container-3" >
<div class="column col3 vertical-center padding-container"> <div class="column col3 vertical-center padding-container">

View File

@ -0,0 +1,2 @@
<img src="/img/badges/{{ .Lang }}/{{ .Icon }}.svg" alt="{{ i18n .Alt }}" class="badge center" loading=lazy/>

View File

@ -2,12 +2,13 @@
<title>{{ .Site.Title }} - {{ .Title }}</title> <title>{{ .Site.Title }} - {{ .Title }}</title>
<link rel="preload" as="font" crossOrigin="anonymous" href="/fonts/metropolis/Metropolis-Regular.otf"> <link rel="preload" as="font" crossOrigin="anonymous" href="/fonts/metropolis/Metropolis-Regular.otf">
<link rel="preload" as="font" crossOrigin="anonymous" href="/fonts/metropolis/Metropolis-Light.otf"> <link rel="preload" as="font" crossOrigin="anonymous" href="/fonts/metropolis/Metropolis-Light.otf">
<link rel="preload" as="font" crossOrigin="anonymous" href="/fonts/metropolis/Metropolis-Bold.otf">
<link rel="preload" as="font" crossOrigin="anonymous" href="/fonts/omegicons/omegicons.woff2?54316140"> <link rel="preload" as="font" crossOrigin="anonymous" href="/fonts/omegicons/omegicons.woff2?54316140">
<link rel="preload" as="font" crossOrigin="anonymous" href="/fonts/omegicons/omegicons.ttf?54316140"> <link rel="preload" as="font" crossOrigin="anonymous" href="/fonts/omegicons/omegicons.ttf?54316140">
{{ $mainstyle := resources.Get "/scss/main.scss" | toCSS | minify | fingerprint }} {{ $mainstyle := resources.Get "/scss/main.scss" | toCSS | minify }}
<link rel="preload" href="{{ $mainstyle.Permalink }}" as="style" onload="this.rel='stylesheet'"> <link rel="preload" href="{{ $mainstyle.Permalink }}" as="style" onload="this.rel='stylesheet'">
{{ if .Site.Params.includeAppsStyle }} {{ if .Site.Params.includeAppsStyle }}
{{ $appsstyle := resources.Get "/scss/apps.scss" | toCSS | minify | fingerprint }} {{ $appsstyle := resources.Get "/scss/apps.scss" | toCSS | minify }}
<link rel="preload" href="{{ $appsstyle.Permalink }}" as="style" onload="this.rel='stylesheet'"> <link rel="preload" href="{{ $appsstyle.Permalink }}" as="style" onload="this.rel='stylesheet'">
{{ end }} {{ end }}
<link rel="icon" href="/img/icon.png"> <link rel="icon" href="/img/icon.png">
@ -19,6 +20,6 @@
<link rel="alternate" hreflang="{{ .Language.Lang }}" href="{{ .Permalink }}" title="{{ .Language.LanguageName }}"> <link rel="alternate" hreflang="{{ .Language.Lang }}" href="{{ .Permalink }}" title="{{ .Language.LanguageName }}">
{{ end }} {{ end }}
{{ end }} {{ end }}
{{ $mainjs := resources.Get "/js/main.js" | minify | fingerprint }} {{ $mainjs := resources.Get "/js/main.js" | minify }}
<script src="{{ $mainjs.Permalink }}"></script> <script src="{{ $mainjs.Permalink }}"></script>
</head> </head>

View File

@ -54,8 +54,7 @@
{{ range .Translations }} {{ range .Translations }}
<li class="background"> <li class="background">
<a href="{{ .Permalink }}" role="button"> <a href="{{ .Permalink }}" role="button">
<img src="/icons/flag/{{ .Language.Lang }}.svg" class="icon-as-text"/> <img src="/icons/flag/{{ .Language.Lang }}.svg" class="icon-as-text"/>{{ .Language.LanguageName }}
{{ .Language.LanguageName }}
</a> </a>
</li> </li>
{{ end }} {{ end }}

View File

@ -0,0 +1 @@
{{ partial "badge.html" (dict "Icon" (.Get 0) "Lang" (.Get 1) "Alt" (.Get 2) ) }}

View File

@ -0,0 +1,19 @@
<div class="columns-container fill-width">
<div class="col2 column text-center">
<h3>{{ i18n "en" }}</h3>
{{ partial "badge.html" (dict "Icon" (.Get 0) "Lang" "en" "Alt" (.Get 1) ) }}
<br>
<div class="center fit-content">
<div class="code">&lt;img source="https://ad5001.eu/img/badges/en/{{ .Get 0 }}.svg" class="badge"/&gt;</div>
</div>
</div>
<div class="col2 column text-center">
<h3>{{ i18n "fr" }}</h3>
{{ partial "badge.html" (dict "Icon" (.Get 0) "Lang" "fr" "Alt" (.Get 1) ) }}
<br>
<div class="center fit-content">
<div class="code">&lt;img source="https://ad5001.eu/img/badges/fr/{{ .Get 0 }}.svg" class="badge"/&gt;</div>
</div>
</div>
</div>

View File

@ -0,0 +1 @@
{{ partial "section1.html" (dict "Image" (.Get 0) "Content" (.Inner | markdownify) ) }}

View File

@ -0,0 +1,4 @@
<section class="section-skewed padding-container-3" style="background: {{ .Get 1 | safeCSS }}; background: linear-gradient(170deg, {{ .Get 1 | safeCSS }} 0%, {{ .Get 0 | safeCSS }} 49%, {{ .Get 1 | safeCSS }} 100%);">
{{ .Inner | markdownify }}
</section>

29
static/css/badge.css Normal file
View File

@ -0,0 +1,29 @@
/**
* Omegamma - Hugo theme for ad5001.eu and related websites.
* Copyright (C) 2021 Ad5001
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
.badge {
width: Min(300px, calc(100% - 2em));
box-shadow: 0px 0px 0px 0px #000000;
transition: box-shadow 0.15s ease-in-out, filter 0.15s ease-in-out;
border-radius: 0.5em;
filter: brightness(100%);
}
.badge::hover {
box-shadow: 0px 0px 8px 0px #000000;
filter: brightness(90%);
}

View File

@ -0,0 +1,82 @@
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="SVGRoot" width="24px" height="24px" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="a-3-6" x1="69.972" x2="8.7174" y1="12.2" y2="73.257" gradientTransform="scale(.98394 1.0163)" gradientUnits="userSpaceOnUse">
<stop stop-color="#fff44f" offset=".05"/>
<stop stop-color="#ff980e" offset=".37"/>
<stop stop-color="#ff3647" offset=".53"/>
<stop stop-color="#e31587" offset=".7"/>
</linearGradient>
<radialGradient id="b-5-2" cx="62.187" cy="9.8704" r="89.357" gradientTransform="scale(1.109 .90173)" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffbd4f" offset=".13"/>
<stop stop-color="#ff980e" offset=".28"/>
<stop stop-color="#ff3750" offset=".47"/>
<stop stop-color="#eb0878" offset=".78"/>
<stop stop-color="#e50080" offset=".86"/>
</radialGradient>
<radialGradient id="c-7-4" cx="35.379" cy="46.8" r="89.357" gradientTransform="scale(1.109 .90173)" gradientUnits="userSpaceOnUse">
<stop stop-color="#960e18" offset=".3"/>
<stop stop-color="#b11927" stop-opacity=".74" offset=".35"/>
<stop stop-color="#db293d" stop-opacity=".34" offset=".43"/>
<stop stop-color="#f5334b" stop-opacity=".09" offset=".5"/>
<stop stop-color="#ff3750" stop-opacity="0" offset=".53"/>
</radialGradient>
<radialGradient id="d-6-3" cx="62.101" cy="-2.8991" r="33.903" gradientTransform="scale(.76744 1.303)" gradientUnits="userSpaceOnUse">
<stop stop-color="#fff44f" offset=".13"/>
<stop stop-color="#ff980e" offset=".53"/>
</radialGradient>
<radialGradient id="e-1-5" cx="31.922" cy="60.196" r="36.045" gradientTransform="scale(.95513 1.047)" gradientUnits="userSpaceOnUse">
<stop stop-color="#3a8ee6" offset=".35"/>
<stop stop-color="#9059ff" offset=".67"/>
<stop stop-color="#c139e6" offset="1"/>
</radialGradient>
<radialGradient id="f-2-7" cx="42.462" cy="32.402" r="21.267" gradientTransform="scale(.95513 1.047)" gradientUnits="userSpaceOnUse">
<stop stop-color="#9059ff" stop-opacity="0" offset=".21"/>
<stop stop-color="#6e008b" stop-opacity=".6" offset=".97"/>
</radialGradient>
<radialGradient id="g-3-3" cx="37.516" cy="5.935" r="27.421" gradientTransform="scale(.99815 1.0019)" gradientUnits="userSpaceOnUse">
<stop stop-color="#ffe226" offset=".1"/>
<stop stop-color="#ff7139" offset=".79"/>
</radialGradient>
<radialGradient id="h-9-8" cx="57.203" cy="-13.152" r="119.7" gradientTransform="scale(1.0914 .91627)" gradientUnits="userSpaceOnUse">
<stop stop-color="#fff44f" offset=".11"/>
<stop stop-color="#ff980e" offset=".46"/>
<stop stop-color="#ff3647" offset=".72"/>
<stop stop-color="#e31587" offset=".9"/>
</radialGradient>
<radialGradient id="i-7-3" cx="74.836" cy="-6.7048" r="125.79" gradientTransform="scale(.68814 1.4532)" gradientUnits="userSpaceOnUse">
<stop stop-color="#fff44f" offset="0"/>
<stop stop-color="#ff980e" offset=".3"/>
<stop stop-color="#ff3647" offset=".57"/>
<stop stop-color="#e31587" offset=".74"/>
</radialGradient>
<radialGradient id="j-9-0" cx="37.373" cy="16.031" r="74.328" gradientTransform="scale(1.0095 .9906)" gradientUnits="userSpaceOnUse">
<stop stop-color="#fff44f" offset=".14"/>
<stop stop-color="#ff980e" offset=".48"/>
<stop stop-color="#ff3647" offset=".66"/>
<stop stop-color="#e31587" offset=".9"/>
</radialGradient>
<radialGradient id="k-7-6" cx="54.134" cy="21.246" r="85.336" gradientTransform="scale(1.0567 .94632)" gradientUnits="userSpaceOnUse">
<stop stop-color="#fff44f" offset=".09"/>
<stop stop-color="#ff980e" offset=".63"/>
</radialGradient>
<linearGradient id="l-5-9" x1="64.267" x2="15.484" y1="11.02" y2="66.097" gradientTransform="scale(.98394 1.0163)" gradientUnits="userSpaceOnUse">
<stop stop-color="#fff44f" stop-opacity=".8" offset=".17"/>
<stop stop-color="#fff44f" stop-opacity="0" offset=".6"/>
</linearGradient>
</defs>
<g transform="matrix(.30012 0 0 .30012 -.0051611 -.0012262)">
<path d="m75.916 26.831c-1.684-4.052-5.1-8.427-7.775-9.81a40.266 40.266 0 0 1 3.925 11.764l7e-3 0.065c-4.382-10.925-11.813-15.33-17.882-24.922a47.099 47.099 0 0 1-0.913-1.484 12.24 12.24 0 0 1-0.427-0.8 7.053 7.053 0 0 1-0.578-1.535 0.1 0.1 0 0 0-0.088-0.1 0.138 0.138 0 0 0-0.073 0c-5e-3 0-0.013 9e-3 -0.019 0.011s-0.019 0.011-0.028 0.015l0.015-0.026c-9.735 5.7-13.038 16.252-13.342 21.53a19.387 19.387 0 0 0-10.666 4.111 11.587 11.587 0 0 0-1-0.758 17.968 17.968 0 0 1-0.109-9.473 28.705 28.705 0 0 0-9.329 7.21h-0.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294 0.687 28.225 28.225 0 0 0-3.788 3.245 33.845 33.845 0 0 0-3.623 4.347v6e-3 -7e-3a32.733 32.733 0 0 0-5.2 11.743l-0.052 0.256a61.89 61.89 0 0 0-0.381 2.42c0 0.029-6e-3 0.056-9e-3 0.085a36.937 36.937 0 0 0-0.629 5.343v0.2a38.759 38.759 0 0 0 76.954 6.554c0.065-0.5 0.118-0.995 0.176-1.5a39.857 39.857 0 0 0-2.514-19.469zm-44.67 30.338c0.181 0.087 0.351 0.181 0.537 0.264l0.027 0.017q-0.282-0.135-0.564-0.281zm8.878-23.376m31.952-4.934v-0.037l7e-3 0.041z" fill="url(#a-3-6)"/>
<path d="m75.916 26.831c-1.684-4.052-5.1-8.427-7.775-9.81a40.266 40.266 0 0 1 3.925 11.764v0.037l7e-3 0.041a35.1 35.1 0 0 1-1.206 26.158c-4.442 9.531-15.194 19.3-32.024 18.825-18.185-0.515-34.2-14.009-37.194-31.683-0.545-2.787 0-4.2 0.274-6.465a28.876 28.876 0 0 0-0.623 5.348v0.2a38.759 38.759 0 0 0 76.954 6.554c0.065-0.5 0.118-0.995 0.176-1.5a39.857 39.857 0 0 0-2.514-19.469z" fill="url(#b-5-2)"/>
<path d="m75.916 26.831c-1.684-4.052-5.1-8.427-7.775-9.81a40.266 40.266 0 0 1 3.925 11.764v0.037l7e-3 0.041a35.1 35.1 0 0 1-1.206 26.158c-4.442 9.531-15.194 19.3-32.024 18.825-18.185-0.515-34.2-14.009-37.194-31.683-0.545-2.787 0-4.2 0.274-6.465a28.876 28.876 0 0 0-0.623 5.348v0.2a38.759 38.759 0 0 0 76.954 6.554c0.065-0.5 0.118-0.995 0.176-1.5a39.857 39.857 0 0 0-2.514-19.469z" fill="url(#c-7-4)"/>
<path d="m57.082 31.387c0.084 0.059 0.162 0.118 0.241 0.177a21.1 21.1 0 0 0-3.6-4.695c-12.046-12.048-3.157-26.123-1.658-26.838l0.015-0.022c-9.735 5.7-13.038 16.252-13.342 21.53 0.452-0.031 0.9-0.069 1.362-0.069a19.56 19.56 0 0 1 16.982 9.917z" fill="url(#d-6-3)"/>
<path d="m40.125 33.793c-0.064 0.964-3.47 4.289-4.661 4.289-11.021 0-12.81 6.667-12.81 6.667 0.488 5.614 4.4 10.238 9.129 12.684a13.44 13.44 0 0 0 0.654 0.312q0.569 0.252 1.138 0.466a17.235 17.235 0 0 0 5.043 0.973c19.317 0.906 23.059-23.1 9.119-30.066a13.38 13.38 0 0 1 9.345 2.269 19.56 19.56 0 0 0-16.982-9.917c-0.46 0-0.91 0.038-1.362 0.069a19.387 19.387 0 0 0-10.666 4.111c0.591 0.5 1.258 1.168 2.663 2.553 2.63 2.591 9.375 5.275 9.39 5.59z" fill="url(#e-1-5)"/>
<path d="m40.125 33.793c-0.064 0.964-3.47 4.289-4.661 4.289-11.021 0-12.81 6.667-12.81 6.667 0.488 5.614 4.4 10.238 9.129 12.684a13.44 13.44 0 0 0 0.654 0.312q0.569 0.252 1.138 0.466a17.235 17.235 0 0 0 5.043 0.973c19.317 0.906 23.059-23.1 9.119-30.066a13.38 13.38 0 0 1 9.345 2.269 19.56 19.56 0 0 0-16.982-9.917c-0.46 0-0.91 0.038-1.362 0.069a19.387 19.387 0 0 0-10.666 4.111c0.591 0.5 1.258 1.168 2.663 2.553 2.63 2.591 9.375 5.275 9.39 5.59z" fill="url(#f-2-7)"/>
<path d="m26.265 24.361a24.874 24.874 0 0 1 0.8 0.531 17.968 17.968 0 0 1-0.109-9.473 28.705 28.705 0 0 0-9.329 7.21c0.189-5e-3 5.811-0.106 8.638 1.732z" fill="url(#g-3-3)"/>
<path d="m1.654 42.163c2.991 17.674 19.009 31.168 37.194 31.683 16.83 0.476 27.582-9.294 32.024-18.825a35.1 35.1 0 0 0 1.206-26.158v-0.037c0-0.029-6e-3 -0.046 0-0.037l7e-3 0.065c1.375 8.977-3.191 17.674-10.329 23.555l-0.022 0.05c-13.908 11.327-27.218 6.834-29.912 5q-0.282-0.135-0.564-0.281c-8.109-3.876-11.459-11.264-10.741-17.6a9.953 9.953 0 0 1-9.181-5.775 14.618 14.618 0 0 1 14.249-0.572 19.3 19.3 0 0 0 14.552 0.572c-0.015-0.315-6.76-3-9.39-5.59-1.405-1.385-2.072-2.052-2.663-2.553a11.587 11.587 0 0 0-1-0.758 54.245 54.245 0 0 0-0.8-0.531c-2.827-1.838-8.449-1.737-8.635-1.732h-0.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294 0.687 28.225 28.225 0 0 0-3.788 3.245 33.845 33.845 0 0 0-3.638 4.337v6e-3 -7e-3a32.733 32.733 0 0 0-5.2 11.743c-0.019 0.079-1.396 6.099-0.717 9.221z" fill="url(#h-9-8)"/>
<path d="m53.725 26.869a21.1 21.1 0 0 1 3.6 4.7 8.083 8.083 0 0 1 0.581 0.476c8.787 8.1 4.183 19.55 3.84 20.365 7.138-5.881 11.7-14.578 10.329-23.555-4.384-10.93-11.815-15.335-17.884-24.927a47.099 47.099 0 0 1-0.913-1.484 12.24 12.24 0 0 1-0.427-0.8 7.053 7.053 0 0 1-0.578-1.535 0.1 0.1 0 0 0-0.088-0.1 0.138 0.138 0 0 0-0.073 0c-5e-3 0-0.013 9e-3 -0.019 0.011s-0.019 0.011-0.028 0.015c-1.499 0.711-10.388 14.786 1.66 26.834z" fill="url(#i-7-3)"/>
<path d="m57.9 32.04a8.083 8.083 0 0 0-0.581-0.476c-0.079-0.059-0.157-0.118-0.241-0.177a13.38 13.38 0 0 0-9.345-2.269c13.94 6.97 10.2 30.972-9.119 30.066a17.235 17.235 0 0 1-5.043-0.973q-0.569-0.213-1.138-0.466a14.44 14.44 0 0 1-0.654-0.312l0.027 0.017c2.694 1.839 16 6.332 29.912-5l0.022-0.05c0.347-0.81 4.951-12.263-3.84-20.36z" fill="url(#j-9-0)"/>
<path d="m22.654 44.749s1.789-6.667 12.81-6.667c1.191 0 4.6-3.325 4.661-4.289a19.3 19.3 0 0 1-14.552-0.572 14.618 14.618 0 0 0-14.249 0.572 9.953 9.953 0 0 0 9.181 5.775c-0.718 6.337 2.632 13.725 10.741 17.6 0.181 0.087 0.351 0.181 0.537 0.264-4.733-2.445-8.641-7.069-9.129-12.683z" fill="url(#k-7-6)"/>
<path d="m75.916 26.831c-1.684-4.052-5.1-8.427-7.775-9.81a40.266 40.266 0 0 1 3.925 11.764l7e-3 0.065c-4.382-10.925-11.813-15.33-17.882-24.922a47.099 47.099 0 0 1-0.913-1.484 12.24 12.24 0 0 1-0.427-0.8 7.053 7.053 0 0 1-0.578-1.535 0.1 0.1 0 0 0-0.088-0.1 0.138 0.138 0 0 0-0.073 0c-5e-3 0-0.013 9e-3 -0.019 0.011s-0.019 0.011-0.028 0.015l0.015-0.026c-9.735 5.7-13.038 16.252-13.342 21.53 0.452-0.031 0.9-0.069 1.362-0.069a19.56 19.56 0 0 1 16.982 9.917 13.38 13.38 0 0 0-9.345-2.269c13.94 6.97 10.2 30.972-9.119 30.066a17.235 17.235 0 0 1-5.043-0.973q-0.569-0.213-1.138-0.466a14.44 14.44 0 0 1-0.654-0.312l0.027 0.017q-0.282-0.135-0.564-0.281c0.181 0.087 0.351 0.181 0.537 0.264-4.733-2.446-8.641-7.07-9.129-12.684 0 0 1.789-6.667 12.81-6.667 1.191 0 4.6-3.325 4.661-4.289-0.015-0.315-6.76-3-9.39-5.59-1.405-1.385-2.072-2.052-2.663-2.553a11.587 11.587 0 0 0-1-0.758 17.968 17.968 0 0 1-0.109-9.473 28.705 28.705 0 0 0-9.329 7.21h-0.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294 0.687 28.225 28.225 0 0 0-3.788 3.245 33.845 33.845 0 0 0-3.623 4.347v6e-3 -7e-3a32.733 32.733 0 0 0-5.2 11.743l-0.052 0.256c-0.073 0.341-0.4 2.073-0.447 2.445v0a45.094 45.094 0 0 0-0.572 5.403v0.2a38.759 38.759 0 0 0 76.954 6.554c0.065-0.5 0.118-0.995 0.176-1.5a39.857 39.857 0 0 0-2.514-19.469zm-3.845 1.991 7e-3 0.041z" fill="url(#l-5-9)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,25 @@
<svg width="24" height="24" version="1.0" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(.16492 0 0 .16492 -129.17 -133.18)" shape-rendering="auto" stroke-linecap="square">
<path d="m856.01 830.23-66.764 43.449v34.94l33.382 21.723 33.379-21.723v-5e-3l3e-3 3e-3 33.382 21.726 33.379-21.723v-34.94z" color="#000000" color-rendering="auto" fill="#204a87" image-rendering="auto" solid-color="#000000" stroke="#204a87" stroke-width="12" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<g stroke-linejoin="round" stroke-width=".75574">
<g transform="matrix(.50222 0 0 .50637 429.63 432.9)">
<rect transform="matrix(.84019 .54229 -.84019 .54229 0 0)" x="1289.9" y="279.43" width="79.11" height="79.11" rx="0" ry="0" color="#000000" color-rendering="auto" image-rendering="auto" solid-color="#000000" stroke="#000" stroke-width="3.1667" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<rect transform="matrix(.84019 .54229 -.84019 .54229 0 0)" x="1226.3" y="215.81" width="79.11" height="79.11" rx="0" ry="0" color="#000000" color-rendering="auto" fill="#fff" image-rendering="auto" solid-color="#000000" stroke="#204a87" stroke-width="3.1667" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<path d="m915.47 824.93-5e-5 69-66.468 42.901 5e-5 -69z" color="#000000" color-rendering="auto" image-rendering="auto" solid-color="#000000" stroke="#000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<path d="m783 824.93 5e-5 69 66.468 42.901-5e-5 -69z" color="#000000" color-rendering="auto" fill="#fff" image-rendering="auto" solid-color="#000000" stroke="#000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
</g>
<g transform="matrix(.50222 0 0 .50637 463.01 454.63)" stroke="#204a87">
<rect transform="matrix(.84019 .54229 -.84019 .54229 0 0)" x="1289.9" y="279.43" width="79.11" height="79.11" rx="0" ry="0" color="#000000" color-rendering="auto" fill="#204a87" image-rendering="auto" solid-color="#000000" stroke-width="3.1667" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<rect transform="matrix(.84019 .54229 -.84019 .54229 0 0)" x="1226.3" y="215.81" width="79.11" height="79.11" rx="0" ry="0" color="#000000" color-rendering="auto" fill="#fff" image-rendering="auto" solid-color="#000000" stroke-width="3.1667" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<path d="m915.47 824.93-5e-5 69-66.468 42.901 5e-5 -69z" color="#000000" color-rendering="auto" fill="#204a87" image-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<path d="m783 824.93 5e-5 69 66.468 42.901-5e-5 -69z" color="#000000" color-rendering="auto" fill="#fff" image-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
</g>
<g transform="matrix(.50222 0 0 .50637 396.25 454.63)" stroke="#204a87">
<rect transform="matrix(.84019 .54229 -.84019 .54229 0 0)" x="1289.9" y="279.43" width="79.11" height="79.11" rx="0" ry="0" color="#000000" color-rendering="auto" image-rendering="auto" solid-color="#000000" stroke-width="3.1667" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<rect transform="matrix(.84019 .54229 -.84019 .54229 0 0)" x="1226.3" y="215.81" width="79.11" height="79.11" rx="0" ry="0" color="#000000" color-rendering="auto" fill="#fff" image-rendering="auto" solid-color="#000000" stroke-width="3.1667" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<path d="m915.47 824.93-5e-5 69-66.468 42.901 5e-5 -69z" color="#000000" color-rendering="auto" fill="#204a87" image-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<path d="m783 824.93 5e-5 69 66.468 42.901-5e-5 -69z" color="#000000" color-rendering="auto" fill="#fff" image-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
id="SVGRoot"
width="24px"
height="24px"
version="1.1"
viewBox="0 0 24 24"
sodipodi:docname="snapcraft.svg"
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs9" />
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="true"
inkscape:zoom="16.708333"
inkscape:cx="-4.0399002"
inkscape:cy="6.4937656"
inkscape:current-layer="SVGRoot">
<inkscape:grid
type="xygrid"
id="grid124" />
</sodipodi:namedview>
<path
id="body"
class="st1"
d="M 13.798165,13.417431 V 5.7110092 L 19.082569,8.059633 Z M 3.6697247,23.545871 10.201835,11.362385 13.06422,14.224771 Z M 0,0.50000004 13.357798,5.3440367 v 8.5137613 z"
style="stroke-width:0.733945;fill:#82bea0;fill-opacity:1" />
<path
id="head"
class="st2"
d="M 21.798165,5.3440367 H 14.091743 L 24,9.8211009 Z"
fill="#fa6441"
style="stroke-width:0.733945" />
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,984 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="600"
height="200"
version="1.1"
id="svg120"
sodipodi:docname="amo-text.svg"
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview122"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
width="600px"
inkscape:zoom="1.4731392"
inkscape:cx="246.07315"
inkscape:cy="140.17684"
inkscape:current-layer="layer1"
inkscape:lockguides="false"
showguides="false" />
<defs
id="defs92">
<radialGradient
id="b"
cx="62.186608"
cy="9.8704298"
r="89.357415"
gradientTransform="scale(1.1089819,0.90172794)"
fx="62.186608"
fy="9.8704298"
gradientUnits="userSpaceOnUse">
<stop
offset=".13"
stop-color="#ffbd4f"
id="stop2" />
<stop
offset=".28"
stop-color="#ff980e"
id="stop4" />
<stop
offset=".47"
stop-color="#ff3750"
id="stop6" />
<stop
offset=".78"
stop-color="#eb0878"
id="stop8" />
<stop
offset=".86"
stop-color="#e50080"
id="stop10" />
</radialGradient>
<radialGradient
id="c"
cx="35.379383"
cy="46.800175"
r="89.357415"
gradientTransform="scale(1.1089819,0.90172794)"
fx="35.379383"
fy="46.800175"
gradientUnits="userSpaceOnUse">
<stop
offset=".3"
stop-color="#960e18"
id="stop13" />
<stop
offset=".35"
stop-color="#b11927"
stop-opacity=".74"
id="stop15" />
<stop
offset=".43"
stop-color="#db293d"
stop-opacity=".34"
id="stop17" />
<stop
offset=".5"
stop-color="#f5334b"
stop-opacity=".09"
id="stop19" />
<stop
offset=".53"
stop-color="#ff3750"
stop-opacity="0"
id="stop21" />
</radialGradient>
<radialGradient
id="d"
cx="62.100616"
cy="-2.8990997"
r="33.903412"
gradientTransform="scale(0.76744488,1.3030252)"
fx="62.100616"
fy="-2.8990997"
gradientUnits="userSpaceOnUse">
<stop
offset=".13"
stop-color="#fff44f"
id="stop24" />
<stop
offset=".53"
stop-color="#ff980e"
id="stop26" />
</radialGradient>
<radialGradient
id="e"
cx="31.922279"
cy="60.196252"
r="36.045489"
gradientTransform="scale(0.95512645,1.0469818)"
fx="31.922279"
fy="60.196252"
gradientUnits="userSpaceOnUse">
<stop
offset=".35"
stop-color="#3a8ee6"
id="stop29" />
<stop
offset=".67"
stop-color="#9059ff"
id="stop31" />
<stop
offset="1"
stop-color="#c139e6"
id="stop33" />
</radialGradient>
<radialGradient
id="f"
cx="42.461979"
cy="32.401577"
r="21.266837"
gradientTransform="scale(0.95512645,1.0469818)"
fx="42.461979"
fy="32.401577"
gradientUnits="userSpaceOnUse">
<stop
offset=".21"
stop-color="#9059ff"
stop-opacity="0"
id="stop36" />
<stop
offset=".97"
stop-color="#6e008b"
stop-opacity=".6"
id="stop38" />
</radialGradient>
<radialGradient
id="g"
cx="37.516169"
cy="5.9350055"
r="27.420904"
gradientTransform="scale(0.99815093,1.0018525)"
fx="37.516169"
fy="5.9350055"
gradientUnits="userSpaceOnUse">
<stop
offset=".1"
stop-color="#ffe226"
id="stop41" />
<stop
offset=".79"
stop-color="#ff7139"
id="stop43" />
</radialGradient>
<radialGradient
id="h"
cx="57.20315"
cy="-13.152274"
r="119.69982"
gradientTransform="scale(1.091384,0.91626777)"
fx="57.20315"
fy="-13.152274"
gradientUnits="userSpaceOnUse">
<stop
offset=".11"
stop-color="#fff44f"
id="stop46" />
<stop
offset=".46"
stop-color="#ff980e"
id="stop48" />
<stop
offset=".72"
stop-color="#ff3647"
id="stop50" />
<stop
offset=".9"
stop-color="#e31587"
id="stop52" />
</radialGradient>
<radialGradient
id="i"
cx="74.835756"
cy="-6.704823"
r="125.78617"
gradientTransform="scale(0.68813893,1.4531949)"
fx="74.835756"
fy="-6.704823"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#fff44f"
id="stop55" />
<stop
offset=".3"
stop-color="#ff980e"
id="stop57" />
<stop
offset=".57"
stop-color="#ff3647"
id="stop59" />
<stop
offset=".74"
stop-color="#e31587"
id="stop61" />
</radialGradient>
<radialGradient
id="j"
cx="37.372962"
cy="16.030757"
r="74.327898"
gradientTransform="scale(1.0094867,0.99060245)"
fx="37.372962"
fy="16.030757"
gradientUnits="userSpaceOnUse">
<stop
offset=".14"
stop-color="#fff44f"
id="stop64" />
<stop
offset=".48"
stop-color="#ff980e"
id="stop66" />
<stop
offset=".66"
stop-color="#ff3647"
id="stop68" />
<stop
offset=".9"
stop-color="#e31587"
id="stop70" />
</radialGradient>
<radialGradient
id="k"
cx="54.133552"
cy="21.245953"
r="85.335711"
gradientTransform="scale(1.0567198,0.94632469)"
fx="54.133552"
fy="21.245953"
gradientUnits="userSpaceOnUse">
<stop
offset=".09"
stop-color="#fff44f"
id="stop73" />
<stop
offset=".63"
stop-color="#ff980e"
id="stop75" />
</radialGradient>
<linearGradient
id="a"
x1="69.971664"
y1="12.1998"
x2="8.7173734"
y2="73.257384"
gradientTransform="scale(0.98393682,1.0163254)"
gradientUnits="userSpaceOnUse">
<stop
offset=".05"
stop-color="#fff44f"
id="stop78" />
<stop
offset=".37"
stop-color="#ff980e"
id="stop80" />
<stop
offset=".53"
stop-color="#ff3647"
id="stop82" />
<stop
offset=".7"
stop-color="#e31587"
id="stop84" />
</linearGradient>
<linearGradient
id="l"
x1="64.267187"
y1="11.019563"
x2="15.484065"
y2="66.097279"
gradientTransform="scale(0.98393682,1.0163254)"
gradientUnits="userSpaceOnUse">
<stop
offset=".17"
stop-color="#fff44f"
stop-opacity=".8"
id="stop87" />
<stop
offset=".6"
stop-color="#fff44f"
stop-opacity="0"
id="stop89" />
</linearGradient>
<linearGradient
id="a-3"
x1="69.971664"
y1="12.1998"
x2="8.7173738"
y2="73.257385"
gradientTransform="scale(0.98393682,1.0163254)"
gradientUnits="userSpaceOnUse">
<stop
offset=".05"
stop-color="#fff44f"
id="stop78-6" />
<stop
offset=".37"
stop-color="#ff980e"
id="stop80-7" />
<stop
offset=".53"
stop-color="#ff3647"
id="stop82-5" />
<stop
offset=".7"
stop-color="#e31587"
id="stop84-3" />
</linearGradient>
<radialGradient
id="b-5"
cx="62.186607"
cy="9.87043"
r="89.357414"
gradientTransform="scale(1.1089819,0.90172794)"
fx="62.186607"
fy="9.87043"
gradientUnits="userSpaceOnUse">
<stop
offset=".13"
stop-color="#ffbd4f"
id="stop2-6" />
<stop
offset=".28"
stop-color="#ff980e"
id="stop4-2" />
<stop
offset=".47"
stop-color="#ff3750"
id="stop6-9" />
<stop
offset=".78"
stop-color="#eb0878"
id="stop8-1" />
<stop
offset=".86"
stop-color="#e50080"
id="stop10-2" />
</radialGradient>
<radialGradient
id="c-7"
cx="35.379383"
cy="46.800175"
r="89.357414"
gradientTransform="scale(1.1089819,0.90172794)"
fx="35.379383"
fy="46.800175"
gradientUnits="userSpaceOnUse">
<stop
offset=".3"
stop-color="#960e18"
id="stop13-0" />
<stop
offset=".35"
stop-color="#b11927"
stop-opacity=".74"
id="stop15-9" />
<stop
offset=".43"
stop-color="#db293d"
stop-opacity=".34"
id="stop17-3" />
<stop
offset=".5"
stop-color="#f5334b"
stop-opacity=".09"
id="stop19-6" />
<stop
offset=".53"
stop-color="#ff3750"
stop-opacity="0"
id="stop21-0" />
</radialGradient>
<radialGradient
id="d-6"
cx="62.100616"
cy="-2.8990996"
r="33.903412"
gradientTransform="scale(0.76744488,1.3030252)"
fx="62.100616"
fy="-2.8990996"
gradientUnits="userSpaceOnUse">
<stop
offset=".13"
stop-color="#fff44f"
id="stop24-2" />
<stop
offset=".53"
stop-color="#ff980e"
id="stop26-6" />
</radialGradient>
<radialGradient
id="e-1"
cx="31.922279"
cy="60.196251"
r="36.04549"
gradientTransform="scale(0.95512645,1.0469818)"
fx="31.922279"
fy="60.196251"
gradientUnits="userSpaceOnUse">
<stop
offset=".35"
stop-color="#3a8ee6"
id="stop29-8" />
<stop
offset=".67"
stop-color="#9059ff"
id="stop31-7" />
<stop
offset="1"
stop-color="#c139e6"
id="stop33-9" />
</radialGradient>
<radialGradient
id="f-2"
cx="42.461979"
cy="32.401577"
r="21.266836"
gradientTransform="scale(0.95512645,1.0469818)"
fx="42.461979"
fy="32.401577"
gradientUnits="userSpaceOnUse">
<stop
offset=".21"
stop-color="#9059ff"
stop-opacity="0"
id="stop36-0" />
<stop
offset=".97"
stop-color="#6e008b"
stop-opacity=".6"
id="stop38-2" />
</radialGradient>
<radialGradient
id="g-3"
cx="37.516171"
cy="5.9350057"
r="27.420904"
gradientTransform="scale(0.99815093,1.0018525)"
fx="37.516171"
fy="5.9350057"
gradientUnits="userSpaceOnUse">
<stop
offset=".1"
stop-color="#ffe226"
id="stop41-7" />
<stop
offset=".79"
stop-color="#ff7139"
id="stop43-5" />
</radialGradient>
<radialGradient
id="h-9"
cx="57.203152"
cy="-13.152274"
r="119.69982"
gradientTransform="scale(1.091384,0.91626777)"
fx="57.203152"
fy="-13.152274"
gradientUnits="userSpaceOnUse">
<stop
offset=".11"
stop-color="#fff44f"
id="stop46-2" />
<stop
offset=".46"
stop-color="#ff980e"
id="stop48-2" />
<stop
offset=".72"
stop-color="#ff3647"
id="stop50-8" />
<stop
offset=".9"
stop-color="#e31587"
id="stop52-9" />
</radialGradient>
<radialGradient
id="i-7"
cx="74.835754"
cy="-6.704823"
r="125.78617"
gradientTransform="scale(0.68813893,1.4531949)"
fx="74.835754"
fy="-6.704823"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#fff44f"
id="stop55-3" />
<stop
offset=".3"
stop-color="#ff980e"
id="stop57-6" />
<stop
offset=".57"
stop-color="#ff3647"
id="stop59-1" />
<stop
offset=".74"
stop-color="#e31587"
id="stop61-2" />
</radialGradient>
<radialGradient
id="j-9"
cx="37.372963"
cy="16.030758"
r="74.327896"
gradientTransform="scale(1.0094867,0.99060245)"
fx="37.372963"
fy="16.030758"
gradientUnits="userSpaceOnUse">
<stop
offset=".14"
stop-color="#fff44f"
id="stop64-3" />
<stop
offset=".48"
stop-color="#ff980e"
id="stop66-1" />
<stop
offset=".66"
stop-color="#ff3647"
id="stop68-9" />
<stop
offset=".9"
stop-color="#e31587"
id="stop70-4" />
</radialGradient>
<radialGradient
id="k-7"
cx="54.133553"
cy="21.245953"
r="85.335709"
gradientTransform="scale(1.0567198,0.94632469)"
fx="54.133553"
fy="21.245953"
gradientUnits="userSpaceOnUse">
<stop
offset=".09"
stop-color="#fff44f"
id="stop73-8" />
<stop
offset=".63"
stop-color="#ff980e"
id="stop75-4" />
</radialGradient>
<linearGradient
id="l-5"
x1="64.267189"
y1="11.019563"
x2="15.484065"
y2="66.097282"
gradientTransform="scale(0.98393682,1.0163254)"
gradientUnits="userSpaceOnUse">
<stop
offset=".17"
stop-color="#fff44f"
stop-opacity=".8"
id="stop87-0" />
<stop
offset=".6"
stop-color="#fff44f"
stop-opacity="0"
id="stop89-3" />
</linearGradient>
<linearGradient
id="a-3-6"
x1="69.971664"
y1="12.1998"
x2="8.7173738"
y2="73.257385"
gradientTransform="scale(0.98393682,1.0163254)"
gradientUnits="userSpaceOnUse">
<stop
offset=".05"
stop-color="#fff44f"
id="stop78-6-1" />
<stop
offset=".37"
stop-color="#ff980e"
id="stop80-7-0" />
<stop
offset=".53"
stop-color="#ff3647"
id="stop82-5-6" />
<stop
offset=".7"
stop-color="#e31587"
id="stop84-3-3" />
</linearGradient>
<radialGradient
id="b-5-2"
cx="62.186607"
cy="9.87043"
r="89.357414"
gradientTransform="scale(1.1089819,0.90172794)"
fx="62.186607"
fy="9.87043"
gradientUnits="userSpaceOnUse">
<stop
offset=".13"
stop-color="#ffbd4f"
id="stop2-6-0" />
<stop
offset=".28"
stop-color="#ff980e"
id="stop4-2-6" />
<stop
offset=".47"
stop-color="#ff3750"
id="stop6-9-1" />
<stop
offset=".78"
stop-color="#eb0878"
id="stop8-1-5" />
<stop
offset=".86"
stop-color="#e50080"
id="stop10-2-5" />
</radialGradient>
<radialGradient
id="c-7-4"
cx="35.379383"
cy="46.800175"
r="89.357414"
gradientTransform="scale(1.1089819,0.90172794)"
fx="35.379383"
fy="46.800175"
gradientUnits="userSpaceOnUse">
<stop
offset=".3"
stop-color="#960e18"
id="stop13-0-7" />
<stop
offset=".35"
stop-color="#b11927"
stop-opacity=".74"
id="stop15-9-6" />
<stop
offset=".43"
stop-color="#db293d"
stop-opacity=".34"
id="stop17-3-5" />
<stop
offset=".5"
stop-color="#f5334b"
stop-opacity=".09"
id="stop19-6-6" />
<stop
offset=".53"
stop-color="#ff3750"
stop-opacity="0"
id="stop21-0-9" />
</radialGradient>
<radialGradient
id="d-6-3"
cx="62.100616"
cy="-2.8990996"
r="33.903412"
gradientTransform="scale(0.76744488,1.3030252)"
fx="62.100616"
fy="-2.8990996"
gradientUnits="userSpaceOnUse">
<stop
offset=".13"
stop-color="#fff44f"
id="stop24-2-7" />
<stop
offset=".53"
stop-color="#ff980e"
id="stop26-6-4" />
</radialGradient>
<radialGradient
id="e-1-5"
cx="31.922279"
cy="60.196251"
r="36.04549"
gradientTransform="scale(0.95512645,1.0469818)"
fx="31.922279"
fy="60.196251"
gradientUnits="userSpaceOnUse">
<stop
offset=".35"
stop-color="#3a8ee6"
id="stop29-8-2" />
<stop
offset=".67"
stop-color="#9059ff"
id="stop31-7-5" />
<stop
offset="1"
stop-color="#c139e6"
id="stop33-9-4" />
</radialGradient>
<radialGradient
id="f-2-7"
cx="42.461979"
cy="32.401577"
r="21.266836"
gradientTransform="scale(0.95512645,1.0469818)"
fx="42.461979"
fy="32.401577"
gradientUnits="userSpaceOnUse">
<stop
offset=".21"
stop-color="#9059ff"
stop-opacity="0"
id="stop36-0-4" />
<stop
offset=".97"
stop-color="#6e008b"
stop-opacity=".6"
id="stop38-2-4" />
</radialGradient>
<radialGradient
id="g-3-3"
cx="37.516171"
cy="5.9350057"
r="27.420904"
gradientTransform="scale(0.99815093,1.0018525)"
fx="37.516171"
fy="5.9350057"
gradientUnits="userSpaceOnUse">
<stop
offset=".1"
stop-color="#ffe226"
id="stop41-7-0" />
<stop
offset=".79"
stop-color="#ff7139"
id="stop43-5-7" />
</radialGradient>
<radialGradient
id="h-9-8"
cx="57.203152"
cy="-13.152274"
r="119.69982"
gradientTransform="scale(1.091384,0.91626777)"
fx="57.203152"
fy="-13.152274"
gradientUnits="userSpaceOnUse">
<stop
offset=".11"
stop-color="#fff44f"
id="stop46-2-6" />
<stop
offset=".46"
stop-color="#ff980e"
id="stop48-2-8" />
<stop
offset=".72"
stop-color="#ff3647"
id="stop50-8-8" />
<stop
offset=".9"
stop-color="#e31587"
id="stop52-9-4" />
</radialGradient>
<radialGradient
id="i-7-3"
cx="74.835754"
cy="-6.704823"
r="125.78617"
gradientTransform="scale(0.68813893,1.4531949)"
fx="74.835754"
fy="-6.704823"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#fff44f"
id="stop55-3-1" />
<stop
offset=".3"
stop-color="#ff980e"
id="stop57-6-4" />
<stop
offset=".57"
stop-color="#ff3647"
id="stop59-1-9" />
<stop
offset=".74"
stop-color="#e31587"
id="stop61-2-2" />
</radialGradient>
<radialGradient
id="j-9-0"
cx="37.372963"
cy="16.030758"
r="74.327896"
gradientTransform="scale(1.0094867,0.99060245)"
fx="37.372963"
fy="16.030758"
gradientUnits="userSpaceOnUse">
<stop
offset=".14"
stop-color="#fff44f"
id="stop64-3-6" />
<stop
offset=".48"
stop-color="#ff980e"
id="stop66-1-8" />
<stop
offset=".66"
stop-color="#ff3647"
id="stop68-9-9" />
<stop
offset=".9"
stop-color="#e31587"
id="stop70-4-2" />
</radialGradient>
<radialGradient
id="k-7-6"
cx="54.133553"
cy="21.245953"
r="85.335709"
gradientTransform="scale(1.0567198,0.94632469)"
fx="54.133553"
fy="21.245953"
gradientUnits="userSpaceOnUse">
<stop
offset=".09"
stop-color="#fff44f"
id="stop73-8-6" />
<stop
offset=".63"
stop-color="#ff980e"
id="stop75-4-4" />
</radialGradient>
<linearGradient
id="l-5-9"
x1="64.267189"
y1="11.019563"
x2="15.484065"
y2="66.097282"
gradientTransform="scale(0.98393682,1.0163254)"
gradientUnits="userSpaceOnUse">
<stop
offset=".17"
stop-color="#fff44f"
stop-opacity=".8"
id="stop87-0-5" />
<stop
offset=".6"
stop-color="#fff44f"
stop-opacity="0"
id="stop89-3-0" />
</linearGradient>
</defs>
<g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="background">
<rect
style="fill:#20123a;fill-opacity:1;stroke-width:0;stroke-linejoin:round"
id="rect62650"
width="600"
height="200"
x="0"
y="0"
ry="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Layer">
<g
id="g3094"
transform="matrix(1.6256711,0,0,1.6256711,32.886628,34.993358)">
<path
d="m 75.916,26.831 c -1.684,-4.052 -5.1,-8.427 -7.775,-9.81 a 40.266,40.266 0 0 1 3.925,11.764 l 0.007,0.065 C 67.691,17.925 60.26,13.52 54.191,3.928 a 47.099,47.099 0 0 1 -0.913,-1.484 12.24,12.24 0 0 1 -0.427,-0.8 7.053,7.053 0 0 1 -0.578,-1.535 0.1,0.1 0 0 0 -0.088,-0.1 0.138,0.138 0 0 0 -0.073,0 c -0.005,0 -0.013,0.009 -0.019,0.011 -0.006,0.002 -0.019,0.011 -0.028,0.015 L 52.08,0.009 c -9.735,5.7 -13.038,16.252 -13.342,21.53 a 19.387,19.387 0 0 0 -10.666,4.111 11.587,11.587 0 0 0 -1,-0.758 17.968,17.968 0 0 1 -0.109,-9.473 28.705,28.705 0 0 0 -9.329,7.21 h -0.018 c -1.536,-1.947 -1.428,-8.367 -1.34,-9.708 a 6.928,6.928 0 0 0 -1.294,0.687 28.225,28.225 0 0 0 -3.788,3.245 33.845,33.845 0 0 0 -3.623,4.347 v 0.006 -0.007 a 32.733,32.733 0 0 0 -5.2,11.743 l -0.052,0.256 a 61.89,61.89 0 0 0 -0.381,2.42 c 0,0.029 -0.006,0.056 -0.009,0.085 A 36.937,36.937 0 0 0 1.3,41.046 v 0.2 A 38.759,38.759 0 0 0 78.254,47.8 c 0.065,-0.5 0.118,-0.995 0.176,-1.5 A 39.857,39.857 0 0 0 75.916,26.831 Z m -44.67,30.338 c 0.181,0.087 0.351,0.181 0.537,0.264 l 0.027,0.017 q -0.282,-0.135 -0.564,-0.281 z m 8.878,-23.376 z m 31.952,-4.934 v -0.037 l 0.007,0.041 z"
fill="url(#a)"
id="path94"
style="fill:url(#a-3-6)" />
<path
d="m 75.916,26.831 c -1.684,-4.052 -5.1,-8.427 -7.775,-9.81 a 40.266,40.266 0 0 1 3.925,11.764 v 0.037 l 0.007,0.041 A 35.1,35.1 0 0 1 70.867,55.021 C 66.425,64.552 55.673,74.321 38.843,73.846 20.658,73.331 4.643,59.837 1.649,42.163 c -0.545,-2.787 0,-4.2 0.274,-6.465 A 28.876,28.876 0 0 0 1.3,41.046 v 0.2 A 38.759,38.759 0 0 0 78.254,47.8 c 0.065,-0.5 0.118,-0.995 0.176,-1.5 A 39.857,39.857 0 0 0 75.916,26.831 Z"
fill="url(#b)"
id="path96"
style="fill:url(#b-5-2)" />
<path
d="m 75.916,26.831 c -1.684,-4.052 -5.1,-8.427 -7.775,-9.81 a 40.266,40.266 0 0 1 3.925,11.764 v 0.037 l 0.007,0.041 A 35.1,35.1 0 0 1 70.867,55.021 C 66.425,64.552 55.673,74.321 38.843,73.846 20.658,73.331 4.643,59.837 1.649,42.163 c -0.545,-2.787 0,-4.2 0.274,-6.465 A 28.876,28.876 0 0 0 1.3,41.046 v 0.2 A 38.759,38.759 0 0 0 78.254,47.8 c 0.065,-0.5 0.118,-0.995 0.176,-1.5 A 39.857,39.857 0 0 0 75.916,26.831 Z"
fill="url(#c)"
id="path98"
style="fill:url(#c-7-4)" />
<path
d="m 57.082,31.387 c 0.084,0.059 0.162,0.118 0.241,0.177 a 21.1,21.1 0 0 0 -3.6,-4.695 C 41.677,14.821 50.566,0.746 52.065,0.031 L 52.08,0.009 c -9.735,5.7 -13.038,16.252 -13.342,21.53 0.452,-0.031 0.9,-0.069 1.362,-0.069 a 19.56,19.56 0 0 1 16.982,9.917 z"
fill="url(#d)"
id="path100"
style="fill:url(#d-6-3)" />
<path
d="m 40.125,33.793 c -0.064,0.964 -3.47,4.289 -4.661,4.289 -11.021,0 -12.81,6.667 -12.81,6.667 0.488,5.614 4.4,10.238 9.129,12.684 a 13.44,13.44 0 0 0 0.654,0.312 q 0.569,0.252 1.138,0.466 a 17.235,17.235 0 0 0 5.043,0.973 c 19.317,0.906 23.059,-23.1 9.119,-30.066 A 13.38,13.38 0 0 1 57.082,31.387 19.56,19.56 0 0 0 40.1,21.47 c -0.46,0 -0.91,0.038 -1.362,0.069 A 19.387,19.387 0 0 0 28.072,25.65 c 0.591,0.5 1.258,1.168 2.663,2.553 2.63,2.591 9.375,5.275 9.39,5.59 z"
fill="url(#e)"
id="path102"
style="fill:url(#e-1-5)" />
<path
d="m 40.125,33.793 c -0.064,0.964 -3.47,4.289 -4.661,4.289 -11.021,0 -12.81,6.667 -12.81,6.667 0.488,5.614 4.4,10.238 9.129,12.684 a 13.44,13.44 0 0 0 0.654,0.312 q 0.569,0.252 1.138,0.466 a 17.235,17.235 0 0 0 5.043,0.973 c 19.317,0.906 23.059,-23.1 9.119,-30.066 A 13.38,13.38 0 0 1 57.082,31.387 19.56,19.56 0 0 0 40.1,21.47 c -0.46,0 -0.91,0.038 -1.362,0.069 A 19.387,19.387 0 0 0 28.072,25.65 c 0.591,0.5 1.258,1.168 2.663,2.553 2.63,2.591 9.375,5.275 9.39,5.59 z"
fill="url(#f)"
id="path104"
style="fill:url(#f-2-7)" />
<path
d="m 26.265,24.361 a 24.874,24.874 0 0 1 0.8,0.531 17.968,17.968 0 0 1 -0.109,-9.473 28.705,28.705 0 0 0 -9.329,7.21 c 0.189,-0.005 5.811,-0.106 8.638,1.732 z"
fill="url(#g)"
id="path106"
style="fill:url(#g-3-3)" />
<path
d="m 1.654,42.163 c 2.991,17.674 19.009,31.168 37.194,31.683 16.83,0.476 27.582,-9.294 32.024,-18.825 a 35.1,35.1 0 0 0 1.206,-26.158 v -0.037 c 0,-0.029 -0.006,-0.046 0,-0.037 l 0.007,0.065 c 1.375,8.977 -3.191,17.674 -10.329,23.555 l -0.022,0.05 c -13.908,11.327 -27.218,6.834 -29.912,5 Q 31.54,57.324 31.258,57.178 C 23.149,53.302 19.799,45.914 20.517,39.578 a 9.953,9.953 0 0 1 -9.181,-5.775 14.618,14.618 0 0 1 14.249,-0.572 19.3,19.3 0 0 0 14.552,0.572 c -0.015,-0.315 -6.76,-3 -9.39,-5.59 -1.405,-1.385 -2.072,-2.052 -2.663,-2.553 a 11.587,11.587 0 0 0 -1,-0.758 54.245,54.245 0 0 0 -0.8,-0.531 c -2.827,-1.838 -8.449,-1.737 -8.635,-1.732 h -0.018 c -1.536,-1.947 -1.428,-8.367 -1.34,-9.708 a 6.928,6.928 0 0 0 -1.294,0.687 28.225,28.225 0 0 0 -3.788,3.245 33.845,33.845 0 0 0 -3.638,4.337 v 0.006 -0.007 a 32.733,32.733 0 0 0 -5.2,11.743 c -0.019,0.079 -1.396,6.099 -0.717,9.221 z"
fill="url(#h)"
id="path108"
style="fill:url(#h-9-8)" />
<path
d="m 53.725,26.869 a 21.1,21.1 0 0 1 3.6,4.7 8.083,8.083 0 0 1 0.581,0.476 c 8.787,8.1 4.183,19.55 3.84,20.365 7.138,-5.881 11.7,-14.578 10.329,-23.555 C 67.691,17.925 60.26,13.52 54.191,3.928 a 47.099,47.099 0 0 1 -0.913,-1.484 12.24,12.24 0 0 1 -0.427,-0.8 7.053,7.053 0 0 1 -0.578,-1.535 0.1,0.1 0 0 0 -0.088,-0.1 0.138,0.138 0 0 0 -0.073,0 c -0.005,0 -0.013,0.009 -0.019,0.011 -0.006,0.002 -0.019,0.011 -0.028,0.015 -1.499,0.711 -10.388,14.786 1.66,26.834 z"
fill="url(#i)"
id="path110"
style="fill:url(#i-7-3)" />
<path
d="M 57.9,32.04 A 8.083,8.083 0 0 0 57.319,31.564 C 57.24,31.505 57.162,31.446 57.078,31.387 a 13.38,13.38 0 0 0 -9.345,-2.269 c 13.94,6.97 10.2,30.972 -9.119,30.066 a 17.235,17.235 0 0 1 -5.043,-0.973 q -0.569,-0.213 -1.138,-0.466 a 14.44,14.44 0 0 1 -0.654,-0.312 l 0.027,0.017 c 2.694,1.839 16,6.332 29.912,-5 L 61.74,52.4 C 62.087,51.59 66.691,40.137 57.9,32.04 Z"
fill="url(#j)"
id="path112"
style="fill:url(#j-9-0)" />
<path
d="m 22.654,44.749 c 0,0 1.789,-6.667 12.81,-6.667 1.191,0 4.6,-3.325 4.661,-4.289 a 19.3,19.3 0 0 1 -14.552,-0.572 14.618,14.618 0 0 0 -14.249,0.572 9.953,9.953 0 0 0 9.181,5.775 c -0.718,6.337 2.632,13.725 10.741,17.6 0.181,0.087 0.351,0.181 0.537,0.264 -4.733,-2.445 -8.641,-7.069 -9.129,-12.683 z"
fill="url(#k)"
id="path114"
style="fill:url(#k-7-6)" />
<path
d="m 75.916,26.831 c -1.684,-4.052 -5.1,-8.427 -7.775,-9.81 a 40.266,40.266 0 0 1 3.925,11.764 l 0.007,0.065 C 67.691,17.925 60.26,13.52 54.191,3.928 a 47.099,47.099 0 0 1 -0.913,-1.484 12.24,12.24 0 0 1 -0.427,-0.8 7.053,7.053 0 0 1 -0.578,-1.535 0.1,0.1 0 0 0 -0.088,-0.1 0.138,0.138 0 0 0 -0.073,0 c -0.005,0 -0.013,0.009 -0.019,0.011 -0.006,0.002 -0.019,0.011 -0.028,0.015 L 52.08,0.009 c -9.735,5.7 -13.038,16.252 -13.342,21.53 0.452,-0.031 0.9,-0.069 1.362,-0.069 a 19.56,19.56 0 0 1 16.982,9.917 13.38,13.38 0 0 0 -9.345,-2.269 c 13.94,6.97 10.2,30.972 -9.119,30.066 a 17.235,17.235 0 0 1 -5.043,-0.973 q -0.569,-0.213 -1.138,-0.466 a 14.44,14.44 0 0 1 -0.654,-0.312 l 0.027,0.017 q -0.282,-0.135 -0.564,-0.281 c 0.181,0.087 0.351,0.181 0.537,0.264 -4.733,-2.446 -8.641,-7.07 -9.129,-12.684 0,0 1.789,-6.667 12.81,-6.667 1.191,0 4.6,-3.325 4.661,-4.289 -0.015,-0.315 -6.76,-3 -9.39,-5.59 -1.405,-1.385 -2.072,-2.052 -2.663,-2.553 a 11.587,11.587 0 0 0 -1,-0.758 17.968,17.968 0 0 1 -0.109,-9.473 28.705,28.705 0 0 0 -9.329,7.21 h -0.018 c -1.536,-1.947 -1.428,-8.367 -1.34,-9.708 a 6.928,6.928 0 0 0 -1.294,0.687 28.225,28.225 0 0 0 -3.788,3.245 33.845,33.845 0 0 0 -3.623,4.347 v 0.006 -0.007 a 32.733,32.733 0 0 0 -5.2,11.743 l -0.052,0.256 c -0.073,0.341 -0.4,2.073 -0.447,2.445 0,0.028 0,-0.029 0,0 A 45.094,45.094 0 0 0 1.3,41.046 v 0.2 A 38.759,38.759 0 0 0 78.254,47.8 c 0.065,-0.5 0.118,-0.995 0.176,-1.5 A 39.857,39.857 0 0 0 75.916,26.831 Z m -3.845,1.991 0.007,0.041 z"
fill="url(#l)"
id="path116"
style="fill:url(#l-5-9)" />
</g>
<text
xml:space="preserve"
style="font-size:40px;line-height:1.25;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:0.4px;text-anchor:middle;fill:#ffffff"
x="304.29968"
y="80.519997"
id="text4352"><tspan
sodipodi:role="line"
x="304.49966"
y="80.519997"
id="tspan4728"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:40px;font-family:'Sharp Sans';-inkscape-font-specification:'Sharp Sans Medium';fill:#ffffff">Get it from</tspan></text>
<text
xml:space="preserve"
style="font-size:50.6667px;line-height:1.25;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:center;letter-spacing:-0.3px;text-anchor:middle;fill:#ffffff"
x="383.7843"
y="148.92535"
id="text34281"><tspan
sodipodi:role="line"
id="tspan34279"
x="383.63431"
y="148.92535"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.6667px;font-family:'Sharp Sans';-inkscape-font-specification:'Sharp Sans';fill:#ffffff"><tspan
style="font-weight:bold;font-size:50.6667px"
id="tspan16683">Firefox</tspan> Addons</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="svg120" width="600" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs id="defs92">
<linearGradient id="a-3-6" x1="69.972" x2="8.7174" y1="12.2" y2="73.257" gradientTransform="scale(.98394 1.0163)" gradientUnits="userSpaceOnUse">
<stop id="stop78-6-1" stop-color="#fff44f" offset=".05"/>
<stop id="stop80-7-0" stop-color="#ff980e" offset=".37"/>
<stop id="stop82-5-6" stop-color="#ff3647" offset=".53"/>
<stop id="stop84-3-3" stop-color="#e31587" offset=".7"/>
</linearGradient>
<radialGradient id="b-5-2" cx="62.187" cy="9.8704" r="89.357" gradientTransform="scale(1.109 .90173)" gradientUnits="userSpaceOnUse">
<stop id="stop2-6-0" stop-color="#ffbd4f" offset=".13"/>
<stop id="stop4-2-6" stop-color="#ff980e" offset=".28"/>
<stop id="stop6-9-1" stop-color="#ff3750" offset=".47"/>
<stop id="stop8-1-5" stop-color="#eb0878" offset=".78"/>
<stop id="stop10-2-5" stop-color="#e50080" offset=".86"/>
</radialGradient>
<radialGradient id="c-7-4" cx="35.379" cy="46.8" r="89.357" gradientTransform="scale(1.109 .90173)" gradientUnits="userSpaceOnUse">
<stop id="stop13-0-7" stop-color="#960e18" offset=".3"/>
<stop id="stop15-9-6" stop-color="#b11927" stop-opacity=".74" offset=".35"/>
<stop id="stop17-3-5" stop-color="#db293d" stop-opacity=".34" offset=".43"/>
<stop id="stop19-6-6" stop-color="#f5334b" stop-opacity=".09" offset=".5"/>
<stop id="stop21-0-9" stop-color="#ff3750" stop-opacity="0" offset=".53"/>
</radialGradient>
<radialGradient id="d-6-3" cx="62.101" cy="-2.8991" r="33.903" gradientTransform="scale(.76744 1.303)" gradientUnits="userSpaceOnUse">
<stop id="stop24-2-7" stop-color="#fff44f" offset=".13"/>
<stop id="stop26-6-4" stop-color="#ff980e" offset=".53"/>
</radialGradient>
<radialGradient id="e-1-5" cx="31.922" cy="60.196" r="36.045" gradientTransform="scale(.95513 1.047)" gradientUnits="userSpaceOnUse">
<stop id="stop29-8-2" stop-color="#3a8ee6" offset=".35"/>
<stop id="stop31-7-5" stop-color="#9059ff" offset=".67"/>
<stop id="stop33-9-4" stop-color="#c139e6" offset="1"/>
</radialGradient>
<radialGradient id="f-2-7" cx="42.462" cy="32.402" r="21.267" gradientTransform="scale(.95513 1.047)" gradientUnits="userSpaceOnUse">
<stop id="stop36-0-4" stop-color="#9059ff" stop-opacity="0" offset=".21"/>
<stop id="stop38-2-4" stop-color="#6e008b" stop-opacity=".6" offset=".97"/>
</radialGradient>
<radialGradient id="g-3-3" cx="37.516" cy="5.935" r="27.421" gradientTransform="scale(.99815 1.0019)" gradientUnits="userSpaceOnUse">
<stop id="stop41-7-0" stop-color="#ffe226" offset=".1"/>
<stop id="stop43-5-7" stop-color="#ff7139" offset=".79"/>
</radialGradient>
<radialGradient id="h-9-8" cx="57.203" cy="-13.152" r="119.7" gradientTransform="scale(1.0914 .91627)" gradientUnits="userSpaceOnUse">
<stop id="stop46-2-6" stop-color="#fff44f" offset=".11"/>
<stop id="stop48-2-8" stop-color="#ff980e" offset=".46"/>
<stop id="stop50-8-8" stop-color="#ff3647" offset=".72"/>
<stop id="stop52-9-4" stop-color="#e31587" offset=".9"/>
</radialGradient>
<radialGradient id="i-7-3" cx="74.836" cy="-6.7048" r="125.79" gradientTransform="scale(.68814 1.4532)" gradientUnits="userSpaceOnUse">
<stop id="stop55-3-1" stop-color="#fff44f" offset="0"/>
<stop id="stop57-6-4" stop-color="#ff980e" offset=".3"/>
<stop id="stop59-1-9" stop-color="#ff3647" offset=".57"/>
<stop id="stop61-2-2" stop-color="#e31587" offset=".74"/>
</radialGradient>
<radialGradient id="j-9-0" cx="37.373" cy="16.031" r="74.328" gradientTransform="scale(1.0095 .9906)" gradientUnits="userSpaceOnUse">
<stop id="stop64-3-6" stop-color="#fff44f" offset=".14"/>
<stop id="stop66-1-8" stop-color="#ff980e" offset=".48"/>
<stop id="stop68-9-9" stop-color="#ff3647" offset=".66"/>
<stop id="stop70-4-2" stop-color="#e31587" offset=".9"/>
</radialGradient>
<radialGradient id="k-7-6" cx="54.134" cy="21.246" r="85.336" gradientTransform="scale(1.0567 .94632)" gradientUnits="userSpaceOnUse">
<stop id="stop73-8-6" stop-color="#fff44f" offset=".09"/>
<stop id="stop75-4-4" stop-color="#ff980e" offset=".63"/>
</radialGradient>
<linearGradient id="l-5-9" x1="64.267" x2="15.484" y1="11.02" y2="66.097" gradientTransform="scale(.98394 1.0163)" gradientUnits="userSpaceOnUse">
<stop id="stop87-0-5" stop-color="#fff44f" stop-opacity=".8" offset=".17"/>
<stop id="stop89-3-0" stop-color="#fff44f" stop-opacity="0" offset=".6"/>
</linearGradient>
</defs>
<g id="layer1">
<path id="rect62650" d="m0 0h600v200h-600z" fill="#20123a" stroke-width="0"/>
</g>
<g id="layer2">
<g id="g3094" transform="matrix(1.6257 0 0 1.6257 32.887 34.993)">
<path id="path94" d="m75.916 26.831c-1.684-4.052-5.1-8.427-7.775-9.81a40.266 40.266 0 0 1 3.925 11.764l7e-3 0.065c-4.382-10.925-11.813-15.33-17.882-24.922a47.099 47.099 0 0 1-0.913-1.484 12.24 12.24 0 0 1-0.427-0.8 7.053 7.053 0 0 1-0.578-1.535 0.1 0.1 0 0 0-0.088-0.1 0.138 0.138 0 0 0-0.073 0c-5e-3 0-0.013 9e-3 -0.019 0.011s-0.019 0.011-0.028 0.015l0.015-0.026c-9.735 5.7-13.038 16.252-13.342 21.53a19.387 19.387 0 0 0-10.666 4.111 11.587 11.587 0 0 0-1-0.758 17.968 17.968 0 0 1-0.109-9.473 28.705 28.705 0 0 0-9.329 7.21h-0.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294 0.687 28.225 28.225 0 0 0-3.788 3.245 33.845 33.845 0 0 0-3.623 4.347v6e-3 -7e-3a32.733 32.733 0 0 0-5.2 11.743l-0.052 0.256a61.89 61.89 0 0 0-0.381 2.42c0 0.029-6e-3 0.056-9e-3 0.085a36.937 36.937 0 0 0-0.629 5.343v0.2a38.759 38.759 0 0 0 76.954 6.554c0.065-0.5 0.118-0.995 0.176-1.5a39.857 39.857 0 0 0-2.514-19.469zm-44.67 30.338c0.181 0.087 0.351 0.181 0.537 0.264l0.027 0.017q-0.282-0.135-0.564-0.281zm8.878-23.376m31.952-4.934v-0.037l7e-3 0.041z" fill="url(#a-3-6)"/>
<path id="path96" d="m75.916 26.831c-1.684-4.052-5.1-8.427-7.775-9.81a40.266 40.266 0 0 1 3.925 11.764v0.037l7e-3 0.041a35.1 35.1 0 0 1-1.206 26.158c-4.442 9.531-15.194 19.3-32.024 18.825-18.185-0.515-34.2-14.009-37.194-31.683-0.545-2.787 0-4.2 0.274-6.465a28.876 28.876 0 0 0-0.623 5.348v0.2a38.759 38.759 0 0 0 76.954 6.554c0.065-0.5 0.118-0.995 0.176-1.5a39.857 39.857 0 0 0-2.514-19.469z" fill="url(#b-5-2)"/>
<path id="path98" d="m75.916 26.831c-1.684-4.052-5.1-8.427-7.775-9.81a40.266 40.266 0 0 1 3.925 11.764v0.037l7e-3 0.041a35.1 35.1 0 0 1-1.206 26.158c-4.442 9.531-15.194 19.3-32.024 18.825-18.185-0.515-34.2-14.009-37.194-31.683-0.545-2.787 0-4.2 0.274-6.465a28.876 28.876 0 0 0-0.623 5.348v0.2a38.759 38.759 0 0 0 76.954 6.554c0.065-0.5 0.118-0.995 0.176-1.5a39.857 39.857 0 0 0-2.514-19.469z" fill="url(#c-7-4)"/>
<path id="path100" d="m57.082 31.387c0.084 0.059 0.162 0.118 0.241 0.177a21.1 21.1 0 0 0-3.6-4.695c-12.046-12.048-3.157-26.123-1.658-26.838l0.015-0.022c-9.735 5.7-13.038 16.252-13.342 21.53 0.452-0.031 0.9-0.069 1.362-0.069a19.56 19.56 0 0 1 16.982 9.917z" fill="url(#d-6-3)"/>
<path id="path102" d="m40.125 33.793c-0.064 0.964-3.47 4.289-4.661 4.289-11.021 0-12.81 6.667-12.81 6.667 0.488 5.614 4.4 10.238 9.129 12.684a13.44 13.44 0 0 0 0.654 0.312q0.569 0.252 1.138 0.466a17.235 17.235 0 0 0 5.043 0.973c19.317 0.906 23.059-23.1 9.119-30.066a13.38 13.38 0 0 1 9.345 2.269 19.56 19.56 0 0 0-16.982-9.917c-0.46 0-0.91 0.038-1.362 0.069a19.387 19.387 0 0 0-10.666 4.111c0.591 0.5 1.258 1.168 2.663 2.553 2.63 2.591 9.375 5.275 9.39 5.59z" fill="url(#e-1-5)"/>
<path id="path104" d="m40.125 33.793c-0.064 0.964-3.47 4.289-4.661 4.289-11.021 0-12.81 6.667-12.81 6.667 0.488 5.614 4.4 10.238 9.129 12.684a13.44 13.44 0 0 0 0.654 0.312q0.569 0.252 1.138 0.466a17.235 17.235 0 0 0 5.043 0.973c19.317 0.906 23.059-23.1 9.119-30.066a13.38 13.38 0 0 1 9.345 2.269 19.56 19.56 0 0 0-16.982-9.917c-0.46 0-0.91 0.038-1.362 0.069a19.387 19.387 0 0 0-10.666 4.111c0.591 0.5 1.258 1.168 2.663 2.553 2.63 2.591 9.375 5.275 9.39 5.59z" fill="url(#f-2-7)"/>
<path id="path106" d="m26.265 24.361a24.874 24.874 0 0 1 0.8 0.531 17.968 17.968 0 0 1-0.109-9.473 28.705 28.705 0 0 0-9.329 7.21c0.189-5e-3 5.811-0.106 8.638 1.732z" fill="url(#g-3-3)"/>
<path id="path108" d="m1.654 42.163c2.991 17.674 19.009 31.168 37.194 31.683 16.83 0.476 27.582-9.294 32.024-18.825a35.1 35.1 0 0 0 1.206-26.158v-0.037c0-0.029-6e-3 -0.046 0-0.037l7e-3 0.065c1.375 8.977-3.191 17.674-10.329 23.555l-0.022 0.05c-13.908 11.327-27.218 6.834-29.912 5q-0.282-0.135-0.564-0.281c-8.109-3.876-11.459-11.264-10.741-17.6a9.953 9.953 0 0 1-9.181-5.775 14.618 14.618 0 0 1 14.249-0.572 19.3 19.3 0 0 0 14.552 0.572c-0.015-0.315-6.76-3-9.39-5.59-1.405-1.385-2.072-2.052-2.663-2.553a11.587 11.587 0 0 0-1-0.758 54.245 54.245 0 0 0-0.8-0.531c-2.827-1.838-8.449-1.737-8.635-1.732h-0.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294 0.687 28.225 28.225 0 0 0-3.788 3.245 33.845 33.845 0 0 0-3.638 4.337v6e-3 -7e-3a32.733 32.733 0 0 0-5.2 11.743c-0.019 0.079-1.396 6.099-0.717 9.221z" fill="url(#h-9-8)"/>
<path id="path110" d="m53.725 26.869a21.1 21.1 0 0 1 3.6 4.7 8.083 8.083 0 0 1 0.581 0.476c8.787 8.1 4.183 19.55 3.84 20.365 7.138-5.881 11.7-14.578 10.329-23.555-4.384-10.93-11.815-15.335-17.884-24.927a47.099 47.099 0 0 1-0.913-1.484 12.24 12.24 0 0 1-0.427-0.8 7.053 7.053 0 0 1-0.578-1.535 0.1 0.1 0 0 0-0.088-0.1 0.138 0.138 0 0 0-0.073 0c-5e-3 0-0.013 9e-3 -0.019 0.011s-0.019 0.011-0.028 0.015c-1.499 0.711-10.388 14.786 1.66 26.834z" fill="url(#i-7-3)"/>
<path id="path112" d="m57.9 32.04a8.083 8.083 0 0 0-0.581-0.476c-0.079-0.059-0.157-0.118-0.241-0.177a13.38 13.38 0 0 0-9.345-2.269c13.94 6.97 10.2 30.972-9.119 30.066a17.235 17.235 0 0 1-5.043-0.973q-0.569-0.213-1.138-0.466a14.44 14.44 0 0 1-0.654-0.312l0.027 0.017c2.694 1.839 16 6.332 29.912-5l0.022-0.05c0.347-0.81 4.951-12.263-3.84-20.36z" fill="url(#j-9-0)"/>
<path id="path114" d="m22.654 44.749s1.789-6.667 12.81-6.667c1.191 0 4.6-3.325 4.661-4.289a19.3 19.3 0 0 1-14.552-0.572 14.618 14.618 0 0 0-14.249 0.572 9.953 9.953 0 0 0 9.181 5.775c-0.718 6.337 2.632 13.725 10.741 17.6 0.181 0.087 0.351 0.181 0.537 0.264-4.733-2.445-8.641-7.069-9.129-12.683z" fill="url(#k-7-6)"/>
<path id="path116" d="m75.916 26.831c-1.684-4.052-5.1-8.427-7.775-9.81a40.266 40.266 0 0 1 3.925 11.764l7e-3 0.065c-4.382-10.925-11.813-15.33-17.882-24.922a47.099 47.099 0 0 1-0.913-1.484 12.24 12.24 0 0 1-0.427-0.8 7.053 7.053 0 0 1-0.578-1.535 0.1 0.1 0 0 0-0.088-0.1 0.138 0.138 0 0 0-0.073 0c-5e-3 0-0.013 9e-3 -0.019 0.011s-0.019 0.011-0.028 0.015l0.015-0.026c-9.735 5.7-13.038 16.252-13.342 21.53 0.452-0.031 0.9-0.069 1.362-0.069a19.56 19.56 0 0 1 16.982 9.917 13.38 13.38 0 0 0-9.345-2.269c13.94 6.97 10.2 30.972-9.119 30.066a17.235 17.235 0 0 1-5.043-0.973q-0.569-0.213-1.138-0.466a14.44 14.44 0 0 1-0.654-0.312l0.027 0.017q-0.282-0.135-0.564-0.281c0.181 0.087 0.351 0.181 0.537 0.264-4.733-2.446-8.641-7.07-9.129-12.684 0 0 1.789-6.667 12.81-6.667 1.191 0 4.6-3.325 4.661-4.289-0.015-0.315-6.76-3-9.39-5.59-1.405-1.385-2.072-2.052-2.663-2.553a11.587 11.587 0 0 0-1-0.758 17.968 17.968 0 0 1-0.109-9.473 28.705 28.705 0 0 0-9.329 7.21h-0.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294 0.687 28.225 28.225 0 0 0-3.788 3.245 33.845 33.845 0 0 0-3.623 4.347v6e-3 -7e-3a32.733 32.733 0 0 0-5.2 11.743l-0.052 0.256c-0.073 0.341-0.4 2.073-0.447 2.445v0a45.094 45.094 0 0 0-0.572 5.403v0.2a38.759 38.759 0 0 0 76.954 6.554c0.065-0.5 0.118-0.995 0.176-1.5a39.857 39.857 0 0 0-2.514-19.469zm-3.845 1.991 7e-3 0.041z" fill="url(#l-5-9)"/>
</g>
<g id="text4352" fill="#fff" aria-label="Get it from">
<path id="path180" d="m210.2 80.92c2.24 0 4.28-0.4 6.08-1.2s3.32-1.88 4.6-3.24c1.24-1.36 2.2-2.96 2.84-4.8 0.64-1.8 1-3.72 1-5.72v-1.08h-15v3.16h11.56c-0.2 1.4-0.6 2.68-1.16 3.88-0.6 1.2-1.36 2.2-2.28 3.04-0.96 0.88-2.04 1.56-3.32 2.04s-2.72 0.72-4.32 0.72c-1.76 0-3.4-0.28-4.84-0.92-1.44-0.6-2.68-1.44-3.72-2.52-1.04-1.04-1.88-2.28-2.44-3.72s-0.84-2.96-0.84-4.64c0-1.6 0.28-3.12 0.84-4.56s1.36-2.68 2.4-3.76 2.28-1.92 3.72-2.56 3-0.96 4.76-0.96c2.24 0 4.16 0.48 5.84 1.4 1.64 0.96 3 2.28 4.04 3.96l2.84-1.84c-1.36-2.08-3.12-3.68-5.28-4.88s-4.64-1.8-7.44-1.8c-2.2 0-4.2 0.4-6.04 1.2s-3.44 1.84-4.8 3.2-2.4 2.92-3.12 4.76c-0.76 1.84-1.12 3.76-1.12 5.84s0.36 4.04 1.12 5.84c0.76 1.84 1.8 3.4 3.16 4.76s2.96 2.44 4.8 3.24 3.88 1.16 6.12 1.16z"/>
<path id="path182" d="m240.96 80.96c2.36 0 4.36-0.48 5.96-1.44s2.96-2.28 4.08-4.04l-2.8-1.64c-0.76 1.36-1.72 2.36-2.88 3.08-1.2 0.72-2.64 1.08-4.36 1.08-1.16 0-2.2-0.16-3.16-0.52-0.96-0.32-1.76-0.8-2.48-1.44s-1.28-1.36-1.72-2.24c-0.48-0.84-0.76-1.8-0.84-2.84h19.08v-1.48c0-1.6-0.28-3.04-0.84-4.4s-1.36-2.52-2.32-3.48-2.12-1.72-3.48-2.28-2.8-0.84-4.36-0.84c-1.64 0-3.16 0.32-4.52 0.88-1.36 0.6-2.56 1.4-3.56 2.4-1 1.04-1.8 2.24-2.36 3.6s-0.84 2.84-0.84 4.44 0.24 3.04 0.8 4.4c0.52 1.36 1.28 2.56 2.28 3.56s2.2 1.8 3.6 2.36 2.96 0.84 4.72 0.84zm-0.12-19.56c2.08 0 3.84 0.6 5.2 1.8s2.16 2.84 2.44 4.88h-15.64c0.16-0.96 0.48-1.84 0.96-2.64s1.04-1.52 1.76-2.12c0.68-0.6 1.48-1.08 2.36-1.4s1.88-0.52 2.92-0.52z"/>
<path id="path184" d="m254.64 58.92v2.92h4.2v12.16c0 2.4 0.52 4.16 1.56 5.24s2.56 1.6 4.56 1.6c0.88 0 1.72-0.12 2.44-0.4 0.72-0.24 1.36-0.64 2-1.12l-1.72-2.6c-0.76 0.72-1.6 1.04-2.48 1.04-0.96 0-1.72-0.28-2.28-0.88-0.56-0.56-0.84-1.56-0.84-2.96v-12.08h6.32v-2.92h-6.32v-6.84l-3.24 2.08v4.76z"/>
<path id="path186" d="m283.72 58.92v21.6h3.32v-21.6zm-0.92-6.64c0 0.76 0.24 1.4 0.72 1.88s1.08 0.72 1.84 0.72 1.4-0.24 1.88-0.72 0.72-1.12 0.72-1.88c0-0.72-0.24-1.36-0.72-1.84s-1.12-0.76-1.88-0.76c-0.72 0-1.36 0.28-1.84 0.76s-0.72 1.12-0.72 1.84z"/>
<path id="path188" d="m291.44 58.92v2.92h4.2v12.16c0 2.4 0.52 4.16 1.56 5.24s2.56 1.6 4.56 1.6c0.88 0 1.72-0.12 2.44-0.4 0.72-0.24 1.36-0.64 2-1.12l-1.72-2.6c-0.76 0.72-1.6 1.04-2.48 1.04-0.96 0-1.72-0.28-2.28-0.88-0.56-0.56-0.84-1.56-0.84-2.96v-12.08h6.32v-2.92h-6.32v-6.84l-3.24 2.08v4.76z"/>
<path id="path190" d="m318.6 58.92v2.92h4v18.68h3.24v-18.68h5.88v-2.92h-5.88v-1.64c0-1.12 0.04-2 0.16-2.68s0.36-1.2 0.72-1.6c0.36-0.36 0.88-0.6 1.56-0.72s1.56-0.2 2.68-0.2h0.76v-3.08h-1c-1.6 0-2.92 0.16-3.96 0.4s-1.88 0.68-2.48 1.32c-0.64 0.64-1.08 1.48-1.32 2.52-0.24 1.08-0.36 2.4-0.36 4v1.68z"/>
<path id="path192" d="m336.48 58.92v21.6h3.24v-11.84c0-2.4 0.48-4.12 1.48-5.2 0.96-1.08 2.36-1.64 4.2-1.64 0.56 0 1.08 0.08 1.52 0.2s0.8 0.28 1.12 0.48l1.36-3.12c-0.88-0.52-2.08-0.8-3.6-0.8-1.56 0-2.88 0.4-3.92 1.12-1.04 0.76-1.8 1.84-2.24 3.28v-4.08z"/>
<path id="path194" d="m362.16 80.96c1.6 0 3.08-0.28 4.44-0.88 1.36-0.56 2.52-1.36 3.56-2.4 1-1 1.8-2.2 2.36-3.56s0.88-2.8 0.88-4.4c0-1.56-0.32-3.04-0.88-4.4s-1.36-2.56-2.36-3.6c-1.04-1-2.24-1.8-3.6-2.36s-2.84-0.88-4.4-0.88c-1.6 0-3.04 0.32-4.4 0.88s-2.56 1.36-3.56 2.36c-1.04 1.04-1.84 2.24-2.4 3.6s-0.84 2.84-0.84 4.4c0 1.6 0.28 3.08 0.84 4.44s1.36 2.56 2.36 3.56c1 1.04 2.2 1.84 3.56 2.4s2.84 0.84 4.44 0.84zm0-3.12c-1.12 0-2.16-0.2-3.12-0.6s-1.8-1-2.52-1.72-1.24-1.56-1.64-2.56c-0.4-0.96-0.6-2.04-0.6-3.24 0-1.12 0.2-2.2 0.6-3.2s0.92-1.88 1.64-2.6 1.56-1.32 2.52-1.72 2-0.64 3.12-0.64 2.16 0.24 3.12 0.64 1.8 1 2.52 1.72 1.28 1.6 1.68 2.6 0.6 2.08 0.6 3.2c0 1.16-0.2 2.24-0.6 3.2-0.4 1-0.96 1.88-1.68 2.6s-1.56 1.32-2.52 1.72-2 0.6-3.12 0.6z"/>
<path id="path196" d="m378.72 58.92v21.6h3.28v-12.16c0-2.16 0.56-3.88 1.76-5.12 1.16-1.2 2.68-1.84 4.56-1.84 1.92 0 3.36 0.56 4.4 1.68s1.56 2.6 1.56 4.44v13h3.28v-12.44c0-1.04 0.16-2 0.48-2.84 0.32-0.8 0.76-1.52 1.32-2.08s1.2-1 1.96-1.32c0.76-0.28 1.6-0.44 2.52-0.44 2 0 3.52 0.6 4.56 1.8s1.6 2.72 1.6 4.64v12.68h3.32v-12.72c0-2.8-0.8-5.08-2.32-6.76-1.56-1.68-3.84-2.56-6.84-2.56-1.84 0-3.4 0.44-4.72 1.24-1.36 0.8-2.36 1.88-3.04 3.24-0.6-1.36-1.52-2.44-2.76-3.24-1.28-0.8-2.84-1.24-4.76-1.24-1.6 0-3 0.32-4.16 0.96s-2.08 1.52-2.76 2.64v-3.16z"/>
</g>
<g id="text34281" fill="#fff" aria-label="Firefox Addons">
<path id="path199" d="m195 111.94v36.987h7.1947v-14.947h16.619v-6.688h-16.619v-8.5627h16.619v-6.7893z"/>
<path id="path201" d="m223.78 121.57v27.36h7.144v-27.36zm-0.912-7.7013c0 1.3173 0.40533 2.3813 1.216 3.192 0.81067 0.86133 1.9253 1.2667 3.2427 1.2667 1.3173 0 2.432-0.40534 3.2427-1.2667 0.81066-0.81067 1.2667-1.8747 1.2667-3.192 0-1.3173-0.45601-2.3813-1.2667-3.2427-0.81067-0.86133-1.9253-1.3173-3.2427-1.3173-1.3173 0-2.3813 0.456-3.192 1.3173-0.86134 0.86133-1.2667 1.9253-1.2667 3.2427z"/>
<path id="path203" d="m236.2 121.57v27.36h6.9413v-14.44c0-2.28 0.50666-3.9013 1.6213-4.9147 1.064-1.0133 2.4827-1.52 4.3067-1.52 0.76 0 1.4693 0.10134 2.128 0.304 0.608 0.20267 1.1147 0.40534 1.52 0.65867l2.5333-6.8907c-0.608-0.304-1.2667-0.55733-2.0773-0.76s-1.6213-0.304-2.5333-0.304c-1.7733 0-3.2933 0.40533-4.6107 1.1653-1.3173 0.76-2.28 1.9253-2.9387 3.5467v-4.2053z"/>
<path id="path205" d="m269.9 149.48c3.04 0 5.5227-0.55734 7.5493-1.7227 1.976-1.1147 3.648-2.6853 5.0667-4.6107l-5.7253-3.344c-0.70934 1.1147-1.5707 2.0267-2.6853 2.6853-1.1147 0.65867-2.4827 0.96267-4.104 0.96267-2.0267 0-3.7493-0.50667-5.1173-1.52s-2.28-2.432-2.736-4.256h21.736v-2.6347c0-2.0267-0.35466-3.9013-1.064-5.624-0.70933-1.7227-1.7227-3.192-2.9387-4.408-1.2667-1.216-2.736-2.2293-4.4587-2.9387-1.7227-0.70933-3.648-1.064-5.6747-1.064-2.0267 0-3.952 0.40534-5.6747 1.1147-1.7733 0.76-3.2933 1.7733-4.56 3.04-1.3173 1.3173-2.3307 2.8373-3.04 4.56-0.70933 1.7227-1.064 3.5973-1.064 5.5733 0 2.0267 0.304 3.8507 1.0133 5.5733 0.65867 1.7227 1.6213 3.2427 2.888 4.5093 1.2667 1.3173 2.7867 2.3307 4.6107 3.04 1.7733 0.70933 3.7493 1.064 5.9787 1.064zm-0.152-22.547c1.824 0 3.344 0.456 4.6107 1.368 1.216 0.912 2.0773 2.1787 2.584 3.9013h-14.592c0.55733-1.6213 1.4693-2.888 2.7867-3.8507 1.2667-0.912 2.7867-1.4187 4.6107-1.4187z"/>
<path id="path207" d="m285.61 121.57v6.2827h4.5093v21.077h6.9413v-21.077h6.5867v-6.2827h-6.5867v-1.3173c0-1.0133 0.0507-1.8747 0.152-2.4827 0.10133-0.608 0.304-1.1147 0.70933-1.4693s0.96267-0.608 1.672-0.70933c0.70933-0.10134 1.672-0.20267 2.888-0.20267h1.1653v-6.384h-1.824c-2.2293 0-4.104 0.20266-5.624 0.55733-1.52 0.40533-2.6853 1.0133-3.5973 1.9253s-1.52 2.0773-1.9253 3.5467c-0.40533 1.52-0.55733 3.344-0.55733 5.5733v0.96267z"/>
<path id="path209" d="m319.41 149.48c2.0267 0 3.952-0.35467 5.7253-1.1147 1.7733-0.70933 3.2933-1.7227 4.6107-3.04 1.2667-1.3173 2.28-2.8373 3.04-4.56 0.70933-1.7227 1.1147-3.5467 1.1147-5.5227 0-1.9253-0.40534-3.8-1.1147-5.5227-0.76-1.7227-1.7733-3.2427-3.0907-4.56-1.3173-1.2667-2.8373-2.28-4.6107-3.04-1.7733-0.70933-3.648-1.1147-5.6747-1.1147-2.0773 0-4.0027 0.40534-5.7253 1.1147-1.7733 0.76-3.2933 1.7733-4.6107 3.04-1.3173 1.3173-2.3307 2.8373-3.04 4.56-0.70933 1.7227-1.064 3.5973-1.064 5.5227 0 1.976 0.35467 3.8 1.064 5.5227 0.70934 1.7227 1.7227 3.2427 3.04 4.56 1.3173 1.3173 2.8373 2.3307 4.6107 3.04 1.7227 0.76 3.648 1.1147 5.7253 1.1147zm0.0507-6.6373c-1.064 0-2.0267-0.20267-2.9387-0.608s-1.7227-0.912-2.3813-1.6213c-0.70933-0.65867-1.216-1.4693-1.6213-2.3813s-0.55733-1.9253-0.55733-3.04c0-1.0133 0.152-2.0267 0.55733-2.9893 0.40533-0.912 0.912-1.7227 1.6213-2.432 0.65867-0.65867 1.4693-1.216 2.3813-1.6213 0.912-0.40534 1.8747-0.608 2.9387-0.608 1.0133 0 2.0267 0.20266 2.9387 0.608 0.91201 0.40533 1.672 0.96266 2.3813 1.6213 0.65867 0.70934 1.1653 1.52 1.5707 2.432 0.40533 0.96267 0.608 1.976 0.608 2.9893 0 1.1147-0.20267 2.128-0.608 3.04-0.40534 0.912-0.912 1.7227-1.5707 2.3813-0.70933 0.70933-1.4693 1.216-2.3813 1.6213-0.912 0.40533-1.9253 0.608-2.9387 0.608z"/>
<path id="path211" d="m344.08 134.89-10.235 14.035h8.4107l6.1307-8.5627 6.2827 8.5627h8.4613l-10.437-13.984 9.728-13.376h-8.208l-5.776 8.1067-5.7253-8.1067h-8.3093z"/>
<path id="path213" d="m393.24 111.94-14.997 36.987h3.0907l4.2053-10.589h18.493l4.256 10.589h3.0907l-14.997-36.987zm-6.5867 23.611 8.056-20.317 8.208 20.317z"/>
<path id="path215" d="m429.01 149.48c1.0133 0 2.0773-0.10134 3.192-0.40534 1.064-0.304 2.0773-0.70933 3.0907-1.2667 0.96266-0.50667 1.8747-1.1653 2.6853-1.976 0.81067-0.81067 1.52-1.7227 2.128-2.736v5.8267h2.7867v-39.925h-2.7867v18.443c-0.608-1.0133-1.3173-1.9253-2.128-2.736s-1.7227-1.4693-2.736-2.0267c-1.0133-0.50666-2.0267-0.912-3.1413-1.216-1.1147-0.304-2.1787-0.456-3.192-0.456-2.0267 0-3.8507 0.40534-5.5733 1.1147-1.7227 0.70933-3.192 1.7227-4.4587 2.9893-1.2667 1.3173-2.28 2.7867-2.9893 4.5093s-1.064 3.5973-1.064 5.624c0 2.0773 0.304 4.0027 1.0133 5.7253 0.70934 1.7227 1.672 3.2427 2.9387 4.5093 1.216 1.2667 2.736 2.2293 4.4587 2.9387 1.7227 0.70933 3.648 1.064 5.776 1.064zm0-2.736c-1.6213 0-3.0907-0.25334-4.4587-0.86134-1.368-0.55733-2.5333-1.368-3.5467-2.3813-1.0133-1.0133-1.7733-2.1787-2.3307-3.5973-0.608-1.4187-0.86133-2.9387-0.86133-4.6613 0-1.6213 0.25333-3.1413 0.86133-4.56 0.55733-1.4187 1.3173-2.6347 2.3307-3.648 1.0133-1.0133 2.1787-1.824 3.5467-2.432s2.8373-0.912 4.4587-0.912c1.6213 0 3.0907 0.304 4.5093 0.912 1.368 0.608 2.584 1.4693 3.5973 2.4827 1.0133 1.064 1.824 2.28 2.432 3.6987 0.55733 1.4187 0.86133 2.888 0.86133 4.4587 0 1.6213-0.304 3.0907-0.86133 4.5093-0.608 1.4187-1.4187 2.6347-2.432 3.648-1.0133 1.064-2.2293 1.8747-3.5973 2.4827-1.4187 0.608-2.888 0.86134-4.5093 0.86134z"/>
<path id="path217" d="m464.03 149.48c1.0133 0 2.0773-0.10134 3.192-0.40534 1.064-0.304 2.0773-0.70933 3.0907-1.2667 0.96267-0.50667 1.8747-1.1653 2.6853-1.976 0.81067-0.81067 1.52-1.7227 2.128-2.736v5.8267h2.7867v-39.925h-2.7867v18.443c-0.608-1.0133-1.3173-1.9253-2.128-2.736s-1.7227-1.4693-2.736-2.0267c-1.0133-0.50666-2.0267-0.912-3.1413-1.216-1.1147-0.304-2.1787-0.456-3.192-0.456-2.0267 0-3.8507 0.40534-5.5733 1.1147-1.7227 0.70933-3.192 1.7227-4.4587 2.9893-1.2667 1.3173-2.28 2.7867-2.9893 4.5093s-1.064 3.5973-1.064 5.624c0 2.0773 0.304 4.0027 1.0133 5.7253 0.70934 1.7227 1.672 3.2427 2.9387 4.5093 1.216 1.2667 2.736 2.2293 4.4587 2.9387 1.7227 0.70933 3.648 1.064 5.776 1.064zm0-2.736c-1.6213 0-3.0907-0.25334-4.4587-0.86134-1.368-0.55733-2.5333-1.368-3.5467-2.3813-1.0133-1.0133-1.7733-2.1787-2.3307-3.5973-0.608-1.4187-0.86134-2.9387-0.86134-4.6613 0-1.6213 0.25334-3.1413 0.86134-4.56 0.55733-1.4187 1.3173-2.6347 2.3307-3.648 1.0133-1.0133 2.1787-1.824 3.5467-2.432 1.368-0.608 2.8373-0.912 4.4587-0.912 1.6213 0 3.0907 0.304 4.5093 0.912 1.368 0.608 2.584 1.4693 3.5973 2.4827 1.0133 1.064 1.824 2.28 2.432 3.6987 0.55733 1.4187 0.86133 2.888 0.86133 4.4587 0 1.6213-0.304 3.0907-0.86133 4.5093-0.608 1.4187-1.4187 2.6347-2.432 3.648-1.0133 1.064-2.2293 1.8747-3.5973 2.4827-1.4187 0.608-2.888 0.86134-4.5093 0.86134z"/>
<path id="path219" d="m499.04 149.48c2.0267 0 3.9013-0.35467 5.624-1.1147 1.7227-0.70933 3.2427-1.7227 4.5093-3.04 1.2667-1.2667 2.28-2.7867 2.9893-4.5093 0.70934-1.7227 1.1147-3.5467 1.1147-5.5733 0-2.0267-0.40533-3.9013-1.1147-5.624-0.70933-1.7227-1.7227-3.192-2.9893-4.5093-1.3173-1.2667-2.7867-2.28-4.5093-2.9893s-3.5973-1.1147-5.624-1.1147c-2.0267 0-3.9013 0.40534-5.624 1.1147-1.7227 0.70933-3.2427 1.7227-4.5093 2.9893-1.2667 1.3173-2.28 2.7867-2.9893 4.5093-0.70933 1.7227-1.064 3.5973-1.064 5.624 0 2.0773 0.35467 4.0027 1.064 5.7253 0.70934 1.7227 1.672 3.2427 2.9387 4.5093s2.7867 2.2293 4.5093 2.9387c1.7227 0.70933 3.5973 1.064 5.6747 1.064zm0-2.736c-1.6213 0-3.0907-0.25334-4.4587-0.86134-1.368-0.55733-2.5333-1.368-3.5467-2.3813-1.0133-1.0133-1.7733-2.1787-2.3307-3.5973-0.608-1.4187-0.86133-2.9387-0.86133-4.6613 0-1.6213 0.25333-3.1413 0.86133-4.56 0.55733-1.4187 1.3173-2.6347 2.3307-3.648 1.0133-1.0133 2.1787-1.824 3.5467-2.432s2.8373-0.912 4.4587-0.912c1.5707 0 3.04 0.304 4.408 0.912s2.584 1.4187 3.5973 2.432c1.0133 1.0133 1.7733 2.2293 2.3813 3.648 0.55733 1.4187 0.86133 2.9387 0.86133 4.56 0 1.672-0.304 3.192-0.86133 4.6107-0.608 1.4187-1.368 2.6347-2.3813 3.648-1.0133 1.0133-2.1787 1.824-3.5467 2.3813-1.368 0.608-2.8373 0.86134-4.4587 0.86134z"/>
<path id="path221" d="m520.12 121.57v27.36h2.8373v-15.251c0-1.4187 0.25333-2.736 0.76-3.952 0.50667-1.216 1.1653-2.2293 2.0773-3.1413 0.86133-0.912 1.8747-1.6213 3.0907-2.128 1.216-0.50667 2.4827-0.76 3.9013-0.76 3.04 0 5.4213 0.912 7.0933 2.736 1.6213 1.824 2.4827 4.2053 2.4827 7.1947v15.301h2.888v-15.301c0-1.9253-0.304-3.6987-0.86134-5.2693-0.608-1.52-1.4187-2.8373-2.432-3.952-1.064-1.1147-2.3307-1.9253-3.8-2.5333-1.52-0.55734-3.1413-0.86134-4.9653-0.86134-2.432 0-4.5093 0.55734-6.2827 1.672-1.824 1.1147-3.1413 2.584-4.0533 4.3067v-5.4213z"/>
<path id="path223" d="m562.99 149.48c1.672 0 3.1413-0.20267 4.4587-0.65867 1.3173-0.40533 2.3813-1.0133 3.2933-1.7733 0.86133-0.70934 1.52-1.6213 1.976-2.6347 0.456-1.0133 0.70933-2.0773 0.70933-3.2427 0-1.4187-0.304-2.5333-0.912-3.4453-0.608-0.86133-1.368-1.5707-2.28-2.128-0.96267-0.50666-2.0267-0.912-3.2427-1.216s-2.3813-0.55733-3.5973-0.76c-1.1147-0.20267-2.128-0.40533-3.1413-0.608s-1.9253-0.456-2.6853-0.81067c-0.81066-0.35466-1.4187-0.81066-1.8747-1.368-0.50667-0.50666-0.70934-1.216-0.70934-2.128 0-1.52 0.50667-2.7867 1.52-3.7493 1.0133-0.96267 2.7867-1.4693 5.32-1.4693 2.0267 0 3.7493 0.40533 5.168 1.1653 1.4187 0.81066 2.584 1.7733 3.5467 2.9387l2.2293-2.0267c-1.3173-1.3173-2.8373-2.432-4.56-3.2933s-3.8507-1.3173-6.384-1.3173c-1.6213 0-3.0907 0.25333-4.3067 0.65866-1.216 0.40534-2.2293 0.96267-3.04 1.672-0.81067 0.70934-1.4187 1.5707-1.824 2.4827-0.40533 0.96267-0.608 1.976-0.608 2.9893 0 1.368 0.25334 2.4827 0.86134 3.2933 0.55733 0.86134 1.3173 1.52 2.28 2.0267 0.912 0.50667 1.976 0.912 3.192 1.216 1.1653 0.304 2.3813 0.50667 3.5973 0.70934 1.064 0.20266 2.128 0.456 3.1413 0.65866 1.0133 0.20267 1.9253 0.50667 2.736 0.86134 0.81067 0.35466 1.4187 0.81066 1.9253 1.4187 0.456 0.608 0.70933 1.3173 0.70933 2.2293 0 1.7227-0.65866 3.1413-1.9253 4.1547-1.2667 1.064-3.1413 1.5707-5.5733 1.5707-2.4827 0-4.56-0.456-6.1813-1.368-1.672-0.91201-3.04-2.0773-4.104-3.496l-2.28 2.0773c1.2667 1.52 2.888 2.8373 4.9147 3.8507 1.976 1.0133 4.5093 1.52 7.6507 1.52z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

11
static/img/badges/en/export.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
# This script exports all fonts from svgs to path, and needs to be re-run every time the original file is modified.
# Programs required: inkscape, scour
# Fonts required: Ubuntu, Sharp Sans, Source Sans Pro
for file in *-text.svg; do
basename="${file%-*}"
rm $basename.svg
inkscape $basename-text.svg --export-filename=$basename-s.svg --export-text-to-path
scour -i $basename-s.svg -o $basename.svg
rm $basename-s.svg
done

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="600"
height="200"
viewBox="0 0 600 200.00001"
version="1.1"
id="svg8129"
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
sodipodi:docname="flathub-text.svg"
inkscape:export-filename="/home/jimmac/SparkleShare/flathub-mockups/assets/download-button/download.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs8123" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4142136"
inkscape:cx="237.94143"
inkscape:cy="135.05739"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:snap-nodes="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-midpoints="true"
inkscape:window-width="3440"
inkscape:window-height="1376"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:pagecheckerboard="0">
<inkscape:grid
type="xygrid"
id="grid8722" />
</sodipodi:namedview>
<metadata
id="metadata8126">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-922.51965)">
<rect
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#888a85;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal"
id="rect8720"
width="600"
height="200"
x="5e-07"
y="922.51965"
rx="0"
ry="0" />
<g
aria-label="FLATHUB"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:64.27679443px;line-height:125%;font-family:Overpass;-inkscape-font-specification:'Overpass, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
id="text7686">
<path
d="m 252.98791,1069.2683 h 7.71322 v -19.6044 h 13.62668 v -7.2633 h -13.62668 v -10.8628 h 21.33989 v -7.2632 h -29.05311 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path51" />
<path
d="m 289.39469,1069.2683 h 29.56732 v -7.3918 H 297.1079 v -37.6019 h -7.71321 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path53" />
<path
d="m 356.00553,1069.2683 h 8.09888 l -16.71197,-44.9937 h -7.64894 l -16.77624,44.9937 h 8.16315 l 3.53523,-9.8343 h 17.80467 z m -5.97774,-16.7762 h -12.91963 l 5.01359,-13.4982 c 0.44993,-1.2855 1.0927,-3.2138 1.47836,-4.5636 0.32139,1.3498 0.96415,3.2781 1.47837,4.5636 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path55" />
<path
d="m 383.46076,1031.6664 h 12.79108 v -7.3918 h -33.29538 v 7.3918 h 12.79109 v 37.6019 h 7.71321 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path57" />
<path
d="m 431.64627,1069.2683 h 7.64894 v -44.9937 h -7.64894 v 18.1903 h -19.6687 v -18.1903 h -7.71322 v 44.9937 h 7.71322 v -19.5401 h 19.6687 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path59" />
<path
d="m 467.4384,1070.0396 c 9.51296,0 17.54756,-4.6279 17.54756,-17.9332 v -27.8318 h -7.71321 v 27.8318 c 0,8.2274 -4.04944,10.5414 -9.83435,10.5414 -5.84919,0 -9.83435,-2.314 -9.83435,-10.5414 v -27.8318 h -7.71322 v 27.8318 c 0,13.4981 8.29171,17.9332 17.54757,17.9332 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path61" />
<path
d="m 495.53238,1024.2746 v 44.9937 h 19.34731 c 11.11989,0 15.04077,-7.0704 15.04077,-13.3053 0,-4.0494 -2.05686,-8.4845 -7.39183,-10.4128 3.98516,-1.9283 5.78491,-5.4636 5.78491,-9.2559 0,-6.1063 -3.53522,-12.0197 -14.398,-12.0197 z m 17.35473,18.126 h -9.64152 v -10.9913 h 10.86278 c 5.33497,0 6.42768,2.8282 6.42768,5.4635 0,3.2781 -2.5068,5.5278 -7.64894,5.5278 z m 2.44252,19.733 h -12.08404 v -12.5983 h 10.22001 c 7.00617,0 8.61309,3.2782 8.61309,6.6205 0,2.7639 -1.47836,5.9778 -6.74906,5.9778 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path63" />
</g>
<g
transform="translate(-733.58433,141.64633)"
id="g8587">
<path
sodipodi:nodetypes="ccccccccccc"
inkscape:connector-curvature="0"
id="rect7736"
d="m 856.01397,830.22631 -66.76365,43.44891 v 34.93973 l 33.38182,21.72315 33.37926,-21.72315 v -0.005 l 0.003,0.003 33.38183,21.72574 33.37925,-21.72315 v -34.93979 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:24;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<g
style="stroke-width:0.75573969"
transform="matrix(0.50221552,0,0,0.50636711,429.63205,432.90461)"
id="g7710">
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.16674447;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect7688"
width="79.110413"
height="79.110413"
x="1289.9076"
y="279.42584"
rx="0"
ry="0"
transform="matrix(0.84019328,0.54228706,-0.84019328,0.54228706,0,0)" />
<rect
transform="matrix(0.84019328,0.54228706,-0.84019328,0.54228706,0,0)"
ry="0"
rx="0"
y="215.8064"
x="1226.2882"
height="79.110413"
width="79.110413"
id="rect7690"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.16674447;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.02295876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 915.46811,824.92983 -5e-5,68.99997 -66.46803,42.90055 5e-5,-68.99997 z"
id="path7692"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path7694"
d="m 783.00003,824.92983 5e-5,68.99997 66.46803,42.90055 -5e-5,-68.99997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.02295876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
</g>
<g
style="stroke-width:0.75573969"
transform="matrix(0.50221552,0,0,0.50636711,463.01368,454.62849)"
id="g7722">
<rect
transform="matrix(0.84019328,0.54228706,-0.84019328,0.54228706,0,0)"
ry="0"
rx="0"
y="279.42584"
x="1289.9076"
height="79.110413"
width="79.110413"
id="rect7714"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.16674447;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.16674447;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect7716"
width="79.110413"
height="79.110413"
x="1226.2882"
y="215.8064"
rx="0"
ry="0"
transform="matrix(0.84019328,0.54228706,-0.84019328,0.54228706,0,0)" />
<path
inkscape:connector-curvature="0"
id="path7718"
d="m 915.46811,824.92983 -5e-5,68.99997 -66.46803,42.90055 5e-5,-68.99997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.02295876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.02295876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 783.00003,824.92983 5e-5,68.99997 66.46803,42.90055 -5e-5,-68.99997 z"
id="path7720"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke-width:0.75573969"
id="g7734"
transform="matrix(0.50221552,0,0,0.50636711,396.25042,454.62849)">
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.16674447;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect7726"
width="79.110413"
height="79.110413"
x="1289.9076"
y="279.42584"
rx="0"
ry="0"
transform="matrix(0.84019328,0.54228706,-0.84019328,0.54228706,0,0)" />
<rect
transform="matrix(0.84019328,0.54228706,-0.84019328,0.54228706,0,0)"
ry="0"
rx="0"
y="215.8064"
x="1226.2882"
height="79.110413"
width="79.110413"
id="rect7728"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.16674447;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.02295876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 915.46811,824.92983 -5e-5,68.99997 -66.46803,42.90055 5e-5,-68.99997 z"
id="path7730"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path7732"
d="m 783.00003,824.92983 5e-5,68.99997 66.46803,42.90055 -5e-5,-68.99997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.02295876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:42.6667px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:center;letter-spacing:4px;text-anchor:middle;fill:#ffffff"
x="389.50357"
y="995.57275"
id="text4612"><tspan
sodipodi:role="line"
id="tspan4610"
x="391.75357"
y="995.57275"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.6667px;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro'">Download On</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg8129" width="600" height="200" version="1.1" viewBox="0 0 600 200" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<metadata id="metadata8126">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g id="layer1" transform="translate(0 -922.52)">
<path id="rect8720" d="m5e-7 922.52h600v200h-600z" stroke-width="0"/>
<g id="text7686" color="#000000" fill="#fff" style="font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;text-decoration-line:none;text-indent:0;text-transform:none" aria-label="FLATHUB">
<path id="path51" d="m252.99 1069.3h7.7132v-19.604h13.627v-7.2633h-13.627v-10.863h21.34v-7.2632h-29.053z"/>
<path id="path53" d="m289.39 1069.3h29.567v-7.3918h-21.854v-37.602h-7.7132z"/>
<path id="path55" d="m356.01 1069.3h8.0989l-16.712-44.994h-7.6489l-16.776 44.994h8.1632l3.5352-9.8343h17.805zm-5.9777-16.776h-12.92l5.0136-13.498c0.44993-1.2855 1.0927-3.2138 1.4784-4.5636 0.32139 1.3498 0.96415 3.2781 1.4784 4.5636z"/>
<path id="path57" d="m383.46 1031.7h12.791v-7.3918h-33.295v7.3918h12.791v37.602h7.7132z"/>
<path id="path59" d="m431.65 1069.3h7.6489v-44.994h-7.6489v18.19h-19.669v-18.19h-7.7132v44.994h7.7132v-19.54h19.669z"/>
<path id="path61" d="m467.44 1070c9.513 0 17.548-4.6279 17.548-17.933v-27.832h-7.7132v27.832c0 8.2274-4.0494 10.541-9.8344 10.541-5.8492 0-9.8344-2.314-9.8344-10.541v-27.832h-7.7132v27.832c0 13.498 8.2917 17.933 17.548 17.933z"/>
<path id="path63" d="m495.53 1024.3v44.994h19.347c11.12 0 15.041-7.0704 15.041-13.305 0-4.0494-2.0569-8.4845-7.3918-10.413 3.9852-1.9283 5.7849-5.4636 5.7849-9.2559 0-6.1063-3.5352-12.02-14.398-12.02zm17.355 18.126h-9.6415v-10.991h10.863c5.335 0 6.4277 2.8282 6.4277 5.4635 0 3.2781-2.5068 5.5278-7.6489 5.5278zm2.4425 19.733h-12.084v-12.598h10.22c7.0062 0 8.6131 3.2782 8.6131 6.6205 0 2.7639-1.4784 5.9778-6.7491 5.9778z"/>
</g>
<g id="g8587" transform="translate(-733.58 141.65)" stroke-linecap="square">
<path id="rect7736" d="m856.01 830.23-66.764 43.449v34.94l33.382 21.723 33.379-21.723v-5e-3l3e-3 3e-3 33.382 21.726 33.379-21.723v-34.94z" color="#000000" color-rendering="auto" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke="#fff" stroke-width="24" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<g id="g7710" transform="matrix(.50222 0 0 .50637 429.63 432.9)" stroke="#000" stroke-linejoin="round">
<path id="rect7688" transform="matrix(.84019 .54229 -.84019 .54229 0 0)" d="m1289.9 279.43h79.11v79.11h-79.11z" stroke-width="3.1667"/>
<path id="rect7690" transform="matrix(.84019 .54229 -.84019 .54229 0 0)" d="m1226.3 215.81h79.11v79.11h-79.11z" fill="#fff" stroke-width="3.1667"/>
<path id="path7692" d="m915.47 824.93-5e-5 69-66.468 42.901 5e-5 -69z" color="#000000" color-rendering="auto" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<path id="path7694" d="m783 824.93 5e-5 69 66.468 42.901-5e-5 -69z" color="#000000" color-rendering="auto" fill="#fff" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
</g>
<g id="g7722" transform="matrix(.50222 0 0 .50637 463.01 454.63)" stroke="#000" stroke-linejoin="round">
<path id="rect7714" transform="matrix(.84019 .54229 -.84019 .54229 0 0)" d="m1289.9 279.43h79.11v79.11h-79.11z" stroke-width="3.1667"/>
<path id="rect7716" transform="matrix(.84019 .54229 -.84019 .54229 0 0)" d="m1226.3 215.81h79.11v79.11h-79.11z" fill="#fff" stroke-width="3.1667"/>
<path id="path7718" d="m915.47 824.93-5e-5 69-66.468 42.901 5e-5 -69z" color="#000000" color-rendering="auto" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<path id="path7720" d="m783 824.93 5e-5 69 66.468 42.901-5e-5 -69z" color="#000000" color-rendering="auto" fill="#fff" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
</g>
<g id="g7734" transform="matrix(.50222 0 0 .50637 396.25 454.63)" stroke="#000" stroke-linejoin="round">
<path id="rect7726" transform="matrix(.84019 .54229 -.84019 .54229 0 0)" d="m1289.9 279.43h79.11v79.11h-79.11z" stroke-width="3.1667"/>
<path id="rect7728" transform="matrix(.84019 .54229 -.84019 .54229 0 0)" d="m1226.3 215.81h79.11v79.11h-79.11z" fill="#fff" stroke-width="3.1667"/>
<path id="path7730" d="m915.47 824.93-5e-5 69-66.468 42.901 5e-5 -69z" color="#000000" color-rendering="auto" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<path id="path7732" d="m783 824.93 5e-5 69 66.468 42.901-5e-5 -69z" color="#000000" color-rendering="auto" fill="#fff" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
</g>
</g>
<g id="text4612" fill="#fff" aria-label="Download On">
<path id="path43" d="m252.19 967.58h6.9973q6.4853 0 9.856 3.584 3.3707 3.584 3.3707 10.283 0 3.328-0.85334 5.9733-0.85333 2.6027-2.5173 4.4373-1.664 1.792-4.096 2.7733-2.432 0.93866-5.5893 0.93866h-7.168zm6.7413 25.088q4.9493 0 7.3813-2.944 2.432-2.944 2.432-8.2773 0-5.3333-2.432-8.1493t-7.3813-2.816h-3.1573v22.187z"/>
<path id="path45" d="m280.55 985.25q0-2.6027 0.768-4.608 0.81066-2.048 2.1333-3.456t3.0293-2.1333q1.7493-0.72533 3.6693-0.72533t3.6267 0.72533q1.7493 0.72534 3.072 2.1333 1.3227 1.408 2.0907 3.456 0.81067 2.0053 0.81067 4.608 0 2.56-0.81067 4.608-0.768 2.0053-2.0907 3.4133-1.3227 1.3653-3.072 2.0907-1.7067 0.72533-3.6267 0.72533t-3.6693-0.72533q-1.7067-0.72533-3.0293-2.0907-1.3227-1.408-2.1333-3.4133-0.768-2.048-0.768-4.608zm3.6267 0q0 1.792 0.42666 3.2427 0.42667 1.4507 1.1947 2.5173 0.81067 1.024 1.92 1.6213 1.1093 0.55467 2.432 0.55467 1.3227 0 2.432-0.55467 1.1093-0.59733 1.8773-1.6213 0.81067-1.0667 1.2373-2.5173 0.42667-1.4507 0.42667-3.2427t-0.42667-3.2427q-0.42666-1.4933-1.2373-2.56-0.768-1.0667-1.8773-1.6213-1.1093-0.59734-2.432-0.59734-1.3227 0-2.432 0.59734-1.1093 0.55466-1.92 1.6213-0.768 1.0667-1.1947 2.56-0.42666 1.4507-0.42666 3.2427z"/>
<path id="path47" d="m306.57 974.84h3.584l3.072 11.989q0.34133 1.4933 0.64 2.9013t0.59733 2.8587h0.17067q0.34133-1.4507 0.68267-2.8587 0.34133-1.4507 0.72533-2.9013l3.2-11.989h3.4133l3.2427 11.989q0.384 1.4933 0.72533 2.9013 0.384 1.408 0.72534 2.8587h0.17066q0.34134-1.4507 0.64-2.8587 0.29867-1.408 0.64-2.9013l3.0293-11.989h3.328l-5.5467 20.736h-4.2667l-2.9867-11.136q-0.384-1.4933-0.72533-2.944-0.29867-1.4507-0.68267-3.0293h-0.17067q-0.34133 1.5787-0.68266 3.072-0.34134 1.4507-0.768 2.944l-2.9013 11.093h-4.096z"/>
<path id="path49" d="m343.68 974.84h2.9013l0.29866 2.9867h0.128q1.4933-1.4933 3.1147-2.4747 1.664-1.024 3.84-1.024 3.2853 0 4.7787 2.048 1.536 2.048 1.536 6.0587v13.141h-3.4987v-12.672q0-2.944-0.93867-4.224-0.93867-1.3227-2.9867-1.3227-1.6213 0-2.8587 0.81067-1.2373 0.81067-2.816 2.3893v15.019h-3.4987z"/>
<path id="path52" d="m371.02 965.19h3.4987v26.453q0 0.85333 0.29866 1.1947 0.29867 0.34133 0.68267 0.34133 0.17067 0 0.29867 0 0.17067 0 0.46933-0.0853l0.46934 2.6453q-0.34134 0.17067-0.81067 0.256-0.46933 0.0853-1.1947 0.0853-2.0053 0-2.8587-1.1947-0.85333-1.1947-0.85333-3.4987z"/>
<path id="path54" d="m384.36 985.25q0-2.6027 0.768-4.608 0.81067-2.048 2.1333-3.456 1.3227-1.408 3.0293-2.1333 1.7493-0.72533 3.6693-0.72533t3.6267 0.72533q1.7493 0.72534 3.072 2.1333t2.0907 3.456q0.81067 2.0053 0.81067 4.608 0 2.56-0.81067 4.608-0.768 2.0053-2.0907 3.4133-1.3227 1.3653-3.072 2.0907-1.7067 0.72533-3.6267 0.72533t-3.6693-0.72533q-1.7067-0.72533-3.0293-2.0907-1.3227-1.408-2.1333-3.4133-0.768-2.048-0.768-4.608zm3.6267 0q0 1.792 0.42667 3.2427t1.1947 2.5173q0.81066 1.024 1.92 1.6213 1.1093 0.55467 2.432 0.55467t2.432-0.55467q1.1093-0.59733 1.8773-1.6213 0.81066-1.0667 1.2373-2.5173t0.42667-3.2427-0.42667-3.2427q-0.42667-1.4933-1.2373-2.56-0.76801-1.0667-1.8773-1.6213-1.1093-0.59734-2.432-0.59734t-2.432 0.59734q-1.1093 0.55466-1.92 1.6213-0.768 1.0667-1.1947 2.56-0.42667 1.4507-0.42667 3.2427z"/>
<path id="path56" d="m411.4 990.2q0-3.4133 3.0293-5.2053 3.072-1.8347 9.728-2.56 0-0.98133-0.21333-1.92-0.17067-0.93867-0.68267-1.664-0.46934-0.72534-1.28-1.152-0.81067-0.46934-2.0907-0.46934-1.8347 0-3.4133 0.68267-1.536 0.68267-2.7733 1.536l-1.408-2.432q1.4507-0.93867 3.5413-1.792 2.0907-0.896 4.608-0.896 3.7973 0 5.504 2.3467 1.7067 2.304 1.7067 6.1867v12.715h-2.9013l-0.29866-2.4747h-0.0853q-1.4933 1.2373-3.2427 2.1333-1.7067 0.85333-3.6267 0.85333-2.6453 0-4.3947-1.536-1.7067-1.536-1.7067-4.352zm3.456-0.256q0 1.792 1.024 2.56 1.0667 0.768 2.6027 0.768 1.4933 0 2.816-0.68266 1.3653-0.72534 2.8587-2.0907v-5.76q-2.6027 0.34134-4.3947 0.81067t-2.9013 1.1093q-1.0667 0.64-1.536 1.4933-0.46933 0.81067-0.46933 1.792z"/>
<path id="path58" d="m436.78 985.25q0-2.5173 0.72534-4.5227 0.768-2.048 2.0053-3.456 1.2373-1.408 2.8587-2.176 1.6213-0.768 3.4133-0.768t3.1147 0.64q1.3227 0.64 2.688 1.7493l-0.17067-3.5413v-7.9787h3.5413v30.379h-2.9013l-0.29867-2.432h-0.128q-1.2373 1.1947-2.8587 2.0907-1.5787 0.85333-3.4133 0.85333-3.9253 0-6.272-2.816-2.304-2.816-2.304-8.0213zm3.6267-0.0427q0 3.7547 1.4933 5.8453 1.4933 2.0907 4.224 2.0907 1.4507 0 2.7307-0.68267 1.28-0.72533 2.56-2.176v-10.837q-1.3227-1.1947-2.56-1.664-1.1947-0.512-2.4747-0.512-1.2373 0-2.3467 0.59733-1.0667 0.55467-1.8773 1.6213-0.81067 1.024-1.28 2.4747-0.46934 1.4507-0.46934 3.2427z"/>
<path id="path60" d="m489.15 996.08q-2.6453 0-4.864-1.024-2.176-1.024-3.7973-2.9013-1.5787-1.92-2.4747-4.608-0.85333-2.7307-0.85333-6.1013t0.85333-6.016q0.896-2.688 2.4747-4.5227 1.6213-1.8773 3.7973-2.8587 2.2187-0.98133 4.864-0.98133 2.6027 0 4.7787 1.024 2.2187 0.98133 3.7973 2.8587 1.6213 1.8347 2.4747 4.5227 0.896 2.6453 0.896 5.9733 0 3.3707-0.896 6.1013-0.85333 2.688-2.4747 4.608-1.5787 1.8773-3.7973 2.9013-2.176 1.024-4.7787 1.024zm0-3.1147q1.8773 0 3.3707-0.81067 1.536-0.81067 2.6027-2.304 1.1093-1.536 1.7067-3.6267 0.59734-2.1333 0.59734-4.7787 0-2.6027-0.59734-4.6933-0.59733-2.0907-1.7067-3.5413-1.0667-1.4507-2.6027-2.2187-1.4933-0.81067-3.3707-0.81067-1.8773 0-3.4133 0.81067-1.536 0.768-2.6453 2.2187-1.0667 1.4507-1.664 3.5413-0.59734 2.0907-0.59734 4.6933 0 2.6453 0.59734 4.7787 0.59733 2.0907 1.664 3.6267 1.1093 1.4933 2.6453 2.304t3.4133 0.81067z"/>
<path id="path62" d="m510.69 974.84h2.9013l0.29866 2.9867h0.128q1.4933-1.4933 3.1147-2.4747 1.664-1.024 3.84-1.024 3.2853 0 4.7787 2.048 1.536 2.048 1.536 6.0587v13.141h-3.4987v-12.672q0-2.944-0.93867-4.224-0.93867-1.3227-2.9867-1.3227-1.6213 0-2.8587 0.81067-1.2373 0.81067-2.816 2.3893v15.019h-3.4987z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 182 56"
style="enable-background:new 0 0 182 56;"
xml:space="preserve"
sodipodi:docname="snapcraft-text.svg"
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs22">
</defs><sodipodi:namedview
id="namedview20"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="true"
inkscape:zoom="4"
inkscape:cx="185.875"
inkscape:cy="15.5"
inkscape:current-layer="Layer_1"><inkscape:grid
type="xygrid"
id="grid189" /></sodipodi:namedview>
<style
type="text/css"
id="style2">
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#252525;stroke:#CDCDCD;}
.st1{fill:#82BEA0;}
.st2{fill:#FA6441;}
.st3{fill:#FFFFFF;}
.st4{font-family:'Ubuntu';}
.st5{font-size:12px;}
.st6{font-size:24px;}
</style>
<title
id="title4">[EN]-snap-store-black</title>
<desc
id="desc6">Created with Sketch.</desc>
<rect
style="fill:#252525;stroke-width:0;stroke-linejoin:round;fill-opacity:1"
id="rect403"
width="182"
height="56"
x="0"
y="0"
ry="0" /><g
id="logo"
transform="translate(8,11)">
<path
id="body"
class="st1"
d="M 19,17.8 V 7.3 l 7.2,3.2 z M 5.2,31.6 14.1,15 18,18.9 Z M 0.2,0.2 18.4,6.8 v 11.6 z" />
<polygon
id="head"
class="st2"
points="19.4,6.8 32.9,12.9 29.9,6.8 " />
</g><text
class="st3 st4 st5"
id="text12"
x="50"
y="17">Get it from the</text><text
class="st3 st4 st6"
id="text14"
x="50"
y="41">Snap Store</text>
<metadata
id="metadata35"><rdf:RDF><cc:Work
rdf:about=""><dc:title>[EN]-snap-store-black</dc:title></cc:Work></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,984 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="600"
height="200"
version="1.1"
id="svg120"
sodipodi:docname="amo-text.svg"
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview122"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
width="600px"
inkscape:zoom="1.4731392"
inkscape:cx="248.10962"
inkscape:cy="139.83743"
inkscape:current-layer="layer2"
inkscape:lockguides="false"
showguides="false" />
<defs
id="defs92">
<radialGradient
id="b"
cx="62.186608"
cy="9.8704298"
r="89.357415"
gradientTransform="scale(1.1089819,0.90172794)"
fx="62.186608"
fy="9.8704298"
gradientUnits="userSpaceOnUse">
<stop
offset=".13"
stop-color="#ffbd4f"
id="stop2" />
<stop
offset=".28"
stop-color="#ff980e"
id="stop4" />
<stop
offset=".47"
stop-color="#ff3750"
id="stop6" />
<stop
offset=".78"
stop-color="#eb0878"
id="stop8" />
<stop
offset=".86"
stop-color="#e50080"
id="stop10" />
</radialGradient>
<radialGradient
id="c"
cx="35.379383"
cy="46.800175"
r="89.357415"
gradientTransform="scale(1.1089819,0.90172794)"
fx="35.379383"
fy="46.800175"
gradientUnits="userSpaceOnUse">
<stop
offset=".3"
stop-color="#960e18"
id="stop13" />
<stop
offset=".35"
stop-color="#b11927"
stop-opacity=".74"
id="stop15" />
<stop
offset=".43"
stop-color="#db293d"
stop-opacity=".34"
id="stop17" />
<stop
offset=".5"
stop-color="#f5334b"
stop-opacity=".09"
id="stop19" />
<stop
offset=".53"
stop-color="#ff3750"
stop-opacity="0"
id="stop21" />
</radialGradient>
<radialGradient
id="d"
cx="62.100616"
cy="-2.8990997"
r="33.903412"
gradientTransform="scale(0.76744488,1.3030252)"
fx="62.100616"
fy="-2.8990997"
gradientUnits="userSpaceOnUse">
<stop
offset=".13"
stop-color="#fff44f"
id="stop24" />
<stop
offset=".53"
stop-color="#ff980e"
id="stop26" />
</radialGradient>
<radialGradient
id="e"
cx="31.922279"
cy="60.196252"
r="36.045489"
gradientTransform="scale(0.95512645,1.0469818)"
fx="31.922279"
fy="60.196252"
gradientUnits="userSpaceOnUse">
<stop
offset=".35"
stop-color="#3a8ee6"
id="stop29" />
<stop
offset=".67"
stop-color="#9059ff"
id="stop31" />
<stop
offset="1"
stop-color="#c139e6"
id="stop33" />
</radialGradient>
<radialGradient
id="f"
cx="42.461979"
cy="32.401577"
r="21.266837"
gradientTransform="scale(0.95512645,1.0469818)"
fx="42.461979"
fy="32.401577"
gradientUnits="userSpaceOnUse">
<stop
offset=".21"
stop-color="#9059ff"
stop-opacity="0"
id="stop36" />
<stop
offset=".97"
stop-color="#6e008b"
stop-opacity=".6"
id="stop38" />
</radialGradient>
<radialGradient
id="g"
cx="37.516169"
cy="5.9350055"
r="27.420904"
gradientTransform="scale(0.99815093,1.0018525)"
fx="37.516169"
fy="5.9350055"
gradientUnits="userSpaceOnUse">
<stop
offset=".1"
stop-color="#ffe226"
id="stop41" />
<stop
offset=".79"
stop-color="#ff7139"
id="stop43" />
</radialGradient>
<radialGradient
id="h"
cx="57.20315"
cy="-13.152274"
r="119.69982"
gradientTransform="scale(1.091384,0.91626777)"
fx="57.20315"
fy="-13.152274"
gradientUnits="userSpaceOnUse">
<stop
offset=".11"
stop-color="#fff44f"
id="stop46" />
<stop
offset=".46"
stop-color="#ff980e"
id="stop48" />
<stop
offset=".72"
stop-color="#ff3647"
id="stop50" />
<stop
offset=".9"
stop-color="#e31587"
id="stop52" />
</radialGradient>
<radialGradient
id="i"
cx="74.835756"
cy="-6.704823"
r="125.78617"
gradientTransform="scale(0.68813893,1.4531949)"
fx="74.835756"
fy="-6.704823"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#fff44f"
id="stop55" />
<stop
offset=".3"
stop-color="#ff980e"
id="stop57" />
<stop
offset=".57"
stop-color="#ff3647"
id="stop59" />
<stop
offset=".74"
stop-color="#e31587"
id="stop61" />
</radialGradient>
<radialGradient
id="j"
cx="37.372962"
cy="16.030757"
r="74.327898"
gradientTransform="scale(1.0094867,0.99060245)"
fx="37.372962"
fy="16.030757"
gradientUnits="userSpaceOnUse">
<stop
offset=".14"
stop-color="#fff44f"
id="stop64" />
<stop
offset=".48"
stop-color="#ff980e"
id="stop66" />
<stop
offset=".66"
stop-color="#ff3647"
id="stop68" />
<stop
offset=".9"
stop-color="#e31587"
id="stop70" />
</radialGradient>
<radialGradient
id="k"
cx="54.133552"
cy="21.245953"
r="85.335711"
gradientTransform="scale(1.0567198,0.94632469)"
fx="54.133552"
fy="21.245953"
gradientUnits="userSpaceOnUse">
<stop
offset=".09"
stop-color="#fff44f"
id="stop73" />
<stop
offset=".63"
stop-color="#ff980e"
id="stop75" />
</radialGradient>
<linearGradient
id="a"
x1="69.971664"
y1="12.1998"
x2="8.7173734"
y2="73.257384"
gradientTransform="scale(0.98393682,1.0163254)"
gradientUnits="userSpaceOnUse">
<stop
offset=".05"
stop-color="#fff44f"
id="stop78" />
<stop
offset=".37"
stop-color="#ff980e"
id="stop80" />
<stop
offset=".53"
stop-color="#ff3647"
id="stop82" />
<stop
offset=".7"
stop-color="#e31587"
id="stop84" />
</linearGradient>
<linearGradient
id="l"
x1="64.267187"
y1="11.019563"
x2="15.484065"
y2="66.097279"
gradientTransform="scale(0.98393682,1.0163254)"
gradientUnits="userSpaceOnUse">
<stop
offset=".17"
stop-color="#fff44f"
stop-opacity=".8"
id="stop87" />
<stop
offset=".6"
stop-color="#fff44f"
stop-opacity="0"
id="stop89" />
</linearGradient>
<linearGradient
id="a-3"
x1="69.971664"
y1="12.1998"
x2="8.7173738"
y2="73.257385"
gradientTransform="scale(0.98393682,1.0163254)"
gradientUnits="userSpaceOnUse">
<stop
offset=".05"
stop-color="#fff44f"
id="stop78-6" />
<stop
offset=".37"
stop-color="#ff980e"
id="stop80-7" />
<stop
offset=".53"
stop-color="#ff3647"
id="stop82-5" />
<stop
offset=".7"
stop-color="#e31587"
id="stop84-3" />
</linearGradient>
<radialGradient
id="b-5"
cx="62.186607"
cy="9.87043"
r="89.357414"
gradientTransform="scale(1.1089819,0.90172794)"
fx="62.186607"
fy="9.87043"
gradientUnits="userSpaceOnUse">
<stop
offset=".13"
stop-color="#ffbd4f"
id="stop2-6" />
<stop
offset=".28"
stop-color="#ff980e"
id="stop4-2" />
<stop
offset=".47"
stop-color="#ff3750"
id="stop6-9" />
<stop
offset=".78"
stop-color="#eb0878"
id="stop8-1" />
<stop
offset=".86"
stop-color="#e50080"
id="stop10-2" />
</radialGradient>
<radialGradient
id="c-7"
cx="35.379383"
cy="46.800175"
r="89.357414"
gradientTransform="scale(1.1089819,0.90172794)"
fx="35.379383"
fy="46.800175"
gradientUnits="userSpaceOnUse">
<stop
offset=".3"
stop-color="#960e18"
id="stop13-0" />
<stop
offset=".35"
stop-color="#b11927"
stop-opacity=".74"
id="stop15-9" />
<stop
offset=".43"
stop-color="#db293d"
stop-opacity=".34"
id="stop17-3" />
<stop
offset=".5"
stop-color="#f5334b"
stop-opacity=".09"
id="stop19-6" />
<stop
offset=".53"
stop-color="#ff3750"
stop-opacity="0"
id="stop21-0" />
</radialGradient>
<radialGradient
id="d-6"
cx="62.100616"
cy="-2.8990996"
r="33.903412"
gradientTransform="scale(0.76744488,1.3030252)"
fx="62.100616"
fy="-2.8990996"
gradientUnits="userSpaceOnUse">
<stop
offset=".13"
stop-color="#fff44f"
id="stop24-2" />
<stop
offset=".53"
stop-color="#ff980e"
id="stop26-6" />
</radialGradient>
<radialGradient
id="e-1"
cx="31.922279"
cy="60.196251"
r="36.04549"
gradientTransform="scale(0.95512645,1.0469818)"
fx="31.922279"
fy="60.196251"
gradientUnits="userSpaceOnUse">
<stop
offset=".35"
stop-color="#3a8ee6"
id="stop29-8" />
<stop
offset=".67"
stop-color="#9059ff"
id="stop31-7" />
<stop
offset="1"
stop-color="#c139e6"
id="stop33-9" />
</radialGradient>
<radialGradient
id="f-2"
cx="42.461979"
cy="32.401577"
r="21.266836"
gradientTransform="scale(0.95512645,1.0469818)"
fx="42.461979"
fy="32.401577"
gradientUnits="userSpaceOnUse">
<stop
offset=".21"
stop-color="#9059ff"
stop-opacity="0"
id="stop36-0" />
<stop
offset=".97"
stop-color="#6e008b"
stop-opacity=".6"
id="stop38-2" />
</radialGradient>
<radialGradient
id="g-3"
cx="37.516171"
cy="5.9350057"
r="27.420904"
gradientTransform="scale(0.99815093,1.0018525)"
fx="37.516171"
fy="5.9350057"
gradientUnits="userSpaceOnUse">
<stop
offset=".1"
stop-color="#ffe226"
id="stop41-7" />
<stop
offset=".79"
stop-color="#ff7139"
id="stop43-5" />
</radialGradient>
<radialGradient
id="h-9"
cx="57.203152"
cy="-13.152274"
r="119.69982"
gradientTransform="scale(1.091384,0.91626777)"
fx="57.203152"
fy="-13.152274"
gradientUnits="userSpaceOnUse">
<stop
offset=".11"
stop-color="#fff44f"
id="stop46-2" />
<stop
offset=".46"
stop-color="#ff980e"
id="stop48-2" />
<stop
offset=".72"
stop-color="#ff3647"
id="stop50-8" />
<stop
offset=".9"
stop-color="#e31587"
id="stop52-9" />
</radialGradient>
<radialGradient
id="i-7"
cx="74.835754"
cy="-6.704823"
r="125.78617"
gradientTransform="scale(0.68813893,1.4531949)"
fx="74.835754"
fy="-6.704823"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#fff44f"
id="stop55-3" />
<stop
offset=".3"
stop-color="#ff980e"
id="stop57-6" />
<stop
offset=".57"
stop-color="#ff3647"
id="stop59-1" />
<stop
offset=".74"
stop-color="#e31587"
id="stop61-2" />
</radialGradient>
<radialGradient
id="j-9"
cx="37.372963"
cy="16.030758"
r="74.327896"
gradientTransform="scale(1.0094867,0.99060245)"
fx="37.372963"
fy="16.030758"
gradientUnits="userSpaceOnUse">
<stop
offset=".14"
stop-color="#fff44f"
id="stop64-3" />
<stop
offset=".48"
stop-color="#ff980e"
id="stop66-1" />
<stop
offset=".66"
stop-color="#ff3647"
id="stop68-9" />
<stop
offset=".9"
stop-color="#e31587"
id="stop70-4" />
</radialGradient>
<radialGradient
id="k-7"
cx="54.133553"
cy="21.245953"
r="85.335709"
gradientTransform="scale(1.0567198,0.94632469)"
fx="54.133553"
fy="21.245953"
gradientUnits="userSpaceOnUse">
<stop
offset=".09"
stop-color="#fff44f"
id="stop73-8" />
<stop
offset=".63"
stop-color="#ff980e"
id="stop75-4" />
</radialGradient>
<linearGradient
id="l-5"
x1="64.267189"
y1="11.019563"
x2="15.484065"
y2="66.097282"
gradientTransform="scale(0.98393682,1.0163254)"
gradientUnits="userSpaceOnUse">
<stop
offset=".17"
stop-color="#fff44f"
stop-opacity=".8"
id="stop87-0" />
<stop
offset=".6"
stop-color="#fff44f"
stop-opacity="0"
id="stop89-3" />
</linearGradient>
<linearGradient
id="a-3-6"
x1="69.971664"
y1="12.1998"
x2="8.7173738"
y2="73.257385"
gradientTransform="scale(0.98393682,1.0163254)"
gradientUnits="userSpaceOnUse">
<stop
offset=".05"
stop-color="#fff44f"
id="stop78-6-1" />
<stop
offset=".37"
stop-color="#ff980e"
id="stop80-7-0" />
<stop
offset=".53"
stop-color="#ff3647"
id="stop82-5-6" />
<stop
offset=".7"
stop-color="#e31587"
id="stop84-3-3" />
</linearGradient>
<radialGradient
id="b-5-2"
cx="62.186607"
cy="9.87043"
r="89.357414"
gradientTransform="scale(1.1089819,0.90172794)"
fx="62.186607"
fy="9.87043"
gradientUnits="userSpaceOnUse">
<stop
offset=".13"
stop-color="#ffbd4f"
id="stop2-6-0" />
<stop
offset=".28"
stop-color="#ff980e"
id="stop4-2-6" />
<stop
offset=".47"
stop-color="#ff3750"
id="stop6-9-1" />
<stop
offset=".78"
stop-color="#eb0878"
id="stop8-1-5" />
<stop
offset=".86"
stop-color="#e50080"
id="stop10-2-5" />
</radialGradient>
<radialGradient
id="c-7-4"
cx="35.379383"
cy="46.800175"
r="89.357414"
gradientTransform="scale(1.1089819,0.90172794)"
fx="35.379383"
fy="46.800175"
gradientUnits="userSpaceOnUse">
<stop
offset=".3"
stop-color="#960e18"
id="stop13-0-7" />
<stop
offset=".35"
stop-color="#b11927"
stop-opacity=".74"
id="stop15-9-6" />
<stop
offset=".43"
stop-color="#db293d"
stop-opacity=".34"
id="stop17-3-5" />
<stop
offset=".5"
stop-color="#f5334b"
stop-opacity=".09"
id="stop19-6-6" />
<stop
offset=".53"
stop-color="#ff3750"
stop-opacity="0"
id="stop21-0-9" />
</radialGradient>
<radialGradient
id="d-6-3"
cx="62.100616"
cy="-2.8990996"
r="33.903412"
gradientTransform="scale(0.76744488,1.3030252)"
fx="62.100616"
fy="-2.8990996"
gradientUnits="userSpaceOnUse">
<stop
offset=".13"
stop-color="#fff44f"
id="stop24-2-7" />
<stop
offset=".53"
stop-color="#ff980e"
id="stop26-6-4" />
</radialGradient>
<radialGradient
id="e-1-5"
cx="31.922279"
cy="60.196251"
r="36.04549"
gradientTransform="scale(0.95512645,1.0469818)"
fx="31.922279"
fy="60.196251"
gradientUnits="userSpaceOnUse">
<stop
offset=".35"
stop-color="#3a8ee6"
id="stop29-8-2" />
<stop
offset=".67"
stop-color="#9059ff"
id="stop31-7-5" />
<stop
offset="1"
stop-color="#c139e6"
id="stop33-9-4" />
</radialGradient>
<radialGradient
id="f-2-7"
cx="42.461979"
cy="32.401577"
r="21.266836"
gradientTransform="scale(0.95512645,1.0469818)"
fx="42.461979"
fy="32.401577"
gradientUnits="userSpaceOnUse">
<stop
offset=".21"
stop-color="#9059ff"
stop-opacity="0"
id="stop36-0-4" />
<stop
offset=".97"
stop-color="#6e008b"
stop-opacity=".6"
id="stop38-2-4" />
</radialGradient>
<radialGradient
id="g-3-3"
cx="37.516171"
cy="5.9350057"
r="27.420904"
gradientTransform="scale(0.99815093,1.0018525)"
fx="37.516171"
fy="5.9350057"
gradientUnits="userSpaceOnUse">
<stop
offset=".1"
stop-color="#ffe226"
id="stop41-7-0" />
<stop
offset=".79"
stop-color="#ff7139"
id="stop43-5-7" />
</radialGradient>
<radialGradient
id="h-9-8"
cx="57.203152"
cy="-13.152274"
r="119.69982"
gradientTransform="scale(1.091384,0.91626777)"
fx="57.203152"
fy="-13.152274"
gradientUnits="userSpaceOnUse">
<stop
offset=".11"
stop-color="#fff44f"
id="stop46-2-6" />
<stop
offset=".46"
stop-color="#ff980e"
id="stop48-2-8" />
<stop
offset=".72"
stop-color="#ff3647"
id="stop50-8-8" />
<stop
offset=".9"
stop-color="#e31587"
id="stop52-9-4" />
</radialGradient>
<radialGradient
id="i-7-3"
cx="74.835754"
cy="-6.704823"
r="125.78617"
gradientTransform="scale(0.68813893,1.4531949)"
fx="74.835754"
fy="-6.704823"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
stop-color="#fff44f"
id="stop55-3-1" />
<stop
offset=".3"
stop-color="#ff980e"
id="stop57-6-4" />
<stop
offset=".57"
stop-color="#ff3647"
id="stop59-1-9" />
<stop
offset=".74"
stop-color="#e31587"
id="stop61-2-2" />
</radialGradient>
<radialGradient
id="j-9-0"
cx="37.372963"
cy="16.030758"
r="74.327896"
gradientTransform="scale(1.0094867,0.99060245)"
fx="37.372963"
fy="16.030758"
gradientUnits="userSpaceOnUse">
<stop
offset=".14"
stop-color="#fff44f"
id="stop64-3-6" />
<stop
offset=".48"
stop-color="#ff980e"
id="stop66-1-8" />
<stop
offset=".66"
stop-color="#ff3647"
id="stop68-9-9" />
<stop
offset=".9"
stop-color="#e31587"
id="stop70-4-2" />
</radialGradient>
<radialGradient
id="k-7-6"
cx="54.133553"
cy="21.245953"
r="85.335709"
gradientTransform="scale(1.0567198,0.94632469)"
fx="54.133553"
fy="21.245953"
gradientUnits="userSpaceOnUse">
<stop
offset=".09"
stop-color="#fff44f"
id="stop73-8-6" />
<stop
offset=".63"
stop-color="#ff980e"
id="stop75-4-4" />
</radialGradient>
<linearGradient
id="l-5-9"
x1="64.267189"
y1="11.019563"
x2="15.484065"
y2="66.097282"
gradientTransform="scale(0.98393682,1.0163254)"
gradientUnits="userSpaceOnUse">
<stop
offset=".17"
stop-color="#fff44f"
stop-opacity=".8"
id="stop87-0-5" />
<stop
offset=".6"
stop-color="#fff44f"
stop-opacity="0"
id="stop89-3-0" />
</linearGradient>
</defs>
<g
inkscape:groupmode="layer"
id="layer1"
inkscape:label="background">
<rect
style="fill:#20123a;fill-opacity:1;stroke-width:0;stroke-linejoin:round"
id="rect62650"
width="600"
height="200"
x="0"
y="0"
ry="0" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Layer">
<g
id="g3094"
transform="matrix(1.6256711,0,0,1.6256711,32.886628,34.993358)">
<path
d="m 75.916,26.831 c -1.684,-4.052 -5.1,-8.427 -7.775,-9.81 a 40.266,40.266 0 0 1 3.925,11.764 l 0.007,0.065 C 67.691,17.925 60.26,13.52 54.191,3.928 a 47.099,47.099 0 0 1 -0.913,-1.484 12.24,12.24 0 0 1 -0.427,-0.8 7.053,7.053 0 0 1 -0.578,-1.535 0.1,0.1 0 0 0 -0.088,-0.1 0.138,0.138 0 0 0 -0.073,0 c -0.005,0 -0.013,0.009 -0.019,0.011 -0.006,0.002 -0.019,0.011 -0.028,0.015 L 52.08,0.009 c -9.735,5.7 -13.038,16.252 -13.342,21.53 a 19.387,19.387 0 0 0 -10.666,4.111 11.587,11.587 0 0 0 -1,-0.758 17.968,17.968 0 0 1 -0.109,-9.473 28.705,28.705 0 0 0 -9.329,7.21 h -0.018 c -1.536,-1.947 -1.428,-8.367 -1.34,-9.708 a 6.928,6.928 0 0 0 -1.294,0.687 28.225,28.225 0 0 0 -3.788,3.245 33.845,33.845 0 0 0 -3.623,4.347 v 0.006 -0.007 a 32.733,32.733 0 0 0 -5.2,11.743 l -0.052,0.256 a 61.89,61.89 0 0 0 -0.381,2.42 c 0,0.029 -0.006,0.056 -0.009,0.085 A 36.937,36.937 0 0 0 1.3,41.046 v 0.2 A 38.759,38.759 0 0 0 78.254,47.8 c 0.065,-0.5 0.118,-0.995 0.176,-1.5 A 39.857,39.857 0 0 0 75.916,26.831 Z m -44.67,30.338 c 0.181,0.087 0.351,0.181 0.537,0.264 l 0.027,0.017 q -0.282,-0.135 -0.564,-0.281 z m 8.878,-23.376 z m 31.952,-4.934 v -0.037 l 0.007,0.041 z"
fill="url(#a)"
id="path94"
style="fill:url(#a-3-6)" />
<path
d="m 75.916,26.831 c -1.684,-4.052 -5.1,-8.427 -7.775,-9.81 a 40.266,40.266 0 0 1 3.925,11.764 v 0.037 l 0.007,0.041 A 35.1,35.1 0 0 1 70.867,55.021 C 66.425,64.552 55.673,74.321 38.843,73.846 20.658,73.331 4.643,59.837 1.649,42.163 c -0.545,-2.787 0,-4.2 0.274,-6.465 A 28.876,28.876 0 0 0 1.3,41.046 v 0.2 A 38.759,38.759 0 0 0 78.254,47.8 c 0.065,-0.5 0.118,-0.995 0.176,-1.5 A 39.857,39.857 0 0 0 75.916,26.831 Z"
fill="url(#b)"
id="path96"
style="fill:url(#b-5-2)" />
<path
d="m 75.916,26.831 c -1.684,-4.052 -5.1,-8.427 -7.775,-9.81 a 40.266,40.266 0 0 1 3.925,11.764 v 0.037 l 0.007,0.041 A 35.1,35.1 0 0 1 70.867,55.021 C 66.425,64.552 55.673,74.321 38.843,73.846 20.658,73.331 4.643,59.837 1.649,42.163 c -0.545,-2.787 0,-4.2 0.274,-6.465 A 28.876,28.876 0 0 0 1.3,41.046 v 0.2 A 38.759,38.759 0 0 0 78.254,47.8 c 0.065,-0.5 0.118,-0.995 0.176,-1.5 A 39.857,39.857 0 0 0 75.916,26.831 Z"
fill="url(#c)"
id="path98"
style="fill:url(#c-7-4)" />
<path
d="m 57.082,31.387 c 0.084,0.059 0.162,0.118 0.241,0.177 a 21.1,21.1 0 0 0 -3.6,-4.695 C 41.677,14.821 50.566,0.746 52.065,0.031 L 52.08,0.009 c -9.735,5.7 -13.038,16.252 -13.342,21.53 0.452,-0.031 0.9,-0.069 1.362,-0.069 a 19.56,19.56 0 0 1 16.982,9.917 z"
fill="url(#d)"
id="path100"
style="fill:url(#d-6-3)" />
<path
d="m 40.125,33.793 c -0.064,0.964 -3.47,4.289 -4.661,4.289 -11.021,0 -12.81,6.667 -12.81,6.667 0.488,5.614 4.4,10.238 9.129,12.684 a 13.44,13.44 0 0 0 0.654,0.312 q 0.569,0.252 1.138,0.466 a 17.235,17.235 0 0 0 5.043,0.973 c 19.317,0.906 23.059,-23.1 9.119,-30.066 A 13.38,13.38 0 0 1 57.082,31.387 19.56,19.56 0 0 0 40.1,21.47 c -0.46,0 -0.91,0.038 -1.362,0.069 A 19.387,19.387 0 0 0 28.072,25.65 c 0.591,0.5 1.258,1.168 2.663,2.553 2.63,2.591 9.375,5.275 9.39,5.59 z"
fill="url(#e)"
id="path102"
style="fill:url(#e-1-5)" />
<path
d="m 40.125,33.793 c -0.064,0.964 -3.47,4.289 -4.661,4.289 -11.021,0 -12.81,6.667 -12.81,6.667 0.488,5.614 4.4,10.238 9.129,12.684 a 13.44,13.44 0 0 0 0.654,0.312 q 0.569,0.252 1.138,0.466 a 17.235,17.235 0 0 0 5.043,0.973 c 19.317,0.906 23.059,-23.1 9.119,-30.066 A 13.38,13.38 0 0 1 57.082,31.387 19.56,19.56 0 0 0 40.1,21.47 c -0.46,0 -0.91,0.038 -1.362,0.069 A 19.387,19.387 0 0 0 28.072,25.65 c 0.591,0.5 1.258,1.168 2.663,2.553 2.63,2.591 9.375,5.275 9.39,5.59 z"
fill="url(#f)"
id="path104"
style="fill:url(#f-2-7)" />
<path
d="m 26.265,24.361 a 24.874,24.874 0 0 1 0.8,0.531 17.968,17.968 0 0 1 -0.109,-9.473 28.705,28.705 0 0 0 -9.329,7.21 c 0.189,-0.005 5.811,-0.106 8.638,1.732 z"
fill="url(#g)"
id="path106"
style="fill:url(#g-3-3)" />
<path
d="m 1.654,42.163 c 2.991,17.674 19.009,31.168 37.194,31.683 16.83,0.476 27.582,-9.294 32.024,-18.825 a 35.1,35.1 0 0 0 1.206,-26.158 v -0.037 c 0,-0.029 -0.006,-0.046 0,-0.037 l 0.007,0.065 c 1.375,8.977 -3.191,17.674 -10.329,23.555 l -0.022,0.05 c -13.908,11.327 -27.218,6.834 -29.912,5 Q 31.54,57.324 31.258,57.178 C 23.149,53.302 19.799,45.914 20.517,39.578 a 9.953,9.953 0 0 1 -9.181,-5.775 14.618,14.618 0 0 1 14.249,-0.572 19.3,19.3 0 0 0 14.552,0.572 c -0.015,-0.315 -6.76,-3 -9.39,-5.59 -1.405,-1.385 -2.072,-2.052 -2.663,-2.553 a 11.587,11.587 0 0 0 -1,-0.758 54.245,54.245 0 0 0 -0.8,-0.531 c -2.827,-1.838 -8.449,-1.737 -8.635,-1.732 h -0.018 c -1.536,-1.947 -1.428,-8.367 -1.34,-9.708 a 6.928,6.928 0 0 0 -1.294,0.687 28.225,28.225 0 0 0 -3.788,3.245 33.845,33.845 0 0 0 -3.638,4.337 v 0.006 -0.007 a 32.733,32.733 0 0 0 -5.2,11.743 c -0.019,0.079 -1.396,6.099 -0.717,9.221 z"
fill="url(#h)"
id="path108"
style="fill:url(#h-9-8)" />
<path
d="m 53.725,26.869 a 21.1,21.1 0 0 1 3.6,4.7 8.083,8.083 0 0 1 0.581,0.476 c 8.787,8.1 4.183,19.55 3.84,20.365 7.138,-5.881 11.7,-14.578 10.329,-23.555 C 67.691,17.925 60.26,13.52 54.191,3.928 a 47.099,47.099 0 0 1 -0.913,-1.484 12.24,12.24 0 0 1 -0.427,-0.8 7.053,7.053 0 0 1 -0.578,-1.535 0.1,0.1 0 0 0 -0.088,-0.1 0.138,0.138 0 0 0 -0.073,0 c -0.005,0 -0.013,0.009 -0.019,0.011 -0.006,0.002 -0.019,0.011 -0.028,0.015 -1.499,0.711 -10.388,14.786 1.66,26.834 z"
fill="url(#i)"
id="path110"
style="fill:url(#i-7-3)" />
<path
d="M 57.9,32.04 A 8.083,8.083 0 0 0 57.319,31.564 C 57.24,31.505 57.162,31.446 57.078,31.387 a 13.38,13.38 0 0 0 -9.345,-2.269 c 13.94,6.97 10.2,30.972 -9.119,30.066 a 17.235,17.235 0 0 1 -5.043,-0.973 q -0.569,-0.213 -1.138,-0.466 a 14.44,14.44 0 0 1 -0.654,-0.312 l 0.027,0.017 c 2.694,1.839 16,6.332 29.912,-5 L 61.74,52.4 C 62.087,51.59 66.691,40.137 57.9,32.04 Z"
fill="url(#j)"
id="path112"
style="fill:url(#j-9-0)" />
<path
d="m 22.654,44.749 c 0,0 1.789,-6.667 12.81,-6.667 1.191,0 4.6,-3.325 4.661,-4.289 a 19.3,19.3 0 0 1 -14.552,-0.572 14.618,14.618 0 0 0 -14.249,0.572 9.953,9.953 0 0 0 9.181,5.775 c -0.718,6.337 2.632,13.725 10.741,17.6 0.181,0.087 0.351,0.181 0.537,0.264 -4.733,-2.445 -8.641,-7.069 -9.129,-12.683 z"
fill="url(#k)"
id="path114"
style="fill:url(#k-7-6)" />
<path
d="m 75.916,26.831 c -1.684,-4.052 -5.1,-8.427 -7.775,-9.81 a 40.266,40.266 0 0 1 3.925,11.764 l 0.007,0.065 C 67.691,17.925 60.26,13.52 54.191,3.928 a 47.099,47.099 0 0 1 -0.913,-1.484 12.24,12.24 0 0 1 -0.427,-0.8 7.053,7.053 0 0 1 -0.578,-1.535 0.1,0.1 0 0 0 -0.088,-0.1 0.138,0.138 0 0 0 -0.073,0 c -0.005,0 -0.013,0.009 -0.019,0.011 -0.006,0.002 -0.019,0.011 -0.028,0.015 L 52.08,0.009 c -9.735,5.7 -13.038,16.252 -13.342,21.53 0.452,-0.031 0.9,-0.069 1.362,-0.069 a 19.56,19.56 0 0 1 16.982,9.917 13.38,13.38 0 0 0 -9.345,-2.269 c 13.94,6.97 10.2,30.972 -9.119,30.066 a 17.235,17.235 0 0 1 -5.043,-0.973 q -0.569,-0.213 -1.138,-0.466 a 14.44,14.44 0 0 1 -0.654,-0.312 l 0.027,0.017 q -0.282,-0.135 -0.564,-0.281 c 0.181,0.087 0.351,0.181 0.537,0.264 -4.733,-2.446 -8.641,-7.07 -9.129,-12.684 0,0 1.789,-6.667 12.81,-6.667 1.191,0 4.6,-3.325 4.661,-4.289 -0.015,-0.315 -6.76,-3 -9.39,-5.59 -1.405,-1.385 -2.072,-2.052 -2.663,-2.553 a 11.587,11.587 0 0 0 -1,-0.758 17.968,17.968 0 0 1 -0.109,-9.473 28.705,28.705 0 0 0 -9.329,7.21 h -0.018 c -1.536,-1.947 -1.428,-8.367 -1.34,-9.708 a 6.928,6.928 0 0 0 -1.294,0.687 28.225,28.225 0 0 0 -3.788,3.245 33.845,33.845 0 0 0 -3.623,4.347 v 0.006 -0.007 a 32.733,32.733 0 0 0 -5.2,11.743 l -0.052,0.256 c -0.073,0.341 -0.4,2.073 -0.447,2.445 0,0.028 0,-0.029 0,0 A 45.094,45.094 0 0 0 1.3,41.046 v 0.2 A 38.759,38.759 0 0 0 78.254,47.8 c 0.065,-0.5 0.118,-0.995 0.176,-1.5 A 39.857,39.857 0 0 0 75.916,26.831 Z m -3.845,1.991 0.007,0.041 z"
fill="url(#l)"
id="path116"
style="fill:url(#l-5-9)" />
</g>
<text
xml:space="preserve"
style="font-size:40px;line-height:1.25;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;letter-spacing:0.4px;text-anchor:start;fill:#ffffff"
x="191.32001"
y="80.559998"
id="text4352"><tspan
sodipodi:role="line"
x="191.32001"
y="80.559998"
id="tspan4728"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:40px;font-family:'Sharp Sans';-inkscape-font-specification:'Sharp Sans Medium';text-align:start;text-anchor:start;fill:#ffffff">Installer depuis</tspan></text>
<text
xml:space="preserve"
style="font-size:50.6667px;line-height:1.25;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;text-align:start;letter-spacing:-0.3px;text-anchor:start;fill:#ffffff"
x="191.75732"
y="148.92535"
id="text34281"><tspan
sodipodi:role="line"
id="tspan34279"
x="191.75732"
y="148.92535"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.6667px;font-family:'Sharp Sans';-inkscape-font-specification:'Sharp Sans';text-align:start;text-anchor:start;fill:#ffffff"><tspan
style="font-weight:bold;font-size:50.6667px;text-align:start;text-anchor:start"
id="tspan16683">Firefox</tspan> Addons</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -0,0 +1,119 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="svg120" width="600" height="200" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs id="defs92">
<linearGradient id="a-3-6" x1="69.972" x2="8.7174" y1="12.2" y2="73.257" gradientTransform="scale(.98394 1.0163)" gradientUnits="userSpaceOnUse">
<stop id="stop78-6-1" stop-color="#fff44f" offset=".05"/>
<stop id="stop80-7-0" stop-color="#ff980e" offset=".37"/>
<stop id="stop82-5-6" stop-color="#ff3647" offset=".53"/>
<stop id="stop84-3-3" stop-color="#e31587" offset=".7"/>
</linearGradient>
<radialGradient id="b-5-2" cx="62.187" cy="9.8704" r="89.357" gradientTransform="scale(1.109 .90173)" gradientUnits="userSpaceOnUse">
<stop id="stop2-6-0" stop-color="#ffbd4f" offset=".13"/>
<stop id="stop4-2-6" stop-color="#ff980e" offset=".28"/>
<stop id="stop6-9-1" stop-color="#ff3750" offset=".47"/>
<stop id="stop8-1-5" stop-color="#eb0878" offset=".78"/>
<stop id="stop10-2-5" stop-color="#e50080" offset=".86"/>
</radialGradient>
<radialGradient id="c-7-4" cx="35.379" cy="46.8" r="89.357" gradientTransform="scale(1.109 .90173)" gradientUnits="userSpaceOnUse">
<stop id="stop13-0-7" stop-color="#960e18" offset=".3"/>
<stop id="stop15-9-6" stop-color="#b11927" stop-opacity=".74" offset=".35"/>
<stop id="stop17-3-5" stop-color="#db293d" stop-opacity=".34" offset=".43"/>
<stop id="stop19-6-6" stop-color="#f5334b" stop-opacity=".09" offset=".5"/>
<stop id="stop21-0-9" stop-color="#ff3750" stop-opacity="0" offset=".53"/>
</radialGradient>
<radialGradient id="d-6-3" cx="62.101" cy="-2.8991" r="33.903" gradientTransform="scale(.76744 1.303)" gradientUnits="userSpaceOnUse">
<stop id="stop24-2-7" stop-color="#fff44f" offset=".13"/>
<stop id="stop26-6-4" stop-color="#ff980e" offset=".53"/>
</radialGradient>
<radialGradient id="e-1-5" cx="31.922" cy="60.196" r="36.045" gradientTransform="scale(.95513 1.047)" gradientUnits="userSpaceOnUse">
<stop id="stop29-8-2" stop-color="#3a8ee6" offset=".35"/>
<stop id="stop31-7-5" stop-color="#9059ff" offset=".67"/>
<stop id="stop33-9-4" stop-color="#c139e6" offset="1"/>
</radialGradient>
<radialGradient id="f-2-7" cx="42.462" cy="32.402" r="21.267" gradientTransform="scale(.95513 1.047)" gradientUnits="userSpaceOnUse">
<stop id="stop36-0-4" stop-color="#9059ff" stop-opacity="0" offset=".21"/>
<stop id="stop38-2-4" stop-color="#6e008b" stop-opacity=".6" offset=".97"/>
</radialGradient>
<radialGradient id="g-3-3" cx="37.516" cy="5.935" r="27.421" gradientTransform="scale(.99815 1.0019)" gradientUnits="userSpaceOnUse">
<stop id="stop41-7-0" stop-color="#ffe226" offset=".1"/>
<stop id="stop43-5-7" stop-color="#ff7139" offset=".79"/>
</radialGradient>
<radialGradient id="h-9-8" cx="57.203" cy="-13.152" r="119.7" gradientTransform="scale(1.0914 .91627)" gradientUnits="userSpaceOnUse">
<stop id="stop46-2-6" stop-color="#fff44f" offset=".11"/>
<stop id="stop48-2-8" stop-color="#ff980e" offset=".46"/>
<stop id="stop50-8-8" stop-color="#ff3647" offset=".72"/>
<stop id="stop52-9-4" stop-color="#e31587" offset=".9"/>
</radialGradient>
<radialGradient id="i-7-3" cx="74.836" cy="-6.7048" r="125.79" gradientTransform="scale(.68814 1.4532)" gradientUnits="userSpaceOnUse">
<stop id="stop55-3-1" stop-color="#fff44f" offset="0"/>
<stop id="stop57-6-4" stop-color="#ff980e" offset=".3"/>
<stop id="stop59-1-9" stop-color="#ff3647" offset=".57"/>
<stop id="stop61-2-2" stop-color="#e31587" offset=".74"/>
</radialGradient>
<radialGradient id="j-9-0" cx="37.373" cy="16.031" r="74.328" gradientTransform="scale(1.0095 .9906)" gradientUnits="userSpaceOnUse">
<stop id="stop64-3-6" stop-color="#fff44f" offset=".14"/>
<stop id="stop66-1-8" stop-color="#ff980e" offset=".48"/>
<stop id="stop68-9-9" stop-color="#ff3647" offset=".66"/>
<stop id="stop70-4-2" stop-color="#e31587" offset=".9"/>
</radialGradient>
<radialGradient id="k-7-6" cx="54.134" cy="21.246" r="85.336" gradientTransform="scale(1.0567 .94632)" gradientUnits="userSpaceOnUse">
<stop id="stop73-8-6" stop-color="#fff44f" offset=".09"/>
<stop id="stop75-4-4" stop-color="#ff980e" offset=".63"/>
</radialGradient>
<linearGradient id="l-5-9" x1="64.267" x2="15.484" y1="11.02" y2="66.097" gradientTransform="scale(.98394 1.0163)" gradientUnits="userSpaceOnUse">
<stop id="stop87-0-5" stop-color="#fff44f" stop-opacity=".8" offset=".17"/>
<stop id="stop89-3-0" stop-color="#fff44f" stop-opacity="0" offset=".6"/>
</linearGradient>
</defs>
<g id="layer1">
<path id="rect62650" d="m0 0h600v200h-600z" fill="#20123a" stroke-width="0"/>
</g>
<g id="layer2">
<g id="g3094" transform="matrix(1.6257 0 0 1.6257 32.887 34.993)">
<path id="path94" d="m75.916 26.831c-1.684-4.052-5.1-8.427-7.775-9.81a40.266 40.266 0 0 1 3.925 11.764l7e-3 0.065c-4.382-10.925-11.813-15.33-17.882-24.922a47.099 47.099 0 0 1-0.913-1.484 12.24 12.24 0 0 1-0.427-0.8 7.053 7.053 0 0 1-0.578-1.535 0.1 0.1 0 0 0-0.088-0.1 0.138 0.138 0 0 0-0.073 0c-5e-3 0-0.013 9e-3 -0.019 0.011s-0.019 0.011-0.028 0.015l0.015-0.026c-9.735 5.7-13.038 16.252-13.342 21.53a19.387 19.387 0 0 0-10.666 4.111 11.587 11.587 0 0 0-1-0.758 17.968 17.968 0 0 1-0.109-9.473 28.705 28.705 0 0 0-9.329 7.21h-0.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294 0.687 28.225 28.225 0 0 0-3.788 3.245 33.845 33.845 0 0 0-3.623 4.347v6e-3 -7e-3a32.733 32.733 0 0 0-5.2 11.743l-0.052 0.256a61.89 61.89 0 0 0-0.381 2.42c0 0.029-6e-3 0.056-9e-3 0.085a36.937 36.937 0 0 0-0.629 5.343v0.2a38.759 38.759 0 0 0 76.954 6.554c0.065-0.5 0.118-0.995 0.176-1.5a39.857 39.857 0 0 0-2.514-19.469zm-44.67 30.338c0.181 0.087 0.351 0.181 0.537 0.264l0.027 0.017q-0.282-0.135-0.564-0.281zm8.878-23.376m31.952-4.934v-0.037l7e-3 0.041z" fill="url(#a-3-6)"/>
<path id="path96" d="m75.916 26.831c-1.684-4.052-5.1-8.427-7.775-9.81a40.266 40.266 0 0 1 3.925 11.764v0.037l7e-3 0.041a35.1 35.1 0 0 1-1.206 26.158c-4.442 9.531-15.194 19.3-32.024 18.825-18.185-0.515-34.2-14.009-37.194-31.683-0.545-2.787 0-4.2 0.274-6.465a28.876 28.876 0 0 0-0.623 5.348v0.2a38.759 38.759 0 0 0 76.954 6.554c0.065-0.5 0.118-0.995 0.176-1.5a39.857 39.857 0 0 0-2.514-19.469z" fill="url(#b-5-2)"/>
<path id="path98" d="m75.916 26.831c-1.684-4.052-5.1-8.427-7.775-9.81a40.266 40.266 0 0 1 3.925 11.764v0.037l7e-3 0.041a35.1 35.1 0 0 1-1.206 26.158c-4.442 9.531-15.194 19.3-32.024 18.825-18.185-0.515-34.2-14.009-37.194-31.683-0.545-2.787 0-4.2 0.274-6.465a28.876 28.876 0 0 0-0.623 5.348v0.2a38.759 38.759 0 0 0 76.954 6.554c0.065-0.5 0.118-0.995 0.176-1.5a39.857 39.857 0 0 0-2.514-19.469z" fill="url(#c-7-4)"/>
<path id="path100" d="m57.082 31.387c0.084 0.059 0.162 0.118 0.241 0.177a21.1 21.1 0 0 0-3.6-4.695c-12.046-12.048-3.157-26.123-1.658-26.838l0.015-0.022c-9.735 5.7-13.038 16.252-13.342 21.53 0.452-0.031 0.9-0.069 1.362-0.069a19.56 19.56 0 0 1 16.982 9.917z" fill="url(#d-6-3)"/>
<path id="path102" d="m40.125 33.793c-0.064 0.964-3.47 4.289-4.661 4.289-11.021 0-12.81 6.667-12.81 6.667 0.488 5.614 4.4 10.238 9.129 12.684a13.44 13.44 0 0 0 0.654 0.312q0.569 0.252 1.138 0.466a17.235 17.235 0 0 0 5.043 0.973c19.317 0.906 23.059-23.1 9.119-30.066a13.38 13.38 0 0 1 9.345 2.269 19.56 19.56 0 0 0-16.982-9.917c-0.46 0-0.91 0.038-1.362 0.069a19.387 19.387 0 0 0-10.666 4.111c0.591 0.5 1.258 1.168 2.663 2.553 2.63 2.591 9.375 5.275 9.39 5.59z" fill="url(#e-1-5)"/>
<path id="path104" d="m40.125 33.793c-0.064 0.964-3.47 4.289-4.661 4.289-11.021 0-12.81 6.667-12.81 6.667 0.488 5.614 4.4 10.238 9.129 12.684a13.44 13.44 0 0 0 0.654 0.312q0.569 0.252 1.138 0.466a17.235 17.235 0 0 0 5.043 0.973c19.317 0.906 23.059-23.1 9.119-30.066a13.38 13.38 0 0 1 9.345 2.269 19.56 19.56 0 0 0-16.982-9.917c-0.46 0-0.91 0.038-1.362 0.069a19.387 19.387 0 0 0-10.666 4.111c0.591 0.5 1.258 1.168 2.663 2.553 2.63 2.591 9.375 5.275 9.39 5.59z" fill="url(#f-2-7)"/>
<path id="path106" d="m26.265 24.361a24.874 24.874 0 0 1 0.8 0.531 17.968 17.968 0 0 1-0.109-9.473 28.705 28.705 0 0 0-9.329 7.21c0.189-5e-3 5.811-0.106 8.638 1.732z" fill="url(#g-3-3)"/>
<path id="path108" d="m1.654 42.163c2.991 17.674 19.009 31.168 37.194 31.683 16.83 0.476 27.582-9.294 32.024-18.825a35.1 35.1 0 0 0 1.206-26.158v-0.037c0-0.029-6e-3 -0.046 0-0.037l7e-3 0.065c1.375 8.977-3.191 17.674-10.329 23.555l-0.022 0.05c-13.908 11.327-27.218 6.834-29.912 5q-0.282-0.135-0.564-0.281c-8.109-3.876-11.459-11.264-10.741-17.6a9.953 9.953 0 0 1-9.181-5.775 14.618 14.618 0 0 1 14.249-0.572 19.3 19.3 0 0 0 14.552 0.572c-0.015-0.315-6.76-3-9.39-5.59-1.405-1.385-2.072-2.052-2.663-2.553a11.587 11.587 0 0 0-1-0.758 54.245 54.245 0 0 0-0.8-0.531c-2.827-1.838-8.449-1.737-8.635-1.732h-0.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294 0.687 28.225 28.225 0 0 0-3.788 3.245 33.845 33.845 0 0 0-3.638 4.337v6e-3 -7e-3a32.733 32.733 0 0 0-5.2 11.743c-0.019 0.079-1.396 6.099-0.717 9.221z" fill="url(#h-9-8)"/>
<path id="path110" d="m53.725 26.869a21.1 21.1 0 0 1 3.6 4.7 8.083 8.083 0 0 1 0.581 0.476c8.787 8.1 4.183 19.55 3.84 20.365 7.138-5.881 11.7-14.578 10.329-23.555-4.384-10.93-11.815-15.335-17.884-24.927a47.099 47.099 0 0 1-0.913-1.484 12.24 12.24 0 0 1-0.427-0.8 7.053 7.053 0 0 1-0.578-1.535 0.1 0.1 0 0 0-0.088-0.1 0.138 0.138 0 0 0-0.073 0c-5e-3 0-0.013 9e-3 -0.019 0.011s-0.019 0.011-0.028 0.015c-1.499 0.711-10.388 14.786 1.66 26.834z" fill="url(#i-7-3)"/>
<path id="path112" d="m57.9 32.04a8.083 8.083 0 0 0-0.581-0.476c-0.079-0.059-0.157-0.118-0.241-0.177a13.38 13.38 0 0 0-9.345-2.269c13.94 6.97 10.2 30.972-9.119 30.066a17.235 17.235 0 0 1-5.043-0.973q-0.569-0.213-1.138-0.466a14.44 14.44 0 0 1-0.654-0.312l0.027 0.017c2.694 1.839 16 6.332 29.912-5l0.022-0.05c0.347-0.81 4.951-12.263-3.84-20.36z" fill="url(#j-9-0)"/>
<path id="path114" d="m22.654 44.749s1.789-6.667 12.81-6.667c1.191 0 4.6-3.325 4.661-4.289a19.3 19.3 0 0 1-14.552-0.572 14.618 14.618 0 0 0-14.249 0.572 9.953 9.953 0 0 0 9.181 5.775c-0.718 6.337 2.632 13.725 10.741 17.6 0.181 0.087 0.351 0.181 0.537 0.264-4.733-2.445-8.641-7.069-9.129-12.683z" fill="url(#k-7-6)"/>
<path id="path116" d="m75.916 26.831c-1.684-4.052-5.1-8.427-7.775-9.81a40.266 40.266 0 0 1 3.925 11.764l7e-3 0.065c-4.382-10.925-11.813-15.33-17.882-24.922a47.099 47.099 0 0 1-0.913-1.484 12.24 12.24 0 0 1-0.427-0.8 7.053 7.053 0 0 1-0.578-1.535 0.1 0.1 0 0 0-0.088-0.1 0.138 0.138 0 0 0-0.073 0c-5e-3 0-0.013 9e-3 -0.019 0.011s-0.019 0.011-0.028 0.015l0.015-0.026c-9.735 5.7-13.038 16.252-13.342 21.53 0.452-0.031 0.9-0.069 1.362-0.069a19.56 19.56 0 0 1 16.982 9.917 13.38 13.38 0 0 0-9.345-2.269c13.94 6.97 10.2 30.972-9.119 30.066a17.235 17.235 0 0 1-5.043-0.973q-0.569-0.213-1.138-0.466a14.44 14.44 0 0 1-0.654-0.312l0.027 0.017q-0.282-0.135-0.564-0.281c0.181 0.087 0.351 0.181 0.537 0.264-4.733-2.446-8.641-7.07-9.129-12.684 0 0 1.789-6.667 12.81-6.667 1.191 0 4.6-3.325 4.661-4.289-0.015-0.315-6.76-3-9.39-5.59-1.405-1.385-2.072-2.052-2.663-2.553a11.587 11.587 0 0 0-1-0.758 17.968 17.968 0 0 1-0.109-9.473 28.705 28.705 0 0 0-9.329 7.21h-0.018c-1.536-1.947-1.428-8.367-1.34-9.708a6.928 6.928 0 0 0-1.294 0.687 28.225 28.225 0 0 0-3.788 3.245 33.845 33.845 0 0 0-3.623 4.347v6e-3 -7e-3a32.733 32.733 0 0 0-5.2 11.743l-0.052 0.256c-0.073 0.341-0.4 2.073-0.447 2.445v0a45.094 45.094 0 0 0-0.572 5.403v0.2a38.759 38.759 0 0 0 76.954 6.554c0.065-0.5 0.118-0.995 0.176-1.5a39.857 39.857 0 0 0-2.514-19.469zm-3.845 1.991 7e-3 0.041z" fill="url(#l-5-9)"/>
</g>
<g id="text4352" fill="#fff" aria-label="Installer depuis">
<path id="path180" d="m195 51.36v29.2h3.32v-29.2z"/>
<path id="path182" d="m205.12 58.96v21.6h3.28v-12c0-1.04 0.16-1.96 0.52-2.84 0.32-0.88 0.8-1.6 1.44-2.24 0.6-0.64 1.32-1.12 2.16-1.48 0.8-0.32 1.72-0.52 2.68-0.52 2.08 0 3.72 0.64 4.84 1.88 1.12 1.28 1.68 2.96 1.68 5.04v12.16h3.32v-12.32c0-1.52-0.24-2.88-0.64-4.08-0.44-1.2-1.04-2.2-1.84-3.04s-1.8-1.48-2.92-1.92-2.4-0.68-3.8-0.68c-1.68 0-3.2 0.4-4.48 1.12-1.28 0.76-2.32 1.72-3.04 2.92v-3.6z"/>
<path id="path184" d="m238.92 81c1.4 0 2.64-0.16 3.72-0.56 1.04-0.36 1.92-0.84 2.64-1.48s1.24-1.36 1.6-2.16 0.56-1.64 0.56-2.52c0-1.12-0.24-2-0.72-2.72s-1.08-1.28-1.8-1.76c-0.72-0.44-1.56-0.8-2.48-1.04-0.96-0.24-1.88-0.48-2.8-0.68-0.88-0.16-1.64-0.32-2.36-0.48s-1.36-0.36-1.88-0.6c-0.56-0.24-0.96-0.52-1.28-0.88s-0.44-0.84-0.44-1.4c0-1 0.36-1.84 1.08-2.48s1.92-0.96 3.6-0.96c1.36 0 2.56 0.28 3.52 0.8 0.96 0.56 1.76 1.24 2.4 2.08l2.72-1.84c-0.96-1.2-2.16-2.12-3.56-2.8s-3.08-1.04-5.08-1.04c-1.28 0-2.44 0.2-3.44 0.52s-1.84 0.8-2.52 1.36-1.2 1.24-1.56 2c-0.36 0.8-0.52 1.6-0.52 2.4 0 1.12 0.2 2 0.68 2.68 0.44 0.72 1.04 1.28 1.76 1.72s1.52 0.76 2.44 1 1.84 0.48 2.8 0.64c0.8 0.16 1.56 0.32 2.28 0.48s1.4 0.4 1.96 0.64 1 0.56 1.36 0.96c0.32 0.4 0.52 0.88 0.52 1.44 0 1.12-0.44 2-1.32 2.72s-2.12 1.04-3.8 1.04-3.04-0.32-4.16-0.96-2.08-1.48-2.8-2.56l-2.84 1.92c0.96 1.4 2.2 2.52 3.8 3.32 1.56 0.8 3.52 1.2 5.92 1.2z"/>
<path id="path186" d="m250.36 58.96v2.92h4.2v12.16c0 2.4 0.52 4.16 1.56 5.24s2.56 1.6 4.56 1.6c0.88 0 1.72-0.12 2.44-0.4 0.72-0.24 1.36-0.64 2-1.12l-1.72-2.6c-0.76 0.72-1.6 1.04-2.48 1.04-0.96 0-1.72-0.28-2.28-0.88-0.56-0.56-0.84-1.56-0.84-2.96v-12.08h6.32v-2.92h-6.32v-6.84l-3.24 2.08v4.76z"/>
<path id="path188" d="m275.68 81c1.84 0 3.56-0.36 5.16-1.12 1.56-0.72 2.84-1.76 3.8-3.12v3.8h3.2v-13.76c0-1.2-0.24-2.32-0.64-3.36-0.4-1-1-1.88-1.8-2.6s-1.8-1.32-2.96-1.72c-1.2-0.4-2.56-0.6-4.08-0.6-2.28 0-4.2 0.44-5.76 1.28-1.6 0.84-2.92 1.96-4 3.36l2.84 1.8c0.72-1.12 1.64-2.04 2.76-2.68s2.48-0.96 4.12-0.96c2.08 0 3.68 0.52 4.72 1.52s1.6 2.32 1.6 3.96v0.84h-6.84c-3.04 0-5.44 0.64-7.2 1.84s-2.6 2.92-2.6 5.16c0 0.88 0.16 1.72 0.48 2.48s0.8 1.44 1.44 2c0.64 0.6 1.44 1.08 2.4 1.4s2.08 0.48 3.36 0.48zm0.6-2.88c-1.72 0-2.96-0.32-3.76-1.04s-1.16-1.6-1.16-2.68c0-1.36 0.52-2.36 1.6-3.08 1.04-0.68 2.72-1.04 5-1.04h6.68v2.96c-0.44 0.8-0.96 1.52-1.6 2.12-0.64 0.64-1.32 1.12-2.04 1.52s-1.52 0.72-2.32 0.92c-0.8 0.24-1.6 0.32-2.4 0.32z"/>
<path id="path190" d="m293.96 49.04v31.52h3.28v-31.52z"/>
<path id="path192" d="m303.56 49.04v31.52h3.28v-31.52z"/>
<path id="path194" d="m323.6 81c2.36 0 4.36-0.48 5.96-1.44s2.96-2.28 4.08-4.04l-2.8-1.64c-0.76 1.36-1.72 2.36-2.88 3.08-1.2 0.72-2.64 1.08-4.36 1.08-1.16 0-2.2-0.16-3.16-0.52-0.96-0.32-1.76-0.8-2.48-1.44s-1.28-1.36-1.72-2.24c-0.48-0.84-0.76-1.8-0.84-2.84h19.08v-1.48c0-1.6-0.28-3.04-0.84-4.4s-1.36-2.52-2.32-3.48-2.12-1.72-3.48-2.28-2.8-0.84-4.36-0.84c-1.64 0-3.16 0.32-4.52 0.88-1.36 0.6-2.56 1.4-3.56 2.4-1 1.04-1.8 2.24-2.36 3.6s-0.84 2.84-0.84 4.44 0.24 3.04 0.8 4.4c0.52 1.36 1.28 2.56 2.28 3.56s2.2 1.8 3.6 2.36 2.96 0.84 4.72 0.84zm-0.12-19.56c2.08 0 3.84 0.6 5.2 1.8s2.16 2.84 2.44 4.88h-15.64c0.16-0.96 0.48-1.84 0.96-2.64s1.04-1.52 1.76-2.12c0.68-0.6 1.48-1.08 2.36-1.4s1.88-0.52 2.92-0.52z"/>
<path id="path196" d="m339.8 58.96v21.6h3.24v-11.84c0-2.4 0.48-4.12 1.48-5.2 0.96-1.08 2.36-1.64 4.2-1.64 0.56 0 1.08 0.08 1.52 0.2s0.8 0.28 1.12 0.48l1.36-3.12c-0.88-0.52-2.08-0.8-3.6-0.8-1.56 0-2.88 0.4-3.92 1.12-1.04 0.76-1.8 1.84-2.24 3.28v-4.08z"/>
<path id="path198" d="m377.52 81c0.76 0 1.52-0.08 2.32-0.28s1.52-0.48 2.24-0.84 1.36-0.8 1.96-1.36c0.6-0.52 1.12-1.12 1.56-1.8v3.84h3.24v-31.56h-3.24v13.72c-0.44-0.64-0.96-1.24-1.56-1.76s-1.24-0.96-1.96-1.32-1.44-0.64-2.24-0.84c-0.8-0.16-1.56-0.28-2.32-0.28-1.52 0-2.96 0.28-4.28 0.84-1.36 0.56-2.52 1.32-3.52 2.32s-1.8 2.2-2.36 3.56-0.84 2.88-0.84 4.52c0 1.68 0.28 3.2 0.84 4.56s1.36 2.56 2.36 3.56c0.96 1 2.12 1.76 3.48 2.32s2.8 0.8 4.32 0.8zm0.28-3.08c-1.12 0-2.2-0.2-3.16-0.6s-1.8-1-2.52-1.72-1.28-1.6-1.68-2.6-0.6-2.08-0.6-3.28c0-1.12 0.2-2.2 0.6-3.2s0.96-1.88 1.68-2.6 1.56-1.32 2.52-1.76c0.96-0.4 2.04-0.64 3.16-0.64s2.2 0.24 3.2 0.68c0.96 0.44 1.84 1.04 2.56 1.76s1.28 1.6 1.68 2.6 0.6 2.04 0.6 3.16c0 1.16-0.2 2.24-0.6 3.24s-0.96 1.88-1.68 2.6-1.6 1.32-2.56 1.72c-1 0.44-2.08 0.64-3.2 0.64z"/>
<path id="path200" d="m405.6 81c2.36 0 4.36-0.48 5.96-1.44s2.96-2.28 4.08-4.04l-2.8-1.64c-0.76 1.36-1.72 2.36-2.88 3.08-1.2 0.72-2.64 1.08-4.36 1.08-1.16 0-2.2-0.16-3.16-0.52-0.96-0.32-1.76-0.8-2.48-1.44s-1.28-1.36-1.72-2.24c-0.48-0.84-0.76-1.8-0.84-2.84h19.08v-1.48c0-1.6-0.28-3.04-0.84-4.4s-1.36-2.52-2.32-3.48-2.12-1.72-3.48-2.28-2.8-0.84-4.36-0.84c-1.64 0-3.16 0.32-4.52 0.88-1.36 0.6-2.56 1.4-3.56 2.4-1 1.04-1.8 2.24-2.36 3.6s-0.84 2.84-0.84 4.44 0.24 3.04 0.8 4.4c0.52 1.36 1.28 2.56 2.28 3.56s2.2 1.8 3.6 2.36 2.96 0.84 4.72 0.84zm-0.12-19.56c2.08 0 3.84 0.6 5.2 1.8s2.16 2.84 2.44 4.88h-15.64c0.16-0.96 0.48-1.84 0.96-2.64s1.04-1.52 1.76-2.12c0.68-0.6 1.48-1.08 2.36-1.4s1.88-0.52 2.92-0.52z"/>
<path id="path202" d="m433.04 81c1.52 0 2.92-0.24 4.28-0.8s2.52-1.32 3.52-2.32c0.96-1 1.76-2.2 2.32-3.56s0.88-2.88 0.88-4.56c0-1.64-0.32-3.16-0.88-4.52s-1.36-2.56-2.36-3.56-2.16-1.76-3.48-2.32c-1.36-0.56-2.76-0.84-4.24-0.84-0.8 0-1.6 0.12-2.4 0.32s-1.52 0.48-2.24 0.84c-0.72 0.4-1.4 0.84-2 1.4s-1.12 1.16-1.52 1.84v-3.96h-3.2v29.92h3.24v-12.04c0.84 1.36 2 2.4 3.48 3.12 1.44 0.72 3 1.04 4.6 1.04zm-0.28-3.08c-1.16 0-2.24-0.2-3.2-0.64-1-0.4-1.84-1-2.56-1.72s-1.32-1.6-1.72-2.6-0.6-2.08-0.6-3.24c0-1.12 0.2-2.16 0.6-3.16s1-1.88 1.72-2.6 1.56-1.32 2.56-1.76c0.96-0.44 2.04-0.68 3.2-0.68 1.12 0 2.16 0.24 3.12 0.64 0.96 0.44 1.84 1.04 2.56 1.76s1.28 1.6 1.68 2.6 0.6 2.08 0.6 3.2c0 1.2-0.2 2.28-0.6 3.28s-0.96 1.88-1.68 2.6-1.6 1.32-2.56 1.72-2 0.6-3.12 0.6z"/>
<path id="path204" d="m458.2 81c1.64 0 3.08-0.36 4.32-1.08s2.24-1.72 2.96-2.92v3.56h3.2v-21.6h-3.28v11.96c0 1.04-0.2 2-0.52 2.88s-0.8 1.6-1.4 2.24-1.28 1.12-2.08 1.44c-0.8 0.36-1.68 0.52-2.64 0.52-2.08 0-3.68-0.6-4.72-1.88-1.08-1.24-1.6-2.92-1.6-5.04v-12.12h-3.32v12.28c0 3.08 0.76 5.48 2.32 7.2 1.52 1.72 3.8 2.56 6.76 2.56z"/>
<path id="path206" d="m474.92 58.96v21.6h3.32v-21.6zm-0.92-6.64c0 0.76 0.24 1.4 0.72 1.88s1.08 0.72 1.84 0.72 1.4-0.24 1.88-0.72 0.72-1.12 0.72-1.88c0-0.72-0.24-1.36-0.72-1.84s-1.12-0.76-1.88-0.76c-0.72 0-1.36 0.28-1.84 0.76s-0.72 1.12-0.72 1.84z"/>
<path id="path208" d="m492.24 81c1.4 0 2.64-0.16 3.72-0.56 1.04-0.36 1.92-0.84 2.64-1.48s1.24-1.36 1.6-2.16 0.56-1.64 0.56-2.52c0-1.12-0.24-2-0.72-2.72s-1.08-1.28-1.8-1.76c-0.72-0.44-1.56-0.8-2.48-1.04-0.96-0.24-1.88-0.48-2.8-0.68-0.88-0.16-1.64-0.32-2.36-0.48s-1.36-0.36-1.88-0.6c-0.56-0.24-0.96-0.52-1.28-0.88s-0.44-0.84-0.44-1.4c0-1 0.36-1.84 1.08-2.48s1.92-0.96 3.6-0.96c1.36 0 2.56 0.28 3.52 0.8 0.96 0.56 1.76 1.24 2.4 2.08l2.72-1.84c-0.96-1.2-2.16-2.12-3.56-2.8s-3.08-1.04-5.08-1.04c-1.28 0-2.44 0.2-3.44 0.52s-1.84 0.8-2.52 1.36-1.2 1.24-1.56 2c-0.36 0.8-0.52 1.6-0.52 2.4 0 1.12 0.2 2 0.68 2.68 0.44 0.72 1.04 1.28 1.76 1.72s1.52 0.76 2.44 1 1.84 0.48 2.8 0.64c0.8 0.16 1.56 0.32 2.28 0.48s1.4 0.4 1.96 0.64 1 0.56 1.36 0.96c0.32 0.4 0.52 0.88 0.52 1.44 0 1.12-0.44 2-1.32 2.72s-2.12 1.04-3.8 1.04-3.04-0.32-4.16-0.96-2.08-1.48-2.8-2.56l-2.84 1.92c0.96 1.4 2.2 2.52 3.8 3.32 1.56 0.8 3.52 1.2 5.92 1.2z"/>
</g>
<g id="text34281" fill="#fff" aria-label="Firefox Addons">
<path id="path211" d="m195 111.94v36.987h7.1947v-14.947h16.619v-6.688h-16.619v-8.5627h16.619v-6.7893z"/>
<path id="path213" d="m223.78 121.57v27.36h7.144v-27.36zm-0.912-7.7013c0 1.3173 0.40534 2.3813 1.216 3.192 0.81067 0.86133 1.9253 1.2667 3.2427 1.2667 1.3173 0 2.432-0.40534 3.2427-1.2667 0.81067-0.81067 1.2667-1.8747 1.2667-3.192 0-1.3173-0.456-2.3813-1.2667-3.2427s-1.9253-1.3173-3.2427-1.3173c-1.3173 0-2.3813 0.456-3.192 1.3173-0.86133 0.86133-1.2667 1.9253-1.2667 3.2427z"/>
<path id="path215" d="m236.2 121.57v27.36h6.9413v-14.44c0-2.28 0.50667-3.9013 1.6213-4.9147 1.064-1.0133 2.4827-1.52 4.3067-1.52 0.76 0 1.4693 0.10134 2.128 0.304 0.608 0.20267 1.1147 0.40534 1.52 0.65867l2.5333-6.8907c-0.608-0.304-1.2667-0.55733-2.0773-0.76-0.81067-0.20267-1.6213-0.304-2.5333-0.304-1.7733 0-3.2933 0.40533-4.6107 1.1653s-2.28 1.9253-2.9387 3.5467v-4.2053z"/>
<path id="path217" d="m269.9 149.48c3.04 0 5.5227-0.55734 7.5493-1.7227 1.976-1.1147 3.648-2.6853 5.0667-4.6107l-5.7253-3.344c-0.70933 1.1147-1.5707 2.0267-2.6853 2.6853-1.1147 0.65867-2.4827 0.96267-4.104 0.96267-2.0267 0-3.7493-0.50667-5.1173-1.52-1.368-1.0133-2.28-2.432-2.736-4.256h21.736v-2.6347c0-2.0267-0.35467-3.9013-1.064-5.624-0.70934-1.7227-1.7227-3.192-2.9387-4.408-1.2667-1.216-2.736-2.2293-4.4587-2.9387-1.7227-0.70933-3.648-1.064-5.6747-1.064s-3.952 0.40534-5.6747 1.1147c-1.7733 0.76-3.2933 1.7733-4.56 3.04-1.3173 1.3173-2.3307 2.8373-3.04 4.56-0.70933 1.7227-1.064 3.5973-1.064 5.5733 0 2.0267 0.304 3.8507 1.0133 5.5733 0.65866 1.7227 1.6213 3.2427 2.888 4.5093 1.2667 1.3173 2.7867 2.3307 4.6107 3.04 1.7733 0.70933 3.7493 1.064 5.9787 1.064zm-0.152-22.547c1.824 0 3.344 0.456 4.6107 1.368 1.216 0.912 2.0773 2.1787 2.584 3.9013h-14.592c0.55733-1.6213 1.4693-2.888 2.7867-3.8507 1.2667-0.912 2.7867-1.4187 4.6107-1.4187z"/>
<path id="path219" d="m285.61 121.57v6.2827h4.5093v21.077h6.9413v-21.077h6.5867v-6.2827h-6.5867v-1.3173c0-1.0133 0.0507-1.8747 0.152-2.4827 0.10133-0.608 0.304-1.1147 0.70933-1.4693 0.40534-0.35467 0.96267-0.608 1.672-0.70933 0.70934-0.10134 1.672-0.20267 2.888-0.20267h1.1653v-6.384h-1.824c-2.2293 0-4.104 0.20266-5.624 0.55733-1.52 0.40533-2.6853 1.0133-3.5973 1.9253s-1.52 2.0773-1.9253 3.5467c-0.40534 1.52-0.55734 3.344-0.55734 5.5733v0.96267z"/>
<path id="path221" d="m319.41 149.48c2.0267 0 3.952-0.35467 5.7253-1.1147 1.7733-0.70933 3.2933-1.7227 4.6107-3.04 1.2667-1.3173 2.28-2.8373 3.04-4.56 0.70934-1.7227 1.1147-3.5467 1.1147-5.5227 0-1.9253-0.40533-3.8-1.1147-5.5227-0.76-1.7227-1.7733-3.2427-3.0907-4.56-1.3173-1.2667-2.8373-2.28-4.6107-3.04-1.7733-0.70933-3.648-1.1147-5.6747-1.1147-2.0773 0-4.0027 0.40534-5.7253 1.1147-1.7733 0.76-3.2933 1.7733-4.6107 3.04-1.3173 1.3173-2.3307 2.8373-3.04 4.56-0.70934 1.7227-1.064 3.5973-1.064 5.5227 0 1.976 0.35467 3.8 1.064 5.5227 0.70933 1.7227 1.7227 3.2427 3.04 4.56 1.3173 1.3173 2.8373 2.3307 4.6107 3.04 1.7227 0.76 3.648 1.1147 5.7253 1.1147zm0.0507-6.6373c-1.064 0-2.0267-0.20267-2.9387-0.608s-1.7227-0.912-2.3813-1.6213c-0.70934-0.65867-1.216-1.4693-1.6213-2.3813-0.40533-0.912-0.55733-1.9253-0.55733-3.04 0-1.0133 0.152-2.0267 0.55733-2.9893 0.40534-0.912 0.912-1.7227 1.6213-2.432 0.65866-0.65867 1.4693-1.216 2.3813-1.6213 0.912-0.40534 1.8747-0.608 2.9387-0.608 1.0133 0 2.0267 0.20266 2.9387 0.608 0.912 0.40533 1.672 0.96266 2.3813 1.6213 0.65867 0.70934 1.1653 1.52 1.5707 2.432 0.40533 0.96267 0.608 1.976 0.608 2.9893 0 1.1147-0.20267 2.128-0.608 3.04s-0.912 1.7227-1.5707 2.3813c-0.70933 0.70933-1.4693 1.216-2.3813 1.6213s-1.9253 0.608-2.9387 0.608z"/>
<path id="path223" d="m344.08 134.89-10.235 14.035h8.4107l6.1307-8.5627 6.2827 8.5627h8.4613l-10.437-13.984 9.728-13.376h-8.208l-5.776 8.1067-5.7253-8.1067h-8.3093z"/>
<path id="path225" d="m393.24 111.94-14.997 36.987h3.0907l4.2053-10.589h18.493l4.256 10.589h3.0907l-14.997-36.987zm-6.5867 23.611 8.056-20.317 8.208 20.317z"/>
<path id="path227" d="m429.01 149.48c1.0133 0 2.0773-0.10134 3.192-0.40534 1.064-0.304 2.0773-0.70933 3.0907-1.2667 0.96267-0.50667 1.8747-1.1653 2.6853-1.976 0.81066-0.81067 1.52-1.7227 2.128-2.736v5.8267h2.7867v-39.925h-2.7867v18.443c-0.608-1.0133-1.3173-1.9253-2.128-2.736-0.81067-0.81067-1.7227-1.4693-2.736-2.0267-1.0133-0.50666-2.0267-0.912-3.1413-1.216s-2.1787-0.456-3.192-0.456c-2.0267 0-3.8507 0.40534-5.5733 1.1147s-3.192 1.7227-4.4587 2.9893c-1.2667 1.3173-2.28 2.7867-2.9893 4.5093-0.70933 1.7227-1.064 3.5973-1.064 5.624 0 2.0773 0.304 4.0027 1.0133 5.7253 0.70933 1.7227 1.672 3.2427 2.9387 4.5093 1.216 1.2667 2.736 2.2293 4.4587 2.9387 1.7227 0.70933 3.648 1.064 5.776 1.064zm0-2.736c-1.6213 0-3.0907-0.25334-4.4587-0.86134-1.368-0.55733-2.5333-1.368-3.5467-2.3813-1.0133-1.0133-1.7733-2.1787-2.3307-3.5973-0.608-1.4187-0.86133-2.9387-0.86133-4.6613 0-1.6213 0.25333-3.1413 0.86133-4.56 0.55734-1.4187 1.3173-2.6347 2.3307-3.648 1.0133-1.0133 2.1787-1.824 3.5467-2.432s2.8373-0.912 4.4587-0.912 3.0907 0.304 4.5093 0.912c1.368 0.608 2.584 1.4693 3.5973 2.4827 1.0133 1.064 1.824 2.28 2.432 3.6987 0.55734 1.4187 0.86134 2.888 0.86134 4.4587 0 1.6213-0.304 3.0907-0.86134 4.5093-0.608 1.4187-1.4187 2.6347-2.432 3.648-1.0133 1.064-2.2293 1.8747-3.5973 2.4827-1.4187 0.608-2.888 0.86134-4.5093 0.86134z"/>
<path id="path229" d="m464.03 149.48c1.0133 0 2.0773-0.10134 3.192-0.40534 1.064-0.304 2.0773-0.70933 3.0907-1.2667 0.96267-0.50667 1.8747-1.1653 2.6853-1.976 0.81067-0.81067 1.52-1.7227 2.128-2.736v5.8267h2.7867v-39.925h-2.7867v18.443c-0.608-1.0133-1.3173-1.9253-2.128-2.736-0.81066-0.81067-1.7227-1.4693-2.736-2.0267-1.0133-0.50666-2.0267-0.912-3.1413-1.216-1.1147-0.304-2.1787-0.456-3.192-0.456-2.0267 0-3.8507 0.40534-5.5733 1.1147s-3.192 1.7227-4.4587 2.9893c-1.2667 1.3173-2.28 2.7867-2.9893 4.5093-0.70933 1.7227-1.064 3.5973-1.064 5.624 0 2.0773 0.304 4.0027 1.0133 5.7253 0.70933 1.7227 1.672 3.2427 2.9387 4.5093 1.216 1.2667 2.736 2.2293 4.4587 2.9387 1.7227 0.70933 3.648 1.064 5.776 1.064zm0-2.736c-1.6213 0-3.0907-0.25334-4.4587-0.86134-1.368-0.55733-2.5333-1.368-3.5467-2.3813-1.0133-1.0133-1.7733-2.1787-2.3307-3.5973-0.608-1.4187-0.86133-2.9387-0.86133-4.6613 0-1.6213 0.25333-3.1413 0.86133-4.56 0.55733-1.4187 1.3173-2.6347 2.3307-3.648s2.1787-1.824 3.5467-2.432 2.8373-0.912 4.4587-0.912c1.6213 0 3.0907 0.304 4.5093 0.912 1.368 0.608 2.584 1.4693 3.5973 2.4827 1.0133 1.064 1.824 2.28 2.432 3.6987 0.55733 1.4187 0.86133 2.888 0.86133 4.4587 0 1.6213-0.304 3.0907-0.86133 4.5093-0.608 1.4187-1.4187 2.6347-2.432 3.648-1.0133 1.064-2.2293 1.8747-3.5973 2.4827-1.4187 0.608-2.888 0.86134-4.5093 0.86134z"/>
<path id="path231" d="m499.04 149.48c2.0267 0 3.9013-0.35467 5.624-1.1147 1.7227-0.70933 3.2427-1.7227 4.5093-3.04 1.2667-1.2667 2.28-2.7867 2.9893-4.5093 0.70933-1.7227 1.1147-3.5467 1.1147-5.5733 0-2.0267-0.40533-3.9013-1.1147-5.624-0.70934-1.7227-1.7227-3.192-2.9893-4.5093-1.3173-1.2667-2.7867-2.28-4.5093-2.9893-1.7227-0.70933-3.5973-1.1147-5.624-1.1147s-3.9013 0.40534-5.624 1.1147c-1.7227 0.70933-3.2427 1.7227-4.5093 2.9893-1.2667 1.3173-2.28 2.7867-2.9893 4.5093-0.70934 1.7227-1.064 3.5973-1.064 5.624 0 2.0773 0.35467 4.0027 1.064 5.7253 0.70933 1.7227 1.672 3.2427 2.9387 4.5093 1.2667 1.2667 2.7867 2.2293 4.5093 2.9387 1.7227 0.70933 3.5973 1.064 5.6747 1.064zm0-2.736c-1.6213 0-3.0907-0.25334-4.4587-0.86134-1.368-0.55733-2.5333-1.368-3.5467-2.3813-1.0133-1.0133-1.7733-2.1787-2.3307-3.5973-0.608-1.4187-0.86133-2.9387-0.86133-4.6613 0-1.6213 0.25333-3.1413 0.86133-4.56 0.55734-1.4187 1.3173-2.6347 2.3307-3.648 1.0133-1.0133 2.1787-1.824 3.5467-2.432s2.8373-0.912 4.4587-0.912c1.5707 0 3.04 0.304 4.408 0.912s2.584 1.4187 3.5973 2.432c1.0133 1.0133 1.7733 2.2293 2.3813 3.648 0.55734 1.4187 0.86134 2.9387 0.86134 4.56 0 1.672-0.304 3.192-0.86134 4.6107-0.608 1.4187-1.368 2.6347-2.3813 3.648-1.0133 1.0133-2.1787 1.824-3.5467 2.3813-1.368 0.608-2.8373 0.86134-4.4587 0.86134z"/>
<path id="path233" d="m520.12 121.57v27.36h2.8373v-15.251c0-1.4187 0.25333-2.736 0.76-3.952 0.50666-1.216 1.1653-2.2293 2.0773-3.1413 0.86133-0.912 1.8747-1.6213 3.0907-2.128s2.4827-0.76 3.9013-0.76c3.04 0 5.4213 0.912 7.0933 2.736 1.6213 1.824 2.4827 4.2053 2.4827 7.1947v15.301h2.888v-15.301c0-1.9253-0.304-3.6987-0.86133-5.2693-0.608-1.52-1.4187-2.8373-2.432-3.952-1.064-1.1147-2.3307-1.9253-3.8-2.5333-1.52-0.55734-3.1413-0.86134-4.9653-0.86134-2.432 0-4.5093 0.55734-6.2827 1.672-1.824 1.1147-3.1413 2.584-4.0533 4.3067v-5.4213z"/>
<path id="path235" d="m562.99 149.48c1.672 0 3.1413-0.20267 4.4587-0.65867 1.3173-0.40533 2.3813-1.0133 3.2933-1.7733 0.86133-0.70934 1.52-1.6213 1.976-2.6347 0.456-1.0133 0.70933-2.0773 0.70933-3.2427 0-1.4187-0.304-2.5333-0.912-3.4453-0.608-0.86133-1.368-1.5707-2.28-2.128-0.96266-0.50666-2.0267-0.912-3.2427-1.216s-2.3813-0.55733-3.5973-0.76c-1.1147-0.20267-2.128-0.40533-3.1413-0.608-1.0133-0.20267-1.9253-0.456-2.6853-0.81067-0.81067-0.35466-1.4187-0.81066-1.8747-1.368-0.50667-0.50666-0.70933-1.216-0.70933-2.128 0-1.52 0.50666-2.7867 1.52-3.7493 1.0133-0.96267 2.7867-1.4693 5.32-1.4693 2.0267 0 3.7493 0.40533 5.168 1.1653 1.4187 0.81066 2.584 1.7733 3.5467 2.9387l2.2293-2.0267c-1.3173-1.3173-2.8373-2.432-4.56-3.2933-1.7227-0.86133-3.8507-1.3173-6.384-1.3173-1.6213 0-3.0907 0.25333-4.3067 0.65866-1.216 0.40534-2.2293 0.96267-3.04 1.672-0.81067 0.70934-1.4187 1.5707-1.824 2.4827-0.40534 0.96267-0.608 1.976-0.608 2.9893 0 1.368 0.25333 2.4827 0.86133 3.2933 0.55734 0.86134 1.3173 1.52 2.28 2.0267 0.912 0.50667 1.976 0.912 3.192 1.216 1.1653 0.304 2.3813 0.50667 3.5973 0.70934 1.064 0.20266 2.128 0.456 3.1413 0.65866 1.0133 0.20267 1.9253 0.50667 2.736 0.86134 0.81066 0.35466 1.4187 0.81066 1.9253 1.4187 0.456 0.608 0.70934 1.3173 0.70934 2.2293 0 1.7227-0.65867 3.1413-1.9253 4.1547-1.2667 1.064-3.1413 1.5707-5.5733 1.5707-2.4827 0-4.56-0.456-6.1813-1.368-1.672-0.91201-3.04-2.0773-4.104-3.496l-2.28 2.0773c1.2667 1.52 2.888 2.8373 4.9147 3.8507 1.976 1.0133 4.5093 1.52 7.6507 1.52z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

11
static/img/badges/fr/export.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
# This script exports all fonts from svgs to path, and needs to be re-run every time the original file is modified.
# Programs required: inkscape, scour
# Fonts required: Ubuntu, Sharp Sans, Source Sans Pro
for file in *-text.svg; do
basename="${file%-*}"
rm $basename.svg
inkscape $basename-text.svg --export-filename=$basename-s.svg --export-text-to-path
scour -i $basename-s.svg -o $basename.svg
rm $basename-s.svg
done

View File

@ -0,0 +1,240 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="600"
height="200"
viewBox="0 0 600 200.00001"
version="1.1"
id="svg8129"
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
sodipodi:docname="flathub-text.svg"
inkscape:export-filename="/home/jimmac/SparkleShare/flathub-mockups/assets/download-button/download.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs8123" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4142136"
inkscape:cx="240.76985"
inkscape:cy="135.05739"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
borderlayer="true"
inkscape:showpageshadow="false"
inkscape:snap-nodes="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-midpoints="true"
inkscape:window-width="3440"
inkscape:window-height="1376"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:pagecheckerboard="0">
<inkscape:grid
type="xygrid"
id="grid8722" />
</sodipodi:namedview>
<metadata
id="metadata8126">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-922.51965)">
<rect
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#888a85;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal"
id="rect8720"
width="600"
height="200"
x="5e-07"
y="922.51965"
rx="0"
ry="0" />
<g
aria-label="FLATHUB"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:64.27679443px;line-height:125%;font-family:Overpass;-inkscape-font-specification:'Overpass, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
id="text7686">
<path
d="m 252.98791,1069.2683 h 7.71322 v -19.6044 h 13.62668 v -7.2633 h -13.62668 v -10.8628 h 21.33989 v -7.2632 h -29.05311 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path51" />
<path
d="m 289.39469,1069.2683 h 29.56732 v -7.3918 H 297.1079 v -37.6019 h -7.71321 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path53" />
<path
d="m 356.00553,1069.2683 h 8.09888 l -16.71197,-44.9937 h -7.64894 l -16.77624,44.9937 h 8.16315 l 3.53523,-9.8343 h 17.80467 z m -5.97774,-16.7762 h -12.91963 l 5.01359,-13.4982 c 0.44993,-1.2855 1.0927,-3.2138 1.47836,-4.5636 0.32139,1.3498 0.96415,3.2781 1.47837,4.5636 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path55" />
<path
d="m 383.46076,1031.6664 h 12.79108 v -7.3918 h -33.29538 v 7.3918 h 12.79109 v 37.6019 h 7.71321 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path57" />
<path
d="m 431.64627,1069.2683 h 7.64894 v -44.9937 h -7.64894 v 18.1903 h -19.6687 v -18.1903 h -7.71322 v 44.9937 h 7.71322 v -19.5401 h 19.6687 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path59" />
<path
d="m 467.4384,1070.0396 c 9.51296,0 17.54756,-4.6279 17.54756,-17.9332 v -27.8318 h -7.71321 v 27.8318 c 0,8.2274 -4.04944,10.5414 -9.83435,10.5414 -5.84919,0 -9.83435,-2.314 -9.83435,-10.5414 v -27.8318 h -7.71322 v 27.8318 c 0,13.4981 8.29171,17.9332 17.54757,17.9332 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path61" />
<path
d="m 495.53238,1024.2746 v 44.9937 h 19.34731 c 11.11989,0 15.04077,-7.0704 15.04077,-13.3053 0,-4.0494 -2.05686,-8.4845 -7.39183,-10.4128 3.98516,-1.9283 5.78491,-5.4636 5.78491,-9.2559 0,-6.1063 -3.53522,-12.0197 -14.398,-12.0197 z m 17.35473,18.126 h -9.64152 v -10.9913 h 10.86278 c 5.33497,0 6.42768,2.8282 6.42768,5.4635 0,3.2781 -2.5068,5.5278 -7.64894,5.5278 z m 2.44252,19.733 h -12.08404 v -12.5983 h 10.22001 c 7.00617,0 8.61309,3.2782 8.61309,6.6205 0,2.7639 -1.47836,5.9778 -6.74906,5.9778 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
id="path63" />
</g>
<g
transform="translate(-733.58433,141.64633)"
id="g8587">
<path
sodipodi:nodetypes="ccccccccccc"
inkscape:connector-curvature="0"
id="rect7736"
d="m 856.01397,830.22631 -66.76365,43.44891 v 34.93973 l 33.38182,21.72315 33.37926,-21.72315 v -0.005 l 0.003,0.003 33.38183,21.72574 33.37925,-21.72315 v -34.93979 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:24;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<g
style="stroke-width:0.75573969"
transform="matrix(0.50221552,0,0,0.50636711,429.63205,432.90461)"
id="g7710">
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.16674447;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect7688"
width="79.110413"
height="79.110413"
x="1289.9076"
y="279.42584"
rx="0"
ry="0"
transform="matrix(0.84019328,0.54228706,-0.84019328,0.54228706,0,0)" />
<rect
transform="matrix(0.84019328,0.54228706,-0.84019328,0.54228706,0,0)"
ry="0"
rx="0"
y="215.8064"
x="1226.2882"
height="79.110413"
width="79.110413"
id="rect7690"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.16674447;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.02295876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 915.46811,824.92983 -5e-5,68.99997 -66.46803,42.90055 5e-5,-68.99997 z"
id="path7692"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path7694"
d="m 783.00003,824.92983 5e-5,68.99997 66.46803,42.90055 -5e-5,-68.99997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.02295876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
</g>
<g
style="stroke-width:0.75573969"
transform="matrix(0.50221552,0,0,0.50636711,463.01368,454.62849)"
id="g7722">
<rect
transform="matrix(0.84019328,0.54228706,-0.84019328,0.54228706,0,0)"
ry="0"
rx="0"
y="279.42584"
x="1289.9076"
height="79.110413"
width="79.110413"
id="rect7714"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.16674447;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.16674447;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect7716"
width="79.110413"
height="79.110413"
x="1226.2882"
y="215.8064"
rx="0"
ry="0"
transform="matrix(0.84019328,0.54228706,-0.84019328,0.54228706,0,0)" />
<path
inkscape:connector-curvature="0"
id="path7718"
d="m 915.46811,824.92983 -5e-5,68.99997 -66.46803,42.90055 5e-5,-68.99997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.02295876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.02295876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 783.00003,824.92983 5e-5,68.99997 66.46803,42.90055 -5e-5,-68.99997 z"
id="path7720"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke-width:0.75573969"
id="g7734"
transform="matrix(0.50221552,0,0,0.50636711,396.25042,454.62849)">
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.16674447;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect7726"
width="79.110413"
height="79.110413"
x="1289.9076"
y="279.42584"
rx="0"
ry="0"
transform="matrix(0.84019328,0.54228706,-0.84019328,0.54228706,0,0)" />
<rect
transform="matrix(0.84019328,0.54228706,-0.84019328,0.54228706,0,0)"
ry="0"
rx="0"
y="215.8064"
x="1226.2882"
height="79.110413"
width="79.110413"
id="rect7728"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.16674447;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.02295876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 915.46811,824.92983 -5e-5,68.99997 -66.46803,42.90055 5e-5,-68.99997 z"
id="path7730"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path7732"
d="m 783.00003,824.92983 5e-5,68.99997 66.46803,42.90055 -5e-5,-68.99997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3.02295876;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:42.6667px;line-height:1.25;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro Light';text-align:center;letter-spacing:0.8px;text-anchor:middle;fill:#ffffff"
x="389.50357"
y="995.57275"
id="text4612"><tspan
sodipodi:role="line"
id="tspan4610"
x="390.10358"
y="995.57275"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.6667px;font-family:'Source Sans Pro';-inkscape-font-specification:'Source Sans Pro'">Installer depuis</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg id="svg8129" width="600" height="200" version="1.1" viewBox="0 0 600 200" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<metadata id="metadata8126">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g id="layer1" transform="translate(0 -922.52)">
<path id="rect8720" d="m5e-7 922.52h600v200h-600z" stroke-width="0"/>
<g id="text7686" color="#000000" fill="#fff" style="font-feature-settings:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;text-decoration-line:none;text-indent:0;text-transform:none" aria-label="FLATHUB">
<path id="path51" d="m252.99 1069.3h7.7132v-19.604h13.627v-7.2633h-13.627v-10.863h21.34v-7.2632h-29.053z"/>
<path id="path53" d="m289.39 1069.3h29.567v-7.3918h-21.854v-37.602h-7.7132z"/>
<path id="path55" d="m356.01 1069.3h8.0989l-16.712-44.994h-7.6489l-16.776 44.994h8.1632l3.5352-9.8343h17.805zm-5.9777-16.776h-12.92l5.0136-13.498c0.44993-1.2855 1.0927-3.2138 1.4784-4.5636 0.32139 1.3498 0.96415 3.2781 1.4784 4.5636z"/>
<path id="path57" d="m383.46 1031.7h12.791v-7.3918h-33.295v7.3918h12.791v37.602h7.7132z"/>
<path id="path59" d="m431.65 1069.3h7.6489v-44.994h-7.6489v18.19h-19.669v-18.19h-7.7132v44.994h7.7132v-19.54h19.669z"/>
<path id="path61" d="m467.44 1070c9.513 0 17.548-4.6279 17.548-17.933v-27.832h-7.7132v27.832c0 8.2274-4.0494 10.541-9.8344 10.541-5.8492 0-9.8344-2.314-9.8344-10.541v-27.832h-7.7132v27.832c0 13.498 8.2917 17.933 17.548 17.933z"/>
<path id="path63" d="m495.53 1024.3v44.994h19.347c11.12 0 15.041-7.0704 15.041-13.305 0-4.0494-2.0569-8.4845-7.3918-10.413 3.9852-1.9283 5.7849-5.4636 5.7849-9.2559 0-6.1063-3.5352-12.02-14.398-12.02zm17.355 18.126h-9.6415v-10.991h10.863c5.335 0 6.4277 2.8282 6.4277 5.4635 0 3.2781-2.5068 5.5278-7.6489 5.5278zm2.4425 19.733h-12.084v-12.598h10.22c7.0062 0 8.6131 3.2782 8.6131 6.6205 0 2.7639-1.4784 5.9778-6.7491 5.9778z"/>
</g>
<g id="g8587" transform="translate(-733.58 141.65)" stroke-linecap="square">
<path id="rect7736" d="m856.01 830.23-66.764 43.449v34.94l33.382 21.723 33.379-21.723v-5e-3l3e-3 3e-3 33.382 21.726 33.379-21.723v-34.94z" color="#000000" color-rendering="auto" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke="#fff" stroke-width="24" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<g id="g7710" transform="matrix(.50222 0 0 .50637 429.63 432.9)" stroke="#000" stroke-linejoin="round">
<path id="rect7688" transform="matrix(.84019 .54229 -.84019 .54229 0 0)" d="m1289.9 279.43h79.11v79.11h-79.11z" stroke-width="3.1667"/>
<path id="rect7690" transform="matrix(.84019 .54229 -.84019 .54229 0 0)" d="m1226.3 215.81h79.11v79.11h-79.11z" fill="#fff" stroke-width="3.1667"/>
<path id="path7692" d="m915.47 824.93-5e-5 69-66.468 42.901 5e-5 -69z" color="#000000" color-rendering="auto" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<path id="path7694" d="m783 824.93 5e-5 69 66.468 42.901-5e-5 -69z" color="#000000" color-rendering="auto" fill="#fff" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
</g>
<g id="g7722" transform="matrix(.50222 0 0 .50637 463.01 454.63)" stroke="#000" stroke-linejoin="round">
<path id="rect7714" transform="matrix(.84019 .54229 -.84019 .54229 0 0)" d="m1289.9 279.43h79.11v79.11h-79.11z" stroke-width="3.1667"/>
<path id="rect7716" transform="matrix(.84019 .54229 -.84019 .54229 0 0)" d="m1226.3 215.81h79.11v79.11h-79.11z" fill="#fff" stroke-width="3.1667"/>
<path id="path7718" d="m915.47 824.93-5e-5 69-66.468 42.901 5e-5 -69z" color="#000000" color-rendering="auto" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<path id="path7720" d="m783 824.93 5e-5 69 66.468 42.901-5e-5 -69z" color="#000000" color-rendering="auto" fill="#fff" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
</g>
<g id="g7734" transform="matrix(.50222 0 0 .50637 396.25 454.63)" stroke="#000" stroke-linejoin="round">
<path id="rect7726" transform="matrix(.84019 .54229 -.84019 .54229 0 0)" d="m1289.9 279.43h79.11v79.11h-79.11z" stroke-width="3.1667"/>
<path id="rect7728" transform="matrix(.84019 .54229 -.84019 .54229 0 0)" d="m1226.3 215.81h79.11v79.11h-79.11z" fill="#fff" stroke-width="3.1667"/>
<path id="path7730" d="m915.47 824.93-5e-5 69-66.468 42.901 5e-5 -69z" color="#000000" color-rendering="auto" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
<path id="path7732" d="m783 824.93 5e-5 69 66.468 42.901-5e-5 -69z" color="#000000" color-rendering="auto" fill="#fff" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stroke-width="3.023" style="isolation:auto;mix-blend-mode:normal;paint-order:normal"/>
</g>
</g>
<g id="text4612" fill="#fff" aria-label="Installer depuis">
<path id="path43" d="m250.13 967.58h3.584v27.989h-3.584z"/>
<path id="path45" d="m261.72 974.84h2.9013l0.29867 2.9867h0.128q1.4933-1.4933 3.1147-2.4747 1.664-1.024 3.84-1.024 3.2853 0 4.7787 2.048 1.536 2.048 1.536 6.0587v13.141h-3.4987v-12.672q0-2.944-0.93867-4.224-0.93866-1.3227-2.9867-1.3227-1.6213 0-2.8587 0.81067-1.2373 0.81067-2.816 2.3893v15.019h-3.4987z"/>
<path id="path47" d="m285.31 990.88q1.3653 1.1093 2.7733 1.792 1.4507 0.68267 3.328 0.68267 2.048 0 3.072-0.93867t1.024-2.304q0-0.81067-0.42667-1.408-0.42666-0.59734-1.1093-1.024-0.64-0.46933-1.4933-0.81066-0.85334-0.34134-1.7067-0.68267-1.1093-0.384-2.2187-0.85333-1.1093-0.512-2.0053-1.1947-0.85333-0.72534-1.408-1.664-0.55466-0.93867-0.55466-2.2613 0-1.2373 0.46933-2.304 0.512-1.1093 1.408-1.8773 0.93867-0.81067 2.2613-1.2373 1.3227-0.46933 2.9867-0.46933 1.9627 0 3.584 0.68267 1.664 0.68266 2.8587 1.664l-1.664 2.2187q-1.0667-0.81066-2.2187-1.3227t-2.5173-0.512q-1.9627 0-2.9013 0.896-0.896 0.896-0.896 2.0907 0 0.72533 0.384 1.2373t1.024 0.93867q0.64 0.42666 1.4507 0.768 0.85334 0.29866 1.7493 0.64 1.1093 0.42667 2.2187 0.896 1.152 0.46933 2.048 1.1947 0.896 0.68266 1.4507 1.7067 0.59733 1.024 0.59733 2.4747 0 1.28-0.512 2.3893-0.46933 1.1093-1.4507 1.9627-0.93867 0.85333-2.3893 1.3227-1.408 0.512-3.2427 0.512-2.2187 0-4.224-0.81066-2.0053-0.81067-3.4987-2.048z"/>
<path id="path49" d="m305.14 977.7h-3.072v-2.6453l3.2427-0.21333 0.42667-5.8027h2.944v5.8027h5.5893v2.8587h-5.5893v11.52q0 1.92 0.68267 2.9867 0.72533 1.024 2.5173 1.024 0.55467 0 1.1947-0.17067t1.152-0.384l0.68267 2.6453q-0.85334 0.29867-1.8773 0.512-0.98133 0.256-1.9627 0.256-1.664 0-2.816-0.512-1.1093-0.512-1.8347-1.408-0.68266-0.896-0.98133-2.176t-0.29867-2.816z"/>
<path id="path52" d="m317.97 990.2q0-3.4133 3.0293-5.2053 3.072-1.8347 9.728-2.56 0-0.98133-0.21334-1.92-0.17066-0.93867-0.68266-1.664-0.46934-0.72534-1.28-1.152-0.81067-0.46934-2.0907-0.46934-1.8347 0-3.4133 0.68267-1.536 0.68267-2.7733 1.536l-1.408-2.432q1.4507-0.93867 3.5413-1.792 2.0907-0.896 4.608-0.896 3.7973 0 5.504 2.3467 1.7067 2.304 1.7067 6.1867v12.715h-2.9013l-0.29866-2.4747h-0.0853q-1.4933 1.2373-3.2427 2.1333-1.7067 0.85333-3.6267 0.85333-2.6453 0-4.3947-1.536-1.7067-1.536-1.7067-4.352zm3.456-0.256q0 1.792 1.024 2.56 1.0667 0.768 2.6027 0.768 1.4933 0 2.816-0.68266 1.3653-0.72534 2.8587-2.0907v-5.76q-2.6027 0.34134-4.3947 0.81067t-2.9013 1.1093q-1.0667 0.64-1.536 1.4933-0.46933 0.81067-0.46933 1.792z"/>
<path id="path54" d="m341.64 965.19h3.4987v26.453q0 0.85333 0.29867 1.1947 0.29867 0.34133 0.68267 0.34133 0.17066 0 0.29866 0 0.17067 0 0.46934-0.0853l0.46933 2.6453q-0.34133 0.17067-0.81067 0.256-0.46933 0.0853-1.1947 0.0853-2.0053 0-2.8587-1.1947-0.85334-1.1947-0.85334-3.4987z"/>
<path id="path56" d="m353.32 965.19h3.4987v26.453q0 0.85333 0.29867 1.1947 0.29867 0.34133 0.68267 0.34133 0.17066 0 0.29866 0 0.17067 0 0.46934-0.0853l0.46933 2.6453q-0.34133 0.17067-0.81067 0.256-0.46933 0.0853-1.1947 0.0853-2.0053 0-2.8587-1.1947-0.85334-1.1947-0.85334-3.4987z"/>
<path id="path58" d="m363.46 985.25q0-2.56 0.768-4.5653 0.81067-2.048 2.0907-3.456 1.3227-1.408 2.9867-2.1333 1.664-0.768 3.456-0.768 1.9627 0 3.4987 0.68267 1.5787 0.68266 2.6027 1.9627 1.0667 1.28 1.6213 3.072 0.55467 1.792 0.55467 4.0107 0 1.152-0.128 1.92h-13.995q0.21334 3.3707 2.048 5.3333 1.8773 1.9627 4.864 1.9627 1.4933 0 2.7307-0.42666 1.28-0.46934 2.432-1.1947l1.2373 2.304q-1.3653 0.85333-3.0293 1.4933t-3.7973 0.64q-2.0907 0-3.9253-0.72533-1.792-0.768-3.1573-2.1333-1.3227-1.408-2.0907-3.4133-0.768-2.0053-0.768-4.5653zm14.507-1.5787q0-3.2-1.3653-4.864-1.3227-1.7067-3.7547-1.7067-1.1093 0-2.1333 0.46934-0.98133 0.42666-1.792 1.28-0.81067 0.81067-1.3653 2.048-0.512 1.1947-0.68266 2.7733z"/>
<path id="path60" d="m386.96 974.84h2.9013l0.29866 3.7547h0.128q1.0667-1.9627 2.56-3.1147 1.536-1.152 3.328-1.152 1.2373 0 2.2187 0.42667l-0.68267 3.072q-0.512-0.17067-0.93867-0.256-0.42667-0.0853-1.0667-0.0853-1.3227 0-2.7733 1.0667-1.408 1.0667-2.4747 3.712v13.312h-3.4987z"/>
<path id="path62" d="m410.49 985.25q0-2.5173 0.72533-4.5227 0.768-2.048 2.0053-3.456 1.2373-1.408 2.8587-2.176 1.6213-0.768 3.4133-0.768t3.1147 0.64 2.688 1.7493l-0.17066-3.5413v-7.9787h3.5413v30.379h-2.9013l-0.29867-2.432h-0.128q-1.2373 1.1947-2.8587 2.0907-1.5787 0.85333-3.4133 0.85333-3.9253 0-6.272-2.816-2.304-2.816-2.304-8.0213zm3.6267-0.0427q0 3.7547 1.4933 5.8453 1.4933 2.0907 4.224 2.0907 1.4507 0 2.7307-0.68267 1.28-0.72533 2.56-2.176v-10.837q-1.3227-1.1947-2.56-1.664-1.1947-0.512-2.4747-0.512-1.2373 0-2.3467 0.59733-1.0667 0.55467-1.8773 1.6213-0.81067 1.024-1.28 2.4747-0.46933 1.4507-0.46933 3.2427z"/>
<path id="path64" d="m434.93 985.25q0-2.56 0.768-4.5653 0.81066-2.048 2.0907-3.456 1.3227-1.408 2.9867-2.1333 1.664-0.768 3.456-0.768 1.9627 0 3.4987 0.68267 1.5787 0.68266 2.6027 1.9627 1.0667 1.28 1.6213 3.072 0.55467 1.792 0.55467 4.0107 0 1.152-0.128 1.92h-13.995q0.21333 3.3707 2.048 5.3333 1.8773 1.9627 4.864 1.9627 1.4933 0 2.7307-0.42666 1.28-0.46934 2.432-1.1947l1.2373 2.304q-1.3653 0.85333-3.0293 1.4933t-3.7973 0.64q-2.0907 0-3.9253-0.72533-1.792-0.768-3.1573-2.1333-1.3227-1.408-2.0907-3.4133-0.768-2.0053-0.768-4.5653zm14.507-1.5787q0-3.2-1.3653-4.864-1.3227-1.7067-3.7547-1.7067-1.1093 0-2.1333 0.46934-0.98133 0.42666-1.792 1.28-0.81066 0.81067-1.3653 2.048-0.512 1.1947-0.68267 2.7733z"/>
<path id="path66" d="m461.92 997.32v6.9973h-3.4987v-29.483h2.9013l0.29867 2.3893h0.128q1.408-1.1947 3.072-2.048 1.7067-0.85333 3.5413-0.85333 2.0053 0 3.5413 0.768 1.536 0.72533 2.56 2.1333 1.024 1.3653 1.536 3.328 0.55467 1.92 0.55467 4.352 0 2.6453-0.72533 4.736-0.72534 2.048-1.9627 3.4987-1.2373 1.4507-2.8587 2.2187-1.6213 0.72533-3.4133 0.72533-1.4507 0-2.9013-0.64-1.408-0.64-2.8587-1.7493zm0-6.3573q1.408 1.1947 2.7307 1.7067 1.3227 0.46933 2.3467 0.46933 1.28 0 2.3467-0.55466 1.1093-0.59734 1.8773-1.6213 0.81067-1.0667 1.2373-2.6027 0.46933-1.536 0.46933-3.456 0-1.7067-0.29867-3.1147-0.29866-1.408-0.98133-2.3893-0.64-1.024-1.7067-1.5787-1.024-0.55467-2.4747-0.55467-1.3227 0-2.688 0.72533-1.3227 0.72534-2.8587 2.0907z"/>
<path id="path68" d="m482.61 974.84h3.5413v12.672q0 2.944 0.896 4.2667 0.93867 1.28 2.9867 1.28 1.6213 0 2.8587-0.81067 1.2373-0.85333 2.7307-2.688v-14.72h3.4987v20.736h-2.9013l-0.29866-3.2427h-0.128q-1.4507 1.7067-3.072 2.7307-1.5787 1.024-3.7547 1.024-3.328 0-4.864-2.048-1.4933-2.048-1.4933-6.0587z"/>
<path id="path70" d="m508.71 970.57q-1.024 0-1.7493-0.64-0.68266-0.64-0.68266-1.6213 0-1.024 0.68266-1.6213 0.72534-0.64 1.7493-0.64t1.7067 0.64q0.72533 0.59733 0.72533 1.6213 0 0.98134-0.72533 1.6213-0.68267 0.64-1.7067 0.64zm-1.792 4.2667h3.4987v20.736h-3.4987z"/>
<path id="path72" d="m517.66 990.88q1.3653 1.1093 2.7733 1.792 1.4507 0.68267 3.328 0.68267 2.048 0 3.072-0.93867t1.024-2.304q0-0.81067-0.42667-1.408-0.42666-0.59734-1.1093-1.024-0.64-0.46933-1.4933-0.81066-0.85334-0.34134-1.7067-0.68267-1.1093-0.384-2.2187-0.85333-1.1093-0.512-2.0053-1.1947-0.85333-0.72534-1.408-1.664-0.55466-0.93867-0.55466-2.2613 0-1.2373 0.46933-2.304 0.512-1.1093 1.408-1.8773 0.93867-0.81067 2.2613-1.2373 1.3227-0.46933 2.9867-0.46933 1.9627 0 3.584 0.68267 1.664 0.68266 2.8587 1.664l-1.664 2.2187q-1.0667-0.81066-2.2187-1.3227t-2.5173-0.512q-1.9627 0-2.9013 0.896-0.896 0.896-0.896 2.0907 0 0.72533 0.384 1.2373t1.024 0.93867q0.64 0.42666 1.4507 0.768 0.85334 0.29866 1.7493 0.64 1.1093 0.42667 2.2187 0.896 1.152 0.46933 2.048 1.1947 0.896 0.68266 1.4507 1.7067 0.59733 1.024 0.59733 2.4747 0 1.28-0.512 2.3893-0.46933 1.1093-1.4507 1.9627-0.93867 0.85333-2.3893 1.3227-1.408 0.512-3.2427 0.512-2.2187 0-4.224-0.81066-2.0053-0.81067-3.4987-2.048z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 182 56"
style="enable-background:new 0 0 182 56;"
xml:space="preserve"
sodipodi:docname="snapcraft-text.svg"
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
id="defs22">
</defs><sodipodi:namedview
id="namedview20"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="true"
inkscape:zoom="4"
inkscape:cx="185.875"
inkscape:cy="15.625"
inkscape:current-layer="Layer_1"><inkscape:grid
type="xygrid"
id="grid189" /></sodipodi:namedview>
<style
type="text/css"
id="style2">
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#252525;stroke:#CDCDCD;}
.st1{fill:#82BEA0;}
.st2{fill:#FA6441;}
.st3{fill:#FFFFFF;}
.st4{font-family:'Ubuntu';}
.st5{font-size:12px;}
.st6{font-size:24px;}
</style>
<title
id="title4">[EN]-snap-store-black</title>
<desc
id="desc6">Created with Sketch.</desc>
<rect
style="fill:#252525;stroke-width:0;stroke-linejoin:round;fill-opacity:1"
id="rect403"
width="182"
height="56"
x="0"
y="0"
ry="0" /><g
id="logo"
transform="translate(8,11)">
<path
id="body"
class="st1"
d="M 19,17.8 V 7.3 l 7.2,3.2 z M 5.2,31.6 14.1,15 18,18.9 Z M 0.2,0.2 18.4,6.8 v 11.6 z" />
<polygon
id="head"
class="st2"
points="19.4,6.8 32.9,12.9 29.9,6.8 " />
</g><text
class="st3 st4 st5"
id="text12"
x="50"
y="17">Installer à partir du</text><text
class="st3 st4 st6"
id="text14"
x="50"
y="41">Snap Store</text>
<metadata
id="metadata35"><rdf:RDF><cc:Work
rdf:about=""><dc:title>[EN]-snap-store-black</dc:title></cc:Work></rdf:RDF></metadata></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB