Update OIDC and CalDav/CardDav instructions.
Upgrade Deno, formatting tweaked the SVG files, now.
@@ -1,4 +1,4 @@
|
||||
FROM denoland/deno:ubuntu-2.3.6
|
||||
FROM denoland/deno:ubuntu-2.4.2
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ If you're looking for the mobile app, it's at [`bewcloud-mobile`](https://github
|
||||
|
||||
Or on your own machine:
|
||||
|
||||
Download/copy [`docker-compose.yml`](/docker-compose.yml), [`.env.sample`](/.env.sample) as `.env`, and [`bewcloud.config.sample.ts`](/bewcloud.config.sample.ts) as `bewcloud.config.ts`.
|
||||
Download/copy [`docker-compose.yml`](/docker-compose.yml), [`.env.sample`](/.env.sample) as `.env`, [`bewcloud.config.sample.ts`](/bewcloud.config.sample.ts) as `bewcloud.config.ts`, and [`radicale-config/config`](/radicale-config/config) as `radicale-config/config` (if you're using CalDav/CardDav).
|
||||
|
||||
> [!NOTE]
|
||||
> `1993:1993` below comes from deno's [docker image](https://github.com/denoland/deno_docker/blob/2abfe921484bdc79d11c7187a9d7b59537457c31/ubuntu.dockerfile#L20-L22) where `1993` is the default user id in it. It might change in the future since I don't control it.
|
||||
|
||||
@@ -10,6 +10,10 @@ const config: PartialDeep<Config> = {
|
||||
enableMultiFactor: false, // If true, users can enable multi-factor authentication (TOTP, Passkeys, or Email if the SMTP settings below are set)
|
||||
// allowedCookieDomains: ['example.com', 'example.net'], // Can be set to allow more than the baseUrl's domain for session cookies
|
||||
// skipCookieDomainSecurity: true, // If true, the cookie domain will not be strictly set and checked against. This skipping slightly reduces security, but is usually necessary for reverse proxies like Cloudflare Tunnel
|
||||
// enableSingleSignOn: false, // If true, single sign-on will be enabled
|
||||
// singleSignOnUrl: '', // The Discovery URL (AKA Issuer) of the identity/single sign-on provider
|
||||
// singleSignOnEmailAttribute: 'email', // The attribute to prefer as email of the identity/single sign-on provider
|
||||
// singleSignOnScopes: ['openid', 'email'], // The scopes to request from the identity/single sign-on provider
|
||||
},
|
||||
// files: {
|
||||
// rootPath: 'data-files',
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
services:
|
||||
website:
|
||||
image: ghcr.io/bewcloud/bewcloud:v2.3.0
|
||||
image: ghcr.io/bewcloud/bewcloud:v2.3.1
|
||||
restart: always
|
||||
ports:
|
||||
- 127.0.0.1:8000:8000
|
||||
|
||||
@@ -1 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="32" d="M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192s192-86 192-192Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M256 176v160m80-80H176"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-miterlimit="10"
|
||||
stroke-width="32"
|
||||
d="M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192s192-86 192-192Z"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M256 176v160m80-80H176"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 385 B After Width: | Height: | Size: 440 B |
@@ -1 +1,40 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><rect width="416" height="384" x="48" y="80" fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="32" rx="48"/><circle cx="296" cy="232" r="24" fill="currentColor"/><circle cx="376" cy="232" r="24" fill="currentColor"/><circle cx="296" cy="312" r="24" fill="currentColor"/><circle cx="376" cy="312" r="24" fill="currentColor"/><circle cx="136" cy="312" r="24" fill="currentColor"/><circle cx="216" cy="312" r="24" fill="currentColor"/><circle cx="136" cy="392" r="24" fill="currentColor"/><circle cx="216" cy="392" r="24" fill="currentColor"/><circle cx="296" cy="392" r="24" fill="currentColor"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M128 48v32m256-32v32"/><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="32" d="M464 160H48"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<rect
|
||||
width="416"
|
||||
height="384"
|
||||
x="48"
|
||||
y="80"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
rx="48"
|
||||
/><circle cx="296" cy="232" r="24" fill="currentColor" /><circle
|
||||
cx="376"
|
||||
cy="232"
|
||||
r="24"
|
||||
fill="currentColor"
|
||||
/><circle cx="296" cy="312" r="24" fill="currentColor" /><circle
|
||||
cx="376"
|
||||
cy="312"
|
||||
r="24"
|
||||
fill="currentColor"
|
||||
/><circle cx="136" cy="312" r="24" fill="currentColor" /><circle
|
||||
cx="216"
|
||||
cy="312"
|
||||
r="24"
|
||||
fill="currentColor"
|
||||
/><circle cx="136" cy="392" r="24" fill="currentColor" /><circle
|
||||
cx="216"
|
||||
cy="392"
|
||||
r="24"
|
||||
fill="currentColor"
|
||||
/><circle cx="296" cy="392" r="24" fill="currentColor" /><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M128 48v32m256-32v32"
|
||||
/><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="32" d="M464 160H48" />
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 937 B After Width: | Height: | Size: 1.1 KiB |
@@ -1 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="32" d="M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192s192-86 192-192Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M368 192L256.13 320l-47.95-48m-16.23 48L144 272m161.71-80l-51.55 59"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-miterlimit="10"
|
||||
stroke-width="32"
|
||||
d="M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192s192-86 192-192Z"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M368 192L256.13 320l-47.95-48m-16.23 48L144 272m161.71-80l-51.55 59"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 430 B After Width: | Height: | Size: 485 B |
@@ -1 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="32" d="M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192s192-86 192-192Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M352 176L217.6 336L160 272"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-miterlimit="10"
|
||||
stroke-width="32"
|
||||
d="M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192s192-86 192-192Z"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M352 176L217.6 336L160 272"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 389 B After Width: | Height: | Size: 444 B |
@@ -1 +1,30 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M402 168c-2.93 40.67-33.1 72-66 72s-63.12-31.32-66-72c-3-42.31 26.37-72 66-72s69 30.46 66 72Z"/><path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="32" d="M336 304c-65.17 0-127.84 32.37-143.54 95.41c-2.08 8.34 3.15 16.59 11.72 16.59h263.65c8.57 0 13.77-8.25 11.72-16.59C463.85 335.36 401.18 304 336 304Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M200 185.94c-2.34 32.48-26.72 58.06-53 58.06s-50.7-25.57-53-58.06C91.61 152.15 115.34 128 147 128s55.39 24.77 53 57.94Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="32" d="M206 306c-18.05-8.27-37.93-11.45-59-11.45c-52 0-102.1 25.85-114.65 76.2c-1.65 6.66 2.53 13.25 9.37 13.25H154"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M402 168c-2.93 40.67-33.1 72-66 72s-63.12-31.32-66-72c-3-42.31 26.37-72 66-72s69 30.46 66 72Z"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-miterlimit="10"
|
||||
stroke-width="32"
|
||||
d="M336 304c-65.17 0-127.84 32.37-143.54 95.41c-2.08 8.34 3.15 16.59 11.72 16.59h263.65c8.57 0 13.77-8.25 11.72-16.59C463.85 335.36 401.18 304 336 304Z"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M200 185.94c-2.34 32.48-26.72 58.06-53 58.06s-50.7-25.57-53-58.06C91.61 152.15 115.34 128 147 128s55.39 24.77 53 57.94Z"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-miterlimit="10"
|
||||
stroke-width="32"
|
||||
d="M206 306c-18.05-8.27-37.93-11.45-59-11.45c-52 0-102.1 25.85-114.65 76.2c-1.65 6.66 2.53 13.25 9.37 13.25H154"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 978 B After Width: | Height: | Size: 1.1 KiB |
@@ -1 +1,17 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M80 212v236a16 16 0 0 0 16 16h96V328a24 24 0 0 1 24-24h80a24 24 0 0 1 24 24v136h96a16 16 0 0 0 16-16V212"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M480 256L266.89 52c-5-5.28-16.69-5.34-21.78 0L32 256m368-77V64h-48v69"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M80 212v236a16 16 0 0 0 16 16h96V328a24 24 0 0 1 24-24h80a24 24 0 0 1 24 24v136h96a16 16 0 0 0 16-16V212"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M480 256L266.89 52c-5-5.28-16.69-5.34-21.78 0L32 256m368-77V64h-48v69"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 486 B After Width: | Height: | Size: 545 B |
@@ -1 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path d="M256 90c44.3 0 86 17.3 117.4 48.6C404.7 170 422 211.7 422 256s-17.3 86-48.6 117.4C342 404.7 300.3 422 256 422s-86-17.3-117.4-48.6C107.3 342 90 300.3 90 256s17.3-86 48.6-117.4C170 107.3 211.7 90 256 90m0-42C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48z" fill="currentColor"/><path d="M360 330.9L330.9 360 256 285.1 181.1 360 152 330.9l74.9-74.9-74.9-74.9 29.1-29.1 74.9 74.9 74.9-74.9 29.1 29.1-74.9 74.9z" fill="currentColor"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
d="M256 90c44.3 0 86 17.3 117.4 48.6C404.7 170 422 211.7 422 256s-17.3 86-48.6 117.4C342 404.7 300.3 422 256 422s-86-17.3-117.4-48.6C107.3 342 90 300.3 90 256s17.3-86 48.6-117.4C170 107.3 211.7 90 256 90m0-42C141.1 48 48 141.1 48 256s93.1 208 208 208 208-93.1 208-208S370.9 48 256 48z"
|
||||
fill="currentColor"
|
||||
/><path
|
||||
d="M360 330.9L330.9 360 256 285.1 181.1 360 152 330.9l74.9-74.9-74.9-74.9 29.1-29.1 74.9 74.9 74.9-74.9 29.1 29.1-74.9 74.9z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 557 B After Width: | Height: | Size: 584 B |
@@ -1 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M440 432H72a40 40 0 0 1-40-40V120a40 40 0 0 1 40-40h75.89a40 40 0 0 1 22.19 6.72l27.84 18.56a40 40 0 0 0 22.19 6.72H440a40 40 0 0 1 40 40v240a40 40 0 0 1-40 40ZM32 192h448"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M440 432H72a40 40 0 0 1-40-40V120a40 40 0 0 1 40-40h75.89a40 40 0 0 1 22.19 6.72l27.84 18.56a40 40 0 0 0 22.19 6.72H440a40 40 0 0 1 40 40v240a40 40 0 0 1-40 40ZM32 192h448"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 373 B After Width: | Height: | Size: 405 B |
@@ -1 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-width="1.5"><circle cx="12" cy="12" r="10"/><path stroke-linecap="round" d="M12 6v12m3-8.5C15 8.12 13.657 7 12 7S9 8.12 9 9.5s1.343 2.5 3 2.5s3 1.12 3 2.5s-1.343 2.5-3 2.5s-3-1.12-3-2.5"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24">
|
||||
<g fill="none" stroke="currentColor" stroke-width="1.5"><circle cx="12" cy="12" r="10" /><path
|
||||
stroke-linecap="round"
|
||||
d="M12 6v12m3-8.5C15 8.12 13.657 7 12 7S9 8.12 9 9.5s1.343 2.5 3 2.5s3 1.12 3 2.5s-1.343 2.5-3 2.5s-3-1.12-3-2.5"
|
||||
/></g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 325 B After Width: | Height: | Size: 348 B |
@@ -1,120 +1,134 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
data-v-fde0c5aa=""
|
||||
viewBox="0 0 80 80"
|
||||
class="iconLeft"
|
||||
version="1.1"
|
||||
id="svg3"
|
||||
sodipodi:docname="favicon-dark.svg"
|
||||
inkscape:export-filename="favicon-dark.png"
|
||||
inkscape:export-xdpi="1228.8"
|
||||
inkscape:export-ydpi="1228.8"
|
||||
inkscape:version="1.3.2 (091e20e, 2023-11-25)"
|
||||
width="80"
|
||||
height="80"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
data-v-fde0c5aa=""
|
||||
viewBox="0 0 80 80"
|
||||
class="iconLeft"
|
||||
version="1.1"
|
||||
id="svg3"
|
||||
sodipodi:docname="favicon-dark.svg"
|
||||
inkscape:export-filename="favicon-dark.png"
|
||||
inkscape:export-xdpi="1228.8"
|
||||
inkscape:export-ydpi="1228.8"
|
||||
inkscape:version="1.3.2 (091e20e, 2023-11-25)"
|
||||
width="80"
|
||||
height="80"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<sodipodi:namedview
|
||||
id="namedview3"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.92"
|
||||
inkscape:cx="67.96875"
|
||||
inkscape:cy="15.104167"
|
||||
inkscape:window-width="1312"
|
||||
inkscape:window-height="449"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="38"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="g5" />
|
||||
id="namedview3"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.92"
|
||||
inkscape:cx="67.96875"
|
||||
inkscape:cy="15.104167"
|
||||
inkscape:window-width="1312"
|
||||
inkscape:window-height="449"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="38"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="g5"
|
||||
/>
|
||||
<!---->
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs1">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs1"
|
||||
>
|
||||
<!---->
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient4"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient4"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
/>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient5"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient5"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
/>
|
||||
</defs>
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs2">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs2"
|
||||
>
|
||||
<!---->
|
||||
</defs>
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs3">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs3"
|
||||
>
|
||||
<linearGradient
|
||||
data-v-fde0c5aa=""
|
||||
gradientTransform="rotate(25)"
|
||||
id="d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0">
|
||||
data-v-fde0c5aa=""
|
||||
gradientTransform="rotate(25)"
|
||||
id="d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0"
|
||||
>
|
||||
<stop
|
||||
data-v-fde0c5aa=""
|
||||
offset="0%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop2" />
|
||||
data-v-fde0c5aa=""
|
||||
offset="0%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop2"
|
||||
/>
|
||||
<stop
|
||||
data-v-fde0c5aa=""
|
||||
offset="100%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop3" />
|
||||
data-v-fde0c5aa=""
|
||||
offset="100%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop3"
|
||||
/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
id="g5"
|
||||
transform="translate(-24.999993,-125)">
|
||||
id="g5"
|
||||
transform="translate(-24.999993,-125)"
|
||||
>
|
||||
<rect
|
||||
data-v-fde0c5aa=""
|
||||
fill="#e6f2fe"
|
||||
x="24.999992"
|
||||
y="125"
|
||||
width="80"
|
||||
height="80"
|
||||
class="logo-background-square"
|
||||
id="rect1"
|
||||
style="stroke-width:0.266666;fill:#02203a;fill-opacity:1" />
|
||||
data-v-fde0c5aa=""
|
||||
fill="#e6f2fe"
|
||||
x="24.999992"
|
||||
y="125"
|
||||
width="80"
|
||||
height="80"
|
||||
class="logo-background-square"
|
||||
id="rect1"
|
||||
style="stroke-width: 0.266666; fill: #02203a; fill-opacity: 1"
|
||||
/>
|
||||
<g
|
||||
data-v-fde0c5aa=""
|
||||
id="f64f14cc-5390-468e-9cd6-ee0163dcbf09"
|
||||
stroke="none"
|
||||
fill="url(#d27698e6-eb24-4a3f-96af-256d84d5b3ea)"
|
||||
transform="matrix(0.60062915,0,0,0.60062915,34.968536,148.43645)"
|
||||
style="fill:url(#linearGradient5)">
|
||||
data-v-fde0c5aa=""
|
||||
id="f64f14cc-5390-468e-9cd6-ee0163dcbf09"
|
||||
stroke="none"
|
||||
fill="url(#d27698e6-eb24-4a3f-96af-256d84d5b3ea)"
|
||||
transform="matrix(0.60062915,0,0,0.60062915,34.968536,148.43645)"
|
||||
style="fill: url(#linearGradient5)"
|
||||
>
|
||||
<path
|
||||
d="M 77.959,55.154 H 11.282 C 5.061,55.154 0,50.093 0,43.873 0,38.595 3.643,34.152 8.546,32.927 10.734,27.458 15.794,23.541 21.695,22.838 22.317,10.14 32.843,0 45.693,0 55.11,0 63.515,5.536 67.416,13.756 a 21.944,21.944 0 0 1 10.543,-2.682 c 12.153,0 22.041,9.887 22.041,22.04 0,12.153 -9.887,22.04 -22.041,22.04 z M 11.209,40.372 a 3.507,3.507 0 0 0 -3.429,3.501 3.504,3.504 0 0 0 3.501,3.501 h 66.678 c 7.863,0 14.26,-6.397 14.26,-14.26 0,-7.863 -6.396,-14.259 -14.26,-14.259 -3.683,0 -7.18,1.404 -9.847,3.952 L 63.016,27.678 61.612,20.77 C 60.083,13.243 53.388,7.78 45.693,7.78 c -8.958,0 -16.247,7.288 -16.247,16.246 0,0.728 0.054,1.483 0.159,2.246 l 0.73,5.287 -5.256,-0.923 a 8.59,8.59 0 0 0 -1.474,-0.132 c -4.002,0 -7.479,2.842 -8.267,6.757 l -0.65,3.227 -3.29,-0.106 z"
|
||||
id="path3"
|
||||
style="fill:url(#linearGradient4)" />
|
||||
d="M 77.959,55.154 H 11.282 C 5.061,55.154 0,50.093 0,43.873 0,38.595 3.643,34.152 8.546,32.927 10.734,27.458 15.794,23.541 21.695,22.838 22.317,10.14 32.843,0 45.693,0 55.11,0 63.515,5.536 67.416,13.756 a 21.944,21.944 0 0 1 10.543,-2.682 c 12.153,0 22.041,9.887 22.041,22.04 0,12.153 -9.887,22.04 -22.041,22.04 z M 11.209,40.372 a 3.507,3.507 0 0 0 -3.429,3.501 3.504,3.504 0 0 0 3.501,3.501 h 66.678 c 7.863,0 14.26,-6.397 14.26,-14.26 0,-7.863 -6.396,-14.259 -14.26,-14.259 -3.683,0 -7.18,1.404 -9.847,3.952 L 63.016,27.678 61.612,20.77 C 60.083,13.243 53.388,7.78 45.693,7.78 c -8.958,0 -16.247,7.288 -16.247,16.246 0,0.728 0.054,1.483 0.159,2.246 l 0.73,5.287 -5.256,-0.923 a 8.59,8.59 0 0 0 -1.474,-0.132 c -4.002,0 -7.479,2.842 -8.267,6.757 l -0.65,3.227 -3.29,-0.106 z"
|
||||
id="path3"
|
||||
style="fill: url(#linearGradient4)"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<!---->
|
||||
|
||||
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
@@ -1,120 +1,134 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
data-v-fde0c5aa=""
|
||||
viewBox="0 0 80 80"
|
||||
class="iconLeft"
|
||||
version="1.1"
|
||||
id="svg3"
|
||||
sodipodi:docname="favicon.svg"
|
||||
inkscape:export-filename="favicon.png"
|
||||
inkscape:export-xdpi="1228.8"
|
||||
inkscape:export-ydpi="1228.8"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
width="80"
|
||||
height="80"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
data-v-fde0c5aa=""
|
||||
viewBox="0 0 80 80"
|
||||
class="iconLeft"
|
||||
version="1.1"
|
||||
id="svg3"
|
||||
sodipodi:docname="favicon.svg"
|
||||
inkscape:export-filename="favicon.png"
|
||||
inkscape:export-xdpi="1228.8"
|
||||
inkscape:export-ydpi="1228.8"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
width="80"
|
||||
height="80"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<sodipodi:namedview
|
||||
id="namedview3"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.92"
|
||||
inkscape:cx="127.34375"
|
||||
inkscape:cy="30.208333"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="831"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g5" />
|
||||
id="namedview3"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.92"
|
||||
inkscape:cx="127.34375"
|
||||
inkscape:cy="30.208333"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="831"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g5"
|
||||
/>
|
||||
<!---->
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs1">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs1"
|
||||
>
|
||||
<!---->
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient4"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient4"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
/>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient5"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient5"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
/>
|
||||
</defs>
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs2">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs2"
|
||||
>
|
||||
<!---->
|
||||
</defs>
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs3">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs3"
|
||||
>
|
||||
<linearGradient
|
||||
data-v-fde0c5aa=""
|
||||
gradientTransform="rotate(25)"
|
||||
id="d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0">
|
||||
data-v-fde0c5aa=""
|
||||
gradientTransform="rotate(25)"
|
||||
id="d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0"
|
||||
>
|
||||
<stop
|
||||
data-v-fde0c5aa=""
|
||||
offset="0%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop2" />
|
||||
data-v-fde0c5aa=""
|
||||
offset="0%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop2"
|
||||
/>
|
||||
<stop
|
||||
data-v-fde0c5aa=""
|
||||
offset="100%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop3" />
|
||||
data-v-fde0c5aa=""
|
||||
offset="100%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop3"
|
||||
/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
id="g5"
|
||||
transform="translate(-24.999993,-125)">
|
||||
id="g5"
|
||||
transform="translate(-24.999993,-125)"
|
||||
>
|
||||
<rect
|
||||
data-v-fde0c5aa=""
|
||||
fill="#e6f2fe"
|
||||
x="24.999992"
|
||||
y="125"
|
||||
width="80"
|
||||
height="80"
|
||||
class="logo-background-square"
|
||||
id="rect1"
|
||||
style="stroke-width:0.266666" />
|
||||
data-v-fde0c5aa=""
|
||||
fill="#e6f2fe"
|
||||
x="24.999992"
|
||||
y="125"
|
||||
width="80"
|
||||
height="80"
|
||||
class="logo-background-square"
|
||||
id="rect1"
|
||||
style="stroke-width: 0.266666"
|
||||
/>
|
||||
<g
|
||||
data-v-fde0c5aa=""
|
||||
id="f64f14cc-5390-468e-9cd6-ee0163dcbf09"
|
||||
stroke="none"
|
||||
fill="url(#d27698e6-eb24-4a3f-96af-256d84d5b3ea)"
|
||||
transform="matrix(0.60062915,0,0,0.60062915,34.968536,148.43645)"
|
||||
style="fill:url(#linearGradient5)">
|
||||
data-v-fde0c5aa=""
|
||||
id="f64f14cc-5390-468e-9cd6-ee0163dcbf09"
|
||||
stroke="none"
|
||||
fill="url(#d27698e6-eb24-4a3f-96af-256d84d5b3ea)"
|
||||
transform="matrix(0.60062915,0,0,0.60062915,34.968536,148.43645)"
|
||||
style="fill: url(#linearGradient5)"
|
||||
>
|
||||
<path
|
||||
d="M 77.959,55.154 H 11.282 C 5.061,55.154 0,50.093 0,43.873 0,38.595 3.643,34.152 8.546,32.927 10.734,27.458 15.794,23.541 21.695,22.838 22.317,10.14 32.843,0 45.693,0 55.11,0 63.515,5.536 67.416,13.756 a 21.944,21.944 0 0 1 10.543,-2.682 c 12.153,0 22.041,9.887 22.041,22.04 0,12.153 -9.887,22.04 -22.041,22.04 z M 11.209,40.372 a 3.507,3.507 0 0 0 -3.429,3.501 3.504,3.504 0 0 0 3.501,3.501 h 66.678 c 7.863,0 14.26,-6.397 14.26,-14.26 0,-7.863 -6.396,-14.259 -14.26,-14.259 -3.683,0 -7.18,1.404 -9.847,3.952 L 63.016,27.678 61.612,20.77 C 60.083,13.243 53.388,7.78 45.693,7.78 c -8.958,0 -16.247,7.288 -16.247,16.246 0,0.728 0.054,1.483 0.159,2.246 l 0.73,5.287 -5.256,-0.923 a 8.59,8.59 0 0 0 -1.474,-0.132 c -4.002,0 -7.479,2.842 -8.267,6.757 l -0.65,3.227 -3.29,-0.106 z"
|
||||
id="path3"
|
||||
style="fill:url(#linearGradient4)" />
|
||||
d="M 77.959,55.154 H 11.282 C 5.061,55.154 0,50.093 0,43.873 0,38.595 3.643,34.152 8.546,32.927 10.734,27.458 15.794,23.541 21.695,22.838 22.317,10.14 32.843,0 45.693,0 55.11,0 63.515,5.536 67.416,13.756 a 21.944,21.944 0 0 1 10.543,-2.682 c 12.153,0 22.041,9.887 22.041,22.04 0,12.153 -9.887,22.04 -22.041,22.04 z M 11.209,40.372 a 3.507,3.507 0 0 0 -3.429,3.501 3.504,3.504 0 0 0 3.501,3.501 h 66.678 c 7.863,0 14.26,-6.397 14.26,-14.26 0,-7.863 -6.396,-14.259 -14.26,-14.259 -3.683,0 -7.18,1.404 -9.847,3.952 L 63.016,27.678 61.612,20.77 C 60.083,13.243 53.388,7.78 45.693,7.78 c -8.958,0 -16.247,7.288 -16.247,16.246 0,0.728 0.054,1.483 0.159,2.246 l 0.73,5.287 -5.256,-0.923 a 8.59,8.59 0 0 0 -1.474,-0.132 c -4.002,0 -7.479,2.842 -8.267,6.757 l -0.65,3.227 -3.29,-0.106 z"
|
||||
id="path3"
|
||||
style="fill: url(#linearGradient4)"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<!---->
|
||||
|
||||
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="32" d="M416 221.25V416a48 48 0 0 1-48 48H144a48 48 0 0 1-48-48V96a48 48 0 0 1 48-48h98.75a32 32 0 0 1 22.62 9.37l141.26 141.26a32 32 0 0 1 9.37 22.62Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M256 56v120a32 32 0 0 0 32 32h120"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M416 221.25V416a48 48 0 0 1-48 48H144a48 48 0 0 1-48-48V96a48 48 0 0 1 48-48h98.75a32 32 0 0 1 22.62 9.37l141.26 141.26a32 32 0 0 1 9.37 22.62Z"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M256 56v120a32 32 0 0 0 32 32h120"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 466 B After Width: | Height: | Size: 521 B |
@@ -1 +1,17 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M64 192v-72a40 40 0 0 1 40-40h75.89a40 40 0 0 1 22.19 6.72l27.84 18.56a40 40 0 0 0 22.19 6.72H408a40 40 0 0 1 40 40v40"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M479.9 226.55L463.68 392a40 40 0 0 1-39.93 40H88.25a40 40 0 0 1-39.93-40L32.1 226.55A32 32 0 0 1 64 192h384.1a32 32 0 0 1 31.8 34.55Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M64 192v-72a40 40 0 0 1 40-40h75.89a40 40 0 0 1 22.19 6.72l27.84 18.56a40 40 0 0 0 22.19 6.72H408a40 40 0 0 1 40 40v40"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M479.9 226.55L463.68 392a40 40 0 0 1-39.93 40H88.25a40 40 0 0 1-39.93-40L32.1 226.55A32 32 0 0 1 64 192h384.1a32 32 0 0 1 31.8 34.55Z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 564 B After Width: | Height: | Size: 623 B |
@@ -1 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="m352 296l-96-96l-96 96"/><path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="32" d="M256 64C150 64 64 150 64 256s86 192 192 192s192-86 192-192S362 64 256 64Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="m352 296l-96-96l-96 96"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-miterlimit="10"
|
||||
stroke-width="32"
|
||||
d="M256 64C150 64 64 150 64 256s86 192 192 192s192-86 192-192S362 64 256 64Z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 439 B |
@@ -1 +1,12 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="currentColor" d="m273.77 169.57l-89.09 74.13a16 16 0 0 0 0 24.6l89.09 74.13A16 16 0 0 0 300 330.14V181.86a16 16 0 0 0-26.23-12.29Z"/><path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="32" d="M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192s192-86 192-192Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="currentColor"
|
||||
d="m273.77 169.57l-89.09 74.13a16 16 0 0 0 0 24.6l89.09 74.13A16 16 0 0 0 300 330.14V181.86a16 16 0 0 0-26.23-12.29Z"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-miterlimit="10"
|
||||
stroke-width="32"
|
||||
d="M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192s192-86 192-192Z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 397 B After Width: | Height: | Size: 436 B |
@@ -1 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="currentColor" d="M321.94 98L158.82 237.78a24 24 0 0 0 0 36.44L321.94 414c15.57 13.34 39.62 2.28 39.62-18.22v-279.6c0-20.5-24.05-31.56-39.62-18.18Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="currentColor"
|
||||
d="M321.94 98L158.82 237.78a24 24 0 0 0 0 36.44L321.94 414c15.57 13.34 39.62 2.28 39.62-18.22v-279.6c0-20.5-24.05-31.56-39.62-18.18Z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 252 B After Width: | Height: | Size: 268 B |
@@ -1,5 +1,20 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="margin:auto;background:transparent;display:block;" width="200px" height="200px" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid">
|
||||
<path d="M10 50A40 40 0 0 0 90 50A40 42 0 0 1 10 50" fill="#000000" stroke="none">
|
||||
<animateTransform attributeName="transform" type="rotate" dur="1s" repeatCount="indefinite" keyTimes="0;1" values="0 50 51;360 50 51"></animateTransform>
|
||||
</path>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
style="margin: auto; background: transparent; display: block"
|
||||
width="200px"
|
||||
height="200px"
|
||||
viewBox="0 0 100 100"
|
||||
preserveAspectRatio="xMidYMid"
|
||||
>
|
||||
<path d="M10 50A40 40 0 0 0 90 50A40 42 0 0 1 10 50" fill="#000000" stroke="none">
|
||||
<animateTransform
|
||||
attributeName="transform"
|
||||
type="rotate"
|
||||
dur="1s"
|
||||
repeatCount="indefinite"
|
||||
keyTimes="0;1"
|
||||
values="0 50 51;360 50 51"
|
||||
></animateTransform>
|
||||
</path>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 478 B After Width: | Height: | Size: 544 B |
@@ -1,120 +1,135 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
data-v-fde0c5aa=""
|
||||
viewBox="0 0 250 50"
|
||||
class="iconLeft"
|
||||
version="1.1"
|
||||
id="svg3"
|
||||
sodipodi:docname="logo-white.svg"
|
||||
inkscape:export-filename="logo-white.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
width="250"
|
||||
height="50"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
data-v-fde0c5aa=""
|
||||
viewBox="0 0 250 50"
|
||||
class="iconLeft"
|
||||
version="1.1"
|
||||
id="svg3"
|
||||
sodipodi:docname="logo-white.svg"
|
||||
inkscape:export-filename="logo-white.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
width="250"
|
||||
height="50"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<sodipodi:namedview
|
||||
id="namedview3"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.92"
|
||||
inkscape:cx="127.86458"
|
||||
inkscape:cy="83.854167"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="831"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="89dc4f32-fdad-40b7-9887-523dc72206dd" />
|
||||
id="namedview3"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.92"
|
||||
inkscape:cx="127.86458"
|
||||
inkscape:cy="83.854167"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="831"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="89dc4f32-fdad-40b7-9887-523dc72206dd"
|
||||
/>
|
||||
<!---->
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs1">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs1"
|
||||
>
|
||||
<!---->
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient4"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient4"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
/>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient5"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient5"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
/>
|
||||
</defs>
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs2">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs2"
|
||||
>
|
||||
<!---->
|
||||
</defs>
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs3">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs3"
|
||||
>
|
||||
<linearGradient
|
||||
data-v-fde0c5aa=""
|
||||
gradientTransform="rotate(25)"
|
||||
id="d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0">
|
||||
data-v-fde0c5aa=""
|
||||
gradientTransform="rotate(25)"
|
||||
id="d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0"
|
||||
>
|
||||
<stop
|
||||
data-v-fde0c5aa=""
|
||||
offset="0%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop2" />
|
||||
data-v-fde0c5aa=""
|
||||
offset="0%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop2"
|
||||
/>
|
||||
<stop
|
||||
data-v-fde0c5aa=""
|
||||
offset="100%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop3" />
|
||||
data-v-fde0c5aa=""
|
||||
offset="100%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop3"
|
||||
/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
id="g5"
|
||||
transform="translate(-24.999993,-125)">
|
||||
id="g5"
|
||||
transform="translate(-24.999993,-125)"
|
||||
>
|
||||
<g
|
||||
data-v-fde0c5aa=""
|
||||
id="89dc4f32-fdad-40b7-9887-523dc72206dd"
|
||||
fill="#193655"
|
||||
transform="matrix(2.1033077,0,0,2.1033077,110.39171,132.31118)">
|
||||
data-v-fde0c5aa=""
|
||||
id="89dc4f32-fdad-40b7-9887-523dc72206dd"
|
||||
fill="#193655"
|
||||
transform="matrix(2.1033077,0,0,2.1033077,110.39171,132.31118)"
|
||||
>
|
||||
<path
|
||||
d="m 5.21,6.06 q 1.08,0 1.93,0.48 0.85,0.47 1.34,1.33 0.48,0.85 0.48,1.97 v 0 q 0,1.12 -0.48,1.98 -0.49,0.86 -1.34,1.34 -0.85,0.48 -1.93,0.48 v 0 Q 4.38,13.64 3.7,13.31 3.01,12.99 2.56,12.38 v 0 1.17 H 1.27 V 3.16 H 2.62 V 7.25 Q 3.07,6.66 3.74,6.36 4.41,6.06 5.21,6.06 Z m -0.11,6.4 q 0.71,0 1.28,-0.33 Q 6.94,11.8 7.27,11.21 7.6,10.61 7.6,9.84 v 0 Q 7.6,9.07 7.27,8.48 6.94,7.88 6.38,7.56 5.81,7.24 5.1,7.24 v 0 Q 4.4,7.24 3.82,7.56 3.25,7.88 2.93,8.48 2.6,9.07 2.6,9.84 v 0 q 0,0.77 0.33,1.37 0.32,0.59 0.89,0.92 0.58,0.33 1.28,0.33 z M 17.53,9.88 q 0,0.16 -0.03,0.41 v 0 h -6.02 q 0.13,0.98 0.86,1.58 0.74,0.59 1.83,0.59 v 0 q 1.33,0 2.14,-0.9 v 0 l 0.74,0.87 q -0.5,0.59 -1.25,0.9 -0.75,0.31 -1.67,0.31 v 0 q -1.18,0 -2.09,-0.49 -0.91,-0.48 -1.41,-1.35 -0.49,-0.87 -0.49,-1.96 v 0 q 0,-1.08 0.48,-1.94 0.48,-0.87 1.33,-1.36 0.85,-0.48 1.91,-0.48 v 0 q 1.06,0 1.9,0.48 0.83,0.49 1.3,1.36 0.47,0.86 0.47,1.98 z M 13.86,7.2 q -0.97,0 -1.62,0.58 -0.65,0.59 -0.76,1.54 v 0 h 4.76 Q 16.13,8.39 15.48,7.79 14.83,7.2 13.86,7.2 Z M 29.27,6.13 h 1.21 l -2.77,7.42 H 26.42 L 24.28,7.92 22.11,13.55 H 20.82 L 18.06,6.13 h 1.27 l 2.16,5.91 2.24,-5.91 h 1.13 l 2.2,5.94 z m 7.05,7.53 q -1.47,0 -2.66,-0.65 -1.18,-0.65 -1.85,-1.79 -0.67,-1.14 -0.67,-2.57 v 0 q 0,-1.43 0.67,-2.57 0.67,-1.14 1.86,-1.79 1.19,-0.65 2.66,-0.65 v 0 q 1.15,0 2.1,0.38 0.95,0.39 1.62,1.15 v 0 L 39.14,6.05 Q 38.04,4.89 36.39,4.89 v 0 q -1.1,0 -1.98,0.49 -0.88,0.49 -1.38,1.35 -0.49,0.86 -0.49,1.92 v 0 q 0,1.07 0.49,1.93 0.5,0.86 1.38,1.35 0.88,0.49 1.98,0.49 v 0 q 1.63,0 2.75,-1.18 v 0 l 0.91,0.88 q -0.67,0.76 -1.63,1.15 -0.96,0.39 -2.1,0.39 z m 5.54,-0.11 V 3.16 h 1.34 v 10.39 z m 7.08,0.09 q -1.1,0 -1.98,-0.49 -0.89,-0.49 -1.38,-1.36 -0.5,-0.86 -0.5,-1.95 v 0 q 0,-1.09 0.5,-1.95 0.49,-0.86 1.38,-1.35 0.88,-0.48 1.98,-0.48 v 0 q 1.11,0 1.98,0.48 0.88,0.49 1.38,1.35 0.49,0.86 0.49,1.95 v 0 q 0,1.09 -0.49,1.95 -0.5,0.87 -1.38,1.36 -0.87,0.49 -1.98,0.49 z m 0,-1.18 q 0.72,0 1.28,-0.33 0.57,-0.33 0.89,-0.92 0.33,-0.6 0.33,-1.37 v 0 Q 51.44,9.07 51.11,8.48 50.79,7.88 50.22,7.56 49.66,7.24 48.94,7.24 v 0 q -0.71,0 -1.28,0.32 -0.56,0.32 -0.89,0.92 -0.33,0.59 -0.33,1.36 v 0 q 0,0.77 0.33,1.37 0.33,0.59 0.89,0.92 0.57,0.33 1.28,0.33 z M 60.23,6.13 h 1.34 v 7.42 H 60.3 v -1.12 q -0.41,0.58 -1.07,0.89 -0.67,0.32 -1.45,0.32 v 0 q -1.49,0 -2.34,-0.82 Q 54.59,12 54.59,10.4 v 0 -4.27 h 1.34 v 4.12 q 0,1.08 0.52,1.63 0.52,0.55 1.48,0.55 v 0 q 1.07,0 1.68,-0.64 0.62,-0.65 0.62,-1.82 v 0 z m 9.56,-2.97 h 1.34 v 10.39 h -1.28 v -1.17 q -0.45,0.61 -1.14,0.93 -0.68,0.33 -1.51,0.33 v 0 q -1.08,0 -1.93,-0.48 -0.86,-0.48 -1.34,-1.34 -0.48,-0.86 -0.48,-1.98 v 0 q 0,-1.12 0.48,-1.97 0.48,-0.86 1.34,-1.33 0.85,-0.48 1.93,-0.48 v 0 q 0.8,0 1.47,0.3 0.67,0.3 1.12,0.89 v 0 z m -2.48,9.3 q 0.7,0 1.28,-0.33 0.57,-0.33 0.89,-0.92 0.32,-0.6 0.32,-1.37 v 0 Q 69.8,9.07 69.48,8.48 69.16,7.88 68.59,7.56 68.01,7.24 67.31,7.24 v 0 q -0.71,0 -1.28,0.32 -0.57,0.32 -0.89,0.92 -0.33,0.59 -0.33,1.36 v 0 q 0,0.77 0.33,1.37 0.32,0.59 0.89,0.92 0.57,0.33 1.28,0.33 z"
|
||||
id="path2"
|
||||
style="fill:#ffffff" />
|
||||
d="m 5.21,6.06 q 1.08,0 1.93,0.48 0.85,0.47 1.34,1.33 0.48,0.85 0.48,1.97 v 0 q 0,1.12 -0.48,1.98 -0.49,0.86 -1.34,1.34 -0.85,0.48 -1.93,0.48 v 0 Q 4.38,13.64 3.7,13.31 3.01,12.99 2.56,12.38 v 0 1.17 H 1.27 V 3.16 H 2.62 V 7.25 Q 3.07,6.66 3.74,6.36 4.41,6.06 5.21,6.06 Z m -0.11,6.4 q 0.71,0 1.28,-0.33 Q 6.94,11.8 7.27,11.21 7.6,10.61 7.6,9.84 v 0 Q 7.6,9.07 7.27,8.48 6.94,7.88 6.38,7.56 5.81,7.24 5.1,7.24 v 0 Q 4.4,7.24 3.82,7.56 3.25,7.88 2.93,8.48 2.6,9.07 2.6,9.84 v 0 q 0,0.77 0.33,1.37 0.32,0.59 0.89,0.92 0.58,0.33 1.28,0.33 z M 17.53,9.88 q 0,0.16 -0.03,0.41 v 0 h -6.02 q 0.13,0.98 0.86,1.58 0.74,0.59 1.83,0.59 v 0 q 1.33,0 2.14,-0.9 v 0 l 0.74,0.87 q -0.5,0.59 -1.25,0.9 -0.75,0.31 -1.67,0.31 v 0 q -1.18,0 -2.09,-0.49 -0.91,-0.48 -1.41,-1.35 -0.49,-0.87 -0.49,-1.96 v 0 q 0,-1.08 0.48,-1.94 0.48,-0.87 1.33,-1.36 0.85,-0.48 1.91,-0.48 v 0 q 1.06,0 1.9,0.48 0.83,0.49 1.3,1.36 0.47,0.86 0.47,1.98 z M 13.86,7.2 q -0.97,0 -1.62,0.58 -0.65,0.59 -0.76,1.54 v 0 h 4.76 Q 16.13,8.39 15.48,7.79 14.83,7.2 13.86,7.2 Z M 29.27,6.13 h 1.21 l -2.77,7.42 H 26.42 L 24.28,7.92 22.11,13.55 H 20.82 L 18.06,6.13 h 1.27 l 2.16,5.91 2.24,-5.91 h 1.13 l 2.2,5.94 z m 7.05,7.53 q -1.47,0 -2.66,-0.65 -1.18,-0.65 -1.85,-1.79 -0.67,-1.14 -0.67,-2.57 v 0 q 0,-1.43 0.67,-2.57 0.67,-1.14 1.86,-1.79 1.19,-0.65 2.66,-0.65 v 0 q 1.15,0 2.1,0.38 0.95,0.39 1.62,1.15 v 0 L 39.14,6.05 Q 38.04,4.89 36.39,4.89 v 0 q -1.1,0 -1.98,0.49 -0.88,0.49 -1.38,1.35 -0.49,0.86 -0.49,1.92 v 0 q 0,1.07 0.49,1.93 0.5,0.86 1.38,1.35 0.88,0.49 1.98,0.49 v 0 q 1.63,0 2.75,-1.18 v 0 l 0.91,0.88 q -0.67,0.76 -1.63,1.15 -0.96,0.39 -2.1,0.39 z m 5.54,-0.11 V 3.16 h 1.34 v 10.39 z m 7.08,0.09 q -1.1,0 -1.98,-0.49 -0.89,-0.49 -1.38,-1.36 -0.5,-0.86 -0.5,-1.95 v 0 q 0,-1.09 0.5,-1.95 0.49,-0.86 1.38,-1.35 0.88,-0.48 1.98,-0.48 v 0 q 1.11,0 1.98,0.48 0.88,0.49 1.38,1.35 0.49,0.86 0.49,1.95 v 0 q 0,1.09 -0.49,1.95 -0.5,0.87 -1.38,1.36 -0.87,0.49 -1.98,0.49 z m 0,-1.18 q 0.72,0 1.28,-0.33 0.57,-0.33 0.89,-0.92 0.33,-0.6 0.33,-1.37 v 0 Q 51.44,9.07 51.11,8.48 50.79,7.88 50.22,7.56 49.66,7.24 48.94,7.24 v 0 q -0.71,0 -1.28,0.32 -0.56,0.32 -0.89,0.92 -0.33,0.59 -0.33,1.36 v 0 q 0,0.77 0.33,1.37 0.33,0.59 0.89,0.92 0.57,0.33 1.28,0.33 z M 60.23,6.13 h 1.34 v 7.42 H 60.3 v -1.12 q -0.41,0.58 -1.07,0.89 -0.67,0.32 -1.45,0.32 v 0 q -1.49,0 -2.34,-0.82 Q 54.59,12 54.59,10.4 v 0 -4.27 h 1.34 v 4.12 q 0,1.08 0.52,1.63 0.52,0.55 1.48,0.55 v 0 q 1.07,0 1.68,-0.64 0.62,-0.65 0.62,-1.82 v 0 z m 9.56,-2.97 h 1.34 v 10.39 h -1.28 v -1.17 q -0.45,0.61 -1.14,0.93 -0.68,0.33 -1.51,0.33 v 0 q -1.08,0 -1.93,-0.48 -0.86,-0.48 -1.34,-1.34 -0.48,-0.86 -0.48,-1.98 v 0 q 0,-1.12 0.48,-1.97 0.48,-0.86 1.34,-1.33 0.85,-0.48 1.93,-0.48 v 0 q 0.8,0 1.47,0.3 0.67,0.3 1.12,0.89 v 0 z m -2.48,9.3 q 0.7,0 1.28,-0.33 0.57,-0.33 0.89,-0.92 0.32,-0.6 0.32,-1.37 v 0 Q 69.8,9.07 69.48,8.48 69.16,7.88 68.59,7.56 68.01,7.24 67.31,7.24 v 0 q -0.71,0 -1.28,0.32 -0.57,0.32 -0.89,0.92 -0.33,0.59 -0.33,1.36 v 0 q 0,0.77 0.33,1.37 0.32,0.59 0.89,0.92 0.57,0.33 1.28,0.33 z"
|
||||
id="path2"
|
||||
style="fill: #ffffff"
|
||||
/>
|
||||
</g>
|
||||
<g
|
||||
data-v-fde0c5aa=""
|
||||
id="f64f14cc-5390-468e-9cd6-ee0163dcbf09"
|
||||
stroke="none"
|
||||
fill="url(#d27698e6-eb24-4a3f-96af-256d84d5b3ea)"
|
||||
transform="matrix(0.60062915,0,0,0.60062915,40,133.43645)"
|
||||
style="fill:url(#linearGradient5)">
|
||||
data-v-fde0c5aa=""
|
||||
id="f64f14cc-5390-468e-9cd6-ee0163dcbf09"
|
||||
stroke="none"
|
||||
fill="url(#d27698e6-eb24-4a3f-96af-256d84d5b3ea)"
|
||||
transform="matrix(0.60062915,0,0,0.60062915,40,133.43645)"
|
||||
style="fill: url(#linearGradient5)"
|
||||
>
|
||||
<path
|
||||
d="M 77.959,55.154 H 11.282 C 5.061,55.154 0,50.093 0,43.873 0,38.595 3.643,34.152 8.546,32.927 10.734,27.458 15.794,23.541 21.695,22.838 22.317,10.14 32.843,0 45.693,0 55.11,0 63.515,5.536 67.416,13.756 a 21.944,21.944 0 0 1 10.543,-2.682 c 12.153,0 22.041,9.887 22.041,22.04 0,12.153 -9.887,22.04 -22.041,22.04 z M 11.209,40.372 a 3.507,3.507 0 0 0 -3.429,3.501 3.504,3.504 0 0 0 3.501,3.501 h 66.678 c 7.863,0 14.26,-6.397 14.26,-14.26 0,-7.863 -6.396,-14.259 -14.26,-14.259 -3.683,0 -7.18,1.404 -9.847,3.952 L 63.016,27.678 61.612,20.77 C 60.083,13.243 53.388,7.78 45.693,7.78 c -8.958,0 -16.247,7.288 -16.247,16.246 0,0.728 0.054,1.483 0.159,2.246 l 0.73,5.287 -5.256,-0.923 a 8.59,8.59 0 0 0 -1.474,-0.132 c -4.002,0 -7.479,2.842 -8.267,6.757 l -0.65,3.227 -3.29,-0.106 z"
|
||||
id="path3"
|
||||
style="fill:url(#linearGradient4)" />
|
||||
d="M 77.959,55.154 H 11.282 C 5.061,55.154 0,50.093 0,43.873 0,38.595 3.643,34.152 8.546,32.927 10.734,27.458 15.794,23.541 21.695,22.838 22.317,10.14 32.843,0 45.693,0 55.11,0 63.515,5.536 67.416,13.756 a 21.944,21.944 0 0 1 10.543,-2.682 c 12.153,0 22.041,9.887 22.041,22.04 0,12.153 -9.887,22.04 -22.041,22.04 z M 11.209,40.372 a 3.507,3.507 0 0 0 -3.429,3.501 3.504,3.504 0 0 0 3.501,3.501 h 66.678 c 7.863,0 14.26,-6.397 14.26,-14.26 0,-7.863 -6.396,-14.259 -14.26,-14.259 -3.683,0 -7.18,1.404 -9.847,3.952 L 63.016,27.678 61.612,20.77 C 60.083,13.243 53.388,7.78 45.693,7.78 c -8.958,0 -16.247,7.288 -16.247,16.246 0,0.728 0.054,1.483 0.159,2.246 l 0.73,5.287 -5.256,-0.923 a 8.59,8.59 0 0 0 -1.474,-0.132 c -4.002,0 -7.479,2.842 -8.267,6.757 l -0.65,3.227 -3.29,-0.106 z"
|
||||
id="path3"
|
||||
style="fill: url(#linearGradient4)"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<!---->
|
||||
|
||||
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.8 KiB |
@@ -1,119 +1,134 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
data-v-fde0c5aa=""
|
||||
viewBox="0 0 250 50"
|
||||
class="iconLeft"
|
||||
version="1.1"
|
||||
id="svg3"
|
||||
sodipodi:docname="logo.svg"
|
||||
inkscape:export-filename="default.png"
|
||||
inkscape:export-xdpi="327.67999"
|
||||
inkscape:export-ydpi="327.67999"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
width="250"
|
||||
height="50"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
data-v-fde0c5aa=""
|
||||
viewBox="0 0 250 50"
|
||||
class="iconLeft"
|
||||
version="1.1"
|
||||
id="svg3"
|
||||
sodipodi:docname="logo.svg"
|
||||
inkscape:export-filename="default.png"
|
||||
inkscape:export-xdpi="327.67999"
|
||||
inkscape:export-ydpi="327.67999"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
width="250"
|
||||
height="50"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<sodipodi:namedview
|
||||
id="namedview3"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.92"
|
||||
inkscape:cx="127.86458"
|
||||
inkscape:cy="83.854167"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="831"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg3" />
|
||||
id="namedview3"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.92"
|
||||
inkscape:cx="127.86458"
|
||||
inkscape:cy="83.854167"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="831"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg3"
|
||||
/>
|
||||
<!---->
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs1">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs1"
|
||||
>
|
||||
<!---->
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient4"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient4"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
/>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient5"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient5"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
/>
|
||||
</defs>
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs2">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs2"
|
||||
>
|
||||
<!---->
|
||||
</defs>
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs3">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs3"
|
||||
>
|
||||
<linearGradient
|
||||
data-v-fde0c5aa=""
|
||||
gradientTransform="rotate(25)"
|
||||
id="d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0">
|
||||
data-v-fde0c5aa=""
|
||||
gradientTransform="rotate(25)"
|
||||
id="d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0"
|
||||
>
|
||||
<stop
|
||||
data-v-fde0c5aa=""
|
||||
offset="0%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop2" />
|
||||
data-v-fde0c5aa=""
|
||||
offset="0%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop2"
|
||||
/>
|
||||
<stop
|
||||
data-v-fde0c5aa=""
|
||||
offset="100%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop3" />
|
||||
data-v-fde0c5aa=""
|
||||
offset="100%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop3"
|
||||
/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
id="g5"
|
||||
transform="translate(-24.999993,-125)">
|
||||
id="g5"
|
||||
transform="translate(-24.999993,-125)"
|
||||
>
|
||||
<g
|
||||
data-v-fde0c5aa=""
|
||||
id="89dc4f32-fdad-40b7-9887-523dc72206dd"
|
||||
fill="#193655"
|
||||
transform="matrix(2.1033077,0,0,2.1033077,110.39171,132.31118)">
|
||||
data-v-fde0c5aa=""
|
||||
id="89dc4f32-fdad-40b7-9887-523dc72206dd"
|
||||
fill="#193655"
|
||||
transform="matrix(2.1033077,0,0,2.1033077,110.39171,132.31118)"
|
||||
>
|
||||
<path
|
||||
d="m 5.21,6.06 q 1.08,0 1.93,0.48 0.85,0.47 1.34,1.33 0.48,0.85 0.48,1.97 v 0 q 0,1.12 -0.48,1.98 -0.49,0.86 -1.34,1.34 -0.85,0.48 -1.93,0.48 v 0 Q 4.38,13.64 3.7,13.31 3.01,12.99 2.56,12.38 v 0 1.17 H 1.27 V 3.16 H 2.62 V 7.25 Q 3.07,6.66 3.74,6.36 4.41,6.06 5.21,6.06 Z m -0.11,6.4 q 0.71,0 1.28,-0.33 Q 6.94,11.8 7.27,11.21 7.6,10.61 7.6,9.84 v 0 Q 7.6,9.07 7.27,8.48 6.94,7.88 6.38,7.56 5.81,7.24 5.1,7.24 v 0 Q 4.4,7.24 3.82,7.56 3.25,7.88 2.93,8.48 2.6,9.07 2.6,9.84 v 0 q 0,0.77 0.33,1.37 0.32,0.59 0.89,0.92 0.58,0.33 1.28,0.33 z M 17.53,9.88 q 0,0.16 -0.03,0.41 v 0 h -6.02 q 0.13,0.98 0.86,1.58 0.74,0.59 1.83,0.59 v 0 q 1.33,0 2.14,-0.9 v 0 l 0.74,0.87 q -0.5,0.59 -1.25,0.9 -0.75,0.31 -1.67,0.31 v 0 q -1.18,0 -2.09,-0.49 -0.91,-0.48 -1.41,-1.35 -0.49,-0.87 -0.49,-1.96 v 0 q 0,-1.08 0.48,-1.94 0.48,-0.87 1.33,-1.36 0.85,-0.48 1.91,-0.48 v 0 q 1.06,0 1.9,0.48 0.83,0.49 1.3,1.36 0.47,0.86 0.47,1.98 z M 13.86,7.2 q -0.97,0 -1.62,0.58 -0.65,0.59 -0.76,1.54 v 0 h 4.76 Q 16.13,8.39 15.48,7.79 14.83,7.2 13.86,7.2 Z M 29.27,6.13 h 1.21 l -2.77,7.42 H 26.42 L 24.28,7.92 22.11,13.55 H 20.82 L 18.06,6.13 h 1.27 l 2.16,5.91 2.24,-5.91 h 1.13 l 2.2,5.94 z m 7.05,7.53 q -1.47,0 -2.66,-0.65 -1.18,-0.65 -1.85,-1.79 -0.67,-1.14 -0.67,-2.57 v 0 q 0,-1.43 0.67,-2.57 0.67,-1.14 1.86,-1.79 1.19,-0.65 2.66,-0.65 v 0 q 1.15,0 2.1,0.38 0.95,0.39 1.62,1.15 v 0 L 39.14,6.05 Q 38.04,4.89 36.39,4.89 v 0 q -1.1,0 -1.98,0.49 -0.88,0.49 -1.38,1.35 -0.49,0.86 -0.49,1.92 v 0 q 0,1.07 0.49,1.93 0.5,0.86 1.38,1.35 0.88,0.49 1.98,0.49 v 0 q 1.63,0 2.75,-1.18 v 0 l 0.91,0.88 q -0.67,0.76 -1.63,1.15 -0.96,0.39 -2.1,0.39 z m 5.54,-0.11 V 3.16 h 1.34 v 10.39 z m 7.08,0.09 q -1.1,0 -1.98,-0.49 -0.89,-0.49 -1.38,-1.36 -0.5,-0.86 -0.5,-1.95 v 0 q 0,-1.09 0.5,-1.95 0.49,-0.86 1.38,-1.35 0.88,-0.48 1.98,-0.48 v 0 q 1.11,0 1.98,0.48 0.88,0.49 1.38,1.35 0.49,0.86 0.49,1.95 v 0 q 0,1.09 -0.49,1.95 -0.5,0.87 -1.38,1.36 -0.87,0.49 -1.98,0.49 z m 0,-1.18 q 0.72,0 1.28,-0.33 0.57,-0.33 0.89,-0.92 0.33,-0.6 0.33,-1.37 v 0 Q 51.44,9.07 51.11,8.48 50.79,7.88 50.22,7.56 49.66,7.24 48.94,7.24 v 0 q -0.71,0 -1.28,0.32 -0.56,0.32 -0.89,0.92 -0.33,0.59 -0.33,1.36 v 0 q 0,0.77 0.33,1.37 0.33,0.59 0.89,0.92 0.57,0.33 1.28,0.33 z M 60.23,6.13 h 1.34 v 7.42 H 60.3 v -1.12 q -0.41,0.58 -1.07,0.89 -0.67,0.32 -1.45,0.32 v 0 q -1.49,0 -2.34,-0.82 Q 54.59,12 54.59,10.4 v 0 -4.27 h 1.34 v 4.12 q 0,1.08 0.52,1.63 0.52,0.55 1.48,0.55 v 0 q 1.07,0 1.68,-0.64 0.62,-0.65 0.62,-1.82 v 0 z m 9.56,-2.97 h 1.34 v 10.39 h -1.28 v -1.17 q -0.45,0.61 -1.14,0.93 -0.68,0.33 -1.51,0.33 v 0 q -1.08,0 -1.93,-0.48 -0.86,-0.48 -1.34,-1.34 -0.48,-0.86 -0.48,-1.98 v 0 q 0,-1.12 0.48,-1.97 0.48,-0.86 1.34,-1.33 0.85,-0.48 1.93,-0.48 v 0 q 0.8,0 1.47,0.3 0.67,0.3 1.12,0.89 v 0 z m -2.48,9.3 q 0.7,0 1.28,-0.33 0.57,-0.33 0.89,-0.92 0.32,-0.6 0.32,-1.37 v 0 Q 69.8,9.07 69.48,8.48 69.16,7.88 68.59,7.56 68.01,7.24 67.31,7.24 v 0 q -0.71,0 -1.28,0.32 -0.57,0.32 -0.89,0.92 -0.33,0.59 -0.33,1.36 v 0 q 0,0.77 0.33,1.37 0.32,0.59 0.89,0.92 0.57,0.33 1.28,0.33 z"
|
||||
id="path2" />
|
||||
d="m 5.21,6.06 q 1.08,0 1.93,0.48 0.85,0.47 1.34,1.33 0.48,0.85 0.48,1.97 v 0 q 0,1.12 -0.48,1.98 -0.49,0.86 -1.34,1.34 -0.85,0.48 -1.93,0.48 v 0 Q 4.38,13.64 3.7,13.31 3.01,12.99 2.56,12.38 v 0 1.17 H 1.27 V 3.16 H 2.62 V 7.25 Q 3.07,6.66 3.74,6.36 4.41,6.06 5.21,6.06 Z m -0.11,6.4 q 0.71,0 1.28,-0.33 Q 6.94,11.8 7.27,11.21 7.6,10.61 7.6,9.84 v 0 Q 7.6,9.07 7.27,8.48 6.94,7.88 6.38,7.56 5.81,7.24 5.1,7.24 v 0 Q 4.4,7.24 3.82,7.56 3.25,7.88 2.93,8.48 2.6,9.07 2.6,9.84 v 0 q 0,0.77 0.33,1.37 0.32,0.59 0.89,0.92 0.58,0.33 1.28,0.33 z M 17.53,9.88 q 0,0.16 -0.03,0.41 v 0 h -6.02 q 0.13,0.98 0.86,1.58 0.74,0.59 1.83,0.59 v 0 q 1.33,0 2.14,-0.9 v 0 l 0.74,0.87 q -0.5,0.59 -1.25,0.9 -0.75,0.31 -1.67,0.31 v 0 q -1.18,0 -2.09,-0.49 -0.91,-0.48 -1.41,-1.35 -0.49,-0.87 -0.49,-1.96 v 0 q 0,-1.08 0.48,-1.94 0.48,-0.87 1.33,-1.36 0.85,-0.48 1.91,-0.48 v 0 q 1.06,0 1.9,0.48 0.83,0.49 1.3,1.36 0.47,0.86 0.47,1.98 z M 13.86,7.2 q -0.97,0 -1.62,0.58 -0.65,0.59 -0.76,1.54 v 0 h 4.76 Q 16.13,8.39 15.48,7.79 14.83,7.2 13.86,7.2 Z M 29.27,6.13 h 1.21 l -2.77,7.42 H 26.42 L 24.28,7.92 22.11,13.55 H 20.82 L 18.06,6.13 h 1.27 l 2.16,5.91 2.24,-5.91 h 1.13 l 2.2,5.94 z m 7.05,7.53 q -1.47,0 -2.66,-0.65 -1.18,-0.65 -1.85,-1.79 -0.67,-1.14 -0.67,-2.57 v 0 q 0,-1.43 0.67,-2.57 0.67,-1.14 1.86,-1.79 1.19,-0.65 2.66,-0.65 v 0 q 1.15,0 2.1,0.38 0.95,0.39 1.62,1.15 v 0 L 39.14,6.05 Q 38.04,4.89 36.39,4.89 v 0 q -1.1,0 -1.98,0.49 -0.88,0.49 -1.38,1.35 -0.49,0.86 -0.49,1.92 v 0 q 0,1.07 0.49,1.93 0.5,0.86 1.38,1.35 0.88,0.49 1.98,0.49 v 0 q 1.63,0 2.75,-1.18 v 0 l 0.91,0.88 q -0.67,0.76 -1.63,1.15 -0.96,0.39 -2.1,0.39 z m 5.54,-0.11 V 3.16 h 1.34 v 10.39 z m 7.08,0.09 q -1.1,0 -1.98,-0.49 -0.89,-0.49 -1.38,-1.36 -0.5,-0.86 -0.5,-1.95 v 0 q 0,-1.09 0.5,-1.95 0.49,-0.86 1.38,-1.35 0.88,-0.48 1.98,-0.48 v 0 q 1.11,0 1.98,0.48 0.88,0.49 1.38,1.35 0.49,0.86 0.49,1.95 v 0 q 0,1.09 -0.49,1.95 -0.5,0.87 -1.38,1.36 -0.87,0.49 -1.98,0.49 z m 0,-1.18 q 0.72,0 1.28,-0.33 0.57,-0.33 0.89,-0.92 0.33,-0.6 0.33,-1.37 v 0 Q 51.44,9.07 51.11,8.48 50.79,7.88 50.22,7.56 49.66,7.24 48.94,7.24 v 0 q -0.71,0 -1.28,0.32 -0.56,0.32 -0.89,0.92 -0.33,0.59 -0.33,1.36 v 0 q 0,0.77 0.33,1.37 0.33,0.59 0.89,0.92 0.57,0.33 1.28,0.33 z M 60.23,6.13 h 1.34 v 7.42 H 60.3 v -1.12 q -0.41,0.58 -1.07,0.89 -0.67,0.32 -1.45,0.32 v 0 q -1.49,0 -2.34,-0.82 Q 54.59,12 54.59,10.4 v 0 -4.27 h 1.34 v 4.12 q 0,1.08 0.52,1.63 0.52,0.55 1.48,0.55 v 0 q 1.07,0 1.68,-0.64 0.62,-0.65 0.62,-1.82 v 0 z m 9.56,-2.97 h 1.34 v 10.39 h -1.28 v -1.17 q -0.45,0.61 -1.14,0.93 -0.68,0.33 -1.51,0.33 v 0 q -1.08,0 -1.93,-0.48 -0.86,-0.48 -1.34,-1.34 -0.48,-0.86 -0.48,-1.98 v 0 q 0,-1.12 0.48,-1.97 0.48,-0.86 1.34,-1.33 0.85,-0.48 1.93,-0.48 v 0 q 0.8,0 1.47,0.3 0.67,0.3 1.12,0.89 v 0 z m -2.48,9.3 q 0.7,0 1.28,-0.33 0.57,-0.33 0.89,-0.92 0.32,-0.6 0.32,-1.37 v 0 Q 69.8,9.07 69.48,8.48 69.16,7.88 68.59,7.56 68.01,7.24 67.31,7.24 v 0 q -0.71,0 -1.28,0.32 -0.57,0.32 -0.89,0.92 -0.33,0.59 -0.33,1.36 v 0 q 0,0.77 0.33,1.37 0.32,0.59 0.89,0.92 0.57,0.33 1.28,0.33 z"
|
||||
id="path2"
|
||||
/>
|
||||
</g>
|
||||
<g
|
||||
data-v-fde0c5aa=""
|
||||
id="f64f14cc-5390-468e-9cd6-ee0163dcbf09"
|
||||
stroke="none"
|
||||
fill="url(#d27698e6-eb24-4a3f-96af-256d84d5b3ea)"
|
||||
transform="matrix(0.60062915,0,0,0.60062915,40,133.43645)"
|
||||
style="fill:url(#linearGradient5)">
|
||||
data-v-fde0c5aa=""
|
||||
id="f64f14cc-5390-468e-9cd6-ee0163dcbf09"
|
||||
stroke="none"
|
||||
fill="url(#d27698e6-eb24-4a3f-96af-256d84d5b3ea)"
|
||||
transform="matrix(0.60062915,0,0,0.60062915,40,133.43645)"
|
||||
style="fill: url(#linearGradient5)"
|
||||
>
|
||||
<path
|
||||
d="M 77.959,55.154 H 11.282 C 5.061,55.154 0,50.093 0,43.873 0,38.595 3.643,34.152 8.546,32.927 10.734,27.458 15.794,23.541 21.695,22.838 22.317,10.14 32.843,0 45.693,0 55.11,0 63.515,5.536 67.416,13.756 a 21.944,21.944 0 0 1 10.543,-2.682 c 12.153,0 22.041,9.887 22.041,22.04 0,12.153 -9.887,22.04 -22.041,22.04 z M 11.209,40.372 a 3.507,3.507 0 0 0 -3.429,3.501 3.504,3.504 0 0 0 3.501,3.501 h 66.678 c 7.863,0 14.26,-6.397 14.26,-14.26 0,-7.863 -6.396,-14.259 -14.26,-14.259 -3.683,0 -7.18,1.404 -9.847,3.952 L 63.016,27.678 61.612,20.77 C 60.083,13.243 53.388,7.78 45.693,7.78 c -8.958,0 -16.247,7.288 -16.247,16.246 0,0.728 0.054,1.483 0.159,2.246 l 0.73,5.287 -5.256,-0.923 a 8.59,8.59 0 0 0 -1.474,-0.132 c -4.002,0 -7.479,2.842 -8.267,6.757 l -0.65,3.227 -3.29,-0.106 z"
|
||||
id="path3"
|
||||
style="fill:url(#linearGradient4)" />
|
||||
d="M 77.959,55.154 H 11.282 C 5.061,55.154 0,50.093 0,43.873 0,38.595 3.643,34.152 8.546,32.927 10.734,27.458 15.794,23.541 21.695,22.838 22.317,10.14 32.843,0 45.693,0 55.11,0 63.515,5.536 67.416,13.756 a 21.944,21.944 0 0 1 10.543,-2.682 c 12.153,0 22.041,9.887 22.041,22.04 0,12.153 -9.887,22.04 -22.041,22.04 z M 11.209,40.372 a 3.507,3.507 0 0 0 -3.429,3.501 3.504,3.504 0 0 0 3.501,3.501 h 66.678 c 7.863,0 14.26,-6.397 14.26,-14.26 0,-7.863 -6.396,-14.259 -14.26,-14.259 -3.683,0 -7.18,1.404 -9.847,3.952 L 63.016,27.678 61.612,20.77 C 60.083,13.243 53.388,7.78 45.693,7.78 c -8.958,0 -16.247,7.288 -16.247,16.246 0,0.728 0.054,1.483 0.159,2.246 l 0.73,5.287 -5.256,-0.923 a 8.59,8.59 0 0 0 -1.474,-0.132 c -4.002,0 -7.479,2.842 -8.267,6.757 l -0.65,3.227 -3.29,-0.106 z"
|
||||
id="path3"
|
||||
style="fill: url(#linearGradient4)"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<!---->
|
||||
|
||||
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
@@ -1,110 +1,123 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
data-v-fde0c5aa=""
|
||||
viewBox="0 0 80 80"
|
||||
class="iconLeft"
|
||||
version="1.1"
|
||||
id="svg3"
|
||||
sodipodi:docname="logomark.svg"
|
||||
inkscape:export-filename="favicon.png"
|
||||
inkscape:export-xdpi="1228.8"
|
||||
inkscape:export-ydpi="1228.8"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
width="80"
|
||||
height="80"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
data-v-fde0c5aa=""
|
||||
viewBox="0 0 80 80"
|
||||
class="iconLeft"
|
||||
version="1.1"
|
||||
id="svg3"
|
||||
sodipodi:docname="logomark.svg"
|
||||
inkscape:export-filename="favicon.png"
|
||||
inkscape:export-xdpi="1228.8"
|
||||
inkscape:export-ydpi="1228.8"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
width="80"
|
||||
height="80"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<sodipodi:namedview
|
||||
id="namedview3"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.92"
|
||||
inkscape:cx="127.34375"
|
||||
inkscape:cy="30.208333"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="831"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g5" />
|
||||
id="namedview3"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="1.92"
|
||||
inkscape:cx="127.34375"
|
||||
inkscape:cy="30.208333"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="831"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g5"
|
||||
/>
|
||||
<!---->
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs1">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs1"
|
||||
>
|
||||
<!---->
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient4"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient4"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
/>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient5"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
id="linearGradient5"
|
||||
gradientTransform="scale(1.3465159,0.74265739)"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="74.265739"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
/>
|
||||
</defs>
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs2">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs2"
|
||||
>
|
||||
<!---->
|
||||
</defs>
|
||||
<defs
|
||||
data-v-fde0c5aa=""
|
||||
id="defs3">
|
||||
data-v-fde0c5aa=""
|
||||
id="defs3"
|
||||
>
|
||||
<linearGradient
|
||||
data-v-fde0c5aa=""
|
||||
gradientTransform="rotate(25)"
|
||||
id="d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0">
|
||||
data-v-fde0c5aa=""
|
||||
gradientTransform="rotate(25)"
|
||||
id="d27698e6-eb24-4a3f-96af-256d84d5b3ea"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0"
|
||||
>
|
||||
<stop
|
||||
data-v-fde0c5aa=""
|
||||
offset="0%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop2" />
|
||||
data-v-fde0c5aa=""
|
||||
offset="0%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop2"
|
||||
/>
|
||||
<stop
|
||||
data-v-fde0c5aa=""
|
||||
offset="100%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop3" />
|
||||
data-v-fde0c5aa=""
|
||||
offset="100%"
|
||||
stop-color="#51A4FB"
|
||||
stop-opacity="1"
|
||||
id="stop3"
|
||||
/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
id="g5"
|
||||
transform="translate(-24.999993,-125)">
|
||||
id="g5"
|
||||
transform="translate(-24.999993,-125)"
|
||||
>
|
||||
<g
|
||||
data-v-fde0c5aa=""
|
||||
id="f64f14cc-5390-468e-9cd6-ee0163dcbf09"
|
||||
stroke="none"
|
||||
fill="url(#d27698e6-eb24-4a3f-96af-256d84d5b3ea)"
|
||||
transform="matrix(0.60062915,0,0,0.60062915,34.968536,148.43645)"
|
||||
style="fill:url(#linearGradient5)">
|
||||
data-v-fde0c5aa=""
|
||||
id="f64f14cc-5390-468e-9cd6-ee0163dcbf09"
|
||||
stroke="none"
|
||||
fill="url(#d27698e6-eb24-4a3f-96af-256d84d5b3ea)"
|
||||
transform="matrix(0.60062915,0,0,0.60062915,34.968536,148.43645)"
|
||||
style="fill: url(#linearGradient5)"
|
||||
>
|
||||
<path
|
||||
d="M 77.959,55.154 H 11.282 C 5.061,55.154 0,50.093 0,43.873 0,38.595 3.643,34.152 8.546,32.927 10.734,27.458 15.794,23.541 21.695,22.838 22.317,10.14 32.843,0 45.693,0 55.11,0 63.515,5.536 67.416,13.756 a 21.944,21.944 0 0 1 10.543,-2.682 c 12.153,0 22.041,9.887 22.041,22.04 0,12.153 -9.887,22.04 -22.041,22.04 z M 11.209,40.372 a 3.507,3.507 0 0 0 -3.429,3.501 3.504,3.504 0 0 0 3.501,3.501 h 66.678 c 7.863,0 14.26,-6.397 14.26,-14.26 0,-7.863 -6.396,-14.259 -14.26,-14.259 -3.683,0 -7.18,1.404 -9.847,3.952 L 63.016,27.678 61.612,20.77 C 60.083,13.243 53.388,7.78 45.693,7.78 c -8.958,0 -16.247,7.288 -16.247,16.246 0,0.728 0.054,1.483 0.159,2.246 l 0.73,5.287 -5.256,-0.923 a 8.59,8.59 0 0 0 -1.474,-0.132 c -4.002,0 -7.479,2.842 -8.267,6.757 l -0.65,3.227 -3.29,-0.106 z"
|
||||
id="path3"
|
||||
style="fill:url(#linearGradient4)" />
|
||||
d="M 77.959,55.154 H 11.282 C 5.061,55.154 0,50.093 0,43.873 0,38.595 3.643,34.152 8.546,32.927 10.734,27.458 15.794,23.541 21.695,22.838 22.317,10.14 32.843,0 45.693,0 55.11,0 63.515,5.536 67.416,13.756 a 21.944,21.944 0 0 1 10.543,-2.682 c 12.153,0 22.041,9.887 22.041,22.04 0,12.153 -9.887,22.04 -22.041,22.04 z M 11.209,40.372 a 3.507,3.507 0 0 0 -3.429,3.501 3.504,3.504 0 0 0 3.501,3.501 h 66.678 c 7.863,0 14.26,-6.397 14.26,-14.26 0,-7.863 -6.396,-14.259 -14.26,-14.259 -3.683,0 -7.18,1.404 -9.847,3.952 L 63.016,27.678 61.612,20.77 C 60.083,13.243 53.388,7.78 45.693,7.78 c -8.958,0 -16.247,7.288 -16.247,16.246 0,0.728 0.054,1.483 0.159,2.246 l 0.73,5.287 -5.256,-0.923 a 8.59,8.59 0 0 0 -1.474,-0.132 c -4.002,0 -7.479,2.842 -8.267,6.757 l -0.65,3.227 -3.29,-0.106 z"
|
||||
id="path3"
|
||||
style="fill: url(#linearGradient4)"
|
||||
/>
|
||||
</g>
|
||||
</g>
|
||||
<!---->
|
||||
|
||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
@@ -1 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M320 176v-40a40 40 0 0 0-40-40H88a40 40 0 0 0-40 40v240a40 40 0 0 0 40 40h192a40 40 0 0 0 40-40v-40m64-160l80 80l-80 80m-193-80h273"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M320 176v-40a40 40 0 0 0-40-40H88a40 40 0 0 0-40 40v240a40 40 0 0 0 40 40h192a40 40 0 0 0 40-40v-40m64-160l80 80l-80 80m-193-80h273"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 333 B After Width: | Height: | Size: 365 B |
@@ -1 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="48" d="m268 112l144 144l-144 144m124-144H100"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="48"
|
||||
d="m268 112l144 144l-144 144m124-144H100"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 239 B After Width: | Height: | Size: 271 B |
@@ -1 +1,25 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="32" d="M368 415.86V72a24.07 24.07 0 0 0-24-24H72a24.07 24.07 0 0 0-24 24v352a40.12 40.12 0 0 0 40 40h328"/><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="32" d="M416 464a48 48 0 0 1-48-48V128h72a24 24 0 0 1 24 24v264a48 48 0 0 1-48 48Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M240 128h64m-64 64h64m-192 64h192m-192 64h192m-192 64h192"/><path fill="currentColor" d="M176 208h-64a16 16 0 0 1-16-16v-64a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v64a16 16 0 0 1-16 16Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M368 415.86V72a24.07 24.07 0 0 0-24-24H72a24.07 24.07 0 0 0-24 24v352a40.12 40.12 0 0 0 40 40h328"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M416 464a48 48 0 0 1-48-48V128h72a24 24 0 0 1 24 24v264a48 48 0 0 1-48 48Z"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M240 128h64m-64 64h64m-192 64h192m-192 64h192m-192 64h192"
|
||||
/><path
|
||||
fill="currentColor"
|
||||
d="M176 208h-64a16 16 0 0 1-16-16v-64a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v64a16 16 0 0 1-16 16Z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 733 B After Width: | Height: | Size: 822 B |
@@ -1 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="32" d="M416 221.25V416a48 48 0 0 1-48 48H144a48 48 0 0 1-48-48V96a48 48 0 0 1 48-48h98.75a32 32 0 0 1 22.62 9.37l141.26 141.26a32 32 0 0 1 9.37 22.62Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M256 56v120a32 32 0 0 0 32 32h120m-232 80h160m-160 80h160"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M416 221.25V416a48 48 0 0 1-48 48H144a48 48 0 0 1-48-48V96a48 48 0 0 1 48-48h98.75a32 32 0 0 1 22.62 9.37l141.26 141.26a32 32 0 0 1 9.37 22.62Z"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M256 56v120a32 32 0 0 0 32 32h120m-232 80h160m-160 80h160"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 490 B After Width: | Height: | Size: 545 B |
@@ -1 +1,21 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><rect width="416" height="352" x="48" y="80" fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="32" rx="48" ry="48"/><circle cx="336" cy="176" r="32" fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="32"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="m304 335.79l-90.66-90.49a32 32 0 0 0-43.87-1.3L48 352m176 80l123.34-123.34a32 32 0 0 1 43.11-2L464 368"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<rect
|
||||
width="416"
|
||||
height="352"
|
||||
x="48"
|
||||
y="80"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
rx="48"
|
||||
ry="48"
|
||||
/><circle cx="336" cy="176" r="32" fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="32" /><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="m304 335.79l-90.66-90.49a32 32 0 0 0-43.87-1.3L48 352m176 80l123.34-123.34a32 32 0 0 1 43.11-2L464 368"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 551 B After Width: | Height: | Size: 627 B |
@@ -1 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path d="M492 257.1c-2.6-2.6-6-4-9.6-4-3.6 0-7 1.4-9.6 4l-13 13c4.3-61.8-19.5-122.5-65.3-165C356.9 70.2 307.7 51 256.1 51c-26.7 0-52.8 5.1-77.4 15.1-25.5 10.4-48.3 25.6-67.7 45.3-13.2 13.4-24.6 28.5-33.6 44.8-1.9 3.4-2.3 7.4-1.2 11.1 1.1 3.7 3.8 6.8 7.2 8.5 2 1 4.2 1.5 6.4 1.5 5.2 0 9.9-2.8 12.4-7.3 7.9-14.3 17.8-27.5 29.4-39.1 16.8-16.8 36.3-29.8 58.1-38.7 21.1-8.6 43.4-12.9 66.2-12.9 22.9 0 45.2 4.3 66.3 12.9 21.8 8.9 41.4 21.9 58.2 38.8 20.3 20.4 35.4 45.6 43.8 73 7 22.9 9.2 47.3 6.6 71.2l-18.9-18.5c-2.5-2.4-5.8-3.8-9.3-3.8-3.5 0-6.9 1.4-9.4 3.9-5.2 5.2-5.2 13.6 0 18.8l42.8 42.9c1.9 1.9 4.4 2.9 7 2.9 2.6 0 5.1-1 7-2.9l42.1-42.2c5.2-5.3 5.2-13.9-.1-19.2z" fill="currentColor"/><path d="M428.6 335.9c-2-1-4.2-1.5-6.4-1.5-5.2 0-9.9 2.8-12.4 7.3-7.9 14.3-17.8 27.5-29.4 39.1-16.8 16.8-36.3 29.9-58.2 38.7-21.1 8.6-43.4 12.9-66.3 12.9s-45.2-4.3-66.2-12.9c-21.8-8.9-41.4-21.9-58.2-38.7-37.6-37.8-56-90.9-50.3-143.9l18.4 18.5c2.4 2.4 5.6 3.7 9 3.7 3.4 0 6.6-1.3 9-3.7l1.3-1.3c4.9-4.9 4.9-13 0-17.9l-42.9-43c-1.9-1.9-4.4-2.9-7-2.9-2.6 0-5.1 1-7 2.9l-42 42.3c-5.3 5.3-5.3 13.9 0 19.2 2.6 2.6 6 4 9.6 4 3.6 0 7-1.4 9.6-4l13-13.1c-1.8 25.8 1.3 52 9 76.5 9.9 31.4 26.8 59.3 50.3 82.8 19.5 19.6 42.2 34.7 67.6 45.1 24.5 10 50.4 15 76.9 15 26.5 0 52.4-5.1 76.9-15 25.4-10.3 48.1-25.5 67.6-45.1 13.5-13.5 25-28.8 34.2-45.4 1.9-3.4 2.3-7.4 1.2-11.1-1.2-3.7-3.8-6.8-7.3-8.5z" fill="currentColor"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
d="M492 257.1c-2.6-2.6-6-4-9.6-4-3.6 0-7 1.4-9.6 4l-13 13c4.3-61.8-19.5-122.5-65.3-165C356.9 70.2 307.7 51 256.1 51c-26.7 0-52.8 5.1-77.4 15.1-25.5 10.4-48.3 25.6-67.7 45.3-13.2 13.4-24.6 28.5-33.6 44.8-1.9 3.4-2.3 7.4-1.2 11.1 1.1 3.7 3.8 6.8 7.2 8.5 2 1 4.2 1.5 6.4 1.5 5.2 0 9.9-2.8 12.4-7.3 7.9-14.3 17.8-27.5 29.4-39.1 16.8-16.8 36.3-29.8 58.1-38.7 21.1-8.6 43.4-12.9 66.2-12.9 22.9 0 45.2 4.3 66.3 12.9 21.8 8.9 41.4 21.9 58.2 38.8 20.3 20.4 35.4 45.6 43.8 73 7 22.9 9.2 47.3 6.6 71.2l-18.9-18.5c-2.5-2.4-5.8-3.8-9.3-3.8-3.5 0-6.9 1.4-9.4 3.9-5.2 5.2-5.2 13.6 0 18.8l42.8 42.9c1.9 1.9 4.4 2.9 7 2.9 2.6 0 5.1-1 7-2.9l42.1-42.2c5.2-5.3 5.2-13.9-.1-19.2z"
|
||||
fill="currentColor"
|
||||
/><path
|
||||
d="M428.6 335.9c-2-1-4.2-1.5-6.4-1.5-5.2 0-9.9 2.8-12.4 7.3-7.9 14.3-17.8 27.5-29.4 39.1-16.8 16.8-36.3 29.9-58.2 38.7-21.1 8.6-43.4 12.9-66.3 12.9s-45.2-4.3-66.2-12.9c-21.8-8.9-41.4-21.9-58.2-38.7-37.6-37.8-56-90.9-50.3-143.9l18.4 18.5c2.4 2.4 5.6 3.7 9 3.7 3.4 0 6.6-1.3 9-3.7l1.3-1.3c4.9-4.9 4.9-13 0-17.9l-42.9-43c-1.9-1.9-4.4-2.9-7-2.9-2.6 0-5.1 1-7 2.9l-42 42.3c-5.3 5.3-5.3 13.9 0 19.2 2.6 2.6 6 4 9.6 4 3.6 0 7-1.4 9.6-4l13-13.1c-1.8 25.8 1.3 52 9 76.5 9.9 31.4 26.8 59.3 50.3 82.8 19.5 19.6 42.2 34.7 67.6 45.1 24.5 10 50.4 15 76.9 15 26.5 0 52.4-5.1 76.9-15 25.4-10.3 48.1-25.5 67.6-45.1 13.5-13.5 25-28.8 34.2-45.4 1.9-3.4 2.3-7.4 1.2-11.1-1.2-3.7-3.8-6.8-7.3-8.5z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.5 KiB |
@@ -1 +1,17 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="m32 415.5l120-320l120 320m-42-112H74m252-64c12.19-28.69 41-48 74-48h0c46 0 80 32 80 80v144"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M320 358.5c0 36 26.86 58 60 58c54 0 100-27 100-106v-15c-20 0-58 1-92 5c-32.77 3.86-68 19-68 58Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="m32 415.5l120-320l120 320m-42-112H74m252-64c12.19-28.69 41-48 74-48h0c46 0 80 32 80 80v144"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M320 358.5c0 36 26.86 58 60 58c54 0 100-27 100-106v-15c-20 0-58 1-92 5c-32.77 3.86-68 19-68 58Z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 498 B After Width: | Height: | Size: 557 B |
@@ -1 +1,12 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="currentColor" d="m238.23 342.43l89.09-74.13a16 16 0 0 0 0-24.6l-89.09-74.13A16 16 0 0 0 212 181.86v148.28a16 16 0 0 0 26.23 12.29Z"/><path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="32" d="M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192s192-86 192-192Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="currentColor"
|
||||
d="m238.23 342.43l89.09-74.13a16 16 0 0 0 0-24.6l-89.09-74.13A16 16 0 0 0 212 181.86v148.28a16 16 0 0 0 26.23 12.29Z"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-miterlimit="10"
|
||||
stroke-width="32"
|
||||
d="M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192s192-86 192-192Z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 397 B After Width: | Height: | Size: 436 B |
@@ -1 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="currentColor" d="m190.06 414l163.12-139.78a24 24 0 0 0 0-36.44L190.06 98c-15.57-13.34-39.62-2.28-39.62 18.22v279.6c0 20.5 24.05 31.56 39.62 18.18Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="currentColor"
|
||||
d="m190.06 414l163.12-139.78a24 24 0 0 0 0-36.44L190.06 98c-15.57-13.34-39.62-2.28-39.62 18.22v279.6c0 20.5 24.05 31.56 39.62 18.18Z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 252 B After Width: | Height: | Size: 268 B |
@@ -1 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M380.93 57.37A32 32 0 0 0 358.3 48H94.22A46.21 46.21 0 0 0 48 94.22v323.56A46.21 46.21 0 0 0 94.22 464h323.56A46.36 46.36 0 0 0 464 417.78V153.7a32 32 0 0 0-9.37-22.63ZM256 416a64 64 0 1 1 64-64a63.92 63.92 0 0 1-64 64Zm48-224H112a16 16 0 0 1-16-16v-64a16 16 0 0 1 16-16h192a16 16 0 0 1 16 16v64a16 16 0 0 1-16 16Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M380.93 57.37A32 32 0 0 0 358.3 48H94.22A46.21 46.21 0 0 0 48 94.22v323.56A46.21 46.21 0 0 0 94.22 464h323.56A46.36 46.36 0 0 0 464 417.78V153.7a32 32 0 0 0-9.37-22.63ZM256 416a64 64 0 1 1 64-64a63.92 63.92 0 0 1-64 64Zm48-224H112a16 16 0 0 1-16-16v-64a16 16 0 0 1 16-16h192a16 16 0 0 1 16 16v64a16 16 0 0 1-16 16Z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 516 B After Width: | Height: | Size: 548 B |
@@ -1 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M262.29 192.31a64 64 0 1 0 57.4 57.4a64.13 64.13 0 0 0-57.4-57.4ZM416.39 256a154.34 154.34 0 0 1-1.53 20.79l45.21 35.46a10.81 10.81 0 0 1 2.45 13.75l-42.77 74a10.81 10.81 0 0 1-13.14 4.59l-44.9-18.08a16.11 16.11 0 0 0-15.17 1.75A164.48 164.48 0 0 1 325 400.8a15.94 15.94 0 0 0-8.82 12.14l-6.73 47.89a11.08 11.08 0 0 1-10.68 9.17h-85.54a11.11 11.11 0 0 1-10.69-8.87l-6.72-47.82a16.07 16.07 0 0 0-9-12.22a155.3 155.3 0 0 1-21.46-12.57a16 16 0 0 0-15.11-1.71l-44.89 18.07a10.81 10.81 0 0 1-13.14-4.58l-42.77-74a10.8 10.8 0 0 1 2.45-13.75l38.21-30a16.05 16.05 0 0 0 6-14.08c-.36-4.17-.58-8.33-.58-12.5s.21-8.27.58-12.35a16 16 0 0 0-6.07-13.94l-38.19-30A10.81 10.81 0 0 1 49.48 186l42.77-74a10.81 10.81 0 0 1 13.14-4.59l44.9 18.08a16.11 16.11 0 0 0 15.17-1.75A164.48 164.48 0 0 1 187 111.2a15.94 15.94 0 0 0 8.82-12.14l6.73-47.89A11.08 11.08 0 0 1 213.23 42h85.54a11.11 11.11 0 0 1 10.69 8.87l6.72 47.82a16.07 16.07 0 0 0 9 12.22a155.3 155.3 0 0 1 21.46 12.57a16 16 0 0 0 15.11 1.71l44.89-18.07a10.81 10.81 0 0 1 13.14 4.58l42.77 74a10.8 10.8 0 0 1-2.45 13.75l-38.21 30a16.05 16.05 0 0 0-6.05 14.08c.33 4.14.55 8.3.55 12.47Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M262.29 192.31a64 64 0 1 0 57.4 57.4a64.13 64.13 0 0 0-57.4-57.4ZM416.39 256a154.34 154.34 0 0 1-1.53 20.79l45.21 35.46a10.81 10.81 0 0 1 2.45 13.75l-42.77 74a10.81 10.81 0 0 1-13.14 4.59l-44.9-18.08a16.11 16.11 0 0 0-15.17 1.75A164.48 164.48 0 0 1 325 400.8a15.94 15.94 0 0 0-8.82 12.14l-6.73 47.89a11.08 11.08 0 0 1-10.68 9.17h-85.54a11.11 11.11 0 0 1-10.69-8.87l-6.72-47.82a16.07 16.07 0 0 0-9-12.22a155.3 155.3 0 0 1-21.46-12.57a16 16 0 0 0-15.11-1.71l-44.89 18.07a10.81 10.81 0 0 1-13.14-4.58l-42.77-74a10.8 10.8 0 0 1 2.45-13.75l38.21-30a16.05 16.05 0 0 0 6-14.08c-.36-4.17-.58-8.33-.58-12.5s.21-8.27.58-12.35a16 16 0 0 0-6.07-13.94l-38.19-30A10.81 10.81 0 0 1 49.48 186l42.77-74a10.81 10.81 0 0 1 13.14-4.59l44.9 18.08a16.11 16.11 0 0 0 15.17-1.75A164.48 164.48 0 0 1 187 111.2a15.94 15.94 0 0 0 8.82-12.14l6.73-47.89A11.08 11.08 0 0 1 213.23 42h85.54a11.11 11.11 0 0 1 10.69 8.87l6.72 47.82a16.07 16.07 0 0 0 9 12.22a155.3 155.3 0 0 1 21.46 12.57a16 16 0 0 0 15.11 1.71l44.89-18.07a10.81 10.81 0 0 1 13.14 4.58l42.77 74a10.8 10.8 0 0 1-2.45 13.75l-38.21 30a16.05 16.05 0 0 0-6.05 14.08c.33 4.14.55 8.3.55 12.47Z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
@@ -1 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M336 192h40a40 40 0 0 1 40 40v192a40 40 0 0 1-40 40H136a40 40 0 0 1-40-40V232a40 40 0 0 1 40-40h40m160-64l-80-80l-80 80m80 193V48"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M336 192h40a40 40 0 0 1 40 40v192a40 40 0 0 1-40 40H136a40 40 0 0 1-40-40V232a40 40 0 0 1 40-40h40m160-64l-80-80l-80 80m80 193V48"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 331 B After Width: | Height: | Size: 363 B |
@@ -1 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-miterlimit="10" stroke-width="32" d="M256 64C150 64 64 150 64 256s86 192 192 192s192-86 192-192S362 64 256 64Z"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="m352 216l-96 96l-96-96"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-miterlimit="10"
|
||||
stroke-width="32"
|
||||
d="M256 64C150 64 64 150 64 256s86 192 192 192s192-86 192-192S362 64 256 64Z"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="m352 216l-96 96l-96-96"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 439 B |
@@ -1 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path d="M416 64H96c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32zm4 348c0 4.4-3.6 8-8 8H100c-4.4 0-8-3.6-8-8V100c0-4.4 3.6-8 8-8h312c4.4 0 8 3.6 8 8v312z" fill="currentColor"/><path d="M363.6 192.9L346 174.8c-.7-.8-1.8-1.2-2.8-1.2-1.1 0-2.1.4-2.8 1.2l-122 122.9-44.4-44.4c-.8-.8-1.8-1.2-2.8-1.2-1 0-2 .4-2.8 1.2l-17.8 17.8c-1.6 1.6-1.6 4.1 0 5.7l56 56c3.6 3.6 8 5.7 11.7 5.7 5.3 0 9.9-3.9 11.6-5.5h.1l133.7-134.4c1.4-1.7 1.4-4.2-.1-5.7z" fill="currentColor"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
d="M416 64H96c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32zm4 348c0 4.4-3.6 8-8 8H100c-4.4 0-8-3.6-8-8V100c0-4.4 3.6-8 8-8h312c4.4 0 8 3.6 8 8v312z"
|
||||
fill="currentColor"
|
||||
/><path
|
||||
d="M363.6 192.9L346 174.8c-.7-.8-1.8-1.2-2.8-1.2-1.1 0-2.1.4-2.8 1.2l-122 122.9-44.4-44.4c-.8-.8-1.8-1.2-2.8-1.2-1 0-2 .4-2.8 1.2l-17.8 17.8c-1.6 1.6-1.6 4.1 0 5.7l56 56c3.6 3.6 8 5.7 11.7 5.7 5.3 0 9.9-3.9 11.6-5.5h.1l133.7-134.4c1.4-1.7 1.4-4.2-.1-5.7z"
|
||||
fill="currentColor"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 601 B After Width: | Height: | Size: 628 B |
@@ -1 +1,24 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="m112 112l20 320c.95 18.49 14.4 32 32 32h184c17.67 0 30.87-13.51 32-32l20-320"/><path fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="32" d="M80 112h352"/><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32" d="M192 112V72h0a23.93 23.93 0 0 1 24-24h80a23.93 23.93 0 0 1 24 24h0v40m-64 64v224m-72-224l8 224m136-224l-8 224"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 512 512">
|
||||
<path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="m112 112l20 320c.95 18.49 14.4 32 32 32h184c17.67 0 30.87-13.51 32-32l20-320"
|
||||
/><path
|
||||
fill="currentColor"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-miterlimit="10"
|
||||
stroke-width="32"
|
||||
d="M80 112h352"
|
||||
/><path
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="32"
|
||||
d="M192 112V72h0a23.93 23.93 0 0 1 24-24h80a23.93 23.93 0 0 1 24 24h0v40m-64 64v224m-72-224l8 224m136-224l-8 224"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 627 B After Width: | Height: | Size: 713 B |