1
0
mirror of https://github.com/konpa/devicon.git synced 2025-08-11 09:04:27 +02:00

Merge branch 'develop' into illustrator

This commit is contained in:
Alex Canales
2025-02-16 00:09:22 -05:00
committed by GitHub
177 changed files with 1565 additions and 2355 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

@@ -230,7 +230,7 @@ Follow these steps to build the website and icons either locally or using <a hre
</ol>
<h2 id="using-gitpod">Using Gitpod.io</h2>
<p>By using <a href=https://www.gitpod.io)>Gitpod.io</a>, you can easily build the icons and install the<br>required dependencies in one single click. No extra setup is required.</p>
<p>By using <a href=https://www.gitpod.io>Gitpod.io</a>, you can easily build the icons and install the<br>required dependencies in one single click. No extra setup is required.</p>
<a href=https://gitpod.io/#https://github.com/devicons/devicon/tree/develop><img src=https://gitpod.io/button/open-in-gitpod.svg alt="Open in Gitpod"></img></a>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#c21417" d="M52.262 58.375c.82 0 1.566.148 2.242.441.672.297 1.25.7 1.734 1.207a5.367 5.367 0 0 1 1.117 1.758c.262.672.399 1.387.395 2.11.008.011.008.02 0 .03 0 .724-.137 1.442-.402 2.114a5.45 5.45 0 0 1-1.125 1.77 5.487 5.487 0 0 1-1.743 1.21c-.675.301-1.425.454-2.253.454-.82 0-1.57-.149-2.239-.446a5.31 5.31 0 0 1-1.734-1.203 5.349 5.349 0 0 1-1.117-1.761 5.647 5.647 0 0 1-.395-2.106v-.031c0-.734.13-1.442.399-2.113a5.48 5.48 0 0 1 1.125-1.774 5.523 5.523 0 0 1 1.746-1.21c.675-.302 1.425-.45 2.25-.45m14.949.031c.793 0 1.484.106 2.074.328a6.3 6.3 0 0 1 1.719.989l-.707.933c-.504-.406-1.012-.703-1.52-.886a4.725 4.725 0 0 0-1.597-.278c-.707 0-1.266.168-1.68.5-.41.332-.613.742-.613 1.235v.027c0 .258.043.484.12.68.083.203.231.386.45.554.215.172.512.32.895.461.378.137.867.27 1.46.39 1.204.255 2.09.622 2.66 1.095.571.476.856 1.12.856 1.937v.031a2.784 2.784 0 0 1-1.027 2.207c-.324.266-.711.47-1.164.614a4.8 4.8 0 0 1-1.477.215c-.863 0-1.652-.141-2.367-.422-.715-.282-1.395-.711-2.043-1.293l.758-.891c.562.512 1.133.89 1.707 1.14.578.255 1.238.376 1.992.376.73 0 1.313-.168 1.746-.512.438-.34.656-.777.656-1.309v-.03c0-.247-.039-.47-.125-.669a1.379 1.379 0 0 0-.43-.543c-.206-.164-.492-.312-.859-.445a10.873 10.873 0 0 0-1.398-.383 11.113 11.113 0 0 1-1.613-.46 4.109 4.109 0 0 1-1.137-.626 2.357 2.357 0 0 1-.664-.863c-.145-.324-.215-.707-.215-1.145v-.031c0-.418.086-.805.258-1.164.18-.36.433-.676.742-.93.32-.261.695-.465 1.129-.613.43-.145.902-.219 1.414-.219m-55.063.024v1.3l-2.851 1.258v5.84l2.851 1.27v1.242L1.281 64.45 0 63.901l1.281-.586Zm14 .129v1.117h-6.582v3.629h5.887v1.12h-5.887v3.743h6.66v1.117h-7.874V58.56Zm74.762 0v6.406l6.192-6.406h1.574l-4.625 4.687 4.828 6.04h-1.527l-4.149-5.196-2.293 2.312v2.883h-1.222V58.56Zm21.36 0v1.117h-6.582v3.629H128v1.12h-12.313v3.743h6.66v1.117h-7.874V58.56Zm-29.438 0v10.726h-1.223V58.56Zm-11.281 0c.605 0 1.156.078 1.656.238.496.156.922.379 1.277.672.352.285.63.652.813 1.066.191.418.293.895.293 1.426v.031c0 .578-.117 1.09-.34 1.524-.223.43-.535.8-.918 1.093-.387.297-.836.52-1.348.668a5.883 5.883 0 0 1-1.64.223h-2.617v3.785h-1.22V58.56Zm-44.535 0c.668 0 1.261.093 1.78.28.52.192.946.454 1.286.794.266.265.477.582.617.933.145.356.215.75.215 1.18v.027c0 .442-.07.836-.215 1.192-.14.344-.344.656-.605.918a3.225 3.225 0 0 1-.938.644 5.065 5.065 0 0 1-1.172.375l3.317 4.383h-1.492l-3.133-4.168h-3.078v4.168h-1.223V58.56Zm15.21.933c-.613 0-1.18.113-1.699.344a4.1 4.1 0 0 0-1.336.945 4.48 4.48 0 0 0-.87 1.395 4.677 4.677 0 0 0-.313 1.715v.03c0 .614.105 1.188.312 1.724.211.535.508 1.003.887 1.402a4.34 4.34 0 0 0 1.348.95c.52.237 1.09.35 1.707.35a4.085 4.085 0 0 0 3.035-1.284c.371-.399.66-.864.871-1.395.21-.531.312-1.102.312-1.715v-.031c0-.613-.101-1.188-.312-1.723-.2-.52-.5-.996-.883-1.402a4.312 4.312 0 0 0-1.351-.953 4.107 4.107 0 0 0-1.707-.352M8.203 61.461 2.7 63.898l5.504 2.454Zm73.258-1.785h-2.734v4.707h2.675c.45 0 .86-.059 1.22-.168a2.94 2.94 0 0 0 .937-.48 2.165 2.165 0 0 0 .813-1.707v-.032c0-.762-.27-1.34-.802-1.73-.527-.395-1.234-.59-2.11-.59m-44.53 0h-3.332v4.351h3.32c.398 0 .77-.05 1.113-.152a2.73 2.73 0 0 0 .88-.438 1.96 1.96 0 0 0 .785-1.617v-.03c0-.661-.243-1.18-.723-1.552-.485-.375-1.164-.562-2.043-.562"/></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#c21417" d="M76.516 82 39.734 65.508l36.782-16.383ZM128 0v128H0V0Zm-25.094 28.727L30.25 61.59l-8.57 3.96 8.57 3.673 72.656 32.867v-8.348L83.836 85.2V45.93l19.07-8.456Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 255 B

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

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -1 +1 @@
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M40.162 23.768C24.121 25.189 10.496 36.065 5.473 51.443 4.028 55.874 3.53 59.05 3.53 64.026s.498 8.151 1.943 12.582c7.701 23.505 34.334 34.595 56.466 23.529L64 99.094l2.085 1.043c18.222 9.123 40.377 3.293 51.703-13.672 2.962-4.407 5.237-10.118 6.208-15.544.356-2.085.474-3.744.474-6.895 0-4.976-.497-8.152-1.943-12.583-7.701-23.505-34.334-34.594-56.442-23.529L64 28.957l-2.061-1.043a41.323 41.323 0 00-14.904-4.17c-3.152-.261-3.792-.261-6.873.024zm10.142 8.601c2.322.45 6.801 2.203 9.525 3.744 3.721 2.085 7.938 5.995 10.521 9.739 1.398 2.037 3.27 5.876 4.336 8.933 1.517 4.265 1.517 14.217 0 18.481-1.848 5.214-4.194 9.266-7.345 12.607-3.744 3.981-7.227 6.326-12.44 8.364-3.317 1.303-5.307 1.73-9.217 1.919-4.787.237-9.1-.331-12.488-1.682-.853-.356-1.73-.663-1.99-.711-.498-.118-4.763-2.488-6.208-3.46-1.54-1.042-5.331-4.762-6.801-6.682-.734-.971-1.35-1.824-1.35-1.895 0-.071-.545-1.067-1.209-2.204-1.161-2.014-1.943-3.649-1.753-3.649.047 0-.213-.758-.592-1.682-1.161-2.772-1.517-5.213-1.517-10.165 0-4.953.356-7.394 1.517-10.166.379-.924.639-1.682.592-1.682-.19 0 .592-1.635 1.753-3.649.664-1.137 1.209-2.132 1.209-2.204 0-.071.616-.924 1.35-1.895 1.47-1.92 5.261-5.64 6.801-6.682 1.422-.972 5.71-3.342 6.208-3.46.26-.047 1.256-.403 2.227-.782 2.156-.853 3.554-1.184 6.043-1.469 2.559-.284 8.577-.094 10.828.332z" fill="#f02e65"/><path d="M44.973 49.737c-.048.119-.664 2.536-1.327 5.403-.688 2.867-1.777 7.393-2.393 10.07-1.185 4.905-1.896 8.128-1.896 8.554 0 .118.735.214 1.635.214h1.635l.734-3.271c.427-1.777 1.375-5.852 2.133-9.051.759-3.199 1.682-7.085 2.038-8.649.355-1.564.711-2.985.782-3.151.071-.213-.332-.284-1.564-.284-.924 0-1.73.071-1.777.165zm-12.725 10.26l-2.18 2.37.64.758c.355.426 1.327 1.493 2.156 2.37l1.517 1.611h4.313l-2.038-2.204c-1.114-1.184-2.038-2.322-2.038-2.464 0-.166.853-1.232 1.896-2.369 1.042-1.161 1.895-2.157 1.895-2.275 0-.095-.9-.166-1.99-.166h-1.967l-2.204 2.369zm16.587-2.227c0 .071.403.521.9 1.019 1.849 1.848 3.152 3.412 3.081 3.72-.047.166-.948 1.279-2.038 2.44l-1.966 2.157h2.203l2.204-.024 2.013-2.203c1.115-1.232 2.015-2.323 2.015-2.465 0-.118-.948-1.232-2.133-2.487l-2.132-2.299H50.92c-1.161 0-2.085.071-2.085.142z" fill="#f02e65"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#fd366e" d="M56.305 7.568c-25.833 0-47.611 17.355-54.309 41.042A55.717 55.717 0 0 0 0 60.187v7.628a56.083 56.083 0 0 0 7.421 24.402c9.758 16.868 27.996 28.215 48.884 28.215H128V92.217H56.305a28.104 28.104 0 0 1-19.363-7.696c-5.453-5.143-8.855-12.432-8.855-20.52 0-2.668.37-5.248 1.063-7.696.78-2.76 1.97-5.348 3.503-7.695 5.033-7.722 13.746-12.827 23.652-12.827 9.907 0 18.617 5.105 23.65 12.827h30.655C103.913 24.923 82.14 7.568 56.305 7.568ZM83.46 56.305a28.22 28.22 0 0 1 1.062 7.696c0 8.088-3.401 15.377-8.855 20.52H128V56.305Z"/></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 615 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -1 +0,0 @@
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M40.162 23.768C24.121 25.189 10.496 36.065 5.473 51.443 4.028 55.874 3.53 59.05 3.53 64.026s.498 8.151 1.943 12.582c7.701 23.505 34.334 34.595 56.466 23.529L64 99.094l2.085 1.043c18.222 9.123 40.377 3.293 51.703-13.672 2.962-4.407 5.237-10.118 6.208-15.544.356-2.085.474-3.744.474-6.895 0-4.976-.497-8.152-1.943-12.583-7.701-23.505-34.334-34.594-56.442-23.529L64 28.957l-2.061-1.043a41.323 41.323 0 00-14.904-4.17c-3.152-.261-3.792-.261-6.873.024zm10.142 8.601c2.322.45 6.801 2.203 9.525 3.744 3.721 2.085 7.938 5.995 10.521 9.739 1.398 2.037 3.27 5.876 4.336 8.933 1.517 4.265 1.517 14.217 0 18.481-1.848 5.214-4.194 9.266-7.345 12.607-3.744 3.981-7.227 6.326-12.44 8.364-3.317 1.303-5.307 1.73-9.217 1.919-4.787.237-9.1-.331-12.488-1.682-.853-.356-1.73-.663-1.99-.711-.498-.118-4.763-2.488-6.208-3.46-1.54-1.042-5.331-4.762-6.801-6.682-.734-.971-1.35-1.824-1.35-1.895 0-.071-.545-1.067-1.209-2.204-1.161-2.014-1.943-3.649-1.753-3.649.047 0-.213-.758-.592-1.682-1.161-2.772-1.517-5.213-1.517-10.165 0-4.953.356-7.394 1.517-10.166.379-.924.639-1.682.592-1.682-.19 0 .592-1.635 1.753-3.649.664-1.137 1.209-2.132 1.209-2.204 0-.071.616-.924 1.35-1.895 1.47-1.92 5.261-5.64 6.801-6.682 1.422-.972 5.71-3.342 6.208-3.46.26-.047 1.256-.403 2.227-.782 2.156-.853 3.554-1.184 6.043-1.469 2.559-.284 8.577-.094 10.828.332z"/><path d="M44.973 49.737c-.048.119-.664 2.536-1.327 5.403-.688 2.867-1.777 7.393-2.393 10.07-1.185 4.905-1.896 8.128-1.896 8.554 0 .118.735.214 1.635.214h1.635l.734-3.271c.427-1.777 1.375-5.852 2.133-9.051.759-3.199 1.682-7.085 2.038-8.649.355-1.564.711-2.985.782-3.151.071-.213-.332-.284-1.564-.284-.924 0-1.73.071-1.777.165zm-12.725 10.26l-2.18 2.37.64.758c.355.426 1.327 1.493 2.156 2.37l1.517 1.611h4.313l-2.038-2.204c-1.114-1.184-2.038-2.322-2.038-2.464 0-.166.853-1.232 1.896-2.369 1.042-1.161 1.895-2.157 1.895-2.275 0-.095-.9-.166-1.99-.166h-1.967l-2.204 2.369zm16.587-2.227c0 .071.403.521.9 1.019 1.849 1.848 3.152 3.412 3.081 3.72-.047.166-.948 1.279-2.038 2.44l-1.966 2.157h2.203l2.204-.024 2.013-2.203c1.115-1.232 2.015-2.323 2.015-2.465 0-.118-.948-1.232-2.133-2.487l-2.132-2.299H50.92c-1.161 0-2.085.071-2.085.142z"/></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><defs><linearGradient id="a" x1="75.543" x2="81.2" y1="145.986" y2="143.227" gradientTransform="translate(-55.303 -201.26) scale(1.89346)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity=".365"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="b" x1="105.834" x2="80.209" y1="15.354" y2="30.531" gradientTransform="translate(-130.684 30.666) scale(1.89346)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-opacity=".102"/><stop offset="1" stop-opacity=".306"/></linearGradient><linearGradient id="c" x1="70.725" x2="87.092" y1="12.292" y2="26.895" gradientTransform="translate(-73.913 3.73) scale(1.89346)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-opacity=".102"/><stop offset="1" stop-opacity=".306"/></linearGradient><linearGradient id="d" x1="70.725" x2="81.158" y1="12.292" y2="19.324" gradientTransform="translate(-46.181 51.885) scale(1.89346)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-opacity=".102"/><stop offset="1" stop-opacity=".306"/></linearGradient><linearGradient id="e" x1="70.513" x2="55.281" y1="62.847" y2="56.394" gradientTransform="translate(-63.804 -59.26) scale(1.89346)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity=".365"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="f" x1="70.513" x2="63.044" y1="62.847" y2="59.204" gradientTransform="matrix(-1.89346 0 0 1.89346 193.514 -91.995)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity=".365"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient></defs><path fill="#10a0cc" d="M83.289 96.024c-.881 0-1.593.274-2.145.826-.548.547-.826 1.264-.826 2.144 0 .882.278 1.593.826 2.145.552.553 1.264.826 2.145.826.88 0 1.6-.273 2.149-.825.55-.552.825-1.265.825-2.145 0-.881-.274-1.598-.825-2.145-.548-.552-1.269-.826-2.15-.826zm-21.393 1.761v21.737c0 2.866.621 4.917 1.87 6.165 1.284 1.249 3.374 1.871 6.274 1.871h2.97v-3.523h-2.97c-1.506 0-2.587-.347-3.249-1.045-.62-.696-1.037-1.854-.934-3.467v-9.91h7.154v-3.519h-7.154v-8.309zm-45.449 7.867v3.467h9.832c1.577 0 2.842.494 3.797 1.488.95.952 1.433 2.2 1.433 3.741v.333c-.921-.626-2.02-1.12-3.304-1.483-1.284-.368-2.533-.551-3.742-.551h-3.521c-2.716 0-4.9.696-6.549 2.09-1.651 1.392-2.477 3.243-2.477 5.577 0 2.329.79 4.2 2.368 5.596 1.613 1.394 3.757 2.09 6.434 2.09h3.304c1.468 0 2.88-.387 4.238-1.158a9.154 9.154 0 0 0 3.355-3.135v3.851h3.745v-13.21c0-2.606-.846-4.696-2.532-6.273-1.652-1.617-3.835-2.423-6.548-2.423zm26.979.442v21.464h3.965v-9.796c0-2.458.716-4.423 2.144-5.892 1.468-1.505 3.374-2.257 5.723-2.257v-3.519c-1.613 0-3.17.404-4.677 1.21-1.464.806-2.568 1.851-3.3 3.139v-4.349zm37.883 0v21.464h3.965v-21.464zm10.445 0 9.515 10.732-9.515 10.732h5.293l6.868-7.745 6.873 7.745h5.296l-9.519-10.73 9.519-10.734h-5.297l-6.872 7.745-6.868-7.745zm-70.813 10.02h3.522c1.354 0 2.677.22 3.96.657 1.323.404 2.35.956 3.085 1.652v.274c-.477 1.761-1.397 3.178-2.752 4.238a7.296 7.296 0 0 1-4.622 1.597h-3.417c-1.463 0-2.638-.383-3.518-1.154-.881-.772-1.323-1.8-1.323-3.064 0-1.268.46-2.274 1.378-3.046.955-.77 2.184-1.154 3.687-1.154zM64.337 0 49.125 31.194l41.87 23.46ZM44.528 40.62l-23.34 47.853 69.26-28.613ZM95.57 64.034l-21.843 12.54 33.76 11.899zm0 0"/><path fill="url(#a)" d="m87.735 75.159 7.836-11.123 11.917 24.438Zm0 0"/><path fill="url(#b)" d="m21.187 88.475 48.52-28.736 20.74.12zm0 0"/><path fill="url(#c)" d="m90.996 54.654-41.872-23.46L60 27.006Zm0 0"/><path fill="url(#d)" d="m107.489 88.475-33.762-11.9 14.007-1.417Zm0 0"/><path fill="url(#e)" d="m21.187 88.475 48.52-28.736-25.177-19.12Zm0 0"/><path fill="url(#f)" d="M90.996 54.654 60 27.007 64.338 0Zm0 0"/></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"><defs><linearGradient id="a" x1="75.543" x2="81.2" y1="145.986" y2="143.227" gradientTransform="translate(-109.09 -291.172) scale(2.73936)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity=".365"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="b" x1="105.834" x2="80.209" y1="15.354" y2="30.531" gradientTransform="translate(-218.147 44.362) scale(2.73936)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-opacity=".102"/><stop offset="1" stop-opacity=".306"/></linearGradient><linearGradient id="c" x1="70.725" x2="87.092" y1="12.292" y2="26.895" gradientTransform="translate(-136.013 5.393) scale(2.73936)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-opacity=".102"/><stop offset="1" stop-opacity=".306"/></linearGradient><linearGradient id="d" x1="70.725" x2="81.158" y1="12.292" y2="19.324" gradientTransform="translate(-95.891 75.061) scale(2.73936)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-opacity=".102"/><stop offset="1" stop-opacity=".306"/></linearGradient><linearGradient id="e" x1="70.513" x2="55.281" y1="62.847" y2="56.394" gradientTransform="translate(-121.388 -85.738) scale(2.73936)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity=".365"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="f" x1="70.513" x2="63.044" y1="62.847" y2="59.204" gradientTransform="matrix(-2.73936 0 0 2.73936 250.886 -133.095)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity=".365"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient></defs><path fill="#10a0cc" d="m64.002 0-22.01 45.13 60.572 33.936ZM35.341 58.764 1.573 127.999l100.2-41.397Zm73.842 33.876-31.602 18.142 48.846 17.217Zm0 0"/><path fill="url(#a)" d="m97.849 108.735 11.334-16.098L126.427 128Zm0 0"/><path fill="url(#b)" d="m1.573 127.999 70.2-41.578 30 .18zm0 0"/><path fill="url(#c)" d="M102.564 79.067 41.99 45.125l15.737-6.059Zm0 0"/><path fill="url(#d)" d="m126.427 127.999-48.846-17.217 20.268-2.048Zm0 0"/><path fill="url(#e)" d="m1.573 127.999 70.2-41.578L35.34 58.764Zm0 0"/><path fill="url(#f)" d="m102.564 79.067-44.836-40L64.002 0Zm0 0"/></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="#10a0cc" d="M64.336 0 49.125 31.193l41.871 23.461L64.338 0v.004L64.336 0zM44.527 40.62l-23.34 47.853v.002l.002-.002 69.258-28.614-45.916-19.238-.002-.002h-.002zM95.57 64.034l-21.84 12.54h-.001l-.002.001 33.761 11.899-11.918-24.44zM83.29 96.023c-.882 0-1.594.275-2.145.827-.549.547-.827 1.263-.827 2.144 0 .882.278 1.594.827 2.145.55.553 1.263.826 2.144.826.88 0 1.6-.274 2.148-.826.552-.551.827-1.263.827-2.143 0-.882-.275-1.6-.826-2.146-.549-.552-1.268-.827-2.149-.827zm-21.394 1.762v21.736c0 2.866.62 4.918 1.87 6.166 1.283 1.249 3.373 1.872 6.273 1.872h2.97v-3.524h-2.97c-1.506 0-2.587-.347-3.248-1.045-.621-.696-1.036-1.854-.934-3.467v-9.91h7.153v-3.52h-7.153v-8.308h-3.96zm-45.449 7.867v3.467h9.832c1.577 0 2.842.494 3.797 1.488.951.952 1.432 2.199 1.432 3.74v.335c-.921-.627-2.02-1.121-3.303-1.485-1.284-.367-2.533-.55-3.742-.55H20.94c-2.716 0-4.9.697-6.548 2.09-1.652 1.392-2.477 3.244-2.477 5.577 0 2.329.79 4.2 2.367 5.596 1.613 1.394 3.759 2.09 6.436 2.09h3.302c1.468 0 2.881-.387 4.239-1.158a9.154 9.154 0 0 0 3.355-3.135v3.852h3.744v-13.211c0-2.606-.845-4.697-2.53-6.274-1.653-1.617-3.835-2.422-6.548-2.422h-9.834zm26.979.442v21.465h3.965v-9.797c0-2.458.716-4.422 2.144-5.89 1.468-1.507 3.374-2.259 5.723-2.259v-3.52c-1.613 0-3.171.404-4.678 1.21-1.464.806-2.567 1.853-3.299 3.14v-4.35h-3.855zm37.883 0v21.465h3.964v-21.465H81.31zm10.445 0 9.516 10.732-9.516 10.733h5.293l6.867-7.746 6.875 7.746h5.295l-9.52-10.73 9.52-10.735h-5.297l-6.873 7.746-6.867-7.746h-5.293zm-70.813 10.02h3.522c1.355 0 2.677.22 3.96.657 1.323.404 2.35.956 3.085 1.653v.273c-.477 1.762-1.397 3.178-2.752 4.239a7.296 7.296 0 0 1-4.621 1.595h-3.418c-1.464 0-2.637-.38-3.518-1.152-.88-.772-1.322-1.801-1.322-3.065 0-1.268.46-2.275 1.377-3.046.955-.77 2.184-1.155 3.687-1.155z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#10a0cc" d="M64.002 0 41.996 45.123l-.004.002.002.002-.002.004 60.572 33.935L64.002 0zm-28.66 58.764-33.77 69.234 100.201-41.396-66.431-27.838zm73.842 33.873-.004.006-31.6 18.138 48.842 17.215.004.002h.002l-8.73-17.9-8.514-17.461z"/></svg>

