1
0
mirror of https://github.com/konpa/devicon.git synced 2025-08-10 16:45:54 +02:00

Merge branch 'develop' into develop

This commit is contained in:
Alex Canales
2025-02-16 02:01:48 -05:00
committed by GitHub
45 changed files with 443 additions and 75 deletions

View File

@@ -1,2 +1,2 @@
selenium==4.1.0
requests==2.25.1
requests==2.32.3

View File

@@ -5,9 +5,9 @@ jobs:
name: Get Fonts From Icomoon
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies (python, pip, npm)
@@ -21,26 +21,26 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: >
python ./.github/scripts/icomoon_build.py
./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json
python ./.github/scripts/icomoon_build.py
./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json
./devicon.json ./icons ./ $GITHUB_TOKEN --headless
- name: Upload geckodriver.log for debugging purposes
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: geckodriver-log
path: ./geckodriver.log
- name: Upload log file for debugging purposes
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: logfile
path: ./log.txt
- name: Build devicon.min.css
if: success()
if: success()
run: npm run build-css
# - name: Upload screenshot of the newly made icons
@@ -58,11 +58,11 @@ jobs:
uses: juliangruber/read-file-action@v1.0.0
with:
# taken from icomoon_build.py's get_release_message()
path: ./release_message.txt
path: ./release_message.txt
- name: Create Pull Request
if: success()
uses: peter-evans/create-pull-request@v3
if: success()
uses: peter-evans/create-pull-request@v7
env:
MESSAGE: |
Hello,
@@ -81,14 +81,14 @@ jobs:
More information can be found in the GitHub Action logs for this workflow.
Adios,
Adios,
Build Bot :sunglasses:
with:
branch: 'bot/build-result'
commit-message: 'Built new icons, icomoon.json and devicon.css'
title: 'bot:build new icons, icomoon.json and devicon.css'
body: >
${{
${{
format(
env.MESSAGE,
steps.release_message_step.outputs.content

View File

@@ -6,17 +6,17 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.event.pull_request.title, 'new icon') || startsWith(github.event.pull_request.title, 'update icon') # only checks icon PR
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check if PR is develop
if: ${{ github.base_ref != 'develop' }}
run: |
echo -e "The PR's base branch is \`${{ github.base_ref }}\`, but should be \`develop\`\nPlease change the PR so that it's based on, and merged into \`develop\`" > ./err_messages.txt
echo "wrong_branch=true" >> $GITHUB_ENV
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
if: ${{ !env.wrong_branch }}
with:
with:
python-version: 3.8
- name: Install dependencies
@@ -32,7 +32,7 @@ jobs:
run: python ./.github/scripts/check_icon_pr.py "$PR_TITLE" ./icons ./devicon.json
- name: Upload the err messages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success()
with:
name: err_messages
@@ -46,7 +46,7 @@ jobs:
run: echo $PR_NUM > pr_num.txt
- name: Upload the pr num
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success()
with:
name: pr_num

View File

@@ -15,7 +15,7 @@ jobs:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
@@ -31,10 +31,10 @@ jobs:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
id: setup-python
with:
python-version: '3.10'
@@ -65,7 +65,7 @@ jobs:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Find Python files outside the .github folder
id: find_files

View File

@@ -2,7 +2,7 @@ name: Label Issue In Develop
on:
workflow_run:
workflows: ['On Develop PR Merge']
types:
types:
- completed
jobs:
on-failure:
@@ -15,20 +15,20 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Python v3.8
uses: actions/setup-python@v4
with:
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r ./.github/scripts/requirements.txt
- name: Download workflow artifact
uses: dawidd6/action-download-artifact@v2.11.0
uses: dawidd6/action-download-artifact@v7
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: peek_icons.yml

View File

@@ -1,5 +1,5 @@
name: On Develop PR Merge
on:
on:
pull_request:
types: [closed]
branches: [develop]
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Save the PR number in an artifact
shell: bash
@@ -18,7 +18,7 @@ jobs:
run: echo $PR_NUM > pr_num.txt
- name: Upload the PR number
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4
with:
name: pr_num
path: ./pr_num.txt

View File

@@ -7,13 +7,13 @@ jobs:
environment: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# "ref" specifies the branch to check out.
# "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted
ref: ${{ github.event.release.target_commitish }}
- name: Use Node.js v16
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
registry-url: https://registry.npmjs.org/ # Specifies the registry, this field is required!

View File

@@ -1,7 +1,7 @@
name: Peek Icons
on:
pull_request:
types: [labeled]
types: [labeled]
jobs:
peek:
# four outcomes: successful check and upload,
@@ -11,14 +11,14 @@ jobs:
if: github.event.label.name == 'bot:peek'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Python v3.8
uses: actions/setup-python@v4
with:
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r ./.github/scripts/requirements.txt
@@ -30,7 +30,7 @@ jobs:
run: echo $PR_NUM > pr_num.txt
- name: Upload the PR number
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4
with:
name: pr_num
path: ./pr_num.txt
@@ -40,26 +40,26 @@ jobs:
PR_TITLE: ${{ github.event.pull_request.title }}
shell: bash
run: >
python ./.github/scripts/icomoon_peek.py
./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json
python ./.github/scripts/icomoon_peek.py
./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json
./devicon.json ./icons ./ --headless "$PR_TITLE"
- name: Upload the err messages (created by icomoon_peek.py)
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4
if: always()
with:
name: err_messages
path: ./err_messages.txt
- name: Upload screenshots for comments
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4
if: success()
with:
name: screenshots
path: ./screenshots/*.png
- name: Upload geckodriver.log for debugging purposes
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4
if: failure()
with:
name: geckodriver-log

View File

@@ -2,19 +2,19 @@ name: Post the result of the check_icon_pr workflow into its PR.
on:
workflow_run:
workflows: ['Check Icon PR']
types:
types:
- completed
jobs:
jobs:
post_result_of_svg_check:
name: Post the result of the Check SVG Action
runs-on: ubuntu-latest
steps:
- name: Check if the trigger run worked. If it failed, fail the current run.
if: github.event.workflow_run.conclusion != 'success'
if: github.event.workflow_run.conclusion != 'success'
uses: cutenode/action-always-fail@v1.0.1
- name: Download workflow artifact
uses: dawidd6/action-download-artifact@v2.27.0
uses: dawidd6/action-download-artifact@v7
if: success()
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -62,7 +62,7 @@ jobs:
- name: Comment on the PR about the result - Failure
uses: jungwinter/comment@v1.1.0 # let us comment on a specific PR
if: failure()
if: failure()
env:
MESSAGE: |
Hi!

View File

@@ -2,14 +2,14 @@ name: Post the screenshots into a comment from Peek Icons workflow
on:
workflow_run:
workflows: ['Peek Icons']
types:
types:
- completed
jobs:
jobs:
post_screenshots_in_comment:
name: Post the screenshot
runs-on: ubuntu-latest
if: github.event.action == 'completed' && github.event.workflow_run.conclusion != 'skipped'
env:
env:
# three possible values: 'skipped', 'success', 'failure'
# have to print github.event to console to see these values
# note: can't use this env variable up in the if statement above for some reason.
@@ -20,7 +20,7 @@ jobs:
run: echo $PEEK_STATUS
- name: Download workflow artifact
uses: dawidd6/action-download-artifact@v2.27.0
uses: dawidd6/action-download-artifact@v7
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: peek_icons.yml
@@ -48,7 +48,7 @@ jobs:
path: ./screenshots/new_svgs.png
client_id: ${{secrets.IMGUR_CLIENT_ID}}
- name: Upload zoomed in screenshot of the SVGs gotten from the artifacts
- name: Upload zoomed in screenshot of the SVGs gotten from the artifacts
id: svgs_detailed_img_step
uses: devicons/public-upload-to-imgur@v2.2.2
if: env.PEEK_STATUS == 'success' && success()
@@ -106,8 +106,8 @@ jobs:
{5}
The maintainers will now check for:
1. The number of Glyphs matches the number of SVGs that were selected.
2. The icons (second group of pictures) look the same as the SVGs (first group of pictures).
1. The number of Glyphs matches the number of SVGs that were selected.
2. The icons (second group of pictures) look the same as the SVGs (first group of pictures).
3. The icons are of high quality (legible, matches the official logo, etc.)
4. A new object is added in the `devicon.json` file at the correct alphabetic position as seen [here](https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60)
@@ -117,23 +117,23 @@ jobs:
Note: If the images don't show up, it has been autodeleted by Imgur after 6 months due to our API choice.
Cheers,
Cheers,
Peek Bot :blush:
with:
type: create
issue_number: ${{ steps.pr_num_reader.outputs.content }}
token: ${{ secrets.GITHUB_TOKEN }}
body: >
${{
${{
format(
env.MESSAGE,
env.MESSAGE,
fromJSON(steps.svgs_overview_img_step.outputs.markdown_urls)[0],
join(fromJSON(steps.svgs_detailed_img_step.outputs.markdown_urls), ' '),
fromJSON(steps.icons_overview_img_step.outputs.markdown_urls)[0],
join(fromJSON(steps.icons_detailed_img_step.outputs.markdown_urls), ' '),
join(fromJSON(steps.colored_icons_detailed_img_step.outputs.markdown_urls), ' '),
steps.err_message_reader.outputs.content
)
)
}}
- name: Comment on the PR about the result - Failure
@@ -155,9 +155,9 @@ jobs:
- Your icon information has been added to the `devicon.json` as seen [here](https://github.com/devicons/devicon/wiki/Updating-%60devicon.json%60)
- Your PR title follows the format seen [here](https://github.com/devicons/devicon/wiki/Overview-on-Submitting-Icons)
I will retry once everything is fixed. If I still fail or there are other error, the maintainers will investigate.
I will retry once everything is fixed. If I still fail or there are other error, the maintainers will investigate.
Best of luck,
Best of luck,
Peek Bot :relaxed:
with:
type: create
@@ -174,7 +174,7 @@ jobs:
I'm Devicons' Peek Bot and we've ran into a problem with the `post_peek_screenshot` workflow.
The maintainers will take a look and fix the issue. Please wait for further instructions.
Thank you,
Thank you,
Peek Bot :relaxed:
with:
type: create

View File

@@ -555,6 +555,28 @@
}
]
},
{
"name": "apex",
"altnames": [],
"tags": [
"language"
],
"versions": {
"svg": [
"original"
],
"font": [
"original"
]
},
"color": "#0d9dda",
"aliases": [
{
"base": "original",
"alias": "plain"
}
]
},
{
"name": "apl",
"altnames": [
@@ -659,7 +681,7 @@
"altnames": [],
"tags": [
"linux",
"distribuition",
"distribution",
"desktop"
],
"versions": {
@@ -1730,6 +1752,27 @@
"color": "#21d789",
"aliases": []
},
{
"name": "clickhouse",
"altnames": [],
"tags": [
"cloud",
"column-oriented",
"database",
"warehouse"
],
"versions": {
"svg": [
"original",
"plain"
],
"font": [
"plain"
]
},
"color": "#f9ff69",
"aliases": []
},
{
"name": "clojure",
"altnames": [],
@@ -1871,6 +1914,28 @@
"color": "#0e8a16",
"aliases": []
},
{
"name": "cobol",
"altnames": [],
"tags": [
"language"
],
"versions": {
"svg": [
"original"
],
"font": [
"original"
]
},
"color": "#000000",
"aliases": [
{
"base": "original",
"alias": "plain"
}
]
},
{
"name": "codeac",
"altnames": [
@@ -2810,6 +2875,41 @@
"color": "#623697",
"aliases": []
},
{
"name": "dovecot",
"altnames": [],
"tags": [
"imap",
"pop3",
"e-mail"
],
"versions": {
"svg": [
"original",
"plain",
"line"
],
"font": [
"plain",
"line"
]
},
"color": "#54bbab",
"aliases": [
{
"base": "original",
"alias": "original-wordmark"
},
{
"base": "plain",
"alias": "line-wordmark"
},
{
"base": "line",
"alias": "line-wordmark"
}
]
},
{
"name": "dreamweaver",
"altnames": [
@@ -2875,6 +2975,34 @@
"color": "#0073BA",
"aliases": []
},
{
"name": "dyalog",
"altnames": [],
"tags": [
"language"
],
"versions": {
"svg": [
"original",
"original-wordmark"
],
"font": [
"original",
"original-wordmark"
]
},
"color": "#ff6600",
"aliases": [
{
"base": "original",
"alias": "plain"
},
{
"base": "original-wordmark",
"alias": "plain-wordmark"
}
]
},
{
"name": "dynamodb",
"altnames": [],
@@ -3345,7 +3473,7 @@
"altnames": [],
"tags": [
"linux",
"distribuition",
"distribution",
"desktop"
],
"versions": {
@@ -3436,11 +3564,11 @@
"base": "original",
"alias": "original-wordmark"
},
{
{
"base": "original",
"alias": "plain"
},
{
{
"base": "original",
"alias": "plain-wordmark"
}
@@ -3885,7 +4013,7 @@
"altnames": [],
"tags": [
"linux",
"distribuition",
"distribution",
"desktop"
],
"versions": {
@@ -4076,6 +4204,32 @@
"color": "#24292e",
"aliases": []
},
{
"name": "gitkraken",
"altnames": [],
"tags": [
"git",
"version-control"
],
"versions": {
"svg": [
"original",
"original-wordmark",
"plain-wordmark"
],
"font": [
"original",
"plain-wordmark"
]
},
"color": "#179287",
"aliases": [
{
"base": "original",
"alias": "plain"
}
]
},
{
"name": "gitlab",
"altnames": [],
@@ -4143,6 +4297,25 @@
"color": "#000000",
"aliases": []
},
{
"name": "gleam",
"altnames": [],
"tags": [
"language",
"programming"
],
"versions": {
"svg": [
"original",
"plain"
],
"font": [
"plain"
]
},
"color": "#ffaff3",
"aliases": []
},
{
"name": "go",
"altnames": [
@@ -4774,6 +4947,26 @@
"color": "#fbb040",
"aliases": []
},
{
"name": "hoppscotch",
"altnames": [],
"tags": [
"rest",
"testing",
"api"
],
"versions": {
"svg": [
"original",
"plain"
],
"font": [
"plain"
]
},
"color": "#00d196",
"aliases": []
},
{
"name": "html5",
"altnames": [
@@ -4917,6 +5110,7 @@
],
"versions": {
"svg": [
"original",
"plain",
"line"
],
@@ -4925,7 +5119,7 @@
"line"
]
},
"color": "#faa625",
"color": "#330000",
"aliases": []
},
{
@@ -6166,6 +6360,28 @@
"color": "#000000",
"aliases": []
},
{
"name": "linuxmint",
"altnames": [],
"tags": [
"os",
"linux"
],
"versions": {
"svg": [
"original",
"original-wordmark",
"plain",
"plain-wordmark"
],
"font": [
"plain",
"plain-wordmark"
]
},
"color": "#69b53f",
"aliases": []
},
{
"name": "liquibase",
"altnames": [],
@@ -6386,6 +6602,38 @@
}
]
},
{
"name": "mapbox",
"altnames": [],
"tags": [
"map",
"navigation",
"data"
],
"versions": {
"svg": [
"original"
],
"font": [
"original"
]
},
"color": "#000000",
"aliases": [
{
"base": "original",
"alias": "plain"
},
{
"base": "original",
"alias": "original-wordmark"
},
{
"base": "original",
"alias": "plain-wordmark"
}
]
},
{
"name": "mariadb",
"altnames": [],
@@ -7024,6 +7272,31 @@
"color": "#C8F",
"aliases": []
},
{
"name": "nats",
"altnames": [
"nats-io",
"nats.io",
"NATS-io",
"NATS.io"
],
"tags": [
"streaming",
"open-source",
"go"
],
"versions": {
"svg": [
"original",
"plain"
],
"font": [
"plain"
]
},
"color": "#27aae1",
"aliases": []
},
{
"name": "neo4j",
"altnames": [],
@@ -7957,7 +8230,7 @@
"altnames": [],
"tags": [
"linux",
"distribuition",
"distribution",
"desktop"
],
"versions": {
@@ -8730,6 +9003,28 @@
"color": "#2A0634",
"aliases": []
},
{
"name": "primeng",
"altnames": [],
"tags": [
"angular",
"ui",
"component",
"library",
"framework"
],
"versions": {
"svg": [
"original",
"plain"
],
"font": [
"plain"
]
},
"color": "#000",
"aliases": []
},
{
"name": "prisma",
"altnames": [],
@@ -9852,6 +10147,27 @@
}
]
},
{
"name": "rexx",
"altnames": [],
"tags": [
"language"
],
"versions": {
"svg": [
"original",
"original-wordmark",
"plain",
"plain-wordmark"
],
"font": [
"plain",
"plain-wordmark"
]
},
"color": "#d81511",
"aliases": []
},
{
"name": "rider",
"altnames": [],
@@ -11346,6 +11662,26 @@
}
]
},
{
"name": "talos",
"altnames": [],
"tags": [
"container",
"linux",
"distribution"
],
"versions": {
"svg": [
"original",
"plain"
],
"font": [
"plain"
]
},
"color": "#f92a20",
"aliases": []
},
{
"name": "tauri",
"altnames": [],

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#0d9dda" d="m110.4 63.58-8.504-13.3h7.366l5.043 8.257 4.994-8.257h7.366l-8.504 13.3L128 77.72h-7.811l-5.884-9.394-5.834 9.394h-7.811zm-18.096-1.928q-.296-1.632-.988-2.818t-1.681-1.929q-.99-.79-2.225-1.137-1.187-.395-2.522-.395-.988 0-2.175.296-1.137.248-2.225.94t-2.027 1.928q-.89 1.186-1.335 3.115zm-14.98 5.29q.099.692.643 1.68.544.94 1.483 1.83t2.274 1.533q1.385.593 3.164.593 4.4 0 6.329-3.51h6.921q-.593 1.878-1.829 3.609-1.236 1.68-2.966 3.016t-3.906 2.125q-2.126.792-4.549.792-3.114 0-5.784-1.138t-4.598-3.114-3.016-4.598q-1.088-2.67-1.088-5.686 0-2.917 1.039-5.587t2.917-4.696q1.878-2.027 4.548-3.214 2.67-1.236 5.933-1.236 3.362 0 5.982 1.285 2.67 1.236 4.45 3.264 1.83 2.027 2.768 4.597.99 2.571.99 5.142 0 .989-.15 1.83-.098.79-.246 1.483zm-32.58-2.967q0 2.275.79 3.906.84 1.632 2.027 2.67 1.236 1.038 2.62 1.532t2.571.495q1.335 0 2.72-.544 1.433-.544 2.57-1.632 1.187-1.087 1.929-2.67.79-1.63.79-3.757 0-1.878-.691-3.46-.643-1.583-1.78-2.72-1.088-1.137-2.522-1.78-1.384-.642-2.917-.642-1.532 0-3.016.593-1.433.593-2.57 1.73-1.138 1.088-1.83 2.72-.692 1.582-.692 3.56zm-6.18-13.695h6.03v3.214h.1q1.236-1.533 2.57-2.373 1.385-.89 2.62-1.236 1.237-.396 2.226-.445.988-.099 1.483-.099 3.362 0 5.933 1.335 2.57 1.285 4.301 3.411 1.73 2.077 2.62 4.697.89 2.571.89 5.092 0 3.066-1.087 5.735-1.039 2.67-2.917 4.697-1.83 1.978-4.351 3.164-2.472 1.138-5.39 1.138-1.73 0-3.064-.347-1.286-.296-2.275-.79t-1.73-1.138-1.384-1.236v11.767h-6.576zM13.644 61.9h8.405l-4.153-11.223h-.099zm1.582-20.765h5.29L35.845 77.72h-7.466l-3.905-9.443H11.37L7.465 77.72H0z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M0 0h128v128H0z" fill="#f9ff69"/><path d="M26.54 23.21a.945.945 0 0 0-.938.938v79.618c0 .511.425.937.937.937h7.168a.945.945 0 0 0 .938-.937V24.148a.945.945 0 0 0-.938-.937Zm18.089 0a.945.945 0 0 0-.938.938v79.618c0 .511.426.937.938.937h7.168a.949.949 0 0 0 .941-.937V24.148a.949.949 0 0 0-.941-.937Zm18.09 0a.945.945 0 0 0-.938.938v79.618c0 .511.426.937.938.937h7.168a.949.949 0 0 0 .941-.937V24.148a.949.949 0 0 0-.941-.937Zm18.18 0a.946.946 0 0 0-.942.938v79.618c0 .511.426.937.941.937h7.165a.949.949 0 0 0 .94-.937V24.148a.949.949 0 0 0-.94-.937Zm18.09 31.743a.952.952 0 0 0-.942.942v16.21c0 .512.43.942.941.942h7.168c.512 0 .938-.43.938-.942v-16.21a.949.949 0 0 0-.938-.942Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 763 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M26.54 23.21a.945.945 0 0 0-.938.938v79.618c0 .511.425.937.937.937h7.168a.945.945 0 0 0 .938-.937V24.148a.945.945 0 0 0-.938-.937Zm18.089 0a.945.945 0 0 0-.938.938v79.618c0 .511.426.937.938.937h7.168a.949.949 0 0 0 .941-.937V24.148a.949.949 0 0 0-.941-.937Zm18.09 0a.945.945 0 0 0-.938.938v79.618c0 .511.426.937.938.937h7.168a.949.949 0 0 0 .941-.937V24.148a.949.949 0 0 0-.941-.937Zm18.18 0a.946.946 0 0 0-.942.938v79.618c0 .511.426.937.941.937h7.165a.949.949 0 0 0 .94-.937V24.148a.949.949 0 0 0-.94-.937Zm18.09 31.743a.952.952 0 0 0-.942.942v16.21c0 .512.43.942.941.942h7.168c.512 0 .938-.43.938-.942v-16.21a.949.949 0 0 0-.938-.942Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 721 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M111.477 78.168V49.832h5.359v23.586H128v4.75zm-17.78.487q-2.802 0-5.075-.933-2.274-.934-3.898-2.802-1.583-1.867-2.476-4.587-.893-2.72-.893-6.333 0-3.572.893-6.292.893-2.761 2.476-4.628 1.624-1.868 3.898-2.802 2.273-.933 5.074-.933 2.801 0 5.075.933 2.273.934 3.897 2.802 1.624 1.867 2.476 4.628.893 2.72.893 6.292 0 3.613-.893 6.333-.852 2.72-2.476 4.587-1.624 1.868-3.897 2.802-2.274.933-5.075.933zm0-4.75q3.044 0 4.83-2.03 1.827-2.03 1.827-5.683v-4.384q0-3.654-1.827-5.684-1.786-2.03-4.83-2.03-3.046 0-4.872 2.03-1.787 2.03-1.787 5.684v4.384q0 3.654 1.787 5.684 1.826 2.03 4.871 2.03zm-38.04-24.073H68.77q1.746 0 3.126.528 1.42.527 2.395 1.461.974.934 1.462 2.314.527 1.34.527 2.964 0 1.623-.446 2.76-.406 1.096-1.137 1.827-.69.73-1.624 1.096-.893.365-1.867.406v.244q.934 0 1.989.365 1.096.365 1.99 1.177.933.772 1.542 2.03.609 1.218.609 3.045 0 1.705-.569 3.207-.527 1.461-1.502 2.558-.974 1.096-2.314 1.745-1.34.61-2.922.61H55.657zm5.36 23.79h7.469q1.543 0 2.395-.772.853-.812.853-2.314v-1.38q0-1.502-.853-2.314-.852-.812-2.395-.812h-7.47zm0-11.977h6.616q1.462 0 2.274-.77.812-.813.812-2.234v-1.258q0-1.421-.812-2.192-.812-.812-2.274-.812h-6.617zm-23.14 17.01q-2.802 0-5.075-.933-2.274-.934-3.897-2.802-1.584-1.867-2.477-4.587-.893-2.72-.893-6.333 0-3.572.893-6.292.893-2.761 2.477-4.628 1.623-1.868 3.897-2.802 2.273-.933 5.074-.933t5.075.933q2.273.934 3.897 2.802 1.624 1.867 2.476 4.628.894 2.72.894 6.292 0 3.613-.894 6.333-.852 2.72-2.476 4.587-1.624 1.868-3.897 2.802-2.274.933-5.075.933zm0-4.75q3.044 0 4.83-2.03 1.827-2.03 1.827-5.683v-4.384q0-3.654-1.827-5.684-1.786-2.03-4.83-2.03t-4.872 2.03q-1.787 2.03-1.787 5.684v4.384q0 3.654 1.787 5.684 1.827 2.03 4.871 2.03zm-25.658 4.75q-2.8 0-5.074-.893-2.233-.934-3.857-2.76-1.583-1.827-2.435-4.507Q0 67.775 0 64.203t.853-6.333q.852-2.801 2.435-4.669 1.624-1.908 3.857-2.882 2.273-.974 5.074-.974 3.817 0 6.333 1.624 2.517 1.623 4.02 4.912l-4.588 2.436q-.609-1.908-1.99-3.045-1.38-1.177-3.775-1.177-3.004 0-4.79 2.03-1.746 2.03-1.746 5.683v4.465q0 3.695 1.746 5.684 1.786 1.948 4.79 1.948 2.396 0 3.898-1.299 1.542-1.299 2.232-3.207l4.344 2.558q-1.542 3.166-4.1 4.953-2.557 1.745-6.374 1.745z" style="white-space:pre"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M82.1 74.224c-4.814 0-9.19 2.841-9.19 7.706 0 4.866 4.376 7.656 9.19 7.656 1.74 0 3.326-.332 4.732-1 1.41-.689 2.537-1.74 3.431-3.022.258-.355.157-.715-.074-.918-.23-.207-1.64-1.101-1.87-1.254-.514-.308-.97-.207-1.307.254-.332.46-1.997 2.408-4.912 2.408-2.614 0-5.224-1.435-5.224-4.147 0-2.739 2.61-4.15 5.224-4.15 1.767 0 3.556.563 4.632 1.946.257.332.82.308 1.202.078.383-.23 1.513-.973 1.744-1.152.41-.36.433-.715.18-1.025-1.795-2.328-4.765-3.38-7.758-3.38zm-55.375.028c-4.838 0-9.294 2.74-9.294 7.655 0 2.2.9 4.068 2.666 5.53 1.766 1.457 3.994 2.149 6.628 2.172 4.842 0 9.32-2.79 9.32-7.702 0-4.943-4.478-7.655-9.32-7.655zm75.187 0c-4.837 0-9.293 2.74-9.293 7.655 0 2.2.895 4.068 2.662 5.53 1.767 1.457 3.993 2.149 6.631 2.172 4.838 0 9.32-2.79 9.32-7.702 0-4.943-4.482-7.655-9.32-7.655zm-64.586.304c-.82 0-1.129.669-.899 1.079 1.13 2.099 4.123 7.473 7.222 13.08.101.18.46.46.816.46h1.36a.956.956 0 0 0 .817-.46c2.841-5.48 6.683-12.415 7.043-13.03.202-.36-.028-1.1-.744-1.1h-2.56c-.308 0-.64.05-.82.46l-4.427 8.19-4.506-8.217c-.18-.333-.386-.46-.82-.46zm19.507.028c-.46 0-.87.383-.87.82v12.9c0 .438.41.82.87.82h13.49c.46 0 .871-.382.871-.82v-1.61c0-.437-.41-.82-.871-.82H59.854v-2.69h6.166c.461 0 .872-.382.872-.816v-1.613c0-.439-.41-.82-.87-.82h-6.168v-2.05h9.856c.46 0 .867-.382.867-.82v-1.66c0-.438-.406-.82-.867-.82zm-49.42.023H.87c-.46 0-.871.388-.871.82v12.955c0 .434.41.817.871.817h6.093c4.735 0 8.37-2.583 8.37-7.269 0-2.149-.766-3.942-2.33-5.326-1.465-1.293-3.355-1.96-5.591-1.997zm105.969 0c-.462 0-.872.388-.872.82v1.791c0 .438.41.82.87.82h4.94v10.316c0 .439.41.82.872.82h2.15c.46 0 .87-.381.87-.82V78.04h4.917c.46 0 .871-.383.871-.82v-1.791c0-.433-.41-.82-.871-.82zm-86.657 3.127c2.665 0 5.353 1.356 5.353 4.146 0 1.204-.46 2.176-1.434 2.942-.973.793-2.255 1.204-3.92 1.204-2.66 0-5.321-1.329-5.321-4.146 0-2.818 2.66-4.146 5.322-4.146zm75.187 0c2.661 0 5.35 1.356 5.35 4.146 0 1.204-.46 2.176-1.43 2.942-.974.793-2.255 1.204-3.92 1.204-2.66 0-5.322-1.329-5.322-4.146 0-2.818 2.661-4.146 5.322-4.146zm-98.02.383h3.099c2.48 0 4.376 1.355 4.376 3.786 0 2.536-1.793 3.763-4.376 3.763H3.892Zm0 0"/><path fill="#54bbab" d="M47.361 38.391c-.82 0-1.64.262-2.328.79L11.57 64.753a1.277 1.277 0 0 0 0 2.024l1.384 1.047a1.8 1.8 0 0 0 2.177 0l16.588-12.645c.922-.692 2.2-.692 3.099 0l10.979 8.396c.922.692 2.2.692 3.099 0L63.409 52.49c.95-.692.95-2.098 0-2.814L49.69 39.18a3.834 3.834 0 0 0-2.329-.789zm38.397 0c-.817 0-1.637.262-2.33.79L49.972 64.78a1.268 1.268 0 0 0 0 2.02l1.384 1.05a1.806 1.806 0 0 0 2.173 0l19.15-14.59a2.567 2.567 0 0 1 3.096 0l18.69 14.26c.895.692 2.176.692 3.095 0l11.93-9.14c.95-.715.95-2.126 0-2.842L88.091 39.181a3.837 3.837 0 0 0-2.333-.79zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#54bbab" d="M47.361 38.39c-.82 0-1.64.261-2.328.79L11.57 64.75a1.277 1.277 0 0 0 0 2.025l1.384 1.047a1.8 1.8 0 0 0 2.177 0l16.588-12.645c.922-.692 2.2-.692 3.099 0l10.979 8.396c.922.692 2.2.692 3.099 0l14.513-11.086c.95-.692.95-2.098 0-2.814L49.69 39.178a3.834 3.834 0 0 0-2.329-.789zm38.397 0c-.817 0-1.637.261-2.33.79L49.972 64.776a1.273 1.273 0 0 0 0 2.02l1.384 1.05a1.806 1.806 0 0 0 2.173 0l19.15-14.59a2.567 2.567 0 0 1 3.096 0l18.69 14.26c.895.692 2.176.692 3.095 0l11.93-9.14c.95-.715.95-2.126 0-2.842L88.091 39.18a3.837 3.837 0 0 0-2.333-.79zM82.1 74.221c-4.814 0-9.19 2.841-9.19 7.706 0 4.866 4.376 7.656 9.19 7.656 1.74 0 3.326-.332 4.737-1 1.406-.689 2.53-1.74 3.426-3.018.258-.36.157-.719-.074-.922-.23-.207-1.64-1.101-1.868-1.254-.512-.308-.973-.207-1.31.254-.331.46-1.996 2.408-4.91 2.408-2.615 0-5.225-1.435-5.225-4.147 0-2.739 2.61-4.15 5.224-4.15 1.767 0 3.556.563 4.632 1.946.257.332.82.308 1.202.078.383-.23 1.513-.973 1.744-1.152.41-.36.433-.715.18-1.025-1.795-2.328-4.765-3.38-7.758-3.38zm-55.375.028c-4.838 0-9.294 2.74-9.294 7.655 0 2.2.9 4.068 2.666 5.53 1.766 1.457 3.994 2.149 6.628 2.176 4.842 0 9.32-2.79 9.32-7.706 0-4.943-4.478-7.655-9.32-7.655zm75.187 0c-4.837 0-9.293 2.74-9.293 7.655 0 2.2.895 4.068 2.662 5.53 1.767 1.457 3.993 2.149 6.631 2.176 4.838 0 9.32-2.79 9.32-7.706 0-4.943-4.482-7.655-9.32-7.655zm-64.586.304c-.82 0-1.129.669-.899 1.079 1.13 2.099 4.123 7.476 7.222 13.08.101.18.46.46.816.46h1.36a.956.956 0 0 0 .817-.46c2.841-5.48 6.683-12.415 7.043-13.03.202-.36-.028-1.1-.744-1.1h-2.56c-.308 0-.64.05-.82.46l-4.427 8.19-4.506-8.217c-.18-.333-.386-.46-.82-.46zm19.507.028c-.46 0-.87.383-.87.82v12.9c0 .438.41.82.87.82h13.49c.46 0 .871-.382.871-.82v-1.61c0-.437-.41-.82-.871-.82H59.854v-2.69h6.166c.461 0 .872-.382.872-.816v-1.613c0-.435-.41-.82-.87-.82h-6.168v-2.05h9.856c.46 0 .87-.382.87-.82v-1.66c0-.438-.41-.82-.87-.82zm-49.42.023H.87c-.46 0-.871.388-.871.82V88.38c0 .434.41.817.871.817h6.093c4.735 0 8.37-2.583 8.37-7.269 0-2.149-.766-3.942-2.33-5.326-1.465-1.293-3.355-1.96-5.591-1.997zm105.969 0c-.462 0-.872.388-.872.82v1.794c0 .435.41.818.87.818h4.94v10.315c0 .439.41.82.872.82h2.15c.46 0 .87-.381.87-.82V78.037h4.917c.46 0 .871-.383.871-.818v-1.793c0-.433-.41-.82-.871-.82zm-86.657 3.127c2.665 0 5.353 1.356 5.353 4.146 0 1.204-.46 2.176-1.434 2.942-.973.793-2.255 1.204-3.92 1.204-2.66 0-5.321-1.329-5.321-4.146 0-2.818 2.66-4.146 5.322-4.146zm75.187 0c2.661 0 5.35 1.356 5.35 4.146 0 1.204-.457 2.176-1.43 2.942-.974.793-2.255 1.204-3.92 1.204-2.66 0-5.322-1.329-5.322-4.146 0-2.818 2.661-4.146 5.322-4.146zm-98.02.383h3.099c2.48 0 4.376 1.355 4.376 3.786 0 2.536-1.793 3.763-4.376 3.763H3.892Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#f60" d="M94.92 53.4A10.603 10.6 0 0 0 84.316 64 10.603 10.6 0 0 0 94.92 74.6 10.603 10.6 0 0 0 105.523 64 10.603 10.6 0 0 0 94.92 53.4zm0 3.473A7.129 7.126 0 0 1 102.049 64a7.129 7.126 0 0 1-7.13 7.127A7.129 7.126 0 0 1 87.792 64a7.129 7.126 0 0 1 7.129-7.127zM61.027 74.6h3.452L52.464 53.45 40.449 74.6h3.452l8.564-15.063zm7.717-21.2v21.2h13.543v-3.37H72.113V53.4zm-45.082 0h-3.451l9.719 17.11v4.09h3.369v-4.094L43.018 53.4h-3.452l-7.95 13.987zM128 74.6v-5.778h-3.26v2.565h-5.133c-4.2 0-7.582-3.248-7.582-7.283v-.208c0-4.035 3.383-7.285 7.582-7.285H128v-3.21h-8.004c-6.205 0-11.2 4.413-11.2 9.898v1.4c0 5.485 4.995 9.9 11.2 9.9zM0 53.4v5.778h3.26v-2.565h5.133c4.2 0 7.582 3.248 7.582 7.283v.208c0 4.035-3.383 7.285-7.582 7.285H0v3.21h8.004c6.205 0 11.2-4.413 11.2-9.898v-1.4c0-5.485-4.995-9.9-11.2-9.9z"/></svg>

After

Width:  |  Height:  |  Size: 909 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#f60" d="M6.026 0v34.883h19.682V19.4H56.7c25.359 0 45.78 19.613 45.78 43.976v1.25c0 24.363-20.421 43.987-45.78 43.987H6.026V128l48.327-.001c37.465-.001 67.62-26.65 67.62-59.765v-8.456C121.974 26.663 91.819 0 54.354 0z"/></svg>

After

Width:  |  Height:  |  Size: 322 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M13.635 109.144c-5.325 0-9.611 3.897-9.611 9.352a9.352 9.352 0 0 0 9.548 9.418c3.247 0 7.144-1.623 8.832-5.39a11.3 11.3 0 0 0 .78-4.612H12.207v2.988h6.819a5.196 5.196 0 0 1-1.883 2.729 6.235 6.235 0 0 1-3.637 1.103c-2.857 0-5.846-2.144-5.846-6.236a5.91 5.91 0 0 1 5.846-6.17 5.26 5.26 0 0 1 3.506 1.234 6.04 6.04 0 0 1 1.365 1.494h4.092c-1.17-3.312-4.742-5.91-8.834-5.91zm12.21.326v2.856h3.182v-2.856zm7.468 0v4.676H31.04v2.467h2.272v10.977h3.183v-10.977h2.338v-2.467h-2.338v-4.676zm8.119 0v18.12h3.7v-8.12l6.042 8.12h4.416l-7.209-9.094 6.56-9.026H51.11l-5.977 8.377v-8.377zm41.435 0v18.12h3.182v-6.69l4.871 6.69h3.637l-5.586-7.534 5.586-5.91h-3.832l-4.676 5.13v-9.806zm-18.77 4.286a3.832 3.832 0 0 0-3.702 2.142v-1.752h-3.051v13.444h3.182v-7.274c0-2.273 1.168-3.379 3.44-3.379h.132zm7.534 0c-3.767 0-6.82 3.248-6.82 7.08s2.533 7.142 6.82 7.142a5.066 5.066 0 0 0 4.547-2.338v1.95h3.182v-13.444h-3.182v1.947a5.066 5.066 0 0 0-4.547-2.337zm30.07 0a6.82 6.82 0 0 0-4.937 2.209 7.079 7.079 0 0 0 .39 10.066 7.014 7.014 0 0 0 10.002-.26 6.69 6.69 0 0 0 1.819-3.637 7.728 7.728 0 0 0-.586-4.287l-2.272 2.405a3.507 3.507 0 0 1-.91 3.57 3.767 3.767 0 0 1-5.13.584l7.468-7.922a7.404 7.404 0 0 0-5.844-2.728zm17.08 0c-2.403-.065-3.57 1.105-4.156 2.209v-1.819h-2.988v13.444h3.183v-7.405c0-1.884.778-3.441 3.051-3.441s2.924 1.558 2.924 3.572v7.274h3.182v-8.12c0-2.338-.78-5.714-5.196-5.714zm-92.935.39v13.444h3.181v-13.444zm75.576 2.389a3.637 3.637 0 0 1 2.162.598l-5.26 5.521a3.572 3.572 0 0 1 .455-4.807 3.637 3.637 0 0 1 2.643-1.312zm-29.336.209a3.897 3.897 0 0 1 3.701 2.338 3.767 3.767 0 0 1 .39 1.883 4.806 4.806 0 0 1-.519 1.882 3.702 3.702 0 0 1-3.572 2.145 4.027 4.027 0 0 1-4.092-4.092 4.027 4.027 0 0 1 4.092-4.156z" /><path fill="#179287" d="M119.3 23.288a2.338 2.338 0 0 0-4.545.844 1.624 1.624 0 0 0 .13.78 53.644 53.644 0 0 1 3.442 19.159 54.424 54.424 0 0 1-47.215 53.904V72.58a39.097 39.097 0 0 0 4.74-1.234V92.65A50.007 50.007 0 0 0 88.195.298a2.403 2.403 0 0 0-3.313 1.039 2.923 2.923 0 0 0-.194 1.039 2.338 2.338 0 0 0 1.169 2.078 45.266 45.266 0 0 1-5.262 81.766v-18.9a7.274 7.274 0 0 0 5.066-6.883 7.144 7.144 0 0 0-3.572-6.3c1.688-16.301 9.157-12.015 9.157-17.21v-2.988C91.245 26.08 73.19.752 64.748.103h-1.56C54.746.753 36.69 26.08 36.69 33.939v2.988c0 5.195 7.47.909 9.158 17.21a7.274 7.274 0 0 0 1.558 13.184V86.22a45.266 45.266 0 0 1-5.325-81.766 2.338 2.338 0 0 0 .974-3.117 2.273 2.273 0 0 0-2.143-1.3 2.143 2.143 0 0 0-1.104.26 50.007 50.007 0 0 0 12.34 92.352V71.347a39.097 39.097 0 0 0 4.74 1.234v25.394A54.424 54.424 0 0 1 9.609 44.07a55.073 55.073 0 0 1 3.443-19.16 2.338 2.338 0 0 0-1.234-2.987 2.598 2.598 0 0 0-.975-.194 2.403 2.403 0 0 0-2.208 1.558 59.1 59.1 0 0 0 52.93 79.817V73.23h4.806v29.874a59.035 59.035 0 0 0 56.697-59.034 57.866 57.866 0 0 0-3.767-20.783zM74.88 56.995a4.87 4.87 0 1 1 6.884 6.884 4.87 4.87 0 1 1-6.884-6.884zm-21.822 6.884a4.806 4.806 0 0 1-6.82 0 4.87 4.87 0 0 1 0-6.884 4.806 4.806 0 0 1 6.82 0 4.87 4.87 0 0 1 0 6.884z" /></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#179287" d="M123.92 33.219a2.532 2.532 0 0 0-4.923.914 1.758 1.758 0 0 0 .141.844 58.091 58.091 0 0 1 3.727 20.747 58.935 58.935 0 0 1-51.128 58.372V86.598a42.338 42.338 0 0 0 5.134-1.336v23.067A54.153 54.153 0 0 0 90.233 8.322a2.602 2.602 0 0 0-3.587 1.126 3.165 3.165 0 0 0-.21 1.125 2.532 2.532 0 0 0 1.265 2.25 49.019 49.019 0 0 1-5.696 88.544V80.9a7.877 7.877 0 0 0 5.485-7.454 7.736 7.736 0 0 0-3.868-6.822c1.829-17.653 9.917-13.011 9.917-18.637v-3.235c0-8.51-19.552-35.938-28.694-36.642h-1.688c-9.143.704-28.694 28.132-28.694 36.642v3.235c0 5.626 8.088.984 9.916 18.637A7.877 7.877 0 0 0 46.067 80.9v20.466A49.019 49.019 0 0 1 40.3 12.823a2.532 2.532 0 0 0 1.055-3.375 2.461 2.461 0 0 0-2.32-1.407 2.32 2.32 0 0 0-1.196.281A54.153 54.153 0 0 0 51.2 108.33V85.262a42.338 42.338 0 0 0 5.134 1.336v27.498a58.935 58.935 0 0 1-51.2-58.372 59.638 59.638 0 0 1 3.728-20.747 2.532 2.532 0 0 0-1.336-3.235 2.813 2.813 0 0 0-1.055-.211 2.602 2.602 0 0 0-2.391 1.688 63.999 63.999 0 0 0 57.317 86.433v-32.35h5.205v32.35a63.928 63.928 0 0 0 61.396-63.928 62.663 62.663 0 0 0-4.079-22.505zm-48.104 36.5a5.275 5.275 0 1 1 7.455 7.455 5.275 5.275 0 1 1-7.455-7.455zm-23.63 7.455a5.204 5.204 0 0 1-7.385 0 5.275 5.275 0 0 1 0-7.455 5.204 5.204 0 0 1 7.384 0 5.275 5.275 0 0 1 0 7.455z" /></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#179287" d="M86.951.001a2.403 2.403 0 0 0-2.07 1.336 2.923 2.923 0 0 0-.195 1.04 2.338 2.338 0 0 0 1.17 2.075 45.266 45.266 0 0 1-5.262 81.768v-18.9a7.274 7.274 0 0 0 5.066-6.883 7.144 7.144 0 0 0-3.572-6.3c1.688-16.302 9.156-12.015 9.156-17.21V33.94C91.244 26.08 73.19.752 64.748.103h-1.56c-8.442.65-26.496 25.978-26.496 33.836v2.988c0 5.195 7.468.908 9.156 17.21a7.274 7.274 0 0 0 1.558 13.183v18.9a45.266 45.266 0 0 1-5.324-81.768 2.338 2.338 0 0 0 .973-3.115 2.273 2.273 0 0 0-2.143-1.3 2.143 2.143 0 0 0-1.103.261 50.007 50.007 0 0 0 12.34 92.35V71.347a39.097 39.097 0 0 0 4.74 1.232v25.395A54.424 54.424 0 0 1 9.609 44.07a55.073 55.073 0 0 1 3.442-19.16 2.338 2.338 0 0 0-1.233-2.987 2.598 2.598 0 0 0-.976-.195 2.403 2.403 0 0 0-2.207 1.558 59.1 59.1 0 0 0 52.93 79.817V73.23h4.806v29.875a59.035 59.035 0 0 0 56.697-59.035 57.866 57.866 0 0 0-3.767-20.784 2.338 2.338 0 0 0-4.547.846 1.624 1.624 0 0 0 .13.78 53.644 53.644 0 0 1 3.442 19.158 54.424 54.424 0 0 1-47.215 53.904V72.579a39.097 39.097 0 0 0 4.74-1.234V92.65A50.007 50.007 0 0 0 88.194.298a2.403 2.403 0 0 0-1.242-.297Zm-8.043 55.485a4.87 4.87 0 0 1 2.854 8.392 4.87 4.87 0 1 1-6.883-6.885 4.87 4.87 0 0 1 4.03-1.507zm-29.261.09a4.806 4.806 0 0 1 3.41 1.417 4.87 4.87 0 0 1 0 6.885 4.806 4.806 0 0 1-6.819 0 4.87 4.87 0 0 1 0-6.885 4.806 4.806 0 0 1 3.409-1.417zm-36.012 53.568c-5.325 0-9.611 3.896-9.611 9.351a9.352 9.352 0 0 0 9.548 9.418c3.247 0 7.144-1.622 8.832-5.39a11.3 11.3 0 0 0 .78-4.612H12.207v2.989h6.819a5.196 5.196 0 0 1-1.883 2.728 6.235 6.235 0 0 1-3.637 1.104c-2.857 0-5.846-2.145-5.846-6.237a5.91 5.91 0 0 1 5.846-6.17 5.26 5.26 0 0 1 3.506 1.235 6.04 6.04 0 0 1 1.365 1.494h4.092c-1.17-3.312-4.742-5.91-8.834-5.91zm12.21.326v2.856h3.182v-2.856zm7.468 0v4.676H31.04v2.467h2.272v10.976h3.183v-10.976h2.338v-2.467h-2.338v-4.676zm8.119 0v18.12h3.7v-8.12l6.042 8.12h4.416l-7.209-9.095 6.56-9.025H51.11l-5.977 8.377v-8.377zm41.435 0v18.12h3.182v-6.69l4.871 6.69h3.637l-5.586-7.534 5.586-5.91h-3.832l-4.676 5.129v-9.805zm-18.77 4.285a3.832 3.832 0 0 0-3.702 2.143v-1.752h-3.051v13.443h3.182v-7.273c0-2.273 1.168-3.38 3.44-3.38h.132zm7.534 0c-3.767 0-6.82 3.248-6.82 7.08s2.533 7.143 6.82 7.143a5.066 5.066 0 0 0 4.547-2.338v1.95h3.182v-13.444h-3.182v1.947a5.066 5.066 0 0 0-4.547-2.338zm30.07 0a6.82 6.82 0 0 0-4.937 2.21 7.079 7.079 0 0 0 .39 10.066 7.014 7.014 0 0 0 10.002-.26 6.69 6.69 0 0 0 1.819-3.637 7.728 7.728 0 0 0-.586-4.287l-2.272 2.404a3.507 3.507 0 0 1-.91 3.57 3.767 3.767 0 0 1-5.13.585l7.468-7.922a7.404 7.404 0 0 0-5.844-2.729zm17.08 0c-2.403-.065-3.57 1.105-4.156 2.21v-1.82h-2.988v13.444h3.183v-7.404c0-1.884.778-3.442 3.051-3.442s2.924 1.559 2.924 3.573v7.273h3.182v-8.119c0-2.338-.78-5.715-5.196-5.715zm-92.935.39v13.444h3.181v-13.443zm75.576 2.39a3.637 3.637 0 0 1 2.162.597l-5.26 5.522a3.572 3.572 0 0 1 .455-4.807 3.637 3.637 0 0 1 2.643-1.312zm-29.336.208a3.897 3.897 0 0 1 3.701 2.338 3.767 3.767 0 0 1 .39 1.883 4.806 4.806 0 0 1-.519 1.883 3.702 3.702 0 0 1-3.572 2.145 4.027 4.027 0 0 1-4.092-4.092 4.027 4.027 0 0 1 4.092-4.157z" /></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffaff3" d="M50.417 7.19c1.816-5.147 8.57-6.338 12.038-2.122L80.63 27.166a12.189 12.189 0 0 0 9.118 4.44l28.629.697c5.466.133 8.676 6.177 5.735 10.771L108.68 67.177a12.165 12.165 0 0 0-1.415 10.04l8.172 27.411c1.557 5.223-3.2 10.155-8.493 8.78l-27.713-7.2a12.194 12.194 0 0 0-9.989 1.76l-23.578 16.245c-4.504 3.103-10.66.096-10.984-5.345l-1.696-28.554a12.169 12.169 0 0 0-4.763-8.95L5.477 63.993c-4.335-3.31-3.385-10.088 1.706-12.082l26.664-10.447a12.188 12.188 0 0 0 7.048-7.29z"/><path fill="#151515" d="M55.39.154c-3.23.57-6.183 2.715-7.405 6.178l-9.523 26.981a9.598 9.598 0 0 1-5.553 5.744L6.243 49.504c-6.842 2.68-8.165 12.092-2.332 16.547l22.744 17.37a9.571 9.571 0 0 1 3.75 7.047l1.696 28.553c.435 7.325 8.98 11.493 15.034 7.322l23.58-16.245v-.001a9.604 9.604 0 0 1 7.87-1.387l27.714 7.199c7.116 1.849 13.72-4.99 11.623-12.023l-8.17-27.41a9.578 9.578 0 0 1 1.114-7.905l15.432-24.105c3.957-6.181-.504-14.572-7.85-14.751l-28.63-.696a9.595 9.595 0 0 1-7.183-3.497L64.46 3.425C62.127.589 58.619-.417 55.389.153m.869 4.932c1.468-.26 3.07.248 4.206 1.627L78.639 28.81a14.78 14.78 0 0 0 11.052 5.383l28.63.695c3.585.088 5.544 3.783 3.618 6.79L106.508 65.78a14.761 14.761 0 0 0-1.716 12.172l8.171 27.41c1.018 3.415-1.892 6.44-5.363 5.538l-27.714-7.2a14.787 14.787 0 0 0-12.108 2.136l-23.58 16.245c-2.954 2.035-6.722.187-6.933-3.368L35.57 90.16a14.762 14.762 0 0 0-5.775-10.852L7.051 61.939c-2.837-2.167-2.26-6.31 1.078-7.619l26.666-10.447a14.782 14.782 0 0 0 8.545-8.84l9.523-26.98c.594-1.685 1.927-2.71 3.395-2.968"/><path fill="#151515" d="M47.093 72.832a5.082 5.082 0 1 0-1.766-10.01 5.082 5.082 0 0 0 1.766 10.01zm40.945-7.22a5.081 5.081 0 1 0-1.764-10.008 5.081 5.081 0 0 0 1.764 10.008zM63.356 71.7a2.594 2.594 0 0 0-1.434 1.365 2.59 2.59 0 0 0-.048 1.98 6.734 6.734 0 0 0 3.562 3.737h.001c.81.358 1.681.554 2.566.575h.002a6.755 6.755 0 0 0 2.591-.451h.001a6.735 6.735 0 0 0 2.222-1.409h.001a6.74 6.74 0 0 0 2.089-4.722 2.588 2.588 0 0 0-4.952-1.106c-.137.31-.212.645-.22.985a1.55 1.55 0 0 1-.134.595v.002a1.578 1.578 0 0 1-.87.828 1.572 1.572 0 0 1-1.201-.03h-.002a1.573 1.573 0 0 1-.5-.35v-.001a1.568 1.568 0 0 1-.329-.518 2.585 2.585 0 0 0-3.345-1.48z"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffaff3" d="M56.61.014c-.41.021-.818.067-1.221.138v.002c-3.23.57-6.182 2.714-7.405 6.178l-9.523 26.98a9.599 9.599 0 0 1-5.553 5.745L6.244 49.504C-.598 52.184-1.923 61.596 3.91 66.05l22.746 17.37a9.582 9.582 0 0 1 3.75 7.047l1.696 28.553c.434 7.326 8.978 11.493 15.033 7.323v-.002l23.58-16.244a9.602 9.602 0 0 1 7.87-1.389l27.714 7.2c7.116 1.848 13.72-4.99 11.623-12.022l-8.17-27.412a9.579 9.579 0 0 1 1.113-7.905l15.432-24.103c3.958-6.182-.503-14.573-7.85-14.752l-28.63-.695a9.596 9.596 0 0 1-7.182-3.499L64.459 3.426C62.418.944 59.477-.137 56.609.014zm30.435 55.513a5.082 5.082 0 1 1 .222 10.161 5.082 5.082 0 0 1-.222-10.16zM46.1 62.747a5.083 5.083 0 0 1 .992 10.085 5.082 5.082 0 1 1-.992-10.086zm26.283 7.382a2.59 2.59 0 0 1 1.812.799 2.59 2.59 0 0 1 .713 1.847 6.723 6.723 0 0 1-2.088 4.721h-.002a6.733 6.733 0 0 1-2.22 1.41h-.002a6.75 6.75 0 0 1-2.59.451h-.002a6.74 6.74 0 0 1-2.567-.576h-.001a6.758 6.758 0 0 1-3.563-3.736 2.594 2.594 0 0 1 .63-2.805 2.59 2.59 0 0 1 1.847-.715 2.595 2.595 0 0 1 2.35 1.655c.075.192.186.368.328.517v.002c.143.149.312.266.5.35v.002h.002a1.576 1.576 0 0 0 1.201.03l.002-.003a1.552 1.552 0 0 0 .868-.828h.002v-.002c.083-.188.127-.389.132-.594a2.593 2.593 0 0 1 1.653-2.353c.317-.122.654-.18.994-.172z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128"><defs><radialGradient id="b" cx="0" cy="0" r="1" gradientTransform="matrix(-98.55944 137.6004 -152.84948 -109.48194 126.528 1.92)" gradientUnits="userSpaceOnUse"><stop stop-color="#00D196" stop-opacity=".5"/><stop offset=".997" stop-color="#00D196" stop-opacity="0"/></radialGradient><radialGradient id="d" cx="0" cy="0" r="1" gradientTransform="matrix(-92.15276 33.57 -20.47767 -56.21308 100.15 53.512)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></radialGradient><linearGradient id="a" x1="411.893" x2="411.893" y1="212" y2="612" gradientUnits="userSpaceOnUse"><stop stop-color="#00D196"/><stop offset="1" stop-color="#00B381"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="411.893" x2="411.893" y1="212" y2="612" gradientTransform="scale(.15534)" gradientUnits="userSpaceOnUse"/></defs><rect width="128" height="128" fill="#08110f" rx="28.583"/><rect width="128" height="128" fill="url(#b)" fill-opacity=".5" rx="28.583"/><path fill="url(#c)" d="M63.752 32.934a34.436 34.436 0 0 0-22.236 8.34c-9.06-1.565-19.78-1.576-23.12 5.925-3.745 8.411 5.438 18.094 18.747 26.512 1.884 8.139 7.43 15.329 15.625 18.977 8.195 3.648 17.253 2.959 24.556-1.084 15.162 4.256 28.501 4.601 32.246-3.811 3.34-7.5-3.841-15.461-11.066-21.148a34.411 34.411 0 0 0-20.469-30.711 34.537 34.537 0 0 0-14.283-3zm.842 6.996c3.638.075 7.246.875 10.607 2.37 1.288.574 2.539 1.492 2.399 2.393-.111.583-.436 1.266-2.893 1.274-5.22.24-7.697 1.937-8.826 4.47-1.128 2.535-.082 5.723 2.601 6.918 9.862 4.391 17.423 8.74 22.942 12.684 7.096 5.038 13.29 11.539 11.785 14.922-1.82 4.086-16.978 4.585-43.738-7.328C32.71 65.718 22.938 54.118 24.758 50.03h.002c1.505-3.382 10.477-3.128 18.969-1.226 5.431-5.72 12.366-8.612 19.304-8.864.52-.018 1.041-.022 1.56-.011zM42.447 54.313c-1.457-.026-2.777.562-3.492 1.707-1.205 1.927-.236 4.707 2.164 6.207 2.4 1.499 5.322 1.15 6.526-.778 1.204-1.928.235-4.705-2.165-6.205-.975-.61-2.036-.914-3.033-.931zm19.725 11.226c-1.751-.013-3.3.794-3.94 2.229-.93 2.088.422 4.718 3.02 5.875 2.597 1.156 5.457.4 6.387-1.688.93-2.088-.424-4.717-3.022-5.873a6.143 6.143 0 0 0-2.445-.543zm21.53 7.262c-2.046.014-3.808 1.084-4.298 2.79-.626 2.186 1.07 4.588 3.79 5.368 2.72.78 5.433-.36 6.06-2.545.627-2.185-1.07-4.588-3.79-5.367a6.254 6.254 0 0 0-1.763-.246z"/><path fill="url(#d)" d="M63.752 32.934a34.436 34.436 0 0 0-22.236 8.34c-9.06-1.565-19.78-1.576-23.12 5.925-3.745 8.411 5.438 18.094 18.747 26.512 1.884 8.139 7.43 15.329 15.625 18.977 8.195 3.648 17.253 2.959 24.556-1.084 15.162 4.256 28.501 4.601 32.246-3.811 3.34-7.5-3.841-15.461-11.066-21.148a34.411 34.411 0 0 0-20.469-30.711 34.537 34.537 0 0 0-14.283-3zm.842 6.996c3.638.075 7.246.875 10.607 2.37 1.288.574 2.539 1.492 2.399 2.393-.111.583-.436 1.266-2.893 1.274-5.22.24-7.697 1.937-8.826 4.47-1.128 2.535-.082 5.723 2.601 6.918 9.862 4.391 17.423 8.74 22.942 12.684 7.096 5.038 13.29 11.539 11.785 14.922-1.82 4.086-16.978 4.585-43.738-7.328C32.71 65.718 22.938 54.118 24.758 50.03h.002c1.505-3.382 10.477-3.128 18.969-1.226 5.431-5.72 12.366-8.612 19.304-8.864.52-.018 1.041-.022 1.56-.011zM42.447 54.313c-1.457-.026-2.777.562-3.492 1.707-1.205 1.927-.236 4.707 2.164 6.207 2.4 1.499 5.322 1.15 6.526-.778 1.204-1.928.235-4.705-2.165-6.205-.975-.61-2.036-.914-3.033-.931zm19.725 11.226c-1.751-.013-3.3.794-3.94 2.229-.93 2.088.422 4.718 3.02 5.875 2.597 1.156 5.457.4 6.387-1.688.93-2.088-.424-4.717-3.022-5.873a6.143 6.143 0 0 0-2.445-.543zm21.53 7.262c-2.046.014-3.808 1.084-4.298 2.79-.626 2.186 1.07 4.588 3.79 5.368 2.72.78 5.433-.36 6.06-2.545.627-2.185-1.07-4.588-3.79-5.367a6.254 6.254 0 0 0-1.763-.246z" style="mix-blend-mode:soft-light"/></svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#00d196" d="M63.682 21.176c-11.063.07-21.94 4.019-30.65 11.498-12.49-2.157-27.267-2.171-31.87 8.168C-4 52.437 8.656 65.782 27 77.387c2.597 11.218 10.243 21.129 21.54 26.158 11.295 5.03 23.784 4.075 33.85-1.498 20.9 5.867 39.285 6.345 44.448-5.25 4.603-10.34-5.294-21.312-15.254-29.15-.433-18.365-11.295-34.801-28.215-42.335a47.604 47.604 0 0 0-19.687-4.136zm-.99 9.662a37.868 37.868 0 0 1 16.77 3.252c1.777.79 3.5 2.057 3.308 3.299-.155.805-.6 1.743-3.987 1.754-7.195.332-10.612 2.668-12.168 6.162-1.555 3.493-.111 7.89 3.588 9.537 13.593 6.052 24.014 12.045 31.621 17.482 9.78 6.944 18.32 15.906 16.244 20.569-2.508 5.633-23.402 6.319-60.289-10.104C20.893 66.366 7.424 50.38 9.932 44.746c2.075-4.662 14.443-4.313 26.148-1.691 7.488-7.884 17.048-11.87 26.611-12.217zM34 50.648c-1.882.051-3.564.857-4.498 2.352-1.66 2.658-.327 6.488 2.98 8.555 3.308 2.067 7.336 1.587 8.997-1.07 1.66-2.658.324-6.488-2.983-8.555-1.447-.905-3.032-1.321-4.496-1.282zm27.504 15.475c-2.414-.017-4.553 1.092-5.434 3.07-1.281 2.878.583 6.504 4.164 8.098 3.581 1.594 7.524.554 8.805-2.324 1.281-2.878-.583-6.504-4.164-8.098a8.467 8.467 0 0 0-3.371-.746zM91.52 76.135c-2.962-.102-5.562 1.394-6.264 3.842-.864 3.012 1.475 6.325 5.224 7.4 3.75 1.075 7.49-.496 8.354-3.508.864-3.012-1.476-6.326-5.225-7.4a8.674 8.674 0 0 0-2.09-.334z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill-rule="evenodd" clip-rule="evenodd" fill="#FAA625" d="M1 1v125.792c1 .082.99.235 1.359.235 36.269.011 72.665.011 108.934.011 4.994 0 9.859.004 14.854-.011.328-.001.854-.153.854-.235L127 1H1zm114 62.914v48.551c0 1.688-.253 1.535-1.88 1.535H15.771c-1.627 0-1.771.154-1.771-1.534V15.24c0-1.689.144-2.24 1.894-2.24h97.103c1.751 0 2.003.551 2.003 2.363v48.551zM64.414 40.368c-.214-.662-.612-.696-1.193-.693-3.114.019-6.229.069-9.341 0-.984-.021-1.411.274-1.715 1.233-4.385 13.785-8.817 27.561-13.233 41.336-.72 2.246-1.417 4.501-2.185 6.939 2.911 0 5.571-.04 8.229.026.903.022 1.279-.275 1.525-1.126 1.138-3.924 2.37-7.821 3.497-11.748.265-.926.694-1.176 1.625-1.165 4.424.052 8.85.052 13.274 0 .861-.01 1.211.268 1.455 1.062 1.213 3.949 2.502 7.874 3.714 11.823.251.816.566 1.13 1.507 1.062a54.147 54.147 0 013.93-.117h4.592l-.021-.331c-5.222-16.107-10.451-32.19-15.66-48.301zM52.001 68c2.037-7 4.059-13.848 6.051-20.644C60.105 54.128 62.193 61 64.312 68H52.001zM82 89h10V53H82v36zm5.071-50.445c-2.963.003-5.151 2.107-5.131 4.936.02 2.837 2.122 4.857 5.057 4.862 3.051.004 5.208-2.015 5.187-4.856-.022-2.91-2.127-4.945-5.113-4.942z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" viewBox="0 0 128 128"><path fill="#300" d="M105.33 3.6A20.69 20.69 0 0 1 126 24.27v79.46a20.69 20.69 0 0 1-20.67 20.67H22.67A20.69 20.69 0 0 1 2 103.73V24.27A20.69 20.69 0 0 1 22.67 3.6h82.66M82.11 35.89a8.83 8.83 0 0 0 2.34 6.26l.09.09a8.54 8.54 0 0 0 5.94 2.43H91a8.24 8.24 0 0 0 6-2.48 8.75 8.75 0 0 0 2.43-6.3 8.72 8.72 0 0 0-2.32-6.13 8.36 8.36 0 0 0-6.3-2.48 8.81 8.81 0 0 0-6.13 2.42 8.31 8.31 0 0 0-2.53 6.19M42.37 34a15.74 15.74 0 0 1-.26 2.85c-.14.43-.26.83-.37 1.22l-.12.43-17.16 49.43a1.09 1.09 0 0 0-.05.17 2.76 2.76 0 0 0 .4 2.48 2.61 2.61 0 0 0 2.12 1h10.13a2.92 2.92 0 0 0 2.84-2.2l3.58-11.08h17l3.9 11.31a2.81 2.81 0 0 0 2.66 2h11.2a2.56 2.56 0 0 0 2.1-1 2.66 2.66 0 0 0 .36-2.41s0-.1 0-.14L61.22 33.18a2.56 2.56 0 0 0-2.61-1.85H44.8a2.58 2.58 0 0 0-.39 0 2.54 2.54 0 0 0-2 2.67m43.08 57.81H96A2.65 2.65 0 0 0 98.64 89V47.89A2.62 2.62 0 0 0 96 45.15H85.39a2.6 2.6 0 0 0-2.7 2.74V89a2.73 2.73 0 0 0 2.8 2.85M51.87 50.56c.2.66.43 1.37.68 2.16s.52 1.63.77 2.43l.76 2.44c.55 1.81 1 3.33 1.47 4.66l.4 1.19h-8c.52-1.6 1-3.24 1.46-4.9s1-3.29 1.53-4.91c.31-1 .62-2 .91-2.93v-.14m53.46-49H22.67A22.64 22.64 0 0 0 0 24.27v79.46a22.64 22.64 0 0 0 22.67 22.67h82.66A22.64 22.64 0 0 0 128 103.73V24.27A22.64 22.64 0 0 0 105.33 1.6ZM90.48 42.67a6.61 6.61 0 0 1-4.56-1.87 6.87 6.87 0 0 1-1.81-4.91A6.23 6.23 0 0 1 86 31.15a6.8 6.8 0 0 1 4.74-1.87 6.4 6.4 0 0 1 4.86 1.87 6.75 6.75 0 0 1 1.76 4.74 6.76 6.76 0 0 1-1.87 4.91A6.27 6.27 0 0 1 91 42.68h-.55ZM26.93 89.55c-.58 0-.74-.32-.58-1l17.17-49.4c.16-.54.32-1.12.53-1.76a18.14 18.14 0 0 0 .32-3.47.54.54 0 0 1 .43-.59h13.81c.43 0 .64.16.7.43l19.46 54.93c.16.59 0 .86-.53.86H67a.82.82 0 0 1-.76-.59l-4.37-12.69H42L38 88.8a.94.94 0 0 1-.91.75zm58.56.26a.75.75 0 0 1-.8-.85V47.89c0-.53.22-.74.7-.74H96c.48 0 .69.26.69.74V89c0 .59-.21.85-.69.85ZM51.84 43.2h-.11a64.65 64.65 0 0 1-1.81 6.88c-.8 2.56-1.6 5.23-2.45 7.89s-1.55 5.23-2.35 7.47h13.55c-.32-1.12-.75-2.45-1.23-3.84s-1-3-1.44-4.59-1-3.25-1.55-4.9-1-3.2-1.44-4.75-.8-2.88-1.17-4.16Z"/></svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#300" d="M22.7 1.6h82.7c12.5 0 22.7 10.1 22.7 22.7v79.5c0 12.5-10.1 22.7-22.7 22.7H22.7C10.1 126.4 0 116.3 0 103.7V24.3C0 11.7 10.1 1.6 22.7 1.6"/><path fill="#ff9a00" d="M61.9 76.3H42l-4 12.5c-.1.5-.5.8-1 .7H27c-.6 0-.7-.3-.6-1l17.2-49.4c.2-.5.3-1.1.5-1.8.2-1.1.3-2.3.3-3.5-.1-.3.2-.5.4-.6h13.8c.4 0 .6.2.7.4l19.5 54.9c.2.6 0 .9-.5.9H67.1c-.4.1-.7-.2-.9-.6zM45.1 65.4h13.5c-.3-1.1-.7-2.5-1.2-3.8-.5-1.4-1-3-1.4-4.6-.5-1.7-1-3.3-1.5-4.9-.5-1.7-1-3.2-1.4-4.7-.4-1.5-.8-2.9-1.2-4.2h-.1c-.5 2.3-1.1 4.6-1.8 6.9-.8 2.6-1.6 5.2-2.5 7.9-.8 2.7-1.6 5.2-2.4 7.4m45.6-22.7c-1.8.1-3.5-.6-4.7-1.9-1.2-1.3-1.9-3.1-1.8-4.9-.1-1.8.6-3.5 1.9-4.7 1.3-1.2 3-1.9 4.7-1.9 2.1 0 3.7.6 4.9 1.9 1.2 1.3 1.8 3 1.8 4.7.1 1.8-.6 3.6-1.9 4.9-1.3 1.3-3.1 2-4.9 1.9m-6 46.3V47.9c0-.5.2-.7.7-.7H96c.5 0 .7.3.7.7V89c0 .6-.2.9-.7.9H85.5c-.5-.1-.8-.4-.8-.9"/></svg>

After

Width:  |  Height:  |  Size: 929 B

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill-rule="evenodd" clip-rule="evenodd" fill="#FAA625" d="M47.955 69h15.371c-2.646-9-5.252-17.32-7.816-25.776C53.022 51.71 50.498 60 47.955 69zm76.157-68H2.873C.687 1 1 1.476 1 3.585v121.394C1 127.086.687 127 2.719 127h121.547c2.031 0 2.734.086 2.734-2.022V3.739C127 1.476 126.298 1 124.112 1zM77.298 96c-1.637 0-3.28-.133-4.909-.016-1.175.088-1.568-.406-1.881-1.426-1.514-4.931-3.123-9.86-4.638-14.79-.305-.992-.741-1.354-1.816-1.341-5.523.064-11.049.058-16.573-.007-1.163-.014-1.698.296-2.03 1.45-1.406 4.904-2.944 9.768-4.365 14.667-.308 1.062-.776 1.433-1.904 1.404-3.318-.083-6.641-.032-10.274-.032.959-3.045 1.829-5.861 2.729-8.665 5.514-17.2 11.047-34.4 16.521-51.611.382-1.198.913-1.567 2.143-1.54 3.886.086 7.775.022 11.663 0 .727-.005 1.223.038 1.489.864 6.505 20.116 13.033 40.356 19.555 60.47.028.091.01.573.025.573h-5.735zM98 96H86V51h12v45zm-6.35-51.071c-3.665-.005-6.289-2.528-6.314-6.07-.024-3.532 2.707-6.159 6.406-6.163 3.728-.004 6.355 2.537 6.384 6.171.026 3.545-2.667 6.068-6.476 6.062z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" viewBox="0 0 128 128"><path fill="#300" d="M105.33 1.6H22.67A22.64 22.64 0 0 0 0 24.27v79.46a22.64 22.64 0 0 0 22.67 22.67h82.66A22.64 22.64 0 0 0 128 103.73V24.27A22.64 22.64 0 0 0 105.33 1.6Zm-27.09 88H67.09a.82.82 0 0 1-.85-.59l-4.37-12.74H42L38 88.8a.93.93 0 0 1-1 .75H27c-.58 0-.74-.32-.58-1l17.1-49.4c.16-.54.32-1.12.53-1.76a18.14 18.14 0 0 0 .32-3.47.54.54 0 0 1 .43-.59h13.81c.43 0 .64.16.7.43l19.46 54.93c.16.59 0 .86-.53.86Zm18.4-.6c0 .59-.21.85-.69.85H85.49a.75.75 0 0 1-.8-.85V47.89c0-.53.22-.74.7-.74H96c.48 0 .69.26.69.74Zm-1.12-48.2a6.3 6.3 0 0 1-4.85 1.87 6.61 6.61 0 0 1-4.75-1.87 6.87 6.87 0 0 1-1.81-4.91A6.23 6.23 0 0 1 86 31.15a6.8 6.8 0 0 1 4.74-1.87 6.4 6.4 0 0 1 4.86 1.87 6.75 6.75 0 0 1 1.76 4.74 6.76 6.76 0 0 1-1.84 4.91ZM58.67 65.44H45.12c.8-2.24 1.6-4.75 2.35-7.47s1.65-5.33 2.45-7.89a64.65 64.65 0 0 0 1.81-6.88h.11c.37 1.28.75 2.67 1.17 4.16s.91 3.09 1.44 4.75 1 3.25 1.55 4.9 1 3.15 1.44 4.59.91 2.72 1.23 3.84Z"/></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1014 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#69b53f" d="M29.736 64a14.264 14.264 0 0 1-14.264 14.264A14.264 14.264 0 0 1 1.21 64a14.264 14.264 0 0 1 14.263-14.264A14.264 14.264 0 0 1 29.736 64" color="#000" style="-inkscape-stroke:none"/><path fill="#fff" d="M15.472 48.528C6.942 48.528 0 55.469 0 64s6.942 15.472 15.472 15.472c8.531 0 15.473-6.941 15.473-15.472s-6.942-15.472-15.473-15.472m0 2.417c7.225 0 13.055 5.83 13.055 13.055s-5.83 13.055-13.055 13.055A13.036 13.036 0 0 1 2.418 64c0-7.224 5.83-13.055 13.054-13.055" color="#000" style="-inkscape-stroke:none"/><path fill="#f8f8f8" d="M7.01 56.143v10.879c0 2.656 2.18 4.835 4.836 4.835h7.253c2.656 0 4.835-2.179 4.835-4.835v-6.044a3.645 3.645 0 0 0-3.627-3.626c-.929 0-1.772.367-2.417.95a3.6 3.6 0 0 0-2.418-.95 3.645 3.645 0 0 0-3.626 3.626v6.044h2.418v-6.044a1.19 1.19 0 0 1 1.208-1.209 1.19 1.19 0 0 1 1.21 1.21v6.043h2.417v-6.044a1.19 1.19 0 0 1 1.208-1.209 1.19 1.19 0 0 1 1.21 1.21v6.043a2.4 2.4 0 0 1-2.418 2.417h-7.253a2.4 2.4 0 0 1-2.418-2.417V56.143Z" color="#000" style="-inkscape-stroke:none"/><path fill="#fff" stroke="#fff" stroke-width=".319" d="m37.796 54.209-2.098.36v14.08q0 1.671.812 2.46.813.79 2.753.835l.293-1.76a7 7 0 0 1-.835-.158 1.36 1.36 0 0 1-.541-.316 1.2 1.2 0 0 1-.294-.541 3.4 3.4 0 0 1-.09-.858zm4.903.902q-.565 0-.97.384-.384.36-.384.993 0 .632.383 1.015.407.361.97.361.566 0 .948-.36.407-.384.407-1.016 0-.631-.407-.993a1.3 1.3 0 0 0-.947-.384zm61.18 0q-.565 0-.971.384-.384.36-.384.993 0 .632.384 1.015.405.361.97.361c.565 0 .692-.12.948-.36q.406-.384.406-1.016 0-.631-.406-.993a1.3 1.3 0 0 0-.948-.384zm19.04 1.241-2.098.362v10.47q0 1.172.18 2.075.204.88.678 1.49.474.608 1.24.924.79.294 1.986.294 1.016 0 1.805-.249.79-.225 1.106-.383l-.406-1.738q-.225.09-.813.316-.564.203-1.511.203-.542 0-.948-.135t-.677-.451q-.27-.339-.406-.903-.135-.587-.135-1.466v-5.416h4.445v-1.76h-4.445zM51.8 59.737q-1.558 0-2.753.203-1.197.203-1.918.384v11.394h2.098v-9.905a6 6 0 0 1 .948-.135 11 11 0 0 1 1.4-.09q.833 0 1.398.225.564.202.902.677.339.474.474 1.24.158.768.158 1.851v6.137h2.099V65.13q0-1.196-.226-2.189t-.79-1.692q-.54-.723-1.467-1.106-.924-.406-2.324-.406zm36.504 0q-1.557 0-2.753.203-1.173.203-1.895.384v11.394h2.098v-9.905a6 6 0 0 1 .948-.135 11 11 0 0 1 1.376-.09q.745 0 1.218.248.496.225.768.721.292.497.406 1.242.113.744.113 1.782v6.137h2.098V65.13q0-.767-.09-1.467a8 8 0 0 0-.271-1.286q.248-.225.925-.496.7-.294 1.76-.294.767 0 1.241.249.497.225.767.721.294.497.384 1.242.113.744.113 1.782v6.137h2.098V65.13q0-1.173-.18-2.166-.159-.993-.655-1.715-.474-.723-1.331-1.106-.858-.406-2.211-.406a5.2 5.2 0 0 0-1.309.158 7 7 0 0 0-1.106.338q-.496.18-.834.384-.34.202-.497.316a3.2 3.2 0 0 0-1.286-.88q-.767-.316-1.895-.316zm24.675 0q-1.557 0-2.753.203a27 27 0 0 0-1.918.384v11.394h2.099v-9.905a6 6 0 0 1 .948-.135 11 11 0 0 1 1.399-.09q.834 0 1.398.225.564.202.903.677.338.474.473 1.24.159.768.158 1.851v6.137h2.099V65.13q0-1.196-.226-2.189-.225-.993-.79-1.692-.541-.723-1.466-1.106-.926-.406-2.324-.406zm-71.317.248v11.733h2.098V59.985Zm17.92 0v6.589q0 1.196.249 2.189.248.969.812 1.692.564.722 1.489 1.128.925.384 2.279.384 1.557 0 2.73-.203a27 27 0 0 0 1.918-.384V59.985H66.96v9.906q-.112.045-.384.09-.248.023-.564.068-.315.023-.677.045-.36.022-.7.022-1.601 0-2.278-.925-.678-.925-.677-3.068v-6.138Zm11.522 0 3.88 5.573a95 95 0 0 0-2.188 3.047 29 29 0 0 0-1.873 3.113h2.166q.249-.473.61-1.082.36-.61.767-1.242.428-.654.88-1.286.45-.654.88-1.218.428.564.88 1.196.45.631.88 1.286.428.631.79 1.24.36.61.608 1.106h2.302a25.5 25.5 0 0 0-1.94-3.181 108 108 0 0 0-2.212-3.114l3.791-5.438H79.09l-2.82 4.107-2.798-4.107Zm31.737 0v11.733h2.099V59.985Z"/></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#fff" d="M128 64a64 64 0 0 1-64 64A64 64 0 0 1 0 64 64 64 0 0 1 64 0a64 64 0 0 1 64 64"/><path fill="#69b53f" d="M118 64a54 54 0 0 1-54 54 54 54 0 0 1-54-54 54 54 0 0 1 54-54 54 54 0 0 1 54 54"/><path fill="#f8f8f8" d="M29 31.5v45a20.06 20.06 0 0 0 20 20h30a20.06 20.06 0 0 0 20-20v-25c-.05-8.25-6.75-14.95-15-15-3.7 0-7.25 1.4-10 3.95-2.75-2.5-6.3-3.9-10-3.95-8.25.05-14.95 6.75-15 15v25h10v-25c0-2.75 2.25-5 5-5s5 2.25 5 5v25h10v-25c0-2.75 2.25-5 5-5s5 2.25 5 5v25c.05 5.5-4.4 9.95-9.85 10H49c-5.5.05-9.95-4.4-10-9.85V31.5z"/></svg>

After

Width:  |  Height:  |  Size: 609 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#69b53f" d="M15.473 48.527C6.942 48.527 0 55.47 0 64s6.942 15.473 15.473 15.473c8.53 0 15.472-6.942 15.472-15.473 0-8.53-6.942-15.473-15.472-15.473m22.324 5.682-2.1.361v14.08q0 1.67.813 2.46.812.788 2.754.833l.293-1.76a7 7 0 0 1-.836-.158 1.35 1.35 0 0 1-.541-.314 1.2 1.2 0 0 1-.293-.543 3.4 3.4 0 0 1-.09-.857zm4.902.902q-.565.001-.97.385-.384.36-.383.992 0 .632.383 1.016.406.36.97.361c.564.001.692-.12.947-.361q.407-.384.407-1.016 0-.63-.407-.992a1.3 1.3 0 0 0-.947-.385m61.18 0q-.564.001-.97.385-.386.36-.386.992.001.632.385 1.016.407.36.97.361.565 0 .948-.361.405-.384.406-1.016 0-.63-.406-.992a1.3 1.3 0 0 0-.947-.385M7.012 56.143h2.416V67.02a2.4 2.4 0 0 0 2.418 2.418H19.1a2.4 2.4 0 0 0 2.416-2.418v-6.04c0-.682-.527-1.21-1.21-1.21a1.19 1.19 0 0 0-1.206 1.21v6.042h-2.418V60.98c0-.682-.527-1.21-1.21-1.21-.681 0-1.208.528-1.208 1.21v6.042h-2.418V60.98a3.646 3.646 0 0 1 3.627-3.627 3.6 3.6 0 0 1 2.418.95 3.6 3.6 0 0 1 2.416-.95 3.646 3.646 0 0 1 3.627 3.627v6.042c0 2.657-2.178 4.836-4.834 4.836h-7.254c-2.656 0-4.834-2.18-4.834-4.836zm115.908.209-2.1.36v10.472q.001 1.173.182 2.076.202.879.676 1.488.474.61 1.242.926.789.293 1.984.293 1.016 0 1.807-.248.79-.226 1.105-.385l-.406-1.736q-.225.09-.812.316-.564.203-1.512.203a3 3 0 0 1-.947-.137 1.5 1.5 0 0 1-.678-.45q-.27-.339-.406-.903-.135-.587-.135-1.467v-5.414h4.445v-1.762h-4.445zm-71.121 3.384q-1.558 0-2.754.203t-1.918.385V71.72h2.1v-9.906q.112-.023.36-.067.271-.045.587-.068a10 10 0 0 1 1.398-.09q.837 0 1.4.224.565.204.903.678t.473 1.24q.158.768.158 1.852v6.137h2.1v-6.59a10 10 0 0 0-.227-2.19q-.225-.993-.79-1.693-.541-.722-1.466-1.105-.926-.407-2.324-.407zm36.504 0q-1.557 0-2.752.203-1.174.204-1.897.385V71.72h2.098v-9.906q.09-.023.361-.067.272-.045.588-.068a10 10 0 0 1 1.375-.09q.745 0 1.219.248.496.225.767.72.294.498.407 1.243.113.744.113 1.783v6.137h2.098v-6.59q0-.767-.09-1.467a8 8 0 0 0-.272-1.287q.25-.226.926-.496.7-.293 1.76-.293.767 0 1.242.248.495.225.766.72.293.498.384 1.243.113.744.112 1.783v6.137h2.1V65.13q-.001-1.174-.182-2.168-.159-.993-.655-1.715-.472-.722-1.33-1.105-.857-.407-2.21-.407a5.2 5.2 0 0 0-1.31.159q-.608.135-1.105.34-.496.18-.836.382-.337.204-.496.317a3.2 3.2 0 0 0-1.287-.881q-.766-.316-1.894-.317zm24.676 0q-1.558 0-2.754.203a27 27 0 0 0-1.918.385V71.72h2.1v-9.906q.11-.023.359-.067.27-.045.588-.068a10 10 0 0 1 1.398-.09q.835 0 1.398.224.564.204.903.678.338.474.474 1.24.159.768.159 1.852v6.137h2.097v-6.59q0-1.196-.224-2.19-.225-.993-.79-1.693-.541-.722-1.466-1.105-.926-.407-2.324-.407zm-71.319.248V71.72h2.1V59.984zm17.922 0v6.59q0 1.195.248 2.188.249.971.813 1.693.563.722 1.488 1.129.926.383 2.28.383 1.556 0 2.73-.203a27 27 0 0 0 1.918-.383V59.984h-2.1v9.907a2 2 0 0 1-.383.09q-.248.023-.564.068-.315.023-.676.045-.362.023-.701.023-1.601 0-2.278-.926-.676-.924-.677-3.068v-6.139zm11.522 0 3.88 5.575a95 95 0 0 0-2.19 3.046 29 29 0 0 0-1.872 3.114h2.166q.248-.474.61-1.084.36-.61.767-1.24.428-.655.879-1.288.451-.653.88-1.216.429.564.88 1.195t.88 1.285q.429.632.79 1.242.36.61.609 1.106h2.303a25.5 25.5 0 0 0-1.942-3.182 108 108 0 0 0-2.21-3.113l3.79-5.44H79.09l-2.82 4.108-2.797-4.108zm31.736 0V71.72h2.1V59.984z"/></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#69b53f" d="M64 0A64 64 0 0 0 0 64a64 64 0 0 0 64 64 64 64 0 0 0 64-64A64 64 0 0 0 64 0M29 31.5h10v45.15c.05 5.45 4.5 9.9 10 9.85h30.15c5.45-.05 9.9-4.5 9.85-10v-25c0-2.75-2.25-5-5-5s-5 2.25-5 5v25H69v-25c0-2.75-2.25-5-5-5s-5 2.25-5 5v25H49v-25c.05-8.25 6.75-14.95 15-15 3.7.05 7.25 1.45 10 3.95 2.75-2.55 6.3-3.95 10-3.95 8.25.05 14.95 6.75 15 15v25a20.06 20.06 0 0 1-20 20H49a20.06 20.06 0 0 1-20-20z"/></svg>

After

Width:  |  Height:  |  Size: 486 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M14.402 49.598C6.45 49.598 0 56.043 0 64c0 7.957 6.45 14.402 14.402 14.402 7.957 0 14.407-6.445 14.407-14.402 0-7.957-6.45-14.402-14.407-14.402Zm74.34 3.191a.357.357 0 0 0-.355.356v16.687c0 .195.16.356.355.356h2.172a.36.36 0 0 0 .356-.356v-1.148a5.889 5.889 0 0 0 4.261 1.828c3.387 0 6.125-2.914 6.125-6.512 0-3.598-2.738-6.512-6.125-6.512a5.915 5.915 0 0 0-4.261 1.828v-6.171a.36.36 0 0 0-.356-.356Zm-72.847 2.39a7.522 7.522 0 0 1 5.12 2.212c2.868 2.851 2.965 7.402.227 10.14-4.926 4.926-13.722 3.356-13.722 3.356s-1.59-8.782 3.351-13.723c1.371-1.371 3.188-2.027 5.024-1.984Zm25.94 2.31a4.158 4.158 0 0 0-3.355 1.714v-1.035a.357.357 0 0 0-.355-.355h-2.172a.357.357 0 0 0-.355.355v11.664c0 .195.16.356.355.356h2.172c.195 0 .355-.16.355-.356v-6.98c.083-1.559 1.168-2.805 2.497-2.805 1.375 0 2.527 1.148 2.527 2.656v7.129c0 .195.16.356.355.356h2.188c.195 0 .355-.16.355-.356l-.015-7.258c.195-1.426 1.215-2.527 2.465-2.527 1.375 0 2.527 1.148 2.527 2.656v7.129c0 .195.16.356.355.356h2.188c.195 0 .355-.16.355-.356l-.015-8.02c0-2.398-2.04-4.324-4.551-4.324a4.235 4.235 0 0 0-3.793 2.43 4.568 4.568 0 0 0-4.082-2.43Zm20.497 0c-3.387 0-6.125 2.913-6.125 6.511 0 3.598 2.738 6.512 6.125 6.512 1.602 0 3.14-.664 4.262-1.828v1.148c0 .195.16.356.355.356h2.172a.36.36 0 0 0 .356-.356V58.168a.36.36 0 0 0-.356-.355H66.95a.357.357 0 0 0-.355.355v1.148a5.896 5.896 0 0 0-4.262-1.828Zm17.629 0a5.915 5.915 0 0 0-4.262 1.827v-1.148a.36.36 0 0 0-.36-.355h-2.167a.36.36 0 0 0-.36.355v16.687a.36.36 0 0 0 .36.356h2.168a.36.36 0 0 0 .36-.356v-6.171a5.889 5.889 0 0 0 4.26 1.828c3.388 0 6.126-2.914 6.126-6.512 0-3.598-2.738-6.512-6.125-6.512Zm29.68 0c-3.66 0-6.625 2.913-6.625 6.511 0 3.598 2.964 6.512 6.625 6.512 3.664 0 6.629-2.914 6.629-6.512 0-3.598-2.965-6.512-6.63-6.512Zm15.492.304a.534.534 0 0 0-.469.262l-2.187 3.675-2.188-3.66a.542.542 0 0 0-.473-.258h-2.511a.326.326 0 0 0-.274.5l3.727 5.672-3.758 5.72a.336.336 0 0 0 .094.452c.05.031.117.051.18.051h2.511a.54.54 0 0 0 .469-.262l2.238-3.726 2.235 3.726a.544.544 0 0 0 .468.262h2.48c.18 0 .325-.148.325-.324a.435.435 0 0 0-.047-.195l-3.762-5.72 3.727-5.671a.333.333 0 0 0-.098-.453.331.331 0 0 0-.175-.051Zm-109.074.246-1.41 2.898-2.903 1.41 2.902 1.41 1.41 2.9 1.407-2.9 2.902-1.41-2.902-1.41Zm46.773 2.055c2.059 0 3.727 1.718 3.746 3.86v.093c-.02 2.14-1.687 3.86-3.746 3.86-2.074 0-3.742-1.75-3.742-3.907 0-2.156 1.687-3.906 3.742-3.906Zm16.625 0c2.074 0 3.742 1.75 3.742 3.906s-1.668 3.906-3.742 3.906c-2.059 0-3.727-1.719-3.742-3.86v-.093c.031-2.14 1.683-3.86 3.742-3.86Zm15.57 0c2.075 0 3.743 1.75 3.743 3.906s-1.684 3.906-3.743 3.906c-2.058 0-3.726-1.719-3.742-3.86v-.093c.031-2.14 1.684-3.86 3.742-3.86Zm14.598 0c2.059 0 3.742 1.75 3.742 3.906s-1.683 3.906-3.742 3.906c-2.074 0-3.742-1.75-3.742-3.906s1.687-3.906 3.742-3.906Zm0 0" /></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#34a574" d="M63.998 0h61.82v50.12h-61.82z"/><path fill="#27aae1" d="M2.182 0h61.816v50.12H2.182Z"/><path fill="#8dc63f" d="M63.998 50.164h61.82v50.113h-61.82z"/><path fill="#375c93" d="M2.182 50.164h61.816v50.113H2.182Z"/><path fill="#8dc63f" d="M54.914 100.004 85.16 128v-27.996z"/><path fill="#375c93" d="m63.998 100.004.322 8.812-9.685-9.042z"/><path fill="#fff" d="M89.608 64.802V23.315h14.779v53.651H81.993l-45.21-42.223v42.269H21.958V23.316h23.177l44.472 41.486z"/></svg>

After

Width:  |  Height:  |  Size: 552 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#27aae1" d="M125.84 0H2.16v100.305h53l9.137 8.542v-.138L85.147 128v-27.695h40.693V0Zm-21.402 77.067h-22.41l-45.243-42.3v42.3H21.951V23.332h23.194l44.504 41.515V23.332h14.79v53.735Z"/></svg>

After

Width:  |  Height:  |  Size: 264 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><mask id="a" maskUnits="userSpaceOnUse"><path fill="#fff" stroke-width="2.119" d="M28.3 0 .073 10.026l4.305 37.176L28.3 60.4l23.92-13.198 4.305-37.176Z"/></mask></defs><path fill="#dd0031" d="M64 0 4.181 21.248l9.124 78.784L64 128l50.695-27.968 9.124-78.784Z"/><path fill="#c3002f" fill-rule="evenodd" d="M28.3 0v6.704-.03V60.4l23.922-13.197 4.305-37.177Z" clip-rule="evenodd" mask="url(#a)" transform="translate(4.027)scale(2.1192)"/><path fill="#fff" d="m44.553 22.463-8.926 8.924 13.389 1.275 4.463-10.2h-8.926zm10.84 0-5.08 12.06-22.975-1.86 3.826 15.933L58.58 58.795h3.826V22.463zm9.564 0v36.332h4.463l27.416-10.2 3.826-15.933-23.611 1.863-5.08-12.062zm8.926 0 4.463 10.2 13.39-1.276-8.927-8.924zM31.8 51.146v21.67l15.303 12.748v-19.76l4.462-6.372-5.738 1.275-7.014-7.012zm63.76 0-7.014 2.55-7.014 7.011-5.738-1.275 4.465 6.373v19.76l15.3-12.749zm-41.522 8.192-5.086 7.664v28.74l3.815 5.748 4.45 4.47h12.716l4.45-4.47 3.815-5.748v-28.74l-5.086-7.664-3.18 1.916H57.22l-3.18-1.916zM38.814 81.102v8.287l8.29 8.285v-9.56zm49.733 0-8.287 7.011v9.56l8.287-8.284z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64 0 4.182 21.248l9.123 78.783L64 128l50.695-27.969 9.123-78.783zM44.553 22.463h8.927l-4.464 10.2-13.389-1.276zm10.84 0h7.013v36.332H58.58l-27.416-10.2-3.826-15.933 22.974 1.861 5.08-12.06zm9.564 0h7.014l5.08 12.062 23.611-1.863-3.826 15.934L69.42 58.795h-4.463zm8.926 0h8.926l8.927 8.924-13.39 1.275-4.463-10.2zM31.8 51.146l7.012 2.55 7.013 7.011 5.738-1.275-4.46 6.373v19.76L31.8 72.815v-21.67zm63.76 0-.002 21.67-15.3 12.748v-19.76l-4.464-6.372 5.736 1.275 7.016-7.012zm-41.524 8.192h.002l3.182 1.916h12.71l3.18-1.916 5.086 7.664v28.74l-3.814 5.748-4.45 4.47H57.218l-4.45-4.47-3.816-5.748v-28.74l5.086-7.664zM38.814 81.102l8.29 7.011v9.56l-8.29-8.284zm49.733 0v8.287l-8.287 8.285v-9.56z"/></svg>

After

Width:  |  Height:  |  Size: 771 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="4.154" x2="4.154" y1="108.707" y2="23.639" gradientTransform="translate(-4.294 -1.099) scale(1.03354)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#a51415"/><stop offset=".5" stop-color="#d81511"/><stop offset="1" stop-color="#bf100d"/></linearGradient></defs><path fill="url(#a)" d="m128 16.744-24.67 42.729-6.715-11.642H84.682L95.35 66.324l-4.715 8.17L96.602 84.8l6.773-11.702 20.732 35.91 3.893 2.249v-16.18l-16.646-28.831L128 37.415zM0 23.334v61.465h10.336V33.668h3.209l5.37 9.303-7.522 4.34v14.65l13.185 22.838h11.938L19.172 54.757l13.861-8.003-13.521-23.42zm33.283 24.498-12.666 7.313 17.12 29.654h19.497l4.133-7.159V65.29l-10.336 5.966v3.589H43.17v-.826l22.549-12.986-7.614-13.203zm25.922 0 10.293 17.842-11.043 19.124h11.938l6.517-11.29 6.518 11.29h11.935L84.32 65.673l4.717-8.168-5.576-9.674-6.28 10.895-6.28-10.895zm-25.19 10.336H49.99L38.004 65.07z" color="#000" style="-inkscape-stroke:none"/><path d="M60.777 87.098v.775h1.057v3.584c0 .554.817 1 1.83 1h3.645c1.013 0 1.83-.446 1.83-1v-3.584h1.056v-.775h-3.074v4.088c0 .277-.446.5-1 .5h-1.27c-.553 0-1-.223-1-.5v-4.088zm13.032 0-2.233 4.605h-.974v.754h2.71l.713-1.68h2.643l.799 1.68h2.578v-.754h-.93l-2.365-4.605zm1.462.738 1.04 2.187h-1.967zm-32.835-.738v.754h1.007v3.851h-1.007v.754h2.832v-3.775l4.468 3.775h1.596v-4.605h.938v-.754h-2.754v3.457l-4.092-3.457zm-7.002 0L33.2 91.703h-.974v.754h2.71l.713-1.68h2.643l.799 1.68h2.578v-.754h-.93l-2.365-4.605zm1.462.738 1.04 2.187h-1.967zM24.4 87.098v.754h.9v3.851h-.9v.754h7.29v-1.88h-1.917v1.126h-2.421v-3.851h.9v-.754zm30.498 0c-1.108 0-2 .446-2 1v3.359c0 .554.892 1 2 1h5.385v-3.102H56.5v.807h1.922v1.514h-2.637c-.554 0-1-.223-1-.5V88.38c0-.277.446-.5 1-.5h2.553v.898h1.834v-1.681zm27.75 0c-1.108 0-2 .446-2 1v3.359c0 .554.892 1 2 1h5.385v-3.102H84.25v.807h1.922v1.514h-2.637c-.554 0-1-.223-1-.5V88.38c0-.277.446-.5 1-.5h2.553v.898h1.834v-1.681zm5.95 0v.705h1.051v3.95H88.6v.705h8.005v-1.643h-1.816v.938H91.58v-1.7h3.426v-.742H91.58v-1.508h3.023v.938h1.817v-1.643zM18.563 16.561v.705h1.05v3.949h-1.05v.705h8.005v-1.643h-1.816v.938h-3.207v-1.7h3.426v-.742h-3.426v-1.507h3.023v.937h1.817v-1.642zm-9.672 0v.705h1.033v3.949H8.89v.705h2.96v-2.281h3.223v2.28l2.961.001v-.705h-1.033v-3.95h1.033v-.704h-2.96v2.28h-3.223v-2.28zM0 16.56v1.492h1.73v-.746h1.58v3.84H2.308v.773h3.896v-.774H5.2v-3.84h1.58v.747h1.73V16.56z"/><path d="m32.744 46.254.29.5h77.64l.289-.5H32.744z" /></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="4.154" x2="4.154" y1="108.707" y2="23.639" gradientTransform="translate(-4.294 -1.099) scale(1.03354)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#a51415"/><stop offset=".5" stop-color="#d81511"/><stop offset="1" stop-color="#bf100d"/></linearGradient></defs><path fill="url(#a)" d="m128 16.744-24.67 42.729-6.715-11.642H84.682L95.35 66.324l-4.715 8.17L96.602 84.8l6.773-11.702 20.732 35.91 3.893 2.249v-16.18l-16.646-28.831L128 37.415zM0 23.334v61.465h10.336V33.668h3.209l5.37 9.303-7.522 4.34v14.65l13.185 22.838h11.938L19.172 54.757l13.861-8.003-13.521-23.42zm33.283 24.498-12.666 7.313 17.12 29.654h19.497l4.133-7.159V65.29l-10.336 5.966v3.589H43.17v-.826l22.549-12.986-7.614-13.203zm25.922 0 10.293 17.842-11.043 19.124h11.938l6.517-11.29 6.518 11.29h11.935L84.32 65.673l4.717-8.168-5.576-9.674-6.28 10.895-6.28-10.895zm-25.19 10.336H49.99L38.004 65.07z"/><path d="m32.744 46.254.29.5h77.64l.289-.5h-77.93z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#d81511" d="M0 16.651v1.493h1.73v-.747h1.58v3.84h-1v.774h3.894v-.776H5.2v-3.84h1.58v.749h1.73V16.65zm8.89 0v.705h1.034v3.95H8.89v.705h2.959v-2.282h3.222v2.282h2.961v-.705h-1.031v-3.95h1.031v-.705h-2.959v2.282h-3.222V16.65zm9.673 0v.705h1.05v3.95h-1.05v.705h8.005v-1.643h-1.816v.938h-3.207v-1.7h3.426v-.742h-3.426v-1.508h3.023v.938h1.817V16.65zM128 16.833l-17.037 29.512H32.744l-13.232-22.92H0V84.89h10.336V33.759h3.209l5.37 9.303-7.522 4.341v14.649L24.578 84.89h11.938L19.172 54.849l13.861-8.004h77.64l-7.343 12.718-6.715-11.642H84.682L95.35 66.415l-4.715 8.17 5.967 10.307 6.773-11.702 20.732 35.91 3.893 2.25V95.17l-16.646-28.832L128 37.507zM58.105 47.921l-24.822.002-12.666 7.312 17.12 29.655h19.497l4.133-7.159V65.38l-10.336 5.969v3.588H43.17v-.827l22.549-12.986zm1.1.002 10.293 17.842L58.455 84.89h11.938L76.91 73.6l6.518 11.29h11.935L84.32 65.765l4.717-8.168-5.576-9.674-6.28 10.894-6.28-10.894zm-25.19 10.336H49.99L38.004 65.16zM24.4 87.189v.753h.9v3.852h-.9v.754h7.29v-1.881h-1.917v1.127h-2.421v-3.852h.9v-.754zm11.034 0-2.235 4.605h-.972v.754h2.709l.712-1.68h2.645l.799 1.68h2.578v-.754h-.932l-2.365-4.606zm7.002 0v.753h1.007v3.852h-1.007v.754h2.832v-3.776l4.468 3.776h1.596v-4.606h.938v-.754h-2.754v3.458l-4.092-3.458zm12.462 0c-1.108 0-2 .445-2 1v3.359c0 .554.892 1 2 1h5.385v-3.102H56.5v.807h1.922v1.514h-2.637c-.554 0-1-.223-1-.5v-2.795c0-.277.446-.5 1-.5h2.553v.896h1.834v-1.68zm5.88 0v.775h1.056v3.584c0 .554.817 1 1.83 1h3.645c1.013 0 1.83-.446 1.83-1v-3.584h1.056v-.776h-3.074v4.088c0 .277-.446.5-1 .5h-1.27c-.552 0-1-.223-1-.5v-4.088zm13.03 0-2.232 4.605h-.974v.754h2.71l.713-1.68h2.643l.799 1.68h2.578v-.754h-.93l-2.365-4.606zm8.84 0c-1.108 0-2 .445-2 1v3.359c0 .554.892 1 2 1h5.385v-3.102H84.25v.807h1.922v1.514h-2.637c-.554 0-1-.223-1-.5v-2.795c0-.277.446-.5 1-.5h2.553v.896h1.834v-1.68zm5.95 0v.705h1.05v3.95H88.6v.704h8.005v-1.643H94.79v.94h-3.21v-1.701h3.426V89.4H91.58v-1.507h3.024v.937h1.816v-1.643zm-51.702.738 1.04 2.187h-1.967zm38.375 0 1.04 2.187h-1.967z"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#d81511" d="m128 16.743-17.037 29.51H32.744l-13.232-22.92H0v61.465h10.336V33.667h3.209l5.37 9.303-7.522 4.342V61.96l13.185 22.838h11.938L19.172 54.757l13.861-8.004h77.64l-7.343 12.719-6.715-11.641H84.682L95.35 66.323l-4.715 8.17L96.602 84.8l6.773-11.701 20.732 35.91 3.893 2.248v-16.18l-16.646-28.832L128 37.415zM58.105 47.83l-24.822.002-12.666 7.313 17.12 29.654h19.497l4.133-7.158V65.288l-10.336 5.969v3.588H43.17v-.826l22.549-12.987zm1.1.002 10.293 17.842-11.043 19.125h11.938l6.517-11.29 6.518 11.29h11.935L84.32 65.673l4.717-8.168-5.576-9.674-6.28 10.895-6.28-10.895zm-25.19 10.336H49.99L38.004 65.07z"/></svg>

After

Width:  |  Height:  |  Size: 690 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="101.85" x2="101.85" y1="-12.91" y2="224.04" gradientTransform="translate(6.318) scale(.56637)" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#ffd200;stop-opacity:1"/><stop offset=".08" style="stop-color:#ffb500;stop-opacity:1"/><stop offset=".2" style="stop-color:#ff8c00;stop-opacity:1"/><stop offset=".3" style="stop-color:#ff7300;stop-opacity:1"/><stop offset=".36" style="stop-color:#ff6a00;stop-opacity:1"/><stop offset=".48" style="stop-color:#fc4f0e;stop-opacity:1"/><stop offset=".65" style="stop-color:#f92f1e;stop-opacity:1"/><stop offset=".79" style="stop-color:#f81b27;stop-opacity:1"/><stop offset=".89" style="stop-color:#f7142b;stop-opacity:1"/><stop offset="1" style="stop-color:#df162e;stop-opacity:1"/></linearGradient></defs><path d="M64.012 0c-1.617 0-3.227.078-4.825.2v127.624c1.594.117 3.196.2 4.817.203h.023c1.614 0 3.211-.086 4.79-.199V.2A62.973 62.973 0 0 0 64.011 0Zm27.515 6.23C82.16 27.34 76.36 49.79 76.36 63.926c0 13.68 6.282 36.379 15.82 57.601a64.209 64.209 0 0 0 8.407-4.968c-8.832-19.864-14.59-40.625-14.59-52.657 0-12.457 5.555-33.175 14.113-52.757a64.114 64.114 0 0 0-8.582-4.915Zm-55.191.04a64.114 64.114 0 0 0-8.457 4.894C36.453 30.73 42 51.454 42 63.902c0 12.028-5.762 32.782-14.59 52.625a64.62 64.62 0 0 0 8.406 4.965c9.547-21.215 15.813-43.898 15.813-57.59 0-14.207-6.031-36.785-15.293-57.632Zm80.207 21.16-1.379 1.375c-14.613 14.754-21.676 26.246-21.59 35.117.086 8.867 7.106 20.324 21.489 34.789l1.652 1.644a64.618 64.618 0 0 0 4.996-8.601c-9.953-10.102-18.441-21.008-18.508-27.918-.062-6.738 8.375-17.645 18.383-27.856a63.693 63.693 0 0 0-5.043-8.55Zm-105.059.023a64.028 64.028 0 0 0-5.054 8.574c16.664 16.93 18.418 25.094 18.398 27.832-.062 6.938-8.555 17.817-18.512 27.895a64.432 64.432 0 0 0 5.008 8.578c.567-.566 1.106-1.086 1.653-1.64 14.37-14.465 21.394-25.833 21.476-34.766.086-8.93-6.976-20.317-21.586-35.098Zm0 0" style="fill:url(#a)"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M64.012 0c-1.617 0-3.227.078-4.825.2v127.624c1.594.117 3.196.2 4.817.203h.023c1.614 0 3.211-.086 4.79-.199V.2A62.973 62.973 0 0 0 64.011 0Zm27.515 6.23C82.16 27.34 76.36 49.79 76.36 63.926c0 13.68 6.282 36.379 15.82 57.601a64.209 64.209 0 0 0 8.407-4.968c-8.832-19.864-14.59-40.625-14.59-52.657 0-12.457 5.555-33.175 14.113-52.757a64.114 64.114 0 0 0-8.582-4.915Zm-55.191.04a64.114 64.114 0 0 0-8.457 4.894C36.453 30.73 42 51.454 42 63.902c0 12.028-5.762 32.782-14.59 52.625a64.62 64.62 0 0 0 8.406 4.965c9.547-21.215 15.813-43.898 15.813-57.59 0-14.207-6.031-36.785-15.293-57.632Zm80.207 21.16-1.379 1.375c-14.613 14.754-21.676 26.246-21.59 35.117.086 8.867 7.106 20.324 21.489 34.789l1.652 1.644a64.618 64.618 0 0 0 4.996-8.601c-9.953-10.102-18.441-21.008-18.508-27.918-.062-6.738 8.375-17.645 18.383-27.856a63.693 63.693 0 0 0-5.043-8.55Zm-105.059.023a64.028 64.028 0 0 0-5.054 8.574c16.664 16.93 18.418 25.094 18.398 27.832-.062 6.938-8.555 17.817-18.512 27.895a64.432 64.432 0 0 0 5.008 8.578c.567-.566 1.106-1.086 1.653-1.64 14.37-14.465 21.394-25.833 21.476-34.766.086-8.93-6.976-20.317-21.586-35.098Zm0 0" style="fill:#f92a20"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB