This commit is contained in:
Ali Mousavi 2026-02-12 00:09:45 +03:30
commit 855d4eda9e
273 changed files with 5912 additions and 0 deletions

29
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,29 @@
name: Release
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm install
- run: npm run build
- uses: softprops/action-gh-release@v1
with:
files: |
main.js
manifest.json
styles.css
assets/**
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

26
.gitignore vendored Normal file
View file

@ -0,0 +1,26 @@
# Build output
main.js
main.js.map
# Dependencies
node_modules/
# Obsidian
data.json
# OS files
.DS_Store
Thumbs.db
# IDE
.vscode/
*.swp
*.swo
*~
# Logs
*.log
npm-debug.log*
# TypeScript
*.tsbuildinfo

21
LICENSE Normal file
View file

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2026 Ali Mousavi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

245
README.md Normal file
View file

@ -0,0 +1,245 @@
# ♟ ChessView
An interactive chess board plugin for [Obsidian](https://obsidian.md). Render games from PGN, display positions from FEN, solve puzzles, draw arrows and circles, navigate moves with keyboard shortcuts, and analyze on Lichess or Chess.com — all inside your notes.
![ChessView Banner](screenshots/banner.png)
<!-- TODO: Add a banner screenshot showing a game with move list, arrows, and annotations -->
## Features
- **PGN Games** — Paste any PGN and get a fully navigable game viewer
- **FEN Positions** — Display static or interactive positions from FEN strings
- **Puzzle Mode** — Create solvable puzzles with hints and solution reveal
- **Move Annotations** — NAG symbols (!, ?, !!, ??, !?, ?!) with colored overlays like Chess.com/Lichess
- **Arrows & Circles** — Draw annotations on the board using markers or PGN comments
- **Comments** — Display inline PGN comments with move highlighting
- **Branching** — Explore alternative lines in editable mode
- **Themes** — 7 built-in board themes + custom colors
- **Piece Sets** — 20 piece set options
- **Keyboard Navigation** — Arrow keys, Home/End, Space for autoplay
- **Analysis Links** — One-click export to Lichess and Chess.com
- **Mobile Friendly** — Responsive layout that adapts to any screen size
- **Dark Mode** — Full support for Obsidian's dark theme
## Installation
### From Obsidian Community Plugins (Recommended)
1. Open **Settings****Community Plugins** → **Browse**
2. Search for **ChessView**
3. Click **Install**, then **Enable**
### Manual Installation
1. Download `main.js`, `manifest.json`, and `styles.css` from the [latest release](https://github.com/tuxitop/chessview/releases)
2. Create a folder `.obsidian/plugins/chessview/` in your vault
3. Copy the three files into that folder
4. Copy the `assets/` folder into that folder (needed for additional piece sets)
5. Restart Obsidian and enable the plugin in **Settings** → **Community Plugins**
## Usage
Create a fenced code block with the language `chessview`:
### Display a PGN Game
```chessview
[Event "World Championship"]
[White "Kasparov, Garry"]
[Black "Topalov, Veselin"]
[Result "1-0"]
1. e4 d6 2. d4 Nf6 3. Nc3 g6 4. Be3 Bg7 5. Qd2 c6 6. f3 b5
2. Nge2 Nbd7 8. Bh6 Bxh6 9. Qxh6 Bb7 10. a3 e5 11. O-O-O Qe7
3. Kb1 a6 13. Nc1 O-O-O 14. Nb3 exd4 15. Rxd4 c5 16. Rd1 Nb6
4. g3 Kb8 18. Na5 Ba8 19. Bh3 d5 20. Qf4+ Ka7 21. Rhe1 d4
5. Nd5 Nbxd5 23. exd5 Qd6 24. Rxd4 cxd4 25. Re7+ Kb6
6. Qxd4+ Kxa5 27. b4+ Ka4 28. Qc3 Qxd5 29. Ra7 Bb7
7. Rxb7 Qc4 31. Qxf6 Kxa3 32. Qxa6+ Kxb4 33. c3+ Kxc3
8. Qa1+ Kd2 35. Qb2+ Kd1 36. Bf1 Rd2 37. Rd7 Rxd7
9. Bxc4 bxc4 39. Qxh8 Rd3 40. Qa8 c3 41. Qa4+ Ke1
10. f4 f5 43. Kc1 Rd2 44. Qa7 1-0
```
### Display a FEN Position
```chessview
rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq - 0 1
```
### Create a Puzzle
```chessview
[puzzle]
[rating: 1500]
[title: Scholar's Mate]
---
[FEN "r1bqkb1r/pppp1ppp/2n2n2/4p2Q/2B1P3/8/PPPP1PPP/RNB1K1NR w KQkq - 4 4"]
1. Qxf7#
```
### Board Orientation
```chessview
[black]
[Event "My Game"]
1. e4 e5 2. Nf3 Nc6 3. Bb5
```
Available markers:
- `[white]` — White at bottom (default)
- `[black]` or `[flip]` — Black at bottom
### Static Board (No Interaction)
```chessview
[static]
rnbqkbnr/pppppppp/8/8/4P3/8/PPPP1PPP/RNBQKBNR b KQkq - 0 1
```
### Arrows and Circles
Using markers before the PGN/FEN:
```chessview
[arrow: e2e4 green]
[arrow: d2d4 blue]
[circle: f3 red]
rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1
```
Using standard PGN comment annotations:
```chessview
[Event "Arrow Demo"]
1. e4 {[%cal Ge2e4,Rd7d5] [%csl Gd4,Re5]} e5 2. Nf3
```
Arrow/circle color codes: `G` = green, `R` = red, `B` = blue, `Y` = yellow, `O` = orange, `P` = purple
### Move Annotations (NAGs)
Inline annotations:
```chessview
1. e4! e5 2. Nf3!! Nc6? 3. Bb5?! a6!? 4. Ba4 Nf6??
```
PGN standard NAGs:
```chessview
1. e4 $1 e5 $2 2. Nf3 $3 Nc6 $4 3. Bb5 $5 a6 $6
```
| Symbol | NAG | Meaning |
| ------ | ---- | ---------------- |
| `!` | `$1` | Good move |
| `?` | `$2` | Mistake |
| `!!` | `$3` | Brilliant move |
| `??` | `$4` | Blunder |
| `!?` | `$5` | Interesting move |
| `?!` | `$6` | Dubious move |
### Comments
```chessview
1. e4 {The King's Pawn opening} e5 {A solid response}
2. Nf3 {Developing the knight toward the center} Nc6
```
### Start at a Specific Move
```chessview
[move: 15]
[Event "My Game"]
1. e4 e5 2. Nf3 Nc6 3. Bb5 a6 ...
```
### Puzzle with Hints and Themes
```chessview
[puzzle]
[rating: 2100]
[title: Find the winning combination]
[themes: sacrifice, fork]
---
[FEN "r2qr1k1/ppp2ppp/2np1n2/2b1p1B1/2B1P1b1/2NP1N2/PPP2PPP/R2QR1K1 w - - 0 1"]
1. Bxf7+ Kh8 2. Ng5
```
## Marker Reference
| Marker | Description |
| ----------------------- | --------------------------------- |
| `[white]` | White at bottom |
| `[black]` or `[flip]` | Black at bottom |
| `[static]` | No interaction, view only |
| `[noeditable]` | Can navigate but not make moves |
| `[move: N]` | Start at move N |
| `[arrow: e2e4 color]` | Draw arrow (color optional) |
| `[circle: e4 color]` | Draw circle (color optional) |
| `[highlight: e4 color]` | Highlight square (color optional) |
| `[puzzle]` | Enable puzzle mode |
| `[rating: N]` | Puzzle rating |
| `[title: text]` | Puzzle title |
| `[themes: a, b, c]` | Puzzle themes |
## Keyboard Shortcuts
| Key | Action |
| ------- | --------------------- |
| `←` | Previous move |
| `→` | Next move |
| `Home` | First move |
| `End` | Last move |
| `Space` | Play / Pause autoplay |
| `F` | Flip board |
_Click on the board first to focus it for keyboard shortcuts._
## Settings
Access via **Settings****Community Plugins****ChessView** → ⚙️
- **Board Theme** — Brown, Blue, Green, Purple, Gray, Wood, Marble, or Custom
- **Board Size** — Small (280px), Medium (360px), Large (480px), or Auto
- **Piece Set** — 20 options including Cburnett (default), Merida, Alpha, California, and more
- **Notation Style** — Figurine (♞f3) or Letter (Nf3)
- **Coordinates** — Show/hide rank and file labels
- **Colors** — Customize last move highlight, check highlight, arrows, circles
- **Animation Speed** — 0500ms
- **Autoplay Speed** — 2003000ms
- **Move List Position** — Right of board or below
- **Analysis Links** — Show/hide Lichess and Chess.com links
- **Default Orientation** — White, Black, or Auto (based on side to move)
- **Puzzle Hints** — Enable/disable hint button in puzzle mode
## Compatibility
- **Obsidian** — v1.0.0 and above
- **Platforms** — Desktop (Windows, macOS, Linux) and Mobile (iOS, Android)
- **Themes** — Works with both light and dark themes
## Credits
- [Chessground](https://github.com/lichess-org/chessground) — Chess board UI by Lichess
- [chess.js](https://github.com/jhlywa/chess.js) — Chess logic library
## License
[MIT](LICENSE)

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path fill="#f9f9f9" d="M732 1290 628 993l386-417 421 375-132 380 49 152-658-9z"/><path fill="#101010" d="M768 1365q-5 39-26 82h564q-18-36-26-82zm495-73 46-73q-142-49-285-47-144-2-285 47l46 73q118-40 239-38 120-2 239 38zm-432 227H624q67-116 72-229-114-119-162-223t-6-224q33-96 118-189t312-247q-17-11-46-36t-29-79q0-58 41-96t100-38q58 0 100 38t41 96q0 54-29 79t-46 36q226 153 311 247t119 189q42 119-6 224t-162 223q4 113 72 229h-207l10 16q33 53 70 60t89 7h250q76 0 142 62t65 179h-495q-123 0-223-84t-101-199q0 114-101 199t-223 84H205q0-117 65-179t142-62h250q51 0 88-7t71-60l10-16zm146-701h-95v89h95v165h94V907h95v-89h-95V714h-94z"/></svg>

After

Width:  |  Height:  |  Size: 699 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path fill="#f9f9f9" d="m553 1485-55 320 1048 5-48-335s324-313 330-467c7-153-35-331-241-406-183-67-372 121-372 121l-182-161-190 160S658 586 587 592a373 373 0 0 0-362 333c10 331 328 560 328 560z"/><path fill="#101010" d="M1024 1769h489l-12-73H547l-12 73zm0-921q-25-60-62-111 31-48 62-65 30 17 62 65-38 51-62 111zm-97 454q-154 11-303 58-123-108-200-213t-77-202q0-89 74-159t148-70q67 0 135 63t102 130q30 54 75 175t46 218zm-350 217-26 156 145-84zm447-907q-47 0-136 121-31-36-50-55 93-140 186-140 92 0 186 140-20 19-50 55-90-121-136-121zm0 775q-1-126-42-267t-84-227l-14-27-12-23q-28-43-48-69-51-63-120-105t-134-42q-103 0-208 93T257 949q0 120 99 255t249 259q201-74 419-76zm0 456H448l61-365q-325-280-326-535-1-159 125-274t267-116q78 0 159 47t142 119q61 74 99 165t49 150q12-60 49-150t99-165q61-72 142-119t159-47q140 0 266 116t126 274q-2 255-326 535l61 365zm97-541q0-97 45-218t76-175q34-68 102-130t135-63q74 0 148 70t74 159q0 96-77 202t-200 213q-150-47-303-58zm350 217-119 72 145 84zm-447-132q217 2 419 76 150-125 249-259t99-255q0-136-105-229t-208-93q-66 0-135 42t-119 105q-21 26-48 69l-12 23-14 27q-44 85-85 227t-41 267zm-139 159 139 86 139-84-139-86zm92-1248v-95h94v95h107v95h-107v153q-48-16-94 0V393H870v-95z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path fill="#f9f9f9" d="M1658 1806c-408-301-71-920-452-1343l60-16s296 167 320 257c182 468 41 691 135 1077zM972 523l120 176-312-3zM498 981l-93-41 42-93 127 28z"/><path fill="#101010" d="m502 868-52 1-26 64 69 21 46-55zm536-187q34 1-16-68t-80-42L826 680zm-338-98q6-39 116-107t220-144l115-154 96 217q342 172 433 418t47 603q-18 128 5 236t57 190l-1242 1q-9-178 39-301t183-238q50-11 83-39t53-59l63-1 138-29 139-97 66-207q0-17-8-34t-12-37q-62 228-161 289t-191 58q-236-42-292 60l-56 102-217-121 115-82-51-50-122 86-12-297zm981 1192q-102-130-85-308t27-363-50-351-316-276q220 164 253 342t16 351-12 329 167 276z"/></svg>

After

Width:  |  Height:  |  Size: 673 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path fill="#101010" d="M1024 1843H446v-74q-4-80 42-137t125-108q117-91 172-217t78-268H576l284-239q-86-74-86-188 0-103 73-177t177-74q103 0 177 74t73 177q0 114-86 188l284 239h-287q23 141 78 268t172 217q79 51 125 108t42 137v74z"/></svg>

After

Width:  |  Height:  |  Size: 297 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path fill="#f9f9f9" d="m520 1801.8 41.5-448.7 474-128.9 458 133.5 34.4 446.4z"/><path fill="#101010" d="M590 1519q4 72-15 158l134-86zm434 324H441q114-231 57.5-456.5T296 937q-12 2-19 2-54 0-92.5-38.5T146 808t38.5-92.5T277 677t92.5 38.5T408 808q0 20-6 38-4 14-15 33l196 139 100-486q-64-31-72-103-5-44 29-91t88-53q54-5 96 29t48 88q7 68-46 114l198 412 198-412q-54-46-46-114 6-54 48-88t96-29q54 6 87.5 53t29.5 91q-9 72-72 103l100 486 196-139q-12-19-15-33-6-18-6-38 0-54 38.5-92.5T1771 677t92.5 38.5T1902 808t-38.5 92.5T1771 939q-7 0-19-2-147 224-203 449.5t58 456.5zm0-450q109 0 222 28.5t213 67.5q2-41 11-89-108-42-221.5-68t-224.5-26-225 26-221 68q8 48 11 89 99-39 212-67.5t223-28.5zm0 376h478q-15-34-24-73H570q-10 39-24 73zm434-250-119 72 134 86q-20-86-15-158zm-573 47 139 87 139-84-139-86z"/></svg>

After

Width:  |  Height:  |  Size: 859 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path fill="#f9f9f9" d="m674 732-76 807 851 14-75-833z"/><path fill="#101010" d="M1024 1843H383l29-264 159-118 50-659-149-107-17-341h289v147h137V354h286v147h137V354h289l-17 341-149 107 50 659 159 118 29 264zm0-989h333l-6-88H697l-6 88zm0 647h381l-6-87H649l-6 87z"/></svg>

After

Width:  |  Height:  |  Size: 334 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path fill="#f9f9f9" d="m948 366 1-139 148-7 1 147zM564 860c114-267 456-443 456-443s392 176 476 502c-9 209-183 332-183 332l27 221-653 6 46-233s-230-171-169-385zm-101 790c175 6 355 23 425-142h92s0 190-88 246c-163 103-625 38-625 38s-15-146 196-142zm631 37-36-185 102 5s22 153 315 131c381-17 318 153 318 153l-483 5z"/><path fill="#101010" d="M1024 356q66 0 64-66 1-55-64-55-66 0-64 55-3 66 64 66zm0 1204q0 114-101 199t-223 84H205q0-117 65-179t142-62h250q51 0 88-7t71-60l10-16h76q-7 21-3 13-45 105-109 125t-146 19H409q-52 0-86 40t-34 53h424q66 0 159-65t93-185H624q67-116 72-229-114-119-162-223t-6-224q33-96 118-189t312-247q-17-11-46-36t-29-79q0-58 41-96t100-38q58 0 100 38t41 96q0 54-29 79t-46 36q226 153 311 247t119 189q42 119-6 224t-162 223q4 113 72 229h-341q0 120 93 185t159 65h424q0-13-34-53t-86-40h-240q-83 0-146-19t-109-125q4 8-3-13h76l10 16q33 53 70 60t89 7h250q76 0 142 62t65 179h-495q-123 0-223-84t-101-199zm0-114h283q-28-84-29-154-120-41-254-38-135-3-254 38-2 70-29 154zm0-267q159-1 285 42 189-180 142-346-60-193-427-431-368 238-427 431-48 166 142 346 125-43 285-42zm-47-361V714h94v104h95v89h-95v165h-94V907h-95v-89z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path fill="#f9f9f9" d="m501.6 1811 48.4-354.4-260-269.2s-166.4-288.2 29.9-481C582.2 448.7 826 727.2 826 727.2l195.6-165.7 184 165.7s216.4-232.5 430.4-76c214 156.5 255.4 317.6 117.4 531.6-138.1 214-250.9 280.7-250.9 280.7L1558 1811z"/><path fill="#101010" d="M977 298v-95h94v95h107v95h-107v153q-48-16-94 0V393H870v-95zm47 314q-47 0-136 121-31-36-50-55 93-140 186-140 92 0 186 140-20 19-50 55-90-121-136-121zm-447 907-26 156 145-84zm410-206q-1-147-36.5-274.5T870 845q-45-88-131.5-153T570 627q-103 0-208 93T257 949q0 109 86.5 236T546 1408q212-88 441-95zm37 530H448l61-365q-325-280-326-535-1-159 125-274.5T575 553q78 0 158.5 47T876 719q61 74 98.5 164.5T1024 1034q12-60 49-150.5t99-164.5q61-72 142-119t159-47q140 0 266 115.5T1865 943q-2 255-326 535l61 365zm0-74h489l-50-298q-216-84-439-84t-439 84l-50 298zm447-250 26 156-145-84zm-410-206q229 7 441 95 115-96 202-223t87-236q0-136-105.5-229T1478 627q-83 0-169.5 65T1178 845q-46 66-81.5 193.5T1061 1313zm-176 233 141-84 137 86-141 84z"/></svg>

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path fill="#f9f9f9" d="m352 861 787-569 94 148s336 103 398 388c63 286 51 974 51 974l-1088 9s-37-290 184-460c221-171 221-212 221-212s-226-71-295-16-117 138-117 138l-129-67 74-85-88-97-94 56z"/><path fill="#101010" d="m1151 178-115 154c-74 50-147 98-220 144-73 45-112 81-116 107L304 846l12 297 122-86 51 50-115 82 217 121 56-102c37-68 135-88 292-60l-55 85c-25 37-63 60-115 71a608 608 0 0 0-183 238c-32 82-45 182-39 301h1242c-23-55-42-118-57-190-15-73-17-152-5-237 29-239 13-440-47-603-61-164-205-303-433-418l-96-217zm-17 145 59 133a664 664 0 0 1 262 188c55 72 100 150 134 234 27 97 40 181 41 253 0 71-3 140-9 205-7 65-11 131-13 199-2 67 9 145 32 234H621c-4-84 12-158 48-223s85-124 146-177c78-22 129-56 152-102s53-90 90-131c13-10 27-15 38-15 10-1 21 0 33-2 52-7 95-36 129-85 33-49 51-104 52-165l-19-67c-37 159-99 245-188 257l-45 6c-16 1-33 10-52 26-41-25-87-35-138-31-74 6-129 15-165 27l-108 73-39 45-47-28 78-65-138-144-64 41-4-125 366-241c15-34 58-74 131-120l208-131 49-69zM960 564c-6 0-12 2-18 7L826 671l212 2c23 0 17-21-16-63-24-31-44-46-62-46zM502 868l-33 4-33 56 57 26 46-55-37-31z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path fill="#f9f9f9" d="m734 981 196-193s-189-82-79-288c79-149 303-114 361 50 63 179-113 240-113 240l226 197Zm-235 799s-8-107 50-154c196-173 338-386 371-599l210 2c33 206 182 447 321 561 101 59 99 199 99 199z"/><path fill="#101010" d="M520 1769h1008q8-97-132-182-132-101-196-239t-80-309H928q-15 170-79 309t-197 239q-141 85-132 182zm504 74H446v-74q-4-80 42-137t125-108q117-91 172-217t78-268H576l284-239q-86-74-86-188 0-103 73-177t177-74q103 0 177 74t73 177q0 114-86 188l284 239h-287q23 141 78 268t172 217q79 51 125 108t42 137v74zM756 974h536l-225-191q134-31 134-171 0-76-52-126t-125-51q-73 0-125 51t-52 126q0 140 134 171z"/></svg>

After

Width:  |  Height:  |  Size: 692 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path fill="#f9f9f9" d="m508.5 1815.6 48.4-356.7-216.3-554.6-135.8-20.7-16.1-126.5 112.7-43.8 78.3 73.7-18.4 99 246.2 197.8 112.8-568.3L635 428l78.3-108 112.8 43.7-23 161 223.2 474 244-490-66.8-105.9 92-92 105.9 73.6L1337 534l103.5 529.2 260-161-16-142.7 131-46 57.6 131.1-207 103.6-175 529.2 48.4 308.4z"/><path fill="#101010" d="M1024 1769h478q-53-130-43-280-100-39-213-67.5t-222-28.5q-110 0-223 28.5T589 1489q9 150-43 280zm0-450q111 0 223.5 26.5T1468 1413q17-105 60.5-212.5T1634 988l-220 155-123-601-267 555-267-555-123 601-220-155q61 105 104.5 212.5T580 1413q108-41 220.5-67.5T1024 1319zm0 524H441q114-231 57.5-456.5T296 937q-12 2-19 2-54 0-92.5-38.5T146 808t38.5-92.5T277 677t92.5 38.5T408 808q0 20-6 38-4 14-15 33l196 139 100-486q-64-31-72-103-5-44 29-91t88-53q54-5 96 29t48 88q7 68-46 114l198 412 198-412q-54-46-46-114 6-54 48-88t96-29q54 6 87.5 53t29.5 91q-9 72-72 103l100 486 196-139q-12-19-15-33-6-18-6-38 0-54 38.5-92.5T1771 677t92.5 38.5T1902 808t-38.5 92.5T1771 939q-7 0-19-2-147 224-203 449.5t58 456.5zM276 746q-62 0-62 62t62 62q63 0 63-62t-63-62zm466-394q-62 0-62 62t62 62 62-62-62-62zM590 1519l119 72-134 86q19-86 15-158zm1182-773q-63 0-63 62t63 62q62 0 62-62t-62-62zm-466-394q-62 0-62 62t62 62 62-62-62-62zm152 1167-119 72 134 86q-20-86-15-158zm-573 47 139-83 139 86-139 84z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path fill="#f9f9f9" d="m435 1804 16-212 152-115 51-688-148-115-7-276 210-2 4 138 198 2 7-140 212-3 14 145 193-4 5-138h204l-7 285-145 106 42 693 172 124 19 207z"/><path fill="#101010" d="M1024 1501H643l5-74h752l5 74zm0-661H692l5-74h654l5 74zm0 1003H383l29-264 159-118 50-659-149-107-17-341h289v147h137V354h286v147h137V354h289l-17 341-149 107 50 659 159 118 29 264zm0-74h557l-15-149-161-119-54-735 152-109 13-230h-138v148h-285V427H955v148H670V427H532l13 230 152 109-54 735-161 119-15 149z"/></svg>

After

Width:  |  Height:  |  Size: 560 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-50 -60 381.3 511.7"><defs><clipPath id="a"><path d="M0 70h291.3v361.7H0Zm0 0"/></clipPath></defs><path fill="gray" d="M180.4 29.8a34.8 34.8 0 1 1-69.7 0 34.8 34.8 0 0 1 69.7 0"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M180.4 29.8a34.8 34.8 0 1 1-69.7 0 34.8 34.8 0 0 1 69.7 0Zm0 0"/><path fill="#4d4d4d" d="M248.1 149.9C191.6 165.2 154 261.3 154 261.3s4.7-86.5 44.8-160.1c-27.9-22.3-52.6-36-52.6-36s-132 72-131.1 154.6c1 82.6 66.2 147 58 164.3-8 17.2 154.3 16.3 146.1 0-8.1-16.4 56.3-82.6 57.2-164.3.3-24.7-11.5-48.6-28.2-70"/><path fill="gray" d="M150.3 71.8c-50.5 87-62.5 126-62.5 153 0 56.9 51 148 26.5 162h-36l-45-90-18-63 9-54 36-45Zm0 0"/><g clip-path="url(#a)" transform="translate(0 -20)"><path d="M88.7 397.5a289 289 0 0 0 55.8 4.2h1.7c27.9-.1 47.8-2.3 57.4-4.4 1.3-10.4 8-22.6 17.4-39.4 16.8-30.3 39.8-71.7 40.3-118.2.2-16.1-6-33.5-18.6-51.8-36.1 17.6-65.9 76-74.9 98.9a15 15 0 0 1-17.1 9.1 15 15 0 0 1-11.8-15.4 446 446 0 0 1 40.8-155.1 439.6 439.6 0 0 0-33.7-22.9c-11.2 6.8-34 21.4-56.4 40.7C62.2 167 29.6 203 30 239.7c.5 47 23.8 87.9 40.8 117.8 9.7 17.1 16.7 29.5 17.9 40m55.9 34.2c-16.5 0-32.3-.8-45-2.2-22.6-2.4-30-6.3-34.4-9.7-6.4-5-8.9-12.8-6.6-20-1-5-8.2-17.4-14-27.5C27.2 341.4.7 294.7 0 240c-.4-38.9 23.3-79.2 70.4-119.8A417.4 417.4 0 0 1 139 72a15 15 0 0 1 14.5 0c1 .6 26.1 14.7 54.7 37.5a15 15 0 0 1 3.8 18.9 342 342 0 0 0-28.4 71.9c19.3-24.1 39.6-39.2 60.7-45a15 15 0 0 1 15.8 5.3c21 27.1 31.6 53.8 31.3 79.4-.6 54.1-26.7 101.2-44 132.4-5.6 10.1-12.5 22.5-13.7 27.5 2.2 6.9 0 14.4-6.1 19.4-4.2 3.4-11.5 7.3-34 9.9a428.5 428.5 0 0 1-46.8 2.4h-2.1"/></g><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M47.3 324.3c15.6 24.3 181.5 28.8 198 0"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-50 -92.5 398 510"><defs><clipPath id="a"><path d="M0 0h308v395H0Zm0 0"/></clipPath></defs><path fill="#4d4d4d" d="M39.1 343.3a388.4 388.4 0 0 0 115.2 16.3 388.3 388.3 0 0 0 107.3-16.3l-2-8c-3-13.4-7.4-41.5 2-71.1 12.8-40.7 45.9-91.3 23.5-166C261.4 19.1 150.7-4.6 150.7-4.6l1.8 37-129.3 93.8a18.9 18.9 0 0 0-4.6 25.7c2.7 4 5.4 8.6 7.7 13.2s13 21 19.7 25.4a15.7 15.7 0 0 0 17.7-.5c8-5.7 18-18.3 46-15.6 74 12.6 92.5-27.8 92.5-27.8s-11.8 24.1-59.5 46.6c-49.8 19-82.4 51.6-99 106.7-7.8 26.2-4.6 43.4-4.6 43.4"/><path fill="gray" d="m27.4 160 156-85.6s18.6-9.2 9.3-27.8c-4.1-8.2-35.8-44-35.8-44v37L18.1 141.5Zm188.2-6.2c-32 53.5-70.1 81.4-91.7 106-18 20.7-31 69.5-30 90 .6 12.4-51.1-9.9-51.1-9.9l13.4-63.7 27.7-52.5 45.3-32.9Zm0 0"/><g clip-path="url(#a)" transform="translate(0 -20)"><path d="M54 351.5a371.7 371.7 0 0 0 189.3.9c-3.5-19-5.1-45.4 3.6-72.9 2.7-8.6 6.2-17.4 9.9-26.7 14-35.4 29.9-75.5 13.5-130.1-15-50.3-72.4-76-103.2-86.5l.8 15.5a15.4 15.4 0 0 1-6.4 13.3L32.3 158.7a3.5 3.5 0 0 0-.8 4.7c3.4 5.1 6.3 10.1 8.6 14.8a93.5 93.5 0 0 0 14.6 19.3l3-2.4c8.1-6.6 23.3-19 53.4-16h1.1c45.8 7.9 65.6-6.7 72.7-14.6 2.5-3 3.5-4.9 3.6-5l-.2.3 6.9-.7c9.4-1 18.2 4.8 21 13.9l-.1.3a20.9 20.9 0 0 1-.4.8 46 46 0 0 1-2.9 4.7c-6.6 9.6-24 29.7-63.6 48.3l-1 .5c-47.4 18.1-75 48-89.7 96.7a105 105 0 0 0-4.6 27.2m96.4 43.5a403.4 403.4 0 0 1-115.6-17A15.4 15.4 0 0 1 24 366.3a114 114 0 0 1 5-50.8c14.7-48.7 41.3-82.6 82.8-105a201.6 201.6 0 0 1-4.2-.7c-17-1.6-23.8 4-30.4 9.3l-4.5 3.6a31 31 0 0 1-35 .9C26.4 216.2 14 195 12.5 192a97 97 0 0 0-6.7-11.6 34.2 34.2 0 0 1 8.4-46.7l122.5-88.8-1.4-28.7A15.4 15.4 0 0 1 153.9.3c4.9 1 120 26.6 146 113.5 19.4 64.9-.1 114.3-14.4 150.3-3.5 8.8-6.8 17.1-9.2 24.7a124.8 124.8 0 0 0 .1 70.4 15.4 15.4 0 0 1-10.4 18.9 403.6 403.6 0 0 1-115.7 17"/></g><path fill="#fff" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M55 292a333 333 0 0 0 100.2 14.1 332.8 332.8 0 0 0 91.4-14"/><path d="M169.7 93.6a15.2 15.2 0 1 1-30.3 0 15.2 15.2 0 0 1 30.3 0"/></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-50 -100 345.8 506.5"><defs><clipPath id="a"><path d="M0 0h255.8v376.5H0Zm0 0"/></clipPath></defs><path fill="#4d4d4d" d="M239.5 320.4c0-90.3-74.4-119.9-65.9-176.2A81 81 0 0 0 129.3-3.7a81.2 81.2 0 0 0-48.2 147.8c9.5 56.4-64.8 86.4-64.8 176.3 33 9.9 54.4 19.7 112.2 19.7s78-9.8 111-19.7"/><path fill="gray" d="M126 10.4s-25 26-26 64c-1 38.1 14 60.6 14 66 0 5.5.4 28.4-5 48s-36 89-34 136c1.4 32.8-55.6-10.4-55.6-10.4l7.6-56.6 56.6-82.6-4.3-34.9-33.8-52.2 19.6-62Zm0 0"/><g clip-path="url(#a)" transform="translate(0 -20)"><path d="M239.5 340.4ZM33.1 328.5l1.9.6c26 8.2 46.6 14.7 93.5 14.7 46.3 0 66.2-6.3 91.4-14.4l2.8-.9c-3-36.4-20-61-36.3-84.9-16.7-24.2-33.9-49.2-29-81.9a16.3 16.3 0 0 1 6.9-11 64.8 64.8 0 1 0-74 0 16.3 16.3 0 0 1 6.8 10.7c5.6 33-11.5 58.3-28.2 82.8-16 23.8-32.7 48.3-35.8 84.3m95.4 48c-52 0-77-8-103.3-16.3L11.6 356A16.3 16.3 0 0 1 0 340.4c0-52.7 23.2-87 42-114.5 15-22.3 24.1-36.6 23.6-53A97.6 97.6 0 0 1 129.7 0a97 97 0 0 1 66.5 28.6 97 97 0 0 1-7 144.2c0 17.3 10.8 33 24 52.3 19 27.7 42.6 62 42.6 115.3 0 7.2-4.7 13.6-11.6 15.6l-14.4 4.5c-25.7 8.2-50 16-101.3 16"/></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-50 -90 498 528"><path fill="#4d4d4d" d="M319.3 373H88.7a79.8 79.8 0 0 0 17.7-49.5c0-7-1-28.7-17.7-49.5h230.6a79.8 79.8 0 0 0-17.7 49.5c0 7 1 28.7 17.7 49.5"/><path fill="gray" d="M140 373c3.6-10.3 11.4-25.8 12-45 .7-23.8-8.1-41.7-12-53-10.7 0-27.3-1-38-1l15.6 54L93 373Zm0 0"/><path d="M113.5 358h181a92.9 92.9 0 0 1 0-69h-181a92.9 92.9 0 0 1 0 69m205.8 30H88.7c-5.4 0-10.3-3.5-12.5-8.8a16.1 16.1 0 0 1 2.2-16.1 63.8 63.8 0 0 0 14.3-39.6c0-8.2-1.9-24.1-14.3-39.6a16.1 16.1 0 0 1-2.2-16c2.2-5.4 7-8.9 12.5-8.9h230.6c5.4 0 10.3 3.5 12.5 8.8a16 16 0 0 1-2.2 16.1 63.8 63.8 0 0 0-14.3 39.6c0 8.2 1.9 24.1 14.3 39.6a16 16 0 0 1 2.2 16 13.7 13.7 0 0 1-12.5 8.9"/><path fill="#4d4d4d" d="m91.1 234.3-35.4-127c3.3 2 50.5 69 74.2 54.2 18.8-11.8 14.9-84.2 16.4-112.5 8.3 26.2 36.1 93.8 57.7 93.8s49.4-67.6 57.7-93.8c.5 3.2-7.9 97.2 24.7 112.5 18.6 8.8 59.9-51.5 65.9-54.2-6.2 35.2-28.8 83.8-35 126.8a46.2 46.2 0 0 1-45.5 39.9H136.6A46.1 46.1 0 0 1 91 234.3"/><path fill="gray" d="M86.8 139C153 172 93 259 230 259l-100 15a148.2 148.2 0 0 1-43.2-72c-6.6-27-3.2-49.7 0-63"/><path d="M203.7 127.8Zm.6 0Zm-81.4 20.8Zm-38 11.7 19.3 69.6.5 2a32.1 32.1 0 0 0 31.9 27.1h135.2c16 0 29.7-11.7 32-27.2a429.6 429.6 0 0 1 18.8-71.4c-14.9 13.7-28.7 21-41.7 14.9-16.6-7.9-27.2-28.6-31.4-61.7-16 30.1-30.5 44.2-45.5 44.2s-29.6-14.2-45.7-44.6v-.2c-2.2 30.2-7.4 52.6-21.6 61.5a26.6 26.6 0 0 1-14.4 4.2c-12.4 0-25.5-8-37.5-18.4m187 128.7H136.6A58.7 58.7 0 0 1 98 274.4a62 62 0 0 1-20.3-36.6L42.6 111.7c-1.6-5.8.1-12.2 4.5-16a12.8 12.8 0 0 1 15.2-1.5 36 36 0 0 1 9.1 9.4c6.4 7.9 18.4 22.5 30.5 33.1 13.5 11.8 19.9 12.4 21 11.8.5-.5 4.6-5.3 7-27 1.8-16.1 2-35.4 2.2-50.9.1-8.8.2-16.4.5-22.5.4-7.1 5.4-13 11.9-14s12.7 3.2 14.8 10a365 365 0 0 0 21.6 51.8c12.2 23.6 20.5 30.8 23.1 31.8 2.6-1 11-8.2 23.1-31.8a365.3 365.3 0 0 0 21.6-51.8c2-6.5 7.8-10.6 14-10 6.3.5 11.4 5.6 12.5 12.3.3 2 .2 3.4 0 8.2-2.8 73.4 10.4 89.3 15.8 92.7 1.5-.5 6.3-2.5 16-11.8 8.3-8 16.7-17.8 23.4-25.7 9-10.5 12.2-14.4 16.7-16.4 4.7-2 10-1.1 13.9 2.3a16 16 0 0 1 4.8 14.5c-3 17-9.3 36.1-16 56.4a426.2 426.2 0 0 0-19 69.8 62 62 0 0 1-20.3 38 58.7 58.7 0 0 1-38.7 14.6"/><path fill="gray" d="M168 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M168 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm0 0"/><path fill="gray" d="M294 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M294 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm0 0"/><path fill="gray" d="M393 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M393 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm0 0"/><path fill="gray" d="M69 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M69 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm36.2 252h197.6"/></svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-50 -100 386.8 503"><defs><clipPath id="a"><path d="M0 0h296.8v373H0Zm0 0"/></clipPath></defs><path fill="#4d4d4d" d="M49.3 162.3C49.8 94 5.8 37.2 18.8-3.7H278c13 40.9-31 97.6-30.6 166 .5 72.3 44 132.3 30.6 174.5H18.8c-13.4-42.2 30-102.3 30.5-174.5"/><path fill="gray" d="M92.9-2c-9.8 55.2 6 125.3 6 173 0 46.5-18.3 101-15 166l-60.4-.2L43 171 23.5-4.2Zm0 0"/><g clip-path="url(#a)" transform="translate(0 -20)"><path d="M251.3 281.8c-9.3-29.3-19.8-62.4-20-99.3-.3-35.8 10.4-67.8 19.9-96 7-20.7 13.1-39.2 13-54H32.6c0 14.8 6.1 33.3 13 54 9.5 28.2 20.2 60.2 20 96-.3 36.9-10.8 70-20 99.3-7.2 22.6-13.6 42.8-13.1 58.7h231.9c.4-16-6-36.1-13.1-58.7m-248 79.9c-8.5-27 1.1-57.5 11.3-89.7 8.6-27 18.3-57.7 18.5-89.8.2-30.4-9.2-58.3-18.2-85.3C4.7 66.4-5.1 37.5 3.3 11.3A16.2 16.2 0 0 1 18.8 0H278c7 0 13.3 4.6 15.5 11.3 8.2 26.2-1.4 55-11.7 85.6-9 27-18.4 55-18.1 85.3.2 32 9.9 62.7 18.4 89.8 10.2 32.2 19.9 62.7 11.4 89.7A16.2 16.2 0 0 1 278 373H18.8a16.2 16.2 0 0 1-15.5-11.3"/></g><path fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M98.6 4.5v58.2m99.7-58.2v58.2m-175 215.6h250.2M40.4 120.8h216"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-50 -60 381.3 511.7"><defs><clipPath id="a"><path d="M0 70h291.3v361.7H0Zm0 0"/></clipPath></defs><path fill="#fff" d="M180.4 29.8a34.8 34.8 0 1 1-69.7 0 34.8 34.8 0 0 1 69.7 0"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M180.4 29.8a34.8 34.8 0 1 1-69.7 0 34.8 34.8 0 0 1 69.7 0Zm0 0"/><path fill="#ccc" d="M248.1 149.9C191.6 165.2 154 261.3 154 261.3s4.7-86.5 44.8-160.1c-27.9-22.3-52.6-36-52.6-36s-132 72-131.1 154.6c1 82.6 66.2 147 58 164.3-8 17.2 154.3 16.3 146.1 0-8.1-16.4 56.3-82.6 57.2-164.3.3-24.7-11.5-48.6-28.2-70"/><path fill="#fff" d="M150.3 71.8c-50.5 87-62.5 126-62.5 153 0 56.9 51 148 26.5 162h-36l-45-90-18-63 9-54 36-45Zm0 0"/><g clip-path="url(#a)" transform="translate(0 -20)"><path d="M88.7 397.5a289 289 0 0 0 55.8 4.2h1.7c27.9-.1 47.8-2.3 57.4-4.4 1.3-10.4 8-22.6 17.4-39.4 16.8-30.3 39.8-71.7 40.3-118.2.2-16.1-6-33.5-18.6-51.8-36.1 17.6-65.9 76-74.9 98.9a15 15 0 0 1-17.1 9.1 15 15 0 0 1-11.8-15.4 446 446 0 0 1 40.8-155.1 439.6 439.6 0 0 0-33.7-22.9c-11.2 6.8-34 21.4-56.4 40.7C62.2 167 29.6 203 30 239.7c.5 47 23.8 87.9 40.8 117.8 9.7 17.1 16.7 29.5 17.9 40m55.9 34.2c-16.5 0-32.3-.8-45-2.2-22.6-2.4-30-6.3-34.4-9.7-6.4-5-8.9-12.8-6.6-20-1-5-8.2-17.4-14-27.5C27.2 341.4.7 294.7 0 240c-.4-38.9 23.3-79.2 70.4-119.8A417.4 417.4 0 0 1 139 72a15 15 0 0 1 14.5 0c1 .6 26.1 14.7 54.7 37.5a15 15 0 0 1 3.8 18.9 342 342 0 0 0-28.4 71.9c19.3-24.1 39.6-39.2 60.7-45a15 15 0 0 1 15.8 5.3c21 27.1 31.6 53.8 31.3 79.4-.6 54.1-26.7 101.2-44 132.4-5.6 10.1-12.5 22.5-13.7 27.5 2.2 6.9 0 14.4-6.1 19.4-4.2 3.4-11.5 7.3-34 9.9a428.5 428.5 0 0 1-46.8 2.4h-2.1"/></g><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M47.3 324.3c15.6 24.3 181.5 28.8 198 0"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-50 -92.5 398 510"><defs><clipPath id="a"><path d="M0 0h308v395H0Zm0 0"/></clipPath></defs><path fill="#ccc" d="M39.1 343.3a388.4 388.4 0 0 0 115.2 16.3 388.3 388.3 0 0 0 107.3-16.3l-2-8c-3-13.4-7.4-41.5 2-71.1 12.8-40.7 45.9-91.3 23.5-166C261.4 19.1 150.7-4.6 150.7-4.6l1.8 37-129.3 93.8a18.9 18.9 0 0 0-4.6 25.7c2.7 4 5.4 8.6 7.7 13.2s13 21 19.7 25.4a15.7 15.7 0 0 0 17.7-.5c8-5.7 18-18.3 46-15.6 74 12.6 92.5-27.8 92.5-27.8s-11.8 24.1-59.5 46.6c-49.8 19-82.4 51.6-99 106.7-7.8 26.2-4.6 43.4-4.6 43.4"/><path fill="#fff" d="m27.4 160 156-85.6s18.6-9.2 9.3-27.8c-4.1-8.2-35.8-44-35.8-44v37L18.1 141.5Zm188.2-6.2c-32 53.5-70.1 81.4-91.7 106-18 20.7-31 69.5-30 90 .6 12.4-51.1-9.9-51.1-9.9l13.4-63.7 27.7-52.5 45.3-32.9Zm0 0"/><g clip-path="url(#a)" transform="translate(0 -20)"><path d="M54 351.5a371.7 371.7 0 0 0 189.3.9c-3.5-19-5.1-45.4 3.6-72.9 2.7-8.6 6.2-17.4 9.9-26.7 14-35.4 29.9-75.5 13.5-130.1-15-50.3-72.4-76-103.2-86.5l.8 15.5a15.4 15.4 0 0 1-6.4 13.3L32.3 158.7a3.5 3.5 0 0 0-.8 4.7c3.4 5.1 6.3 10.1 8.6 14.8a93.5 93.5 0 0 0 14.6 19.3l3-2.4c8.1-6.6 23.3-19 53.4-16h1.1c45.8 7.9 65.6-6.7 72.7-14.6 2.5-3 3.5-4.9 3.6-5l-.2.3 6.9-.7c9.4-1 18.2 4.8 21 13.9l-.1.3a20.9 20.9 0 0 1-.4.8 46 46 0 0 1-2.9 4.7c-6.6 9.6-24 29.7-63.6 48.3l-1 .5c-47.4 18.1-75 48-89.7 96.7a105 105 0 0 0-4.6 27.2m96.4 43.5a403.4 403.4 0 0 1-115.6-17A15.4 15.4 0 0 1 24 366.3a114 114 0 0 1 5-50.8c14.7-48.7 41.3-82.6 82.8-105a201.6 201.6 0 0 1-4.2-.7c-17-1.6-23.8 4-30.4 9.3l-4.5 3.6a31 31 0 0 1-35 .9C26.4 216.2 14 195 12.5 192a97 97 0 0 0-6.7-11.6 34.2 34.2 0 0 1 8.4-46.7l122.5-88.8-1.4-28.7A15.4 15.4 0 0 1 153.9.3c4.9 1 120 26.6 146 113.5 19.4 64.9-.1 114.3-14.4 150.3-3.5 8.8-6.8 17.1-9.2 24.7a124.8 124.8 0 0 0 .1 70.4 15.4 15.4 0 0 1-10.4 18.9 403.6 403.6 0 0 1-115.7 17"/></g><path fill="#fff" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M55 292a333 333 0 0 0 100.2 14.1 332.8 332.8 0 0 0 91.4-14"/><path d="M169.7 93.6a15.2 15.2 0 1 1-30.3 0 15.2 15.2 0 0 1 30.3 0"/></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-50 -100 345.8 506.5"><defs><clipPath id="a"><path d="M0 0h255.8v376.5H0Zm0 0"/></clipPath></defs><path fill="#ccc" d="M239.5 320.4c0-90.3-74.4-119.9-65.9-176.2A81 81 0 0 0 129.3-3.7a81.2 81.2 0 0 0-48.2 147.8c9.5 56.4-64.8 86.4-64.8 176.3 33 9.9 54.4 19.7 112.2 19.7s78-9.8 111-19.7"/><path fill="#fff" d="M126 10.4s-25 26-26 64c-1 38.1 14 60.6 14 66 0 5.5.4 28.4-5 48s-36 89-34 136c1.4 32.8-55.6-10.4-55.6-10.4l7.6-56.6 56.6-82.6-4.3-34.9-33.8-52.2 19.6-62Zm0 0"/><g clip-path="url(#a)" transform="translate(0 -20)"><path d="M239.5 340.4ZM33.1 328.5l1.9.6c26 8.2 46.6 14.7 93.5 14.7 46.3 0 66.2-6.3 91.4-14.4l2.8-.9c-3-36.4-20-61-36.3-84.9-16.7-24.2-33.9-49.2-29-81.9a16.3 16.3 0 0 1 6.9-11 64.8 64.8 0 1 0-74 0 16.3 16.3 0 0 1 6.8 10.7c5.6 33-11.5 58.3-28.2 82.8-16 23.8-32.7 48.3-35.8 84.3m95.4 48c-52 0-77-8-103.3-16.3L11.6 356A16.3 16.3 0 0 1 0 340.4c0-52.7 23.2-87 42-114.5 15-22.3 24.1-36.6 23.6-53A97.6 97.6 0 0 1 129.7 0a97 97 0 0 1 66.5 28.6 97 97 0 0 1-7 144.2c0 17.3 10.8 33 24 52.3 19 27.7 42.6 62 42.6 115.3 0 7.2-4.7 13.6-11.6 15.6l-14.4 4.5c-25.7 8.2-50 16-101.3 16"/></g></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-50 -90 498 528"><path fill="#ccc" d="M319.3 373H88.7a79.8 79.8 0 0 0 17.7-49.5c0-7-1-28.7-17.7-49.5h230.6a79.8 79.8 0 0 0-17.7 49.5c0 7 1 28.7 17.7 49.5"/><path fill="#fff" d="M140 373c3.6-10.3 11.4-25.8 12-45 .7-23.8-8.1-41.7-12-53-10.7 0-27.3-1-38-1l15.6 54L93 373Zm0 0"/><path d="M113.5 358h181a92.9 92.9 0 0 1 0-69h-181a92.9 92.9 0 0 1 0 69m205.8 30H88.7c-5.4 0-10.3-3.5-12.5-8.8a16.1 16.1 0 0 1 2.2-16.1 63.8 63.8 0 0 0 14.3-39.6c0-8.2-1.9-24.1-14.3-39.6a16.1 16.1 0 0 1-2.2-16c2.2-5.4 7-8.9 12.5-8.9h230.6c5.4 0 10.3 3.5 12.5 8.8a16 16 0 0 1-2.2 16.1 63.8 63.8 0 0 0-14.3 39.6c0 8.2 1.9 24.1 14.3 39.6a16 16 0 0 1 2.2 16 13.7 13.7 0 0 1-12.5 8.9"/><path fill="#ccc" d="m91.1 234.3-35.4-127c3.3 2 50.5 69 74.2 54.2 18.8-11.8 14.9-84.2 16.4-112.5 8.3 26.2 36.1 93.8 57.7 93.8s49.4-67.6 57.7-93.8c.5 3.2-7.9 97.2 24.7 112.5 18.6 8.8 59.9-51.5 65.9-54.2-6.2 35.2-28.8 83.8-35 126.8a46.2 46.2 0 0 1-45.5 39.9H136.6A46.1 46.1 0 0 1 91 234.3"/><path fill="#fff" d="M86.8 139C153 172 93 259 230 259l-100 15a148.2 148.2 0 0 1-43.2-72c-6.6-27-3.2-49.7 0-63"/><path d="M203.7 127.8Zm.6 0Zm-81.4 20.8Zm-38 11.7 19.3 69.6.5 2a32.1 32.1 0 0 0 31.9 27.1h135.2c16 0 29.7-11.7 32-27.2a429.6 429.6 0 0 1 18.8-71.4c-14.9 13.7-28.7 21-41.7 14.9-16.6-7.9-27.2-28.6-31.4-61.7-16 30.1-30.5 44.2-45.5 44.2s-29.6-14.2-45.7-44.6v-.2c-2.2 30.2-7.4 52.6-21.6 61.5a26.6 26.6 0 0 1-14.4 4.2c-12.4 0-25.5-8-37.5-18.4m187 128.7H136.6A58.7 58.7 0 0 1 98 274.4a62 62 0 0 1-20.3-36.6L42.6 111.7c-1.6-5.8.1-12.2 4.5-16a12.8 12.8 0 0 1 15.2-1.5 36 36 0 0 1 9.1 9.4c6.4 7.9 18.4 22.5 30.5 33.1 13.5 11.8 19.9 12.4 21 11.8.5-.5 4.6-5.3 7-27 1.8-16.1 2-35.4 2.2-50.9.1-8.8.2-16.4.5-22.5.4-7.1 5.4-13 11.9-14s12.7 3.2 14.8 10a365 365 0 0 0 21.6 51.8c12.2 23.6 20.5 30.8 23.1 31.8 2.6-1 11-8.2 23.1-31.8a365.3 365.3 0 0 0 21.6-51.8c2-6.5 7.8-10.6 14-10 6.3.5 11.4 5.6 12.5 12.3.3 2 .2 3.4 0 8.2-2.8 73.4 10.4 89.3 15.8 92.7 1.5-.5 6.3-2.5 16-11.8 8.3-8 16.7-17.8 23.4-25.7 9-10.5 12.2-14.4 16.7-16.4 4.7-2 10-1.1 13.9 2.3a16 16 0 0 1 4.8 14.5c-3 17-9.3 36.1-16 56.4a426.2 426.2 0 0 0-19 69.8 62 62 0 0 1-20.3 38 58.7 58.7 0 0 1-38.7 14.6"/><path fill="#f2f2f2" d="M168 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M168 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm0 0"/><path fill="#f2f2f2" d="M294 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M294 22a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm0 0"/><path fill="#f2f2f2" d="M393 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M393 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm0 0"/><path fill="#f2f2f2" d="M69 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M69 76a27 27 0 1 1-54 0 27 27 0 0 1 54 0Zm36.2 252h197.6"/></svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-50 -100 386.8 503"><defs><clipPath id="a"><path d="M0 0h296.8v373H0Zm0 0"/></clipPath></defs><path fill="#ccc" d="M49.3 162.3C49.8 94 5.8 37.2 18.8-3.7H278c13 40.9-31 97.6-30.6 166 .5 72.3 44 132.3 30.6 174.5H18.8c-13.4-42.2 30-102.3 30.5-174.5"/><path fill="#fff" d="M92.9-2c-9.8 55.2 6 125.3 6 173 0 46.5-18.3 101-15 166l-60.4-.2L43 171 23.5-4.2Zm0 0"/><g clip-path="url(#a)" transform="translate(0 -20)"><path d="M251.3 281.8c-9.3-29.3-19.8-62.4-20-99.3-.3-35.8 10.4-67.8 19.9-96 7-20.7 13.1-39.2 13-54H32.6c0 14.8 6.1 33.3 13 54 9.5 28.2 20.2 60.2 20 96-.3 36.9-10.8 70-20 99.3-7.2 22.6-13.6 42.8-13.1 58.7h231.9c.4-16-6-36.1-13.1-58.7m-248 79.9c-8.5-27 1.1-57.5 11.3-89.7 8.6-27 18.3-57.7 18.5-89.8.2-30.4-9.2-58.3-18.2-85.3C4.7 66.4-5.1 37.5 3.3 11.3A16.2 16.2 0 0 1 18.8 0H278c7 0 13.3 4.6 15.5 11.3 8.2 26.2-1.4 55-11.7 85.6-9 27-18.4 55-18.1 85.3.2 32 9.9 62.7 18.4 89.8 10.2 32.2 19.9 62.7 11.4 89.7A16.2 16.2 0 0 1 278 373H18.8a16.2 16.2 0 0 1-15.5-11.3"/></g><path fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="30" d="M98.6 4.5v58.2m99.7-58.2v58.2m-175 215.6h250.2M40.4 120.8h216"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><filter id="c" color-interpolation-filters="sRGB"><feGaussianBlur result="blur" stdDeviation="0.01 0.01"/></filter><filter id="b" color-interpolation-filters="sRGB"><feFlood flood-color="#000" flood-opacity=".5" result="flood"/><feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/><feGaussianBlur in="composite1" result="blur" stdDeviation=".3"/><feOffset dx="1" dy="1" result="offset"/><feComposite in="SourceGraphic" in2="offset" result="composite2"/></filter><linearGradient id="a" x1="13197" x2="13341" y1="-9591.1" y2="-9591.1" gradientTransform="translate(-3485.7 2562.6) scale(.26458)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#3c3c3c"/><stop offset="1"/></linearGradient></defs><path fill="url(#a)" stroke="#e6e6e6" stroke-linejoin="round" stroke-width="1.1" d="M25 6.55c-.88 0-1.65.29-2.26.9a2.86 2.86 0 0 0-.95 2.16c0 1.23.58 2.13 1.76 2.74-2.97 3.29-8.7 5.82-8.81 10.83 0 2.67 1.46 4.76 3.3 6.8l-1.1 5.83c1.69.54 3.08.94 4.82 1.13-3.88 4.58-10.79-1.74-15.21 2.93l2.33 3.58c5.6-3.96 13.38 3.67 16.12-3.96 2.75 7.63 10.53 0 16.12 3.96l2.33-3.58c-4.42-4.67-11.33 1.65-15.2-2.93a23.1 23.1 0 0 0 4.82-1.13l-1.12-5.83c1.85-2.04 3.3-4.13 3.31-6.8-.1-5-5.84-7.54-8.8-10.83 1.17-.61 1.75-1.51 1.75-2.74 0-.84-.3-1.55-.95-2.16a3.1 3.1 0 0 0-2.26-.9z" filter="url(#b)"/><ellipse cx="2720.3" cy="-271.4" fill="#e6e6e6" class="st15" filter="url(#c)" rx="16.3" ry="2.5" transform="matrix(.33232 0 0 .24998 -879.01 102.47)"/><ellipse cx="25" cy="9.61" fill="#e6e6e6" class="st15" rx="1.14" ry="1.15"/><path fill="none" stroke="#e6e6e6" stroke-width="1.4" d="M21.33 23.27h7.34M25 19.93v6.75"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><filter id="c" color-interpolation-filters="sRGB"><feGaussianBlur result="blur" stdDeviation="0.01 0.01"/></filter><filter id="b" color-interpolation-filters="sRGB"><feFlood flood-color="#000" flood-opacity=".5" result="flood"/><feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/><feGaussianBlur in="composite1" result="blur" stdDeviation=".6"/><feOffset dx="1.6" dy="1.4" result="offset"/><feComposite in="SourceGraphic" in2="offset" result="composite2"/></filter><linearGradient id="a" x1="2986.4" x2="3128.4" y1="1623.8" y2="1623.8" gradientTransform="matrix(.27141 0 0 .27218 -804.81 -417.45)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#3c3c3c"/><stop offset="1"/></linearGradient></defs><path fill="url(#a)" stroke="#e6e6e6" stroke-width="1.1" d="M23.28 5.55v3.24h-3.36v2.92h3.36v1.76c-3.36 2.12-3 5.74-3 5.74-11-8.52-20.67 7.56-7.94 13.05v8.73c0 .95 5.67 2.46 12.66 2.46s12.66-1.5 12.66-2.46v-8.73c12.72-5.49 3.06-21.57-7.95-13.05 0 0 .38-3.62-3-5.74V11.7h3.37V8.79h-3.36V5.55H25z" filter="url(#b)"/><ellipse cx="71.08" cy="131.54" fill="#e6e6e6" class="st15" filter="url(#c)" rx="32.13" ry="2.84" transform="matrix(.28533 0 0 .3223 4.72 -1.98)"/><path fill="none" stroke="#e6e6e6" stroke-width="1.4" d="M27.03 30.27c1.5-12.1 11.94-12.44 13.37-7.38 1.42 5.06-4.74 7.38-4.74 7.38s-4.87-.64-10.66-.64-10.66.64-10.66.64-6.16-2.32-4.73-7.38 11.87-4.73 13.36 7.38"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient id="a" x1="-455.39" x2="-419.41" y1="-338.23" y2="-338.23" gradientTransform="matrix(1.0008 0 0 1.0001 462.75 363.26)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#3c3c3c"/><stop offset="1"/></linearGradient><filter id="b" color-interpolation-filters="sRGB"><feFlood flood-color="#000" flood-opacity=".5" result="flood"/><feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/><feGaussianBlur in="composite1" result="blur" stdDeviation=".6"/><feOffset dx="1.6" dy="1.4" result="offset"/><feComposite in="SourceGraphic" in2="offset" result="composite2"/></filter></defs><path fill="url(#a)" stroke="#e6e6e6" stroke-width="1.1" d="M18.47 30.29c2.1-1.2 3.33-1.19 5.47-2.2.22 7.42-9.9 7.45-8.1 15.36h26.43s3.1-32.27-16.79-33.63c0 0-1.92-3.6-3.93-3.25 0 0-1.06.84-.46 3.21l-2.3.75s-3.22-2.08-4.13-1.27c-.86.37 1.1 3.28 1.88 3.98-.8 1.15-8.55 12.11-8.97 15.69-.26 2.27 2.03 3.51 3.72 4.12a11.91 11.91 0 0 0 1.74.47c1.42-.26 3.34-2.04 5.45-3.24z" filter="url(#b)"/><path fill="none" stroke="#e6e6e6" stroke-linecap="round" stroke-width="1.1" d="M23.94 28.09s4.43-1.87 4.22-5.84"/><path stroke="#e6e6e6" stroke-linecap="round" stroke-width="1.4" d="M19.1 18.47s.6-1.84 3.46-2.3"/><ellipse cx="21.03" cy="18" fill="#e6e6e6" paint-order="markers fill stroke" rx="1.24" ry="1.17"/><path fill="#fff" stroke="#e6e6e6" stroke-linecap="round" stroke-width="1.4" d="M9.17 29.24s.25-.68.92-1.12"/><path fill="#fff" stroke="#e6e6e6" stroke-linecap="round" stroke-width="1.2" d="M11.64 32.28c.69-.88 1.58-1.32 2.38-1.95"/><path fill="none" stroke="#e6e6e6" stroke-linejoin="round" stroke-width="1.4" d="M30.8 14.87c4.31 2.64 8.47 9.25 8.12 26.08"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient id="a" x1="4127.2" x2="4235.7" y1="-2558.3" y2="-2558.3" gradientTransform="matrix(.26749 0 0 .26799 -1093.5 713.11)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#3c3c3c"/><stop offset="1"/></linearGradient><filter id="b" color-interpolation-filters="sRGB"><feFlood flood-color="#000" flood-opacity=".498" result="flood"/><feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/><feGaussianBlur in="composite1" result="blur" stdDeviation=".3"/><feOffset dx="1" dy="1" result="offset"/><feComposite in="SourceGraphic" in2="offset" result="composite2"/></filter></defs><path fill="url(#a)" stroke="#e6e6e6" stroke-linecap="square" stroke-linejoin="round" stroke-width="1.1" d="M25.019 43.45H11.58c-2.466-5.724 4.072-11.03 8.668-12.832-5.493-3.074-2.515-10.911 2.192-11.547-1.12-.742-1.681-2.327-1.681-3.6 0-1.06.448-2.013 1.233-2.755.785-.742 1.793-1.166 3.026-1.166 1.121 0 2.13.424 3.026 1.166.785.742 1.233 1.696 1.233 2.756 0 1.272-.56 2.857-1.681 3.599 5.156 2.014 7.012 9.427 2.193 11.547 6.276 2.226 10.685 7.85 8.667 12.832z" class="st31" filter="url(#b)"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><filter id="c" color-interpolation-filters="sRGB"><feGaussianBlur result="blur" stdDeviation="0.01 0.01"/></filter><filter id="b" color-interpolation-filters="sRGB"><feFlood flood-color="#000" flood-opacity=".498" result="flood"/><feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/><feGaussianBlur in="composite1" result="blur" stdDeviation=".3"/><feOffset dx="1" dy="1" result="offset"/><feComposite in="SourceGraphic" in2="offset" result="composite2"/></filter><linearGradient id="a" x1="-71.637" x2="-30.678" y1="-83.325" y2="-83.325" gradientTransform="matrix(.97644 0 0 .99286 74.952 107.73)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#3c3c3c"/><stop offset="1"/></linearGradient></defs><path fill="url(#a)" stroke="#e6e6e6" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1" d="M24.994 6.549v0c-1.568.006-2.835 1.181-2.836 2.63.002 1.193.873 2.235 2.122 2.539-.688 4.45-1.967 9.726-2.634 14.112l-4.07-12.927c.968-.444 1.58-1.356 1.58-2.353 0-1.453-1.275-2.63-2.847-2.63s-2.847 1.177-2.847 2.63c.002 1.205.89 2.255 2.157 2.547l-.44 13.258-5.482-10.611c.951-.45 1.55-1.354 1.55-2.34 0-1.453-1.275-2.63-2.847-2.63-1.573 0-2.847 1.177-2.847 2.63 0 1.334 1.084 2.456 2.519 2.61l2.76 16.507 4.05 5.258-1.004 3.634c-.042.656 4.848 2.028 11.122 2.04 6.273-.012 11.164-1.384 11.122-2.04l-1.005-3.634 4.05-5.258 2.76-16.507c1.435-.154 2.519-1.276 2.52-2.61 0-1.453-1.275-2.63-2.847-2.63-1.573 0-2.847 1.177-2.847 2.63 0 .986.598 1.89 1.55 2.34l-5.484 10.61-.439-13.257c1.266-.292 2.155-1.342 2.157-2.547 0-1.453-1.275-2.63-2.847-2.63s-2.847 1.177-2.847 2.63c0 .997.612 1.909 1.58 2.353l-4.07 12.927c-.667-4.386-1.946-9.662-2.634-14.112 1.249-.304 2.12-1.346 2.122-2.54 0-1.448-1.268-2.623-2.836-2.629v0h-.011z" filter="url(#b)"/><ellipse cx="4708.7" cy="-2517.6" fill="#e6e6e6" class="st15" filter="url(#c)" rx="32.126" ry="2.844" transform="matrix(.25939 0 0 .29298 -1196.4 778.12)"/><path fill="none" stroke="#e6e6e6" stroke-linejoin="round" stroke-width="2" d="M15.172 34.076s2.7-1.249 9.802-1.256c7.103-.01 9.801 1.256 9.801 1.256" paint-order="stroke fill markers"/></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient id="a" x1="4501.5" x2="4594.6" y1="-572.4" y2="-572.4" gradientTransform="matrix(.34208 0 0 .2837 -1530.8 187.39)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#3c3c3c"/><stop offset="1"/></linearGradient><filter id="b" color-interpolation-filters="sRGB"><feFlood flood-color="#000" flood-opacity=".5" result="flood"/><feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/><feGaussianBlur in="composite1" result="blur" stdDeviation=".3"/><feOffset dx="1" dy="1" result="offset"/><feComposite in="SourceGraphic" in2="offset" result="composite2"/></filter></defs><path fill="url(#a)" stroke="#e6e6e6" stroke-width="1.14" d="M21.93 6.55v2.93h-4.09V6.89h-5.8v7.98L16.58 18v12.57l-3.85 2.48v5.21H9.66v5.18h30.68v-5.18h-3.07v-5.2l-3.85-2.5V18.05l4.53-3.2V6.88h-5.8v2.59h-4.42V6.55h-2.9z" class="st14" filter="url(#b)" transform="matrix(1.0055 0 0 .9198 -.2 3.5)"/><path fill="none" stroke="#e6e6e6" stroke-width="1.4" d="M18.8 31.4h12M18.8 20h12"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><filter id="c" color-interpolation-filters="sRGB"><feGaussianBlur result="blur" stdDeviation="0.01 0.01"/></filter><filter id="b" color-interpolation-filters="sRGB"><feFlood flood-color="#000" flood-opacity=".5" result="flood"/><feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/><feGaussianBlur in="composite1" result="blur" stdDeviation=".3"/><feOffset dx="1" dy="1" result="offset"/><feComposite in="SourceGraphic" in2="offset" result="composite2"/></filter><linearGradient id="a" x1="13197" x2="13341" y1="-9591" y2="-9591" gradientTransform="translate(-3485.7 2562.6) scale(.26458)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#e6e6e6"/></linearGradient></defs><path fill="url(#a)" stroke="#000" stroke-linejoin="round" stroke-width="1.1" d="M25 6.55c-.88 0-1.65.29-2.26.9a2.86 2.86 0 0 0-.95 2.16c0 1.23.58 2.13 1.76 2.74-2.97 3.29-8.7 5.82-8.81 10.83 0 2.67 1.46 4.76 3.3 6.8l-1.1 5.83c1.69.54 3.08.94 4.82 1.13-3.88 4.58-10.79-1.74-15.21 2.93l2.33 3.58c5.6-3.96 13.38 3.67 16.12-3.96 2.75 7.63 10.53 0 16.12 3.96l2.33-3.58c-4.42-4.67-11.33 1.65-15.2-2.93a23.1 23.1 0 0 0 4.82-1.13l-1.12-5.83c1.85-2.04 3.3-4.13 3.31-6.8-.1-5-5.84-7.54-8.8-10.83 1.17-.61 1.75-1.51 1.75-2.74 0-.84-.3-1.55-.95-2.16-.6-.61-1.38-.9-2.26-.9z" filter="url(#b)"/><ellipse cx="2720.3" cy="-271.4" class="st15" filter="url(#c)" rx="16.3" ry="2.5" transform="matrix(.33232 0 0 .24998 -879.01 102.47)"/><ellipse cx="25" cy="9.61" class="st15" rx="1.14" ry="1.15"/><path fill="none" stroke="#000" stroke-width="1.4" d="M21.33 23.27h7.34M25 19.93v6.75"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><filter id="c" color-interpolation-filters="sRGB"><feGaussianBlur result="blur" stdDeviation="0.01 0.01"/></filter><filter id="b" color-interpolation-filters="sRGB"><feFlood flood-color="#000" flood-opacity=".5" result="flood"/><feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/><feGaussianBlur in="composite1" result="blur" stdDeviation=".6"/><feOffset dx="1.6" dy="1.4" result="offset"/><feComposite in="SourceGraphic" in2="offset" result="composite2"/></filter><linearGradient id="a" x1="2986.4" x2="3128.4" y1="1623.8" y2="1623.8" gradientTransform="matrix(.27141 0 0 .27218 -804.81 -417.45)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#e6e6e6"/></linearGradient></defs><path fill="url(#a)" stroke="#000" stroke-width="1.1" d="M23.28 5.55v3.24h-3.36v2.92h3.36v1.76c-3.36 2.12-3 5.74-3 5.74-11-8.52-20.67 7.56-7.94 13.05v8.73c0 .95 5.67 2.46 12.66 2.46s12.66-1.5 12.66-2.46v-8.73c12.72-5.49 3.06-21.57-7.95-13.05 0 0 .38-3.62-3-5.74V11.7h3.37V8.79h-3.36V5.55H25z" filter="url(#b)"/><ellipse cx="71.08" cy="131.54" class="st15" filter="url(#c)" rx="32.13" ry="2.84" transform="matrix(.28533 0 0 .3223 4.72 -1.98)"/><path fill="none" stroke="#000" stroke-width="1.4" d="M27.03 30.27c1.5-12.1 11.94-12.44 13.37-7.38 1.42 5.06-4.74 7.38-4.74 7.38s-4.87-.64-10.66-.64-10.66.64-10.66.64-6.16-2.32-4.73-7.38 11.87-4.73 13.36 7.38"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient id="a" x1="-455.39" x2="-419.41" y1="-338.23" y2="-338.23" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fcfcf8"/><stop offset="1" stop-color="#e7e7e3"/></linearGradient><filter id="b" color-interpolation-filters="sRGB"><feFlood flood-color="#000" flood-opacity=".5" result="flood"/><feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/><feGaussianBlur in="composite1" result="blur" stdDeviation=".6"/><feOffset dx="1.6" dy="1.4" result="offset"/><feComposite in="SourceGraphic" in2="offset" result="composite2"/></filter></defs><path fill="url(#a)" stroke="#000" stroke-width="1.1" d="M-443.92-332.95c2.1-1.2 3.32-1.18 5.46-2.2.23 7.43-9.9 7.46-8.08 15.36h26.4s3.1-32.27-16.78-33.62c0 0-1.91-3.6-3.93-3.25 0 0-1.06.84-.45 3.2l-2.3.75s-3.22-2.07-4.13-1.27c-.86.37 1.1 3.28 1.88 3.99-.8 1.14-8.55 12.1-8.96 15.68-.27 2.28 2.02 3.52 3.71 4.12.97.34 1.74.47 1.74.47 1.42-.25 3.34-2.03 5.44-3.23z" filter="url(#b)" transform="matrix(1.0008 0 0 1.0001 462.75 363.26)"/><path fill="none" stroke="#000" stroke-linecap="round" stroke-width="1.1" d="M23.94 28.09s4.43-1.87 4.22-5.84"/><path stroke="#000" stroke-linecap="round" stroke-width="1.4" d="M19.1 18.47s.6-1.84 3.46-2.3"/><ellipse cx="21.03" cy="18" paint-order="markers fill stroke" rx="1.24" ry="1.17"/><path fill="#fff" stroke="#000" stroke-linecap="round" stroke-width="1.4" d="M9.17 29.24s.25-.68.92-1.12"/><path fill="#fff" stroke="#000" stroke-linecap="round" stroke-width="1.2" d="M11.64 32.28c.69-.88 1.58-1.32 2.38-1.95"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="1.4" d="M30.8 14.87c4.31 2.64 8.47 9.25 8.12 26.08"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient id="a" x1="4127.3" x2="4235.7" y1="-2558.4" y2="-2558.4" gradientTransform="matrix(.27677 0 0 .27555 -1132.3 731.96)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#e6e6e6"/></linearGradient><filter id="b" color-interpolation-filters="sRGB"><feFlood flood-color="#000" flood-opacity=".5" result="flood"/><feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/><feGaussianBlur in="composite1" result="blur" stdDeviation=".3"/><feOffset dx="1" dy="1" result="offset"/><feComposite in="SourceGraphic" in2="offset" result="composite2"/></filter></defs><path fill="url(#a)" stroke="#000" stroke-linecap="square" stroke-linejoin="round" stroke-width="1.14" d="M25.02 43.4h-13.9c-2.55-5.88 4.21-11.34 8.97-13.2-5.69-3.15-2.6-11.21 2.27-11.87-1.16-.76-1.74-2.39-1.74-3.7 0-1.09.46-2.07 1.27-2.83a4.43 4.43 0 0 1 3.13-1.2c1.16 0 2.2.44 3.14 1.2a3.84 3.84 0 0 1 1.27 2.83c0 1.31-.58 2.94-1.74 3.7 5.34 2.07 7.26 9.7 2.27 11.88 6.5 2.29 11.06 8.07 8.97 13.2z" class="st31" filter="url(#b)" transform="matrix(.96658 0 0 .97245 .83 1.24)"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><filter id="c" color-interpolation-filters="sRGB"><feGaussianBlur result="blur" stdDeviation="0.01 0.01"/></filter><filter id="b" color-interpolation-filters="sRGB"><feFlood flood-color="#000" flood-opacity=".5" result="flood"/><feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/><feGaussianBlur in="composite1" result="blur" stdDeviation=".3"/><feOffset dx="1" dy="1" result="offset"/><feComposite in="SourceGraphic" in2="offset" result="composite2"/></filter><linearGradient id="a" x1="-71.64" x2="-30.68" y1="-83.32" y2="-83.32" gradientTransform="matrix(.97643 0 0 .99287 74.95 107.73)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#e6e6e6"/></linearGradient></defs><path fill="url(#a)" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1" d="M25 6.55v0c-1.57 0-2.84 1.18-2.84 2.63 0 1.2.87 2.23 2.12 2.54-.69 4.45-1.97 9.72-2.63 14.11L17.58 12.9a2.62 2.62 0 0 0 1.58-2.35c0-1.45-1.28-2.63-2.85-2.63s-2.85 1.18-2.85 2.63c0 1.2.9 2.25 2.16 2.55l-.44 13.25-5.48-10.6a2.62 2.62 0 0 0 1.55-2.35c0-1.45-1.28-2.63-2.85-2.63s-2.85 1.18-2.85 2.63c0 1.34 1.09 2.46 2.52 2.61l2.76 16.51 4.05 5.26-1 3.63c-.04.66 4.85 2.03 11.12 2.04 6.27-.01 11.16-1.38 11.12-2.04l-1-3.63 4.05-5.26 2.76-16.5a2.74 2.74 0 0 0 2.52-2.62c0-1.45-1.28-2.63-2.85-2.63s-2.85 1.18-2.85 2.63c0 .99.6 1.9 1.55 2.34l-5.48 10.61-.44-13.25a2.68 2.68 0 0 0 2.16-2.55c0-1.45-1.28-2.63-2.85-2.63s-2.85 1.18-2.85 2.63c0 1 .61 1.9 1.58 2.35l-4.07 12.93c-.67-4.39-1.94-9.66-2.63-14.11a2.68 2.68 0 0 0 2.12-2.54c0-1.45-1.27-2.63-2.84-2.63v0h0z" filter="url(#b)"/><ellipse cx="4708.7" cy="-2517.6" class="st15" filter="url(#c)" rx="32.13" ry="2.84" transform="matrix(.25939 0 0 .29298 -1196.4 778.12)"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" d="M15.17 34.08s2.7-1.25 9.8-1.26c7.1-.01 9.8 1.26 9.8 1.26" paint-order="stroke fill markers"/></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient id="a" x1="4501.5" x2="4594.6" y1="-572.4" y2="-572.4" gradientTransform="matrix(.34208 0 0 .2837 -1530.8 187.39)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#e6e6e6"/></linearGradient><filter id="b" color-interpolation-filters="sRGB"><feFlood flood-color="#000" flood-opacity=".5" result="flood"/><feComposite in="flood" in2="SourceGraphic" operator="in" result="composite1"/><feGaussianBlur in="composite1" result="blur" stdDeviation=".3"/><feOffset dx="1" dy="1" result="offset"/><feComposite in="SourceGraphic" in2="offset" result="composite2"/></filter></defs><path fill="url(#a)" stroke="#010101" stroke-width="1.14" d="M21.93 6.55v2.93h-4.09V6.89h-5.8v7.98L16.58 18v12.57l-3.85 2.48v5.21H9.66v5.18h30.68v-5.18h-3.07v-5.2l-3.85-2.5V18.05l4.53-3.2V6.88h-5.8v2.59h-4.42V6.55h-2.9z" class="st14" filter="url(#b)" transform="matrix(1.0055 0 0 .9198 -.14 3.5)"/><path fill="none" stroke="#000" stroke-width="1.4" d="M18.83 31.44h12M18.83 20h12"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="none" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><g fill="#000" stroke-linecap="butt"><path d="M9 36c3.4-1 10.1.4 13.5-2 3.4 2.4 10.1 1 13.5 2 0 0 1.6.5 3 2-.7 1-1.6 1-3 .5-3.4-1-10.1.5-13.5-1-3.4 1.5-10.1 0-13.5 1-1.4.5-2.3.5-3-.5 1.4-2 3-2 3-2z"/><path d="M15 32c2.5 2.5 12.5 2.5 15 0 .5-1.5 0-2 0-2 0-2.5-2.5-4-2.5-4 5.5-1.5 6-11.5-5-15.5-11 4-10.5 14-5 15.5 0 0-2.5 1.5-2.5 4 0 0-.5.5 0 2z"/><path d="M25 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 1 1 5 0z"/></g><path stroke="#ececec" stroke-linejoin="miter" d="M17.5 26h10M15 30h15m-7.5-14.5v5M20 18h5"/></g></svg>

After

Width:  |  Height:  |  Size: 683 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="none" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><path stroke-linejoin="miter" d="M22.5 11.6V6"/><path fill="#000" stroke-linecap="butt" stroke-linejoin="miter" d="M22.5 25s4.5-7.5 3-10.5c0 0-1-2.5-3-2.5s-3 2.5-3 2.5c-1.5 3 3 10.5 3 10.5"/><path fill="#000" d="M11.5 37a22.3 22.3 0 0 0 21 0v-7s9-4.5 6-10.5c-4-6.5-13.5-3.5-16 4V27v-3.5c-3.5-7.5-13-10.5-16-4-3 6 5 10 5 10V37z"/><path stroke-linejoin="miter" d="M20 8h5"/><path stroke="#ececec" d="M32 29.5s8.5-4 6-9.7C34.1 14 25 18 22.5 24.6v2.1-2.1C20 18 9.9 14 7 19.9c-2.5 5.6 4.8 9 4.8 9"/><path stroke="#ececec" d="M11.5 30c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0"/></g></svg>

After

Width:  |  Height:  |  Size: 786 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="none" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><path fill="#000" d="M22 10c10.5 1 16.5 8 16 29H15c0-9 10-6.5 8-21"/><path fill="#000" d="M24 18c.38 2.91-5.55 7.37-8 9-3 2-2.82 4.34-5 4-1.04-.94 1.41-3.04 0-3-1 0 .19 1.23-1 2-1 0-4 1-4-4 0-2 6-12 6-12s1.89-1.9 2-3.5c-.73-1-.5-2-.5-3 1-1 3 2.5 3 2.5h2s.78-2 2.5-3c1 0 1 3 1 3"/><path fill="#ececec" stroke="#ececec" d="M9.5 25.5a.5.5 0 1 1-1 0 .5.5 0 1 1 1 0zm5.43-9.75a.5 1.5 30 1 1-.86-.5.5 1.5 30 1 1 .86.5z"/><path fill="#ececec" stroke="none" d="m24.55 10.4-.45 1.45.5.15c3.15 1 5.65 2.49 7.9 6.75S35.75 29.06 35.25 39l-.05.5h2.25l.05-.5c.5-10.06-.88-16.85-3.25-21.34-2.37-4.49-5.79-6.64-9.19-7.16l-.51-.1z"/></g></svg>

After

Width:  |  Height:  |  Size: 801 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><path stroke="#000" stroke-linecap="round" stroke-width="1.5" d="M22.5 9a4 4 0 0 0-3.22 6.38 6.48 6.48 0 0 0-.87 10.65c-3 1.06-7.41 5.55-7.41 13.47h23c0-7.92-4.41-12.41-7.41-13.47a6.46 6.46 0 0 0-.87-10.65A4.01 4.01 0 0 0 22.5 9z"/></svg>

After

Width:  |  Height:  |  Size: 298 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><g stroke="none"><circle cx="6" cy="12" r="2.75"/><circle cx="14" cy="9" r="2.75"/><circle cx="22.5" cy="8" r="2.75"/><circle cx="31" cy="9" r="2.75"/><circle cx="39" cy="12" r="2.75"/></g><path stroke-linecap="butt" d="M9 26c8.5-1.5 21-1.5 27 0l2.5-12.5L31 25l-.3-14.1-5.2 13.6-3-14.5-3 14.5-5.2-13.6L14 25 6.5 13.5 9 26z"/><path stroke-linecap="butt" d="M9 26c0 2 1.5 2 2.5 4 1 1.5 1 1 .5 3.5-1.5 1-1.5 2.5-1.5 2.5-1.5 1.5.5 2.5.5 2.5 6.5 1 16.5 1 23 0 0 0 1.5-1 0-2.5 0 0 .5-1.5-1-2.5-.5-2.5-.5-2 .5-3.5 1-2 2.5-2 2.5-4-8.5-1.5-18.5-1.5-27 0z"/><path fill="none" stroke-linecap="butt" d="M11 38.5a35 35 1 0 0 23 0"/><path fill="none" stroke="#ececec" d="M11 29a35 35 1 0 1 23 0m-21.5 2.5h20m-21 3a35 35 1 0 0 22 0m-23 3a35 35 1 0 0 24 0"/></g></svg>

After

Width:  |  Height:  |  Size: 915 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><path stroke-linecap="butt" d="M9 39h27v-3H9v3zm3.5-7 1.5-2.5h17l1.5 2.5h-20zm-.5 4v-4h21v4H12z"/><path stroke-linecap="butt" stroke-linejoin="miter" d="M14 29.5v-13h17v13H14z"/><path stroke-linecap="butt" d="M14 16.5 11 14h23l-3 2.5H14zM11 14V9h4v2h5V9h5v2h5V9h4v5H11z"/><path fill="none" stroke="#ececec" stroke-linejoin="miter" stroke-width="1" d="M12 35.5h21m-20-4h19m-18-2h17m-17-13h17M11 14h23"/></g></svg>

After

Width:  |  Height:  |  Size: 575 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="none" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><g fill="#fff" stroke-linecap="butt"><path d="M9 36c3.39-.97 10.11.43 13.5-2 3.39 2.43 10.11 1.03 13.5 2 0 0 1.65.54 3 2-.68.97-1.65.99-3 .5-3.39-.97-10.11.46-13.5-1-3.39 1.46-10.11.03-13.5 1-1.35.49-2.32.47-3-.5 1.35-1.94 3-2 3-2z"/><path d="M15 32c2.5 2.5 12.5 2.5 15 0 .5-1.5 0-2 0-2 0-2.5-2.5-4-2.5-4 5.5-1.5 6-11.5-5-15.5-11 4-10.5 14-5 15.5 0 0-2.5 1.5-2.5 4 0 0-.5.5 0 2z"/><path d="M25 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 1 1 5 0z"/></g><path stroke-linejoin="miter" d="M17.5 26h10M15 30h15m-7.5-14.5v5M20 18h5"/></g></svg>

After

Width:  |  Height:  |  Size: 700 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="none" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><path stroke-linejoin="miter" d="M22.5 11.63V6M20 8h5"/><path fill="#fff" stroke-linecap="butt" stroke-linejoin="miter" d="M22.5 25s4.5-7.5 3-10.5c0 0-1-2.5-3-2.5s-3 2.5-3 2.5c-1.5 3 3 10.5 3 10.5"/><path fill="#fff" d="M11.5 37c5.5 3.5 15.5 3.5 21 0v-7s9-4.5 6-10.5c-4-6.5-13.5-3.5-16 4V27v-3.5c-3.5-7.5-13-10.5-16-4-3 6 5 10 5 10V37z"/><path d="M11.5 30c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0m-21 3.5c5.5-3 15.5-3 21 0"/></g></svg>

After

Width:  |  Height:  |  Size: 613 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="none" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><path fill="#fff" d="M22 10c10.5 1 16.5 8 16 29H15c0-9 10-6.5 8-21"/><path fill="#fff" d="M24 18c.38 2.91-5.55 7.37-8 9-3 2-2.82 4.34-5 4-1.042-.94 1.41-3.04 0-3-1 0 .19 1.23-1 2-1 0-4.003 1-4-4 0-2 6-12 6-12s1.89-1.9 2-3.5c-.73-.994-.5-2-.5-3 1-1 3 2.5 3 2.5h2s.78-1.992 2.5-3c1 0 1 3 1 3"/><path fill="#000" d="M9.5 25.5a.5.5 0 1 1-1 0 .5.5 0 1 1 1 0zm5.433-9.75a.5 1.5 30 1 1-.866-.5.5 1.5 30 1 1 .866.5z"/></g></svg>

After

Width:  |  Height:  |  Size: 595 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><path fill="#fff" stroke="#000" stroke-linecap="round" stroke-width="1.5" d="M22.5 9c-2.21 0-4 1.79-4 4 0 .89.29 1.71.78 2.38C17.33 16.5 16 18.59 16 21c0 2.03.94 3.84 2.41 5.03-3 1.06-7.41 5.55-7.41 13.47h23c0-7.92-4.41-12.41-7.41-13.47 1.47-1.19 2.41-3 2.41-5.03 0-2.41-1.33-4.5-3.28-5.62.49-.67.78-1.49.78-2.38 0-2.21-1.79-4-4-4z"/></svg>

After

Width:  |  Height:  |  Size: 400 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="#fff" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><path d="M8 12a2 2 0 1 1-4 0 2 2 0 1 1 4 0zm16.5-4.5a2 2 0 1 1-4 0 2 2 0 1 1 4 0zM41 12a2 2 0 1 1-4 0 2 2 0 1 1 4 0zM16 8.5a2 2 0 1 1-4 0 2 2 0 1 1 4 0zM33 9a2 2 0 1 1-4 0 2 2 0 1 1 4 0z"/><path stroke-linecap="butt" d="M9 26c8.5-1.5 21-1.5 27 0l2-12-7 11V11l-5.5 13.5-3-15-3 15-5.5-14V25L7 14l2 12z"/><path stroke-linecap="butt" d="M9 26c0 2 1.5 2 2.5 4 1 1.5 1 1 .5 3.5-1.5 1-1.5 2.5-1.5 2.5-1.5 1.5.5 2.5.5 2.5 6.5 1 16.5 1 23 0 0 0 1.5-1 0-2.5 0 0 .5-1.5-1-2.5-.5-2.5-.5-2 .5-3.5 1-2 2.5-2 2.5-4-8.5-1.5-18.5-1.5-27 0z"/><path fill="none" d="M11.5 30c3.5-1 18.5-1 22 0M12 33.5c6-1 15-1 21 0"/></g></svg>

After

Width:  |  Height:  |  Size: 782 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g fill="#fff" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><path stroke-linecap="butt" d="M9 39h27v-3H9v3zm3-3v-4h21v4H12zm-1-22V9h4v2h5V9h5v2h5V9h4v5"/><path d="m34 14-3 3H14l-3-3"/><path stroke-linecap="butt" stroke-linejoin="miter" d="M31 17v12.5H14V17"/><path d="m31 29.5 1.5 2.5h-20l1.5-2.5"/><path fill="none" stroke-linejoin="miter" d="M11 14h23"/></g></svg>

After

Width:  |  Height:  |  Size: 481 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 68 68"><defs><path id="a" d="M27.98 55.47q-2.75-.06-4.54-.06-1.8-.07-1.92-.26-.83-.77-.9-1.85-.06-1.1.77-1.8.07-.12 1.09-1.53 1.02-1.47 2.43-3.59-2.43-3.07-4.6-6.01-2.18-3.01-2.63-3.52-1.4-1.22-1.4-3.01 0-1.86 1.4-3.26.38-.39 2.3-2.95 1.99-2.56 4.23-5.57 2.3-3 4.22-5.56 1.99-2.63 2.24-2.88.26-.26.39-.45-.7-.77-1.48-1.47-.7-.7-.83-.96-2.05-1.8 0-3.59.2-.32 1.73-1.79 1.6-1.47 1.86-1.86 1.72-1.66 3.32 0l1.86 1.86q1.47 1.47 1.86 1.8 1.79 1.78 0 3.58l-1.03.96q-.77.7-1.4 1.47.06 0 .31.19.45.51 2.37 3.14 1.92 2.56 4.1 5.56 2.24 3.01 4.1 5.57 1.91 2.56 2.3 2.95 1.34 1.4 1.34 3.26 0 1.8-1.34 3-.45.52-2.56 3.4-2.05 2.82-4.35 5.89 1.6 2.11 2.68 3.71 1.16 1.54 1.35 1.66 1.73 1.8-.2 3.65-.12.2-2.1.26-1.93 0-4.8.06-.2 1.41-.13 1.41.32.32 2.17.32l4.1-.13q2.24-.07 4.29-.06 2.1-.07 2.94.19 2.11.7 2.94 3.26.84 2.5 1.41 4.87H40.78q-1.34 0-2.56-.07-1.15-.12-2.36-.7-1.16-.58-1.48-.83-.32-.32-.38-.7 0 .38-.26.7-.25.25-1.4.83-1.35.58-2.56.7-1.22.07-2.37.07H10.13q.7-2.37 1.66-4.87 1.03-2.56 3.14-3.26.77-.26 2.75-.2 2.05 0 4.16.07l3.9.13q1.8 0 2.12-.32.32-.2.19-.38-.07-.26-.07-1.03zm7.56-20.41h3.52V32.1h-3.52v-4.29h-2.95v4.3h-3.52v2.94h3.52v11.07h2.95zM34 5.62q-.26.38-1.6 1.72l-1.47 1.54q.19.38 1.47 1.73 1.34 1.28 1.6 1.47l1.54-1.47 1.72-1.73q-.38-.2-1.72-1.54Q34.19 6 34 5.62zm-2.94 49.72h5.88l.58-2.5h-7.04z"/><path id="b" fill="#fff" fill-rule="evenodd" d="M30.89 54.44c-.4-1.75-.67-1.62 3.17-1.62h3.39l-.12.58c-.06.32-.2.9-.3 1.27l-.19.7H31.1zm1.78-13.9V35h-3.45v-2.9h3.45v-4.2h2.73v4.18h3.64V35l-1.77.05-1.78.05-.05 5.5-.04 5.5h-2.73v-5.54zm-.25-30.08L31 9l.91-1.04c.5-.58 1.19-1.3 1.52-1.6l.6-.55 1.58 1.6 1.57 1.6-1.54 1.4c-.85.78-1.6 1.43-1.67 1.46-.08.03-.77-.6-1.55-1.4z"/></defs><use xlink:href="#a"/><use xlink:href="#b" fill-rule="evenodd"/><use xlink:href="#a"/><use xlink:href="#b" fill-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 68"><path d="m23.91 54.38.32 2.88q1.16 0 2.18-.06 1.02-.06 2.11-.2v-2.94q-2.05 0-4.6.32zm19.97 0q-.96 0-2.11-.12-1.09-.2-1.98-.2v3.08q.96 0 1.85.06.9.06 1.99.06zm-23.68-4.6q.7-.39 1.73-.77 1.02-.45 2.75-.96 2.3-.77 4.35-1.15 2.12-.39 3.65-.52V35Q31.4 29.04 30 23.8q-1.4-5.25-3.9-6.01-2.88-.77-6.72-.45-3.78.32-5 .9-1.34.7-3.38 2.62Q9 22.7 8.23 25q-.83 2.43-1.08 4.35l-.32 3.14q0 2.5 1.08 7.1.64 2.3 1.73 3.97 1.15 1.66 3.33 3.39 1.92 1.66 3.71 2.18 1.8.44 3.52.64zm13.9-21.44q.58-2.7 1.22-5.12.7-2.5 1.66-4.42 0-.64-.58-1.8-.5-.95-1.15-1.78-.57-.84-1.02-1.8-1.6 2.18-2.3 3.59-.58 1.02-.71 1.47-.06.45-.06.83 1.72 3.52 2.94 9.03zm16.26 24.19q.5 5.5 1.28 12.16h-35.6q.39-3.33.7-6.47.33-3.13.71-5.7-1.54-.31-3.07-.95-1.54-.7-3.4-2.11-2.55-2.12-3.9-4.16-1.34-2.05-2.11-4.93-1.22-4.74-1.22-8 .07-1.35.32-3.52.32-2.18 1.41-4.93.9-2.88 3.46-5.25t4.22-3.07q1.47-.77 5.95-1.22 4.48-.44 7.75.45 1.53.64 1.98 1.22.77-1.35 1.8-2.82l2.04-2.88V9.26h-2.94V6.2h2.94V3.31h2.95V6.2h2.75v3.07h-2.75v1.1q.9 1.34 1.85 2.8 1.03 1.42 1.8 2.76.44-.32.89-.58.51-.25.96-.5 3.33-.9 7.74-.46 4.48.45 6.15 1.22 1.47.7 4.03 3.07 2.56 2.37 3.65 5.25.9 2.75 1.21 4.93.32 2.17.32 3.52.13 3.2-1.21 8-.77 2.88-2.11 4.93-1.28 2.04-3.9 4.16-1.93 1.53-3.53 2.24-1.6.64-3.13.83zm-16.13-.32-1.73 1.73-1.47 1.53q.19.39 1.47 1.73 1.34 1.28 1.73 1.47.06-.19 1.34-1.47l1.73-1.73q-.38-.19-1.73-1.53-1.28-1.35-1.34-1.73zm1.21-5.83q1.6 0 4.16.26t3.84.83l2.05 1.03q1.15.57 2.3 1.28 1.73-.13 3.46-.58 1.8-.51 3.9-2.24 3.91-3.26 4.93-7.36 1.22-4.54 1.1-7.1 0-1.22-.26-3.14-.26-1.92-1.16-4.35-.83-2.3-2.88-4.16-2.04-1.92-3.26-2.63-1.34-.57-5-.9-3.64-.31-6.52.46-2.56.76-3.97 6.01-1.34 5.25-2.69 11.2zm-16.32-.19-2.17-.9q-2.11-.89-3.01-2.3-1.34-1.28-2.62-4.16-1.1-2.43-1.22-6.33-.26-2.05.51-4.74.77-2.69 1.6-3.84 1.92-2.69 5.89-3.4 2.05-.18 4.16-.06 2.18.07 2.88.84.38.44 1.02 2.5t1.28 4.47q.7 2.43 1.22 4.74.51 2.24.64 3.07.32 1.73.26 3.71-.07 1.92-.07 3.52zm30.02.32-10.3-2.75q0-1.6-.13-3.52-.07-1.98.32-3.9.06-.84.57-3.08t1.16-4.6q.64-2.44 1.28-4.42.7-2.05 1.08-2.5.7-.76 2.88-.9 2.24-.18 4.23.14 4.1.5 5.82 3.39.77 1.15 1.54 3.84.83 2.69.64 4.8-.2 3.84-1.22 6.14-.51 1.41-1.34 2.56-.83 1.15-1.28 1.73-.96 1.28-3.14 2.18zM22.06 58.03l-.58-3.07-2.17.64-.2 3.4zm23.55-.13 3.07.9-.32-3.2-2.11-.64z"/><path fill="#fff" fill-rule="evenodd" d="M19.28 57.29v-1.63l1.04-.29a5.72 5.72 0 0 1 1.09-.24c.14.13.54 2.76.44 2.86-.06.06-.57.26-1.12.43l-1.23.4c-.17.07-.22-.31-.22-1.53zm5.01-.26c-.04-.14-.12-.75-.19-1.36-.09-.89-.05-1.14.16-1.22.14-.06 1.17-.16 2.28-.23l2.01-.13v1.38a4.4 4.4 0 0 1-.14 1.47c-.08.05-1.02.14-2.09.22-1.58.1-1.96.08-2.02-.13zm8.2.01-1.45-1.47 1.52-1.53c.84-.84 1.57-1.51 1.62-1.49.05.03.75.73 1.54 1.55l1.45 1.51-1.44 1.45c-.8.8-1.53 1.45-1.63 1.45-.1 0-.83-.66-1.62-1.47zm8.1.06-.77-.07V54.1l1.32.12a46.88 46.88 0 0 1 2.02.24c.7.1.7.11.6.76-.07.36-.12.96-.12 1.34v.68l-1.14-.03a38.58 38.58 0 0 1-1.9-.1zm6.36 1.18c-.95-.27-1.3-.45-1.23-.62.05-.14.2-.78.31-1.43.17-.93.28-1.16.5-1.1 1.8.51 1.84.53 1.84.93 0 .22.05.9.12 1.51.06.63.04 1.11-.05 1.1-.09 0-.76-.18-1.49-.39zM46 48.75c-2.91-1.64-4.43-2.06-8.59-2.34l-1.95-.13V35.1l.82-3.52c2.3-9.8 3.24-12.28 5.08-13.32.9-.52 1.25-.6 3.4-.83 1.88-.2 5.16.02 7.33.47 1.62.33 2.75 1.08 4.92 3.25 1.84 1.85 2.49 2.97 3.25 5.66a22.9 22.9 0 0 1-.53 13.65 13.48 13.48 0 0 1-3.4 5.28c-2.16 2.15-3.75 3.12-5.82 3.58-2.44.54-2.6.52-4.5-.56zm4.82-2.88a8.78 8.78 0 0 0 4.23-3.25c1.9-2.5 2.78-4.93 3.14-8.6.24-2.42.06-4.01-.74-6.45-.94-2.89-2.07-4.56-3.72-5.53-1.71-1-5.73-1.58-8.24-1.19-1.7.27-2.3.59-2.73 1.43-.9 1.75-3.2 10.23-3.76 13.78-.2 1.25-.27 2.75-.23 4.8l.05 2.97 4.91 1.33c2.7.73 5.07 1.33 5.27 1.33s1.02-.27 1.81-.62zM18.19 49.4c-.95-.2-2.14-.55-2.64-.78-1.94-.9-5-3.7-6.16-5.63-1.14-1.9-2.18-5.88-2.41-9.2-.19-2.78.7-7.75 1.78-9.89.87-1.75 3.23-4.17 5.18-5.32 2.01-1.2 8.77-1.64 11.93-.78.4.1 1.08.52 1.52.93 1.52 1.4 2.34 3.7 4.24 11.92l.92 3.97v11.7l-.68.1c-4.1.62-8.75 1.88-10.81 2.93a4.8 4.8 0 0 1-1 .42c-.08 0-.92-.18-1.87-.37zm6.24-4.6c2.69-.75 4.93-1.4 4.99-1.46.21-.21.26-4.83.06-6.29-.42-3.1-2.9-12.68-3.86-14.92a2.11 2.11 0 0 0-1.23-1.3c-.76-.37-1.1-.41-3.48-.41-2.9 0-3.99.2-5.76 1.03-2.35 1.1-3.76 3.12-4.7 6.79-.44 1.67-.47 2.02-.37 4.36.06 1.6.24 3.11.47 4.06.68 2.82 3.13 6.8 4.83 7.86.98.6 3.74 1.79 3.97 1.7.1-.04 2.4-.68 5.08-1.43zm9.5-17.38a49.49 49.49 0 0 0-1.95-6.27c-.53-1.32-.7-2-.65-2.46.1-.7 1.22-2.83 2.24-4.24l.64-.88.6.97 1.14 1.88c1.05 1.7 1.08 2.04.35 3.85a54.72 54.72 0 0 0-1.97 6.7l-.26 1.08z"/></svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 68"><path fill="#fff" stroke="#000" d="M42 50.73c-.07 1.97.34 3.9.73 5.81l.36 1.64c.06.06.14.1.18.18.03.06-.05.16 0 .18.11.06.24 0 .37 0h7.63c.3 0 .61.03.91 0 .37-.03.73-.13 1.1-.18.11-.01.24.02.36 0 .24-.04.48-.14.72-.18.25-.03 1.09.05 1.28 0 .06-.01-.06-.18 0-.18s0 .24 0 .18v-2.36c0-.06.03-.13 0-.19-.1-.14-.27-.22-.37-.36-.03-.05 0-.12 0-.18-.12-.12-.27-.22-.36-.36-.03-.05 0-.12 0-.19v-1.09c0-.12.03-.24 0-.36-.03-.13-.15-.23-.18-.36-.03-.12.05-.26 0-.37-.03-.05-.19.06-.19 0 0-.05.6.12 0-.18-.05-.03-.13.04-.18 0-.04-.04-.06-.18 0-.18.12 0 .67.97 0-.37-.04-.07-.24-.12-.18-.18s.18.27.18.18a.97.97 0 0 0-.18-.54c-.03-.05-.12 0-.18 0h-.18c.12 0 .47.05.36 0-.22-.11-.49-.1-.73-.18l-.36-.18c-.55-.06-1.1-.1-1.64-.19-.19-.03-.35-.16-.54-.18-.36-.04-.73 0-1.1 0H48c-.18 0-.37.03-.55 0-1.78-.25.46-.18-1.63-.18-.93 0 .36.02-1.46-.18-.18-.02-.36 0-.54 0-.06 0-.13-.03-.18 0-.2.1-.35.27-.55.36-.35.16-.9.03-1.09.37-.16.28.31.58.36.9.02.09-.18.1-.18.19 0 .06.12 0 .18 0"/><path d="M24.85 39.73q-.39.7.19 1.28.58.57-.2 1.47-.7 1.02-2.62 2.75-1.85 1.73-3.2 2.3-2.17 1.29-4.48.2-1.15-.58-2.88-2.24-1.66-1.67-2.3-2.69-.77-1.02-.58-1.73.2-.7.07-1.66 0-.77-.39-1.09-.38-.38.39-2.5.77-1.92 3.26-6.33 2.5-4.42 3.2-6.53.7-1.92-.25-1.73-.9.13-.52-.9.39-1.15 1.41-3.07 1.03-1.98 1.86-2.94.9-.9 1.85-.7 1.03.12 1.8-1.16.7-1.21 1.34-3.77.7-2.56 1.47-4.67.96 1.98 2.05 3.77 1.09 1.8 2.24 2.24 2.88-1.09 6.91-.51 5.76.77 8.51 2.3 2.76 1.48 6.6 6.21 1.47 1.86 2.36 3.97.9 2.05 1.6 4.48.7 2.43 1.1 5.57.44 3.13.63 5.63 0 2.69-.19 5-.13 2.23 0 4.54v3.77q0 1.41.51 3.78.32 1.98 1.28 4.41.96 2.44 1.8 4.8h-40.2q-.83-1.66-.57-3.64 0-1.28.32-3.14t1.02-3.52q.58-1.47 1.54-2.82.96-1.4 2.04-2.68 2.05-3.2 3.84-5.12 1.54-1.73 3.33-3.27 1.86-1.6 3.4-3.45 1.27-1.86 1.72-3.4.32-1.02-.06-2.75-.39-1.79-.7-1.73-.26.13-1.03 2.37t-1.47 3.01q-.7 1.09-1.54 1.54-.77.38-1.34.76-.77.39-1.22.39-.38 0-.96.38-.7.51-1.66 1.35-.9.76-1.28 1.47zm-2.3 16.25q1.6.39 4.92.39 3.4-.07 4.48-.07l.13-3.2q-.96 0-3.97-.12-2.94-.13-4.29-.39zm21.56.52q2.05-.13 4.87-.39 2.88-.25 4.99-.38l-.64-3.27q-1.73.39-5.06.58-3.33.13-4.35.2zm-6.14-5.12-3.4 3.39 3.4 3.52 3.39-3.52zm-15.23-28.3q-.77-.12-2.5-.12-.45 0-.9.51-.38.51-.44.83v.9q.06.64.44.96.13.13 1.35.13.38-.07.96-.32.57-.32 1.09-.58 1.34-.7 1.34-1.21.13-.7-.32-.77-.38-.07-1.02-.32zm-12.16 13.7q1.08 1.1 1.08 2.3.07.26-.12 1.29-.2.96-.2 1.02.2.26 1.35-1.09 1.21-1.34 1.09-1.85 0-.39-1.28-1.09-1.28-.7-1.92-.58zm19.2-25.08q3.84.57 8 1.72 4.16 1.1 6.9 3.84 2.5 2.88 3.4 4.23.9 1.28 2.05 3.9.9 3.01 1.34 6.34.51 3.33.77 6.27.2 2.5.2 4.93 0 2.37 1.53 6.78-.2-3.26 0-6.01.25-2.82.13-5.83-.13-3.33-.84-7.49T51.8 24.3q-.96-2.36-2.56-4.41-1.53-2.05-3.45-4.16-1.73-1.86-3.78-2.69-2.05-.9-5.31-1.47-2.18-.45-3.65-.2-1.4.26-3.26.33z"/><path fill="#fff" fill-rule="evenodd" d="M23.78 56.16a3.2 3.2 0 0 1-.97-.24 5.6 5.6 0 0 1 .47-1.69l.6-1.57.57.11c.48.09 6.13.45 7.23.46.27 0 .32.19.32 1.26 0 1.98.3 1.84-3.8 1.81a60.94 60.94 0 0 1-4.42-.14zm12.5.35-1.64-1.64 1.68-1.68L38 51.51l1.63 1.63 1.63 1.62-1.51 1.64a17.3 17.3 0 0 1-1.68 1.69c-.1.03-.9-.68-1.8-1.58zm10.76-.3c.13-.05.37-.06.55 0s.07.08-.23.08c-.3 0-.44-.03-.32-.08zm6.16-9.16c-.43-1.57-.55-2.48-.68-5.18-.35-6.94-1.39-13.84-2.52-16.78a21.87 21.87 0 0 0-3.55-5.77c-2.28-2.81-3.94-4.14-6.49-5.19a52.99 52.99 0 0 0-7.56-2c-.73-.12-1.25-.3-1.17-.38s1.05-.2 2.15-.26c2.23-.12 4.37.22 7.42 1.2 2.82.91 4.37 2.18 7.58 6.22 2.7 3.38 3.77 5.8 4.6 10.33.99 5.37 1.19 9.44.86 17.09l-.11 2.63zM19.64 26.17c-.81-.23-.96-1.72-.26-2.56.43-.51.56-.56 1.59-.55 1.67 0 2.92.37 3 .88.09.6-.26.9-1.87 1.69-1.47.71-1.67.76-2.46.54zm-8.06 13.7c.09-1.53.06-1.68-.37-2.32-.38-.54-.41-.68-.18-.68.4 0 2.45 1.12 2.55 1.4.19.49-.16 1.16-1.1 2.19l-.98 1.05.09-1.64z"/></svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -3.0 68 68"><path d="M27.8 29.33q0-1.09.76-1.67.45-.19 1.86-1.79-2.24-1.02-3.72-3.07-1.4-2.11-1.4-4.8 0-3.58 2.56-6.08 2.62-2.56 6.08-2.56 3.52 0 6.01 2.56 2.56 2.5 2.56 6.08 0 2.69-1.47 4.8-1.4 2.05-3.58 3.07 1.34 1.6 1.85 1.8.64.57.64 1.66t-.64 1.73l-.77.76q1.16 2.82 2.18 5.5 1.02 2.7 1.98 4.8.77 1.93 2.12 2.5l1.4.58 2.76 1.66q2.75 1.67 3.26 3.01.45 1.28.58 3.71.19 2.37.32 5.06H14.86q0-2.69.13-5.06.13-2.43.64-3.7.39-1.35 3.2-3.02l2.82-1.66 1.34-.58q1.35-.57 2.18-2.5.9-2.1 1.98-4.8 1.09-2.68 2.18-5.5l-.77-.76q-.77-.64-.77-1.73zm5.94-3.01q-2.68 2.88-2.88 3.07.2.26 1.48 1.6 1.34 1.28 1.6 1.6.19-.32 1.47-1.6 1.34-1.34 1.73-1.6-.39-.19-1.86-1.6-1.4-1.47-1.54-1.47z"/><path fill="#fff" fill-rule="evenodd" d="m32.42 30.93-1.44-1.51 1.27-1.4a12.7 12.7 0 0 1 1.45-1.46c.1-.03.88.61 1.74 1.44l1.54 1.5-1.56 1.48-1.57 1.47z"/></svg>

After

Width:  |  Height:  |  Size: 883 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -2.0 68 68"><path d="m21.09 51.31-1.67 5.19 3.65-3.33zm25.09.13L44 53.3l3.26 2.75zM28 50.67l-2.62.64.32 2.88 2.62-.45zm14.14.64-2.56-.64-.5 3.07 2.49.32zM19.1 48.05 8.35 23.73q-1.4.38-2.3-.58l-1.41-1.53q-1.92-1.67 0-3.59l1.4-1.34q1.67-2.05 3.53 0l1.53 1.34q1.54 1.92 0 3.59l-.76.76 10.94 8.58-.96-13.82q-.83-.2-1.4-.77l-1.35-1.41q-1.99-1.8 0-3.52L18.9 9.9q1.8-1.66 3.59 0l1.53 1.54q1.54 1.73 0 3.52l-1.53 1.4 6.59 11.27L32.6 14.7l-.58-.32-1.4-1.53q-1.73-1.8 0-3.59l1.4-1.53q1.73-1.41 3.52 0l1.41 1.53q1.98 1.8 0 3.59l-1.4 1.53-.65.32 3.59 13.06 6.59-11.07-1.54-1.54q-1.53-1.85 0-3.71l1.41-1.4q1.86-1.54 3.65 0l1.4 1.4q1.86 1.86 0 3.71l-1.4 1.35-1.22.76-.77 13.57 11.27-9.98-.96-.77q-1.54-1.86 0-3.71l1.53-1.41q1.8-1.66 3.59 0l1.34 1.4q1.86 1.86 0 3.72l-1.34 1.34q-1.09 1.1-2.37.77l-11.2 26.3 3.07 12.49H14.62zm14.79.64-3.27 3.2 3.27 3.26 3.07-3.26zm-13.57-5.06 1.22 2.56q2.68-1.21 5.82-2.3 3.2-1.09 6.66-1.09 3.32 0 5.82.83t6.34 2.75l1.08-2.62q-3.45-1.92-6.52-2.88-3.08-.96-6.72-.96-3.59 0-7.3.96-3.65.9-6.4 2.75zM7.72 18.67 6.3 19.9l1.41 1.4 1.22-1.4zm13.05-6.78-1.35 1.28 1.35 1.34 1.28-1.34zm13.12-2.3-1.54 1.53 1.54 1.54 1.34-1.54zm12.93 2.3-1.41 1.4 1.4 1.41 1.22-1.4zm13.37 4.93-1.28 1.28 1.28 1.34 1.28-1.34z"/><path fill="#fff" fill-rule="evenodd" d="M19.75 55.86c0-.07.3-1.08.66-2.26l.66-2.14.98.84.97.84-1.5 1.4c-1.4 1.33-1.77 1.6-1.77 1.32zm5.91-2.73-.15-1.41c-.03-.3.18-.4 1.19-.66l1.22-.31.1.84.19 1.5.08.66-1.03.13c-.56.07-1.13.17-1.25.22-.16.06-.27-.23-.35-.97zm6.57.34-1.6-1.62 1.57-1.44a11 11 0 0 1 1.76-1.43c.1 0 .8.67 1.55 1.49l1.36 1.49-1.51 1.56-1.52 1.56zm7.65.37c-.77-.08-.77-.07-.47-1.85l.2-1.24 1.2.31c.82.21 1.2.4 1.18.57a35.11 35.11 0 0 1-.24 1.3c-.23 1.15-.12 1.1-1.87.91zm5.63.71-1.42-1.21.96-.85c.53-.47 1-.81 1.06-.76.15.15 1.05 4.07.93 4.05-.06 0-.75-.56-1.53-1.23zm-1.49-9.22c-4.42-2.15-8.09-2.9-11.98-2.46-2.57.29-4.2.73-7.63 2.1l-2.89 1.14-.53-1.17c-.4-.89-.48-1.24-.33-1.42.31-.38 3.03-1.66 4.6-2.17a29.02 29.02 0 0 1 12.1-1.12c2.7.4 4.49.98 7.43 2.39 2.29 1.1 2.4 1.17 2.25 1.57-.35.9-.92 2.15-.97 2.13-.03 0-.95-.45-2.05-.99zm15.47-26.67-.46-.59.58-.6.57-.59.6.57.58.57-.49.62c-.27.33-.58.6-.7.6s-.42-.26-.67-.58zm-13.38-4.77-.61-.64.62-.65.63-.64.6.65.6.65-.49.63c-.26.35-.54.63-.6.63-.08 0-.4-.28-.75-.63zm-12.96-2.06-.68-.69.74-.72.74-.71.6.72.62.73-.58.66c-.31.37-.61.68-.67.69-.05 0-.4-.3-.77-.68zm-13.08 1.89-.49-.6.59-.57.59-.57.57.57.57.58-.46.6c-.25.34-.55.6-.67.6-.11-.01-.43-.28-.7-.61zm-13.04 6.9-.62-.64.52-.55c.65-.67.8-.68 1.42-.03l.5.51-.6.68-.6.69z"/></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 68"><path d="m30.29 35.31 3.52 3.71 3.71-3.7-3.71-3.53zm18.17-10.3 2.44 19.52 2.81 6.01v12.93H14.16V50.54l2.62-6.01L19.22 25l-4.93-10.75 3.07-9.73H26v8.32h3.71V4.53h8.77v8.32h3.65V4.53h8.64l3.07 9.73zM19.1 46.38l-1.41 3.08H50l-1.54-3.08zM46.3 23.6H21.7l.58 2.94h23.68z"/><path fill="#fff" fill-rule="evenodd" d="M22.13 25.46c-.1-.57-.24-1.23-.29-1.45l-.08-.41h24.37v.61c0 .34-.06 1-.12 1.45l-.12.85H22.33zM32 37.08l-1.67-1.78 1.71-1.7 1.71-1.71.5.44a73.02 73.02 0 0 1 1.83 1.71l1.32 1.28-1.77 1.78a24.1 24.1 0 0 1-1.86 1.76c-.06 0-.85-.8-1.77-1.78zM18.2 48.46l.66-1.45.23-.5h29.4l.73 1.45.73 1.46H17.77z"/></svg>

After

Width:  |  Height:  |  Size: 668 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 68"><path d="M27.98 55.47q-2.75-.06-4.54-.06-1.8-.07-1.92-.26-.83-.77-.9-1.85-.06-1.1.77-1.8.07-.12 1.09-1.53 1.02-1.47 2.43-3.59-2.43-3.07-4.6-6.01-2.18-3.01-2.63-3.52-1.4-1.22-1.4-3.01 0-1.86 1.4-3.26.38-.39 2.3-2.95 1.99-2.56 4.23-5.57 2.3-3 4.22-5.56 1.99-2.63 2.24-2.88.26-.26.39-.45-.7-.77-1.48-1.47-.7-.7-.83-.96-2.05-1.8 0-3.59.2-.32 1.73-1.79 1.6-1.47 1.86-1.86 1.72-1.66 3.32 0l1.86 1.86q1.47 1.47 1.86 1.8 1.79 1.78 0 3.58l-1.03.96q-.77.7-1.4 1.47.06 0 .06.13.06.06.25.06.45.51 2.37 3.14 1.92 2.56 4.1 5.56 2.24 3.01 4.1 5.57 1.91 2.56 2.3 2.95 1.34 1.4 1.34 3.26 0 1.8-1.34 3-.45.52-2.56 3.4-2.05 2.82-4.35 5.89 1.6 2.11 2.68 3.71 1.16 1.54 1.35 1.66 1.73 1.8-.2 3.65-.12.2-2.1.26-1.93 0-4.8.06-.2 1.41-.13 1.41.32.32 2.17.32l4.1-.13q2.24-.07 4.29-.06 2.1-.07 2.94.19 2.11.7 2.94 3.26.84 2.5 1.41 4.87H40.78q-1.34 0-2.56-.07-1.15-.12-2.36-.7-1.16-.58-1.48-.83-.32-.32-.38-.7 0 .38-.26.7-.25.25-1.4.83-1.35.58-2.56.7-1.22.07-2.37.07H10.13q.7-2.37 1.66-4.87 1.03-2.56 3.14-3.26.77-.26 2.75-.2 2.05 0 4.16.07l3.9.13q1.8 0 2.12-.32.32-.2.19-.38-.07-.26-.07-1.03zm6.92-.13q0 3.97 1.08 5.06.58.83.58.96t.51.45q2.05.77 3.52.77h13.25q-.13-.32-.38-1.28t-1.16-1.35q-.7-.19-2.81-.13-2.05 0-4.35.13-2.3.07-4.3.07-1.91-.07-2.36-.52-1.09-.9-1.09-1.92 0-1.08.13-2.24zm-1.8 1.92q0-1.92-.06-1.92h-2.56q.06 1.16.06 2.18 0 .96-1.15 1.98-.45.45-2.37.52-1.92 0-4.22-.07-2.3-.13-4.42-.13-2.1-.06-2.81.13-.83.39-1.15 1.35-.32.96-.39 1.28h13.38q1.6 0 3.52-.77.57-.32.51-.45 0-.13.7-.96.96-1.22.96-3.14zm2.44-22.2v11.07h-2.95V35.06h-3.52V32.1h3.52v-4.29h2.95v4.3h3.52v2.94zm-6.92 11.32q-1.98 2.95-3.52 4.87l-1.53 1.92q.06.13 3.39.19t7.3.06q3.96 0 7.3-.06 3.38-.06 3.51-.2-.13-.06-1.79-2.04-1.6-1.98-3.71-5 2.62-3.64 5.25-7.22 2.68-3.59 3.2-4.16 1.08-.84 0-1.99-.52-.45-2.44-3-1.92-2.63-4.16-5.57-2.17-3.01-4.1-5.57-1.85-2.63-2.23-3.14-.45-.45-.96-.45-.7 0-1.03.45-.5.51-2.5 3.14-1.91 2.56-4.22 5.57-2.24 2.94-4.16 5.56-1.92 2.56-2.36 3.01-1.28 1.15 0 1.99.38.57 3.13 4.22 2.82 3.65 5.63 7.42zM34 5.62q-.26.38-1.6 1.72l-1.47 1.54q.19.38 1.47 1.73 1.34 1.28 1.6 1.47l1.54-1.47 1.72-1.73q-.38-.2-1.72-1.54Q34.19 6 34 5.62z"/><path fill="#fff" fill-rule="evenodd" d="M14.23 62.05c.31-1.03.63-1.59 1.06-1.87.41-.27 1.13-.3 6.88-.24 7.2.07 7.16.08 7.99-1.25.35-.57.42-.9.4-2l-.03-1.32h2.56L33 57.14c-.09 1.85-.18 2.12-1.12 3.53-1.11 1.67-1.8 1.78-10.54 1.79H14.1zm24.9.32A43.32 43.32 0 0 0 37.9 62c-.96-.26-1.1-.37-1.7-1.33a7.03 7.03 0 0 1-1.16-4.09v-1.22h2.36v1.4c0 1.63.34 2.37 1.31 2.9.55.3 1.11.33 7.07.27l6.47-.06.5.42c.26.24.6.82.74 1.3l.26.86-7.22-.02c-3.97 0-7.3-.04-7.4-.08zM24.8 53.23c-.57-.04-1.05-.12-1.05-.17s.48-.68 1.07-1.4a69.44 69.44 0 0 0 3.68-5.06c.12-.24-.75-1.5-4.02-5.82-2.3-3.03-4.42-5.82-4.72-6.18-.3-.37-.55-.76-.55-.87 0-.1.27-.5.6-.87.34-.38 1.62-2.04 2.86-3.69a710.68 710.68 0 0 1 9.93-13.02c.43-.51.93-.97 1.12-1.02.79-.2 1.33.36 4.69 4.95 5.1 6.97 8.46 11.45 9.31 12.42.75.86.97 1.61.56 1.87-.2.12-6.1 7.98-7.87 10.48-.52.74-.81 1.32-.73 1.46.44.76 2.55 3.57 3.77 5.02.78.93 1.37 1.75 1.3 1.82-.13.13-18.23.2-19.95.08zm10.73-12.56.05-5.5h3.45V32.1h-3.46v-4.36H32.5v4.36h-3.45v3.1h3.45v5.42c0 2.98.06 5.48.13 5.55.07.07.75.1 1.5.08l1.37-.06zm-3.12-30.22L31 9.01l.91-1.05c.5-.58 1.19-1.3 1.52-1.6l.6-.55 1.58 1.6 1.57 1.6-1.54 1.4c-.85.78-1.6 1.43-1.67 1.46s-.77-.6-1.55-1.4z"/></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 68"><path d="M39.6 57.14q-3.53 3.52-3.85 3.7-1.6 1.48-3.39 0-.38-.18-3.84-3.83l-4.48.25-3.97 4.36h27.84l-4.03-4.16zm6.01-5.06q-.96-.58-1.86-1.02-.9-.45-1.53-.84-1.28-.57-4.1-.76-2.75-.2-3.77-.26-.96.06-3.4.38-2.36.32-5.37 1.22-3.14 1.15-3.84 1.54l2.05 2.04 4.73-.32 3.84-4.03q1.73-1.6 3.4 0l4.03 4.03 3.9.32zm-25.4 2.88-.33 2.5 1.73-1.41zm0-5.18q.7-.39 1.72-.77 1.02-.45 2.75-.96 2.3-.77 4.35-1.15 2.12-.39 3.65-.52L32.55 35Q31.4 29.04 30 23.8q-1.4-5.25-3.9-6.01-2.88-.77-6.72-.45-3.78.32-5 .9-1.34.7-3.38 2.62Q9 22.7 8.23 25q-.83 2.43-1.08 4.35l-.32 3.14q0 2.5 1.08 7.1.64 2.3 1.73 3.97 1.15 1.66 3.33 3.39 1.92 1.66 3.71 2.18 1.8.44 3.52.64zm13.88-21.44q.58-2.7 1.22-5.12.7-2.5 1.66-4.42 0-.64-.58-1.8-.5-.95-1.15-1.78-.57-.84-1.02-1.8-1.6 2.18-2.3 3.59-.58 1.02-.71 1.47-.06.45-.06.83 1.72 3.52 2.94 9.03zm16.26 24.19 1.28 12.16H16.04l1.41-12.16q-1.54-.32-3.07-.96-1.54-.7-3.4-2.11-2.55-2.12-3.9-4.16-1.34-2.05-2.11-4.93-1.22-4.74-1.22-8 .07-1.35.32-3.52.32-2.18 1.41-4.93.9-2.88 3.46-5.25t4.22-3.07q1.47-.77 5.95-1.22 4.48-.44 7.75.45 1.53.64 1.98 1.22.77-1.35 1.8-2.82l2.04-2.88V9.26h-2.94V6.2h2.94V3.31h2.95V6.2h2.75v3.07h-2.75v1.1q.9 1.34 1.85 2.8 1.03 1.42 1.8 2.76.44-.32.89-.58.51-.25.96-.5 3.33-.9 7.74-.46 4.48.45 6.15 1.22 1.47.7 4.03 3.07 2.56 2.37 3.65 5.25.9 2.75 1.21 4.93.32 2.17.32 3.52.13 3.2-1.21 8-.77 2.88-2.11 4.93-1.28 2.04-3.9 4.16-1.93 1.53-3.53 2.24-1.6.64-3.13.83zm-16.13-.32-3.2 3.26 3.2 3.2 3.07-3.2zm13.25 2.3-1.54 1.22 1.86 1.73zm-12.04-8.13q1.6 0 4.16.26t3.84.83l2.05 1.03q1.15.57 2.3 1.28 1.73-.13 3.46-.58 1.8-.51 3.9-2.24 3.91-3.26 4.93-7.36 1.22-4.54 1.1-7.1 0-1.22-.26-3.14-.26-1.92-1.16-4.35-.83-2.3-2.88-4.16-2.04-1.92-3.26-2.63-1.34-.57-5-.9-3.64-.31-6.52.46-2.56.76-3.97 6.01-1.34 5.25-2.5 11.2z"/><path fill="#fff" fill-rule="evenodd" d="M22.03 59.55a68.95 68.95 0 0 1 2.04-2.15c.08-.06 1.1-.16 2.27-.21l2.12-.1 2 1.95c1.1 1.08 2.2 2.1 2.45 2.26.42.28.03.3-6.16.3h-6.6zm-1.97-2.96c.07-.4.12-.9.12-1.14v-.41l.65.48c.7.54.67.68-.34 1.4l-.54.38zM32.6 57l-1.5-1.5 1.6-1.58 1.59-1.58 1.48 1.6 1.5 1.6-1.5 1.49c-.82.81-1.53 1.48-1.58 1.48s-.77-.68-1.59-1.5zm2.8 4.2c.29-.2 1.35-1.2 2.35-2.18l1.83-1.8 2.08.13 2.08.12 1.79 1.75c.98.96 1.87 1.89 1.96 2.06.16.3-.19.32-6.22.32h-6.4zm11.39-4.74-.75-.77.7-.5.7-.5.13 1.19c.07.66.09 1.23.05 1.27s-.42-.27-.83-.69zm-5.64-2.3-1.32-.13-2.36-2.33-2.36-2.34 2.13.13c2.93.16 4.31.5 6.18 1.46.88.46 1.71.9 1.85 1 .2.13.07.39-.64 1.26-.99 1.22-.85 1.18-3.48.94zm-18.38-.8-.97-.98 1.34-.56a28.4 28.4 0 0 1 4.5-1.49c1.25-.32 4.6-.9 5.2-.91.1 0-.84 1.03-2.1 2.3L28.47 54l-1.82.15c-2.97.25-2.8.28-3.88-.8zM18.2 49.4c-.95-.2-2.14-.55-2.64-.78-1.94-.9-5-3.7-6.16-5.63-1.14-1.9-2.18-5.88-2.41-9.2-.19-2.78.7-7.75 1.78-9.88.87-1.75 3.23-4.17 5.18-5.33 2.02-1.2 8.74-1.63 11.96-.78 1.13.3 2.45 1.76 3.18 3.52.67 1.6 1.83 6.04 2.82 10.8l.65 3.13V46.3l-.68.1c-4.1.64-8.75 1.9-10.81 2.94a4.8 4.8 0 0 1-1 .42c-.08 0-.92-.18-1.87-.37zm27.8-.65c-2.91-1.64-4.44-2.06-8.58-2.33l-1.94-.13.1-5.67.1-5.66.71-3.36c1.96-9.23 3.1-12.29 4.97-13.35.9-.52 1.25-.6 3.4-.83 1.88-.2 5.16.02 7.33.47 1.62.33 2.75 1.08 4.92 3.25 1.84 1.85 2.49 2.97 3.25 5.66a22.9 22.9 0 0 1-.53 13.65 13.48 13.48 0 0 1-3.4 5.28c-2.16 2.15-3.75 3.12-5.82 3.58-2.44.54-2.6.52-4.5-.56zM33.93 27.42a49.49 49.49 0 0 0-1.95-6.27c-.53-1.32-.7-2-.65-2.46.1-.7 1.22-2.83 2.24-4.24l.64-.88.6.97 1.14 1.88c1.05 1.7 1.08 2.04.35 3.86a54.72 54.72 0 0 0-1.97 6.68l-.26 1.1z"/></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 68"><path d="M24.85 39.73q-.39.7.19 1.28.58.57-.2 1.47-.7 1.02-2.62 2.75-1.85 1.73-3.2 2.3-2.17 1.29-4.48.2-1.15-.58-2.88-2.24-1.66-1.67-2.3-2.69-.77-1.02-.58-1.73.2-.7.07-1.66 0-.77-.39-1.09-.38-.38.39-2.5.77-1.92 3.26-6.33 2.5-4.42 3.2-6.53.7-1.92-.25-1.73-.9.13-.52-.9.39-1.15 1.41-3.07 1.03-1.98 1.86-2.94.9-.9 1.85-.7 1.03.12 1.8-1.16.7-1.21 1.34-3.77.7-2.56 1.47-4.67.96 1.98 2.05 3.77 1.09 1.8 2.24 2.24 2.88-1.09 6.91-.51 5.76.77 8.51 2.3 2.76 1.48 6.6 6.21 1.47 1.86 2.36 3.97.9 2.05 1.6 4.48.7 2.43 1.1 5.57.44 3.13.63 5.63 0 2.69-.19 5-.13 2.23 0 4.54v3.77q0 1.41.51 3.78.32 1.98 1.28 4.41.96 2.44 1.8 4.8h-40.2q-.83-1.66-.57-3.64 0-1.28.32-3.14t1.02-3.52q.58-1.47 1.54-2.82.96-1.4 2.04-2.68 2.05-3.2 3.84-5.12 1.54-1.73 3.27-3.2 1.79-1.48 3.33-3.4 1.34-2.1 1.66-3.7.2-.97-.06-2.63-.2-1.73-.52-1.67-.25.13-1.02 2.37t-1.47 3.01q-.7 1.09-1.54 1.54-.77.38-1.34.76-.77.39-1.22.39-.38 0-.96.38-.7.51-1.66 1.35-.9.76-1.28 1.47zm2.62 7.49-3.84 5.24 8.45.64 3.84-4.03q1.92-1.92 3.9 0l4.1 4.16 9.4-.64q0-3.26.26-7.74.32-4.55.2-6.98-.13-2.5-.52-5.44-.32-3-1.02-5.18-1.28-4.29-3.65-7.43-1.4-1.53-2.62-2.75-1.15-1.21-2.95-2.62-2.1-.9-3.96-1.6-1.8-.7-3.9-.83-3.91-.45-6.6.57-2.11-.77-2.69-1.66-.51-.9-.83-1.86 0 2.75-1.4 4.48-.71.83-2 1.22-1.2.32-1.98 1.21-.83.96-1.66 2.5-.77 1.47-1.15 2.43-.2 1.09.64 1.09.83-.06.13 1.86-.7 1.98-3.27 6.52-2.5 4.48-3.2 6.4-.77 1.99-.32 1.92.51-.06.51.52 0 .57-.32 1.08-.25.45.32 1.1.58.82 2.12 2.3 1.53 1.4 2.36 1.85.77.45.96.45.2-.06 1.16-.64.76-.38 2.56-1.92t2.36-2.37q.7-.9.07-1.28-.58-.45-.2-1.15.39-.77 1.6-1.92 1.22-1.22 1.93-1.8.76-.57 1.28-.5.57 0 1.15-.39t1.09-.51q.5-.2 1.08-.9.45-.64 1.1-1.98.7-1.4 1.08-2.5.2-.9.45-1.66.32-.83 0-1.54-.51-.76-2.11-1.66-1.6-.9-1.41-1.28.06-.32 1.79-.32t2.82.77q.76.77 1.79 2.5t1.4 3.07q1.1 3.2.52 5.37-.51 2.3-2.37 4.48-1.28 1.99-3 3.59t-3.46 3.32q-1.41 1.41-1.99 2.44zm-5.05 8.5q-.39 1.35-.64 3.02t.32 2.81h33.2l-1.66-5.7-9.73.65-4.1 4.1q-1.98 1.72-3.9 0l-3.97-4.3zm15.55-4.34-3.4 3.39 3.4 3.52 3.39-3.52zm-15.23-28.3q.64.26 1.02.33.45.06.32.77 0 .25-.58.44-.5.13-.96.32-.44.26-1.08.45-.58.2-.77.32-1.09.32-1.54-.19-.25-.26-.25-1.22.06-.32.44-.83.45-.51.9-.51 1.73 0 2.5.13zm-10.3 14.28q.57 0 1.34.2.76.18.96.57 0 .51-.84 1.47-.83.9-1.21.7 0-.19.13-.57.12-.39.06-.77 0-.96-.45-1.6z"/><g fill="#fff" fill-rule="evenodd"><path d="M22 61.13c-.27-.69-.22-2.15.12-3.85l.3-1.5 1.2.1c1.91.15 6.95.45 7.65.45.59 0 .81.2 2.73 2.3 1.36 1.49 2.34 2.4 2.82 2.63.72.33.65.33-6.96.34h-7.69zm16.9.16c.36-.17 1.67-1.3 2.92-2.52l2.27-2.21 4.7-.3c2.6-.17 4.74-.28 4.78-.24.06.06.6 1.84 1.4 4.63l.28.95h-8.49c-8.1 0-8.46-.02-7.85-.31zm-2.63-4.78-1.63-1.64 1.68-1.68L38 51.51l1.63 1.63 1.63 1.62-1.51 1.64a17.3 17.3 0 0 1-1.68 1.69c-.1.03-.9-.68-1.8-1.58z"/><path d="M41.89 51.14c-2.68-2.88-3.76-3.45-5.15-2.73a22 22 0 0 0-2.58 2.47l-2.08 2.2-4.08-.3a97.38 97.38 0 0 1-4.15-.37c-.03-.03.94-1.43 2.16-3.11a49.32 49.32 0 0 1 5.61-6.52c5.6-5.7 7.13-8.3 6.87-11.63-.23-2.92-2.3-7.42-4.03-8.74-.72-.55-2.38-.88-3.58-.72-1.34.19-1.19.58.71 1.85 2.03 1.35 2.2 1.68 1.76 3.31a24.19 24.19 0 0 1-2.13 5.11c-.5.84-.8 1.11-1.86 1.68a6.1 6.1 0 0 1-1.72.68c-.62.01-1.31.47-2.8 1.85-1.3 1.18-2.3 2.53-2.3 3.08 0 .17.13.4.28.53.71.6 0 1.66-2.55 3.79-.93.78-2.11 1.64-2.61 1.91l-.92.5-.69-.36a20.63 20.63 0 0 1-4.22-3.68c-.78-.98-.86-1.28-.55-2.08.22-.58.07-1.17-.3-1.17a.27.27 0 0 1-.25-.27c0-.8 1.64-4.28 4.37-9.27 1.73-3.16 2.74-5.48 2.78-6.35.03-.63-.03-.73-.43-.83-.71-.18-.66-.86.2-2.58 1.5-2.98 2.4-3.99 4.18-4.61a5.97 5.97 0 0 0 1.37-.73c.72-.54 1.65-2.39 1.81-3.59l.12-.87.36.69c.53 1 1.01 1.46 2.06 1.95.93.44.94.44 2 .13.82-.23 1.74-.3 3.72-.28 3.12.02 4.2.24 7.44 1.52a10.2 10.2 0 0 1 3.75 2.15c2.84 2.42 5.34 5.58 6.47 8.16 2.34 5.36 3.12 11.52 2.62 20.9-.15 2.89-.28 5.8-.28 6.46v1.22l-.59.1c-.32.05-2.02.17-3.77.28s-3.6.23-4.11.29l-.93.1zM13.98 39.5c.93-1.01.96-1.47.12-1.83a3.76 3.76 0 0 0-1.2-.26c-.51 0-.53.02-.33.4.12.23.21.88.2 1.46 0 1.3.2 1.33 1.2.23zm8.2-14.32c1.71-.7 1.91-.82 1.91-1.23 0-.6-.94-.91-2.87-.96-1.36-.04-1.45-.01-1.87.47-.6.69-.61 1.8-.04 2.21.57.4.73.37 2.87-.5z"/></g></svg>

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -3.0 68 68"><path d="M23 44.75q1.34-.64 2.17-2.5.9-2.17 1.98-4.86 1.09-2.75 2.18-5.63-.26-.2-.51-.32-.2-.13-.26-.26-1.8-1.98 0-3.39l.7-.7 1.16-1.15q-2.24-1.03-3.72-3.14-1.4-2.18-1.4-4.74 0-3.52 2.56-6.14 2.62-2.62 6.08-2.62 3.52 0 6.01 2.62 2.56 2.62 2.56 6.14 0 2.56-1.47 4.74-1.4 2.11-3.58 3.14.57.57 1.08 1.15.52.51.77.7 1.6 1.41 0 3.4-.13.12-.38.25-.2.13-.39.32 1.16 2.88 2.18 5.63 1.02 2.69 1.98 4.87.77 1.85 2.12 2.5 1.4.57 4.16 2.23 2.75 1.6 3.26 2.95.45 1.28.58 3.7.19 2.44.32 5.06H14.86q0-2.62.13-5.05t.64-3.71q.39-1.35 3.2-2.95 2.82-1.66 4.16-2.24zm10.74-18.5q0 .13-1.34 1.54l-1.54 1.54q.2.38 1.48 1.73 1.34 1.28 1.6 1.47l1.47-1.47 1.73-1.73q-.39-.2-1.86-1.54zm5.7-8.31q0-2.3-1.6-3.9-1.6-1.67-3.9-1.67-2.24 0-3.9 1.73-1.67 1.66-1.67 3.96 0 2.12 1.34 3.65t3.27 1.73q.9.58 1.85 0 1.92-.2 3.27-1.73 1.34-1.53 1.34-3.77zm-21.06 32.9q-.44 1.98-.44 4.8h32q0-2.31-.45-4.8-.39-.78-2.37-1.67-1.98-.96-4.03-1.92-1.99-1.03-3.14-3.9-.96-1.93-1.92-4.3-.9-2.36-1.79-4.8-.26.13-.38.33-.13.12-.26.12-1.66 2.05-3.4 0-.12 0-.25-.12-.13-.2-.32-.32-.96 2.43-1.92 4.8-.9 2.36-1.79 4.28-1.15 2.88-3.2 3.9-2.05.97-4.03 1.93-1.99.9-2.3 1.66z"/><path fill="#fff" fill-rule="evenodd" d="M17.95 55.14c0-1.02.4-4 .59-4.35.3-.59.58-.76 3.89-2.39 2.48-1.23 3.27-1.7 3.88-2.37.92-1 2.15-3.54 4.02-8.29l1.33-3.4.46.42c1.37 1.25 1.98 1.31 3.2.3l.89-.73.22.59c1.24 3.3 2.8 7.07 3.53 8.56 1.3 2.67 1.83 3.14 5.53 4.94 1.7.83 3.28 1.7 3.5 1.95.44.46.63 1.36.86 3.91l.12 1.32H17.95zm14.42-24.2a8.62 8.62 0 0 1-1.33-1.6c0-.11.6-.8 1.34-1.54 1.55-1.54 1.28-1.57 3.34.37l1.28 1.2-1.49 1.48c-.81.81-1.55 1.48-1.64 1.48-.1 0-.76-.63-1.5-1.4zm-.22-7.74c-3.73-1.15-4.9-5.87-2.2-8.94a4.7 4.7 0 0 1 3.66-1.72c1.76-.1 2.77.24 3.93 1.3a5.66 5.66 0 0 1 .86 7.34 5.28 5.28 0 0 1-3.22 2.16c-1.22.32-1.6.3-3.03-.14z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -2.0 68 68"><path d="m21.088 51.312-1.664 5.184 3.648-3.328zm25.088.128L44 53.296l3.264 2.752zm-17.728 2.176-2.752.576-3.392 4.16h22.464q-.704-.64-3.392-4.16l-2.304-.448-3.52 3.52q-1.792 1.792-3.52 0zm-9.344-5.568q-2.816-6.08-5.504-12.16-2.624-6.144-5.248-12.16-1.408.384-2.304-.576L4.64 21.616q-1.92-1.664 0-3.584l1.408-1.344q1.664-2.048 3.52 0l1.536 1.344q1.536 1.92 0 3.584l-.768.768L21.28 30.96l-.96-13.824q-.832-.192-1.408-.768l-1.344-1.408q-1.984-1.792 0-3.52l1.344-1.536q1.792-1.664 3.584 0l1.536 1.536q1.536 1.728 0 3.52l-1.536 1.408 6.592 11.264 3.52-12.928q.192 0-.576-.32l-1.408-1.536q-1.728-1.792 0-3.584l1.408-1.536q1.728-1.408 3.52 0l1.408 1.536q1.984 1.792 0 3.584l-1.408 1.536q-.32.32-.64.32l3.584 13.056 6.592-11.072-1.536-1.536q-1.536-1.856 0-3.712l1.408-1.408q1.856-1.536 3.648 0l1.408 1.408q1.856 1.856 0 3.712l-1.408 1.344-1.216.768-.768 13.568 11.264-9.984-.96-.768q-1.536-1.856 0-3.712l1.536-1.408q1.792-1.664 3.584 0l1.344 1.408q1.856 1.856 0 3.712l-1.344 1.344q-1.088 1.088-2.368.768l-11.2 26.304 3.072 12.48H14.624zm0-7.36q6.592-3.84 14.912-3.84 7.552 0 14.336 4.16l5.376-12.352-9.216 6.848-.64-10.816-6.336 7.872-3.648-10.624-4.352 10.624-5.696-7.872-.512 10.816-9.28-6.208zm14.784 8-3.264 3.2 3.264 3.264 3.072-3.264zM20.32 43.632q.32.704.64 1.344.384.64.576 1.216 2.688-1.216 5.824-2.304 3.2-1.088 6.656-1.088 3.328 0 5.824.832t6.336 2.752l1.088-2.624q-3.456-1.92-6.528-2.88-3.072-.96-6.72-.96-3.584 0-7.296.96-3.648.896-6.4 2.752zM7.84 18.8l-1.024 1.088 1.024 1.088 1.088-1.088zm12.928-6.72-1.088 1.088 1.088 1.024 1.088-1.024zm13.12-2.048L32.8 11.12l1.088 1.088.896-1.088zm12.928 2.176-1.088 1.088 1.088 1.088 1.024-1.088zm13.376 4.928-1.088 1.088 1.088 1.088 1.088-1.088zM44.32 49.008q-3.008-1.6-5.184-2.432-2.112-.832-5.12-.832t-5.888 1.088q-2.88 1.024-5.184 2.176l2.304 2.304 2.944-.64 3.84-4.16q1.728-1.408 3.52 0l4.032 4.16 2.56.64z"/><g fill="#fff" fill-rule="evenodd"><path d="M19.748 55.859c0-.065.298-1.082.663-2.26l.663-2.144.974.841.974.841-1.5 1.41c-1.409 1.324-1.774 1.594-1.774 1.312zm3.069 1.981a74.71 74.71 0 0 1 1.634-2.043l1.268-1.543 1.333-.295 1.332-.294 2.289 2.246c2.102 2.064 2.343 2.246 2.966 2.246.978 0 1.254-.188 3.473-2.37l2-1.968 1.112.214c1.1.213 1.128.234 2.252 1.67.627.8 1.39 1.72 1.696 2.045l.556.591H22.45z"/><path d="m32.233 53.465-1.607-1.618 1.569-1.436c.862-.79 1.656-1.435 1.764-1.435s.807.67 1.554 1.491l1.357 1.492-1.515 1.562-1.516 1.563zm13.279 1.088-1.418-1.214.958-.853c.527-.47 1.002-.811 1.055-.759.151.151 1.052 4.068.931 4.054-.06-.008-.746-.56-1.526-1.228zm-4.822-3.632c-1.117-.28-1.2-.343-3.134-2.41-1.093-1.169-2.254-2.256-2.58-2.417l-.592-.292.546.002c.975.004 3.245.486 4.454.945.99.377 4.486 2.04 4.703 2.238.113.104-1.873 2.254-2.066 2.237-.1-.01-.699-.145-1.33-.303zm-16.477-.751c-.594-.602-1.044-1.127-1-1.166.197-.178 1.391-.725 3.213-1.47 2.043-.838 4.204-1.449 5.777-1.634l.909-.108-.546.336c-.3.186-1.42 1.276-2.49 2.425-1.88 2.019-1.978 2.095-3 2.316-.58.126-1.219.266-1.419.312-.263.06-.664-.221-1.444-1.011z"/><path d="M44.02 45.334c-4.423-2.152-8.085-2.907-11.985-2.468-2.56.288-4.195.738-7.604 2.09L21.57 46.09l-.549-1.173c-.403-.862-.497-1.235-.354-1.408.31-.372 3.041-1.657 4.59-2.157 3.73-1.206 8.52-1.649 12.102-1.119 2.695.399 4.49.974 7.436 2.383 2.286 1.094 2.4 1.174 2.244 1.574-.352.901-.916 2.148-.965 2.132-.029-.008-.952-.453-2.052-.989z"/><path d="M46.203 39.811a28.308 28.308 0 0 0-7-2.504c-2.205-.472-8.862-.476-11.091-.006-2.449.517-5.027 1.366-7.075 2.33-1.041.491-1.92.866-1.951.834-.128-.127-4.787-10.737-4.738-10.786.03-.03 2.034 1.266 4.455 2.878 2.42 1.612 4.442 2.892 4.49 2.843.05-.049.201-2.356.339-5.126s.285-5.074.33-5.118c.044-.044 1.294 1.592 2.778 3.636 1.484 2.045 2.755 3.682 2.825 3.639s1.06-2.366 2.2-5.163c1.14-2.796 2.126-4.988 2.19-4.87.063.118.878 2.444 1.812 5.17s1.753 4.935 1.82 4.91c.068-.027 1.442-1.684 3.054-3.684s2.996-3.658 3.073-3.685c.078-.026.272 2.249.431 5.056.16 2.807.336 5.15.393 5.206.056.057 2.044-1.337 4.417-3.097s4.35-3.165 4.393-3.122c.096.095-4.926 11.728-5.055 11.708-.05-.008-.99-.48-2.09-1.049zM7.327 20.375l-.49-.512.512-.49.511-.49.49.512.49.511-.511.49-.512.49zm12.909-6.727-.49-.512.512-.49.511-.49.49.511.49.512-.511.49-.511.49zm13.088-2.005-.487-.507.513-.491.513-.491.412.439c.327.348.374.512.226.79-.398.743-.66.8-1.177.26zm13.003 2.277c-.5-.533-.498-.696.024-1.185.53-.499.525-.5.988.127l.386.522-.5.48-.5.48zm13.364 4.818-.49-.511.511-.49.512-.49.49.511.49.512-.511.49-.512.49z"/></g></svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 68"><path d="m48.46 25 2.44 19.53 2.62 6.01v12.93H14.16V50.54l2.62-6.01L19.22 25l-4.93-10.75 3.07-9.73H26v8.32h3.71V4.53h8.77v8.32h3.65V4.53h8.64l3.07 9.73zM16.91 52.2v8.65H50.9V52.2zm.77-2.74H50l-1.4-3.4H19.08zm17.86-19.52 4.16 4.16h7.23l-.96-7.88h-24l-1.03 7.88h6.92l4.41-4.16q1.41-1.8 3.27 0zm-7.36 6.9h-7.56l-.96 6.8h28.36l-.77-6.8H39.5l-3.96 3.98q-1.86 1.85-3.27 0zM17.04 14.07l4.67 9.54H46.3l4.8-9.54-2.18-6.9h-4.16v8.44h-8.9V7.15h-3.58v8.45h-8.9V7.15h-4.03zm13.25 21.25 3.52 3.71 3.71-3.7-3.71-3.53z"/><g fill="#fff" fill-rule="evenodd"><path d="M17.04 56.6v-4.27h33.81v8.54H17.04zm1.11-8.14.67-1.63.27-.69h29.49l.67 1.64.67 1.64H17.77zm1.61-5.03c0-.08.2-1.57.46-3.28l.45-3.2c0-.04 1.7-.08 3.75-.08h3.76l2.5 2.46c2.65 2.6 2.9 2.75 3.96 2.2a28.4 28.4 0 0 0 2.67-2.46l2.18-2.2h3.86c2.97 0 3.87.06 3.87.23 0 .13.16 1.58.36 3.23l.36 3.13c0 .08-6.34.14-14.09.14-8.3 0-14.09-.07-14.09-.17z"/><path d="m32 37.08-1.67-1.78 1.71-1.7 1.71-1.71.5.44a73.02 73.02 0 0 1 1.83 1.71l1.32 1.28-1.77 1.78a24.1 24.1 0 0 1-1.86 1.76c-.06 0-.85-.8-1.77-1.78z"/><path d="M21.1 33.37a185.6 185.6 0 0 0 .5-3.82l.4-3.22h11.97c6.59 0 11.98.04 11.98.1 0 .2.72 6.17.83 6.85l.1.68h-7.21l-1.91-1.93c-2.38-2.4-3.14-2.98-3.94-2.98-.67 0-.94.22-4.26 3.4l-1.57 1.51h-7zm-1.68-14.54-2.32-4.78 1.12-3.36 1.12-3.36 2.03-.05 2.03-.06v8.38h8.9V7.24h3.46v8.36h9.1V7.22l2.02.06 2.03.05 1.05 3.34L51 14.01l-2.4 4.8-2.39 4.79H21.75l-2.33-4.77z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="-657.83" x2="-639.01" y1="113.63" y2="113.63" gradientTransform="matrix(1.2079 0 0 1.0576 808.26 -95.25)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#c23014"/><stop offset="1" stop-color="#171717"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-49.25" x2="-22.4" y1="508.57" y2="508.57" gradientTransform="translate(60.83 -468.14)" gradientUnits="userSpaceOnUse"/></defs><ellipse cx="24.7" cy="9.25" fill="#cbbc87" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" rx="2.51" ry="2.52"/><path d="M24.7 6.73a2.51 2.52 0 0 0-.88.16 2.51 2.52 0 0 1 1.64 2.36 2.51 2.52 0 0 1-1.63 2.36 2.51 2.52 0 0 0 .87.17 2.51 2.52 0 0 0 2.52-2.53 2.51 2.52 0 0 0-2.52-2.52z" opacity=".2"/><path fill="url(#b)" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M18.77 38.05S5.31 12.25 25 11.83c19.7.42 6.23 26.22 6.23 26.22z"/><path d="M24.7 11.83c-.57.01-1.12.05-1.64.1 16.23-.58 9.83 22.9.91 26.12h7.26c8.96-17.77 5.67-25.5-6.53-26.22z" opacity=".2"/><path fill="url(#c)" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M25 36.46s-8.58.04-10.98 1.62c-1.63 1.06-2 3.65-1.79 6.32h25.54c.22-2.67-.16-5.26-1.79-6.32C33.58 36.5 25 36.46 25 36.46z"/><path d="M25 36.46s-8.58.04-10.98 1.62c-1.63 1.06-2 2.59-1.79 5.26h.09c.22-1.38.75-2.53 1.7-3.15C16.42 38.62 25 38.57 25 38.57s8.58.05 10.98 1.62c.95.62 1.48 1.77 1.7 3.15h.09c.22-2.67-.16-4.2-1.79-5.26C33.58 36.5 25 36.46 25 36.46z" opacity=".2"/><path fill="#fff" d="M17.74 34.2s-4.68-15.8 2.74-21.09c-5.12 1.02-7.9 8.9-2.74 21.1z" opacity=".25"/><path fill="#fff" d="M24.54 7.34a1.93 1.93 0 0 0-1.07 3.4c-.42-1.5-.13-2.65 1.07-3.4z"/></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="-634.64" x2="-621.56" y1="80.576" y2="80.576" gradientTransform="matrix(.80851 0 0 1.0928 532.83 -78.564)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#c23014"/><stop offset="1" stop-color="#171717"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-643.74" x2="-612.47" y1="96.732" y2="96.732" gradientTransform="translate(653.11 -70.509)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="d" x1="-14.174" x2="12.677" y1="509.16" y2="509.16" gradientTransform="translate(25.749 -468.73)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M22.968 12.421h5.472m-3.437-9.229s-3.762 4.102-3.79 6.018a3.787 3.787 0 0 0 1.755 3.21h-1.405c-.756 0-1.364.793-1.364 1.776 0 .984.608 1.775 1.364 1.775h6.877c.755 0 1.364-.791 1.364-1.775 0-.983-.609-1.775-1.364-1.775h-1.403a3.788 3.788 0 0 0 1.755-3.211c-.027-1.916-3.79-6.018-3.79-6.018z"/><path d="M25.003 3.192s.524-.633 0 0c.066 3.234 4.215 6.946.186 9.943h1.402c.756 0 1.364.078 1.364 1.061 0 .984-.608 1.775-1.364 1.775h-1.564c-.297.107-.616.19-.948.246.297.05.606.08.924.08.673 0 1.31-.124 1.873-.326h1.564c.756 0 1.364-.791 1.364-1.775 0-.983-.617-1.925-1.364-1.775l-1.402.282c1.09-.688 1.753-2.175 1.754-3.493-.027-1.916-3.789-6.018-3.789-6.018z" opacity=".2"/><path fill="url(#c)" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M39.886 20.265C38.504 17.129 32.506 14.93 25 14.93c-7.505 0-13.504 2.199-14.886 5.335-1.382 3.136 7.614 17.25 7.614 17.25h14.543s8.997-14.114 7.615-17.25z"/><path d="M27.739 14.984c14.749 4.252 2.27 21.326-4.162 22.462l8.694.07s8.997-15.193 7.615-18.33c-1.04-2.7-6.29-4.03-12.147-4.202z" opacity=".2"/><path fill="url(#d)" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.22-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z"/><path d="M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.769 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z" opacity=".2"/><path fill="#fff" d="M23.97 15.595c-3.885-.253-14.106 1.842-13.321 6.24.817 3.728 2.918 7.08 4.672 10.341-5.153-10.335-5.764-14.834 8.649-16.58zM25.106 4.052c-1.728 1.838-2.562 3.24-3.052 4.234-.402.816-.33 1.15-.231 1.61.17.793.742 1.419.913 1.547-.825-.745-.854-3.977 2.365-7.414m-4.34 10.526s-.193-1.374.76-1.432c.953-.059 2.993 0 2.993 0s-3.127-.176-3.753 1.432z" opacity=".25"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="-523.92" x2="-501.54" y1="113.91" y2="113.91" gradientTransform="matrix(1.1144 0 0 1.1133 595.36 -102.86)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#c23014"/><stop offset="1" stop-color="#171717"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-69.74" x2="-42.89" y1="523.66" y2="523.66" gradientTransform="translate(81.39 -483.23)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M14.98 8.72s-.13 0-.3.05c-.49 0-.01.88-.49.89l-2.1.3s1.84 3.84 1.84 4.55-1.24 1.74-1.24 1.74v12.1l2.56 2.15 4.11-.92-1.58-2.31 5.62-4.9c2.67 12.99-10.5 4.92-9.05 17H35.8c0-.23-1.72-2.69-.8-7.18 3.42-21.95-3.9-24.57-19.99-23.42a18.14 18.14 0 0 0-.04-.04z"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".8" d="M14.91 17.62A1.46 1.38 0 0 0 16.37 19a1.46 1.38 0 0 0 1.47-1.38 1.46 1.38 0 0 0-1.47-1.38 1.46 1.38 0 0 0-1.46 1.38zm4.76-1.38h-3.3" opacity=".4" paint-order="stroke fill markers"/><ellipse cx="-14.31" cy="27.33" opacity=".4" paint-order="stroke fill markers" rx=".79" ry=".71" transform="scale(-1 1)"/><ellipse cx="-16.35" cy="17.63" opacity=".4" paint-order="stroke fill markers" rx=".41" ry=".42" transform="scale(-1 1)"/><path d="M35.8 38.82c.07.02-1.7-1.84-.78-6.63 2.5-17.95-.15-23.72-14.97-23.64a65 65 0 0 0-5.07.18c.04.04 1.5 1.25 1.86 1.73l.12-.01 2.44 2.63s-1.34-2.1.2-2.48c21.37-3.2 15.8 28.43 2.53 28.16" opacity=".2"/><path fill="#a32b15" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M17.17 13.34c3.4-3.24-2.5-6.17-2.5-6.17l.1 4.98"/><path fill="#f6f1a7" stroke="#000" stroke-linejoin="round" stroke-width=".8" d="m16.64 30.19.03-2.15" opacity=".4"/><path fill="url(#c)" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M25.08 36.46s-8.58.04-10.99 1.62c-1.62 1.06-2 3.65-1.78 6.32h25.53c.22-2.67-.16-5.26-1.78-6.32-2.4-1.57-10.98-1.62-10.98-1.62z"/><path d="M25.08 36.46s-8.58.04-10.99 1.62c-1.62 1.06-2 2.59-1.78 5.26h.08c.23-1.38.75-2.53 1.7-3.15 2.4-1.57 10.99-1.62 10.99-1.62s8.58.05 10.98 1.62c.95.62 1.47 1.77 1.7 3.15h.08c.22-2.67-.16-4.2-1.78-5.26-2.4-1.57-10.98-1.62-10.98-1.62z" opacity=".2"/><path stroke="#000" stroke-width=".26" d="M22.92 14.92c7.74 3.86-5.12 12.36-5.14 12.35l1.58 2.3-4.1.93.33-2.86c.02 0 12.54-8.59 7.33-12.72" opacity=".2"/><path fill="#fff" d="M13.3 28.08V16.51c1.94-1.66 1.38-2.24-.3-6.05 2.9 4.27 3.05 3.66 1.11 6.48zm1.62 8.94c-.2-6.97 10.54-3.13 9.41-12.98 2.12 9.64-8.71 7.49-9.41 12.98z" opacity=".25"/></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient id="a"><stop offset="0" stop-color="#c23014"/><stop offset="1" stop-color="#171717"/></linearGradient><linearGradient xlink:href="#a" id="b" x1="-144.63" x2="-118.08" y1="495" y2="495" gradientTransform="matrix(.93894 0 0 .97636 148.33 -447.95)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="c" x1="1247.8" x2="1265.1" y1="1156.6" y2="1156.6" gradientTransform="matrix(.99908 0 0 1.0007 -1230.3 -1137)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M22.1 26.3c-.93 11.62-9 8.67-9 18.1h23.8c0-9.43-8.07-6.48-9-18.1H25z"/><path d="M23.92 26.3c.93 11.62 9 8.67 9 18.1h3.98c0-9.43-8.07-6.48-9-18.1H25z" opacity=".2"/><path fill="#fff" d="M13.75 43.78c.02-7.22 6.58-6.13 8.6-14.76.06 8.34-7.06 7.44-8.6 14.76z" opacity=".25"/><path fill="url(#c)" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M25 12.6c-3.42 0-6.2 2.63-6.2 5.87a5.79 5.79 0 0 0 2.73 4.86l-4.57 5.04h16.08l-4.57-5.04a5.8 5.8 0 0 0 2.73-4.86c0-3.24-2.78-5.87-6.2-5.87z"/><path fill="#fff" d="M22.9 13.56c-.84.21-5.47 2.94-2.57 7.82 0 0-1.15-4.16 2.58-7.82z" opacity=".25"/><path d="M25 12.6a6.5 6.5 0 0 0-1.5.17c2.7.64 4.69 2.95 4.69 5.7a5.8 5.8 0 0 1-2.73 4.86l4.58 5.04h3l-4.57-5.04a5.79 5.79 0 0 0 2.73-4.86c0-3.24-2.78-5.87-6.2-5.87z" opacity=".2"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient id="a"><stop offset="0" stop-color="#c23014"/><stop offset="1" stop-color="#171717"/></linearGradient><linearGradient xlink:href="#a" id="b" x1="362.07" x2="371.04" y1="-82.569" y2="-82.569" gradientTransform="matrix(.87923 0 0 .85197 -297.28 78.005)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="c" x1="-491.54" x2="-471.01" y1="249.26" y2="249.26" gradientTransform="matrix(1.0387 0 0 .99256 524.95 -231.03)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="d" x1="-1890.6" x2="-1767.4" y1="1054.4" y2="1054.4" gradientTransform="matrix(.29405 0 0 .26262 562.83 -250.81)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="e" x1="-20.75" x2="6.102" y1="544.53" y2="544.53" gradientTransform="translate(32.324 -504.1)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" d="M25.002 4.677a2.981 3.417 90 0 0-3.417 2.982 2.981 3.417 90 0 0 3.417 2.98 2.981 3.417 90 0 0 3.417-2.98 2.981 3.417 90 0 0-3.417-2.982z"/><path fill="url(#c)" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" d="M25.002 10.639c-6.8 0-10.027 6.96-10.027 11.468h20.13c0-4.508-3.303-11.468-10.103-11.468z"/><path fill="#fff" d="M16.397 17.927c1.044-2.713 3.664-6.797 8.65-6.697-1.13-.17-7.652 3.63-8.65 6.697z" opacity=".25"/><path d="M24.874 4.59s.048.24 0 0c2.591 1.137 1.924 4.305.636 6.017 7.684 3.833 3.915 11.115 3.914 11.114h2.823c1.793 1.568 5.811-5.135-5.61-11.115 3.926-3.048.464-6.191-1.763-6.017z" opacity=".2"/><path fill="url(#d)" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M25 14.657c-3.446 1.605-4.22 3.87-5.534 6.806-5.438-4.847-11.9-4.084-11.9-4.084 10.546 11.903 9.202 21.195 9.202 21.195h16.464s-1.344-9.293 9.203-21.195c0 0-6.463-.763-11.902 4.084-1.314-2.937-2.087-5.2-5.533-6.806z"/><path fill="#111" d="M40.566 17.38c-11.59 10.231-7.477 17.283-16.618 21.194h9.285s-1.344-9.293 9.202-21.195c-1.223-.082-.614-.049-1.869 0z" opacity=".2"/><path fill="#fff" d="M24.796 5.326c-.612-.182-3.779 1.09-2.135 3.638-.406-1.456.437-3.272 2.135-3.638zM8.874 17.955c3.715 4.32 7.138 10.199 8.069 15.288-.368-5.503-3.972-12.467-7.24-15.232-.434-.093-.829-.056-.829-.056zM20.081 21.702c1.027-2.684 5.547-5.794 4.893-6.364-1.68.591-3.991 3.11-4.893 6.364zm10.797.249c1.582.618 3.698-2.728 8.645-3.867-1.227-.105-5.953 1.289-8.645 3.867z" opacity=".25"/><path fill="url(#e)" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.221-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z"/><path d="M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.768 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z" opacity=".2"/></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="-497.73" x2="-408.14" y1="2176.5" y2="2176.5" gradientTransform="translate(144.84 -551.98) scale(.26458)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#c23014"/><stop offset="1" stop-color="#171717"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-112.68" x2="-85.833" y1="500.27" y2="500.27" gradientTransform="translate(124.26 -459.84)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#000" stroke-width="1.2" d="M14.371 8.674c-1.032 3.17-1.144 10.538 2.59 10.565v2.796h2.673l-3.381 16.01h17.494l-3.381-16.01h2.674v-2.796c3.733-.027 3.621-7.396 2.589-10.565h-4.066v2.736h-3.871V8.674h-5.384v2.736h-3.87V8.674z"/><path fill="none" stroke="#000" stroke-width="1.2" d="M19.634 22.035h10.732m-13.405-2.796H33.04"/><path fill="#070705" d="M33.217 8.674c.911 3.222.571 7.135 0 9.92H16.961c4.33.953 11.559-.02 12.303 3.441H16.961c16.079 0 10.825 6.801 12.059 16.01h4.727l-2.852-16.01h2.144v-3.44h1.747c2.622-3.15 1.17-8.233.766-9.922z" opacity=".2"/><path fill="url(#c)" stroke="#000" stroke-linejoin="round" stroke-width="1.2" d="M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.22-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z"/><path d="M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.769 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z" opacity=".2"/><path fill="#fff" d="M14.821 9.27s-.784 3.408-.375 5.56c-.122-2.734 2.128-5.56 2.128-5.56zm8.078-.025V12l1.182-2.737zm9.269.031v2.753l.761-2.746zM17.575 21.433v-1.596h5.705s-5.598-.157-5.705 1.596z" opacity=".25"/></svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="-657.83" x2="-639.01" y1="113.63" y2="113.63" gradientTransform="matrix(1.2079 0 0 1.0576 808.26 -95.246)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="c" x1="-49.253" x2="-22.402" y1="508.57" y2="508.57" gradientTransform="translate(60.827 -468.14)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#fbf6dc"/><stop offset="1" stop-color="#aa9445"/></linearGradient></defs><ellipse cx="24.704" cy="9.252" fill="#b82f14" stroke="#323232" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" rx="2.513" ry="2.524"/><path d="M24.704 6.728a2.513 2.524 0 0 0-.88.161 2.513 2.524 0 0 1 1.638 2.363 2.513 2.524 0 0 1-1.634 2.363 2.513 2.524 0 0 0 .876.161 2.513 2.524 0 0 0 2.513-2.524 2.513 2.524 0 0 0-2.513-2.524z" opacity=".2"/><path fill="url(#b)" stroke="#323232" stroke-linejoin="round" stroke-width="1.2" d="M18.771 38.045s-13.46-25.8 6.23-26.216c19.69.416 6.23 26.216 6.23 26.216z"/><path d="M24.704 11.829c-.577.012-1.123.048-1.643.103 16.224-.585 9.827 22.905.91 26.113l7.26-.001c8.96-17.768 5.67-25.493-6.527-26.215z" opacity=".15"/><path fill="url(#c)" stroke="#323232" stroke-linejoin="round" stroke-width="1.2" d="M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.22-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z"/><path d="M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.769 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z" opacity=".15"/><path fill="#fff" d="M17.743 34.208s-4.7-15.724 2.723-21.015c-5.489 1.527-7.763 8.612-2.723 21.015z"/><path fill="#fff" d="M24.555 7.314c-.468-.096-2.765 1.103-1.085 3.428-.417-1.494-.113-2.685 1.085-3.428z" opacity=".25"/></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="7.912" x2="21.068" y1="517.06" y2="517.06" gradientTransform="matrix(.80851 0 0 1.0928 13.286 -555.45)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="c" x1="-1.147" x2="30.124" y1="533.13" y2="533.13" gradientTransform="translate(10.511 -506.91)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="d" x1="1.063" x2="27.915" y1="547.33" y2="547.33" gradientTransform="translate(10.511 -506.91)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#fbf6dc"/><stop offset="1" stop-color="#aa9445"/></linearGradient></defs><path fill="url(#b)" stroke="#323232" stroke-linejoin="round" stroke-width="1.2" d="M22.968 12.421h5.472m-3.437-9.229s-3.762 4.102-3.79 6.018a3.787 3.787 0 0 0 1.755 3.21h-1.405c-.756 0-1.364.793-1.364 1.776 0 .984.608 1.775 1.364 1.775h6.877c.755 0 1.364-.791 1.364-1.775 0-.983-.609-1.775-1.364-1.775h-1.403a3.788 3.788 0 0 0 1.755-3.211c-.027-1.916-3.79-6.018-3.79-6.018z"/><path d="M25.003 3.192s.524-.633 0 0c.066 3.234 4.215 6.946.186 9.943h1.402c.756 0 1.364.078 1.364 1.061 0 .984-.608 1.775-1.364 1.775h-1.564c-.297.107-.616.19-.948.246.297.05.606.08.924.08.673 0 1.31-.124 1.873-.326h1.564c.756 0 1.364-.791 1.364-1.775 0-.983-.617-1.925-1.364-1.775l-1.402.282c1.09-.688 1.753-2.175 1.754-3.493-.027-1.916-3.789-6.018-3.789-6.018z" opacity=".15"/><path fill="url(#c)" stroke="#323232" stroke-linejoin="round" stroke-width="1.2" d="M39.886 20.265C38.504 17.129 32.506 14.93 25 14.93c-7.505 0-13.504 2.199-14.886 5.335-1.382 3.136 7.614 17.25 7.614 17.25h14.543s8.997-14.114 7.615-17.25z"/><path d="M27.739 14.984c14.749 4.252 2.27 21.326-4.162 22.462l8.694.07s8.997-15.193 7.615-18.33c-1.04-2.7-6.29-4.03-12.147-4.202z" opacity=".15"/><path fill="url(#d)" stroke="#323232" stroke-linejoin="round" stroke-width="1.2" d="M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.22-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z"/><path d="M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.769 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z" opacity=".15"/><path fill="#fff" d="M23.97 15.595c-3.885-.253-14.106 1.842-13.321 6.24.817 3.728 2.918 7.08 4.672 10.341-5.153-10.335-5.764-14.834 8.649-16.58zM25.106 4.052c-1.728 1.838-2.562 3.24-3.052 4.234-.402.816-.33 1.15-.231 1.61.17.793.742 1.419.913 1.547-.825-.745-.854-3.977 2.365-7.414m-4.34 10.526s-.193-1.374.76-1.432c.953-.059 2.993 0 2.993 0s-3.127-.176-3.753 1.432z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="-523.92" x2="-501.54" y1="113.91" y2="113.91" gradientTransform="matrix(1.1144 0 0 1.1133 595.36 -102.86)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="c" x1="-69.739" x2="-42.888" y1="523.66" y2="523.66" gradientTransform="translate(81.39 -483.23)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#fbf6dc"/><stop offset="1" stop-color="#aa9445"/></linearGradient></defs><path fill="url(#b)" stroke="#323232" stroke-linejoin="round" stroke-width="1.2" d="M14.978 8.725s-.126.003-.305.047c-.479.007-.004.879-.482.887l-2.092.309s1.827 3.836 1.827 4.546c0 .71-1.237 1.733-1.237 1.733v12.094l2.564 2.164 4.109-.929-1.582-2.31 5.623-4.9c2.667 12.989-10.494 4.92-9.057 17.005h21.46c.005-.227-1.718-2.69-.787-7.182 3.413-21.949-3.9-24.57-19.998-23.42a18.138 18.138 0 0 0-.043-.042z"/><path fill="none" stroke="#000" stroke-linejoin="round" stroke-width=".8" d="M14.91 17.622a1.464 1.383 0 0 0 1.464 1.383 1.464 1.383 0 0 0 1.464-1.383 1.464 1.383 0 0 0-1.464-1.383 1.464 1.383 0 0 0-1.464 1.383zm4.756-1.383h-3.292" opacity=".4" paint-order="stroke fill markers"/><ellipse cx="-14.309" cy="27.333" opacity=".4" paint-order="stroke fill markers" rx=".787" ry=".715" transform="scale(-1 1)"/><ellipse cx="-16.346" cy="17.632" opacity=".4" paint-order="stroke fill markers" rx=".415" ry=".418" transform="scale(-1 1)"/><path d="M35.807 38.823c.065.012-1.708-1.844-.789-6.634C37.52 14.244 34.875 8.466 20.05 8.551a64.995 64.995 0 0 0-5.069.175c.041.043 1.497 1.258 1.86 1.73l.122-.009 2.435 2.63s-1.336-2.106.208-2.474c21.364-3.203 15.787 28.43 2.52 28.154" opacity=".15"/><path fill="#e9e0ba" stroke="#323232" stroke-linejoin="round" stroke-width="1.2" d="M17.166 13.338c3.401-3.238-2.489-6.17-2.489-6.17l.086 4.982"/><path fill="#f6f1a7" stroke="#000" stroke-linejoin="round" stroke-width=".8" d="m16.645 30.19.022-2.151" opacity=".4"/><path fill="url(#c)" stroke="#323232" stroke-linejoin="round" stroke-width="1.2" d="M25.076 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.22-2.672-.162-5.264-1.785-6.324-2.404-1.57-10.983-1.619-10.983-1.619z"/><path d="M25.076 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148 2.405-1.571 10.983-1.62 10.983-1.62s8.579.049 10.983 1.62c.95.62 1.473 1.769 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265-2.405-1.571-10.983-1.619-10.983-1.619z" opacity=".15"/><path stroke="#000" stroke-width=".265" d="M22.921 14.92c7.739 3.863-5.122 12.364-5.14 12.345l1.58 2.31-4.108.929.339-2.868c.017-.003 12.535-8.583 7.329-12.716" opacity=".15"/><path fill="#fff" d="m13.301 28.081.008-11.576c1.933-1.653 1.367-2.23-.302-6.04 2.888 4.268 3.04 3.651 1.104 6.478zm1.618 8.935c-.202-6.963 10.544-3.125 9.412-12.978 2.115 9.645-8.713 7.491-9.412 12.978z"/></svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient id="a"><stop offset="0" stop-color="#fbf6dc"/><stop offset="1" stop-color="#aa9445"/></linearGradient><linearGradient xlink:href="#a" id="b" x1="-144.63" x2="-118.08" y1="495" y2="495" gradientTransform="matrix(.93894 0 0 .97636 148.33 -447.95)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="c" x1="1247.8" x2="1265.1" y1="1156.6" y2="1156.6" gradientTransform="matrix(.99908 0 0 1.0007 -1230.3 -1137)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#323232" stroke-linejoin="round" stroke-width="1.2" d="M22.106 26.305c-.932 11.619-9.006 8.663-9.006 18.094h23.8c0-9.431-8.075-6.475-9.007-18.094H25z"/><path d="M23.919 26.305c.932 11.619 9.006 8.663 9.006 18.094H36.9c0-9.431-8.075-6.476-9.006-18.094H25z" opacity=".15"/><path fill="#fff" d="M13.748 43.78c.02-7.22 6.582-6.13 8.602-14.757.06 8.34-7.056 7.432-8.602 14.757z"/><path fill="url(#c)" stroke="#323232" stroke-linejoin="round" stroke-width="1.2" d="M25 12.599c-3.423 0-6.198 2.628-6.198 5.87 0 1.95 1.023 3.77 2.728 4.862l-4.574 5.04h16.088l-4.572-5.04c1.704-1.091 2.727-2.913 2.727-4.862 0-3.242-2.775-5.87-6.198-5.87z"/><path fill="#fff" d="M22.907 13.556c-.846.217-5.48 2.941-2.58 7.82 0 0-1.146-4.158 2.58-7.82z"/><path d="M25 12.6a6.51 6.51 0 0 0-1.503.175c2.696.636 4.693 2.945 4.693 5.695 0 1.95-1.022 3.77-2.726 4.862l4.573 5.035h3.008l-4.574-5.035c1.705-1.091 2.727-2.913 2.727-4.862 0-3.242-2.774-5.87-6.197-5.87z" opacity=".15"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient id="a"><stop offset="0" stop-color="#fbf6dc"/><stop offset="1" stop-color="#aa9445"/></linearGradient><linearGradient xlink:href="#a" id="b" x1="362.07" x2="371.04" y1="-82.569" y2="-82.569" gradientTransform="matrix(.87923 0 0 .85197 -297.28 78.005)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="c" x1="-491.54" x2="-471.01" y1="249.26" y2="249.26" gradientTransform="matrix(1.0387 0 0 .99256 524.95 -231.03)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="d" x1="-1890.6" x2="-1767.4" y1="1054.4" y2="1054.4" gradientTransform="matrix(.29405 0 0 .26262 562.83 -250.81)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="e" x1="-20.75" x2="6.102" y1="544.53" y2="544.53" gradientTransform="translate(32.324 -504.1)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#323232" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" d="M25.002 4.677a2.981 3.417 90 0 0-3.417 2.982 2.981 3.417 90 0 0 3.417 2.98 2.981 3.417 90 0 0 3.417-2.98 2.981 3.417 90 0 0-3.417-2.982z"/><path fill="url(#c)" stroke="#323232" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2" d="M25.002 10.639c-6.8 0-10.027 6.96-10.027 11.468h20.13c0-4.508-3.303-11.468-10.103-11.468z"/><path fill="#fff" d="M16.397 17.927c1.044-2.713 3.664-6.797 8.65-6.697-1.13-.17-7.652 3.63-8.65 6.697z"/><path d="M24.874 4.59s.048.24 0 0c2.591 1.137 1.924 4.305.636 6.017 7.684 3.833 3.915 11.115 3.914 11.114h2.823c1.793 1.568 5.811-5.135-5.61-11.115 3.926-3.048.464-6.191-1.763-6.017z" opacity=".15"/><path fill="url(#d)" stroke="#323232" stroke-linejoin="round" stroke-width="1.2" d="M25 14.657c-3.446 1.605-4.22 3.87-5.534 6.806-5.438-4.847-11.9-4.084-11.9-4.084 10.546 11.903 9.202 21.195 9.202 21.195h16.464s-1.344-9.293 9.203-21.195c0 0-6.463-.763-11.902 4.084-1.314-2.937-2.087-5.2-5.533-6.806z"/><path fill="#111" d="M40.566 17.38c-11.59 10.231-7.477 17.283-16.618 21.194h9.285s-1.344-9.293 9.202-21.195c-1.223-.082-.614-.049-1.869 0z" opacity=".15"/><path fill="#fff" d="M24.796 5.326c-.612-.182-3.779 1.09-2.135 3.638-.406-1.456.437-3.272 2.135-3.638zM8.874 17.955c3.715 4.32 7.138 10.199 8.069 15.288-.368-5.503-3.972-12.467-7.24-15.232-.434-.093-.829-.056-.829-.056zM20.081 21.702c1.027-2.684 5.547-5.794 4.893-6.364-1.68.591-3.991 3.11-4.893 6.364zm10.797.249c1.582.618 3.698-2.728 8.645-3.867-1.227-.105-5.953 1.289-8.645 3.867z"/><path fill="url(#e)" stroke="#323232" stroke-linejoin="round" stroke-width="1.2" d="M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.221-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z"/><path d="M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.768 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z" opacity=".15"/></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="-497.73" x2="-408.14" y1="2174.5" y2="2174.5" gradientTransform="translate(144.84 -551.98) scale(.26458)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#a" id="c" x1="-134.61" x2="-107.76" y1="598.91" y2="598.91" gradientTransform="translate(146.19 -558.49)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#fbf6dc"/><stop offset="1" stop-color="#aa9445"/></linearGradient></defs><path fill="url(#b)" stroke="#323232" stroke-width="1.2" d="M14.371 8.674c-1.032 3.17-1.144 10.538 2.59 10.565v2.796h2.673l-3.381 16.01h17.494l-3.381-16.01h2.674v-2.796c3.733-.027 3.621-7.396 2.589-10.565h-4.066v2.736h-3.871V8.674h-5.384v2.736h-3.87V8.674z"/><path fill="none" stroke="#323232" stroke-width="1.2" d="M16.961 19.239H33.04m-13.406 2.796h11.261"/><path fill="#070705" d="M33.217 8.674c.911 3.222.571 7.135 0 9.92H16.961c4.33.953 11.559-.02 12.303 3.441H16.961c16.079 0 10.825 6.801 12.059 16.01h4.727l-2.852-16.01h2.144v-3.44h1.747c2.622-3.15 1.17-8.233.766-9.922z" opacity=".15"/><path fill="url(#c)" stroke="#323232" stroke-linejoin="round" stroke-width="1.2" d="M25 36.457s-8.578.048-10.983 1.62c-1.623 1.06-2.006 3.65-1.785 6.323h25.536c.22-2.672-.162-5.264-1.785-6.324C33.58 36.506 25 36.457 25 36.457z"/><path d="M25 36.457s-8.578.048-10.983 1.619c-1.623 1.06-2.005 2.593-1.785 5.265h.084c.228-1.38.75-2.527 1.701-3.148C16.422 38.622 25 38.573 25 38.573s8.579.049 10.983 1.62c.95.62 1.473 1.769 1.7 3.148h.085c.22-2.672-.162-4.205-1.785-5.265C33.578 36.505 25 36.457 25 36.457z" opacity=".15"/><path fill="#fff" d="M14.821 9.27s-.784 3.408-.375 5.56c-.122-2.734 2.128-5.56 2.128-5.56zm8.078-.025V12l1.182-2.737zm9.269.031v2.753l.761-2.746zM17.575 21.433v-1.596h5.705s-5.598-.157-5.705 1.596z"/></svg>

After

Width:  |  Height:  |  Size: 2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.9 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 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="pawn" version="1.0" viewBox="0 0 933.33 933.33"><style id="style-base">.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:#000}</style><defs id="defs36222"><linearGradient id="fillGradient"><stop id="stop0" offset="0" stop-color="#7f899b" stop-opacity="1"/><stop id="stop1" offset="1" stop-color="#1c1c2f" stop-opacity="1"/></linearGradient><linearGradient xlink:href="#fillGradient" id="head-gradient" x1="586.53" x2="1126.02" y1="328.04" y2="534.2" gradientTransform="matrix(.73447 0 0 .736 -84.66 58.44)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#fillGradient" id="shoulders-gradient" x1="275.24" x2="862.65" y1="458.66" y2="560.75" gradientTransform="translate(36 28)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#fillGradient" id="pawn-body-gradient" x1="300.27" x2="774.05" y1="623.78" y2="764.9" gradientTransform="translate(36 28)" gradientUnits="userSpaceOnUse"/></defs><path id="boundary" fill="none" stroke-width="35" d="M473.54 222.8a122.41 110.4 0 0 0-122.41 110.4 122.41 110.4 0 0 0 122.4 110.4 122.41 110.4 0 0 0 122.42-110.4 122.41 110.4 0 0 0-122.41-110.4Zm-3.72 223.77c-30.33.31-58.7 5.23-93.47 14.16-74.2 19.07-100.1 66.02-100.1 66.02h156.33c-9 144.95-88.58 191.26-127.13 218.5-34.2 24.18-25.46 82.35 19.9 85.32 28.12 1.84 276.62 2.36 305.66-.85 51.38-5.67 52.84-66.7 19.69-87.3-49.35-30.68-125.94-65-137.16-215.67H685.1s-43.43-51.83-110.03-66.68c-42.62-9.5-74.9-13.8-105.24-13.5z" class="base stroke-color"/><ellipse id="head" cx="473.54" cy="333.21" fill="url(#head-gradient)" class="base stroke-color stroke-medium" rx="122.41" ry="110.4"/><path id="pawn-body" fill="url(#pawn-body-gradient)" d="M433.42 495.01c1.47 170.18-86.74 221.1-127.97 250.25-34.2 24.17-25.46 82.34 19.9 85.3 28.12 1.85 276.62 2.37 305.66-.84 51.38-5.67 52.84-66.7 19.69-87.3-52.61-32.71-136.2-69.54-138.5-247.1-.44-33.3-79.04-30-78.78-.3z" class="base stroke-color stroke-medium"/><path id="shoulders" fill="url(#shoulders-gradient)" d="M376.35 460.74c-74.2 19.06-100.1 66.01-100.1 66.01h408.84s-43.43-51.83-110.03-66.68c-85.23-19-129.17-17.2-198.7.67z" class="base stroke-color stroke-medium"/><path id="lower-line" fill="none" d="M379.12 739.67h187.9" class="base stroke-color stroke-medium"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.1 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="rook" version="1.0" viewBox="0 0 933.33 933.33"><style id="style-base">.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:#000}</style><defs id="defs36222"><linearGradient id="fillGradient"><stop id="stop0" offset="0" stop-color="#7f899b" stop-opacity="1"/><stop id="stop1" offset="1" stop-color="#1c1c2f" stop-opacity="1"/></linearGradient><linearGradient xlink:href="#fillGradient" id="upper-back-gradient" x1="7.34" x2="689.75" y1="207.66" y2="274.33" gradientTransform="matrix(1.10352 0 0 1.06757 -32.26 -16.14)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#fillGradient" id="body-gradient" x1="218.5" x2="906.1" y1="521.53" y2="643.2" gradientTransform="matrix(1.10352 0 0 1.06757 -32.26 -16.14)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#fillGradient" id="upper-wall-gradient" x1="153.41" x2="966.59" y1="229.07" y2="400.73" gradientTransform="matrix(1.10352 0 0 1.06757 -32.26 -16.14)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#fillGradient" id="tower-base-gradient" x1="193.15" x2="878.6" y1="715.41" y2="782.07" gradientTransform="matrix(1.10352 0 0 1.06757 -32.26 -16.14)" gradientUnits="userSpaceOnUse"/></defs><path id="boundary" fill="none" stroke-width="35" d="M468.91 119.08c-30.68-.25-61.62 1.07-71.44 4.28-3.39 33.65.9 51.98-1.82 81.9a197.55 197.55 0 0 1-30.64 5.88c.91-16.5 1.94-32.57 1.75-43.34-22.83-3.32-53.78-3.52-81.93-1.78.78-7.47 1.46-14.92 1.17-23.98-17.52-4.78-126.91 18.93-143.45 24 5.44 29.7 9.56 57.87 14.83 100.53 33.87 23.54 52.83 31.76 56.45 71.2.84-.15 1.94-.27 2.8-.41 10.96 5.29 29.17 9.84 52.39 13.59-2.92 92.32-3.7 349.07-2.77 386.38-25.97 24.61-77.23 48.98-114.08 56.75-5.47 18-10.86 38.83.25 61.22 134.5 1.22 489.67-.34 618.19-.79 6.93-24.97 12.17-43.03 5.24-62.66-38.9-7.68-85.72-19.26-120.9-54.51-2.94-65.39-2.6-320.4-2.47-385.93 23.79-3.7 44.08-8.3 59.01-13.88l.1-.51c.93.13 2.16.25 3.06.38 6.43-35.55 16.95-41.62 66.65-71.46 6.28-46.69 11.8-69.2 12.15-97.1-14.9-3.62-121.91-35.56-135.13-30.97-4.7 27.77 1.95 51.64-4.24 77.76-4.27.2-8.47.36-12.65.49-.09-14.7.25-30.26 1.6-44.17-24.98-10.7-73.24-11.03-105.79-9.63.23-12.68.64-24.4 1.5-38.05-8.75-3.1-39.15-4.94-69.83-5.2z" class="base stroke-color"/><path id="upper-back" fill="url(#upper-back-gradient)" d="M214.93 336.6s3.43-123.38 18.64-164.39c31.78-6.84 94.34-10.06 133.2-4.4.43 25.08-5.74 77.85-1.68 101.98 35.3-1.67 106.84 2.6 152.36-2.5 1.02-29.43-7.67-71.1.94-103.91 28.9-2.17 94.22-4.46 124.64 8.57-4.06 41.98.6 99.69.6 99.69l79.74 2.75-11.88 63.14c-99.56 37.2-434.27 31.67-496.56-.94z" class="base stroke-color stroke-medium"/><path id="tower-base" fill="url(#tower-base-gradient)" d="M268.16 735.55c-25.33 25.2-78.25 50.57-115.99 58.53-5.47 18.01-10.86 38.83.26 61.22 134.5 1.22 489.66-.34 618.18-.79 6.93-24.97 12.17-43.03 5.24-62.66-39.57-7.81-87.36-19.6-122.73-56.3" class="base stroke-color stroke-medium"/><path id="lower-line" fill="none" d="M212.54 805.16c157.8.07 329.05-5.8 497.82.6" class="base stroke-color stroke-medium"/><path id="body" fill="url(#body-gradient)" d="M270.3 323.45c-3.98 47.2-5.13 375.99-4.03 415.15 58.25-4.91 329-5.22 388.7-.6-3.38-73.7-2.45-413.51-2.45-413.51" class="base stroke-color stroke-medium"/><path id="bricks" fill="none" d="M372.03 395.73c-20.05-.08-34.74 1.05-60.48 3.84l69.45-3.73a593.8 593.8 0 0 0-8.97-.11zm22.2 60.6c-31.6-.1-52.54 1.48-84 4.07l107.85-3.73c-8.69-.21-16.55-.32-23.85-.35zM357.15 487c.42 15.17-.33-7.04.48 16.8zm114.1 34.8c-82.58 1.18-84.73.62-161.03 5.88zm-55.3 32.72c.37 13.37-.33-7.2.47 16.15zm47.33 35.54c-61.2-.13-106.74 1.73-153.62 6.23l180.85-6.05c-9.43-.1-18.49-.16-27.23-.18zm16.92 20.28.38 14.57c-.01-1.42-.1-4.94-.38-14.57zm.38 14.57c.05 3.25-.28-5.52.36 13.4zm-123.43-3.4c.42 15.17-.33-7.04.48 16.8zm110.81 38.17c-67.75-.19-125.29 2.36-156.87 4.68l227.46-3.47a2419.13 2419.13 0 0 0-70.59-1.2zm-52.28 22.99.38 14.57c-.02-1.42-.1-4.95-.38-14.57zm.38 14.57c.04 3.24-.29-5.52.36 13.4z" class="base stroke-color stroke-medium"/><path id="upper-wall" fill="url(#upper-wall-gradient)" d="M142.55 166.03c5.44 29.7 9.56 57.88 14.83 100.54 33.87 23.54 52.83 31.76 56.45 71.2 101.73-18.27 408.56-14.06 500.82-.37 6.43-35.55 16.95-41.63 66.65-71.46 6.28-46.69 11.8-69.2 12.15-97.1-14.9-3.61-121.91-35.56-135.13-30.97-4.7 27.78 1.95 51.64-4.24 77.76-40.06 2-75.75.48-117.2-10.28.2-34.91.15-54.06 1.87-81.08-17.5-6.22-121.64-7.32-141.28-.91-3.39 33.65.9 51.98-1.82 81.9-35.56 10.03-69.29 7.43-111.74 9.8-3.42-35.57 2.9-48.05 2.09-73.02-17.52-4.78-126.91 18.93-143.45 24z" class="base stroke-color stroke-medium"/><path id="upper-line" fill="none" d="M202.72 272.29c156.95-15.47 389.07-16.43 523.78 3.73" class="base stroke-color stroke-medium"/></svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.9 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 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="pawn" version="1.0" viewBox="0 0 933.33 933.33"><style id="style-base">.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:#000}</style><defs id="defs36222"><linearGradient id="fillGradient"><stop id="stop0" offset="0" stop-color="#fff" stop-opacity="1"/><stop id="stop1" offset="1" stop-color="#bfd3d7" stop-opacity="1"/></linearGradient><linearGradient xlink:href="#fillGradient" id="head-gradient" x1="586.53" x2="1126.02" y1="328.04" y2="534.2" gradientTransform="matrix(.73447 0 0 .736 -84.66 58.44)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#fillGradient" id="shoulders-gradient" x1="275.24" x2="862.65" y1="458.66" y2="560.75" gradientTransform="translate(36 28)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#fillGradient" id="pawn-body-gradient" x1="300.27" x2="774.05" y1="623.78" y2="764.9" gradientTransform="translate(36 28)" gradientUnits="userSpaceOnUse"/></defs><path id="boundary" fill="none" stroke-width="35" d="M473.54 222.8a122.41 110.4 0 0 0-122.41 110.4 122.41 110.4 0 0 0 122.4 110.4 122.41 110.4 0 0 0 122.42-110.4 122.41 110.4 0 0 0-122.41-110.4Zm-3.72 223.77c-30.33.31-58.7 5.23-93.47 14.16-74.2 19.07-100.1 66.02-100.1 66.02h156.33c-9 144.95-88.58 191.26-127.13 218.5-34.2 24.18-25.46 82.35 19.9 85.32 28.12 1.84 276.62 2.36 305.66-.85 51.38-5.67 52.84-66.7 19.69-87.3-49.35-30.68-125.94-65-137.16-215.67H685.1s-43.43-51.83-110.03-66.68c-42.62-9.5-74.9-13.8-105.24-13.5z" class="base stroke-color"/><ellipse id="head" cx="473.54" cy="333.21" fill="url(#head-gradient)" class="base stroke-color stroke-medium" rx="122.41" ry="110.4"/><path id="pawn-body" fill="url(#pawn-body-gradient)" d="M433.42 495.01c1.47 170.18-86.74 221.1-127.97 250.25-34.2 24.17-25.46 82.34 19.9 85.3 28.12 1.85 276.62 2.37 305.66-.84 51.38-5.67 52.84-66.7 19.69-87.3-52.61-32.71-136.2-69.54-138.5-247.1-.44-33.3-79.04-30-78.78-.3z" class="base stroke-color stroke-medium"/><path id="shoulders" fill="url(#shoulders-gradient)" d="M376.35 460.74c-74.2 19.06-100.1 66.01-100.1 66.01h408.84s-43.43-51.83-110.03-66.68c-85.23-19-129.17-17.2-198.7.67z" class="base stroke-color stroke-medium"/><path id="lower-line" fill="none" d="M379.12 739.67h187.9" class="base stroke-color stroke-medium"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.1 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="rook" version="1.0" viewBox="0 0 933.33 933.33"><style id="style-base">.base{fill-opacity:1;fill-rule:evenodd;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1}.stroke-medium{stroke-width:20}.stroke-color{stroke:#000}</style><defs id="defs36222"><linearGradient id="fillGradient"><stop id="stop0" offset="0" stop-color="#fff" stop-opacity="1"/><stop id="stop1" offset="1" stop-color="#bfd3d7" stop-opacity="1"/></linearGradient><linearGradient xlink:href="#fillGradient" id="upper-back-gradient" x1="7.34" x2="689.75" y1="207.66" y2="274.33" gradientTransform="matrix(1.10352 0 0 1.06757 -32.26 -16.14)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#fillGradient" id="body-gradient" x1="218.5" x2="906.1" y1="521.53" y2="643.2" gradientTransform="matrix(1.10352 0 0 1.06757 -32.26 -16.14)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#fillGradient" id="upper-wall-gradient" x1="153.41" x2="966.59" y1="229.07" y2="400.73" gradientTransform="matrix(1.10352 0 0 1.06757 -32.26 -16.14)" gradientUnits="userSpaceOnUse"/><linearGradient xlink:href="#fillGradient" id="tower-base-gradient" x1="193.15" x2="878.6" y1="715.41" y2="782.07" gradientTransform="matrix(1.10352 0 0 1.06757 -32.26 -16.14)" gradientUnits="userSpaceOnUse"/></defs><path id="boundary" fill="none" stroke-width="35" d="M468.91 119.08c-30.68-.25-61.62 1.07-71.44 4.28-3.39 33.65.9 51.98-1.82 81.9a197.55 197.55 0 0 1-30.64 5.88c.91-16.5 1.94-32.57 1.75-43.34-22.83-3.32-53.78-3.52-81.93-1.78.78-7.47 1.46-14.92 1.17-23.98-17.52-4.78-126.91 18.93-143.45 24 5.44 29.7 9.56 57.87 14.83 100.53 33.87 23.54 52.83 31.76 56.45 71.2.84-.15 1.94-.27 2.8-.41 10.96 5.29 29.17 9.84 52.39 13.59-2.92 92.32-3.7 349.07-2.77 386.38-25.97 24.61-77.23 48.98-114.08 56.75-5.47 18-10.86 38.83.25 61.22 134.5 1.22 489.67-.34 618.19-.79 6.93-24.97 12.17-43.03 5.24-62.66-38.9-7.68-85.72-19.26-120.9-54.51-2.94-65.39-2.6-320.4-2.47-385.93 23.79-3.7 44.08-8.3 59.01-13.88l.1-.51c.93.13 2.16.25 3.06.38 6.43-35.55 16.95-41.62 66.65-71.46 6.28-46.69 11.8-69.2 12.15-97.1-14.9-3.62-121.91-35.56-135.13-30.97-4.7 27.77 1.95 51.64-4.24 77.76-4.27.2-8.47.36-12.65.49-.09-14.7.25-30.26 1.6-44.17-24.98-10.7-73.24-11.03-105.79-9.63.23-12.68.64-24.4 1.5-38.05-8.75-3.1-39.15-4.94-69.83-5.2z" class="base stroke-color"/><path id="upper-back" fill="url(#upper-back-gradient)" d="M214.93 336.6s3.43-123.38 18.64-164.39c31.78-6.84 94.34-10.06 133.2-4.4.43 25.08-5.74 77.85-1.68 101.98 35.3-1.67 106.84 2.6 152.36-2.5 1.02-29.43-7.67-71.1.94-103.91 28.9-2.17 94.22-4.46 124.64 8.57-4.06 41.98.6 99.69.6 99.69l79.74 2.75-11.88 63.14c-99.56 37.2-434.27 31.67-496.56-.94z" class="base stroke-color stroke-medium"/><path id="tower-base" fill="url(#tower-base-gradient)" d="M268.16 735.55c-25.33 25.2-78.25 50.57-115.99 58.53-5.47 18.01-10.86 38.83.26 61.22 134.5 1.22 489.66-.34 618.18-.79 6.93-24.97 12.17-43.03 5.24-62.66-39.57-7.81-87.36-19.6-122.73-56.3" class="base stroke-color stroke-medium"/><path id="lower-line" fill="none" d="M212.54 805.16c157.8.07 329.05-5.8 497.82.6" class="base stroke-color stroke-medium"/><path id="body" fill="url(#body-gradient)" d="M270.3 323.45c-3.98 47.2-5.13 375.99-4.03 415.15 58.25-4.91 329-5.22 388.7-.6-3.38-73.7-2.45-413.51-2.45-413.51" class="base stroke-color stroke-medium"/><path id="bricks" fill="none" d="M372.03 395.73c-20.05-.08-34.74 1.05-60.48 3.84l69.45-3.73a593.8 593.8 0 0 0-8.97-.11zm22.2 60.6c-31.6-.1-52.54 1.48-84 4.07l107.85-3.73c-8.69-.21-16.55-.32-23.85-.35zM357.15 487c.42 15.17-.33-7.04.48 16.8zm114.1 34.8c-82.58 1.18-84.73.62-161.03 5.88zm-55.3 32.72c.37 13.37-.33-7.2.47 16.15zm47.33 35.54c-61.2-.13-106.74 1.73-153.62 6.23l180.85-6.05c-9.43-.1-18.49-.16-27.23-.18zm16.92 20.28.38 14.57c-.01-1.42-.1-4.94-.38-14.57zm.38 14.57c.05 3.25-.28-5.52.36 13.4zm-123.43-3.4c.42 15.17-.33-7.04.48 16.8zm110.81 38.17c-67.75-.19-125.29 2.36-156.87 4.68l227.46-3.47a2419.13 2419.13 0 0 0-70.59-1.2zm-52.28 22.99.38 14.57c-.02-1.42-.1-4.95-.38-14.57zm.38 14.57c.04 3.24-.29-5.52.36 13.4z" class="base stroke-color stroke-medium"/><path id="upper-wall" fill="url(#upper-wall-gradient)" d="M142.55 166.03c5.44 29.7 9.56 57.88 14.83 100.54 33.87 23.54 52.83 31.76 56.45 71.2 101.73-18.27 408.56-14.06 500.82-.37 6.43-35.55 16.95-41.63 66.65-71.46 6.28-46.69 11.8-69.2 12.15-97.1-14.9-3.61-121.91-35.56-135.13-30.97-4.7 27.78 1.95 51.64-4.24 77.76-40.06 2-75.75.48-117.2-10.28.2-34.91.15-54.06 1.87-81.08-17.5-6.22-121.64-7.32-141.28-.91-3.39 33.65.9 51.98-1.82 81.9-35.56 10.03-69.29 7.43-111.74 9.8-3.42-35.57 2.9-48.05 2.09-73.02-17.52-4.78-126.91 18.93-143.45 24z" class="base stroke-color stroke-medium"/><path id="upper-line" fill="none" d="M202.72 272.29c156.95-15.47 389.07-16.43 523.78 3.73" class="base stroke-color stroke-medium"/></svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50mm" height="50mm" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="3341.2" x2="3366.2" y1="-469.28" y2="-469.28" gradientTransform="matrix(1.019 0 0 1.0751 -3392.3 527.45)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#796c60"/><stop offset="1" stop-color="#4b403b"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-177.63" x2="-151.24" y1="156.68" y2="156.68" gradientTransform="matrix(1.1509 0 0 1.1499 214.24 -138.92)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.6" d="M26.87 8.223c-5.797-2.298-6.952 2.527-4.668 5.86-9.898 10.6-11.253 16.425-6.195 24.204h17.99c6.084-6.912 2.558-14.515-4.823-22.3-2.883 4.119-3.274 7.35-3.946 11.131l-3.62-.071c-.66-6.006 7.622-15.14 5.261-18.823z"/><path d="M24.933 7.654c-.625.02-.207.197-.771.567 0 .003.01.006.01.008 3.582-.311-2.369 11.772-3.394 18.894.536-3.014 1.325-5.68 3.082-8.725 2.003-4.351 4.237-8.681 3.008-10.169-.411-.38-1.144-.601-1.934-.575zm4.24 8.338c-.6.856-.517.67-.972 1.462 6.004 6.049 8.728 13.787 3.097 20.838h2.696c6.085-6.912 2.56-14.515-4.822-22.3z" opacity=".15"/><path fill="url(#c)" stroke="#1e1e1e" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.6" d="M13.24 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684h28.749l.012-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685H25z"/><path fill="#fff" d="M14.895 34.327c-.716-1.396-3.266-6.812 4.513-15.739-2.1 4.86-5.958 8.69-4.513 15.739z" opacity=".25"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50mm" height="50mm" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="-825.75" x2="-704.44" y1="2712.8" y2="2712.8" gradientTransform="matrix(.26458 0 0 .25357 227.43 -666.55)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#796c60"/><stop offset="1" stop-color="#4b403b"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-215.24" x2="-184.86" y1="731.78" y2="731.78" gradientTransform="translate(225.05 -690.53)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.6" d="M25.006 3.868c-1.803.1-3.228 1.234-3.228 2.618 0 .565.244 1.644.693 2.097h-5.766v5.106h6.306l-2.61 2.833 2.673 2.167c-5.584.362-12.02 1.643-13.154 3.997-1.268 2.638 6.215 15.6 6.215 15.6h17.73s7.484-12.963 6.215-15.6c-1.133-2.357-7.594-3.64-13.179-3.999l2.71-2.165-2.61-2.833h6.306V8.583H27.54c.449-.453.693-1.531.693-2.097 0-1.384-1.425-2.518-3.228-2.618z" style="paint-order:fill markers stroke"/><path d="m31.289 38.283 2.573-.005s7.482-12.428 6.214-15.065c-4.136-3.824-13.18-4.525-13.18-4.525 11.05 2.822 12.618 5.028 4.393 19.595z" opacity=".15"/><path fill="url(#c)" stroke="#1e1e1e" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.6" d="M13.242 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684h28.749l.012-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685h-11.76z"/><g fill="#fff"><path d="M13.283 31.138s-3.074-6.555-2.666-8.092c.408-1.536 5.987-2.736 5.987-2.736-6.486 2.71-4.786 4.558-3.321 10.828zM17.521 12.884v-3.52l1.532-.011c-.891.007-1.532 2.147-1.532 3.531zM24.798 4.67s-2.614.92-1.53 3.522c-.178-.007-2.142-2.72 1.53-3.522z" opacity=".25"/></g></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50mm" height="50mm" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="3295.1" x2="3321.5" y1="-411.88" y2="-411.88" gradientTransform="matrix(1.0621 0 0 1.0589 -3487.5 459.63)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#796c60"/><stop offset="1" stop-color="#4b403b"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-177.63" x2="-151.24" y1="156.68" y2="156.68" gradientTransform="matrix(1.1509 0 0 1.1499 214.24 -138.92)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.6" d="m25.987 23.546-11.592 1.097-1.454-5.216 14.468-6.815 1.763-3.9 10.2 11.892-4.116 17.678H14.74c.245-11.292 9.64-8.1 11.247-14.736z" class="st28"/><path d="m29.173 8.72-.879 1.945.426-.943c2.692 3.722 5.608 7.279 8.45 10.888l-5.285 17.671h3.372l4.117-17.671z" opacity=".15"/><path fill="url(#c)" stroke="#1e1e1e" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.6" d="M13.24 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684h28.748l.013-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685H25z"/><path fill="#fff" d="M15.62 37.633c.159-4.472 2.145-6.971 8.667-9.837-.987 1.107-6.405 2.237-8.667 9.837zM14.418 21.67l-.523-1.803L28.03 13.21l1.217-2.764-.671 3.558-14.35 5.921z" opacity=".25"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="50mm" height="50mm" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient id="a" x1="-639.4" x2="-612.91" y1="-465.15" y2="-465.15" gradientTransform="matrix(.94331 0 0 1 615.66 493.37)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#796c60"/><stop offset="1" stop-color="#4b403b"/></linearGradient></defs><path fill="url(#a)" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.6" d="M25 12.264c-3.56 0-6.447 2.655-6.447 5.93 0 1.705.799 3.326 2.19 4.45h-1.666c-1.312 0-2.4.978-2.4 2.158v.438c0 1.18 1.088 2.157 2.4 2.157h2.376c0 7.293-9.342 6.457-8.689 16.78L25 44.167l12.236.008c.653-10.323-8.689-9.486-8.689-16.779h2.376c1.312 0 2.4-.978 2.4-2.157v-.438c0-1.18-1.087-2.157-2.4-2.157h-1.666c1.391-1.125 2.19-2.747 2.19-4.45 0-3.276-2.886-5.93-6.446-5.931z"/><path d="M24.999 12.264c-.521 0-1.028.058-1.513.166 6.257.692 7.675 6.466 4.917 9.222-2.016 1.69-7.662.993-7.662.993 2.56.443 4.97 1.954 7.252 2.488-6.033 11.435 9.7 9.026 9.242 19.043.995-10.592-7.673-8.148-8.689-16.78h2.377c1.312 0 2.398-.977 2.398-2.156v-.438c0-1.18-1.086-2.158-2.398-2.158h-1.667c1.391-1.125 2.191-2.746 2.19-4.449 0-3.276-2.886-5.932-6.447-5.932z" opacity=".15"/><path fill="#fff" d="M22.959 13.401c-1.77 1.602-2.968 3.612-3.476 6.19 0 0-1.16-4.235 3.476-6.19zM13.342 43.419c.273-5.321 2.572-6.184 7.538-11.434-1.03 3.566-7.387 5.868-7.538 11.434z" opacity=".25"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50mm" height="50mm" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="-647.27" x2="-525.69" y1="418.44" y2="418.44" gradientTransform="translate(209.27 -109.27) scale(.31419)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#796c60"/><stop offset="1" stop-color="#4b403b"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-177.63" x2="-151.24" y1="156.68" y2="156.68" gradientTransform="matrix(1.1509 0 0 1.1499 214.23 -138.92)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.6" d="M25 6.122c-2.635 0-4.771 2.098-4.771 4.685.002 1.855 1.118 3.534 2.846 4.283-.369 2.286-1.51 7.558-4.68 8.009-2.355.334-3.855-1.287-4.88-3.144a4.19 4.19 0 0 0 1.767-3.4c0-2.327-1.921-4.214-4.291-4.214S6.699 14.228 6.7 16.555c0 2.142 1.64 3.943 3.809 4.183l4.973 17.54h19.036l4.973-17.54c2.169-.24 3.807-2.041 3.809-4.183 0-2.327-1.922-4.214-4.292-4.214s-4.29 1.887-4.29 4.214a4.19 4.19 0 0 0 1.766 3.4c-1.025 1.857-2.525 3.478-4.88 3.144-3.17-.45-4.31-5.723-4.68-8.01 1.729-.748 2.845-2.427 2.847-4.282 0-2.587-2.136-4.685-4.77-4.685z"/><path d="M39.002 12.342a4.348 4.348 0 0 0-1.567.296c4.741 1.678 3.877 6.805.591 7.316L30.414 38.28h4.2l4.87-17.541c2.17-.241 3.808-2.042 3.81-4.184 0-2.327-1.922-4.214-4.292-4.213z" opacity=".15"/><path fill="url(#c)" stroke="#1e1e1e" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.6" d="M13.227 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684H39.36l.013-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685h-11.76z"/><g fill="#fff"><path d="M9.515 13.489c-.794 1.17-1.726 2.667-1.554 4.779 0 0-1.604-3.01 1.554-4.779zM23.659 7.23c-.853.874-2.37 2.934-2.133 5.374-.207-.084-1.73-3.893 2.133-5.374zM12.062 23.328l5.244 14.111-1.17.023z" opacity=".25"/></g></svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50mm" height="50mm" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="12797" x2="12909" y1="-1764.6" y2="-1764.6" gradientTransform="matrix(.23554 0 0 .25454 -3002.1 473.49)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#796c60"/><stop offset="1" stop-color="#4b403b"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-30.611" x2="-.235" y1="42.165" y2="42.165" gradientTransform="translate(40.423 -.922)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#1e1e1e" stroke-linejoin="round" stroke-width="1.6" d="M12.855 10.383v7.663c0 3.268 6.53 3.774 6.53 3.774-.352 9.864-5.036 16.486-5.036 16.486l21.428-.039s-4.651-6.62-5-16.446c0 0 6.896-.507 6.896-3.774v-7.663h-4.72s.459 2.25-.47 3.26c-1.035 1.126-2.418 1.126-3.454 0-.928-1.01-.47-3.26-.47-3.26h-6.59s.459 2.25-.47 3.26c-1.122 1.22-2.699 1.22-3.82 0-.929-1.01-.47-3.26-.47-3.26z"/><path d="m37.543 10.462.014 7.585c.263 3.48-24.58 2.135-24.523 1.03 2.098 2.532 4.445 2.613 6.352 2.744 7.292.498 9.8 8.89 13.306 16.446h2.97s-4.65-6.62-5-16.446c2.547-.395 2.954-.812 4.037-1.058h.018l-.002-.004c1.023-.236 2.81-1.376 2.842-2.713v-7.663z" opacity=".15"/><path fill="url(#c)" stroke="#1e1e1e" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.6" d="M13.239 38.286c-1.437 0-2.627 1.216-2.627 2.685v.544l.013 2.685h28.75l.012-2.685v-.544c0-1.469-1.19-2.685-2.627-2.685H25z"/><g fill="#fff"><path d="M13.656 11.168v5.54c.48-1.867.299-4.088 1.554-5.54zM22.877 11.163c.055.896-.154 1.748-.269 2.616.48-1.866 1.823-2.616 1.823-2.616zM16.947 35.312c.875-1.143 3.603-10.333 3.233-13.244.7.39.658 10.057-3.233 13.244zM33.863 11.209c.005.598-.055 1.226-.187 2.02.48-1.867 1.295-2.04 1.295-2.04z" opacity=".25"/></g></svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50mm" height="50mm" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="3341.2" x2="3366.2" y1="-469.26" y2="-469.26" gradientTransform="matrix(1.019 0 0 1.0751 -3392.3 527.45)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#bba38a"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-177.63" x2="-151.24" y1="156.68" y2="156.68" gradientTransform="matrix(1.1509 0 0 1.1499 214.24 -138.92)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#323232" stroke-linejoin="round" stroke-width="1.6" d="M26.87 8.223c-5.797-2.298-6.952 2.527-4.668 5.86-9.898 10.6-11.253 16.425-6.195 24.204h17.99c6.084-6.912 2.558-14.515-4.823-22.3-2.883 4.119-3.274 7.35-3.946 11.131l-3.62-.071c-.66-6.006 7.622-15.14 5.261-18.823z"/><path d="M24.933 7.654c-.625.02-.207.197-.771.567 0 .003.01.006.01.008 3.582-.311-2.369 11.772-3.394 18.894.536-3.014 1.325-5.68 3.082-8.725 2.003-4.351 4.237-8.681 3.008-10.169-.411-.38-1.144-.601-1.934-.575zm4.24 8.338c-.6.856-.517.67-.972 1.462 6.004 6.049 8.728 13.787 3.097 20.838h2.696c6.085-6.912 2.56-14.515-4.822-22.3z" opacity=".1"/><path fill="url(#c)" stroke="#323232" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.6" d="M13.24 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684h28.749l.012-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685H25z"/><path fill="#fff" d="M14.895 34.327c-.716-1.396-3.266-6.812 4.513-15.739-2.1 4.86-5.958 8.69-4.513 15.739z"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50mm" height="50mm" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="-825.75" x2="-704.44" y1="2712.8" y2="2712.8" gradientTransform="matrix(.26458 0 0 .25357 227.43 -666.55)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#bba38a"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-215.24" x2="-184.86" y1="731.78" y2="731.78" gradientTransform="translate(225.05 -690.53)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#323232" stroke-linejoin="round" stroke-width="1.6" d="M25.006 3.868c-1.803.1-3.228 1.234-3.228 2.618 0 .565.244 1.644.693 2.097h-5.766v5.106h6.306l-2.61 2.833 2.673 2.167c-5.584.362-12.02 1.643-13.154 3.997-1.268 2.638 6.215 15.6 6.215 15.6h17.73s7.484-12.963 6.215-15.6c-1.133-2.357-7.594-3.64-13.179-3.999l2.71-2.165-2.61-2.833h6.306V8.583H27.54c.449-.453.693-1.531.693-2.097 0-1.384-1.425-2.518-3.228-2.618z" style="paint-order:fill markers stroke"/><path d="m31.289 38.283 2.573-.005s7.482-12.428 6.214-15.065c-4.136-3.824-13.18-4.525-13.18-4.525 11.05 2.822 12.618 5.028 4.393 19.595z" opacity=".1"/><path fill="url(#c)" stroke="#323232" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.6" d="M13.242 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684h28.749l.012-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685h-11.76z"/><g fill="#fff"><path d="M13.283 31.138s-3.074-6.555-2.666-8.092c.408-1.536 5.987-2.736 5.987-2.736-6.486 2.71-4.786 4.558-3.321 10.828zM17.521 12.884v-3.52l1.532-.011c-.891.007-1.532 2.147-1.532 3.531zM24.798 4.67s-2.614.92-1.53 3.522c-.178-.007-2.142-2.72 1.53-3.522z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50mm" height="50mm" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="-462.21" x2="-434.18" y1="-469.84" y2="-469.84" gradientTransform="translate(474.35 493.34)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#bba38a"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-464.54" x2="-434.16" y1="-452.1" y2="-452.1" gradientTransform="translate(474.35 493.34)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#323232" stroke-linejoin="round" stroke-width="1.6" d="m25.987 23.546-11.592 1.097-1.454-5.216 14.468-6.815 1.763-3.9 10.2 11.892-4.116 17.678H14.74c.245-11.292 9.64-8.1 11.247-14.736z" class="st28"/><path d="m29.173 8.72-.879 1.945.426-.943c2.692 3.722 5.608 7.279 8.45 10.888l-5.285 17.671h3.372l4.117-17.671z" opacity=".1"/><path fill="url(#c)" stroke="#323232" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.6" d="M13.24 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684h28.748l.013-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685H25z"/><path fill="#fff" d="M15.62 37.633c.159-4.472 2.145-6.971 8.667-9.837-.987 1.107-6.405 2.237-8.667 9.837zM14.418 21.67l-.523-1.803L28.03 13.21l1.217-2.764-.671 3.558-14.35 5.921z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="50mm" height="50mm" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient id="a" x1="-639.4" x2="-612.91" y1="-465.15" y2="-465.15" gradientTransform="matrix(.94331 0 0 1 615.66 493.37)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#bba38a"/></linearGradient></defs><path fill="url(#a)" stroke="#323232" stroke-linejoin="round" stroke-width="1.6" d="M25 12.264c-3.56 0-6.447 2.655-6.447 5.93 0 1.705.799 3.326 2.19 4.45h-1.666c-1.312 0-2.4.978-2.4 2.158v.438c0 1.18 1.088 2.157 2.4 2.157h2.376c0 7.293-9.342 6.457-8.689 16.78L25 44.167l12.236.008c.653-10.323-8.689-9.486-8.689-16.779h2.376c1.312 0 2.4-.978 2.4-2.157v-.438c0-1.18-1.087-2.157-2.4-2.157h-1.666c1.391-1.125 2.19-2.747 2.19-4.45 0-3.276-2.886-5.93-6.446-5.931z"/><path d="M24.999 12.264c-.521 0-1.028.058-1.513.166 6.257.692 7.675 6.466 4.917 9.222-2.016 1.69-7.662.993-7.662.993 2.56.443 4.97 1.954 7.252 2.488-6.033 11.435 9.7 9.026 9.242 19.043.995-10.592-7.673-8.148-8.689-16.78h2.377c1.312 0 2.398-.977 2.398-2.156v-.438c0-1.18-1.086-2.158-2.398-2.158h-1.667c1.391-1.125 2.191-2.746 2.19-4.449 0-3.276-2.886-5.932-6.447-5.932z" opacity=".15"/><path fill="#fff" d="M22.959 13.401c-1.77 1.602-2.968 3.612-3.476 6.19 0 0-1.16-4.235 3.476-6.19zM13.342 43.419c.273-5.321 2.572-6.184 7.538-11.434-1.03 3.566-7.387 5.868-7.538 11.434z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50mm" height="50mm" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="-540.02" x2="-501.82" y1="-470.59" y2="-470.59" gradientTransform="translate(545.92 492.79)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#bba38a"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-536.12" x2="-505.75" y1="-451.55" y2="-451.55" gradientTransform="translate(545.92 492.79)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#323232" stroke-linejoin="round" stroke-width="1.6" d="M25 6.122c-2.635 0-4.771 2.098-4.771 4.685.002 1.855 1.118 3.534 2.846 4.283-.369 2.286-1.51 7.558-4.68 8.009-2.355.334-3.855-1.287-4.88-3.144a4.19 4.19 0 0 0 1.767-3.4c0-2.327-1.921-4.214-4.291-4.214S6.699 14.228 6.7 16.555c0 2.142 1.64 3.943 3.809 4.183l4.973 17.54h19.036l4.973-17.54c2.169-.24 3.807-2.041 3.809-4.183 0-2.327-1.922-4.214-4.292-4.214s-4.29 1.887-4.29 4.214a4.19 4.19 0 0 0 1.766 3.4c-1.025 1.857-2.525 3.478-4.88 3.144-3.17-.45-4.31-5.723-4.68-8.01 1.729-.748 2.845-2.427 2.847-4.282 0-2.587-2.136-4.685-4.77-4.685z"/><path d="M39.002 12.342a4.348 4.348 0 0 0-1.567.296c4.741 1.678 3.877 6.805.591 7.316L30.414 38.28h4.2l4.87-17.541c2.17-.241 3.808-2.042 3.81-4.184 0-2.327-1.922-4.214-4.292-4.213z" opacity=".1"/><path fill="url(#c)" stroke="#323232" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.6" d="M13.227 38.286c-1.437 0-2.627 1.216-2.627 2.685v.545l.013 2.684H39.36l.013-2.684v-.545c0-1.468-1.19-2.685-2.627-2.685h-11.76z"/><g fill="#fff"><path d="M9.515 13.489c-.794 1.17-1.726 2.667-1.554 4.779 0 0-1.604-3.01 1.554-4.779zM23.659 7.23c-.853.874-2.37 2.934-2.133 5.374-.207-.084-1.73-3.893 2.133-5.374zM12.062 23.328l5.244 14.111-1.17.023z"/></g></svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50mm" height="50mm" fill-rule="evenodd" clip-rule="evenodd" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 50 50"><defs><linearGradient xlink:href="#a" id="b" x1="-570.82" x2="-544.4" y1="-468.61" y2="-468.61" gradientTransform="translate(582.87 492.95)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#bba38a"/></linearGradient><linearGradient xlink:href="#a" id="c" x1="-573.06" x2="-542.69" y1="-451.71" y2="-451.71" gradientTransform="translate(582.87 492.95)" gradientUnits="userSpaceOnUse"/></defs><path fill="url(#b)" stroke="#323232" stroke-linejoin="round" stroke-width="1.6" d="M12.855 10.383v7.663c0 3.268 6.53 3.774 6.53 3.774-.352 9.864-5.036 16.486-5.036 16.486l21.428-.039s-4.651-6.62-5-16.446c0 0 6.896-.507 6.896-3.774v-7.663h-4.72s.459 2.25-.47 3.26c-1.035 1.126-2.418 1.126-3.454 0-.928-1.01-.47-3.26-.47-3.26h-6.59s.459 2.25-.47 3.26c-1.122 1.22-2.699 1.22-3.82 0-.929-1.01-.47-3.26-.47-3.26z"/><path d="m37.543 10.462.014 7.585c.263 3.48-24.58 2.135-24.523 1.03 2.098 2.532 4.445 2.613 6.352 2.744 7.292.498 9.8 8.89 13.306 16.446h2.97s-4.65-6.62-5-16.446c2.547-.395 2.954-.812 4.037-1.058h.018l-.002-.004c1.023-.236 2.81-1.376 2.842-2.713v-7.663z" opacity=".1"/><path fill="url(#c)" stroke="#323232" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.6" d="M13.239 38.286c-1.437 0-2.627 1.216-2.627 2.685v.544l.013 2.685h28.75l.012-2.685v-.544c0-1.469-1.19-2.685-2.627-2.685H25z"/><g fill="#fff"><path d="M13.656 11.168v5.54c.48-1.867.299-4.088 1.554-5.54zM22.877 11.163c.055.896-.154 1.748-.269 2.616.48-1.866 1.823-2.616 1.823-2.616zM16.947 35.312c.875-1.143 3.603-10.333 3.233-13.244.7.39.658 10.057-3.233 13.244zM33.863 11.209c.005.598-.055 1.226-.187 2.02.48-1.867 1.295-2.04 1.295-2.04z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

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