After

Width:  |  Height:  |  Size: 314 B

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="none" d="M4.24 4.24h119.53v119.53H4.24z"/><path fill="#293138" d="M109.01 28.64L71.28 6.24c-2.25-1.33-4.77-2-7.28-2s-5.03.67-7.28 2.01l-37.74 22.4c-4.5 2.67-7.28 7.61-7.28 12.96v44.8c0 5.35 2.77 10.29 7.28 12.96l37.73 22.4c2.25 1.34 4.76 2 7.28 2 2.51 0 5.03-.67 7.28-2l37.74-22.4c4.5-2.67 7.28-7.62 7.28-12.96V41.6c0-5.34-2.77-10.29-7.28-12.96zM79.79 98.59l.06 3.22c0 .39-.25.83-.55.99l-1.91 1.1c-.3.15-.56-.03-.56-.42l-.03-3.17c-1.63.68-3.29.84-4.34.42-.2-.08-.29-.37-.21-.71l.69-2.91c.06-.23.18-.46.34-.6.06-.06.12-.1.18-.13.11-.06.22-.07.31-.03 1.14.38 2.59.2 3.99-.5 1.78-.9 2.97-2.72 2.95-4.52-.02-1.64-.9-2.31-3.05-2.33-2.74.01-5.3-.53-5.34-4.57-.03-3.32 1.69-6.78 4.43-8.96l-.03-3.25c0-.4.24-.84.55-1l1.85-1.18c.3-.15.56.04.56.43l.03 3.25c1.36-.54 2.54-.69 3.61-.44.23.06.34.38.24.75l-.72 2.88c-.06.22-.18.44-.33.58a.77.77 0 01-.19.14c-.1.05-.19.06-.28.05-.49-.11-1.65-.36-3.48.56-1.92.97-2.59 2.64-2.58 3.88.02 1.48.77 1.93 3.39 1.97 3.49.06 4.99 1.58 5.03 5.09.05 3.44-1.79 7.15-4.61 9.41zm26.34-60.5l-35.7 22.05c-4.45 2.6-7.73 5.52-7.74 10.89v43.99c0 3.21 1.3 5.29 3.29 5.9-.65.11-1.32.19-1.98.19-2.09 0-4.15-.57-5.96-1.64l-37.73-22.4c-3.69-2.19-5.98-6.28-5.98-10.67V41.6c0-4.39 2.29-8.48 5.98-10.67l37.74-22.4c1.81-1.07 3.87-1.64 5.96-1.64s4.15.57 5.96 1.64l37.74 22.4c3.11 1.85 5.21 5.04 5.8 8.63-1.27-2.67-4.09-3.39-7.38-1.47z"/><path fill="#4FA847" d="M99.12 90.73l-9.4 5.62c-.25.15-.43.31-.43.61v2.46c0 .3.2.43.45.28l9.54-5.8c.25-.15.29-.42.29-.72v-2.17c0-.3-.2-.42-.45-.28z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#293138" d="M112.205 26.129 71.8 2.142A15.326 15.326 0 0 0 64.005 0c-2.688 0-5.386.717-7.796 2.152L15.795 26.14C10.976 28.999 8 34.289 8 40.018v47.975c0 5.729 2.967 11.019 7.796 13.878L56.2 125.858A15.193 15.193 0 0 0 63.995 128a15.32 15.32 0 0 0 7.796-2.142l40.414-23.987c4.819-2.86 7.796-8.16 7.796-13.878V40.007c0-5.718-2.967-11.019-7.796-13.878zm-31.29 74.907.063 3.448c0 .418-.267.889-.588 1.06l-2.046 1.178c-.321.16-.6-.032-.6-.45l-.032-3.394c-1.745.728-3.523.9-4.647.45-.214-.086-.31-.397-.225-.76l.739-3.117c.064-.246.193-.493.364-.643a.726.726 0 0 1 .193-.139c.117-.064.235-.075.332-.032 1.22.407 2.773.214 4.272-.535 1.907-.964 3.18-2.913 3.16-4.84-.022-1.757-.964-2.474-3.267-2.496-2.934.01-5.675-.567-5.718-4.894-.032-3.555 1.81-7.26 4.744-9.595l-.032-3.48c0-.428.257-.9.589-1.07l1.98-1.264c.322-.161.6.042.6.46l.033 3.48c1.456-.578 2.72-.738 3.865-.47.247.063.364.406.257.802l-.77 3.084a1.372 1.372 0 0 1-.354.622.825.825 0 0 1-.203.15c-.108.053-.204.064-.3.053-.525-.118-1.767-.385-3.727.6-2.056 1.038-2.773 2.827-2.763 4.155.022 1.585.825 2.066 3.63 2.11 3.738.063 5.344 1.691 5.387 5.45.053 3.684-1.917 7.657-4.937 10.077zm28.206-64.787L70.89 59.86c-4.765 2.784-8.278 5.911-8.288 11.662v47.107c0 3.437 1.392 5.665 3.523 6.318a12.81 12.81 0 0 1-2.12.204c-2.239 0-4.445-.61-6.383-1.757L17.219 99.408c-3.951-2.345-6.403-6.725-6.403-11.426V40.007c0-4.7 2.452-9.08 6.403-11.426L57.634 4.594a12.555 12.555 0 0 1 6.382-1.756c2.238 0 4.444.61 6.382 1.756l40.415 23.987c3.33 1.981 5.579 5.397 6.21 9.242-1.36-2.86-4.38-3.63-7.902-1.574z"/><path fill="#4fa847" d="m101.614 92.619-10.066 6.018c-.268.16-.46.332-.46.653v2.635c0 .32.214.46.481.3l10.216-6.212c.268-.16.31-.45.31-.77v-2.324c0-.322-.213-.45-.481-.3z"/></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="none" d="M-143.76 4.24h119.53v119.53h-119.53z"/><path fill="#293138" d="M109.01 28.64L71.28 6.24c-2.25-1.33-4.77-2-7.28-2s-5.03.67-7.28 2.01l-37.74 22.4c-4.5 2.67-7.28 7.61-7.28 12.96v44.8c0 5.35 2.77 10.29 7.28 12.96l37.73 22.4c2.25 1.34 4.76 2 7.28 2 2.51 0 5.03-.67 7.28-2l37.74-22.4c4.5-2.67 7.28-7.62 7.28-12.96V41.6c0-5.34-2.77-10.29-7.28-12.96zM79.79 98.59l.06 3.22c0 .39-.25.83-.55.99l-1.91 1.1c-.3.15-.56-.03-.56-.42l-.03-3.17c-1.63.68-3.29.84-4.34.42-.2-.08-.29-.37-.21-.71l.69-2.91c.06-.23.18-.46.34-.6.06-.06.12-.1.18-.13.11-.06.22-.07.31-.03 1.14.38 2.59.2 3.99-.5 1.78-.9 2.97-2.72 2.95-4.52-.02-1.64-.9-2.31-3.05-2.33-2.74.01-5.3-.53-5.34-4.57-.03-3.32 1.69-6.78 4.43-8.96l-.03-3.25c0-.4.24-.84.55-1l1.85-1.18c.3-.15.56.04.56.43l.03 3.25c1.36-.54 2.54-.69 3.61-.44.23.06.34.38.24.75l-.72 2.88c-.06.22-.18.44-.33.58a.77.77 0 01-.19.14c-.1.05-.19.06-.28.05-.49-.11-1.65-.36-3.48.56-1.92.97-2.59 2.64-2.58 3.88.02 1.48.77 1.93 3.39 1.97 3.49.06 4.99 1.58 5.03 5.09.05 3.44-1.79 7.15-4.61 9.41zm19.78-5.41c0 .3-.04.58-.29.72l-9.54 5.8c-.25.15-.45.02-.45-.28v-2.46c0-.3.18-.46.43-.61l9.4-5.62c.25-.15.45-.02.45.28v2.17zm6.56-55.09l-35.7 22.05c-4.45 2.6-7.73 5.52-7.74 10.89v43.99c0 3.21 1.3 5.29 3.29 5.9-.65.11-1.32.19-1.98.19-2.09 0-4.15-.57-5.96-1.64l-37.73-22.4c-3.69-2.19-5.98-6.28-5.98-10.67V41.6c0-4.39 2.29-8.48 5.98-10.67l37.74-22.4c1.81-1.07 3.87-1.64 5.96-1.64s4.15.57 5.96 1.64l37.74 22.4c3.11 1.85 5.21 5.04 5.8 8.63-1.27-2.67-4.09-3.39-7.38-1.47z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#293138" d="M112.205 26.129 71.8 2.142A15.326 15.326 0 0 0 64.005 0c-2.688 0-5.386.717-7.796 2.152L15.795 26.14C10.976 28.999 8 34.289 8 40.018v47.975c0 5.729 2.967 11.019 7.796 13.878L56.2 125.858A15.193 15.193 0 0 0 63.995 128a15.32 15.32 0 0 0 7.796-2.142l40.414-23.987c4.819-2.86 7.796-8.16 7.796-13.878V40.007c0-5.718-2.967-11.019-7.796-13.878zm-31.29 74.907.063 3.448c0 .418-.267.889-.588 1.06l-2.046 1.178c-.321.16-.6-.032-.6-.45l-.032-3.394c-1.745.728-3.523.9-4.647.45-.214-.086-.31-.397-.225-.761l.739-3.116c.064-.246.193-.493.364-.643a.725.725 0 0 1 .193-.139c.117-.064.235-.075.332-.032 1.22.407 2.773.214 4.272-.535 1.907-.964 3.18-2.913 3.16-4.84-.022-1.757-.964-2.474-3.267-2.496-2.934.01-5.675-.567-5.718-4.894-.032-3.555 1.81-7.26 4.744-9.595l-.032-3.48c0-.428.257-.9.589-1.07l1.98-1.264c.322-.161.6.043.6.46l.033 3.48c1.456-.578 2.72-.738 3.865-.47.247.064.364.406.257.802l-.77 3.084a1.372 1.372 0 0 1-.354.622.825.825 0 0 1-.203.15c-.108.053-.204.064-.3.053-.525-.118-1.767-.385-3.727.6-2.056 1.038-2.773 2.827-2.763 4.155.022 1.585.825 2.066 3.63 2.11 3.738.064 5.344 1.691 5.387 5.45.053 3.684-1.917 7.657-4.937 10.077zm21.18-5.794c0 .322-.042.621-.31.771l-10.216 6.211c-.267.161-.482.022-.482-.3V99.29c0-.321.193-.492.46-.653l10.067-6.018c.268-.16.482-.022.482.3zm7.026-58.993L70.89 59.86c-4.765 2.784-8.278 5.911-8.288 11.662v47.107c0 3.437 1.392 5.665 3.523 6.318a12.81 12.81 0 0 1-2.12.204c-2.239 0-4.445-.61-6.383-1.757L17.219 99.408c-3.951-2.345-6.403-6.725-6.403-11.426V40.007c0-4.7 2.452-9.08 6.403-11.426L57.634 4.594a12.555 12.555 0 0 1 6.382-1.756c2.238 0 4.444.61 6.382 1.756l40.415 23.987c3.33 1.981 5.579 5.397 6.21 9.242-1.36-2.86-4.38-3.63-7.902-1.574z"/></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M2246.028 2340.191h-.041c-.983 3.068-1.74 6.398-1.883 10.193-.274 7.13.453 11.467-.37 16.084-.821 4.617-3.246 9.162-9.411 16.286-7.345 8.483-18.98 15.048-32.424 17.264a69.34 69.34 0 0 1-7.917 4.36c10.46 3.944 21.403 4.158 30.077 1.31 15.28-5.015 14.094-8.619 20.939-19.11 2.156-3.305 4.646-5.825 7.148-7.898 7.125 3.11 14.148 5.099 18.52 4.605 2.348-5.451-.059-11.772-4.062-17.746 3.282-10.193-1.698-20.403-12.73-24.013-2.878-.941-5.463-1.382-7.846-1.34Zm8.28 14.97a4.111 4.111 0 0 1 3.194 1.4c1.525 1.728 1.328 4.385-.435 5.934-1.764 1.542-4.42 1.4-5.94-.328-1.519-1.728-1.322-4.385.435-5.933a4.306 4.306 0 0 1 2.747-1.073Zm-68.374 45.381c.125.072.256.137.381.215.131-.048.268-.102.393-.15-.256-.023-.518-.041-.774-.065Zm0 0" style="fill-rule:nonzero;fill:#c3c3c3;fill-opacity:1;stroke-width:4.15748;stroke-linecap:butt;stroke-linejoin:miter;stroke:#dadada;stroke-opacity:1;stroke-miterlimit:4" transform="matrix(.65574 0 0 .65574 -1363.278 -1474.524)"/><path d="M2191.146 2276.785c-5.975-.036-12.099 2.347-17.359 7.458-6.916 6.713-9.06 12.754-7.851 20.295l.334 2.068-2.068-.334c-15.184-2.466-33.984-1.221-55.37 7.428 6.285 2.699 17.823 7.196 30.63 13.344l4.064 1.954-4.415.894c-16.912 3.425-36.975 13.325-55.299 34.932 8.197-.638 24.954-2.61 42.426-2.58 9.716.012 19.29.685 27.087 2.705 7.798 2.025 14.887 6.654 15.887 10.043.995 3.39.43 5.177-.554 7.828-.983 2.65-4.009 6.684-8.197 9.34-4.181 2.663-9.495 4.986-15.011 6.964-11.039 3.95-22.78 6.475-27.963 6.958-1.102.101-1.542.5-1.971 1.269-.423.774-.656 1.984-.691 3.252-.048 1.692.214 2.574.697 3.247.476.667 1.22.935 1.99.989 32.584 2.204 56.943-5.993 74.64-13.01 20.35-9.335 33.211-27.76 36.005-44.35 1.752-10.395 1.376-15.489-.316-19.831-1.685-4.337-4.92-8.191-9.024-15.548-2.633-4.724-4.105-9.365-5.016-13.684l-.197-.911.727-.584c7.541-6.046 13.683-12.64 15.911-17.448-4.575-4.867-12.48-5.891-21.32-4.95l-.727.077-.512-.518c-4.712-4.801-10.562-7.262-16.537-7.297Zm2.651 11.229c2.591-.042 4.879 1.757 5.498 4.324.733 3.02-1.078 6.053-4.044 6.768-2.967.72-5.963-1.15-6.696-4.17-.727-3.02 1.084-6.053 4.05-6.767a5.31 5.31 0 0 1 1.192-.155Zm0 0" style="fill-rule:nonzero;fill:#282828;fill-opacity:1;stroke-width:4.15748;stroke-linecap:butt;stroke-linejoin:miter;stroke:#dadada;stroke-opacity:1;stroke-miterlimit:4" transform="matrix(.65574 0 0 .65574 -1363.278 -1474.524)"/><path d="M2230.897 2301.173a24.817 24.817 0 0 0-5.98.631c-.138.036-.263.072-.4.107-2.275 2.246-4.813 4.504-7.53 6.714.876 3.86 2.175 7.887 4.474 12.003 3.986 7.149 7.274 10.967 9.204 15.93 1.924 4.956 2.264 10.794.47 21.42-2.215 13.178-10.24 27.135-22.958 37.435 9.871-2.877 18.288-8.191 23.858-14.63 6.01-6.946 8.018-10.872 8.721-14.834.703-3.961.048-8.298.328-15.667.179-4.741 1.191-8.893 2.472-12.54l.31-.875.923-.125c8.227-1.066 15.667-3.163 19.51-5.647-1.234-5.552-6.482-9.859-13.428-13.135l-.661-.31-.167-.715c-2.204-9.46-9.59-15.56-19.146-15.762Zm4.778 11.687c.494 0 .983.072 1.447.227 2.538.81 3.926 3.562 3.098 6.147-.822 2.586-3.55 4.021-6.088 3.211-2.538-.81-3.926-3.562-3.098-6.147.656-2.044 2.532-3.438 4.64-3.438Zm0 0" style="fill-rule:nonzero;fill:#757575;fill-opacity:1;stroke-width:4.15748;stroke-linecap:butt;stroke-linejoin:miter;stroke:#dadada;stroke-opacity:1;stroke-miterlimit:4" transform="matrix(.65574 0 0 .65574 -1363.278 -1474.524)"/></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M99.984 33.352a16.706 16.706 0 0 0-4.062.433c-.098.02-.18.05-.27.07a72.854 72.854 0 0 1-5.117 4.563 29.881 29.881 0 0 0 3.04 8.16c2.706 4.86 4.94 7.457 6.25 10.828 1.312 3.371 1.542 7.34.32 14.559-1.504 8.96-6.957 18.45-15.602 25.453 6.71-1.957 12.426-5.57 16.215-9.95 4.09-4.718 5.457-7.39 5.93-10.077.48-2.696.03-5.645.218-10.653.125-2.91.696-5.785 1.688-8.527l.21-.598.626-.078c5.593-.726 10.648-2.156 13.261-3.84-.84-3.773-4.402-6.707-9.129-8.93l-.449-.214-.11-.477c-1.5-6.433-6.523-10.582-13.019-10.722Zm3.254 7.949c.332-.004.664.047.98.148 1.727.551 2.669 2.422 2.106 4.18-.558 1.758-2.41 2.738-4.136 2.187-1.727-.55-2.672-2.425-2.11-4.18.445-1.39 1.723-2.335 3.16-2.335ZM72.965 16.777c-4.059-.027-8.223 1.598-11.8 5.067-4.7 4.566-6.161 8.672-5.337 13.797l.227 1.406-1.403-.227c-10.328-1.675-23.105-.828-37.644 5.051 4.277 1.832 12.117 4.89 20.82 9.066l2.766 1.333-3.004.609C26.098 55.203 12.457 61.934 0 76.62c5.574-.43 16.96-1.777 28.844-1.754 6.601.012 13.11.469 18.41 1.84 5.3 1.375 10.121 4.523 10.8 6.828.676 2.3.294 3.52-.374 5.32-.672 1.805-2.727 4.54-5.575 6.348-2.84 1.813-6.453 3.39-10.207 4.734-7.5 2.684-15.484 4.403-19.007 4.731-.746.07-1.047.336-1.332.86a5.161 5.161 0 0 0-.477 2.214c-.031 1.145.148 1.75.477 2.203.32.457.832.64 1.351.676 22.152 1.492 38.711-4.074 50.738-8.848 13.836-6.34 22.575-18.867 24.473-30.144 1.192-7.067.934-10.527-.21-13.477-1.15-2.949-3.345-5.566-6.134-10.57a32.605 32.605 0 0 1-3.414-9.309l-.129-.617.493-.394c5.125-4.106 9.3-8.594 10.816-11.864-3.11-3.304-8.48-4.003-14.496-3.359l-.492.055-.352-.36c-3.2-3.261-7.18-4.937-11.238-4.957Zm1.797 7.633a3.815 3.815 0 0 1 3.746 2.938 3.79 3.79 0 0 1-2.754 4.601 3.789 3.789 0 0 1-4.547-2.836 3.783 3.783 0 0 1 3.555-4.703Zm35.511 35.465h-.035a25.714 25.714 0 0 0-1.277 6.934c-.184 4.843.309 7.793-.25 10.933-.555 3.137-2.203 6.223-6.402 11.067-4.985 5.765-12.895 10.23-22.036 11.734a47.475 47.475 0 0 1-5.382 2.969c7.109 2.68 14.55 2.828 20.441.886 10.39-3.41 9.586-5.855 14.242-12.988 1.465-2.246 3.156-3.96 4.852-5.37 4.847 2.112 9.617 3.468 12.586 3.132 1.601-3.703-.032-8-2.75-12.067 2.23-6.933-1.157-13.863-8.657-16.32a16.304 16.304 0 0 0-5.332-.91Zm5.625 10.18a2.83 2.83 0 0 1 2.176.949c1.031 1.176.899 2.98-.297 4.035-1.199 1.05-3.007.95-4.039-.227-1.035-1.171-.902-2.976.293-4.03a2.952 2.952 0 0 1 1.867-.727Zm-46.48 30.843.266.149.27-.106c-.184-.011-.36-.02-.536-.043Zm0 0" /></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#ff6384" d="M28.637 103.357c.256.32.416.736.416 1.12 0 .993-.832 1.76-1.824 1.76-.48 0-.992-.191-1.376-.607-1.216-1.377-2.976-2.209-4.736-2.209-4.193 0-7.297 3.2-7.297 7.65 0 4.416 3.104 7.648 7.297 7.648 1.76 0 3.52-.768 4.736-2.176a2.02 2.02 0 0 1 1.408-.608c.992 0 1.76.8 1.76 1.728 0 .384-.128.8-.384 1.12-1.632 1.856-4.032 3.328-7.52 3.328-6.305 0-11.202-4.48-11.202-11.04 0-6.562 4.897-11.042 11.202-11.042 3.488 0 5.888 1.472 7.52 3.328zM44.8 121.92a1.687 1.687 0 0 1-1.696-1.696v-8.193c0-2.368-1.248-3.104-3.136-3.104-1.665 0-3.137.992-3.905 2.048v9.25c0 .927-.768 1.695-1.728 1.695a1.687 1.687 0 0 1-1.696-1.696v-18.37c0-.896.736-1.664 1.76-1.664.896 0 1.664.768 1.664 1.664v6.529c1.024-1.216 3.008-2.496 5.473-2.496 3.328 0 4.992 1.76 4.992 4.896v9.441c0 .928-.768 1.696-1.728 1.696zm17.185 0h-.192c-.448 0-1.536-.384-1.536-1.568v-.288c-1.12 1.312-2.944 2.048-4.96 2.048-2.529 0-5.409-1.696-5.409-5.12 0-3.553 2.88-5.025 5.409-5.025 2.048 0 3.872.672 4.96 1.984v-2.368c0-1.76-1.472-2.848-3.584-2.848-1.344 0-2.56.352-3.68 1.184a1.313 1.313 0 0 1-.705.224c-.64 0-1.344-.512-1.344-1.344 0-.256.096-.544.256-.736 1.216-1.536 4.065-2.176 6.017-2.176 3.424 0 6.465 1.44 6.465 5.6v8.737a1.708 1.708 0 0 1-1.697 1.696zm-1.728-6.048c-.768-1.024-2.176-1.536-3.648-1.536-1.824 0-3.233 1.024-3.233 2.72 0 1.632 1.409 2.688 3.233 2.688 1.472 0 2.88-.512 3.648-1.568zm13.953-6.529c-1.376.128-2.688.704-3.52 1.888v8.993a1.708 1.708 0 0 1-1.696 1.696h-.064c-.929 0-1.665-.768-1.665-1.696v-12.481c0-.896.736-1.664 1.76-1.664.897 0 1.665.768 1.665 1.664v.8c.832-1.12 2.048-2.464 3.68-2.464.928 0 1.504.64 1.504 1.472 0 1.024-.704 1.664-1.664 1.792zm9.633 12.77c-2.624 0-4-1.409-4-4.001v-8.833h-1.28c-.8 0-1.473-.672-1.473-1.536 0-.8.672-1.472 1.473-1.472h1.28v-2.72c0-.929.768-1.697 1.76-1.697.928 0 1.664.768 1.664 1.696v2.72h1.888c.8 0 1.44.673 1.44 1.537 0 .8-.64 1.472-1.44 1.472h-1.888v7.969c0 1.184.672 1.824 1.472 1.824.224 0 .512-.096.704-.096.928 0 1.504.64 1.504 1.472 0 1.024-.928 1.664-3.104 1.664zm7.36-.033c-1.247 0-2.271-1.056-2.271-2.272a2.28 2.28 0 0 1 2.272-2.272 2.28 2.28 0 0 1 2.272 2.272c0 1.216-1.024 2.272-2.272 2.272zm5.665 5.92c-1.984 0-3.52-.512-3.52-1.76 0-.768.64-1.376 1.376-1.376.48 0 .832.32 1.6.32 1.312 0 2.272-.8 2.272-2.625v-14.817c0-.896.736-1.664 1.76-1.664.896 0 1.664.768 1.664 1.664v14.817c0 3.329-1.728 5.441-5.152 5.441Zm5.537-25.73a2.11 2.11 0 0 1-2.113 2.111 2.11 2.11 0 0 1-2.112-2.112c0-1.152.96-2.08 2.112-2.08 1.152 0 2.113.928 2.113 2.08zm9.248 19.841c-2.08 0-4.833-.64-6.049-2.016a1.28 1.28 0 0 1-.32-.832c0-.8.704-1.44 1.472-1.44.256 0 .544.064.769.224 1.184.8 2.784 1.376 4.256 1.376 2.016 0 3.008-.864 3.008-2.048 0-3.008-9.345-.832-9.345-6.785 0-2.528 2.209-4.704 6.145-4.704 2.08 0 4.416.64 5.473 1.856.192.224.288.48.288.768 0 .736-.64 1.312-1.377 1.312-.224 0-.48-.064-.704-.192-.992-.672-2.304-1.088-3.68-1.088-1.728 0-2.816.832-2.816 1.888 0 2.72 9.313.672 9.313 6.817 0 2.752-2.273 4.864-6.433 4.864z"/><path fill="#36a2eb" d="M100.408 46.037c-12.783.25-10.12 8.343-19.129 10.39-9.152 2.079-10.597-22.352-19.746-22.352-9.15 0-11.178 23.731-22.636 40.024l-.326.462 24.565 14.18 37.273-21.517V46.037Z"/><path fill="#ffce56" d="M100.408 45.3c-4.279-5.492-7.181-11.806-13.426-11.806-11.052 0-8.143 18.028-20.357 18.028-12.215 0-13.498-19.391-27.336-1.163-4.409 5.808-7.958 12.284-10.745 18.412l34.591 19.97 37.273-21.517V45.3Z"/><path fill="#fe6184" d="M25.863 52.768c4.193-11.613 6.003-21.018 14.009-21.018 12.212 0 15.12 34.31 25.59 30.82 10.468-3.489 9.305-22.098 25.59-22.098 3.1 0 6.265 1.899 9.356 4.971v21.78L63.136 88.74 25.862 67.224V52.768Z" opacity=".8"/><path fill="#e7e9ed" d="m63.107 91.438-39.6-22.86V22.86L63.108 0l39.6 22.86v45.719ZM28.16 65.893l34.947 20.174 34.947-20.174V25.546L63.107 5.372 28.16 25.546z"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#36a2eb" d="M116.217 64.445c-17.894.351-14.167 11.679-26.778 14.544C76.628 81.899 74.605 47.7 61.797 47.7c-12.81 0-15.647 33.221-31.686 56.027l-.458.646 34.388 19.85 52.176-30.121z"/><path fill="#ffce56" d="M116.217 63.414c-5.99-7.688-10.054-16.526-18.795-16.526-15.47 0-11.399 25.236-28.496 25.236-17.098 0-18.896-27.145-38.266-1.628-6.172 8.13-11.14 17.196-15.042 25.774l48.423 27.954 52.176-30.121z"/><path fill="#fe6184" d="M11.863 73.867c5.87-16.257 8.404-29.423 19.611-29.423 17.097 0 21.166 48.031 35.823 43.145 14.654-4.884 13.026-30.935 35.823-30.935 4.339 0 8.77 2.658 13.097 6.958v30.49l-52.176 30.121-52.178-30.121V73.867Z" opacity=".8"/><path fill="#e7e9ed" d="M64 128 8.566 96.001V32L64 0l55.434 32v64zM15.079 92.241 64 120.482l48.921-28.241V35.76L64 7.519 15.079 35.76Z"/></svg>

