1
0
mirror of https://github.com/konpa/devicon.git synced 2025-08-13 10:04:24 +02:00

Merge branch 'develop' into new-icon-datadog

This commit is contained in:
Alex Canales
2025-02-15 17:14:38 -05:00
committed by GitHub
206 changed files with 1766 additions and 2423 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>

View File

@@ -1,25 +0,0 @@
{
"name": "devicon",
"version": "2.2.0",
"main": "devicon.min.css",
"ignore": [
".jshintrc",
"**/*.txt"
],
"homepage": "http://konpa.github.io/devicon/",
"repository": {
"type": "git",
"url": "git://github.com/konpa/devicon.git"
},
"authors": [
"konpa <julien@konpa.fr> (http://konpa.fr)"
],
"description": "Programming related icons collection",
"keywords": [
"programming",
"icons",
"svg",
"font"
],
"license": "MIT"
}

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

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@@ -0,0 +1 @@
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M95.965 47.4c-8.687-.15-17.27 3.253-23.996 9.49-.63.426-.84 1.067-.418 1.708 4.195-1.282 8.597-2.563 13.21-2.774 4.825-.426 9.86-.851 14.684 1.278 6.082 2.559 7.133 8.316 2.516 12.796-2.098 2.133-4.824 3.625-7.758 4.477-1.68.426-1.89 1.281-1.262 2.984 1.891 4.692 3.149 9.598 2.52 14.926-.211.856-.422 1.496.418 2.133 1.886 1.281 9.02 0 10.488-1.492 2.727-2.559 1.676-5.543 1.047-8.317-.836-3.41-.418-6.609 1.469-9.382 1.887-2.77 4.613-4.051 7.55-5.329 1.258-.425 2.31-1.066 3.149-2.558 1.887-3.625-.422-9.809-3.988-12.797-6.055-4.758-12.873-7.025-19.63-7.143zm22.734 24.809c-.332-.005-.669.007-1.01.033-5.66.641-9.437 4.906-9.02 10.664.422 5.328 5.036 9.38 10.278 8.953 5.453-.426 9.442-5.117 9.02-10.875-.392-5.196-4.289-8.707-9.268-8.775z" fill="#85d82e"/><path d="M69.662 63.74c-.262-.027-.523.08-.838.4 2.516 3.836 4.824 7.891 6.711 12.153 1.68 4.692 3.567 9.383 2.938 14.715-.63 6.398-5.875 9.168-11.328 5.969-2.727-1.493-4.825-3.625-6.5-6.184-1.051-1.492-2.098-1.492-3.356-.426-3.988 3.414-8.18 5.973-13.426 6.824-.836 0-1.675 0-2.097.852-.63 2.133 2.52 8.742 4.406 9.809 3.144 1.921 5.664 0 8.18-1.493 2.937-1.703 5.87-2.343 9.226-1.277 3.149 1.067 5.246 3.41 7.133 5.969.84 1.066 1.68 1.918 3.355 2.347 3.985 1.067 9.438-3.199 11.118-7.464 6.293-16.418-.84-33.266-14.684-41.793-.314-.213-.576-.374-.838-.4zm-9.017 44.112c-5.036 0-9.23 4.265-9.23 9.808 0 6.183 3.983 10.024 10.07 10.024 4.82-.215 9.015-4.692 9.015-9.809 0-5.332-4.824-10.023-9.855-10.023z" fill="#22c1ff"/><path d="M99.096 4.623a8.923 8.923 0 00-.49.025c-5.454.426-9.227 5.329-8.81 10.66.419 5.333 5.243 9.383 10.696 8.958 5.035-.426 9.23-5.332 8.813-10.45-.41-5.165-5.144-9.325-10.21-9.193zM80.789 7.607c-2.765-.032-5.766.906-7.77 2.584-13.632 11.09-15.94 29.641-8.18 44.352.208.64.63 1.281 1.466.855v-.002c-.207-4.69-.418-9.38.422-13.86.84-5.118 1.675-10.235 4.824-14.497 3.773-5.332 9.648-5.121 12.793.637 1.68 2.773 2.308 5.758 2.515 8.957 0 1.918.84 2.344 2.52 2.133 5.032-.852 10.066-.852 14.89 1.066.63.211 1.258.64 2.098 0 1.676-1.492 2.098-8.957 1.047-10.875-1.887-3.414-4.824-2.984-7.758-2.984-3.355.21-6.293-.856-8.601-3.625-2.098-2.559-2.727-5.758-3.145-8.957-.21-1.492-.422-2.774-1.68-3.84-1.283-1.306-3.29-1.918-5.44-1.944z" fill="#ffc911"/><path d="M21.68 47.53c-.39.014-.833.163-1.305.404-.84.425-1.68.851-2.309 1.28-5.453 3.41-6.082 7.677-1.468 12.368 3.355 3.41 5.035 7.25 3.777 11.941-.629 2.344-1.89 4.051-3.355 5.97-1.051 1.28-1.47 2.558-1.262 4.265.422 4.05 4.406 8.101 9.23 8.527 13.422 1.281 24.328-3.41 31.88-14.926 2.519-3.624 4.405-7.675 5.245-11.941-.84-.211-1.05.215-1.68.43-4.823 5.117-9.859 10.02-16.359 13.433-2.515 1.278-5.242 2.344-8.18 2.344-4.613 0-7.34-2.984-6.921-7.676.21-3.84 1.68-7.25 4.195-10.023 1.258-1.492 1.258-2.344-.211-3.625-4.195-2.985-7.969-6.61-9.855-11.516-.264-.932-.771-1.281-1.422-1.256zM9.646 60.872c-.336.006-.676.028-1.017.068-4.824.426-9.02 5.543-8.602 10.66C.45 76.935 5.48 81.2 10.516 80.56c6.082-.426 9.23-6.399 9.02-11.301-.396-4.798-4.842-8.472-9.89-8.385z" fill="#0068d8"/><path d="M33.938.316a9.087 9.087 0 00-.981.067c-5.66.64-9.02 5.117-8.387 11.3.629 4.692 5.66 8.743 10.485 8.106 5.664-.856 9.437-5.547 8.808-11.09-.59-4.6-5.048-8.447-9.925-8.383zm17.26 6.938c-2.666-.061-4.711 1.697-5.866 5.07-2.516 7.465-7.34 10.235-15.102 8.742-1.046-.214-2.097-.425-2.515-.425-3.985.64-6.293 2.984-6.922 6.183-.84 9.81 4.195 16.844 11.117 22.602 7.34 6.398 16.36 7.89 25.797 7.465.84 0 1.68 0 1.887-.641.21-1.066-.836-1.066-1.469-1.277-4.402-1.922-9.016-3.414-13.004-6.188-3.984-2.769-8.598-5.117-10.277-10.445-1.258-4.051.422-7.676 4.406-8.957 3.566-1.281 7.133-1.281 10.488 0 2.098.851 2.934.426 3.356-1.918.629-4.051 1.886-7.89 4.402-11.3 2.938-4.267 2.938-4.692-1.887-7.466-.21 0-.21-.215-.418-.215-1.442-.8-2.782-1.202-3.994-1.23z" fill="#ff4546"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@@ -0,0 +1 @@
<svg viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="M33.938.316a9.087 9.087 0 0 0-.981.067c-5.66.64-9.02 5.117-8.387 11.3.629 4.692 5.66 8.743 10.485 8.106 5.664-.856 9.437-5.547 8.808-11.09-.59-4.6-5.048-8.447-9.925-8.383zm65.158 4.307a8.923 8.923 0 0 0-.49.025c-5.454.426-9.227 5.329-8.81 10.66.419 5.333 5.243 9.383 10.696 8.958 5.035-.426 9.23-5.332 8.813-10.45-.41-5.165-5.144-9.325-10.21-9.193zm-47.899 2.63c-2.665-.06-4.71 1.698-5.865 5.071-2.516 7.465-7.34 10.235-15.102 8.742-1.046-.214-2.097-.425-2.515-.425-3.985.64-6.293 2.984-6.922 6.183-.84 9.81 4.195 16.844 11.117 22.602 7.34 6.398 16.36 7.89 25.797 7.465.84 0 1.68 0 1.887-.641.21-1.066-.836-1.066-1.469-1.277-4.402-1.922-9.016-3.414-13.004-6.188-3.984-2.769-8.598-5.117-10.277-10.445-1.258-4.051.422-7.676 4.406-8.957 3.566-1.281 7.133-1.281 10.488 0 2.098.851 2.934.426 3.356-1.918.629-4.051 1.886-7.89 4.402-11.3 2.938-4.267 2.938-4.692-1.887-7.466-.21 0-.21-.215-.418-.215-1.442-.8-2.782-1.202-3.994-1.23zm29.592.354c-2.765-.032-5.766.906-7.77 2.584-13.632 11.09-15.94 29.641-8.18 44.352.208.64.63 1.281 1.466.855v-.002c-.207-4.69-.418-9.38.422-13.86.84-5.118 1.675-10.235 4.824-14.497 3.773-5.332 9.648-5.121 12.793.637 1.68 2.773 2.308 5.758 2.515 8.957 0 1.918.84 2.344 2.52 2.133 5.032-.852 10.066-.852 14.89 1.066.63.211 1.258.64 2.098 0 1.676-1.492 2.098-8.957 1.047-10.875-1.887-3.414-4.824-2.984-7.758-2.984-3.355.21-6.293-.856-8.601-3.625-2.098-2.559-2.727-5.758-3.145-8.957-.21-1.492-.422-2.774-1.68-3.84-1.283-1.306-3.29-1.918-5.44-1.944zM95.965 47.4c-8.687-.15-17.27 3.253-23.996 9.49-.63.426-.84 1.067-.418 1.708 4.195-1.282 8.597-2.563 13.21-2.774 4.825-.426 9.86-.851 14.684 1.278 6.082 2.559 7.133 8.316 2.516 12.796-2.098 2.133-4.824 3.625-7.758 4.477-1.68.426-1.89 1.281-1.262 2.984 1.891 4.692 3.149 9.598 2.52 14.926-.211.856-.422 1.496.418 2.133 1.886 1.281 9.02 0 10.488-1.492 2.727-2.559 1.676-5.543 1.047-8.317-.836-3.41-.418-6.609 1.469-9.382 1.887-2.77 4.613-4.051 7.55-5.329 1.258-.425 2.31-1.066 3.149-2.558 1.887-3.625-.422-9.809-3.988-12.797-6.055-4.758-12.873-7.025-19.63-7.143zm-74.285.13c-.39.014-.833.163-1.305.404-.84.425-1.68.851-2.309 1.28-5.453 3.41-6.082 7.677-1.468 12.368 3.355 3.41 5.035 7.25 3.777 11.941-.629 2.344-1.89 4.051-3.355 5.97-1.051 1.28-1.47 2.558-1.262 4.265.422 4.05 4.406 8.101 9.23 8.527 13.422 1.281 24.328-3.41 31.88-14.926 2.519-3.624 4.405-7.675 5.245-11.941-.84-.211-1.05.215-1.68.43-4.823 5.117-9.859 10.02-16.359 13.433-2.515 1.278-5.242 2.344-8.18 2.344-4.613 0-7.34-2.984-6.921-7.676.21-3.84 1.68-7.25 4.195-10.023 1.258-1.492 1.258-2.344-.211-3.625-4.195-2.985-7.969-6.61-9.855-11.516-.264-.932-.771-1.281-1.422-1.256zM9.646 60.872c-.336.006-.676.028-1.017.068-4.824.426-9.02 5.543-8.602 10.66.423 5.335 5.453 9.6 10.489 8.96 6.082-.426 9.23-6.399 9.02-11.301-.396-4.798-4.842-8.472-9.89-8.385zm60.016 2.867c-.262-.027-.523.08-.838.4 2.516 3.836 4.824 7.891 6.711 12.153 1.68 4.692 3.567 9.383 2.938 14.715-.63 6.398-5.875 9.168-11.328 5.969-2.727-1.493-4.825-3.625-6.5-6.184-1.051-1.492-2.098-1.492-3.356-.426-3.988 3.414-8.18 5.973-13.426 6.824-.836 0-1.675 0-2.097.852-.63 2.133 2.52 8.742 4.406 9.809 3.144 1.921 5.664 0 8.18-1.493 2.937-1.703 5.87-2.343 9.226-1.277 3.149 1.067 5.246 3.41 7.133 5.969.84 1.066 1.68 1.918 3.355 2.347 3.985 1.067 9.438-3.199 11.118-7.464 6.293-16.418-.84-33.266-14.684-41.793-.314-.213-.576-.374-.838-.4zM118.7 72.21c-.332-.005-.669.007-1.01.033-5.66.641-9.437 4.906-9.02 10.664.422 5.328 5.036 9.38 10.278 8.953 5.453-.426 9.442-5.117 9.02-10.875-.392-5.196-4.289-8.707-9.268-8.775zm-58.054 35.643c-5.036 0-9.23 4.265-9.23 9.808 0 6.183 3.983 10.024 10.07 10.024 4.82-.215 9.015-4.692 9.015-9.809 0-5.332-4.824-10.023-9.855-10.023z"/></svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#C4473A" d="M52.864 64h23.28L63.769 38.123zM63.81 1.026L4.553 21.88l9.363 77.637 49.957 27.457 50.214-27.828 9.36-77.635L63.81 1.026zM48.044 75l-7.265 18.176-13.581.056 36.608-81.079-.07-.153h-.064l.001-.133.063.133h.141l.123-.274V12h-.124l-.069.153 38.189 81.417-13.074-.287-8.042-18.58-17.173.082"/></svg>
<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"><path d="m52.864 64h23.28l-12.375-25.877zm10.946-62.974-59.257 20.854 9.363 77.637 49.957 27.457 50.214-27.828 9.36-77.635zm-15.766 73.974-7.265 18.176-13.581 0.056 36.608-81.079s26.531 56.561 38.19 81.417l-13.074-0.287-8.042-18.58-17.173 0.082z" fill="#c4473a"/></svg>