After

Width:  |  Height:  |  Size: 889 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path stroke="#ff6384" d="M61.797 47.2c-3.419 0-6.154 2.232-8.516 5.769-2.362 3.536-4.42 8.425-6.582 14.011-4.322 11.173-9.036 25.139-16.998 36.46l-.773 1.091 35.113 20.27 52.676-30.41V63.936l-.51.01c-9.053.177-12.817 3.221-15.734 6.495-2.918 3.275-4.989 6.662-11.145 8.061-1.497.34-2.791.142-4.006-.469-1.214-.61-2.345-1.652-3.412-3.013-2.133-2.723-3.985-6.701-5.838-10.791-1.853-4.09-3.71-8.294-5.943-11.516-2.234-3.222-4.908-5.514-8.332-5.514zm0 1c2.98 0 5.361 1.984 7.51 5.083 2.148 3.1 4 7.264 5.855 11.36 1.855 4.095 3.711 8.122 5.961 10.994 1.125 1.435 2.352 2.588 3.75 3.29 1.398.703 2.97.937 4.676.55 6.455-1.467 8.826-5.176 11.672-8.37 2.781-3.121 6.093-5.825 14.496-6.109v28.814L64.04 123.647l-33.662-19.431.14-.2v-.001C38.596 92.53 43.321 78.482 47.63 67.343c2.154-5.57 4.208-10.412 6.482-13.817 2.274-3.405 4.697-5.326 7.684-5.326z" color="#000" font-family="sans-serif" font-weight="400" overflow="visible" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"/><path stroke="#ff6384" d="M97.422 46.389c-4.004 0-6.823 1.67-8.951 4.113-2.128 2.443-3.612 5.636-5.137 8.787-1.525 3.15-3.088 6.258-5.28 8.547-2.19 2.29-4.977 3.787-9.128 3.787-8.285 0-12.86-6.604-17.989-10.287-2.564-1.842-5.36-2.925-8.687-1.826-3.327 1.098-7.118 4.267-11.988 10.683-6.202 8.17-11.187 17.267-15.1 25.87l-.187.414L64.04 124.8l52.676-30.408v-31.15l-.106-.136c-2.971-3.814-5.484-7.95-8.388-11.173-2.905-3.223-6.262-5.545-10.801-5.545zm0 1c4.202 0 7.248 2.096 10.058 5.215 2.776 3.08 5.268 7.14 8.237 10.972v30.238L64.04 123.646 16.277 96.074C20.14 87.64 25.012 78.764 31.06 70.8c4.814-6.342 8.511-9.35 11.503-10.338 2.993-.988 5.348-.07 7.792 1.685 4.886 3.51 9.758 10.477 18.572 10.477 4.397 0 7.514-1.653 9.851-4.096 2.338-2.442 3.929-5.644 5.457-8.802 1.529-3.159 2.997-6.276 4.99-8.565 1.995-2.289 4.466-3.771 8.198-3.771z" color="#000" font-family="sans-serif" font-weight="400" overflow="visible" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"/><path stroke="#ff6384" d="M31.475 43.943c-2.9 0-5.29.867-7.276 2.418-1.986 1.552-3.573 3.768-4.976 6.467-2.808 5.4-4.902 12.76-7.83 20.87l-.03.081v20.612l52.678 30.41 52.676-30.41V63.404l-.147-.146c-4.375-4.348-8.908-7.104-13.45-7.104-5.795 0-10.096 1.67-13.458 4.25s-5.786 6.047-7.935 9.63c-2.15 3.581-4.03 7.285-6.262 10.368-2.231 3.084-4.792 5.535-8.326 6.713-1.713.571-3.203.375-4.649-.416-1.446-.79-2.833-2.208-4.162-4.08-2.658-3.744-5.077-9.272-7.57-14.97-2.494-5.7-5.066-11.57-8.121-16.057-3.056-4.487-6.654-7.649-11.162-7.649Zm0 1c4.04 0 7.362 2.845 10.336 7.211 2.973 4.367 5.538 10.197 8.03 15.895 2.494 5.698 4.912 11.262 7.673 15.15 1.38 1.944 2.85 3.476 4.498 4.377 1.648.901 3.491 1.137 5.443.487 3.793-1.265 6.523-3.9 8.82-7.075 2.298-3.174 4.184-6.9 6.309-10.441 2.125-3.541 4.483-6.892 7.686-9.35 3.202-2.457 7.245-4.043 12.85-4.043 4.086 0 8.366 2.516 12.597 6.68v29.978L64.04 123.647 12.363 93.812V73.953c2.925-8.112 5.03-15.435 7.748-20.664 1.365-2.624 2.879-4.715 4.703-6.14 1.825-1.426 3.957-2.206 6.66-2.206z" color="#000" font-family="sans-serif" font-weight="400" opacity=".8" overflow="visible" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;isolation:auto;mix-blend-mode:normal;solid-color:#000;solid-opacity:1"/><path fill="#ff6384" d="M64 128 8.566 96.001V32L64 0l55.434 32v64ZM15.079 92.241 64 120.482l48.921-28.241V35.76L64 7.519 15.079 35.76Z"/></svg>

After

Width:  |  Height:  |  Size: 4.5 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 fill="#4285f4" d="m38.239 0 .513 1.462 21.927 62.505L38.239 128 128 63.967ZM0 .406l.268 1.02 16.455 62.541L0 127.598l23.207-11.048 16.529-52.583-16.528-52.582Zm1.493 1.79 20.9 9.89 16.309 51.881-16.308 51.883-20.9 9.95 16.251-61.833Zm38.705.406 86.11 61.365-86.11 61.43 21.526-61.43Z"/></svg>

After

Width:  |  Height:  |  Size: 361 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#aecbfa" d="M128 63.965 38.957 0l22.26 63.966Z"/><path fill="#4285f4" d="M38.957 128 128 63.965H61.217zM16.696 63.965 0 128l22.332-10.718 16.625-53.317Z"/><path fill="#aecbfa" d="M22.332 10.649 0-.001l16.696 63.966h22.26Z"/></svg>

After

Width:  |  Height:  |  Size: 305 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#4285f4" d="m0 0 16.695 63.967L0 128l22.332-10.717 16.625-53.316L22.332 10.65Zm38.957 0 22.26 63.967L38.957 128 128 63.967Z"/></svg>

After

Width:  |  Height:  |  Size: 207 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

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#57f287" d="m27.593 54.125-4.298 4.143v-4.126l-7.683 3.723a3.254 3.254 0 0 1-3.263-.004l-5.345-3.105a4.655 4.655 0 0 0-4.657-.012 4.66 4.66 0 0 0-2.34 4.028L0 61.462v12.412l4.303-4.142v4.142l7.661-3.672a3.255 3.255 0 0 1 3.333-.037l5.298 3.08a4.658 4.658 0 0 0 6.996-4.015l.007-2.69zM22.96 67.42a1 1 0 0 1-1.473.882l-3.779-2.02a8.657 8.657 0 0 0-8.39.125L6.138 68.23c-.667.383-1.499-.099-1.499-.868v-6.725c0-.77.836-1.253 1.503-.866l3.146 1.822a8.657 8.657 0 0 0 8.45.127l3.745-2.022a1.001 1.001 0 0 1 1.476.88z"/><path d="M79.184 54.205V68.29c0 1.333.373 2.372 1.12 3.12.764.747 1.796 1.12 3.096 1.12.568 0 1.21-.089 1.925-.267l-.341-2.973a2.16 2.16 0 0 1-.683.097c-.487 0-.893-.138-1.218-.414-.325-.293-.488-.731-.488-1.316V54.205Zm45.404 0v7.75c-.958-1.17-2.282-1.755-3.972-1.755-1.609 0-2.949.6-4.021 1.803-1.072 1.186-1.609 2.664-1.609 4.435 0 1.771.537 3.258 1.609 4.46s2.412 1.803 4.02 1.803c1.69 0 3.015-.585 3.973-1.754v1.535H128V54.205Zm-86.177 1.194-6.604.024v17.059h6.604a9.447 9.447 0 0 0 3.265-.56 8.539 8.539 0 0 0 2.73-1.633c.796-.715 1.43-1.617 1.9-2.705.472-1.105.707-2.324.707-3.656 0-1.77-.406-3.314-1.218-4.63-.813-1.316-1.86-2.29-3.144-2.925-1.283-.65-2.697-.974-4.24-.974zm-.146 3.509c1.51 0 2.745.422 3.704 1.267.975.845 1.462 2.096 1.462 3.753s-.487 2.916-1.462 3.777c-.959.845-2.194 1.268-3.704 1.268h-2.876v-10.04Zm34.2 1.097c-1.787 0-3.322.633-4.606 1.9-1.267 1.251-1.901 2.762-1.901 4.533 0 1.771.634 3.282 1.9 4.533 1.285 1.235 2.82 1.852 4.607 1.852a6.5 6.5 0 0 0 2.948-.682 6.494 6.494 0 0 0 2.267-1.925l-2.73-1.999c-.26.439-.609.788-1.047 1.048-.44.26-.918.382-1.438.366-.926-.017-1.69-.317-2.291-.902-.585-.601-.877-1.357-.877-2.266 0-.926.292-1.69.877-2.291.601-.618 1.365-.918 2.29-.902 1.057.033 1.877.496 2.462 1.39l2.778-2.023a6.434 6.434 0 0 0-2.29-1.926 6.414 6.414 0 0 0-2.95-.706zm20.188 0c-1.788 0-3.323.633-4.606 1.9-1.268 1.251-1.901 2.762-1.901 4.533 0 1.771.633 3.282 1.9 4.533 1.284 1.235 2.82 1.852 4.607 1.852 1.787 0 3.314-.617 4.581-1.852 1.283-1.25 1.925-2.762 1.925-4.533 0-1.77-.642-3.282-1.925-4.533-1.267-1.267-2.794-1.9-4.581-1.9zm-33.256.073c-1.38 0-2.55.381-3.509 1.145-.958.764-1.438 1.706-1.438 2.827 0 1.43.69 2.453 2.072 3.07.471.196 1.04.342 1.706.44.682.08 1.25.13 1.706.145.47.017.877.114 1.218.293.341.162.512.414.512.755 0 .455-.187.813-.56 1.073-.374.243-.886.365-1.536.365-1.283 0-2.16-.528-2.632-1.584l-2.949.926c.374 1.04 1.065 1.869 2.072 2.486 1.023.601 2.177.902 3.46.902 1.593 0 2.9-.374 3.924-1.121 1.023-.764 1.535-1.763 1.535-2.998 0-1.413-.723-2.42-2.169-3.022-.503-.21-1.226-.357-2.169-.438-.942-.098-1.69-.228-2.242-.39-.552-.179-.828-.504-.828-.975 0-.374.17-.69.511-.95.358-.26.805-.39 1.34-.39.537 0 .984.146 1.341.438.358.276.593.65.707 1.121l2.9-.804c-.276-1.007-.853-1.811-1.73-2.413-.861-.6-1.942-.901-3.242-.901zm-10.438.34v12.064h3.338V60.419Zm51.996 0v6.264c0 1.885.472 3.347 1.414 4.387.959 1.04 2.226 1.56 3.802 1.56 1.51 0 2.705-.537 3.582-1.61h.049v1.463h3.363V60.419h-3.412v5.824c0 1.105-.244 1.958-.731 2.56-.488.6-1.162.9-2.023.9-.796 0-1.438-.292-1.925-.876-.471-.585-.707-1.422-.707-2.51v-5.898zm20.514 2.755c.877 0 1.616.317 2.218.95.6.618.901 1.39.901 2.315 0 .926-.3 1.706-.901 2.34-.602.617-1.34.926-2.218.926-.877 0-1.609-.309-2.193-.926-.585-.618-.878-1.397-.878-2.34 0-.942.293-1.722.878-2.34.584-.617 1.316-.925 2.193-.925zm-28.816.097c.828-.016 1.527.284 2.095.902.585.601.878 1.365.878 2.29 0 .91-.293 1.674-.878 2.291a2.694 2.694 0 0 1-2.095.878c-.829.016-1.536-.277-2.12-.878-.57-.617-.854-1.38-.854-2.29 0-.926.285-1.69.853-2.291.585-.618 1.292-.918 2.12-.902z"/></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="#57f287" d="m127.978 18.202-19.935 19.21V18.28L72.409 35.544a15.09 15.09 0 0 1-15.133-.017L32.484 21.125a21.59 21.59 0 0 0-21.599-.056A21.616 21.616 0 0 0 .033 39.753L0 52.226v57.571l19.957-19.21v19.21l35.534-17.03a15.097 15.097 0 0 1 15.454-.173l24.577 14.28a21.604 21.604 0 0 0 21.598.062 21.597 21.597 0 0 0 10.847-18.679L128 75.785ZM106.49 79.86c0 3.51-3.737 5.75-6.832 4.093L82.13 74.58a40.15 40.15 0 0 0-38.916.582l-14.74 8.458c-3.094 1.775-6.953-.46-6.953-4.026v-31.19c0-3.577 3.876-5.812 6.97-4.021l14.59 8.452a40.152 40.152 0 0 0 39.193.588l17.368-9.378c3.094-1.67 6.848.57 6.848 4.087z"/></svg>

After

Width:  |  Height:  |  Size: 679 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#57f287" d="m27.594 54.125-4.3 4.143v-4.125l-7.683 3.722a3.254 3.254 0 0 1-3.261-.004l-5.346-3.105a4.655 4.655 0 0 0-4.656-.012 4.66 4.66 0 0 0-2.34 4.027L0 61.463v12.41l4.303-4.14v4.14l7.662-3.672a3.255 3.255 0 0 1 3.332-.037l5.299 3.08a4.658 4.658 0 0 0 6.996-4.014l.006-2.69-.004-12.415zm51.59.08V68.29c0 1.333.374 2.373 1.12 3.121.765.747 1.796 1.12 3.096 1.12.568 0 1.21-.088 1.924-.266l-.34-2.975a2.16 2.16 0 0 1-.683.098c-.487 0-.894-.138-1.219-.414-.325-.293-.486-.732-.486-1.317v-13.45h-3.412zm45.404 0v7.75c-.958-1.17-2.283-1.756-3.973-1.756-1.609 0-2.947.602-4.02 1.805-1.071 1.186-1.609 2.663-1.609 4.434 0 1.77.538 3.258 1.61 4.46s2.411 1.803 4.02 1.803c1.69 0 3.014-.585 3.972-1.754v1.535H128V54.205h-3.412zM38.41 55.398l-6.603.026v17.058h6.603a9.447 9.447 0 0 0 3.266-.56 8.539 8.539 0 0 0 2.73-1.633c.796-.715 1.43-1.617 1.9-2.705.473-1.105.708-2.324.708-3.656 0-1.77-.407-3.313-1.22-4.63-.812-1.315-1.86-2.29-3.144-2.925-1.283-.65-2.697-.975-4.24-.975zm-.144 3.51c1.51 0 2.744.423 3.703 1.268.975.845 1.463 2.095 1.463 3.752 0 1.657-.488 2.916-1.463 3.777-.96.845-2.193 1.268-3.703 1.268h-2.877v-10.04l2.877-.025zm-16.286.67a1.001 1.001 0 0 1 .979 1l.002 6.842a1 1 0 0 1-1.475.883l-3.779-2.022a8.657 8.657 0 0 0-8.389.125l-3.18 1.824c-.666.383-1.5-.1-1.5-.869v-6.724c0-.77.838-1.253 1.505-.866l3.144 1.823a8.657 8.657 0 0 0 8.451.127l3.744-2.024a1.001 1.001 0 0 1 .498-.119zm50.485.428c-1.787 0-3.322.631-4.606 1.898-1.267 1.251-1.902 2.763-1.902 4.533 0 1.771.634 3.283 1.9 4.534 1.285 1.235 2.82 1.851 4.608 1.851a6.5 6.5 0 0 0 2.947-.681 6.494 6.494 0 0 0 2.268-1.924l-2.73-2c-.26.439-.61.789-1.048 1.049-.44.26-.917.38-1.437.365-.926-.017-1.69-.317-2.291-.902-.585-.601-.877-1.357-.877-2.266 0-.926.292-1.69.877-2.291.6-.618 1.366-.918 2.29-.902 1.058.033 1.877.496 2.462 1.39l2.777-2.023a6.434 6.434 0 0 0-2.289-1.926 6.414 6.414 0 0 0-2.95-.705zm20.187 0c-1.788 0-3.322.631-4.605 1.898-1.268 1.251-1.9 2.763-1.9 4.533 0 1.771.633 3.283 1.9 4.534 1.284 1.235 2.818 1.851 4.605 1.851 1.787 0 3.315-.616 4.582-1.851 1.283-1.25 1.924-2.763 1.924-4.534 0-1.77-.64-3.282-1.924-4.533-1.267-1.267-2.795-1.898-4.582-1.898zm-33.256.072c-1.38 0-2.548.38-3.507 1.145-.958.764-1.44 1.707-1.44 2.828 0 1.43.69 2.451 2.072 3.068.471.196 1.042.344 1.708.442.682.08 1.249.13 1.705.144.47.017.877.114 1.218.293.341.162.512.415.512.756 0 .455-.187.812-.56 1.072-.374.243-.886.365-1.536.365-1.283 0-2.16-.528-2.632-1.584l-2.95.926c.374 1.04 1.066 1.87 2.073 2.487 1.023.6 2.178.902 3.46.902 1.594 0 2.9-.374 3.924-1.121 1.023-.764 1.536-1.763 1.536-2.998 0-1.413-.724-2.422-2.17-3.024-.503-.21-1.225-.356-2.168-.437-.942-.098-1.69-.229-2.243-.39-.552-.18-.828-.504-.828-.975 0-.374.17-.69.51-.95.358-.26.807-.39 1.342-.39.537 0 .983.145 1.34.437.358.276.593.65.707 1.121l2.9-.802c-.276-1.007-.853-1.812-1.73-2.414-.861-.6-1.943-.9-3.243-.9zm-10.437.34v12.064h3.338V60.42l-3.338-.002zm51.996 0v6.264c0 1.885.472 3.346 1.414 4.386.96 1.04 2.227 1.56 3.803 1.56 1.51 0 2.705-.535 3.582-1.608h.049v1.462h3.361V60.42h-3.41v5.822c0 1.105-.246 1.959-.733 2.56-.488.6-1.162.901-2.023.901-.796 0-1.437-.293-1.924-.877-.47-.585-.707-1.422-.707-2.51V60.42l-3.412-.002zm20.514 2.756c.877 0 1.617.316 2.219.949.6.618.9 1.39.9 2.314 0 .926-.3 1.706-.9 2.34-.603.617-1.341.926-2.22.926-.876 0-1.609-.309-2.193-.926-.585-.618-.877-1.397-.877-2.34 0-.941.292-1.721.877-2.34.584-.616 1.317-.923 2.194-.923zm-28.817.096c.828-.016 1.528.284 2.096.902.585.6.879 1.366.879 2.29 0 .91-.294 1.675-.879 2.292a2.694 2.694 0 0 1-2.096.877c-.829.016-1.535-.276-2.119-.877-.57-.617-.853-1.381-.853-2.291 0-.926.283-1.69.851-2.291.585-.618 1.293-.918 2.121-.902z"/></svg>

After