Before

Width:  |  Height:  |  Size: 381 B

After

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

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

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

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f73b95" d="M64.002 0c-35.34 0-64 28.66-64 64.002S28.662 128 64.002 128s63.996-28.656 63.996-63.996v-.002C127.998 28.662 99.344 0 64.002 0m0 .992c34.806 0 63.006 28.207 63.006 63.01v.002c0 34.804-28.201 63.004-63.006 63.004-34.803 0-63.01-28.2-63.01-63.006S29.2.992 64.002.992M63.998 12.7c-28.328 0-51.297 22.974-51.297 51.303 0 28.324 22.97 51.297 51.297 51.297 28.325 0 51.3-22.973 51.3-51.297 0-28.329-22.975-51.3-51.3-51.3zm0 .994c27.789 0 50.309 22.516 50.309 50.309 0 27.788-22.521 50.305-50.309 50.305-27.793 0-50.305-22.517-50.305-50.305 0-27.793 22.513-50.309 50.305-50.309m.004 11.711c-21.314 0-38.6 17.286-38.6 38.6 0 21.31 17.286 38.592 38.6 38.592 21.31 0 38.596-17.282 38.596-38.592 0-21.314-17.286-38.6-38.596-38.6m0 .992c20.773 0 37.603 16.83 37.603 37.608 0 20.773-16.83 37.6-37.603 37.6-20.778 0-37.607-16.827-37.607-37.6 0-20.778 16.83-37.608 37.607-37.608m-.004 11.706c-14.298 0-25.896 11.601-25.896 25.9 0 14.294 11.601 25.896 25.9 25.896 14.294 0 25.896-11.602 25.896-25.896 0-14.299-11.605-25.9-25.9-25.9m0 .992c13.758 0 24.908 11.146 24.908 24.908 0 13.757-11.147 24.904-24.904 24.904-13.762 0-24.908-11.147-24.908-24.904 0-13.762 11.142-24.908 24.904-24.908"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f73b95" d="M16.703 47.297c9.225 0 16.704 7.478 16.704 16.703s-7.479 16.703-16.704 16.703S0 73.225 0 64s7.478-16.703 16.703-16.703"/><path fill="#bd399c" d="M16.743 50.558c7.468 0 13.522 6.054 13.522 13.522S24.21 77.602 16.743 77.602 3.221 71.548 3.221 64.08s6.054-13.522 13.522-13.522"/><path fill="#93388e" d="M16.743 54.137c5.491 0 9.942 4.452 9.942 9.943s-4.451 9.942-9.942 9.942-9.942-4.451-9.942-9.942 4.45-9.943 9.942-9.943"/><path fill="#6030a2" d="M16.664 57.16a6.76 6.76 0 1 1 0 13.521 6.76 6.76 0 0 1 0-13.522z"/><path fill="#fdf3f8" d="M42.567 70.204V57.92h4.776c3.385 0 5.463 2.2 5.463 6.15 0 3.952-2.01 6.134-5.411 6.134zm2.044-10.549v8.814h2.629c2.749 0 3.522-2.045 3.522-4.398 0-2.354-.773-4.416-3.522-4.416zm13.528 9.33c1.495 0 2.096-.928 2.251-1.461h1.804c-.447 1.666-1.752 2.938-4.003 2.938-2.732 0-4.398-1.89-4.398-4.639 0-2.852 1.666-4.639 4.312-4.639 2.835 0 4.226 1.976 4.226 5.103h-6.734c0 1.477.945 2.697 2.542 2.697zm-.034-6.375c-1.46 0-2.508.98-2.508 2.337h4.93c0-1.357-.962-2.337-2.422-2.337m9.488.292h-1.65v4.76c0 .996.481 1.116 1.65 1.047v1.478a5.2 5.2 0 0 1-1.237.137c-1.444 0-2.234-.653-2.234-2.508v-4.914h-1.271v-1.477h1.271v-2.766h1.821v2.766h1.65zm6.67.825c0-.636-.378-1.117-1.58-1.117-1.444 0-1.977.447-2.062 1.58h-1.753c.086-1.683 1.168-3.006 3.814-3.006 1.942 0 3.385.74 3.385 3.076v4.174c0 .619.137.945.842.877v.859a2.7 2.7 0 0 1-1.048.189c-.963 0-1.41-.344-1.581-1.203h-.034c-.55.773-1.547 1.306-2.904 1.306-1.787 0-2.886-1.031-2.886-2.509 0-1.924 1.426-2.525 3.625-2.955 1.357-.257 2.182-.43 2.182-1.271m-2.526 5.309c1.495 0 2.526-.739 2.526-2.165v-1.323c-.292.206-.997.412-1.839.584-1.494.327-2.147.756-2.147 1.65 0 .807.481 1.254 1.46 1.254m14.343-6.15c2.629.67 4.622 1.236 4.622 3.985 0 1.959-1.478 3.59-4.57 3.59-3.007 0-5.292-1.563-5.412-4.346h2.045c.103 1.564 1.168 2.594 3.367 2.594 1.821 0 2.525-.807 2.525-1.752 0-1.46-1.048-1.735-3.47-2.337-1.924-.48-4.003-1.22-4.003-3.556 0-2.182 1.684-3.402 4.364-3.402 2.697 0 4.656 1.41 4.828 3.935H88.33c-.189-1.426-1.082-2.182-2.783-2.182-1.46 0-2.337.55-2.337 1.46 0 1.34 1.151 1.58 2.87 2.01zm10.58-1.702c2.234 0 3.9 1.753 3.9 4.639s-1.666 4.639-3.9 4.639c-1.374 0-2.233-.653-2.697-1.306h-.034v4.038h-1.821v-11.77h1.82v1.032h.035c.464-.619 1.323-1.272 2.698-1.272zm-.343 7.8c1.58 0 2.423-1.443 2.423-3.161s-.842-3.161-2.423-3.161c-1.46 0-2.371 1.202-2.371 3.161 0 1.941.91 3.161 2.371 3.161m10.864-5.257c0-.636-.378-1.117-1.58-1.117-1.444 0-1.976.447-2.062 1.58h-1.753c.086-1.683 1.169-3.006 3.814-3.006 1.942 0 3.385.74 3.385 3.076v4.174c0 .619.137.945.842.877v.859a2.7 2.7 0 0 1-1.048.189c-.962 0-1.409-.344-1.58-1.203h-.035c-.55.773-1.547 1.306-2.904 1.306-1.787 0-2.886-1.031-2.886-2.509 0-1.924 1.426-2.525 3.625-2.955 1.357-.257 2.182-.43 2.182-1.271m-2.526 5.309c1.495 0 2.526-.739 2.526-2.165v-1.323c-.292.206-.996.412-1.838.584-1.495.327-2.148.756-2.148 1.65 0 .807.481 1.254 1.46 1.254m12.275-4.398c-.069-.894-.636-1.976-2.182-1.976-1.77 0-2.525 1.512-2.525 3.161s.738 3.161 2.525 3.161c1.546 0 2.113-1.065 2.182-2.044h1.804c-.137 2.027-1.7 3.522-3.986 3.522-2.629 0-4.33-1.89-4.33-4.639s1.701-4.639 4.313-4.639c2.285 0 3.78 1.46 4.003 3.454zm6.878 4.346c1.495 0 2.096-.927 2.25-1.46h1.805c-.447 1.666-1.753 2.938-4.004 2.938-2.731 0-4.398-1.89-4.398-4.639 0-2.852 1.667-4.639 4.313-4.639 2.834 0 4.226 1.976 4.226 5.103h-6.735c0 1.477.945 2.697 2.543 2.697m-.034-6.374c-1.46 0-2.509.98-2.509 2.337h4.931c0-1.357-.962-2.337-2.422-2.337"/></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#f73b95" d="M128 64.003C128 99.349 99.348 128 64.001 128c-35.345 0-64-28.65-64-63.998S28.657 0 64.002 0C99.35 0 128 28.657 128 64.002Zm0 0"/><path fill="#bd399c" d="M115.204 64.003c0 28.275-22.926 51.201-51.202 51.201-28.28 0-51.2-22.926-51.2-51.201 0-28.28 22.921-51.2 51.2-51.2 28.276 0 51.202 22.92 51.202 51.2m0 0"/><path fill="#93388e" d="M102.399 64.003c0 21.206-17.19 38.396-38.397 38.396-21.21 0-38.4-17.19-38.4-38.396 0-21.21 17.19-38.4 38.4-38.4 21.206 0 38.397 17.19 38.397 38.4m0 0"/><path fill="#6030a2" d="M89.603 64.003c0 14.135-11.465 25.6-25.6 25.6-14.14 0-25.601-11.465-25.601-25.6 0-14.14 11.46-25.6 25.6-25.6 14.136 0 25.601 11.46 25.601 25.6m0 0"/></svg>