Width:  |  Height:  |  Size: 3.6 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"><defs><linearGradient id="a" x1="86.364" x2="86.364" y1="337.96" y2="7.121" gradientTransform="translate(-2.427 -1.8) scale(.37233)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#f40a0b"/><stop offset="1" stop-color="#f5e710"/></linearGradient><linearGradient id="b" x1="216.108" x2="216.108" y1="348.988" y2="7.277" gradientTransform="translate(-2.427 -1.8) scale(.37233)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#f40a0b"/><stop offset="1" stop-color="#f5e710"/></linearGradient></defs><path fill="#111" fill-rule="evenodd" d="M27.62 99.429c1.207 9.57 6.408 16.781 14.37 23.858l-2.869-1.447C16.496 112.109.68 89.617.68 63.453.68 30.212 26.334 2.573 59.522.107 26.334 2.574.679 30.212.679 63.453.68 30.212 26.334 2.573 59.522.107 21.509 7.613-14.923 51.524 27.62 99.43" clip-rule="evenodd"/><path fill="#111" fill-rule="evenodd" d="M114.397 43.214C111.528 22.652 95.739 8.257 66.974 0c33.938 1.501 60.719 29.488 60.719 63.453 0 35.091-26.432 62.22-60.772 63.775-3.244.161-6.488-.402-9.651-1.394V54.258q1.568-2.372 0-4.745V34.287h3.512c-1.368-.912-2.52-1.609-3.512-2.038v-4.396c18.417 7.023 26.968 7.828 25.681 2.332 1.609 4.53.215 6.595-4.182 6.14-5.066-.778-8.203-.43-9.436 1.071q13.632 6.756 14.557 13.11c.857 7.13-2.52 14.985-10.134 23.59-4.798 5.978-2.305 12.331 5.442 13.35 24.047-1.18 35.788-15.95 35.199-44.232m-57.127 82.62c-7.345-2.278-13.94-6.863-17.157-10.053-5.683-5.897-9.543-15.334-10.964-28.952 0-.08-.027-.16-.027-.241v-4.61c.885-10.938 8.176-18.632 21.929-23.055 3.11-1.528 5.2-3.083 6.219-4.665zm0-76.32c-.43-.698-1.1-1.395-1.93-2.118-.75-.751-2.36-1.502-4.799-2.225-5.576-.161-8.605 1.233-9.088 4.208-9.463-4.208-9.73-9.007-.83-14.368 1.742-.67 4.289-.912 7.666-.778-1.394-6.166.965-8.551 7.104-7.104.644.241 1.26.483 1.877.724v4.396c-2.815-1.313-3.914-.643-3.324 2.038h3.324z" clip-rule="evenodd"/><path fill="url(#a)" fill-rule="evenodd" d="M27.248 100.173c1.207 9.57 6.407 16.782 14.37 23.86l-2.87-1.449C16.124 112.854.308 90.362.308 64.198.308 30.957 25.963 3.318 59.15.852 25.962 3.318.307 30.957.307 64.198c0-33.241 25.655-60.88 58.842-63.346-38.013 7.506-74.444 51.417-31.9 99.321" clip-rule="evenodd"/><path fill="url(#b)" fill-rule="evenodd" d="M114.024 43.958C111.156 23.397 95.366 9.001 66.602.745c33.938 1.5 60.719 29.488 60.719 63.453 0 35.09-26.432 62.22-60.773 63.775-3.244.16-6.487-.402-9.65-1.394V55.003q1.568-2.373 0-4.745V35.031h3.511c-1.367-.911-2.52-1.608-3.511-2.037v-4.396c18.416 7.023 26.968 7.827 25.681 2.332 1.608 4.53.215 6.594-4.182 6.139-5.067-.778-8.203-.43-9.436 1.072q13.631 6.756 14.556 13.109c.858 7.13-2.52 14.985-10.133 23.59-4.798 5.978-2.305 12.332 5.442 13.35 24.046-1.179 35.788-15.95 35.198-44.232m-57.126 82.62c-7.346-2.278-13.94-6.862-17.157-10.052-5.683-5.898-9.544-15.334-10.964-28.952 0-.08-.027-.16-.027-.241v-4.611c.884-10.938 8.176-18.631 21.928-23.055 3.11-1.528 5.2-3.082 6.22-4.664zm0-76.32c-.43-.697-1.1-1.394-1.93-2.118-.751-.75-2.36-1.501-4.8-2.225-5.575-.16-8.604 1.233-9.087 4.209-9.463-4.209-9.731-9.007-.83-14.369 1.742-.67 4.288-.911 7.666-.777-1.394-6.166.965-8.552 7.104-7.104.643.241 1.26.482 1.877.724v4.396c-2.815-1.314-3.914-.643-3.325 2.037h3.325z" clip-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f4790e" d="M66.804 0c28.932 8.305 44.814 22.787 47.699 43.468.593 28.447-11.215 43.303-35.402 44.49-7.792-1.026-10.3-7.414-5.474-13.427 7.658-8.656 11.053-16.559 10.19-23.731-.62-4.26-5.5-8.654-14.64-13.184 1.24-1.51 4.395-1.861 9.491-1.08 4.422.46 5.825-1.616 4.208-6.172 1.294 5.527-7.308 4.718-25.832-2.347-.62-.243-1.24-.486-1.887-.728-6.175-1.456-8.547.943-7.145 7.144-3.397-.135-5.96.11-7.712.784-8.952 5.393-8.682 10.217.837 14.45.485-2.992 3.531-4.395 9.14-4.233 2.453.728 4.07 1.483 4.824 2.238.836.728 1.512 1.43 1.943 2.13 1.052 1.591 1.052 3.184 0 4.775-1.025 1.591-3.127 3.153-6.255 4.69-13.833 4.45-21.168 12.188-22.058 23.19v4.637c0 .08.027.162.027.243 1.429 13.697 5.314 23.188 11.03 29.12 3.236 3.209 9.868 7.82 17.256 10.111 3.182.998 6.445 1.566 9.708 1.405 34.54-1.564 61.125-28.852 61.125-64.148C127.877 29.662 100.94 1.51 66.804 0zM59.31.108a63.999 63.999 0 0 0-15.024 2.943A63.645 63.645 0 0 0 23.6 14.348a64.22 64.22 0 0 0-8.345 8.202A64.182 64.182 0 0 0 5.84 37.39a63.552 63.552 0 0 0-4.543 14.2A63.616 63.616 0 0 0 .123 63.826c0 26.317 15.91 48.938 38.667 58.726l2.885 1.457c-8.008-7.118-13.24-14.37-14.453-23.997C-15.57 51.827 21.074 7.658 59.309.108Zm-4.723 31.69c.578-.068 1.396.144 2.458.64.998.431 2.156 1.134 3.531 2.05H53.7c-.37-1.684-.077-2.579.886-2.69z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#FF5500" d="M89.258 0c-5.766 0-10.813 3.172-13.582 7.824h-6.88c-20.952 0-38.105 17.153-38.105 38.106v52.61c-4.652 2.776-7.82 7.82-7.82 13.581 0 8.692 7.145 15.848 15.84 15.848s15.84-7.153 15.84-15.848c0-5.766-3.172-10.812-7.824-13.582V86.848c0-12.282 9.785-22.067 22.07-22.067h6.879c2.77 4.653 7.816 7.824 13.582 7.824 8.691 0 15.84-7.152 15.84-15.843 0-8.688-7.145-15.84-15.84-15.84-5.766 0-10.813 3.172-13.582 7.824h-6.88c-8.222 0-15.827 2.691-22.07 7.172V45.93c-.062-12.22 9.848-22.133 22.067-22.067h6.883c2.77 4.653 7.816 7.825 13.582 7.825 8.695 0 15.84-7.153 15.84-15.844C105.098 7.152 97.953 0 89.258 0Zm0 .992c8.148 0 14.847 6.707 14.847 14.852 0 8.148-6.699 14.851-14.847 14.851-5.508 0-10.348-3.07-12.91-7.574l-.141-.25h-7.41c-12.758-.066-23.129 10.3-23.063 23.063v11.882l.793-.601c6.215-4.692 13.93-7.477 22.27-7.477h7.41l.14-.25c2.563-4.504 7.403-7.574 12.91-7.574 8.15 0 14.848 6.703 14.848 14.848 0 8.148-6.703 14.851-14.847 14.851-5.508 0-10.348-3.07-12.91-7.574l-.141-.25h-7.41a22.966 22.966 0 0 0-23.063 23.059V99.07l.254.145c4.5 2.562 7.57 7.394 7.57 12.906 0 8.152-6.695 14.856-14.847 14.856-8.148 0-14.848-6.707-14.848-14.856 0-5.508 3.067-10.34 7.57-12.906l.25-.145V45.93c0-20.41 16.704-37.114 37.114-37.114h7.41l.14-.25C78.91 4.062 83.75.992 89.258.992Zm0 8.035c-3.774-.039-6.852 3.043-6.813 6.817-.035 3.773 3.043 6.855 6.817 6.816 3.804-.004 6.808-3.012 6.808-6.816 0-3.801-3.004-6.813-6.808-6.817Zm-.008.993h.008c3.289 0 5.82 2.539 5.82 5.824 0 3.289-2.531 5.824-5.82 5.824h-.008a5.746 5.746 0 0 1-5.813-5.816v-.012a5.745 5.745 0 0 1 5.813-5.82Zm.008 39.93c-3.774-.036-6.848 3.042-6.813 6.812-.039 3.773 3.04 6.851 6.813 6.808 3.773.043 6.855-3.035 6.812-6.808 0-3.797-3.004-6.809-6.808-6.813Zm-.008.991h.008c3.289 0 5.82 2.54 5.82 5.82v.009a5.737 5.737 0 0 1-5.816 5.812h-.012a5.736 5.736 0 0 1-5.813-5.812v-.012a5.744 5.744 0 0 1 5.813-5.817ZM38.707 105.31c-3.8.004-6.809 3.011-6.809 6.816 0 3.805 3.008 6.816 6.813 6.816 3.797 0 6.809-3.007 6.809-6.812v-.004c.039-3.77-3.036-6.852-6.81-6.816Zm.004.992h.008a5.745 5.745 0 0 1 5.808 5.816v.008c0 3.285-2.539 5.824-5.816 5.824-3.29 0-5.82-2.539-5.82-5.824 0-3.29 2.53-5.824 5.82-5.824Zm0 0"/></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 d="M19.73 40.855c-1.645 0-3.09.902-3.867 2.238h-1.852a11.81 11.81 0 0 0-11.773 11.77v19.07h4.477v-19.07a7.26 7.26 0 0 1 7.297-7.293h1.852a4.49 4.49 0 0 0 3.867 2.238 4.5 4.5 0 0 0 4.477-4.477 4.5 4.5 0 0 0-4.477-4.477zm0 2.652c1.023 0 1.824.801 1.824 1.824s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.824 1.824-1.824zm83.207 10.211c-2.195 0-4.004 1.809-4.004 4.004a4.03 4.03 0 0 0 4.004 4.008c2.199 0 4.004-1.809 4.004-4.008s-1.805-4.004-4.004-4.004zm0 2.289a1.7 1.7 0 1 1 0 3.434c-.961 0-1.715-.754-1.715-1.719s.754-1.715 1.715-1.715zM32.359 59.57c-1.977 0-3.73.438-5.262 1.316a9.6 9.6 0 0 0-3.645 3.57c-.875 1.504-1.316 3.246-1.316 5.223 0 1.957.441 3.695 1.316 5.227.902 1.527 2.117 2.73 3.645 3.605 1.555.852 3.309 1.277 5.262 1.277s3.695-.426 5.227-1.277a9.53 9.53 0 0 0 3.645-3.605c.875-1.531 1.316-3.27 1.316-5.227 0-1.977-.441-3.719-1.316-5.223-.879-1.527-2.094-2.719-3.645-3.57-1.531-.879-3.27-1.316-5.227-1.316zm23.191 0c-1.93 0-3.547.391-4.848 1.164a6.17 6.17 0 0 0-2.48 2.602v-3.578h-3.008v19.844h3.156v-9.996c0-2.254.578-3.984 1.73-5.187 1.152-1.227 2.719-1.84 4.695-1.84.125 0 .25.012.379.035.125 0 .25.016.375.039zm10.652 0c-1.906 0-3.621.402-5.148 1.203-1.504.801-2.695 1.93-3.574 3.383-.875 1.43-1.312 3.094-1.312 5s.438 3.582 1.313 5.035a9.36 9.36 0 0 0 3.574 3.418c1.527.801 3.242 1.203 5.148 1.203 1.727 0 3.281-.363 4.66-1.09.84-.437 1.578-1 2.215-1.691l-.098 1.355c-.172 2.348-.578 4.094-1.73 5.223-1.152 1.152-2.945 1.727-5.375 1.727a13.09 13.09 0 0 1-4.281-.711c-1.355-.477-2.496-1.129-3.422-1.957l-1.578 2.445c1.078.949 2.457 1.676 4.133 2.18 1.703.523 3.457.789 5.262.789 3.332 0 5.852-.816 7.555-2.445 1.703-1.602 2.555-4.133 2.555-7.59 0-4.766.625-10.625-1.227-13.191-.828-1.43-1.941-2.492-3.348-3.195-1.375-.727-3.594-1.09-5.32-1.09zm51.547 0c-1.98 0-3.734.438-5.262 1.316a9.6 9.6 0 0 0-3.645 3.57c-.879 1.504-1.316 3.246-1.316 5.223 0 1.957.438 3.695 1.316 5.227.902 1.527 2.117 2.73 3.645 3.605 1.555.852 3.309 1.277 5.262 1.277s3.695-.426 5.223-1.277c1.555-.875 2.77-2.078 3.648-3.605s1.313-3.27 1.313-5.227c0-1.977-.437-3.719-1.312-5.223-.879-1.527-2.094-2.719-3.648-3.57-1.527-.879-3.27-1.316-5.223-1.316zm-28.895.043c-1.906 0-3.609.441-5.109 1.316-1.48.852-2.645 2.043-3.496 3.57s-1.277 3.27-1.277 5.223.438 3.695 1.313 5.227c.902 1.527 2.145 2.73 3.723 3.605 1.602.852 3.445 1.277 5.523 1.277 1.629 0 3.105-.273 4.434-.824s2.418-1.355 3.27-2.406l-1.727-2.027c-.727.852-1.59 1.488-2.594 1.914-1.004.402-2.105.602-3.309.602-1.5 0-2.828-.301-3.98-.902a6.91 6.91 0 0 1-2.672-2.629c-.199-.371-.367-.762-.504-1.176l16.066-3.148c-.051-1.93-.516-3.605-1.391-5.035-.852-1.453-1.992-2.582-3.422-3.383s-3.043-1.203-4.848-1.203zm0 2.707c1.301 0 2.457.301 3.457.902a6.09 6.09 0 0 1 2.332 2.367 6.39 6.39 0 0 1 .73 1.98l-13.34 2.574a10.36 10.36 0 0 1-.02-.609c0-1.453.289-2.719.863-3.793s1.379-1.918 2.406-2.52c1.051-.602 2.242-.902 3.57-.902zm-56.496.031c1.355 0 2.559.301 3.609.902s1.879 1.453 2.48 2.555c.625 1.105.938 2.395.938 3.871 0 1.453-.312 2.746-.937 3.871-.602 1.102-1.43 1.969-2.48 2.594-1.051.602-2.254.902-3.609.902s-2.555-.301-3.605-.902c-1.055-.625-1.891-1.492-2.52-2.594-.602-1.125-.902-2.418-.902-3.871 0-1.477.301-2.766.902-3.871.629-1.102 1.465-1.953 2.52-2.555s2.254-.902 3.605-.902zm33.813 0c1.402 0 2.641.289 3.719.863 1.078.555 1.918 1.344 2.52 2.371.625 1.023.938 2.215.938 3.57s-.312 2.555-.937 3.605c-.602 1.027-1.441 1.828-2.52 2.406s-2.316.863-3.719.863c-1.379 0-2.605-.289-3.684-.863s-1.93-1.379-2.555-2.406c-.602-1.051-.902-2.254-.902-3.605s.301-2.547.902-3.57c.625-1.027 1.477-1.816 2.555-2.371 1.078-.574 2.305-.863 3.684-.863zm51.578 0c1.352 0 2.555.301 3.609.902s1.879 1.453 2.48 2.555c.625 1.105.938 2.395.938 3.871 0 1.453-.312 2.746-.937 3.871-.602 1.102-1.43 1.969-2.48 2.594-1.055.602-2.258.902-3.609.902s-2.555-.301-3.609-.902c-1.051-.625-1.891-1.492-2.516-2.594-.602-1.125-.902-2.418-.902-3.871 0-1.477.301-2.766.902-3.871.625-1.102 1.465-1.953 2.516-2.555s2.258-.902 3.609-.902zm-16.215.723v17.73c0 1.203-.273 2.105-.824 2.707-.527.602-1.293.902-2.293.902-1.23 0-2.23-.312-3.008-.941l-1.051 2.367c.5.426 1.125.738 1.879.941s1.539.301 2.367.301c1.953 0 3.457-.566 4.508-1.691s1.578-2.656 1.578-4.586v-17.73zm0 0" fill="#ff5500"/><path d="M19.73 53.246a4.49 4.49 0 0 0-3.867 2.238h-1.852c-6.477 0-11.773 5.301-11.773 11.773v4.711C.906 72.75 0 74.195 0 75.84a4.5 4.5 0 0 0 4.477 4.477 4.5 4.5 0 0 0 4.477-4.477c0-1.645-.902-3.09-2.238-3.871v-4.711a7.26 7.26 0 0 1 7.297-7.293h1.852a4.49 4.49 0 0 0 3.867 2.238c2.457 0 4.477-2.023 4.477-4.48a4.5 4.5 0 0 0-4.477-4.477zm0 2.656c1.023 0 1.824.801 1.824 1.82s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.82 1.824-1.82zM4.477 74.016c1.023 0 1.824.801 1.824 1.824s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.824 1.824-1.824zm0 0" fill="#cc0000"/></svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M89.457 0C83.719 0 78.68 3.195 76.012 7.887h-7.176c-20.844 0-37.902 17.059-37.902 37.902v59.438h15.16V45.789a22.62 22.62 0 0 1 22.742-22.738h7.176c2.668 4.688 7.707 7.883 13.445 7.883 8.488 0 15.465-6.98 15.465-15.465S97.945 0 89.457 0zm0 9.098c3.574 0 6.367 2.797 6.367 6.371s-2.793 6.367-6.367 6.367a6.3 6.3 0 0 1-6.367-6.367 6.3 6.3 0 0 1 6.367-6.371zm0 0" fill="#ff6600"/><path d="M89.457 41.242c-5.738 0-10.777 3.195-13.445 7.883h-7.176c-20.844 0-37.902 17.063-37.902 37.902v12.027c-4.691 2.672-7.883 7.711-7.883 13.445 0 8.488 6.977 15.469 15.465 15.469s15.465-6.98 15.465-15.469c0-5.738-3.199-10.777-7.887-13.445V87.027c0-12.645 10.094-22.738 22.742-22.738h7.176c2.668 4.688 7.707 7.883 13.445 7.883 8.484 0 15.465-6.98 15.465-15.465s-6.977-15.465-15.465-15.465zm0 9.098c3.574 0 6.367 2.797 6.367 6.367s-2.793 6.363-6.367 6.363-6.367-2.793-6.367-6.363a6.3 6.3 0 0 1 6.367-6.367zm-50.941 55.793c3.566 0 6.363 2.801 6.363 6.367 0 3.574-2.797 6.371-6.363 6.371-3.574 0-6.367-2.797-6.367-6.371s2.793-6.367 6.367-6.367zm0 0" fill="#d40000"/></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 fill="#FF5500" d="M19.73 40.855c-1.645 0-3.09.902-3.867 2.238h-1.852a11.81 11.81 0 0 0-11.773 11.77v17.105C.906 72.75 0 74.195 0 75.84a4.5 4.5 0 0 0 4.477 4.477 4.5 4.5 0 0 0 4.477-4.477c0-1.645-.902-3.09-2.238-3.871v-4.711a7.26 7.26 0 0 1 7.297-7.293h1.852a4.49 4.49 0 0 0 3.867 2.238 4.5 4.5 0 0 0 4.477-4.477 4.5 4.5 0 0 0-4.477-4.477c-1.645 0-3.09.902-3.867 2.238h-1.852a11.71 11.71 0 0 0-7.297 2.551v-3.176a7.26 7.26 0 0 1 7.297-7.293h1.852a4.49 4.49 0 0 0 3.867 2.238 4.5 4.5 0 0 0 4.477-4.477 4.5 4.5 0 0 0-4.477-4.477zm0 2.652c1.023 0 1.824.801 1.824 1.824s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.824 1.824-1.824zm83.207 10.211a4.03 4.03 0 0 0-4.004 4.008c0 2.195 1.809 4.004 4.004 4.004s4.004-1.809 4.004-4.004-1.805-4.008-4.004-4.008zM19.73 55.902c1.023 0 1.824.801 1.824 1.824s-.801 1.82-1.824 1.82-1.824-.801-1.824-1.82.801-1.824 1.824-1.824zm83.207.105a1.7 1.7 0 1 1 0 3.434c-.961 0-1.715-.754-1.715-1.715s.754-1.719 1.715-1.719zM32.359 59.57c-1.977 0-3.73.438-5.262 1.316a9.6 9.6 0 0 0-3.645 3.57c-.875 1.504-1.316 3.246-1.316 5.223 0 1.957.441 3.695 1.316 5.227.902 1.527 2.117 2.73 3.645 3.605 1.555.852 3.309 1.277 5.262 1.277s3.695-.426 5.227-1.277c1.551-.875 2.766-2.078 3.645-3.609s1.316-3.266 1.316-5.223c0-1.977-.441-3.719-1.316-5.223-.879-1.527-2.094-2.719-3.645-3.57-1.531-.879-3.27-1.316-5.227-1.316zm23.191 0c-1.93 0-3.547.391-4.848 1.164a6.17 6.17 0 0 0-2.48 2.602v-3.578h-3.008v19.844h3.156v-9.996c0-2.254.578-3.984 1.73-5.187 1.152-1.227 2.719-1.84 4.695-1.84.125 0 .25.012.379.035.125 0 .25.016.375.039zm10.652 0c-1.906 0-3.621.402-5.148 1.203-1.504.801-2.695 1.93-3.574 3.383-.875 1.43-1.312 3.094-1.312 5s.438 3.582 1.313 5.035a9.36 9.36 0 0 0 3.574 3.418c1.527.805 3.242 1.203 5.148 1.203 1.727 0 3.281-.363 4.66-1.09.84-.437 1.578-1 2.215-1.691l-.098 1.355c-.172 2.348-.578 4.094-1.73 5.223-1.152 1.152-2.945 1.727-5.375 1.727a12.99 12.99 0 0 1-4.281-.711c-1.355-.477-2.496-1.129-3.422-1.957l-1.578 2.445c1.078.953 2.457 1.676 4.133 2.18 1.703.523 3.457.789 5.262.789 3.332 0 5.852-.816 7.555-2.445 1.703-1.602 2.555-4.133 2.555-7.59 0-4.766.625-10.625-1.227-13.191-.828-1.43-1.941-2.492-3.348-3.195-1.375-.727-3.594-1.09-5.32-1.09zm51.547 0c-1.98 0-3.734.438-5.262 1.316a9.6 9.6 0 0 0-3.645 3.57c-.879 1.504-1.316 3.246-1.316 5.223 0 1.957.438 3.695 1.316 5.227.902 1.527 2.117 2.73 3.645 3.605 1.555.852 3.309 1.277 5.262 1.277s3.695-.426 5.223-1.277c1.555-.875 2.77-2.078 3.648-3.609s1.313-3.266 1.313-5.223c0-1.977-.437-3.719-1.312-5.223-.879-1.527-2.094-2.719-3.648-3.57-1.527-.879-3.27-1.316-5.223-1.316zm-28.895.043c-1.906 0-3.609.441-5.109 1.316-1.48.852-2.645 2.043-3.496 3.57s-1.277 3.27-1.277 5.223.438 3.695 1.313 5.227c.902 1.527 2.145 2.73 3.723 3.605 1.602.855 3.445 1.277 5.523 1.277 1.629 0 3.105-.273 4.434-.824s2.418-1.352 3.27-2.406l-1.727-2.027c-.727.852-1.59 1.488-2.594 1.914-1.004.402-2.105.602-3.309.602-1.5 0-2.828-.301-3.98-.902a6.91 6.91 0 0 1-2.672-2.629c-.199-.371-.367-.762-.504-1.176l16.066-3.148c-.051-1.93-.516-3.605-1.391-5.035-.852-1.453-1.992-2.582-3.422-3.383s-3.043-1.203-4.848-1.203zm0 2.707c1.301 0 2.457.301 3.457.902 1.004.578 1.777 1.363 2.332 2.367a6.39 6.39 0 0 1 .73 1.98l-13.34 2.574a10.36 10.36 0 0 1-.02-.609c0-1.453.289-2.719.863-3.793s1.379-1.918 2.406-2.52c1.051-.602 2.242-.902 3.57-.902zm-56.496.031c1.355 0 2.559.301 3.609.902s1.879 1.453 2.48 2.555c.625 1.105.938 2.395.938 3.871 0 1.453-.312 2.746-.937 3.871-.602 1.102-1.43 1.969-2.48 2.594-1.051.602-2.254.902-3.609.902s-2.555-.301-3.605-.902c-1.055-.625-1.891-1.492-2.52-2.594-.602-1.125-.902-2.418-.902-3.871 0-1.477.301-2.766.902-3.871.629-1.102 1.465-1.953 2.52-2.555s2.254-.902 3.605-.902zm33.813 0c1.402 0 2.641.289 3.719.863 1.078.555 1.918 1.34 2.52 2.367.625 1.027.938 2.219.938 3.574s-.312 2.555-.937 3.605c-.602 1.027-1.441 1.828-2.52 2.406s-2.316.863-3.719.863c-1.379 0-2.605-.289-3.684-.863s-1.93-1.379-2.555-2.406c-.602-1.051-.902-2.254-.902-3.605s.301-2.547.902-3.574c.625-1.027 1.477-1.812 2.555-2.367 1.078-.574 2.305-.863 3.684-.863zm51.578 0c1.352 0 2.555.301 3.609.902s1.879 1.453 2.48 2.555c.625 1.105.938 2.395.938 3.871 0 1.453-.312 2.746-.937 3.871-.602 1.102-1.43 1.969-2.48 2.594-1.055.602-2.258.902-3.609.902s-2.555-.301-3.609-.902c-1.051-.625-1.891-1.492-2.516-2.594-.602-1.125-.902-2.418-.902-3.871 0-1.477.301-2.766.902-3.871.625-1.102 1.465-1.953 2.516-2.555s2.258-.902 3.609-.902zm-16.215.723v17.73c0 1.203-.273 2.105-.824 2.707-.527.602-1.293.902-2.293.902-1.23 0-2.23-.312-3.008-.941l-1.051 2.367c.5.426 1.125.738 1.879.941s1.539.301 2.367.301c1.953 0 3.457-.566 4.508-1.691s1.578-2.656 1.578-4.586v-17.73zM4.477 74.016c1.023 0 1.824.801 1.824 1.824s-.801 1.824-1.824 1.824-1.824-.801-1.824-1.824.801-1.824 1.824-1.824zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#FF5500" d="M89.457 0C83.719 0 78.68 3.195 76.012 7.887h-7.176c-20.844 0-37.902 17.059-37.902 37.902v41.238 12.027c-4.691 2.672-7.883 7.709-7.883 13.443 0 8.488 6.977 15.471 15.465 15.471s15.465-6.982 15.465-15.471c0-5.738-3.199-10.775-7.887-13.443V87.027c0-12.645 10.094-22.738 22.742-22.738h7.176c2.668 4.688 7.707 7.883 13.445 7.883 8.484 0 15.465-6.98 15.465-15.465s-6.977-15.465-15.465-15.465c-5.738 0-10.777 3.195-13.445 7.883h-7.176c-8.515 0-16.396 2.849-22.742 7.639V45.789a22.62 22.62 0 0 1 22.742-22.738h7.176c2.668 4.688 7.707 7.883 13.445 7.883 8.488 0 15.465-6.98 15.465-15.465S97.945 0 89.457 0zm0 9.098c3.574 0 6.367 2.797 6.367 6.371s-2.793 6.367-6.367 6.367a6.3 6.3 0 0 1-6.367-6.367 6.3 6.3 0 0 1 6.367-6.371zm0 41.242c3.574 0 6.367 2.797 6.367 6.367a6.29 6.29 0 0 1-6.367 6.363 6.29 6.29 0 0 1-6.367-6.363 6.3 6.3 0 0 1 6.367-6.367zm-50.941 55.793a6.3 6.3 0 0 1 6.363 6.367c0 3.574-2.797 6.371-6.363 6.371-3.574 0-6.367-2.797-6.367-6.371s2.793-6.367 6.367-6.367z"/></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="#009f76" d="M64 1.267c-.577 0-1.155.128-1.688.386L14.105 24.96a3.9 3.9 0 0 0-2.102 2.644L.097 79.97v.002a3.9 3.9 0 0 0 .75 3.297l33.358 41.994a3.89 3.89 0 0 0 3.043 1.471h53.504a3.89 3.89 0 0 0 3.043-1.47l33.358-41.995a3.9 3.9 0 0 0 .75-3.297l-11.906-52.366v-.002a3.9 3.9 0 0 0-2.102-2.644L65.689 1.653A3.9 3.9 0 0 0 64 1.267m0 1.969c.285 0 .567.063.83.19l48.207 23.306c.528.255.91.733 1.04 1.308l11.906 52.368a1.94 1.94 0 0 1-.373 1.636L92.252 124.04c-.365.46-.916.725-1.5.725H37.248a1.91 1.91 0 0 1-1.5-.725L2.39 82.044a1.94 1.94 0 0 1-.373-1.636v-.002l11.905-52.364a1.93 1.93 0 0 1 1.04-1.31L63.17 3.426a1.9 1.9 0 0 1 .831-.19zm17.835 31.942-.994.597-19.806 11.898-17.078-11.081-.444 1.115a5.4 5.4 0 0 0-.38 1.987v16.16l-9.172-5.116-.456.939a5.4 5.4 0 0 0-.538 2.344v29.94c0 .688.328 1.273.573 1.887l-.294.148.613.927c.07.107.11.152.106.145v.002q.08.113.18.242.134.164.255.292.062.07.178.187c.122.119.239.217.34.302.014.01.065.058.162.132.17.13.353.258.556.375l25.827 14.97a5.33 5.33 0 0 0 5.345 0L92.637 88.6c.27-.156.5-.33.706-.498.083-.068.147-.129.198-.175a5 5 0 0 0 .438-.448c.024-.027.08-.085.158-.183.17-.213.331-.445.475-.7.065-.115.077-.153.052-.105q.178-.332.306-.68c-.038.103-.017.071.042-.101l.28-.816-.136-.069c.05-.288.148-.56.148-.863V54.02c0-.678-.126-1.342-.367-1.958l-.415-1.061-11.878 6.796V38.24c0-.69-.133-1.363-.38-1.985zm-1.171 3.002c0 .021.011.04.011.06v20.264q-.001.421-.104.827l-.561 2.242 13.313-7.617c0 .022.012.042.012.065v29.94c0 .373-.068.74-.192 1.103l-.023.067v.002a4 4 0 0 1-.19.43q-.084.157-.033.068a3.4 3.4 0 0 1-.302.442l-.1.114a3.4 3.4 0 0 1-.402.392 3.4 3.4 0 0 1-.445.318L65.82 101.866a3.35 3.35 0 0 1-3.367 0l-25.827-14.97a3 3 0 0 1-.352-.236 1 1 0 0 0-.1-.087 4 4 0 0 1-.216-.188l-.002-.002-.11-.117a4 4 0 0 1-.16-.185l-.093-.123-.083-.125a3.4 3.4 0 0 1-.573-1.871V54.02c0-.152.079-.283.098-.43l10.068 5.615V39.694l.002-.012 15.892 10.314z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#009f76" fill-rule="evenodd" d="M62.72 1.58a2.94 2.94 0 0 1 2.56 0l48.958 23.67a2.96 2.96 0 0 1 1.596 2.008l12.092 53.184c.2.88-.01 1.801-.57 2.506l-33.88 42.65a2.95 2.95 0 0 1-2.306 1.115H36.83c-.898 0-1.746-.41-2.306-1.115L.644 82.948a2.97 2.97 0 0 1-.57-2.506l12.092-53.184a2.96 2.96 0 0 1 1.596-2.009z" clip-rule="evenodd"/><path fill="#007155" d="M45.023 37.91 4.066 62.885.074 80.443c-.2.88.01 1.802.57 2.506l33.88 42.649a2.95 2.95 0 0 0 2.306 1.115h11.941l44.405-39.318Z"/><path fill="url(#a)" fill-rule="evenodd" d="M81.62 36.192c.205.516.315 1.074.315 1.646v20.58a4.45 4.45 0 0 1-2.001 3.716L65.05 71.916a4.41 4.41 0 0 1-4.847 0l-14.884-9.782a4.44 4.44 0 0 1-1.938-2.972z" clip-rule="evenodd"/><path fill="url(#b)" fill-rule="evenodd" d="M81.822 62.13a4.4 4.4 0 0 1-1.4 1.48L65.54 73.392a4.41 4.41 0 0 1-4.847 0L45.808 63.61a4.45 4.45 0 0 1-2-3.717V39.314c0-.573.11-1.132.315-1.649z" clip-rule="evenodd"/><path fill="url(#c)" fill-rule="evenodd" d="M33.93 51.92a4.45 4.45 0 0 0-.447 1.946v30.407c0 1.586.843 3.053 2.212 3.847l26.23 15.203a4.41 4.41 0 0 0 4.426 0L92.58 88.12a4.44 4.44 0 0 0 1.97-2.398z" clip-rule="evenodd"/><path fill="url(#d)" fill-rule="evenodd" d="M34.222 86.73a4.4 4.4 0 0 0 1.473 1.39l26.23 15.203a4.41 4.41 0 0 0 4.426 0L92.58 88.12a4.45 4.45 0 0 0 2.213-3.847V53.865c0-.564-.107-1.114-.306-1.623z" clip-rule="evenodd"/><defs><linearGradient id="a" x1="239.57" x2="174.075" y1="110.714" y2="205.455" gradientTransform="translate(-1.916 -2.526)scale(.41257)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#439246"/></linearGradient><linearGradient id="b" x1="235.479" x2="150.083" y1="145.405" y2="299.227" gradientTransform="translate(-1.916 -2.526)scale(.41257)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#439246"/></linearGradient><linearGradient id="c" x1="49.799" x2="124.559" y1="160.303" y2="281.373" gradientTransform="translate(-1.916 -2.526)scale(.41257)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#439246"/></linearGradient><linearGradient id="d" x1="75.195" x2="168.121" y1="216.138" y2="394.367" gradientTransform="translate(-1.916 -2.526)scale(.41257)" gradientUnits="userSpaceOnUse"><stop stop-color="#fff"/><stop offset="1" stop-color="#439246"/></linearGradient></defs></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"><path fill="#009f76" d="M64 1.287c-.438 0-.875.098-1.28.293L13.763 25.25a2.96 2.96 0 0 0-1.596 2.008L.074 80.44c-.2.88.01 1.802.57 2.506l33.88 42.65a2.95 2.95 0 0 0 2.306 1.116h54.34c.898 0 1.747-.41 2.307-1.115l33.878-42.65c.56-.705.77-1.628.57-2.507l-12.091-53.183a2.96 2.96 0 0 0-1.596-2.008L65.28 1.58A2.9 2.9 0 0 0 64 1.287m17.62 34.904c.205.517.316 1.075.316 1.647v20.58c0 .37-.047.734-.135 1.084l12.687-7.26c.2.51.305 1.059.305 1.623v30.408c0 .501-.092.986-.25 1.446l.008.004c-.01.029-.027.055-.037.084a4.5 4.5 0 0 1-.252.564c-.016.029-.027.06-.043.088a4.4 4.4 0 0 1-.395.58q-.064.076-.13.15a5 5 0 0 1-.364.372 4.4 4.4 0 0 1-.748.559L66.35 103.321a4.41 4.41 0 0 1-4.424 0L35.696 88.12a4 4 0 0 1-.462-.31q-.067-.055-.132-.112a4 4 0 0 1-.284-.25 5 5 0 0 1-.146-.154 4 4 0 0 1-.211-.242 4 4 0 0 1-.15-.201q-.046-.059-.088-.12l.007-.003a4.44 4.44 0 0 1-.748-2.454V53.865c0-.686.158-1.349.448-1.945l9.877 5.508V39.314c0-.573.11-1.13.316-1.648l16.846 10.932 20.65-12.407z"/></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 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

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.6 KiB