After

Width:  |  Height:  |  Size: 750 B

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"><path fill="#00acd7" d="M62.772 47.678c-2.217 0-4.23 1.637-4.562 3.752v.006c-.31 2.12 1.41 3.911 3.637 3.911 2.225 0 4.257-1.649 4.54-3.774.28-2.12-1.398-3.894-3.615-3.894zm0 .989c1.717 0 2.841 1.211 2.634 2.774-.207 1.558-1.836 2.918-3.559 2.918-1.718 0-2.882-1.238-2.66-2.775.245-1.568 1.868-2.918 3.585-2.918zm-25.665.941-.07.413-4.96 29.88h8.082l1.947-11.773H53.75l1.14-6.758H43.242l.812-5.021h12.914l1.142-6.74zm30.95 0-.07.413-4.95 29.878h7.925l.443-2.76c.87 1.7 2.617 3.072 5.473 3.072 4.986 0 9.591-3.903 10.995-11.163-.427 3.302.096 6.105 1.69 8.059 1.705 2.087 4.479 3.21 8.03 3.215 5.95 0 10.376-2.914 12.007-7.438l.232-.642-7.366-.213-.145.267c-.702 1.297-2.081 1.987-3.759 1.987-1.268 0-2.109-.362-2.61-.978-.479-.587-.668-1.492-.508-2.703h14.613l.34-2.16v-.004c.616-3.706-.026-6.673-1.694-8.707-1.67-2.034-4.325-3.08-7.55-3.08-6.659 0-11.748 4.548-13.098 11.237.485-3.61-.004-6.42-1.318-8.292-1.398-1.99-3.615-2.946-6.038-2.946-2.815 0-4.894 1.275-6.264 2.832l1.615-9.874zm-30.113.988H56.94l-.806 4.765H43.212l-1.133 6.997h11.644l-.806 4.782H41.269l-1.947 11.773h-6.079zm30.953 0h5.99l-1.814 11.088h1.019l.142-.25c1.076-1.898 3.181-3.796 6.465-3.796 2.17 0 4.025.811 5.23 2.526 1.203 1.714 1.767 4.393 1.134 8.186-1.203 7.314-5.578 10.874-10.185 10.874-3.135 0-4.544-1.65-5.013-3.505l-.095-.372h-1.077l-.573 3.564h-5.918zm56.621 6.042c-2.02 0-3.883.974-5.258 2.827l.428-2.532h-7.792l-3.825 22.964h7.997l2.044-12.344c.42-2.394 2.352-3.966 4.59-3.966.824 0 2.02.15 2.53.342l.562.21L128 57l-.446-.11a8.81 8.81 0 0 0-2.032-.253h-.002zm-68.088.295-.07.413-3.75 22.551h7.998l3.82-22.964zm-47.316.454-.147.208-2.377 3.371 25.607-.013.585-3.566zm115.4.24h.005c.454.003.9.087 1.347.169l-.869 5.125c-.728-.177-1.56-.322-2.294-.322-2.71 0-5.07 1.949-5.566 4.788v.002l-1.906 11.52h-5.992l3.495-20.988h5.785l-.677 4.006h1.133l.13-.29c1.243-2.771 3.2-4.01 5.41-4.01zm-24.36.013c3.013 0 5.335.95 6.785 2.717 1.45 1.767 2.067 4.406 1.482 7.923v.002l-.209 1.332H94.585l-.116.67v.003c-.235 1.485-.012 2.748.716 3.641.728.894 1.913 1.344 3.377 1.344 1.82 0 3.415-.812 4.357-2.24l5.394.156c-1.664 3.723-5.409 6.146-10.72 6.146-3.347-.005-5.782-1.034-7.265-2.85-1.483-1.817-2.056-4.482-1.478-7.897v-.002h.002c1.096-6.61 5.904-10.945 12.302-10.945zm-42.886.281h5.992L60.77 78.91h-5.993zm-47.641.454H32.62l-.26 1.59-22.864.013zm89.882 3.327c-2.504 0-4.692 1.83-5.245 4.232l-.14.604h9.083l.067-.417c.197-1.236-.077-2.36-.758-3.163-.682-.803-1.747-1.256-3.007-1.256zm-23.2.418c-1.424 0-2.686.637-3.625 1.731-.938 1.095-1.575 2.634-1.871 4.497-.3 1.84-.183 3.4.413 4.56.595 1.16 1.73 1.862 3.158 1.862 1.435 0 2.694-.662 3.622-1.772.928-1.11 1.552-2.657 1.845-4.496.293-1.836.193-3.382-.39-4.535-.582-1.153-1.71-1.847-3.153-1.847zm23.2.57c1.029 0 1.78.347 2.254.907.402.473.564 1.154.525 1.953H96.48c.656-1.635 2.236-2.86 4.03-2.86zm-97.91.07-.148.202L0 66.329l32.39-.023.587-3.547Zm74.71.348c1.154 0 1.833.44 2.27 1.305.438.865.569 2.223.296 3.935-.272 1.707-.85 3.087-1.627 4.015-.776.929-1.724 1.419-2.864 1.419-1.132 0-1.828-.449-2.279-1.326-.45-.877-.595-2.242-.316-3.952v-.002c.275-1.729.862-3.095 1.644-4.008.782-.913 1.737-1.386 2.875-1.386zm-74.206.64h28.708l-.258 1.57-29.61.023zm15.596 4.382-.147.223-2.2 3.356 15.234-.01.582-3.57zm.533.988h11.773l-.26 1.594-12.563.01z"/></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#333" d="M62.55 47.98c-1.99 0-3.83 1.512-4.122 3.376-.272 1.851 1.19 3.386 3.187 3.386 1.998 0 3.85-1.523 4.098-3.387.247-1.863-1.171-3.374-3.162-3.374zm-25.552 1.954-4.924 29.66h7.166l1.97-11.916h11.788l.984-5.84H42.195l.985-6.082h13.074l.986-5.822H36.998zm31.326 0-4.916 29.658h7.006l.58-3.608h.276c.52 2.057 2.2 3.924 5.558 3.924 4.924 0 9.557-3.851 10.803-11.424 1.31-7.847-2.287-11.423-6.936-11.423-3.518 0-5.82 2.053-6.978 4.095h-.152l1.837-11.222h-7.078zm57.735 7.115c-2.433 0-4.618 1.414-5.936 4.353h-.23l.685-4.054h-6.87l-3.706 22.242h7.08l1.998-12.076c.462-2.65 2.636-4.432 5.14-4.432.884 0 2.086.131 2.737.377L128 57.291a8.417 8.417 0 0 0-1.941-.242zm-24.66.014c-6.705 0-11.804 4.604-12.946 11.495-1.202 7.107 2.359 11.451 9.342 11.461 5.861 0 10.105-2.823 11.682-7.197l-6.457-.187c-.808 1.49-2.405 2.273-4.245 2.273-2.765 0-4.096-1.643-3.648-4.467l.045-.26h14.81l.278-1.767c1.216-7.313-2.548-11.352-8.862-11.352zm-43.83.285L53.866 79.59h7.082l3.7-22.242h-7.08zm43.177 4.826c2.316 0 3.679 1.622 3.317 3.894h-8.14c.508-2.2 2.535-3.894 4.823-3.894zm-23.482.424c2.628 0 3.664 2.29 3.092 5.88-.572 3.59-2.434 5.922-5.04 5.922-2.592 0-3.706-2.326-3.12-5.922.578-3.634 2.475-5.88 5.068-5.88z"/><path fill="#00acd7" d="m9.514 57.807-1.85 2.623 24.53-.014.427-2.61H9.514zm-7.612 5.437L0 65.857l31.377-.023.428-2.59H1.902zm16.31 5.436-1.718 2.623 14.066-.01.428-2.613H18.213z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#00acd7" d="M62.55 47.98c-1.99 0-3.83 1.512-4.122 3.376-.272 1.851 1.19 3.386 3.187 3.386 1.998 0 3.85-1.523 4.098-3.387.247-1.863-1.171-3.374-3.162-3.374zm-25.552 1.954-4.924 29.66h7.166l1.97-11.916h11.788l.984-5.84H42.195l.985-6.082h13.074l.986-5.822H36.998zm31.326 0-4.916 29.658h7.006l.58-3.608h.276c.52 2.057 2.2 3.924 5.558 3.924 4.924 0 9.557-3.851 10.803-11.424 1.31-7.847-2.287-11.423-6.936-11.423-3.518 0-5.82 2.053-6.978 4.095h-.152l1.837-11.222h-7.078zm57.735 7.115c-2.433 0-4.618 1.414-5.936 4.353h-.23l.685-4.054h-6.87l-3.706 22.242h7.08l1.998-12.076c.462-2.65 2.636-4.432 5.14-4.432.884 0 2.086.131 2.737.377L128 57.291a8.417 8.417 0 0 0-1.941-.242zm-24.66.014c-6.705 0-11.804 4.604-12.946 11.495-1.202 7.107 2.359 11.451 9.342 11.461 5.861 0 10.105-2.823 11.682-7.197l-6.457-.187c-.808 1.49-2.405 2.273-4.245 2.273-2.765 0-4.096-1.643-3.648-4.467l.045-.26h14.81l.278-1.767c1.216-7.313-2.548-11.352-8.862-11.352zm-43.83.285L53.866 79.59h7.082l3.7-22.242h-7.08zm-48.055.459-1.85 2.623 24.53-.014.427-2.61H9.514zm91.232 4.367c2.316 0 3.679 1.622 3.317 3.894h-8.14c.508-2.2 2.535-3.894 4.823-3.894zm-23.482.424c2.628 0 3.664 2.29 3.092 5.88-.572 3.59-2.434 5.922-5.04 5.922-2.592 0-3.706-2.326-3.12-5.922.578-3.634 2.475-5.88 5.068-5.88zm-75.362.646L0 65.857l31.377-.023.428-2.59H1.902zm16.31 5.436-1.718 2.623 14.067-.01.427-2.613H18.213z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.0 KiB

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

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

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

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="#ffb300" d="M90.437 26.434c-20.748 0-37.567 16.82-37.567 37.567 0 20.748 16.82 37.563 37.567 37.563C111.181 101.564 128 84.749 128 64s-16.82-37.567-37.563-37.567zm0 55.651c-9.992 0-18.088-8.096-18.088-18.084 0-9.992 8.096-18.088 18.088-18.088 9.988 0 18.084 8.096 18.084 18.088 0 9.988-8.096 18.084-18.084 18.084zm0 0"/><path fill="#ffb300" d="M50.477 76.664v-.008a18.022 18.022 0 0 1-12.91 5.43c-9.992 0-18.088-8.097-18.088-18.085 0-9.992 8.096-18.088 18.088-18.088 5.092 0 9.686 2.11 12.973 5.499l10.434-16.764c-6.423-5.127-14.551-8.214-23.407-8.214C16.819 26.434 0 43.254 0 64.001c0 20.748 16.82 37.563 37.567 37.563 8.801 0 16.882-3.051 23.286-8.12zm0 0"/><path fill="#f57a00" d="M19.479 64c0-4.974 2.01-9.474 5.256-12.745l-13.51-14.018C4.302 44.048 0 53.519 0 64c0 10.43 4.258 19.866 11.124 26.674L24.853 76.86A18.034 18.034 0 0 1 19.479 64Zm83.841-12.686a18.028 18.028 0 0 1 5.201 12.687c0 9.988-8.096 18.084-18.084 18.084-5.084 0-9.667-2.1-12.953-5.476L63.57 90.232c6.823 6.984 16.33 11.332 26.866 11.332C111.181 101.564 128 84.749 128 64c0-10.255-4.117-19.534-10.771-26.31zm0 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="#ffb000" d="M37.567 26.423c-18.739 0-34.269 13.721-37.1 31.66-.009.044-.017.09-.024.134-.075.478-.134.96-.188 1.441-.02.157-.043.31-.06.466a38.245 38.245 0 0 0-.148 5.797c.027.478.067.948.11 1.418.015.165.02.333.035.498.02.172.047.34.067.513.2 1.731.509 3.423.936 5.072.007.04.023.079.031.114 4.226 16.122 18.891 28.017 36.34 28.017 8.802 0 16.879-3.051 23.287-8.123L50.477 76.654v-.012a18.01 18.01 0 0 1-12.91 5.433 18.017 18.017 0 0 1-12.714-5.226c-.07-.07-.137-.144-.208-.215a17.847 17.847 0 0 1-.971-1.07 4.969 4.969 0 0 1-.192-.242 16.743 16.743 0 0 1-.866-1.156l-.145-.219a17.664 17.664 0 0 1-.775-1.28c-.036-.063-.07-.134-.106-.2a16.936 16.936 0 0 1-.666-1.391c-.023-.047-.04-.098-.059-.145a18.62 18.62 0 0 1-.56-1.524c-.016-.047-.023-.094-.039-.14a17.856 17.856 0 0 1-.415-1.607v-.015a18.002 18.002 0 0 1-.278-5.5v-.007a17.95 17.95 0 0 1 .713-3.506l.023-.074c.168-.537.364-1.066.58-1.579.012-.031.027-.059.039-.086a16.3 16.3 0 0 1 .717-1.488c.027-.055.062-.11.09-.161.25-.454.52-.901.807-1.328.027-.04.055-.074.082-.113.302-.44.615-.866.952-1.277.035-.043.074-.087.113-.13 3.318-3.967 8.3-6.494 13.878-6.494 5.092 0 9.686 2.111 12.973 5.5l10.434-16.765c-6.423-5.127-14.551-8.214-23.407-8.214Zm52.866 0c-20.744 0-37.563 16.82-37.563 37.567 0 16.796 11.026 31.014 26.235 35.82a35.287 35.287 0 0 0 3.342.885c.113.024.223.055.336.079.494.102.991.188 1.493.27.125.02.247.047.372.063a36.312 36.312 0 0 0 3.686.387c.047 0 .09.008.137.008h.008c.646.036 1.3.051 1.954.051 20.748 0 37.567-16.815 37.567-37.563 0-.65-.016-1.296-.047-1.935a48.492 48.492 0 0 0-.141-1.864c0-.004-.004-.008-.004-.012a40.937 40.937 0 0 0-.231-1.845 41.757 41.757 0 0 0-.274-1.558c-.02-.09-.032-.18-.047-.27-.004-.005-.004-.009-.004-.012a33.93 33.93 0 0 0-.412-1.783c-4.128-16.259-18.86-28.288-36.407-28.288Zm0 19.48a18.028 18.028 0 0 1 14.03 6.681c.36.443.705.901 1.023 1.38l.004.003c.011.02.02.04.031.055.306.462.595.936.858 1.426a17.725 17.725 0 0 1 1.343 3.215c.047.141.075.29.114.435.117.42.235.842.325 1.277v.004c.051.243.074.493.114.74.054.341.117.678.152 1.026a18.08 18.08 0 0 1 0 3.694 18.004 18.004 0 0 1-.27 1.794c-1.445 7.066-7.011 12.628-14.077 14.073-.588.122-1.187.216-1.794.278-.607.06-1.226.09-1.853.09a19.185 19.185 0 0 1-1.868-.093h-.008a19.045 19.045 0 0 1-1.66-.255 1.553 1.553 0 0 0-.146-.027 17.713 17.713 0 0 1-1.582-.408 3.912 3.912 0 0 1-.16-.047 18.45 18.45 0 0 1-1.419-.517c-.094-.039-.188-.074-.278-.113-.074-.032-.145-.07-.215-.102a18.738 18.738 0 0 1-1.406-.694c-.016-.007-.024-.015-.04-.023a17.734 17.734 0 0 1-1.472-.913c-.004-.004-.012-.007-.016-.011-.482-.333-.944-.69-1.39-1.066v-.004c-.45-.38-.882-.78-1.289-1.202-3.173-3.259-5.135-7.7-5.135-12.609 0-9.992 8.096-18.088 18.084-18.088zm0 0"/></svg>

After

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

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