1
icons/htmx/htmx-line.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#333" d="M72.102 22.172a.836.836 0 0 0-.813.55v.005l-28.672 81.796.004-.003c-.195.53.219 1.125.785 1.128h12.465a.856.856 0 0 0 .793-.55v-.004L85.187 23.3c.192-.54-.222-1.13-.789-1.13Zm.109 1.023h11.926l-28.395 81.426H43.668ZM36.973 43.168.496 58.398H.492A.82.82 0 0 0 0 59.16v10.176a.826.826 0 0 0 .492.77h.004l36.465 15.218a.823.823 0 0 0 1.094-.492l3.183-9.734.008-.004a.829.829 0 0 0-.492-1.012l-25.496-9.836 25.504-9.824v-.004a.824.824 0 0 0 .492-1.008v-.004l-3.188-9.75v-.004a.828.828 0 0 0-1.093-.488Zm53.859 0a.848.848 0 0 0-1.125.523l-3.164 9.696.004-.004a.845.845 0 0 0 .496 1.05l25.5 9.813-25.5 9.828a.84.84 0 0 0-.496 1.047l-.004-.004 3.156 9.695a.857.857 0 0 0 1.129.527l36.457-15.23a.834.834 0 0 0 .52-.761v-.004l.015-10.172-.004-.004a.854.854 0 0 0-.523-.766Zm-.207 1.023 36.172 15.118-.012 9.902-36.172 15.105-3.043-9.351 25.778-9.93a.85.85 0 0 0 .547-.789.85.85 0 0 0-.547-.785L87.57 53.539Zm-53.46.008 3.054 9.332-25.828 9.95a.843.843 0 0 0-.528.765.85.85 0 0 0 .528.766l25.816 9.957-3.055 9.328L1.023 69.215v-9.93Zm0 0"/></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 fill="#333" d="M92.145 61.05a.152.152 0 0 0-.133.153v11.875c0 .14-.07.215-.211.215h-4.145c-.136 0-.207-.074-.207-.211v-14.96c0-.079.04-.126.117-.145 3.356-.864 8.047-1.707 10.942.484.09.074.219.078.312.012 1.946-1.22 4.012-1.63 6.192-1.23 3.785.698 4.648 3.589 4.652 7.05.004 2.941 0 5.879-.012 8.832 0 .09-.07.168-.16.168h-4.183c-.133 0-.2-.07-.2-.203-.004-2.543.004-5.078.028-7.61a14.26 14.26 0 0 0-.219-2.671c-.383-2.133-2.652-2.246-4.254-1.282-.094.055-.129.137-.105.243.183.863.273 1.738.277 2.617.008 2.906.008 5.816.004 8.742 0 .09-.07.164-.164.164h-4.18a.211.211 0 0 1-.207-.207c-.008-2.75-.012-5.504-.02-8.242-.007-3.29-.773-4.153-4.124-3.793Zm-61.45-.612 1.125-3.442a.138.138 0 0 1 .063-.07.1.1 0 0 1 .094 0l12.937 5.406a.114.114 0 0 1 .074.105l-.004 3.602a.12.12 0 0 1-.074.106L31.973 71.55a.112.112 0 0 1-.094-.004.097.097 0 0 1-.059-.07l-1.125-3.442c-.015-.058.016-.125.07-.144l9.208-3.547a.12.12 0 0 0 .074-.11.118.118 0 0 0-.074-.109l-9.203-3.543a.117.117 0 0 1-.07-.145ZM4.992 64.34l9.223 3.555c.055.02.082.078.066.132l-1.129 3.453a.13.13 0 0 1-.062.067.11.11 0 0 1-.086 0L.066 66.145A.108.108 0 0 1 0 66.043V62.43c0-.043.027-.082.066-.102l12.942-5.402a.11.11 0 0 1 .086 0c.027.011.05.035.058.062l1.133 3.457a.112.112 0 0 1-.066.133l-9.227 3.555a.11.11 0 0 0-.07.101c0 .047.027.086.07.106Zm73.356-3.13a77.336 77.336 0 0 0 .015 5.712c.032.93.164 1.582.399 1.957.918 1.492 3.574.95 4.941.469.059-.024.09-.004.102.05l.605 3.344a.123.123 0 0 1-.074.133c-4.395 1.684-10.297 1.098-10.516-4.867-.082-2.332-.09-7.168-.02-14.5.005-.121.063-.192.184-.211l4.125-.66c.145-.02.215.043.215.183v4.387c0 .055.04.098.094.098h5.18c.125 0 .183.058.183.183l-.004 3.367c0 .13-.062.192-.191.192l-5.066.004c-.11 0-.168.054-.172.16Zm-17.684-3.769c1.832-.316 3.242-.527 5.05.004 3.333.985 4.071 3.86 4.079 6.942.008 2.906.004 5.808-.008 8.718-.004.122-.07.188-.191.188h-4.16c-.121 0-.184-.063-.184-.188a970.736 970.736 0 0 1 0-8.261c.012-3.219-1.234-4.68-4.578-3.617-.125.043-.184.125-.184.25V73.12a.172.172 0 0 1-.164.172h-4.238a.162.162 0 0 1-.16-.164l-.004-22.442c0-.042.035-.082.078-.09l4.25-.679c.156-.023.234.043.234.207v7.168c0 .121.059.168.18.148Zm0 0"/><path fill="#3465a4" d="M120.074 67.984a.155.155 0 0 0-.125-.054.133.133 0 0 0-.117.066l-3.242 5.18a.224.224 0 0 1-.2.117l-4.18-.008a.169.169 0 0 1-.14-.082.159.159 0 0 1 0-.156 58.951 58.951 0 0 1 5.387-7.828.217.217 0 0 0 .008-.258l-5.238-7.402a.12.12 0 0 1-.016-.13.137.137 0 0 1 .117-.066l4.5.012a.342.342 0 0 1 .297.16l2.95 4.504a.142.142 0 0 0 .112.059.14.14 0 0 0 .11-.059l2.945-4.504a.363.363 0 0 1 .305-.164h4.277c.047 0 .086.024.106.066.023.04.02.086-.008.122l-5.242 7.304c-.086.121-.082.239.015.356a59.59 59.59 0 0 1 5.512 7.89.113.113 0 0 1 .004.121.13.13 0 0 1-.106.063h-4.539a.324.324 0 0 1-.293-.184 34.195 34.195 0 0 0-3.199-5.125ZM15.11 78.586l10.176-29.023a.117.117 0 0 1 .113-.075h4.368a.11.11 0 0 1 .093.051c.024.027.028.07.016.106l-10.121 29.02a.12.12 0 0 1-.113.073h-4.418a.109.109 0 0 1-.098-.047.124.124 0 0 1-.016-.105Zm0 0"/></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="#3465a4" d="m42.922 104.996 28.89-82.437a.334.334 0 0 1 .32-.215h12.411a.329.329 0 0 1 .309.445l-28.75 82.434a.33.33 0 0 1-.309.218H43.23a.322.322 0 0 1-.27-.144.318.318 0 0 1-.038-.3Zm0 0"/><path fill="#333" d="m87.195 53.445 3.188-9.777a.348.348 0 0 1 .18-.2.316.316 0 0 1 .265-.003l36.75 15.36c.121.05.203.167.207.296l-.012 10.242a.328.328 0 0 1-.207.297l-36.75 15.352a.316.316 0 0 1-.265-.004.325.325 0 0 1-.176-.203l-3.18-9.774a.333.333 0 0 1 .196-.414l26.148-10.074a.338.338 0 0 0 .215-.313.333.333 0 0 0-.215-.308L87.391 53.859a.333.333 0 0 1-.196-.414ZM14.172 64.52l26.2 10.109a.31.31 0 0 1 .187.379l-3.211 9.808a.312.312 0 0 1-.168.184.3.3 0 0 1-.246 0L.188 69.66A.302.302 0 0 1 0 69.371v-10.27a.302.302 0 0 1 .188-.288l36.757-15.348a.3.3 0 0 1 .246 0 .324.324 0 0 1 .168.183l3.207 9.817a.309.309 0 0 1-.183.383L14.172 63.94a.308.308 0 0 0 0 .578Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 944 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#333" d="M120.074 67.984a.155.155 0 0 0-.125-.054.133.133 0 0 0-.117.066l-3.242 5.18a.224.224 0 0 1-.2.117l-4.18-.008a.169.169 0 0 1-.14-.082.159.159 0 0 1 0-.156 58.951 58.951 0 0 1 5.387-7.828.217.217 0 0 0 .008-.258l-5.238-7.402a.12.12 0 0 1-.016-.13.137.137 0 0 1 .117-.066l4.5.012a.342.342 0 0 1 .297.16l2.95 4.504a.142.142 0 0 0 .112.059.14.14 0 0 0 .11-.059l2.945-4.504a.363.363 0 0 1 .305-.164h4.277c.047 0 .086.024.106.066.023.04.02.086-.008.122l-5.242 7.304c-.086.121-.082.239.015.356a59.59 59.59 0 0 1 5.512 7.89.113.113 0 0 1 .004.121.13.13 0 0 1-.106.063h-4.539a.324.324 0 0 1-.293-.184 34.195 34.195 0 0 0-3.199-5.125ZM15.11 78.586l10.176-29.023a.117.117 0 0 1 .113-.075h4.368a.11.11 0 0 1 .093.051c.024.027.028.07.016.106l-10.121 29.02a.12.12 0 0 1-.113.073h-4.418a.109.109 0 0 1-.098-.047.124.124 0 0 1-.016-.105ZM92.145 61.05a.15.15 0 0 0-.133.152v11.875c0 .14-.07.215-.211.215h-4.145c-.136 0-.207-.074-.207-.211v-14.96c0-.079.04-.126.117-.145 3.356-.864 8.047-1.707 10.942.484.09.074.219.078.312.012 1.946-1.22 4.012-1.63 6.192-1.23 3.785.698 4.648 3.589 4.652 7.05.004 2.941 0 5.879-.012 8.832 0 .09-.07.168-.16.168h-4.183c-.133 0-.2-.07-.2-.203-.004-2.543.004-5.078.028-7.61a14.26 14.26 0 0 0-.219-2.671c-.383-2.133-2.652-2.246-4.254-1.282-.094.055-.129.137-.105.243.183.863.273 1.738.277 2.617.008 2.906.008 5.816.004 8.742 0 .09-.07.164-.164.164h-4.18a.211.211 0 0 1-.207-.207c-.008-2.75-.012-5.504-.02-8.242-.007-3.29-.773-4.153-4.124-3.793Zm-61.45-.614 1.125-3.44a.138.138 0 0 1 .063-.071.1.1 0 0 1 .094 0l12.937 5.406a.114.114 0 0 1 .074.105l-.004 3.602a.12.12 0 0 1-.074.106L31.973 71.55a.112.112 0 0 1-.094-.004.097.097 0 0 1-.059-.07l-1.125-3.442c-.015-.058.016-.125.07-.144l9.208-3.547a.12.12 0 0 0 .074-.11.118.118 0 0 0-.074-.109l-9.203-3.543a.117.117 0 0 1-.07-.145ZM4.992 64.34l9.223 3.555c.055.02.082.078.066.132l-1.129 3.453a.13.13 0 0 1-.062.067.11.11 0 0 1-.086 0L.066 66.145A.108.108 0 0 1 0 66.043V62.43c0-.043.027-.082.066-.102l12.942-5.402a.11.11 0 0 1 .086 0c.027.011.05.035.058.062l1.133 3.457a.112.112 0 0 1-.066.133l-9.227 3.555a.11.11 0 0 0-.07.101c0 .047.027.086.07.106Zm73.356-3.13a77.336 77.336 0 0 0 .015 5.712c.032.93.164 1.582.399 1.957.918 1.492 3.574.95 4.941.469.059-.024.09-.004.102.05l.605 3.344a.123.123 0 0 1-.074.133c-4.395 1.684-10.297 1.098-10.516-4.867-.082-2.332-.09-7.168-.02-14.5.005-.121.063-.192.184-.211l4.125-.66c.145-.02.215.043.215.183v4.387c0 .055.04.098.094.098h5.18c.125 0 .183.058.183.183l-.004 3.367c0 .13-.062.192-.191.192l-5.066.004c-.11 0-.168.054-.172.16Zm-17.684-3.769c1.832-.316 3.242-.527 5.05.004 3.333.985 4.071 3.86 4.079 6.942.008 2.906.004 5.808-.008 8.718-.004.122-.07.188-.191.188h-4.16c-.121 0-.184-.063-.184-.188a970.736 970.736 0 0 1 0-8.261c.012-3.219-1.234-4.68-4.578-3.617-.125.043-.184.125-.184.25V73.12a.172.172 0 0 1-.164.172h-4.238a.162.162 0 0 1-.16-.164l-.004-22.442c0-.042.035-.082.078-.09l4.25-.679c.156-.023.234.043.234.207v7.168c0 .121.059.168.18.148Zm0 0"/></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="#333" d="m87.195 53.445 3.188-9.777a.348.348 0 0 1 .18-.2.316.316 0 0 1 .265-.003l36.75 15.36c.121.05.203.167.207.296l-.012 10.242a.328.328 0 0 1-.207.297l-36.75 15.352a.316.316 0 0 1-.265-.004.325.325 0 0 1-.176-.203l-3.18-9.774a.333.333 0 0 1 .196-.414l26.148-10.074a.338.338 0 0 0 .215-.313.333.333 0 0 0-.215-.308L87.391 53.859a.333.333 0 0 1-.196-.414ZM14.172 64.52l26.2 10.109a.31.31 0 0 1 .187.379l-3.211 9.808a.312.312 0 0 1-.168.184.3.3 0 0 1-.246 0L.188 69.66A.302.302 0 0 1 0 69.371v-10.27a.302.302 0 0 1 .188-.288l36.757-15.348a.3.3 0 0 1 .246 0 .324.324 0 0 1 .168.183l3.207 9.817a.309.309 0 0 1-.183.383L14.172 63.94a.308.308 0 0 0 0 .578Zm28.75 40.476 28.89-82.437a.334.334 0 0 1 .32-.215h12.411a.329.329 0 0 1 .309.445l-28.75 82.434a.33.33 0 0 1-.309.218H43.23a.322.322 0 0 1-.27-.144.318.318 0 0 1-.038-.3Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 911 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#72a1e5" d="M67.809.719 41.512 33.69l68.55-12.629-.949-.457Zm.195.86 39.863 19.194L43.2 32.683ZM53.727 3.433 10.64 24.184 0 70.8l.605.297L27.5 37.368l.012-.013L54.145 3.953Zm-1.059 1.27L26.992 36.905l-.02.02L1.009 69.484l10.23-44.828Zm64.844 23.8-82.133 15.13.012.297 2.859 71.199 51.332-65.512a4.33 4.33 0 0 1 2.91-1.633 4.34 4.34 0 0 1 3.207.926l32.43 26.031Zm-.524.797 10.028 43.863L96.133 48.38h-.004a5.003 5.003 0 0 0-3.715-1.07 5.016 5.016 0 0 0-3.375 1.886L38.863 113.23 36.09 44.2ZM27.035 51.844.488 85.14l.172.214 29.172 36.579Zm-.617 1.875 2.64 66.14-27.69-34.718Zm67.258 4.691-.211.278L62.973 97.59l32.797 26.308 31.03-38.91Zm.113.977 32.047 25.707-30.172 37.836-31.727-25.453Zm-36.156 45.02L39.605 127.41h46.708Zm.11.972 26.612 21.348h-43.34Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 842 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#4279f4" d="m44.316 29.27 1.895 47.18 34.078-43.493a3.143 3.143 0 0 1 2.11-1.184 3.132 3.132 0 0 1 2.328.672l21.253 17.059-6.93-30.316Zm0 0"/><path fill="#0028aa" d="M47.387 85.105h30.23L59.055 70.211Zm0 0"/><path fill="#014bd1" d="M83.262 39.328 62.93 65.27l21.66 17.378 20.55-25.765Zm0 0"/><path fill="#bedcff" d="m38.613 24.719.004-.008 17.88-22.418L27.663 16.18l-7.121 31.195Zm0 0"/><path fill="#6ca1ff" d="M20.941 56.95 40.09 80.956l-1.824-45.734Zm0 0"/><path fill="#a1c3ff" d="M93.484 13.824 65.918.551 48.762 22.066Zm0 0"/><path fill="#4279f4" stroke="#4279f4" stroke-miterlimit="10" stroke-width="1.479" d="M.738 126.238v-20.691h2.653v10.816l9.464-10.816h2.958l-8.036 9.101 8.782 11.586h-3.114l-7.355-9.609-2.7 3.07v6.543Zm18.492-4.523v-10.262h2.512v10.344a2.158 2.158 0 0 0 1.086 1.937 5.07 5.07 0 0 0 5.082 0 2.164 2.164 0 0 0 1.078-1.937v-10.344h2.508v10.254a4.199 4.199 0 0 1-1.894 3.637 7.49 7.49 0 0 1-8.489 0 4.198 4.198 0 0 1-1.883-3.63Zm16.563 4.523v-22.18h2.512v7.77c1.383-.5 2.836-.77 4.304-.8a6.089 6.089 0 0 1 2.868.652 4.954 4.954 0 0 1 1.93 1.726c.46.723.808 1.512 1.03 2.34.227.84.34 1.707.336 2.578 0 2.598-.675 4.567-2.023 5.91-1.348 1.344-3.477 2.012-6.387 2.004Zm2.512-2.25h2.101c2.086 0 3.582-.453 4.492-1.363.907-.906 1.372-2.371 1.387-4.394a6.57 6.57 0 0 0-.926-3.473 3.025 3.025 0 0 0-2.773-1.488 11.392 11.392 0 0 0-4.273.71Zm13.617-5.172c0-2.375.629-4.27 1.89-5.683a6.36 6.36 0 0 1 4.989-2.121c4.113 0 6.172 2.906 6.176 8.719H54.43a5.693 5.693 0 0 0 1.34 3.265c.796.957 2.015 1.434 3.652 1.434a11.544 11.544 0 0 0 4.875-.926v2.309c-1.453.566-3 .855-4.559.867a9.168 9.168 0 0 1-3.558-.633 6.19 6.19 0 0 1-2.438-1.738 7.472 7.472 0 0 1-1.387-2.489 9.53 9.53 0 0 1-.433-3.004Zm2.598-.976h7.972a6.894 6.894 0 0 0-1.094-3.293 2.977 2.977 0 0 0-2.597-1.281 3.78 3.78 0 0 0-2.867 1.254 5.59 5.59 0 0 0-1.407 3.32Zm0 0"/><path fill="#0028aa" stroke="#0028aa" stroke-miterlimit="10" stroke-width="1.479" d="M68.074 113.711v-2.258h2.313v-3.508a3.766 3.766 0 0 1 1.066-2.797 3.594 3.594 0 0 1 2.63-1.05h3.632v2.273h-2.309c-1.023 0-1.699.207-2.02.617-.323.41-.491 1.18-.491 2.313v2.152h3.91v2.25h-3.91v12.535h-2.512v-12.523Zm12.914 12.527v-22.18h2.508v22.18Zm8.848-1.824a8.252 8.252 0 0 1 8.727-13.656 8.253 8.253 0 0 1-3.028 15.922 7.662 7.662 0 0 1-5.699-2.266Zm1.773-9.543a6.088 6.088 0 0 0 0 7.95 5.578 5.578 0 0 0 7.856 0 6.051 6.051 0 0 0 0-7.95 5.578 5.578 0 0 0-7.856 0Zm13.957-3.418h2.657l3.37 11.7 3.434-11.7h2.477l3.394 11.707 3.407-11.707h2.652l-4.64 14.785h-2.829l-3.156-11.355-3.117 11.355h-2.992Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#4279f4" d="m35.59 43.66 2.836 70.645 51.027-65.121a4.716 4.716 0 0 1 3.164-1.774 4.705 4.705 0 0 1 3.48 1.004l31.829 25.547-10.38-45.395Zm0 0"/><path fill="#0028aa" d="M40.191 127.262h45.266l-27.793-22.297Zm0 0"/><path fill="#014bd1" d="M93.902 58.723 63.461 97.566l32.434 26.024 30.77-38.582Zm0 0"/><path fill="#bedcff" d="m27.055 36.848.004-.008 26.77-33.57L10.66 24.059 0 70.769Zm0 0"/><path fill="#6ca1ff" d="m.594 85.105 28.672 35.954-2.73-68.485Zm0 0"/><path fill="#a1c3ff" d="M109.215 20.54 67.937.66l-25.69 32.215Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 611 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#72a1e5" d="M68.406 115v-2.293h2.348v-3.566a3.825 3.825 0 0 1 1.082-2.84 3.653 3.653 0 0 1 2.672-1.067h3.691v2.309h-2.347c-1.04 0-1.723.21-2.051.629-.328.414-.5 1.195-.5 2.348v2.187h3.972v2.285h-3.972v12.735H70.75v-12.723Zm13.117 12.727v-22.532h2.547v22.532Zm8.989-1.856a8.37 8.37 0 0 1-1.293-10.594 8.382 8.382 0 0 1 15.297 6.078 8.384 8.384 0 0 1-8.215 6.82 7.781 7.781 0 0 1-5.79-2.304Zm1.8-9.691c-2 2.32-2 5.754 0 8.074a5.666 5.666 0 0 0 7.981 0 6.138 6.138 0 0 0 0-8.074 5.666 5.666 0 0 0-7.98 0Zm14.18-3.473h2.7l3.421 11.883 3.489-11.883h2.52l3.444 11.89 3.461-11.89h2.696l-4.715 15.02h-2.871l-3.207-11.536-3.168 11.536h-3.04ZM0 127.727v-21.02h2.695v10.988l9.614-10.988h3.004l-8.16 9.246 8.917 11.77h-3.16l-7.473-9.762-2.742 3.117v6.649Zm18.785-4.598v-10.422h2.55v10.508a2.198 2.198 0 0 0 1.106 1.969 5.16 5.16 0 0 0 5.16 0 2.207 2.207 0 0 0 1.098-1.97v-10.507h2.547v10.414a4.254 4.254 0 0 1-1.926 3.695 7.595 7.595 0 0 1-8.62 0 4.262 4.262 0 0 1-1.915-3.687Zm16.828 4.598v-22.532h2.551v7.89a13.677 13.677 0 0 1 4.371-.812 6.181 6.181 0 0 1 2.914.665 4.993 4.993 0 0 1 1.961 1.753 8.55 8.55 0 0 1 1.047 2.375c.23.856.344 1.735.34 2.621 0 2.637-.684 4.637-2.055 6.004-1.37 1.364-3.531 2.043-6.488 2.036Zm2.551-2.286h2.133c2.121 0 3.64-.46 4.562-1.386.922-.918 1.395-2.407 1.41-4.465a6.676 6.676 0 0 0-.94-3.528 3.077 3.077 0 0 0-2.817-1.511c-1.48-.04-2.953.207-4.34.722Zm13.832-5.254c0-2.414.64-4.34 1.922-5.773a6.445 6.445 0 0 1 5.066-2.156c4.18 0 6.27 2.953 6.274 8.855H54.543a5.818 5.818 0 0 0 1.363 3.32c.809.973 2.047 1.458 3.711 1.458 1.7.046 3.387-.274 4.95-.942v2.344a13.025 13.025 0 0 1-4.63.883 9.31 9.31 0 0 1-3.617-.645 6.306 6.306 0 0 1-2.476-1.765 7.592 7.592 0 0 1-1.407-2.528 9.747 9.747 0 0 1-.44-3.05Zm2.64-.992h8.098a6.981 6.981 0 0 0-1.113-3.347 3.025 3.025 0 0 0-2.637-1.301 3.85 3.85 0 0 0-2.914 1.273 5.673 5.673 0 0 0-1.425 3.375ZM94.22 13.527 66.215.043l-17.43 21.855ZM20.523 57.336l19.454 24.39-1.852-46.46Zm17.954-32.738.003-.008L56.645 1.813 27.352 15.921l-7.235 31.687Zm45.355 14.84L63.18 65.788l22.004 17.656 20.875-26.175Zm-36.441 46.5h30.707l-18.856-15.13Zm-3.121-56.72 1.925 47.927 34.617-44.18a3.189 3.189 0 0 1 4.508-.524l21.594 17.332-7.043-30.796Zm0 0"/></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="#72a1e5" d="M109.215 20.54 67.937.66l-25.69 32.215ZM.594 85.104l28.672 35.954-2.73-68.485Zm26.46-48.257.005-.008 26.77-33.57-43.169 20.79L0 70.769Zm66.848 21.875L63.461 97.566l32.434 26.024 30.77-38.582Zm-53.71 68.539h45.265l-27.793-22.297ZM35.59 43.66l2.836 70.645 51.027-65.121a4.716 4.716 0 0 1 3.164-1.774 4.705 4.705 0 0 1 3.48 1.004l31.829 25.547-10.38-45.395Zm0 0"/></svg>

After

Width:  |  Height:  |  Size: 454 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#013755" d="m45.8403 0-.5251.031c-.8898.0524-1.6899.3765-2.3136.9669-.6237.5904-1.0679 1.4244-1.3505 2.4763L9.8542 122.1554c-.3753 1.4053-.3027 2.6344.283 3.604.5856.9696 1.6372 1.6167 3.0343 1.9919h.002c1.4004.3746 2.6367.3415 3.6292-.2054.992-.5467 1.6684-1.5754 2.0423-2.9801v-.002L50.6476 5.8866c.3798-1.4117.2735-2.658-.341-3.6312C49.692 1.2823 48.616.631 47.216.2558c-.4878-.1306-.9301-.1414-1.3757-.1609Zm66.9885.0349c-.8903.0501-1.6913.371-2.3155.961-.6242.59-1.069 1.426-1.3525 2.4802L77.36 122.1534c-.3765 1.4056-.3022 2.6355.2848 3.604.5867.9682 1.6403 1.6144 3.0363 1.988 1.399.378 2.6348.3466 3.6273-.1995.9925-.5461 1.6712-1.5767 2.048-2.982L118.1574 5.8866h-.002c.3798-1.4107.2749-2.6553-.339-3.6273-.6138-.9716-1.6882-1.623-3.0848-1.9977h-.002c-.6733-.181-1.3078-.2601-1.9009-.2267Zm-67.4613.9882h.0077c.4621-.0278.9911.0329 1.585.1918 1.2468.3341 2.0656.872 2.5073 1.5714.4418.6995.5524 1.6104.221 2.8426L17.8876 124.308v.002c-.3295 1.2392-.8612 1.9807-1.5637 2.3678-.7025.3871-1.6474.45-2.8948.1163-1.2439-.3341-2.0285-.8594-2.4434-1.5463-.4149-.6869-.5054-1.5972-.1744-2.8367L42.6102 3.7319c.2492-.9273.619-1.583 1.0735-2.0132.4529-.4287.9926-.6536 1.6838-.6956zm67.5175.002c.4639-.0262.995.0358 1.5888.1956 1.2444.3336 2.0624.8711 2.5035 1.5695.441.6984.5524 1.6075.2209 2.8387L85.3974 124.308c-.3324 1.2396-.8653 1.9814-1.5675 2.3678-.7022.3864-1.6432.4469-2.889.1105h-.002c-1.244-.3328-2.0298-.8567-2.4454-1.5424-.4155-.6857-.5063-1.5936-.1744-2.8329L110.12 3.734c.2502-.93.6212-1.5878 1.0754-2.0171.4542-.4294.9946-.6526 1.6897-.6918zm-37.976 13.42c-.0069-.0002-.0126.0023-.0194.002-.9893-.0323-1.8864.233-2.5887.8217-.7072.5927-1.206 1.4813-1.5133 2.6216l-13.9957 52.241c-.3769 1.4062-.305 2.6366.281 3.606.5856.9688 1.6388 1.6152 3.0362 1.9899 1.3977.3763 2.6348.3448 3.6273-.2015.9926-.5463 1.6717-1.577 2.0481-2.982l13.9996-52.243c.3781-1.4104.2726-2.655-.341-3.6273-.6128-.9707-1.686-1.6203-3.0829-1.9958a6.5191 6.5191 0 0 0-1.4474-.2325l-.0232.9901zm-.0388.9902h.002a5.522 5.522 0 0 1 1.2207.1977h.002l.0039.002c1.2469.3341 2.0645.871 2.5054 1.5695.4409.6984.551 1.6072.2209 2.8386l-13.9996 52.245c-.332 1.2388-.8649 1.981-1.5676 2.3677-.7027.3868-1.6448.4493-2.889.1143h-.002c-1.2456-.3337-2.0307-.8603-2.4454-1.5463-.4146-.686-.5049-1.5941-.1724-2.8347l13.9976-52.241v-.002c.271-1.0044.6831-1.6897 1.1916-2.116.5085-.4262 1.1267-.6241 1.9319-.5948z"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 128 128"><path fill="#013755" d="M70.108 41.315c-.929 0-1.658.73-1.658 1.658 0 .929.73 1.658 1.658 1.658.929 0 1.658-.73 1.658-1.658 0-.929-.73-1.658-1.658-1.658zM1.194 42.742c-.796 0-1.194.397-1.194 1.227v21.494c0 1.261.531 1.89 1.625 1.89h11.443c.83 0 1.227-.397 1.227-1.226 0-.796-.397-1.195-1.227-1.195H2.421V43.97c0-.83-.399-1.227-1.227-1.227zm40.192 5.461c-.48.028-.812.333-.973.933l-9.638 35.966c-.214.802.1 1.298.9 1.512.802.215 1.322-.057 1.535-.859l9.638-35.966c.216-.802-.131-1.307-.933-1.522a1.677 1.677 0 0 0-.529-.064zm20.46.001c-.48.027-.813.33-.974.932l-9.637 35.966c-.215.802.1 1.297.9 1.51.801.217 1.32-.055 1.535-.857l9.637-35.966c.216-.801-.131-1.306-.932-1.52a1.682 1.682 0 0 0-.529-.065zm23.274.143c-1.956 0-3.88.896-4.975 2.886v-1.26c0-.863-.398-1.294-1.226-1.294-.797 0-1.194.431-1.194 1.293V66.16c0 .796.397 1.193 1.194 1.193.828 0 1.226-.397 1.226-1.193V55.743c0-3.283 2.289-4.975 4.578-4.975 2.223 0 4.444 1.625 4.444 4.975V66.16c0 .796.399 1.194 1.194 1.194.83 0 1.227-.398 1.227-1.194V54.68c0-3.946-3.283-6.334-6.468-6.334zm36.344.066c-3.516 0-6.666 1.658-6.666 5.407 0 2.819 3.649 4.278 6.666 5.373 1.759.63 3.815 1.559 3.815 3.184 0 2.156-2.29 2.887-4.08 2.887-1.858 0-3.416-.73-4.577-1.494-.33-.231-.664-.364-.962-.364-.63 0-1.094.432-1.094 1.36 0 .398.132.796.43.995 1.826 1.16 3.75 1.957 6.138 1.957 3.284 0 6.866-1.492 6.866-5.573 0-2.985-2.786-4.146-5.506-5.274-2.488-1.029-5.075-1.824-5.075-3.35 0-1.958 2.023-2.654 3.98-2.654 1.558 0 3.184.398 3.98.863.233.133.497.199.73.199.63 0 1.128-.398 1.128-1.161 0-.464-.2-.93-.632-1.161-1.591-.863-3.416-1.194-5.141-1.194zm-98.233.067c-2.289 0-4.047.397-5.507.994-.564.232-.929.762-.929 1.194 0 .763.565 1.029 1.128 1.029 1.03 0 2.422-.796 4.578-.796 3.118 0 4.976 1.526 4.976 3.814v3.152c-1.095-1.094-3.117-1.659-5.009-1.659-3.482 0-7.032 1.991-7.032 5.872 0 3.716 3.118 5.54 6.369 5.54 2.122 0 4.245-.796 5.672-2.322 0 .298 0 .498.033 1.127.033.63.432 1.195 1.227 1.195.796 0 1.227-.597 1.227-1.227v-11.91c0-3.35-2.322-6.003-6.733-6.003zm80.2 0c-2.29 0-4.047.397-5.506.994-.564.232-.928.762-.928 1.194 0 .763.563 1.029 1.127 1.029 1.028 0 2.422-.796 4.578-.796 3.117 0 4.975 1.526 4.975 3.814v3.152c-1.094-1.094-3.118-1.659-5.01-1.659-3.482 0-7.03 1.991-7.03 5.872 0 3.716 3.117 5.54 6.368 5.54 2.123 0 4.245-.796 5.672-2.322 0 .298 0 .497.033 1.127.032.63.43 1.195 1.227 1.195.796 0 1.227-.597 1.227-1.227v-11.91c0-3.35-2.322-6.003-6.734-6.003zm-33.258.033c-.797 0-1.227.398-1.227 1.227v16.387c0 .83.43 1.226 1.26 1.226.83 0 1.26-.397 1.26-1.226V49.74c0-.83-.463-1.227-1.293-1.227zM50.34 52.57c-.546-.02-.922.283-1.098.933L45 69.336c-.214.803.099 1.298.9 1.512.8.216 1.32-.057 1.535-.858l4.243-15.833c.215-.8-.13-1.306-.933-1.52a1.824 1.824 0 0 0-.405-.066zm-27.872 5.926c2.455 0 4.976 1.161 4.976 3.185 0 2.289-2.687 3.615-5.208 3.615-2.255 0-4.313-1.028-4.312-3.417 0-2.321 2.223-3.383 4.544-3.383zm80.2 0c2.454 0 4.975 1.161 4.975 3.185 0 2.289-2.686 3.615-5.208 3.615-2.255 0-4.311-1.028-4.311-3.417 0-2.321 2.221-3.383 4.543-3.383z"/></svg>

After

Width:  |  Height:  |  Size: 3.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="#013755" d="M45.196.007c-1.597.094-2.704 1.107-3.24 3.102L9.904 122.736c-.712 2.666.33 4.315 2.992 5.03 2.669.714 4.397-.193 5.106-2.859L50.058 5.28c.717-2.665-.437-4.347-3.105-5.062-.639-.171-1.225-.242-1.757-.21Zm68.051.003c-1.598.09-2.704 1.1-3.242 3.1L77.95 122.735c-.714 2.666.333 4.312 2.995 5.024 2.666.72 4.392-.187 5.107-2.853L118.106 5.28c.717-2.663-.437-4.342-3.1-5.056-.639-.172-1.226-.244-1.759-.214zm-38.27 14.526c-1.818-.067-3.069.94-3.652 3.103L57.217 70.298c-.715 2.668.327 4.314 2.992 5.028 2.663.717 4.392-.19 5.106-2.855L79.427 19.81c.714-2.663-.435-4.342-3.103-5.057a6.072 6.072 0 0 0-1.348-.217z"/></svg>

After

Width:  |  Height:  |  Size: 722 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#e74a45" d="M0 52.834v22.038h6.88V52.834Zm9.683 0v6.039h6.883v-6.039zm9.686 0v22.038h10.575c3.56 0 6.411-3.174 6.411-7.02 0-3.846-2.851-7.02-6.41-7.02h-3.686v-7.998zm24.925 0c-3.552 0-6.399 3.174-6.399 7.02v.137a.16.16 0 0 0 0 .032v7.83c0 3.845 2.846 7.02 6.4 7.02H59.01c3.553 0 6.397-3.175 6.397-7.02 0-3.846-2.845-7.02-6.397-7.02h-8.49v5.618h6.819c.654 0 1.178.53 1.178 1.191 0 .66-.519 1.178-1.178 1.178H45.963c-.646 0-1.156-.5-1.176-1.14v-7.672a1.166 1.166 0 0 1 1.176-1.122h4.557v.014h14.033v-6.066H48.461Zm23.075 0v6.062h19.496a1.16 1.16 0 0 1 1.164 1.122v7.667a1.158 1.158 0 0 1-1.164 1.139h-12.66v-7.981H67.37v14.03h21.153c3.532 0 6.359-3.175 6.359-7.017v-7.995c0-3.842-2.826-7.015-6.359-7.015h-5.826v-.012zm25.826 0 .842.842 10.179 10.177-11.02 11.02h9.58l7.823-7.822 7.822 7.821H128l-11.019-11.019L128 52.834h-9.58l-7.82 7.822-7.824-7.822zm-92.208.987h4.907v20.064H.987Zm9.683 0h4.91v4.065h-4.91Zm9.686 0h4.916v7.999h4.672c2.97 0 5.424 2.67 5.424 6.032s-2.453 6.033-5.424 6.033h-9.588V61.326Zm23.938 0h19.272v4.092h-12.06v-.014h-5.543a2.17 2.17 0 0 0-2.162 2.063v7.748a2.17 2.17 0 0 0 2.162 2.097H57.34a2.17 2.17 0 0 0 2.164-2.165c0-1.19-.97-2.178-2.164-2.178h-5.832V61.82h7.503c2.962 0 5.41 2.67 5.41 6.032s-2.448 6.033-5.41 6.033H44.294c-2.962 0-5.412-2.67-5.412-6.033v-7.999c0-3.362 2.45-6.032 5.412-6.032zm24.062 0h13.353v.011h6.813c2.939 0 5.372 2.668 5.372 6.03v7.994c0 3.362-2.433 6.03-5.372 6.03H68.356V61.828h4.863v7.982h13.646a2.162 2.162 0 0 0 2.151-2.095V59.97a2.163 2.163 0 0 0-2.151-2.062H68.356Zm27.221 0h6.79l8.232 8.23 8.23-8.23h6.789l-10.032 10.032 10.032 10.032h-6.789l-8.23-8.23-8.232 8.23H95.58l10.032-10.032ZM9.683 60.833v14.04h6.883v-14.04Zm.987.987h4.91v12.065h-4.91Zm14.602 3.644v4.343h3a2.172 2.172 0 0 0 2.166-2.165 2.18 2.18 0 0 0-2.167-2.178zm.987.987h2.012c.657 0 1.18.53 1.18 1.191 0 .66-.518 1.178-1.18 1.178H26.26z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M0 53.333v21.334h5.973V53.333Zm9.813 0v5.12h5.974v-5.12zm9.814 0v21.334h10.216c3.308 0 5.997-2.962 5.997-6.614 0-3.652-2.689-6.613-5.997-6.613H25.61v-8.107ZM9.813 61.44v13.227h5.974V61.44Zm15.797 4.693h2.538c.938 0 1.695.769 1.695 1.707 0 .938-.757 1.693-1.696 1.693H25.61Z"/><path fill="#e74a45" d="M44.384 53.333c-3.3 0-5.983 2.962-5.983 6.614v8.106c0 3.652 2.682 6.614 5.983 6.614h14.913c3.3 0 5.983-2.962 5.983-6.614 0-3.652-2.682-6.613-5.983-6.613h-8.103v4.693h6.41c.937 0 1.693.769 1.693 1.707a1.69 1.69 0 0 1-1.693 1.693H46.077a1.69 1.69 0 0 1-1.693-1.64V60.08c.042-.9.783-1.613 1.693-1.613h5.117v.013h13.22v-5.147H48.607zm23.883 0v5.144h19.256c.904 0 1.639.712 1.68 1.612v7.808a1.683 1.683 0 0 1-1.68 1.64H74.196v-8.089h-5.93v13.219h20.937c3.279 0 5.943-2.96 5.943-6.61v-8.101c0-3.65-2.664-6.61-5.943-6.61h-6.405v-.013zm26.878 0L105.812 64 95.147 74.667h8.293l8.133-8.134 8.134 8.134H128L117.333 64 128 53.333h-8.293l-8.134 8.134-8.133-8.134z"/></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="#e74a45" d="M0 53.334v21.332h5.973V53.334H0zm9.813 0v5.12h5.974v-5.12H9.812zm9.814 0v21.332h10.217c3.308 0 5.996-2.961 5.996-6.613 0-3.652-2.688-6.613-5.996-6.613h-4.235v-8.106h-5.982zm24.758 0c-3.301 0-5.985 2.961-5.985 6.613v8.106c0 3.652 2.684 6.613 5.985 6.613h14.912c3.3 0 5.982-2.961 5.982-6.613 0-3.652-2.681-6.613-5.982-6.613h-8.104v4.693h6.41c.937 0 1.694.769 1.694 1.707a1.69 1.69 0 0 1-1.693 1.693H46.076a1.69 1.69 0 0 1-1.691-1.64V60.08a1.69 1.69 0 0 1 1.691-1.613h5.117v.013h13.221v-5.146h-20.03zm23.883 0v5.143h19.255c.904 0 1.639.713 1.68 1.613v7.808a1.682 1.682 0 0 1-1.68 1.64H74.195v-8.089h-5.927v13.217h20.935c3.278 0 5.943-2.96 5.943-6.61 0-.054.002-.103 0-.158v-7.943c0-3.65-2.665-6.61-5.943-6.61h-6.404v-.011H68.268zm26.877 0L105.812 64 95.146 74.666h8.293l8.135-8.133 8.133 8.133H128L117.334 64 128 53.334h-8.293l-8.133 8.133-8.135-8.133h-8.295zM9.812 61.439v13.227h5.975V61.44H9.812zm15.797 4.694h2.54c.938 0 1.695.769 1.695 1.707a1.69 1.69 0 0 1-1.696 1.693H25.61v-3.4z"/></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 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

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 fill="#19191c" d="M63.156.006C36.797.355 12.328 17.094 3.396 43.483c-11.33 33.471 6.618 69.79 40.089 81.121 33.47 11.33 69.789-6.618 81.12-40.089 9.206-27.197-.918-56.277-22.996-72.3l.673 13.584c11.012 12.166 15.36 29.398 9.877 45.592-8.182 24.172-35.168 36.88-60.27 28.382-25.103-8.498-38.82-34.983-30.637-59.156C26.754 24.367 40.747 13.3 56.955 10.37L65.712.023a63.484 63.484 0 0 0-2.556-.017Zm19.967 5.831a1.482 1.482 0 0 0-.53.125l-.02.007a2.672 2.672 0 0 0-.114.058 1.783 1.783 0 0 0-.466.323c-.78.757-3.511 4.414-3.511 4.414l-5.95 7.368-6.931 8.452-11.906 14.805s-5.462 6.818-4.256 15.21c1.206 8.391 7.446 12.48 12.287 14.118 4.838 1.64 12.277 2.181 18.336-3.751 6.056-5.933 5.856-14.668 5.856-14.668l-.462-18.99-.371-10.927-.253-9.468s.053-4.563-.107-5.636a1.707 1.707 0 0 0-.188-.572c-.012-.02-.021-.043-.033-.066-.011-.021-.024-.04-.036-.06a1.483 1.483 0 0 0-.808-.667 1.482 1.482 0 0 0-.537-.075z"/></svg>

After

Width:  |  Height:  |  Size: 984 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#2a9790" d="M41.65 0C23.62 0 13.187 1.25 7.218 7.225 1.25 13.199 0 23.64 0 41.686v44.628c0 18.045 1.249 28.487 7.217 34.461C13.186 126.75 23.62 128 41.645 128h44.71c18.026 0 28.46-1.25 34.428-7.225S128 104.36 128 86.314V41.686c0-18.045-1.248-28.487-7.215-34.461C114.817 1.25 104.385 0 86.359 0Zm0 .992h44.709c17.978 0 28.119 1.324 33.722 6.934s6.927 15.762 6.927 33.76v44.628c0 17.998-1.324 28.15-6.929 33.76-5.604 5.61-15.746 6.934-33.724 6.934h-44.71c-17.978 0-28.12-1.324-33.724-6.934-5.605-5.61-6.929-15.762-6.929-33.76V41.686c0-17.998 1.323-28.15 6.929-33.76S23.668.992 41.649.992Zm40.385 22.954c-.704.008-1.307.468-2.03 1.13-.721.66-1.53 1.575-2.406 2.664-1.752 2.18-3.76 5.06-5.708 7.934-1.947 2.875-3.832 5.745-5.317 7.888-.743 1.071-1.387 1.962-1.88 2.57a7 7 0 0 1-.607.678c-.15.14-.295.124-.073.124s.076.017-.074-.124c-.15-.14-.36-.374-.607-.678-.492-.608-1.137-1.499-1.88-2.57-1.485-2.143-3.37-5.013-5.317-7.888s-3.956-5.753-5.708-7.932c-.875-1.09-1.684-2.004-2.407-2.664-.722-.661-1.325-1.12-2.029-1.128H27.49l-.066.418c-6.252 39.64-2.98 76.729-2.98 76.729l.04.453h20.57l-.11-.587c-.923-4.91-3.055-18.668-4.258-31.182-.601-6.257-.97-12.21-.845-16.576.062-2.182.252-3.972.578-5.168.162-.598.36-1.043.556-1.304.177-.237.313-.288.469-.305 0 .012.13.067.335.305.232.267.52.68.84 1.205.637 1.051 1.407 2.556 2.247 4.353 1.682 3.594 3.653 8.36 5.533 13.112a722 722 0 0 1 7.151 18.95l.134.376.395-.05s2.968-.373 5.93-.373c2.967 0 5.935.372 5.935.372l.395.05.134-.375s3.391-9.447 7.151-18.95c1.88-4.751 3.851-9.518 5.533-13.112.84-1.797 1.61-3.302 2.248-4.353.32-.526.607-.938.84-1.205.205-.238.334-.293.334-.305.156.017.292.068.47.305.195.261.393.706.556 1.304.325 1.196.515 2.986.577 5.168.125 4.366-.244 10.32-.845 16.576-1.202 12.514-3.333 26.27-4.254 31.182l-.108.587h20.564l.04-.453s3.276-37.093-2.98-76.733l-.066-.418H82.037Zm.012.992h17.625c6.034 38.634 3.057 74.348 2.948 75.62H84.153c.963-5.243 2.994-18.414 4.173-30.682.603-6.278.975-12.251.848-16.698-.063-2.223-.248-4.062-.612-5.4-.182-.67-.404-1.22-.719-1.64-.315-.421-.77-.72-1.285-.735l-.046-.002-.045.008c-.425.067-.68.334-.973.672-.293.339-.6.788-.936 1.341-.672 1.108-1.451 2.633-2.3 4.448-1.698 3.63-3.675 8.406-5.558 13.167-3.698 9.346-6.907 18.292-7.03 18.631-.356-.043-2.811-.354-5.66-.354-2.846 0-5.3.311-5.657.354-.122-.34-3.332-9.285-7.03-18.631-1.883-4.761-3.86-9.538-5.557-13.167-.85-1.814-1.629-3.34-2.3-4.448-.337-.553-.644-1.002-.937-1.34s-.548-.606-.973-.673l-.044-.008-.047.002c-.515.014-.97.314-1.285.735-.315.42-.537.97-.719 1.64-.364 1.339-.549 3.177-.612 5.4-.127 4.447.245 10.42.849 16.698 1.179 12.268 3.211 25.439 4.176 30.682h-18.47c-.11-1.272-3.083-36.983 2.947-75.616h17.63c.155.002.712.267 1.37.868.657.602 1.446 1.487 2.304 2.554 1.716 2.135 3.717 5 5.659 7.867s3.825 5.736 5.324 7.897c.749 1.08 1.4 1.98 1.924 2.628.262.323.491.583.7.779.208.195.342.391.752.391.409 0 .543-.196.752-.391.208-.196.437-.456.7-.78.523-.646 1.174-1.547 1.924-2.627 1.498-2.16 3.381-5.03 5.323-7.897s3.943-5.733 5.66-7.869c.857-1.067 1.646-1.952 2.303-2.554.658-.602 1.215-.868 1.37-.87zM55.545 91.322a5.12 5.12 0 0 0-5.113 5.116 5.12 5.12 0 0 0 5.113 5.112 5.12 5.12 0 0 0 5.112-5.112 5.12 5.12 0 0 0-5.112-5.116m16.938 0a5.12 5.12 0 0 0-5.113 5.116 5.12 5.12 0 0 0 5.113 5.112c2.639 0 4.745-2.041 5.007-4.616h.105v-.496a5.12 5.12 0 0 0-5.112-5.116m-16.938.992a4.115 4.115 0 0 1 4.12 4.124 4.11 4.11 0 0 1-4.12 4.12 4.114 4.114 0 0 1-4.12-4.12 4.115 4.115 0 0 1 4.12-4.124m16.938 0a4.11 4.11 0 0 1 4.116 4.105v.019a4.11 4.11 0 0 1-4.116 4.12 4.114 4.114 0 0 1-4.12-4.12 4.11 4.11 0 0 1 4.12-4.124"/></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"><defs><radialGradient id="c" cx="62.417" cy="142.923" r="9.213" fx="62.417" fy="142.923" gradientTransform="translate(6.049 53.495)scale(.13204)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#db7c7c"/><stop offset="100%" stop-color="#c83737"/></radialGradient><radialGradient id="d" cx="96.726" cy="142.923" r="9.213" fx="96.726" fy="142.923" gradientTransform="translate(6.049 53.495)scale(.13204)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#db7c7c"/><stop offset="100%" stop-color="#c83737"/></radialGradient><linearGradient id="a" x1="255.894" x2="255.894" y1="59.789" y2="-452" gradientTransform="translate(0 76.82)scale(.06537)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#574c4a"/><stop offset="100%" stop-color="#80716d"/></linearGradient><linearGradient id="b" x1="380.442" x2="191.971" y1="-51.758" y2="-382.305" gradientTransform="translate(0 76.82)scale(.06537)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#268d83"/><stop offset="100%" stop-color="#2ea19e"/></linearGradient></defs><path fill="url(#a)" d="M0 69.877V58.123c0-9.494 1.355-10.85 10.839-10.85h11.777c9.484 0 10.838 1.356 10.838 10.85v11.754c0 9.494-1.355 10.85-10.839 10.85H10.84C1.355 80.727 0 79.371 0 69.877"/><path fill="url(#b)" d="M7.222 53.581C5.58 64.003 6.44 73.76 6.44 73.76h5.14c-.49-2.602-2.244-14.488-.785-14.527.783.124 4.357 10.084 4.357 10.084s.787-.098 1.579-.098 1.579.098 1.579.098 3.574-9.96 4.356-10.084c1.46.039-.295 11.925-.783 14.527h5.14s.86-9.758-.784-20.18h-4.76c-.905.011-4.351 6.055-4.748 6.055-.396 0-3.842-6.043-4.748-6.054z"/><path fill="url(#c)" d="M15.716 72.544a1.216 1.216 0 1 1-2.432 0 1.216 1.216 0 0 1 2.432 0"/><path fill="url(#d)" d="M20.176 72.544a1.216 1.216 0 1 1-2.432 0 1.216 1.216 0 0 1 2.433 0z"/><path d="M25.994 53.926c.742 5.02.916 9.84.903 13.429-.014 3.672-.225 6.057-.225 6.057h-4.327l-.465.348h5.14s.86-9.757-.783-20.179zm-13.62-.127c1.35 1.502 3.686 5.488 4.007 5.488-.857-1.094-2.96-4.588-4.007-5.488m-1.927 5.085c-1.46.04.295 11.926.784 14.528H6.743l-.304.348h5.14c-.487-2.588-2.226-14.369-.806-14.527-.132-.199-.247-.336-.327-.349Zm11.87 0c-.782.125-4.356 10.085-4.356 10.085s-.787-.098-1.579-.098c-.468 0-.872.029-1.145.054l-.085.392s.788-.098 1.58-.098c.791 0 1.579.098 1.579.098s3.546-9.895 4.345-10.084c-.086-.218-.192-.345-.338-.349z" opacity=".1"/><path fill="#fff" d="M7.223 53.581C5.578 64.003 6.438 73.76 6.438 73.76l.303-.34c-.155-2.302-.569-10.627.83-19.491h4.759c.1.001.235.084.392.218-.312-.347-.57-.565-.74-.567zm14.255 0c-.905.01-4.352 6.055-4.748 6.055.162.206.293.349.349.349.396 0 3.842-6.044 4.748-6.055h4.2l.21-.348zm-10.356 6c1.156 1.737 4.03 9.736 4.03 9.736l.083-.39c-.71-1.945-3.412-9.238-4.091-9.346zm11.892 0c.775 1.978-.692 11.839-1.133 14.179l.467-.364c.595-3.492 2.028-13.778.666-13.815" opacity=".3"/><path fill="#2a9790" d="M106.584 59.994v3.455h-5.463v-3.416h-1.158v7.953h1.158v-3.379h5.463v3.38h1.158v-7.993zm-56.809.049v7.953h7.075v-1.158h-5.918v-2.23h2.67v-1.159h-2.67v-2.24h5.918v-1.166zm20.127 0v7.953h7v-1.158H71.06v-5.629h5.845l-.002-1.166h-7zm-30.584.01v7.933h1.157l.002-6.777h2.052v6.777h1.158V61.21h2.055v6.777h1.156v-7.933zm20.016 0v7.933h1.156V61.21h2.018v6.777h1.158V61.21h2.016v6.777h1.158v-7.933zm20.576 0v7.933h1.156v-3.379h5.118v3.38h1.158v-7.934zm40.108 0v7.953h5.898l.156-.129c.075-.059 1.83-1.496 1.924-3.66.061-1.398-.572-2.744-1.883-4.004l-.166-.16zm-30.174.002v7.953h7.449V66.85H91v-5.63h6.293v-1.165zm20.052 0v7.953h7.301V66.85h-6.144v-2.243h2.781V63.45h-2.781v-2.228h6.144v-1.166h-7.3zm-28.83 1.154h5.118v2.24h-5.118zm40.106 0h4.297c.947.954 1.408 1.957 1.367 2.947-.053 1.326-.996 2.346-1.348 2.692h-4.314z"/></svg>

After

Width:  |  Height:  |  Size: 3.7 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="f" cx="62.417" cy="142.923" r="9.213" fx="62.417" fy="142.923" gradientTransform="matrix(.50523 0 0 .50521 23.143 23.805)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#db7c7c"/><stop offset="1" stop-color="#c83737"/></radialGradient><radialGradient id="g" cx="96.726" cy="142.923" r="9.213" fx="96.726" fy="142.923" gradientTransform="matrix(.50523 0 0 .50521 23.143 23.805)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#db7c7c"/><stop offset="1" stop-color="#c83737"/></radialGradient><linearGradient id="d" x1="255.894" x2="255.894" y1="59.789" y2="-452" gradientTransform="translate(0 113.047)scale(.25011)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#574c4a"/><stop offset="1" stop-color="#80716d"/></linearGradient><linearGradient id="e" x1="380.442" x2="191.971" y1="-51.758" y2="-382.305" gradientTransform="translate(0 113.047)scale(.25011)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#268d83"/><stop offset="1" stop-color="#2ea19e"/></linearGradient><clipPath id="b"><path d="M0 0h128v128H0z"/></clipPath><clipPath id="c"><path d="M0 0h128v128H0z"/></clipPath><mask id="i"><g filter="url(#a)"><path fill-opacity=".102" d="M0 0h128v128H0z"/></g></mask><mask id="k"><g filter="url(#a)"><path fill-opacity=".302" d="M0 0h128v128H0z"/></g></mask><g id="h" clip-path="url(#b)"><path d="M99.457 25.453c2.84 19.211 3.5 37.649 3.453 51.383-.055 14.047-.86 23.176-.86 23.176H85.493l-1.777 1.332h19.668s3.293-37.332-3-77.207Zm-52.113-.484c5.164 5.746 14.105 21 15.328 21-3.274-4.188-11.32-17.555-15.328-21m-7.375 19.457c-5.586.152 1.129 45.629 3 55.586H25.8l-1.164 1.332H44.3c-1.86-9.903-8.516-54.977-3.082-55.582-.504-.762-.946-1.285-1.25-1.336Zm45.418 0c-2.992.476-16.664 38.586-16.664 38.586s-3.012-.375-6.043-.375c-1.793 0-3.336.11-4.38.207l-.323 1.5s3.007-.375 6.039-.375c3.03 0 6.043.375 6.043.375s13.57-37.86 16.625-38.582c-.329-.836-.735-1.32-1.293-1.336Zm0 0"/></g><g id="j" clip-path="url(#c)"><path fill="#fff" d="M27.637 24.137c-6.293 39.875-3.004 77.207-3.004 77.207l1.16-1.305c-.594-8.809-2.176-40.66 3.176-74.57h18.207c.383.004.898.316 1.5.832-1.192-1.328-2.184-2.16-2.832-2.168Zm54.543 0C78.71 24.176 65.527 47.3 64.012 47.3c.617.793 1.12 1.336 1.332 1.336 1.515 0 14.703-23.125 18.168-23.164h16.07l.805-1.336ZM42.555 47.094c4.422 6.644 15.414 37.25 15.414 37.25l.324-1.492c-2.715-7.442-13.059-35.344-15.656-35.758-.028 0-.055-.004-.082 0m45.5 0c2.965 7.566-2.653 45.293-4.336 54.246l1.785-1.39c2.281-13.36 7.762-52.72 2.55-52.856Zm0 0"/></g><filter id="a" width="1" height="1" x="0" y="0" filterUnits="objectBoundingBox"><feColorMatrix in="SourceGraphic" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/></filter></defs><path fill="url(#d)" d="M0 86.488V41.512C0 5.187 5.184 0 41.474 0h45.06C122.82 0 128 5.188 128 41.512v44.976C128 122.813 122.816 128 86.53 128H41.47C5.184 128 0 122.812 0 86.488m0 0"/><path fill="url(#e)" d="M27.634 24.137c-6.29 39.875-3 77.207-3 77.207h19.668c-1.871-9.957-8.586-55.434-3-55.586 2.992.476 16.669 38.586 16.669 38.586s3.011-.38 6.039-.38c3.031 0 6.043.38 6.043.38s13.676-38.11 16.668-38.586c5.587.152-1.129 45.629-2.996 55.586h19.665s3.293-37.336-3-77.211H82.182C78.717 24.176 65.53 47.3 64.014 47.3S49.31 24.175 45.845 24.136zm0 0"/><path fill="url(#f)" d="M60.13 96.691a4.65 4.65 0 0 1-4.652 4.653 4.654 4.654 0 0 1 0-9.309 4.655 4.655 0 0 1 4.653 4.656zm0 0"/><path fill="url(#g)" d="M77.198 96.691a4.65 4.65 0 1 1-9.301 0 4.652 4.652 0 1 1 9.305 0zm0 0"/><use xlink:href="#h" mask="url(#i)" transform="scale(1.00003 1)"/><use xlink:href="#j" mask="url(#k)" transform="scale(1.00003 1)"/></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="#2a9790" d="M10.84 47.273C1.356 47.273 0 48.63 0 58.123v11.754c0 9.494 1.354 10.85 10.838 10.85h11.777c9.484 0 10.838-1.356 10.838-10.85V58.123c0-9.494-1.354-10.85-10.838-10.85zM7.223 53.58l4.76.002c.133.002.325.143.55.367q.05.05.102.106.084.089.176.191v.002l.002.002q.239.278.507.633.269.354.553.756l.002.004c.095.134.191.275.287.414s.192.273.287.414c.533.783 1.05 1.568 1.463 2.166.017.023.037.055.053.078l.084.117c.111.158.214.3.303.416l.029.04c.166.213.293.347.35.347.396 0 3.842-6.044 4.748-6.055h4.759c.309 1.954.527 3.885.682 5.733a97 97 0 0 1 .287 10.81 88 88 0 0 1-.076 1.95 48 48 0 0 1-.11 1.687h-5.138v-.002c.489-2.605 2.241-14.486.781-14.526a.2.2 0 0 0-.072.036l-.01.005a1 1 0 0 0-.066.065c-.012.012-.023.02-.036.035q0 .002-.003.004a2 2 0 0 0-.1.133q-.06.084-.123.191a8 8 0 0 0-.281.508 19 19 0 0 0-.319.652l-.013.028q-.161.346-.332.738a78 78 0 0 0-.989 2.379c-.042.107-.084.208-.127.314l-.01.026c-.244.617-.482 1.235-.703 1.812l-.005.018a186 186 0 0 0-1.164 3.14h-.002c-.002 0-.197-.024-.493-.048-.295-.025-.69-.05-1.086-.05-.79 0-1.575.098-1.578.098h-.002s-3.573-9.96-4.355-10.084a.3.3 0 0 0-.055.008l-.017.004a.3.3 0 0 0-.064.033c-.015.01-.028.027-.042.04-.023.02-.048.039-.068.068-.018.024-.031.058-.047.088-.014.026-.028.05-.041.08-.013.031-.025.07-.037.105-.014.043-.029.082-.041.131l-.01.045a3 3 0 0 0-.05.24l-.005.037q-.022.139-.039.295l-.013.168-.014.168-.01.21-.01.253q-.01.437 0 .941l.004.092q.011.468.04.979.03.539.074 1.111.018.223.039.451a71 71 0 0 0 .197 2.004l.004.043q.068.606.14 1.205l.004.035c.1.812.207 1.603.31 2.332.067.464.127.842.188 1.247.037.241.077.53.112.746l.002.007c.091.57.171 1.038.232 1.362H6.44s-.86-9.758.784-20.18zm99.361 6.414v3.455h-5.463v-3.416h-1.158v7.953h1.158v-3.379h5.463v3.38h1.158v-7.993zm-56.809.049v7.953h7.075v-1.158h-5.918v-2.23h2.67v-1.159h-2.67v-2.24h5.918v-1.166zm20.127 0v7.953h7v-1.158H71.06v-5.629h5.845l-.002-1.166h-7zm-30.584.01v7.933h1.157l.002-6.777h2.052v6.777h1.158V61.21h2.055v6.777h1.156v-7.933zm20.016 0v7.933h1.156V61.21h2.018v6.777h1.158V61.21h2.016v6.777h1.158v-7.933zm20.576 0v7.933h1.156v-3.379h5.118v3.38h1.158v-7.934zm40.108 0v7.953h5.898l.156-.129c.075-.059 1.83-1.496 1.924-3.66.061-1.398-.572-2.744-1.883-4.004l-.166-.16zm-30.174.002v7.953h7.449V66.85H91v-5.63h6.293v-1.165zm20.052 0v7.953h7.301V66.85h-6.144v-2.243h2.781V63.45h-2.781v-2.228h6.144v-1.166h-7.3zm-28.83 1.154h5.118v2.24h-5.118zm40.106 0h4.297c.947.954 1.408 1.957 1.367 2.947-.053 1.326-.996 2.346-1.348 2.692h-4.314zM14.438 71.329q.03-.002.062 0a1.215 1.215 0 1 1 0 2.432 1.216 1.216 0 0 1-.063-2.433zm4.46 0q.032-.002.063 0c.672 0 1.217.544 1.217 1.216h-.002a1.216 1.216 0 1 1-1.277-1.217z"/></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="#2a9790" d="M41.475 0C5.185 0 0 5.188 0 41.512v44.976C0 122.812 5.184 128 41.47 128h45.06c36.286 0 41.47-5.188 41.47-41.512V41.512C128 5.188 122.82 0 86.533 0zm40.707 24.133h18.209c6.293 39.875 3 77.21 3 77.21H83.725c1.867-9.956 8.582-55.433 2.996-55.585-2.993.476-16.668 38.586-16.668 38.586s-3.012-.38-6.043-.38c-3.028 0-6.04.38-6.04.38s-13.675-38.11-16.667-38.586c-5.586.152 1.129 45.629 3 55.586h-19.67s-3.29-37.332 3-77.207h18.213C49.31 24.176 62.498 47.3 64.014 47.3s14.703-23.125 18.168-23.168zM55.479 92.035a4.654 4.654 0 0 1 0 9.309 4.654 4.654 0 0 1 0-9.309m17.07 0a4.65 4.65 0 0 1 4.652 4.656h-.004a4.65 4.65 0 1 1-9.3 0 4.65 4.65 0 0 1 4.652-4.656"/></svg>

After

Width:  |  Height:  |  Size: 743 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.6 KiB

Some files were not shown because too many files have changed in this diff Show More