1
0
Fork 0
mirror of https://github.com/jugeeya/UltimateTrainingModpack.git synced 2025-01-31 22:47:25 +00:00

Update web UI for better maintenance (#380)

* Updated menu buttons and icons

* Cleaned up .devcotainer

* removed dockerfile from .devcontainer in favour
of using image

* Added JS settings, updated menu template, css, js

* Updated tab width to 4

* Refactored openTab and closeAllItems,
default tab content to be hidden,
added polyfill for NodeList.forEach

* Refactored openItem, made targeting modals easier

* Refactored toggleOption

* Fixed clicking tab not closing active modals

* Updated aerial delay and falling aerial icons

* Updated colours of defensive settings menu icons

* Updated misc tab menu icon colours

* Fixed oos_offset, shield_state, and shield_tilt

* Fixed all tabs defaulting to active,
Updated modals to be outside menu_items,
Refactored JS to work with new HTML hierarchy

* Updated settings to be JSON

* Fixed single options not populating correctly from url

* Updated menu to edit settings object when toggled

* Removed updating settings from menu before exit

* Refactored comments to fewer lines

* Refactored to use const,
Refactored to use camelCase,
Refactored resetCurrentSubmenu & resetAllSubmenus

* Fixed size and alignment of menu item text,
Fixed size of option button's text,
Fixed colour of crouch icon

* Updated stroke width for crouch icon feet & arms

* Updated check to use fontawesome as a base,
Changed colour to have better contrast,
Added outline for better contrast

* Updated one-winged angel option to 1-winged angel

* Updated openTab and resetCurrentMenu to play sfx
This commit is contained in:
Matthew Edell 2022-08-04 22:34:25 -04:00 committed by GitHub
parent f24fec1b78
commit 16f975a9d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
46 changed files with 1143 additions and 4499 deletions

View file

@ -1,5 +0,0 @@
FROM jugeeya/cargo-skyline:2.1.0
ENV HOME /root
RUN apt-get update && apt install -y git

View file

@ -2,37 +2,32 @@
// https://github.com/microsoft/vscode-dev-containers/tree/v0.140.1/containers/docker-from-docker
{
"name": "Cargo Skyline",
"dockerFile": "Dockerfile",
"image": "jugeeya/cargo-skyline:3.0.0-dkp-beta",
"mounts": [
"source=/var/run/docker.sock,target=/var/run/docker-host.sock,type=bind"
"source=ultimatetrainingmodpack-bashhistory,target=/commandhistory,type=volume"
],
// Use this environment variable if you need to bind mount your local source code into a new container.
// // Use this environment variable if you need to bind mount your local source code into a new container.
"remoteEnv": {
"LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}"
},
// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
"customizations": {
"vscode": {
"extensions": [
"matklad.rust-analyzer",
"bungcip.better-toml",
"serayuzgur.crates",
"statiolake.vscode-rustfmt"
]
}
},
// Add the IDs of extensions you want installed when the container is created.
// // Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-azuretools.vscode-docker",
"matklad.rust-analyzer",
"bungcip.better-toml",
"serayuzgur.crates",
"statiolake.vscode-rustfmt"
],
"build": {
"args": {
"INSTALL_ZSH": "false",
"ENABLE_NONROOT_DOCKER": "false"
}
}
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "docker --version",
// Uncomment the next two lines to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
// "overrideCommand": false,
// "remoteUser": "vscode"
]
}

View file

@ -10,4 +10,10 @@
"clippy::borrow_interior_mutable_const"
],
"rust-analyzer.updates.channel": "nightly",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"prettier.printWidth": 120,
"prettier.singleQuote": true,
"prettier.tabWidth": 4
}

View file

@ -1,12 +1,17 @@
button {
padding: unset;
margin: unset;
}
@-moz-document url-prefix() {
@font-face {
font-family: "nintendo_udsgr_std_003";
src: url("../fonts/nintendo_udsgr_std_003.ttf");
font-family: 'nintendo_udsgr_std_003';
src: url('../fonts/nintendo_udsgr_std_003.ttf');
}
@font-face {
font-family: "nintendo_ext_003";
src: url("../fonts/nintendo_ext_003.ttf");
font-family: 'nintendo_ext_003';
src: url('../fonts/nintendo_ext_003.ttf');
}
}
@ -37,7 +42,6 @@
padding: 0px;
}
.tab-list {
overflow: hidden;
display: flex;
@ -67,15 +71,9 @@
background: #ccc;
}
.tab-content {
display: flex;
flex-wrap: wrap;
margin-left: 3%; /* Workaround for "centering" menu items since justify-content: center doesn't work */
}
body {
background: none;
font-family: "nintendo_ext_003", "nintendo_udsgr_std_003";
font-family: 'nintendo_ext_003', 'nintendo_udsgr_std_003';
margin: 0;
}
@ -170,54 +168,127 @@ body {
/* Displayed Checkbox (unchecked) */
.checkbox-display::after {
content: "\E14C";
content: '\E14C';
color: white;
}
/* Displayed Checkbox (checked) */
#saveDefaults:checked~.checkbox-display::after {
content: "\E14B";
#saveDefaults:checked ~ .checkbox-display::after {
content: '\E14B';
}
.menu-item {
/* Container div for menu link and menu list */
width: 30%;
margin: 6px;
padding: 0px 8px 0px 8px;
.hide {
display: none !important;
}
.menu-button, .menu-item > div button {
/* Item styling */
background-color: #d9e4ea;
border: solid black;
border-width: 3px 20px 3px 3px;
padding: 0px;
box-shadow: 3px 3px 3px #18181880;
.hidden {
visibility: hidden;
}
:focus {
background: rgb(255, 70, 2);
background: linear-gradient(
45deg,
rgba(255, 70, 2, 1) 20%,
rgba(255, 215, 0, 1) 46%,
rgba(255, 215, 0, 1) 54%,
rgba(255, 70, 2, 1) 80%
);
background-size: 500% 100%;
will-change: animation;
animation: translate-anim 5s infinite linear;
}
:focus > div {
color: #fff;
text-shadow: -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000, 1px 1px 1px #000;
}
@keyframes translate-anim {
0% {
background-position: 0% 0%;
}
100% {
background-position: 100% 0%;
}
}
.tab-content-container {
height: 513px;
}
.tab-content {
display: flex;
height: 60px;
width: 100%;
flex-wrap: wrap;
height: 100%;
}
.tab-content-wrapper,
.modal {
display: flex;
justify-content: center;
align-items: center;
align-content: center;
user-select: none;
flex-wrap: wrap;
height: 100%;
}
.menu-item > div button {
z-index: 1;
width: 22%;
margin: 4px 17px;
.modal {
position: fixed;
height: 513px;
width: 100%;
}
.modal p {
font-size: 18px !important;
.menu-item,
.modal-button {
flex-basis: 23%;
margin: 0 1%;
height: 84px;
display: flex;
justify-content: center;
align-items: center;
}
.modal-button {
flex-basis: 20%;
height: 50px;
border-color: black;
border-radius: 0.5rem;
border-style: solid;
border-width: 0.25rem 0.75rem;
justify-content: flex-start;
padding: 0 0.5rem;
}
.modal-button-title {
margin: 0 auto;
font-size: large;
}
.menu-button-content,
.modal-button-content {
display: flex;
justify-content: flex-start;
align-items: center;
width: 100%;
height: 100%;
}
.menu-button {
display: flex;
justify-content: flex-start;
align-items: center;
height: 100%;
width: 100%;
padding: 0.5rem;
border-color: black;
border-radius: 0.5rem;
border-style: solid;
border-width: 0.25rem 1.25rem;
}
.menu-icon {
background-color: black;
flex-basis: auto;
width: 60px;
height: 48px;
border: solid black;
border-right-width: 5px;
width: 25%;
height: 100%;
}
.menu-icon img {
@ -225,50 +296,9 @@ body {
height: 100%;
}
.menu-item p {
font-size: 23px;
color: #2b3940;
width: 100%;
margin: 10px 0px 0px 20px;
.menu-title {
padding: 0 0.025rem;
margin: 0 auto;
text-align: center;
font-size: large;
}
.hide {
display: none !important;
}
.menu-item > div {
display: flex;
flex-wrap: wrap;
position: fixed;
justify-content: flex-start;
align-content: flex-start;
top: 80px;
bottom: 73px;
left: 0px;
right: 0px;
margin-top: 0px;
background-color: rgba(100, 100, 100, 0.9);
}
:focus {
background: rgb(255,70,2);
background: linear-gradient(45deg, rgba(255,70,2,1) 20%, rgba(255,215,0,1) 46%, rgba(255,215,0,1) 54%, rgba(255,70,2,1) 80%);
background-size: 500% 100%;
will-change: animation;
animation: translate-anim 5s infinite linear;
}
:focus > p {
color: #fff;
text-shadow: -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000, 1px 1px 1px #000;
}
@keyframes translate-anim {
0% {
background-position: 0% 0%;
}
100% {
background-position: 100% 0%;
}
}

File diff suppressed because it is too large Load diff

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB

View file

@ -59,12 +59,12 @@
id="g3004"
transform="translate(5)">
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 40,70 C 40,60 40,50 40,50 25,50 25,30 40,30 40,30 40,20 40,10"
id="path2998"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 35,15 5,-5 5,5"
id="path3000" />
</g>
@ -72,12 +72,12 @@
id="g3004-0"
transform="translate(15)">
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 30,70 V 50 C 15,50 15,30 30,30 l 15,-5"
id="path2998-4"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 42,22 3,3 -1,4"
id="path3000-2"
sodipodi:nodetypes="ccc" />

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -57,15 +57,15 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:none;stroke:#fffffe;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 10,40 H 30 L 60,10 H 50 60 V 20 10"
id="path7263" />
<path
style="fill:none;stroke:#fffffe;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 30,40 h 40 l -5,-5 5,5 -5,5"
id="path7265" />
<path
style="fill:none;stroke:#fffffe;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 30,40 60,70 V 60 70 H 50"
id="path7267" />
</g>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -59,20 +59,20 @@
id="layer1">
<g
id="g243"
style="fill:#ffffea;fill-opacity:1"
style="fill:#000000;fill-opacity:1"
transform="matrix(0.54490954,0,0,-0.44245854,-24.388508,217.32339)">
<g
id="g245"
style="fill:#ffffea;fill-opacity:1">
style="fill:#000000;fill-opacity:1">
<g
id="g251"
style="fill:#ffffea;fill-opacity:1">
style="fill:#000000;fill-opacity:1">
<g
id="g253"
style="fill:#ffffea;fill-opacity:1">
style="fill:#000000;fill-opacity:1">
<path
d="m 58.348,376.03 c 3.332,-50.936 45.698,-55.695 45.698,-55.695 v 0 c -36.178,20.944 -24.437,58.551 -1.666,79.495 v 0 c 13.625,12.533 9.71,21.5 9.313,22.314 v 0 c 7.57,-14.95 1.868,-19.957 -2.411,-37.546 v 0 c -4.284,-17.614 6.188,-36.178 17.613,-33.44 v 0 c 11.424,2.737 5.95,17.969 5.95,17.969 v 0 c 26.419,-26.896 0.952,-44.746 0.952,-44.746 v 0 c 0,0 39.034,10.948 42.604,47.365 v 0 c 3.571,36.415 -25.705,51.411 -25.705,51.411 v 0 c 9.758,-8.093 9.283,-23.327 -1.904,-24.279 v 0 c -11.187,-0.951 -18.089,3.333 -10.71,35.464 v 0 c 7.378,32.132 -34.036,50.457 -34.036,50.457 v 0 C 124.039,438.387 55.015,426.963 58.348,376.03 m 53.314,46.174 c 0,0 0,0 0,0 v 0 c 0,0 0,0 0,0"
style="fill:#ffffea;stroke:none;fill-opacity:1"
style="fill:#000000;stroke:none;fill-opacity:1"
id="path267" />
</g>
</g>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -27,51 +27,51 @@
id="layer1"
style="display:inline">
<path
style="fill:none;stroke:#ffffff;stroke-width:2.25673;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.25673;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 48.716358,59.026913 -2.256727,4.513456"
id="path1214-9-8" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.25673;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.25673;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 41.946175,74.82401 c -3.385092,0 -13.540369,-7.898548 -22.567282,-15.797097 -9.026911,-7.898548 -6.770183,-27.080737 4.513457,-30.465829 11.28364,-3.385092 23.695645,-4.513457 34.979285,0 C 70.155276,33.07454 70.155276,50 63.385091,57.898549 56.614907,65.797097 45.331267,74.82401 41.946175,74.82401 Z"
id="path859" />
<path
style="fill:none;stroke:#ffffff;stroke-width:3.3851;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:3.3851;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 22.763986,43.229817 9.026912,-2.256728"
id="path1160" />
<path
style="fill:none;stroke:#ffffff;stroke-width:3.3851;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:3.3851;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 20.507258,50 32.919262,46.614909"
id="path1437" />
<path
style="fill:none;stroke:#ffffff;stroke-width:3.3851;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:3.3851;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 45.331267,46.614909 60,50"
id="path1781" />
<path
style="fill:none;stroke:#ffffff;stroke-width:3.3851;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:3.3851;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 46.459631,39.844724 11.28364,3.385093"
id="path2093" />
<path
style="fill:none;stroke:#ffffff;stroke-width:3.3851;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:3.3851;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 30.662535,62.412005 c 10.62776,-3.887042 15.522242,-1.997012 20.310552,0"
id="path864" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.25673;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.25673;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 31.790898,59.026913 3.385092,4.513456"
id="path1214" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.25673;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.25673;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 40.81781,57.898549 v 5.64182 M 7.182188,53.037544"
id="path1214-9" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.25673;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.25673;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 48.716358,25.175992 c 7.982722,-9.575141 18.053825,-13.540368 30.46583,-12.412005 -5.64182,-2.256728 -20.310553,-5.64182 -25.952373,0 -5.64182,5.64182 -4.553684,9.280346 -4.513457,12.412005 z"
id="path904" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.25673;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.25673;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 31.790898,26.304356 C 24.347403,20.427138 17.331523,14.08816 3.5817973,15.020715 c 0,0 16.9254607,-3.385091 21.4389157,0 4.513457,3.385092 4.513457,4.513457 6.770185,11.283641 z"
id="path869" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.25673;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.25673;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 37.432718,25.175992 h 4.513457 c 0,-6.770185 4.513456,-12.412005 6.770183,-14.668733 2.256729,-2.256728 0,-5.6418201 -2.256727,-6.7701841 -2.256728,-1.128364 -11.152788,-2.6019259 -15.797096,0 -4.64431,2.6019259 -4.187221,5.2313931 -1.128365,7.8985491 3.058857,2.667155 7.898548,11.28364 7.898548,13.540368"
id="path1991" />
</g>

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View file

@ -1,39 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
version="1.1"
id="レイヤー_2"
x="0px"
y="0px"
viewBox="-15 -10 80 80"
enable-background="new 0 0 80 80"
xml:space="preserve"><metadata
id="metadata11"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs9"><filter
style="color-interpolation-filters:sRGB"
id="filter862"
x="-0.21168"
width="1.42336"
y="-0.21168"
height="1.42336"><feGaussianBlur
stdDeviation="3.7044"
id="feGaussianBlur864" /></filter></defs>
<g
id="g4">
<path
d="M 6,36 18,48 48,6"
style="stroke:#FFFFFF; stroke-width:6; fill:none"
id="path2" />
</g>
<g
id="g4-4"
style="mix-blend-mode:normal;stroke:#00ff00;stroke-opacity:1;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;opacity:0.75;stroke-linecap:round;stroke-linejoin:miter;filter:url(#filter862)"><path
d="M 6,36 18,48 48,6"
style="fill:none;stroke:#00ff00;stroke-width:10;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-linecap:round;stroke-linejoin:miter"
id="path2-6" /></g></svg>
id="svg3072"
sodipodi:docname="check.svg"
inkscape:version="1.2.1 (ef4d3fba62, 2022-07-19, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs3076" />
<sodipodi:namedview
id="namedview3074"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="1.6601562"
inkscape:cx="223.17176"
inkscape:cy="256.30118"
inkscape:window-width="1848"
inkscape:window-height="1016"
inkscape:window-x="72"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg3072" />
<!--! Font Awesome Pro 6.1.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. -->
<path
d="M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z"
id="path3070"
style="fill:#47d147;fill-opacity:1;stroke:#000000;stroke-opacity:1;stroke-width:10;stroke-dasharray:none" />
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -15,7 +15,7 @@
id="layer2"
style="display:inline">
<path
style="fill:#ffffff;stroke:none;stroke-width:0.0497127;fill-opacity:1"
style="fill:#000000;stroke:none;stroke-width:0.0497127;fill-opacity:1"
d="M 13.064037,0.15777454 C 8.1424266,0.80397653 3.2845429,3.5550995 1.5652428,8.4884178 -0.15917764,13.436426 2.3169541,19.190626 7.5459235,20.622254 8.7329642,20.947276 10.006356,21.008224 11.224666,20.852722 17.566967,20.0432 20.634193,13.067458 19.846047,7.3450248 19.413696,4.206053 17.925744,0.44725481 14.306856,0.18197818 13.892599,0.15161215 13.479984,0.10316141 13.064037,0.15777454 m 5.915816,6.88897386 c -0.824287,0.084412 -1.367697,1.0032528 -1.66145,1.6902331 -0.575375,1.3453265 -0.676441,2.8591785 -0.320746,4.2752955 0.152618,0.607689 0.386119,1.283832 0.888516,1.690233 -0.170267,0.95528 -1.129524,1.975436 -1.789659,2.634776 -2.336747,2.333913 -5.743263,3.326677 -8.8985796,2.202672 C 2.6731458,17.928122 1.0093348,12.893563 2.45869,8.5878433 2.9049613,7.262104 3.7953064,5.583255 4.9608613,4.7599623 c 0,1.6125322 1.2650897,2.6094715 2.7839132,2.8540084 C 9.8316157,7.9499792 12.349118,7.2792051 13.68475,5.5553662 14.496013,4.5083512 14.838633,2.7528502 13.80774,1.7296327 13.428282,1.353019 12.920069,1.1740531 12.417772,1.0315068 12.922058,0.81791598 13.723775,0.89852022 14.257143,0.96779492 17.150126,1.3435586 18.762956,4.3213617 18.979853,7.0467484 M 8.6893164,10.448492 c -0.6508391,0.09321 -1.2731928,0.277596 -1.8393712,0.621359 -2.0621489,1.251966 -2.6350683,4.142314 -1.0290437,6.018871 1.0799496,1.261858 2.7350854,1.804871 4.3597975,1.569531 0.528645,-0.07661 1.030843,-0.232059 1.491382,-0.505877 3.699025,-2.199391 1.102429,-8.288854 -2.9827646,-7.703884 z"
id="path5397" />
</g>

Before

Width:  |  Height:  |  Size: 2 KiB

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -5,11 +5,34 @@
viewBox="0 0 80.0 80.0"
version="1.1"
id="SVGRoot"
sodipodi:docname="crouch.svg"
inkscape:version="1.2.1 (ef4d3fba62, 2022-07-19, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview33"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
showgrid="false"
inkscape:zoom="5.3125"
inkscape:cx="22.023529"
inkscape:cy="34.729412"
inkscape:window-width="1848"
inkscape:window-height="1016"
inkscape:window-x="72"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="SVGRoot" />
<defs
id="defs833" />
<metadata
@ -24,28 +47,29 @@
</rdf:RDF>
</metadata>
<g
id="layer2">
id="layer2"
transform="translate(0,-13.450253)">
<ellipse
style="fill:none;stroke:#ffffff;stroke-width:4.24602;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:4.24602;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path968"
cx="38.602196"
cy="50.794861"
rx="34.14621"
ry="16.46673" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.83464567;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 5.136058,56.48855 C 0.03773872,68.258842 8.944851,70.078439 20.219251,64.298879"
id="path1303" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.83464567;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 38.814677,67.325204 C 54.984065,80.11361 6.3280294,79.05744 8.2170673,67.234064"
id="path1946" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.83464567;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 65.857881,60.569742 C 80.617048,72.270636 63.691207,76.1483 47.455415,67.501231"
id="path2599" />
<ellipse
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3212"
cx="16.421764"
cy="67.510216"
@ -53,14 +77,14 @@
ry="5.4183269"
transform="rotate(-27.25411)" />
<ellipse
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3442"
cx="34.510593"
cy="59.416187"
rx="5.8964143"
ry="1.5936255" />
<ellipse
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3546"
cx="55.952282"
cy="66.090828"
@ -68,17 +92,17 @@
ry="0.90305448"
transform="rotate(-10.763148)" />
<path
style="fill:none;stroke:#fffffb;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.83464567;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 73.208558,52.361585 c 7.669126,3.971723 3.747746,13.195461 -7.350677,8.208157"
id="path3803" />
<circle
style="fill:#ffffff;fill-opacity:1;stroke:#fffffb;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4490"
cx="44.548664"
cy="50.145424"
r="2.2912889" />
<ellipse
style="fill:none;stroke:#ffffff;stroke-width:1.86442;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1.86442;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3212-7"
cx="33.601746"
cy="74.975929"
@ -86,7 +110,7 @@
ry="5.3188171"
transform="matrix(0.85133369,-0.52462458,0.39549414,0.9184685,0,0)" />
<ellipse
style="fill:#ffffff;fill-opacity:1;stroke:#fffffb;stroke-width:1.85452;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.85452;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4490-4"
cx="57.440308"
cy="48.851425"

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -56,7 +56,7 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:#ffffea;fill-opacity:1;stroke-width:0.0763833"
style="fill:#000000;fill-opacity:1;stroke-width:0.0763833"
d="M 38.816057,74.605714 C 29.334444,69.285944 21.721463,62.501161 16.396726,54.625324 12.680655,49.128873 10.507915,43.664275 9.6966552,37.774178 L 9.523071,36.513858 V 23.912615 11.311371 l 3.47544,-1.042804 C 14.909999,9.6950232 19.344052,8.3583968 22.851952,7.2982802 26.359855,6.2381628 31.257932,4.7597146 33.73657,4.0128262 36.215206,3.2659437 38.650419,2.5310366 39.148153,2.3796957 L 40.053125,2.10453 41.401461,2.5189583 c 0.741584,0.2279389 2.396695,0.727831 3.678025,1.1108785 2.124241,0.6350325 5.125149,1.5406034 15.467614,4.6676201 1.974506,0.5969825 5.033656,1.5193815 6.798111,2.0497691 l 3.208097,0.964332 v 12.524769 c 0,13.750626 0.01825,13.133525 -0.466202,15.771048 -1.469368,7.999907 -6.208433,16.280925 -13.435554,23.47723 -4.554305,4.534886 -9.53794,8.25966 -15.480083,11.569834 -0.616013,0.343161 -1.1316,0.622041 -1.145748,0.619733 -0.01415,-0.0023 -0.558497,-0.303113 -1.209664,-0.668458 z M 40.017434,6.9455021 c -0.01151,-0.011503 -1.154442,0.3221589 -2.539835,0.7414927 -1.385394,0.4193395 -4.804667,1.4508031 -7.598385,2.2921444 -2.793719,0.8413418 -6.248152,1.8853668 -7.67652,2.3200618 -1.42837,0.434688 -3.765692,1.137541 -5.194065,1.56189 -1.428365,0.424355 -2.676426,0.80554 -2.77347,0.847086 l -0.17644,0.07553 0.0285,10.635925 c 0.03141,11.709218 0.01623,11.306873 0.521534,13.844017 0.545678,2.739906 1.330584,4.981114 2.782065,7.943865 1.742197,3.556168 4.084322,6.961065 7.14568,10.388121 1.12907,1.263951 3.935989,4.012837 5.240776,5.132427 2.870291,2.462894 5.713524,4.524858 9.000587,6.527393 L 40,70 40.019187,38.483223 c 0.01055,-17.33423 0.0098,-31.5262046 -0.0018,-31.5377209 z"
id="path6100" />
</g>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -148,43 +148,43 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:#ffffee;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
d="M 25,45 50,20 35,50 C 32,55 21,49 25,45"
id="path4335"
sodipodi:nodetypes="cccc"
transform="matrix(1.7836945,0,0,1.7836945,-24.915171,-25.29453)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.303644;filter:url(#filter4807)"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4807)"
d="m 27,46 3,-4"
id="path4521"
transform="matrix(1.7836945,0,0,1.7836945,-24.915171,-25.29453)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.303644;filter:url(#filter4807-0)"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4807-0)"
d="m 32,42 3,-4"
id="path4521-0"
transform="matrix(0.89184726,0,0,0.89184726,3.623942,12.163055)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.303644;filter:url(#filter4807-7)"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4807-7)"
d="m 37,37 3,-4"
id="path4521-7"
transform="matrix(0.89184726,0,0,0.89184726,8.0831783,11.271207)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.303644;filter:url(#filter4807-7-1)"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4807-7-1)"
d="m 37,37 3,-4"
id="path4521-7-8"
transform="matrix(0.89184726,0,0,0.89184726,-1.7271416,29.108152)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.303644;filter:url(#filter4807-7-2)"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4807-7-2)"
d="m 37,37 3,-4"
id="path4521-7-5"
transform="matrix(0.89184726,0,0,0.89184726,1.8402474,14.838596)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.303644;filter:url(#filter4807-7-9)"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4807-7-9)"
d="m 37,37 3,-4"
id="path4521-7-6"
transform="matrix(0.59456483,0,0,0.59456483,28.001101,8.0011013)" />
<path
style="fill:none;stroke:#000000;stroke-width:0.25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.303644;filter:url(#filter4807-7-4)"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4807-7-4)"
d="m 30,49 3,-4"
id="path4521-7-3"
transform="matrix(1.7836945,0,0,1.7836945,-24.915171,-25.29453)" />

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 119 KiB

View file

@ -56,21 +56,21 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 10,70 C 10,50 15,10 40,10 65,10 70,50 70,70"
id="path3206"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 10,70 C 10,50 15,10 40,10 50,10 50,50 50,70"
id="path3206-0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 45,65 5,5 5,-5"
id="path3238" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 64.999998,65.000003 5,5 5,-5"
id="path3238-3" />
</g>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -56,35 +56,35 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 10,70 C 10,50 15,10 40,10 65,10 70,50 70,70"
id="path3206"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 10,70 C 10,50 15,10 40,10 50,10 50,50 50,70"
id="path3206-0"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 45,65 5,5 5,-5"
id="path3238" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 64.999998,65.000003 5,5 5,-5"
id="path3238-3" />
<circle
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3261"
cx="30.075506"
cy="44.96954"
r="10" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 30,45 V 35"
id="path3263" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 30,45 5,-5"
id="path3265" />
</g>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -56,7 +56,7 @@
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:#c8c8c8;fill-opacity:1;stroke:#c8c8c8;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:#858585;fill-opacity:1;stroke:#858585;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
id="rect2014-9"
width="35"
height="25"
@ -64,11 +64,11 @@
y="-14.701198"
transform="rotate(28.862086)" />
<path
style="fill:#c8c8c8;stroke:#c8c8c8;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
style="fill:#858585;stroke:#858585;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
d="M 64,9 24,74"
id="path2016-9" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round"
id="rect2014"
width="35"
height="25"
@ -76,7 +76,7 @@
y="-8.8191442"
transform="rotate(28.862086)" />
<path
style="fill:none;stroke:#ffffff;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50,8 10,73"
id="path2016" />
</g>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -57,7 +57,7 @@
id="layer1">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40.227px;line-height:1.25;font-family:sans-serif;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.00567;"
style="font-style:normal;font-weight:normal;font-size:40.227px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.00567;"
x="40.134941"
y="52.558258"
id="text1981"><tspan
@ -65,6 +65,6 @@
id="tspan1979"
x="40.134941"
y="52.558258"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;stroke-width:1.00567;fill:#ffffff;fill-opacity:1;">-13</tspan></text>
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:sans-serif;text-align:center;text-anchor:middle;stroke-width:1.00567;fill:#000000;fill-opacity:1;">-13</tspan></text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -56,23 +56,23 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 25,70 V 10"
id="path1410" />
<path
style="fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 55,70 V 35"
id="path1412" />
<path
style="fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50,40 5,-5 5,5"
id="path1414" />
<path
style="fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50,40 5,-5 5,5"
id="path1414-5" />
<path
style="fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 20,14 5,-5 5,5"
id="path1414-2" />
</g>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -57,24 +57,24 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:#ffffff;fill-opacity:1;stroke:#fffffe;stroke-width:1.12857;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.12857;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 80,49.594555 C 71.240211,34.223174 63.071429,20.251699 40.5,21.38027 19.195563,22.400274 3.068856,38.027037 1,49.594555 11.691775,42.560284 22.442857,32.665984 34.857143,32.665984 c 23.7,0 24.828571,12.414286 32.728571,22.571428 L 80,49.594555"
id="path7856"
sodipodi:nodetypes="cccccc" />
<circle
style="opacity:1;fill:#c8c8c8;fill-opacity:0.9;stroke:#c8c8c8;stroke-width:1.12857;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.8;stroke-opacity:1;paint-order:fill markers stroke"
style="opacity:1;fill:#ffffff;fill-opacity:0.9;stroke:#ffffff;stroke-width:1.12857;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.8;stroke-opacity:1;paint-order:fill markers stroke"
id="path7952"
cx="67.659851"
cy="42.306633"
r="9.5928574" />
<circle
style="opacity:1;fill:#c8c8c8;fill-opacity:0.9;stroke:#c8c8c8;stroke-width:1.12857;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.8;stroke-opacity:1;paint-order:fill markers stroke"
style="opacity:1;fill:#ffffff;fill-opacity:0.9;stroke:#ffffff;stroke-width:1.12857;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.8;stroke-opacity:1;paint-order:fill markers stroke"
id="path7952-8"
cx="45.088421"
cy="27.635202"
r="9.5928574" />
<circle
style="opacity:1;fill:#c8c8c8;fill-opacity:0.9;stroke:#c8c8c8;stroke-width:1.12857;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.8;stroke-opacity:1;paint-order:fill markers stroke"
style="opacity:1;fill:#ffffff;fill-opacity:0.9;stroke:#ffffff;stroke-width:1.12857;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:3.8;stroke-opacity:1;paint-order:fill markers stroke"
id="path7952-8-5"
cx="20.25985"
cy="32.14949"

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 68 KiB

View file

@ -56,17 +56,17 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:none;stroke:#ffffff;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 70,10 H 15 l 10,35 30,25"
id="path2217" />
<circle
style="opacity:0.895082;fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="opacity:0.895082;fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path2219"
cx="49.642857"
cy="34.82143"
r="10" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 50,25 v 10 l 5,-5"
id="path2221" />
</g>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -56,7 +56,7 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:none;stroke:#ffffff;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 70,10 H 15 l 10,35 30,25"
id="path2217" />
</g>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -56,7 +56,7 @@
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round"
id="rect2014"
width="35"
height="25"
@ -64,11 +64,11 @@
y="20.259903"
transform="matrix(-0.87578413,0.48270296,0.48270296,0.87578413,0,0)" />
<path
style="fill:none;stroke:#ffffff;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 13.870784,6 40,65"
id="path2016" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round"
id="rect2014-3"
width="35"
height="25"
@ -76,7 +76,7 @@
y="-18.293955"
transform="rotate(28.862086)" />
<path
style="fill:none;stroke:#ffffff;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 66,6.000001 26,71"
id="path2016-0" />
</g>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -56,7 +56,7 @@
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round"
id="rect2014"
width="35"
height="25"
@ -64,7 +64,7 @@
y="-11.715361"
transform="rotate(28.862086)" />
<path
style="fill:none;stroke:#ffffff;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 56,8 16,73"
id="path2016" />
</g>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -56,59 +56,59 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 4,50 H 74"
id="path8561" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 73,50 68,60"
id="path8563-72-05" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 10,10 30,40"
id="path8668" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 25.125139,38.888363 30,40 31.111637,35.125141"
id="path8670" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 65,50 60,60"
id="path8563-72-05-5" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 57,50 52,60"
id="path8563-72-05-8" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 49,50 44,60"
id="path8563-72-05-4" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 41,50 36,60"
id="path8563-72-05-1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 33,50 28,60"
id="path8563-72-05-19" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 25,50 20,60"
id="path8563-72-05-7" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 17,50 12,60"
id="path8563-72-05-57" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 9,50 4,60"
id="path8563-72-05-47" />
<path
style="fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 44,26 59,41"
id="path8729" />
<path
style="fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 59,26 44,41"
id="path8729-1" />
</g>

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="80.0px"
height="80.0px"
viewBox="0 0 80.0 80.0"
version="1.1"
id="SVGRoot"
sodipodi:docname="oos_offset.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
inkscape:version="1.2 (56b05e47e7, 2022-06-09, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs833">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1634"
x="-0.2825563"
x="-0.28255629"
width="1.5651126"
y="-0.2825563"
y="-0.28255629"
height="1.5651126">
<feGaussianBlur
inkscape:collect="always"
@ -33,9 +33,9 @@
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1634-6"
x="-0.2825563"
x="-0.28255629"
width="1.5651126"
y="-0.2825563"
y="-0.28255629"
height="1.5651126">
<feGaussianBlur
inkscape:collect="always"
@ -46,9 +46,9 @@
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1634-7"
x="-0.2825563"
x="-0.28255629"
width="1.5651126"
y="-0.2825563"
y="-0.28255629"
height="1.5651126">
<feGaussianBlur
inkscape:collect="always"
@ -58,23 +58,26 @@
</defs>
<sodipodi:namedview
id="base"
pagecolor="#000000"
pagecolor="#3c3c3c"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="7.9999996"
inkscape:cx="47.650116"
inkscape:cy="47.973079"
inkscape:cx="45.000002"
inkscape:cy="48.187502"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="true"
inkscape:window-width="1431"
inkscape:window-height="1150"
inkscape:window-x="224"
inkscape:window-y="0"
inkscape:window-maximized="0">
inkscape:window-width="1848"
inkscape:window-height="1016"
inkscape:window-x="72"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:showpageshadow="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#3c3c3c">
<inkscape:grid
type="xygrid"
id="grid1403" />
@ -87,7 +90,6 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
@ -95,57 +97,57 @@
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<circle
style="display:inline;fill:#010101;fill-opacity:0.75333756;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
id="path1410"
cx="40.714287"
cy="40.357143"
r="32.5"
inkscape:label="Circle" />
<g
id="g2429"
style="stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none">
id="g3283"
inkscape:label="Rings">
<circle
style="opacity:1;fill:#808080;fill-opacity:1;stroke:#000000;stroke-opacity:1;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
id="path1410"
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#a6a6a6;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1410-8"
cx="40.714287"
cy="40.357143"
r="32.5" />
r="24.19034"
inkscape:label="lg" />
<circle
style="opacity:0.895082;fill:#ffffff;fill-opacity:1;filter:url(#filter1634);stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
id="path1412"
cx="55"
cy="25"
r="5" />
</g>
<g
id="g2425"
transform="matrix(0.90762124,0,0,0.90762124,7.5617993,-0.86668966)"
style="stroke-width:1.10178118;stroke-miterlimit:4;stroke-dasharray:none">
<circle
style="opacity:0.5;fill:#808080;fill-opacity:1;stroke:#000000;stroke-width:1.10178118;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
id="path1410-8"
cx="36.526787"
cy="45.419643"
r="26.652462" />
<circle
style="opacity:0.5;fill:#ffffff;fill-opacity:1;filter:url(#filter1634-6);stroke-width:1.34351147;stroke-miterlimit:4;stroke-dasharray:none"
id="path1412-3"
cx="54.75"
cy="25.625"
r="5"
transform="matrix(0.82007575,0,0,0.82007575,3.3430063,11.811182)" />
</g>
<g
id="g2421"
transform="matrix(0.76751592,0,0,0.76751592,16.085248,0.74783926)"
style="stroke-width:1.30290457;stroke-miterlimit:4;stroke-dasharray:none">
<circle
style="opacity:0.5;fill:#808080;fill-opacity:1;stroke:#000000;stroke-width:1.30290457;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#a6a6a6;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1410-1"
cx="32.089287"
cy="51.607143"
r="19.327652" />
cx="40.714287"
cy="40.357143"
r="14.834281"
inkscape:label="sm" />
</g>
<g
id="g3279"
inkscape:label="Highlights">
<circle
style="opacity:0.5;fill:#ffffff;fill-opacity:1;filter:url(#filter1634-7);stroke-width:2.19087145;stroke-miterlimit:4;stroke-dasharray:none"
style="opacity:0.5;fill:#ffffff;fill-opacity:1;stroke-width:2.19087;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter1634-7)"
id="path1412-4"
cx="45"
cy="35"
r="5"
transform="matrix(0.59469695,0,0,0.59469695,13.823594,21.659903)" />
transform="matrix(0.45643938,0,0,0.45643938,26.695076,17.37216)"
inkscape:label="small" />
<circle
style="display:inline;opacity:0.5;fill:#ffffff;fill-opacity:1;stroke-width:1.34351;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter1634-6)"
id="path1412-3"
cx="54.75"
cy="25.625"
r="5"
transform="matrix(0.74431817,0,0,0.74431817,10.595983,9.85339)"
inkscape:label="med" />
<circle
style="display:inline;opacity:0.895082;fill:#ffffff;fill-opacity:1;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter1634)"
id="path1412"
cx="55"
cy="25"
r="5"
inkscape:label="lg" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View file

@ -75,41 +75,41 @@
id="g18"
transform="translate(-15,-30)">
<circle
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3261"
cx="30.075506"
cy="44.96954"
r="10" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 30,45 V 35"
id="path3263" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 30,45 5,-5"
id="path3265" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 44,19 c -3,4 -5,7 -5,11 0,3 9,17 17,17"
id="path47"
sodipodi:nodetypes="ccc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 59,50 c -2.821595,-3.86007 -3,-2 -3,-7 0,-3 4,-7 7,-7 9.167808,0.161683 10,9 10,13 C 72,57 55,63 45,63 38,63 22,43 22,39 22,28 37,10 49,10 c 13,0 27,14 27,26 0,5 -1,5 -3,7"
id="path2904"
sodipodi:nodetypes="ccccccccc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 23,43 12,54 c -3.0180618,3.403516 -2.4491226,5.976976 -1,8 l 12,12 c 3,2 8,1 9,0 L 43,63"
id="path590"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 22,56 8,8"
id="path2442" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2.8;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 24,67 18,61"
id="path2510" />
</g>

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View file

@ -14,15 +14,15 @@
<g
id="layer1">
<path
style="fill:none;stroke:#ffffff;stroke-width:2.11667;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.11667;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 1.8552457,17.110952 8.469829,10.496369 1.8552457,3.8817854"
id="path1904" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.11667;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.11667;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 7.22203,17.110952 13.836612,10.49637 7.22203,3.8817855"
id="path1904-3" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.11667;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.11667;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12.588812,17.110952 19.203396,10.496369 12.588812,3.8817854"
id="path1904-2" />
</g>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -56,19 +56,19 @@
inkscape:groupmode="layer"
id="layer1">
<ellipse
style="fill:none;stroke:#ffffff;stroke-width:2.7344;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:2.7344;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
id="path3734"
cx="40.085613"
cy="41.100887"
rx="32.307693"
ry="31.5" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.911465px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.911465px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 40.085612,9.6008877 V 41.100888 l 27.692308,-13.5 c 0,-9 -13.846154,-18.0000003 -27.692308,-18.0000003 z"
id="path3740"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 40,10 V 5"
id="path3742" />
</g>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -56,17 +56,17 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:#ffffff;stroke:#ffffff;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:#000000;stroke:#000000;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 15,65 65,15"
id="path6070" />
<circle
style="opacity:1;fill:none;stroke:#ffffff;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke"
style="opacity:1;fill:none;stroke:#000000;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke"
id="path6072"
cx="22.5"
cy="22.5"
r="7.5" />
<circle
style="opacity:1;fill:none;stroke:#ffffff;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke"
style="opacity:1;fill:none;stroke:#000000;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke"
id="path6072-8"
cx="60.051399"
cy="55.43021"

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -26,43 +26,43 @@
<g
id="layer2">
<path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16,59 c 4,6 9,10 24,11 C 54,70 71,59 71,40 71,20 55,9 41,9 22,9 11,26 11,40"
id="path1411" />
<path
style="fill:none;stroke:#ffffff;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 4,35 6,6 9,-3"
id="path1994" />
<g
id="g1081"
transform="matrix(0.72998083,0,0,0.72998083,10.443068,11.062008)"
style="fill-opacity:1;fill:#ffffff">
style="fill-opacity:1;fill:#000000">
<path
style="fill:#ffffff;fill-opacity:1;stroke-width:0.231235"
style="fill:#000000;fill-opacity:1;stroke-width:0.231235"
d="M 37.436485,65.300014 C 33.041939,64.653281 33.521093,65.06276 33.375173,61.829246 33.235022,58.723565 32.945821,57.710961 31.932138,56.776614 31.43851,56.321618 31.182925,56.254146 30.399313,56.371953 27.460507,56.813771 27.970242,56.976105 25.26075,54.735481 21.83863,51.90555 21.314071,50.846685 22.280091,48.718784 23.196625,46.699891 23.070694,44.812 21.749519,40.764688 c -0.862927,-2.643503 -1.159013,-4.95161 -1.013117,-7.897656 0.275377,-5.560663 2.419578,-10.270013 6.457135,-14.181936 3.991779,-3.86757 8.343884,-5.765956 13.827084,-6.03137 6.333105,-0.306553 12.061813,1.980208 16.439444,6.562222 3.105283,3.250262 5.091914,7.253125 5.779453,11.645013 0.405243,2.588632 0.143811,6.366227 -0.615096,8.88787 -1.688347,5.609939 -1.75988,6.299664 -0.908941,8.764231 0.908939,2.632559 0.743632,3.05113 -2.225214,5.634431 -3.237249,2.816851 -3.094457,2.761056 -5.712751,2.232193 -1.021754,-0.206384 -1.701748,0.186067 -2.375371,1.370922 -0.471658,0.829612 -0.561706,1.36535 -0.665384,3.958775 -0.119907,2.99932 -0.119907,2.99932 -1.854166,3.294035 -2.197868,0.3735 -9.617195,0.565753 -11.44611,0.296596 z M 45.18445,53.780182 c 0.0031,-0.299689 -2.892638,-7.201136 -3.023288,-7.205525 -0.142114,-0.0048 -2.990418,6.813381 -2.990418,7.158344 0,0.115169 1.352723,0.208287 3.00605,0.206929 1.653326,-0.0014 3.006772,-0.07325 3.007656,-0.159748 z M 34.062384,46.909968 c 2.84111,-0.897507 4.00555,-2.139028 4.00555,-4.270705 0,-0.591771 -0.164352,-1.393771 -0.365228,-1.78222 -0.77255,-1.493948 -2.812282,-2.572983 -4.246353,-2.246355 -1.24848,0.284356 -3.426389,1.108603 -4.035421,1.527237 -0.778076,0.534829 -1.582233,2.173274 -1.575602,3.210238 0.01096,1.713774 1.295952,3.419048 2.952726,3.91847 0.989572,0.298302 1.297496,0.264658 3.264328,-0.356665 z m 19.815638,0.144166 c 2.753918,-1.25066 3.376688,-4.421607 1.280156,-6.518139 -0.638684,-0.638684 -1.330646,-1.000637 -2.800875,-1.465081 -1.760934,-0.556279 -2.063375,-0.590268 -3.080721,-0.346209 -2.783895,0.667845 -3.966278,3.792399 -2.364568,6.248572 0.591993,0.907801 1.525762,1.432491 3.685102,2.070682 1.799946,0.531974 2.12967,0.532996 3.280906,0.01017 z"
id="path1095" />
<path
style="fill:#ffffff;fill-opacity:1;stroke-width:0.231235"
style="fill:#000000;fill-opacity:1;stroke-width:0.231235"
d="m 38.93951,65.425188 c -0.190769,-0.04702 -1.396814,-0.208033 -2.680101,-0.357803 -1.283288,-0.149773 -2.442817,-0.340747 -2.576733,-0.424387 -0.141733,-0.08852 -0.277944,-1.359958 -0.325947,-3.042503 -0.07614,-2.668674 -0.131896,-2.974523 -0.726762,-3.9865 -0.699974,-1.190786 -1.301985,-1.482789 -2.538138,-1.231116 -2.142083,0.436118 -2.096307,0.443466 -3.416321,-0.548349 -2.642734,-1.985664 -4.361768,-3.699455 -4.639033,-4.624883 -0.234881,-0.783964 -0.193394,-1.107468 0.340173,-2.652556 0.334223,-0.967834 0.607679,-2.065824 0.607679,-2.439975 0,-0.984245 -0.408883,-2.832256 -1.153209,-5.212112 -1.766649,-5.64856 -1.458054,-11.051576 0.91471,-16.015167 1.176674,-2.461485 2.053667,-3.732893 3.924066,-5.688854 2.706973,-2.830805 6.240339,-4.922792 10.072888,-5.963818 2.659407,-0.722368 7.977381,-0.722368 10.636789,0 3.832548,1.041026 7.365913,3.133013 10.072888,5.963818 1.870399,1.955961 2.747393,3.227369 3.924064,5.688854 2.349135,4.91416 2.681162,10.596743 0.92899,15.899549 -1.339942,4.05523 -1.433876,5.335481 -0.576579,7.858266 0.83136,2.446459 0.615095,3.023324 -1.978316,5.276964 -2.889601,2.511026 -3.535048,2.905679 -4.445719,2.718298 -2.737676,-0.563301 -3.199324,-0.409771 -4.01124,1.334024 -0.487907,1.047907 -0.556949,1.530671 -0.558928,3.908195 -0.0026,3.084916 0.307155,2.697584 -2.545839,3.183736 -1.474287,0.251218 -8.567187,0.524461 -9.249382,0.356319 z m 6.243333,-11.654695 c 0,-0.109593 -0.531627,-1.488329 -1.181392,-3.063857 -0.649764,-1.575528 -1.331612,-3.228615 -1.515215,-3.673524 -0.333824,-0.808928 -0.333824,-0.808928 -1.822544,2.774814 -0.818795,1.971057 -1.489671,3.713812 -1.490834,3.872786 -0.0016,0.216521 0.752125,0.289043 3.003936,0.289043 1.653326,0 3.006049,-0.08967 3.006049,-0.199262 z m -10.92159,-6.8503 c 1.32811,-0.419549 2.045316,-0.800129 2.652955,-1.407767 2.236743,-2.236746 1.237877,-5.956377 -1.830196,-6.815386 -0.945334,-0.264676 -1.243597,-0.241388 -2.820835,0.220255 -2.18845,0.640541 -3.005357,1.105022 -3.664997,2.083861 -1.4142,2.098532 -0.705132,4.835775 1.547471,5.973754 1.307676,0.660617 1.875044,0.653074 4.115602,-0.05472 z m 20.304946,-0.130055 c 2.172987,-1.34298 2.506536,-4.500997 0.669429,-6.338107 -1.032592,-1.032591 -4.150542,-2.082507 -5.543712,-1.866749 -1.321998,0.204735 -2.522834,1.082698 -3.093652,2.261853 -0.618839,1.27835 -0.621179,2.301068 -0.0082,3.567385 0.603932,1.247556 1.429437,1.840805 3.529483,2.536467 1.904751,0.630967 3.243809,0.58253 4.44662,-0.160849 z"
id="path1093" />
<path
style="fill:#ffffff;fill-opacity:1;stroke-width:0.231235"
style="fill:#000000;fill-opacity:1;stroke-width:0.231235"
d="m 38.93951,65.395097 c -1.963204,-0.232756 -4.550115,-0.598585 -5.006628,-0.708014 -0.470758,-0.112845 -0.5023,-0.277008 -0.58566,-3.048143 -0.07501,-2.493719 -0.166303,-3.077487 -0.614432,-3.929114 -0.733363,-1.393693 -1.701497,-1.791081 -3.100389,-1.272616 -0.560242,0.207642 -1.270707,0.31364 -1.578811,0.235552 -0.308105,-0.07809 -1.392634,-0.831337 -2.410066,-1.673886 -3.96188,-3.28089 -4.176724,-3.703284 -3.242977,-6.375872 0.853176,-2.441977 0.741007,-3.825165 -0.657664,-8.109878 -3.812885,-11.680453 3.234456,-24.302593 15.231133,-27.279723 2.908052,-0.72167 7.254781,-0.725521 10.128385,-0.009 7.725107,1.926298 13.779523,7.965702 15.695297,15.656377 0.777001,3.119185 0.721396,7.509566 -0.133249,10.521171 -1.366423,4.814999 -1.518286,5.476774 -1.51232,6.590185 0.0034,0.635894 0.170526,1.572394 0.371374,2.08111 0.516351,1.307833 0.63703,2.790333 0.294466,3.617359 -0.330254,0.797302 -4.880414,4.748304 -5.72441,4.970627 -0.294466,0.07757 -1.021377,-0.01408 -1.615359,-0.203643 -1.412181,-0.450707 -2.197731,-0.176883 -3.009411,1.049002 -0.5814,0.878097 -0.625776,1.131687 -0.700872,4.005227 -0.09144,3.498891 0.248325,3.068866 -2.81026,3.556817 -1.635755,0.26096 -7.714481,0.480994 -9.018147,0.326434 z m 6.243333,-11.673928 c 0,-0.301528 -2.748984,-6.968262 -2.967988,-7.197855 -0.117447,-0.123126 -1.841881,3.740642 -3.236805,7.252396 -0.0424,0.106724 1.336341,0.194045 3.063857,0.194045 2.085958,0 3.140936,-0.08349 3.140936,-0.248586 z M 34.388754,46.89248 c 2.814615,-0.937353 4.148311,-2.691748 3.744714,-4.925932 -0.332205,-1.838976 -2.199924,-3.489507 -3.948675,-3.489507 -0.939068,0 -4.112162,1.086243 -4.835754,1.655422 -2.32395,1.828018 -1.826533,5.68566 0.892332,6.920346 1.277598,0.580181 2.008695,0.551919 4.147383,-0.160329 z m 19.522156,0.247037 c 1.14666,-0.479104 1.662334,-0.972119 2.167535,-2.072292 0.558293,-1.215789 0.543801,-2.288204 -0.04743,-3.509516 -0.60142,-1.242365 -1.366004,-1.79422 -3.483874,-2.514555 -1.937186,-0.65888 -2.667779,-0.69895 -3.83694,-0.210442 -1.14666,0.479104 -1.662333,0.972119 -2.167535,2.072292 -0.539257,1.174338 -0.539257,2.294179 0,3.468518 0.589595,1.283955 1.134777,1.700494 3.203133,2.447312 2.069771,0.747329 2.973685,0.816492 4.165107,0.318683 z"
id="path1091" />
<path
style="fill:#ffffff;fill-opacity:1;stroke-width:0.231235"
style="fill:#000000;fill-opacity:1;stroke-width:0.231235"
d="m 38.477041,65.299385 c -0.953843,-0.09208 -2.480552,-0.293668 -3.392688,-0.44798 -1.658429,-0.280566 -1.658429,-0.280566 -1.734259,-3.210955 -0.08623,-3.332303 -0.467678,-4.442414 -1.792445,-5.216494 -0.726309,-0.424394 -0.780243,-0.424787 -1.987213,-0.01452 -0.961382,0.326785 -1.3608,0.365143 -1.774456,0.170406 -0.963159,-0.453421 -5.294962,-4.253427 -5.518294,-4.840835 -0.332618,-0.874852 -0.261018,-2.334289 0.153882,-3.136618 0.862949,-1.668759 0.697863,-3.764593 -0.630368,-8.002775 -2.473699,-7.8932 -0.550677,-15.893433 5.212969,-21.687198 6.889894,-6.925899 17.595022,-8.232719 26.083786,-3.184158 2.52762,1.503262 5.699672,4.675314 7.202935,7.202933 3.175918,5.340065 3.923423,11.880047 2.013433,17.615725 -1.296419,3.893134 -1.480847,5.927272 -0.713828,7.873212 0.543905,1.379897 0.589997,2.551167 0.13502,3.430996 -0.422581,0.81718 -4.960362,4.587691 -5.763997,4.78939 -0.373007,0.09362 -0.987485,0.005 -1.563682,-0.225572 -1.465653,-0.586439 -2.461885,-0.09411 -3.240475,1.601419 -0.336899,0.733666 -0.425784,1.505802 -0.429812,3.733825 -0.0051,2.808885 -0.0051,2.808885 -1.497801,3.068832 -3.736035,0.650601 -7.335134,0.81124 -10.762707,0.480369 z m 6.575115,-12.19676 c -0.202469,-0.476921 -0.906241,-2.192156 -1.563937,-3.811635 -0.657693,-1.619479 -1.252155,-2.946187 -1.321026,-2.94824 -0.093,-0.0028 -2.573458,5.768543 -3.189143,7.420228 -0.04302,0.115412 1.363215,0.206777 3.182578,0.206777 3.259655,0 3.259655,0 2.891528,-0.86713 z M 34.429648,46.882051 c 2.060388,-0.68262 3.121567,-1.567014 3.592527,-2.994036 0.908109,-2.751599 -1.497662,-5.682325 -4.383903,-5.340491 -1.45617,0.172461 -3.575567,0.996616 -4.445661,1.728751 -1.734189,1.459224 -1.818851,4.47442 -0.168179,5.989571 1.509892,1.385927 2.679475,1.519262 5.405216,0.616205 z m 19.481262,0.257466 c 0.468183,-0.195618 1.051842,-0.533798 1.29702,-0.751512 0.640675,-0.568902 1.295249,-2.112811 1.295249,-3.055039 0,-1.062298 -0.700446,-2.572653 -1.476032,-3.182728 -0.752838,-0.59218 -3.916767,-1.67513 -4.87355,-1.668119 -1.079276,0.0079 -2.530985,0.783656 -3.263339,1.743821 -0.580621,0.761233 -0.66686,1.073328 -0.66686,2.413323 0,2.331112 0.884814,3.325904 3.919132,4.406262 1.463999,0.521253 2.673596,0.551422 3.76838,0.09399 z"
id="path1089" />
<path
style="fill:#ffffff;fill-opacity:1;stroke-width:0.231235"
style="fill:#000000;fill-opacity:1;stroke-width:0.231235"
d="m 39.170744,65.294836 c -1.2082,-0.0934 -3.003158,-0.300746 -3.988795,-0.460776 -1.792068,-0.290967 -1.792068,-0.290967 -1.792068,-3.041484 0,-1.959495 -0.102925,-2.99685 -0.357888,-3.607062 -0.764727,-1.830249 -1.943846,-2.435135 -3.488651,-1.789676 -0.492789,0.2059 -1.137454,0.308688 -1.44769,0.230823 -0.762197,-0.191298 -5.302083,-3.989004 -5.708815,-4.775539 -0.454977,-0.879829 -0.408884,-2.051099 0.135021,-3.430996 0.759685,-1.927337 0.583539,-3.768075 -0.79169,-8.273195 -1.165263,-3.817289 -1.269399,-7.118948 -0.350046,-11.098321 1.775353,-7.684527 7.656018,-13.671937 15.416269,-15.6961 3.211894,-0.837782 7.312913,-0.839064 10.516612,-0.0033 7.575773,1.976358 13.397401,7.808794 15.374752,15.403299 0.460504,1.768673 0.576912,2.785972 0.583567,5.099829 0.0089,3.079399 -0.312868,4.936799 -1.378128,7.956281 -0.831996,2.358289 -0.965858,5.192767 -0.315874,6.688475 0.5424,1.248137 0.61862,2.38422 0.218829,3.261667 -0.290521,0.637622 -4.61619,4.334866 -5.591681,4.779329 -0.491008,0.223717 -0.795271,0.200859 -1.644753,-0.123561 -1.586613,-0.605933 -2.597804,-0.128464 -3.392354,1.601818 -0.337533,0.735043 -0.425774,1.506488 -0.429812,3.757561 -0.0028,1.557942 -0.09081,2.832623 -0.195582,2.832623 -0.10478,0 -1.223377,0.1466 -2.485772,0.325777 -3.094767,0.439255 -6.235258,0.567382 -8.885451,0.362516 z M 45.375537,53.77571 c -1.134582,-2.856334 -3.118267,-7.434648 -3.221652,-7.435522 -0.109702,-9.25e-4 -2.435094,5.394657 -3.113795,7.224907 -0.138477,0.373429 0.103184,0.40466 3.131232,0.40466 1.804712,0 3.24661,-0.08732 3.204215,-0.194045 z M 34.264518,47.013316 c 1.962181,-0.66264 2.850487,-1.308716 3.461011,-2.517231 1.093452,-2.164459 0.332397,-4.472094 -1.840664,-5.58118 -1.154333,-0.589147 -2.312009,-0.551194 -4.352077,0.142676 -2.606934,0.886676 -3.692536,2.143636 -3.692536,4.275385 0,1.327164 0.348773,2.14 1.308955,3.050599 1.287165,1.220696 2.810199,1.408197 5.115311,0.629751 z m 19.934286,0.05287 c 1.738297,-0.932259 2.589839,-2.771292 2.213093,-4.779516 -0.458536,-2.444206 -5.263233,-4.58769 -7.825772,-3.491255 -2.718821,1.163306 -3.342449,4.862148 -1.164634,6.907646 0.83352,0.782879 3.526348,1.751724 4.933229,1.774917 0.60577,0.01 1.380011,-0.162907 1.844084,-0.411792 z"
id="path1087" />
<path
style="fill:#ffffff;fill-opacity:1;stroke-width:0.231235"
style="fill:#000000;fill-opacity:1;stroke-width:0.231235"
d="m 36.164695,64.951992 c -1.081021,-0.179219 -2.14759,-0.330261 -2.370154,-0.335651 -0.363356,-0.0088 -0.40466,-0.305764 -0.40466,-2.909442 0,-2.429641 -0.07392,-3.044531 -0.456018,-3.793511 -0.679872,-1.33266 -1.551436,-1.933137 -2.547381,-1.755054 -2.767227,0.494801 -2.452315,0.597057 -5.24207,-1.702175 -1.399651,-1.153548 -2.666366,-2.364126 -2.814922,-2.690171 -0.402973,-0.88443 -0.328261,-2.017514 0.215542,-3.268882 0.727378,-1.673802 0.517931,-4.2497 -0.626718,-7.70772 -0.880228,-2.659197 -0.880228,-2.659197 -0.881336,-6.821418 -0.0011,-3.95383 0.03166,-4.260629 0.653437,-6.127715 1.967494,-5.908065 5.572351,-10.203388 10.769331,-12.832062 4.983103,-2.520494 11.331391,-2.934252 16.65512,-1.08552 7.101099,2.465945 12.540663,8.874401 13.861248,16.330204 0.312238,1.76284 0.312287,5.666923 9.2e-5,7.430185 -0.133612,0.754637 -0.544976,2.308567 -0.914142,3.453178 -1.26266,3.914926 -1.333603,5.462528 -0.357488,7.798695 0.826832,1.978893 0.360684,2.921648 -2.715861,5.492655 -2.5409,2.12338 -3.188658,2.415187 -4.312402,1.942689 -1.114775,-0.468729 -1.737869,-0.394618 -2.570135,0.305687 -1.117871,0.940628 -1.34042,1.730821 -1.398227,4.96461 -0.05175,2.894911 -0.05175,2.894911 -1.805682,3.195396 -2.594607,0.444511 -10.331113,0.51498 -12.737574,0.116022 z m 9.249382,-11.07212 c 0,-0.192857 -3.054298,-7.434813 -3.200462,-7.588516 -0.13486,-0.141821 -3.274105,7.057999 -3.274105,7.509119 0,0.0931 1.456778,0.16928 3.237284,0.16928 1.780505,0 3.237283,-0.04045 3.237283,-0.08988 z M 34.55327,46.914648 c 0.938773,-0.319298 1.992754,-0.854444 2.342178,-1.189216 2.814219,-2.696192 1.003076,-7.248391 -2.883854,-7.248391 -1.187605,0 -3.415663,0.719993 -4.475623,1.446289 -2.444567,1.675044 -2.301081,5.471693 0.264931,7.010062 1.217309,0.729797 2.567215,0.724474 4.752368,-0.01875 z m 19.601394,0.254333 c 0.710889,-0.371388 1.715573,-1.397693 2.099182,-2.144363 0.362758,-0.706079 0.323784,-2.747718 -0.06672,-3.495202 -0.581863,-1.113772 -1.624599,-1.879433 -3.366329,-2.471835 -2.746937,-0.934292 -4.226024,-0.741433 -5.5864,0.728414 -0.901939,0.97452 -1.17998,1.645555 -1.17998,2.847808 0,1.980776 1.18534,3.411396 3.555943,4.291762 1.674883,0.621998 3.62018,0.726199 4.544302,0.243416 z"
id="path1085" />
<path
style="fill:#ffffff;fill-opacity:1;stroke-width:0.231235"
style="fill:#000000;fill-opacity:1;stroke-width:0.231235"
d="m 23.87977,53.33386 c -0.287626,-0.366752 -0.279447,-0.374931 0.0873,-0.08731 0.222563,0.174547 0.40466,0.356645 0.40466,0.404661 0,0.190315 -0.189887,0.06782 -0.491964,-0.317356 z m 1.648137,-32.749182 c 0,-0.04802 0.182097,-0.230114 0.40466,-0.40466 0.366751,-0.287626 0.37493,-0.279447 0.0873,0.0873 -0.302078,0.385178 -0.491964,0.50767 -0.491964,0.317356 z M 55.5589,17.723742 c -0.287625,-0.366751 -0.279446,-0.37493 0.08731,-0.0873 0.385179,0.302078 0.507671,0.491964 0.317356,0.491964 -0.04802,0 -0.230113,-0.182097 -0.404661,-0.40466 z"
id="path1083" />
</g>

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View file

@ -59,12 +59,12 @@
id="layer2"
inkscape:label="Layer 2">
<path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16,59 c 4,6 9,10 24,11 C 54,70 71,59 71,40 71,20 55,9 41,9 22,9 11,26 11,40"
id="path1411"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#ffffff;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 4,35 6,6 9,-3"
id="path1994"
sodipodi:nodetypes="ccc" />

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -56,15 +56,15 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:8, 4, 2, 4;stroke-dashoffset:3.8"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:8, 4, 2, 4;stroke-dashoffset:3.8"
d="M 40,10 V 65"
id="path6666" />
<path
style="fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 50,15 70,10 V 65 L 50,60 Z"
id="path6668" />
<path
style="fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 30,15 10,10 V 65 L 30,60 V 15"
id="path6670" />
</g>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -56,7 +56,7 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:#fffff9;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;fill-opacity:1"
style="fill:#000000;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;fill-opacity:1"
d="M 30,68 C 60,41 62,5 18,42 l 29,-30 -1,14 12,-10 -2,7 13,-6 -16,19 10,2 -19,15 3,2 z"
id="path5486"
sodipodi:nodetypes="cccccccccccc" />

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -56,12 +56,12 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:#fffff9;fill-opacity:1;stroke:#ffffff;stroke-width:0.745098px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.745098px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 13.078431,76.294118 C 35.431373,56.176471 36.921569,29.352942 4.137255,56.921569 L 25.745098,34.568628 25,45 l 8.941177,-7.45098 -1.490197,5.215686 9.686275,-4.470588 -11.921569,14.156863 7.450981,1.490196 -14.156863,11.17647 2.235294,1.490196 z"
id="path5486"
sodipodi:nodetypes="cccccccccccc" />
<path
style="fill:#fffff9;fill-opacity:1;stroke:#ffffff;stroke-width:1.27997px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.27997px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 24.416453,74.426412 C 64.308035,41.160378 66.967473,-3.1943331 8.459822,42.392453 L 47.021682,5.4301943 45.691964,22.679247 61.648596,10.358495 58.989157,18.983022 76.275509,11.590571 55,35 l 13.297193,2.464152 -25.264668,18.481129 3.989157,2.464151 z"
id="path5486-3"
sodipodi:nodetypes="cccccccccccc" />

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="80.0px"
height="80.0px"
viewBox="0 0 80.0 80.0"
version="1.1"
id="SVGRoot"
sodipodi:docname="shield_state.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
inkscape:version="1.2 (56b05e47e7, 2022-06-09, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs833">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1634"
x="-0.2825563"
x="-0.28255629"
width="1.5651126"
y="-0.2825563"
y="-0.28255629"
height="1.5651126">
<feGaussianBlur
inkscape:collect="always"
@ -32,23 +32,26 @@
</defs>
<sodipodi:namedview
id="base"
pagecolor="#000000"
pagecolor="#3c3c3c"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="11.313708"
inkscape:cx="40.580021"
inkscape:cy="36.252041"
inkscape:zoom="3.9999998"
inkscape:cx="23.250001"
inkscape:cy="42.625002"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="true"
inkscape:window-width="1431"
inkscape:window-height="1150"
inkscape:window-height="1016"
inkscape:window-x="224"
inkscape:window-y="0"
inkscape:window-maximized="0">
inkscape:window-y="27"
inkscape:window-maximized="0"
inkscape:showpageshadow="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#3c3c3c">
<inkscape:grid
type="xygrid"
id="grid1403" />
@ -61,7 +64,6 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@ -70,7 +72,7 @@
inkscape:groupmode="layer"
id="layer1">
<circle
style="opacity:1;fill:#808080;fill-opacity:1"
style="opacity:1;fill:#000000;fill-opacity:0.65006304"
id="path1410"
cx="40.714287"
cy="40.357143"

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="80.0px"
height="80.0px"
viewBox="0 0 80.0 80.0"
version="1.1"
id="SVGRoot"
sodipodi:docname="shield_tilt.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
inkscape:version="1.2 (56b05e47e7, 2022-06-09, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs833">
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter1634"
x="-0.2825563"
x="-0.28255629"
width="1.5651126"
y="-0.2825563"
y="-0.28255629"
height="1.5651126">
<feGaussianBlur
inkscape:collect="always"
@ -32,23 +32,26 @@
</defs>
<sodipodi:namedview
id="base"
pagecolor="#000000"
pagecolor="#3c3c3c"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="7.9999996"
inkscape:cx="56.123582"
inkscape:cy="41.528683"
inkscape:cx="55.437503"
inkscape:cy="41.687502"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="true"
inkscape:window-width="1431"
inkscape:window-height="1150"
inkscape:window-height="1016"
inkscape:window-x="224"
inkscape:window-y="0"
inkscape:window-maximized="0">
inkscape:window-y="27"
inkscape:window-maximized="0"
inkscape:showpageshadow="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#3c3c3c">
<inkscape:grid
type="xygrid"
id="grid1403" />
@ -61,7 +64,6 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
@ -70,7 +72,7 @@
inkscape:groupmode="layer"
id="layer1">
<circle
style="opacity:1;fill:#808080;fill-opacity:1"
style="opacity:1;fill:#000000;fill-opacity:0.64999998"
id="path1410"
cx="40.714287"
cy="40.357143"

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View file

@ -56,51 +56,51 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 4,50 H 74"
id="path8561" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 73,50 68,60"
id="path8563-72-05" />
<path
style="fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 22.874861,12.111637 20,30"
id="path8668" />
<path
style="fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 38,41 4.874861,1.111637 1.111637,-4.874859"
id="path8670" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 65,50 60,60"
id="path8563-72-05-5" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 57,50 52,60"
id="path8563-72-05-8" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 49,50 44,60"
id="path8563-72-05-4" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 41,50 36,60"
id="path8563-72-05-1" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 33,50 28,60"
id="path8563-72-05-19" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 25,50 20,60"
id="path8563-72-05-7" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 17,50 12,60"
id="path8563-72-05-57" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 9,50 4,60"
id="path8563-72-05-47" />
</g>

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View file

@ -57,17 +57,17 @@
inkscape:groupmode="layer"
id="layer1">
<circle
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3261"
cx="45.075508"
cy="44.96954"
r="10" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 45,45 V 35"
id="path3263" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 45,45 5,-5"
id="path3265" />
</g>
@ -97,29 +97,29 @@
<g
id="g2453"
transform="matrix(0.1476827,0,0,0.1476827,28.063629,58.273139)"
style="fill:#ffffff;fill-opacity:1">
style="fill:#000000;fill-opacity:1">
<path
style="fill:#ffffff;fill-opacity:1"
style="fill:#000000;fill-opacity:1"
d="m 177.83434,-320.9277 -22.49167,-22.75 22.75,22.49167 c 21.13932,20.89928 23.20102,23.00833 22.49167,23.00833 -0.14209,0 -10.37959,-10.2375 -22.75,-22.75 z M 13.1117,-326.87069 c 0.97297,-0.25354 2.32297,-0.23687 3,0.0371 0.67703,0.27392 -0.11903,0.48137 -1.76903,0.46099 -1.65,-0.0204 -2.20394,-0.2445 -1.23097,-0.49804 z"
id="path2465" />
<path
style="fill:#ffffff;fill-opacity:1"
style="fill:#000000;fill-opacity:1"
d="m 265.34267,58.8223 c 13.19141,-13.2 24.20937,-24 24.48437,-24 0.275,0 -10.29296,10.8 -23.48437,24 -13.19141,13.2 -24.20937,24 -24.48437,24 -0.275,0 10.29296,-10.8 23.48437,-24 z m -21.00426,-313.25 -43.99574,-44.25 44.25,43.99574 c 24.3375,24.19765 44.25,44.11015 44.25,44.25 0,0.70358 -3.61144,-2.86659 -44.50426,-43.99574 z m -151.54957,-18.5 -3.44617,-3.75 3.75,3.44617 c 2.0625,1.89539 3.75,3.58289 3.75,3.75 0,0.76362 -0.84622,0.0443 -4.05383,-3.44617 z"
id="path2463" />
<path
style="fill:#ffffff;fill-opacity:1"
style="fill:#000000;fill-opacity:1"
d="m 9.33329,-223.4277 -19.99062,-20.25 20.25,19.99062 c 11.1375,10.99485 20.25,20.10735 20.25,20.25 0,0.7108 -1.93525,-1.17549 -20.50938,-19.99062 z"
id="path2461" />
<path
style="fill:#ffffff;fill-opacity:1"
style="fill:#000000;fill-opacity:1"
d="m -85.775566,-3.6777 c 0.002,-6.6 0.16382,-9.16987 0.35965,-5.71081 0.19583,3.45905 0.194213,8.85905 -0.0036,12 -0.197803,3.14094 -0.358027,0.31081 -0.35605,-6.28919 z m -0.885514,-49.75 -49.99625,-50.25 50.25,49.99625 c 46.70792,46.47205 50.6991,50.50375 49.99625,50.50375 -0.13956,0 -22.75206,-22.6125 -50.25,-50.25 z m 19.9975,-113 -29.99375,-30.25 30.25,29.99375 c 28.11229,27.87415 30.70017,30.50625 29.99375,30.50625 -0.14094,0 -13.75344,-13.6125 -30.25,-30.25 z m 179.25625,-193.41228 c 0.6875,-0.27741 1.8125,-0.27741 2.5,0 0.6875,0.27741 0.125,0.50439 -1.25,0.50439 -1.375,0 -1.9375,-0.22698 -1.25,-0.50439 z"
id="path2459" />
<path
style="fill:#ffffff;fill-opacity:1"
style="fill:#000000;fill-opacity:1"
d="m 40.66541,125.07268 c 18.32751,-0.15264 48.02751,-0.15255 66,1.9e-4 17.97249,0.15275 2.97726,0.27763 -33.32274,0.27752 -36.3,-1.1e-4 -51.00477,-0.12508 -32.67726,-0.27771 z"
id="path2457" />
<path
style="fill:#ffffff;fill-opacity:1"
style="fill:#000000;fill-opacity:1"
d="m -13.2356,123.27051 c -38.61609,-6.99285 -70.305205,-31.54668 -87.46468,-67.77069 -8.90855,-18.80614 -11.43396,-35.14607 -11.4485,-74.0744 l -0.009,-22.89689 -23.75,-24.15125 c -14.51304,-14.75823 -25.01854,-26.298 -27.01166,-29.67096 -14.48601,-24.51465 -10.8692,-54.30964 8.97813,-73.9611 7.1312,-7.06083 19.47416,-14.12467 27.04457,-15.47753 4.6412,-0.8294 5.25632,-1.72617 3.26678,-4.76258 -3.06652,-4.6801 -6.54508,-15.1984 -7.72483,-23.35792 -3.89332,-26.9276 13.91946,-54.89072 40.63063,-63.78335 11.792941,-3.92608 27.7618,-3.68524 39.19131,0.59109 3.03219,1.13448 5.71391,1.86187 5.95937,1.6164 0.24546,-0.24546 1.1183,-3.10191 1.93964,-6.34766 3.8861,-15.35695 16.02707,-31.25487 29.16211,-38.18614 20.65084,-10.89731 45.83715,-9.14388 64.56294,4.49477 3.40146,2.4774 4.87884,3.08021 5.20664,2.12443 0.25171,-0.73394 1.37191,-4.0039 2.48935,-7.26658 5.64699,-16.48813 19.83504,-30.77956 36.33224,-36.59697 4.37705,-1.54348 9.48547,-2.34052 17.22278,-2.6872 12.9647,-0.5809 20.17191,0.92444 31,6.47484 6.36832,3.26435 13.21359,9.77654 75.85594,72.16481 74.25477,73.9536 82.12607,82.20537 90.98496,95.3829 20.49125,30.48058 29.8237,61.05096 29.8237,97.69377 0,37.54442 -10.39645,70.43549 -31.92483,101 -8.78297,12.46946 -71.72291,75.7536 -83.781,84.23917 -18.98786,13.36223 -39.01575,21.48796 -62.4227,25.32618 -12.29951,2.01685 -162.88942,1.91553 -174.11434,-0.11714 z M 167.84267,95.66544 c 13.00883,-3.58796 26.12766,-9.43085 36.66147,-16.32835 7.11327,-4.65775 15.48569,-12.44634 42.89208,-39.90112 36.27435,-36.33839 41.61946,-42.81883 51.2318,-62.11367 4.3762,-8.78432 10.52931,-27.2059 12.24201,-36.6509 7.19984,-39.70473 -1.75087,-80.60585 -24.79605,-113.30787 -6.86507,-9.74181 -148.42805,-152.33641 -154.76776,-155.89561 -13.52398,-7.59254 -30.53569,-5.42062 -41.15103,5.25383 -10.05024,10.10622 -12.54017,24.84956 -6.48524,38.40043 1.0322,2.31007 4.92543,7.47878 8.65161,11.48604 5.87698,6.32028 6.8438,7.89736 7.2949,11.89948 1.14661,10.17276 -7.75999,16.92979 -17.45869,13.2451 -1.54831,-0.58823 -13.1651,-11.31812 -25.8151,-23.84421 -25.19323,-24.94645 -28.01185,-26.95633 -39.04496,-27.84196 -15.10311,-1.21234 -29.26024,7.67126 -34.54398,21.67632 -1.69243,4.48594 -2.02141,7.14714 -1.67871,13.57935 0.68198,12.80006 2.48805,15.44584 28.32878,41.5 12.27363,12.375 22.81736,23.82981 23.43052,25.45513 2.49373,6.61024 -1.68946,14.45063 -8.79774,16.48926 -7.20346,2.06592 -8.46385,1.08726 -43.69391,-33.92736 -19.91433,-19.79256 -34.59872,-33.59856 -37.03172,-34.81658 -9.27783,-4.64471 -21.724692,-4.6611 -30.78177,-0.0405 -5.065503,2.58423 -12.005185,9.58424 -14.65931,14.78675 -4.98422,9.76989 -4.70653,22.57716 0.69499,32.05332 1.440534,2.52719 16.969332,18.99452 35.42143,37.56222 l 32.85638,33.0622 v 4.78349 c 0,5.81973 -2.30635,10.03503 -6.60719,12.07591 -3.74999,1.77949 -7.1903,1.92385 -11.03273,0.46296 -1.52356,-0.57925 -11.79036,-9.95835 -22.815096,-20.84244 -23.10878,-22.81396 -24.399475,-23.60436 -38.544984,-23.60436 -7.10469,0 -9.42713,0.43467 -14.14796,2.64796 -17.40512,8.16013 -24.17927,27.98266 -15.63289,45.74494 1.63049,3.38871 16.30771,18.77052 55.498786,58.16305 L -33.15733,0.4342 v 5.15925 c 0,4.32805 -0.49257,5.72026 -3.05734,8.64138 -3.49284,3.97813 -9.46969,5.48633 -14.35736,3.62294 -1.60308,-0.61116 -10.32378,-8.40666 -19.37933,-17.32334 l -16.464643,-16.21213 0.602934,17 c 0.620571,17.49727 2.04533,26.57739 5.706649,36.36897 9.52461,25.47196 30.59438,46.63873 55.36009,55.61493 15.16012,5.49471 13.55553,5.41277 101.589,5.18775 l 81.5,-0.20832 z"
id="path2455" />
</g>

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View file

@ -57,11 +57,11 @@
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:none;stroke:#ffffff;stroke-width:3.16228;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:3.16228;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 45,58 V 33"
id="path3263" />
<path
style="fill:none;stroke:#ffffff;stroke-width:3.09839;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:3.09839;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 33,45 H 57"
id="path3263-9" />
<g
@ -70,14 +70,14 @@
<g
id="g153">
<path
style="fill:none;stroke:#ffffff;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 57,40 3,4.795832"
id="path3263-9-9"
inkscape:transform-center-x="1.5"
inkscape:transform-center-y="-2.397916"
transform="translate(-5)" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 52,50 3,-4.795832"
id="path3263-9-9-4"
inkscape:transform-center-x="1.5"
@ -90,14 +90,14 @@
<g
id="g153-6">
<path
style="fill:none;stroke:#ffffff;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 57,40 3,4.795832"
id="path3263-9-9-8"
inkscape:transform-center-x="1.5"
inkscape:transform-center-y="-2.397916"
transform="translate(-5)" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 52,50 3,-4.795832"
id="path3263-9-9-4-6"
inkscape:transform-center-x="1.5"
@ -110,14 +110,14 @@
<g
id="g153-8">
<path
style="fill:none;stroke:#ffffff;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 57,40 3,4.795832"
id="path3263-9-9-1"
inkscape:transform-center-x="1.5"
inkscape:transform-center-y="-2.397916"
transform="translate(-5)" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 52,50 3,-4.795832"
id="path3263-9-9-4-9"
inkscape:transform-center-x="1.5"
@ -130,14 +130,14 @@
<g
id="g153-4">
<path
style="fill:none;stroke:#ffffff;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 57,40 3,4.795832"
id="path3263-9-9-0"
inkscape:transform-center-x="1.5"
inkscape:transform-center-y="-2.397916"
transform="translate(-5)" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:none;stroke:#000000;stroke-width:2.828;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 52,50 3,-4.795832"
id="path3263-9-9-4-8"
inkscape:transform-center-x="1.5"
@ -171,29 +171,29 @@
<g
id="g2453"
transform="matrix(0.1476827,0,0,0.1476827,28.063629,58.273139)"
style="fill:#ffffff;fill-opacity:1">
style="fill:#000000;fill-opacity:1">
<path
style="fill:#ffffff;fill-opacity:1"
style="fill:#000000;fill-opacity:1"
d="m 177.83434,-320.9277 -22.49167,-22.75 22.75,22.49167 c 21.13932,20.89928 23.20102,23.00833 22.49167,23.00833 -0.14209,0 -10.37959,-10.2375 -22.75,-22.75 z M 13.1117,-326.87069 c 0.97297,-0.25354 2.32297,-0.23687 3,0.0371 0.67703,0.27392 -0.11903,0.48137 -1.76903,0.46099 -1.65,-0.0204 -2.20394,-0.2445 -1.23097,-0.49804 z"
id="path2465" />
<path
style="fill:#ffffff;fill-opacity:1"
style="fill:#000000;fill-opacity:1"
d="m 265.34267,58.8223 c 13.19141,-13.2 24.20937,-24 24.48437,-24 0.275,0 -10.29296,10.8 -23.48437,24 -13.19141,13.2 -24.20937,24 -24.48437,24 -0.275,0 10.29296,-10.8 23.48437,-24 z m -21.00426,-313.25 -43.99574,-44.25 44.25,43.99574 c 24.3375,24.19765 44.25,44.11015 44.25,44.25 0,0.70358 -3.61144,-2.86659 -44.50426,-43.99574 z m -151.54957,-18.5 -3.44617,-3.75 3.75,3.44617 c 2.0625,1.89539 3.75,3.58289 3.75,3.75 0,0.76362 -0.84622,0.0443 -4.05383,-3.44617 z"
id="path2463" />
<path
style="fill:#ffffff;fill-opacity:1"
style="fill:#000000;fill-opacity:1"
d="m 9.33329,-223.4277 -19.99062,-20.25 20.25,19.99062 c 11.1375,10.99485 20.25,20.10735 20.25,20.25 0,0.7108 -1.93525,-1.17549 -20.50938,-19.99062 z"
id="path2461" />
<path
style="fill:#ffffff;fill-opacity:1"
style="fill:#000000;fill-opacity:1"
d="m -85.775566,-3.6777 c 0.002,-6.6 0.16382,-9.16987 0.35965,-5.71081 0.19583,3.45905 0.194213,8.85905 -0.0036,12 -0.197803,3.14094 -0.358027,0.31081 -0.35605,-6.28919 z m -0.885514,-49.75 -49.99625,-50.25 50.25,49.99625 c 46.70792,46.47205 50.6991,50.50375 49.99625,50.50375 -0.13956,0 -22.75206,-22.6125 -50.25,-50.25 z m 19.9975,-113 -29.99375,-30.25 30.25,29.99375 c 28.11229,27.87415 30.70017,30.50625 29.99375,30.50625 -0.14094,0 -13.75344,-13.6125 -30.25,-30.25 z m 179.25625,-193.41228 c 0.6875,-0.27741 1.8125,-0.27741 2.5,0 0.6875,0.27741 0.125,0.50439 -1.25,0.50439 -1.375,0 -1.9375,-0.22698 -1.25,-0.50439 z"
id="path2459" />
<path
style="fill:#ffffff;fill-opacity:1"
style="fill:#000000;fill-opacity:1"
d="m 40.66541,125.07268 c 18.32751,-0.15264 48.02751,-0.15255 66,1.9e-4 17.97249,0.15275 2.97726,0.27763 -33.32274,0.27752 -36.3,-1.1e-4 -51.00477,-0.12508 -32.67726,-0.27771 z"
id="path2457" />
<path
style="fill:#ffffff;fill-opacity:1"
style="fill:#000000;fill-opacity:1"
d="m -13.2356,123.27051 c -38.61609,-6.99285 -70.305205,-31.54668 -87.46468,-67.77069 -8.90855,-18.80614 -11.43396,-35.14607 -11.4485,-74.0744 l -0.009,-22.89689 -23.75,-24.15125 c -14.51304,-14.75823 -25.01854,-26.298 -27.01166,-29.67096 -14.48601,-24.51465 -10.8692,-54.30964 8.97813,-73.9611 7.1312,-7.06083 19.47416,-14.12467 27.04457,-15.47753 4.6412,-0.8294 5.25632,-1.72617 3.26678,-4.76258 -3.06652,-4.6801 -6.54508,-15.1984 -7.72483,-23.35792 -3.89332,-26.9276 13.91946,-54.89072 40.63063,-63.78335 11.792941,-3.92608 27.7618,-3.68524 39.19131,0.59109 3.03219,1.13448 5.71391,1.86187 5.95937,1.6164 0.24546,-0.24546 1.1183,-3.10191 1.93964,-6.34766 3.8861,-15.35695 16.02707,-31.25487 29.16211,-38.18614 20.65084,-10.89731 45.83715,-9.14388 64.56294,4.49477 3.40146,2.4774 4.87884,3.08021 5.20664,2.12443 0.25171,-0.73394 1.37191,-4.0039 2.48935,-7.26658 5.64699,-16.48813 19.83504,-30.77956 36.33224,-36.59697 4.37705,-1.54348 9.48547,-2.34052 17.22278,-2.6872 12.9647,-0.5809 20.17191,0.92444 31,6.47484 6.36832,3.26435 13.21359,9.77654 75.85594,72.16481 74.25477,73.9536 82.12607,82.20537 90.98496,95.3829 20.49125,30.48058 29.8237,61.05096 29.8237,97.69377 0,37.54442 -10.39645,70.43549 -31.92483,101 -8.78297,12.46946 -71.72291,75.7536 -83.781,84.23917 -18.98786,13.36223 -39.01575,21.48796 -62.4227,25.32618 -12.29951,2.01685 -162.88942,1.91553 -174.11434,-0.11714 z M 167.84267,95.66544 c 13.00883,-3.58796 26.12766,-9.43085 36.66147,-16.32835 7.11327,-4.65775 15.48569,-12.44634 42.89208,-39.90112 36.27435,-36.33839 41.61946,-42.81883 51.2318,-62.11367 4.3762,-8.78432 10.52931,-27.2059 12.24201,-36.6509 7.19984,-39.70473 -1.75087,-80.60585 -24.79605,-113.30787 -6.86507,-9.74181 -148.42805,-152.33641 -154.76776,-155.89561 -13.52398,-7.59254 -30.53569,-5.42062 -41.15103,5.25383 -10.05024,10.10622 -12.54017,24.84956 -6.48524,38.40043 1.0322,2.31007 4.92543,7.47878 8.65161,11.48604 5.87698,6.32028 6.8438,7.89736 7.2949,11.89948 1.14661,10.17276 -7.75999,16.92979 -17.45869,13.2451 -1.54831,-0.58823 -13.1651,-11.31812 -25.8151,-23.84421 -25.19323,-24.94645 -28.01185,-26.95633 -39.04496,-27.84196 -15.10311,-1.21234 -29.26024,7.67126 -34.54398,21.67632 -1.69243,4.48594 -2.02141,7.14714 -1.67871,13.57935 0.68198,12.80006 2.48805,15.44584 28.32878,41.5 12.27363,12.375 22.81736,23.82981 23.43052,25.45513 2.49373,6.61024 -1.68946,14.45063 -8.79774,16.48926 -7.20346,2.06592 -8.46385,1.08726 -43.69391,-33.92736 -19.91433,-19.79256 -34.59872,-33.59856 -37.03172,-34.81658 -9.27783,-4.64471 -21.724692,-4.6611 -30.78177,-0.0405 -5.065503,2.58423 -12.005185,9.58424 -14.65931,14.78675 -4.98422,9.76989 -4.70653,22.57716 0.69499,32.05332 1.440534,2.52719 16.969332,18.99452 35.42143,37.56222 l 32.85638,33.0622 v 4.78349 c 0,5.81973 -2.30635,10.03503 -6.60719,12.07591 -3.74999,1.77949 -7.1903,1.92385 -11.03273,0.46296 -1.52356,-0.57925 -11.79036,-9.95835 -22.815096,-20.84244 -23.10878,-22.81396 -24.399475,-23.60436 -38.544984,-23.60436 -7.10469,0 -9.42713,0.43467 -14.14796,2.64796 -17.40512,8.16013 -24.17927,27.98266 -15.63289,45.74494 1.63049,3.38871 16.30771,18.77052 55.498786,58.16305 L -33.15733,0.4342 v 5.15925 c 0,4.32805 -0.49257,5.72026 -3.05734,8.64138 -3.49284,3.97813 -9.46969,5.48633 -14.35736,3.62294 -1.60308,-0.61116 -10.32378,-8.40666 -19.37933,-17.32334 l -16.464643,-16.21213 0.602934,17 c 0.620571,17.49727 2.04533,26.57739 5.706649,36.36897 9.52461,25.47196 30.59438,46.63873 55.36009,55.61493 15.16012,5.49471 13.55553,5.41277 101.589,5.18775 l 81.5,-0.20832 z"
id="path2455" />
</g>

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 45 KiB

View file

@ -1,321 +1,347 @@
var isNx = (typeof window.nx !== 'undefined');
var defaults_prefix = "__";
// Polyfill for NodeList.forEach.
// Allows forEach to be called directly on a node list (return type of doucment.querySelectorAll)
if (window.NodeList && !NodeList.prototype.forEach) {
NodeList.prototype.forEach = Array.prototype.forEach;
}
// Polyfill for Object.entries
// Iterates on an object and returns an array containing arrays of key/value pairs ([key, value])
// for each pair in the object
if (!Object.entries) {
Object.entries = function (obj) {
var ownProps = Object.keys(obj),
i = ownProps.length,
resArray = new Array(i); // preallocate the Array
while (i--) resArray[i] = [ownProps[i], obj[ownProps[i]]];
return resArray;
};
}
const isNx = typeof window.nx !== 'undefined';
var DEFAULTS_PREFIX = '__';
// Set input handlers
if (isNx) {
window.nx.footer.setAssign('B', '', close_or_exit, {se: ''});
window.nx.footer.setAssign('X', '', resetCurrentSubmenu, {se: ''});
window.nx.footer.setAssign('L', '', resetAllSubmenus, {se: ''});
window.nx.footer.setAssign('R', '', saveDefaults, {se: ''});
window.nx.footer.setAssign('ZR', '', cycleNextTab, {se: ''});
window.nx.footer.setAssign('ZL', '', cyclePrevTab, {se: ''});
window.nx.footer.setAssign('B', '', closeOrExit, { se: '' });
window.nx.footer.setAssign('X', '', resetCurrentMenu, { se: '' });
window.nx.footer.setAssign('L', '', resetAllMenus, { se: '' });
window.nx.footer.setAssign('R', '', saveDefaults, { se: '' });
window.nx.footer.setAssign('ZR', '', cycleNextTab, { se: '' });
window.nx.footer.setAssign('ZL', '', cyclePrevTab, { se: '' });
} else {
document.addEventListener('keypress', (event) => {
switch (event.key) {
case "b":
console.log("b");
close_or_exit();
case 'b':
console.log('b');
closeOrExit();
break;
case "x":
console.log("x");
resetCurrentSubmenu();
case 'x':
console.log('x');
resetCurrentMenu();
break;
case "l":
console.log("l");
case 'l':
console.log('l');
resetAllSubmenus();
break;
case "r":
console.log("r");
case 'r':
console.log('r');
saveDefaults();
break;
case "p":
console.log("p");
case 'p':
console.log('p');
cycleNextTab();
break;
case "o":
console.log("o");
case 'o':
console.log('o');
cyclePrevTab();
break;
}
});
}
window.onload = onLoad;
var settings = new Map();
var lastFocusedItem = document.querySelector(".menu-item > button");
function onLoad() {
const onLoad = () => {
// Activate the first tab
openTab(document.querySelector("button.tab-button"));
openTab(document.querySelector('button.tab-button'));
// Extract URL params and set appropriate settings
setSettingsFromURL();
setSubmenusFromSettings();
}
populateMenuFromSettings();
};
function openTab(e) {
var tab_id = e.id.replace("button", "tab");
var selected_tab = document.getElementById(tab_id);
window.onload = onLoad;
var settings;
// Hide all content for all tabs
closeAllItems();
tabcontent = document.getElementsByClassName("tab-content");
Array.from(tabcontent).forEach(element => {
element.classList.add("hide");
});
var lastFocusedItem = document.querySelector('.menu-item > button');
const currentTabContent = () => {
const currentActiveTab = document.querySelector('.tab-button.active');
var currentActiveTabContent = document.querySelector(`#${currentActiveTab.id.replace('button', 'tab')}`);
// Get all elements with class="tablinks" and remove the class "active"
tablinks = document.getElementsByClassName("tab-button");
Array.from(tablinks).forEach(element => {
element.classList.remove("active");
});
return currentActiveTabContent;
};
// Show the current tab, and add an "active" class to the button that opened the tab
e.classList.add("active");
selected_tab.classList.remove("hide");
selected_tab.querySelector("button").focus();
}
const openTab = (eventTarget) => {
playSound('SeWebZoomIn');
const selectedTab = document.getElementById(eventTarget.id.replace('button', 'tab'));
const activeTabContent = document.querySelector('.tab-content:not(.hide)');
const activeTab = document.querySelector('.tab-button.active');
function openItem(e) {
playSound("SeWebMenuListOpen");
var modal = e.parentElement.querySelector(".modal");
modal.classList.toggle("hide");
modal.querySelector("button").focus();
lastFocusedItem = e;
}
// Hide content of current active tab
if (activeTabContent) {
activeTabContent.classList.add('hide');
}
function closeAllItems() {
var modals = document.querySelectorAll(".modal");
Array.from(modals).forEach(element => {
element.classList.add("hide");
closeAllActiveModals();
// Remove "active" class from current active tab
if (activeTab) {
activeTab.classList.remove('active');
}
// Show the new current tab, and add an "active" class to the button that opened the tab
eventTarget.classList.add('active');
selectedTab.classList.remove('hide');
selectedTab.querySelector('button').focus();
};
const openMenuItem = (eventTarget) => {
playSound('SeWebMenuListOpen');
var { target } = eventTarget.dataset;
const modal = document.querySelector(`.modal[data-id=${target}]`);
currentTabContent().classList.toggle('hide');
modal.classList.toggle('hide');
modal.querySelector('button').focus();
lastFocusedItem = eventTarget;
};
const closeAllActiveModals = () => {
document.querySelectorAll('.modal:not(.hide)').forEach((modal) => {
modal.classList.add('hide');
});
lastFocusedItem.focus();
}
};
function toggleOption(e) {
playSound("SeSelectCheck");
if (e.parentElement.classList.contains("single-option")) {
selectSingleOption(e);
} else {
var img = e.querySelector("img");
img.classList.toggle("hide");
}
}
const toggleOption = (element) => {
playSound('SeSelectCheck');
function closestClass(elem, class_) {
// Returns the closest ancestor (including self) with the given class
// TODO: Consider removing
if (!elem) {
// Reached the end of the DOM
return null
} else if (elem.classList.contains(class_)) {
// Found it
return elem
} else {
// Didn't find it, go up a level
return closestClass(elem.parentElement, class_);
if (element.parentElement.classList.contains('single-option')) {
selectSingleOption(element);
return;
}
}
const img = element.querySelector('img');
const previouslySelected = !img.classList.contains('hidden');
const menuId = element.parentElement.dataset.id;
const toggleValue = parseInt(img.dataset.val);
settings[menuId] = previouslySelected ? settings[menuId] - toggleValue : settings[menuId] + toggleValue;
element.querySelector('img').classList.toggle('hidden');
};
// Add this later
// function toggleSingleOption(element) {
// selectSingleOption(element);
// }
const closestClass = (element, class_) => {
if (!element) {
return null;
}
if (element.classList.contains(class_)) {
return element;
}
// Didn't find it, go up a level
return closestClass(element.parentElement, class_);
};
function playSound(label) {
// Valid labels:
// SeToggleBtnFocus
// SeToggleBtnOn
// SeToggleBtnOff
// SeCheckboxFocus
// SeCheckboxOn
// SeCheckboxOff
// SeRadioBtnFocus
// SeRadioBtnOn
// SeSelectCheck
// SeSelectUncheck
// SeBtnDecide
// SeTouchUnfocus
// SeBtnFocus
// SeKeyError
// SeDialogOpen
// SeWebZoomOut
// SeWebZoomIn
// SeWebNaviFocus
// SeWebPointerFocus
// SeFooterFocus
// SeFooterDecideBack
// SeFooterDecideFinish
// SeWebChangeCursorPointer
// SeWebTouchFocus
// SeWebLinkDecide
// SeWebTextboxStartEdit
// SeWebButtonDecide
// SeWebRadioBtnOn
// SeWebCheckboxUncheck
// SeWebCheckboxCheck
// SeWebMenuListOpen
//** Valid labels **//
// SeToggleBtnFocus, SeToggleBtnOn, SeToggleBtnOff, SeCheckboxFocus, SeCheckboxOn
// SeCheckboxOff, SeRadioBtnFocus, SeRadioBtnOn, SeSelectCheck, SeSelectUncheck, SeBtnDecide
// SeTouchUnfocus, SeBtnFocus, SeKeyError, SeDialogOpen, SeWebZoomOut, SeWebZoomIn, SeWebNaviFocus
// SeWebPointerFocus, SeFooterFocus, SeFooterDecideBack, SeFooterDecideFinish, SeWebChangeCursorPointer
// SeWebTouchFocus, SeWebLinkDecide, SeWebTextboxStartEdit, SeWebButtonDecide, SeWebRadioBtnOn
// SeWebCheckboxUncheck, SeWebCheckboxCheck, SeWebMenuListOpen
if (isNx) {
window.nx.playSystemSe(label);
} else {
console.log("Sound Effect: " + label);
console.log('Sound Effect: ' + label);
}
}
function exit() {
playSound("SeFooterDecideBack");
setSettingsFromMenu();
var url = buildURLFromSettings();
const exit = () => {
playSound('SeFooterDecideBack');
const url = buildURLFromSettings();
if (isNx) {
window.location.href = url;
} else {
console.log(url);
}
}
};
function close_or_exit() {
// If any submenus are open, close them
// Otherwise if all submenus are closed, exit the menu and return to the game
if (document.querySelector(".modal:not(.hide)")) {
// Close any open submenus
console.log("Closing Items");
closeAllItems();
} else {
// If all submenus are closed, exit and return through localhost
console.log("Exiting");
exit();
function closeOrExit() {
// Close any open menus
if (document.querySelector('.modal:not(.hide)')) {
console.log('Closing Items');
closeAllActiveModals();
currentTabContent().classList.remove('hide');
lastFocusedItem.focus();
return;
}
console.log('Exiting');
exit();
}
function setSettingsFromURL() {
var regex = /[?&]([^=#]+)=([^&#]*)/g,
match;
while (match = regex.exec(document.URL)) {
settings.set(match[1], match[2]);
}
}
var { search } = window.location;
const settingsFromSearch = search
.replace('?', '')
.split('&')
.reduce((accumulator, currentValue) => {
var [key, value] = currentValue.split('=');
accumulator[key] = parseInt(value);
return accumulator;
}, {});
function setSettingsFromMenu() {
var section;
var mask;
[].forEach.call(document.querySelectorAll(".menu-item"), function (menuItem) {
section = menuItem.id;
mask = getMaskFromSubmenu(menuItem);
settings.set(section, mask);
});
settings = settingsFromSearch;
}
function buildURLFromSettings() {
var url = "http://localhost/";
url += "?";
settings.forEach((val, key) => { url += key + "=" + String(val) + "&" } );
return url
const url = 'http://localhost/?';
const urlParams = Object.entries(settings).map((setting) => {
return `${setting[0]}=${setting[1]}`;
});
return url + urlParams.join('&');
}
function selectSingleOption(e) {
function selectSingleOption(eventTarget) {
// Deselect all options in the submenu
parent = closestClass(e, "single-option");
siblings = parent.querySelectorAll(".menu-icon img");
[].forEach.call(siblings, function (sibling) {
sibling.classList.add("hide");
const parent = eventTarget.parentElement;
parent.querySelectorAll('.menu-icon:not(.hidden)').forEach((sibling) => {
sibling.classList.add('hidden');
settings[parent.dataset.id] = settings[parent.dataset.id] - parseInt(sibling.dataset.val);
});
e.querySelector(".menu-icon img").classList.remove("hide");
eventTarget.querySelector('.menu-icon').classList.remove('hidden');
const value = parseInt(eventTarget.querySelector('.menu-icon').dataset.val);
settings[parent.dataset.id] = settings[parent.dataset.id] + value;
}
function setSubmenusFromSettings() {
[].forEach.call(document.querySelectorAll(".menu-item"), function (menuItem) {
var section = menuItem.id;
var section_mask = decodeURIComponent(settings.get(section));
setSubmenuByMask(menuItem, section_mask)
});
}
const isValueInBitmask = (value, mask) => (mask & value) != 0;
function setSubmenuByMask(menuItem, mask) {
[].forEach.call(menuItem.querySelectorAll(".modal .menu-icon img"), function (toggle) {
if (isInBitmask(toggle.dataset.val, mask)) {
toggle.classList.remove("hide");
const setOptionsForMenu = (menuId) => {
const modal = document.querySelector(`.modal[data-id="${menuId}"]`);
modal.querySelectorAll('.menu-icon').forEach(function (toggle) {
if (isValueInBitmask(toggle.dataset.val, settings[menuId])) {
toggle.classList.remove('hidden');
} else {
toggle.classList.add("hide");
toggle.classList.add('hidden');
}
});
// If no setting for a Single Option is set, select the first one
var isSingleOption = menuItem.querySelectorAll(".modal.single-option").length != 0;
var isAllDeselected = menuItem.querySelectorAll(".modal .menu-icon img:not(.hide)").length == 0;
if (isSingleOption & isAllDeselected) {
selectSingleOption(menuItem.querySelector(".modal button"));
if (modal.classList.contains('single-option')) {
// If no option is selected default to the first option
if (modal.querySelectorAll('.menu-icon:not(.hidden)').length === 0) {
selectSingleOption(modal.querySelector('button'));
}
}
};
function populateMenuFromSettings() {
document.querySelectorAll('.menu-item').forEach((item) => setOptionsForMenu(item.id));
}
function getMaskFromSubmenu(menuItem) {
var val = 0;
[].forEach.call(menuItem.querySelectorAll(".modal img:not(.hide)"), function (toggle) {
val += parseInt(toggle.dataset.val);
function getMaskFromMenuID(id) {
var value = 0;
const modal = document.querySelector(`.modal[data-id='${id}']`);
const options = modal.querySelectorAll('img:not(.hidden)');
options.forEach(function (toggle) {
value += parseInt(toggle.dataset.val);
});
return val
return value;
}
function resetCurrentSubmenu() {
var focus = document.querySelector(".menu-item .modal:not(.hide)");
if (!focus) {
focus = document.querySelector(":focus");
}
var menuItem = closestClass(focus, "menu-item");
function resetCurrentMenu() {
playSound('SeWebTextboxStartEdit');
const menu = document.querySelector('.modal:not(.hide)');
var key = defaults_prefix + menuItem.id;
var section_mask = decodeURIComponent(settings.get(key));
setSubmenuByMask(menuItem, section_mask);
const menuId = menu.dataset.id;
const defaultSectionMask = settings[DEFAULTS_PREFIX + menuId];
settings[menuId] = defaultSectionMask;
populateMenuFromSettings();
}
function resetAllSubmenus() {
function resetAllMenus() {
// Resets all submenus to the default values
if (confirm("Are you sure that you want to reset all menu settings to the default?")) {
[].forEach.call(document.querySelectorAll(".menu-item"), function (menuItem) {
var key = defaults_prefix + menuItem.id;
var mask = decodeURIComponent(settings.get(key));
setSubmenuByMask(menuItem, mask)
if (confirm('Are you sure that you want to reset all menu settings to the default?')) {
document.querySelectorAll('.menu-item').forEach(function (item) {
const defaultMenuId = DEFAULTS_PREFIX + item.id;
const defaultMask = settings[defaultMenuId];
settings[item.id] = defaultMask;
populateMenuFromSettings();
});
}
}
function setHelpText(text) {
// Modify the help text in the footer
document.getElementById("help-text").innerText = text;
document.getElementById('help-text').innerText = text;
}
function saveDefaults() {
if (confirm("Are you sure that you want to change the default menu settings to the current selections?")) {
var key;
var mask;
[].forEach.call(document.querySelectorAll(".menu-item"), function (menuItem) {
key = defaults_prefix + menuItem.id;
mask = getMaskFromSubmenu(menuItem);
settings.set(key, mask);
if (confirm('Are you sure that you want to change the default menu settings to the current selections?')) {
document.querySelectorAll('.menu-item').forEach((item) => {
const menu = DEFAULTS_PREFIX + item.id;
settings[menu] = getMaskFromMenuID(item.id);
});
}
}
function isInBitmask(val, mask) {
// Return true if the value is in the bitmask
return (mask & val) != 0
}
function cycleNextTab() {
// Cycle to the next tab
var activeTab = document.querySelector(".tab-button.active");
const activeTab = document.querySelector('.tab-button.active');
var nextTab = activeTab.nextElementSibling;
if (!nextTab) {
// On the last tab - set the next tab as the first tab in the list
nextTab = document.querySelector(".tab-button");
nextTab = document.querySelector('.tab-button');
}
openTab(nextTab);
}
function cyclePrevTab() {
// Cycle to the previous tab
var activeTab = document.querySelector(".tab-button.active");
var prevTab = activeTab.previousElementSibling;
if (!prevTab) {
const activeTab = document.querySelector('.tab-button.active');
var previousTab = activeTab.previousElementSibling;
if (!previousTab) {
// On the first tab - set the next tab as the last tab in the list
tabs = document.querySelectorAll(".tab-button");
prevTab = tabs[tabs.length - 1];
tabs = document.querySelectorAll('.tab-button');
previousTab = tabs[tabs.length - 1];
}
openTab(prevTab);
}
openTab(previousTab);
}

View file

@ -25,31 +25,39 @@
<p>Prev Tab: &#xE0A6;</p>
<div class="tab-list">
{{#tabs}}
<button class="tab-button active" id="{{tab_id}}_button" onclick="openTab(this)" tabindex="-1">{{tab_title}}</button>
<button class="tab-button" id="{{tab_id}}_button" onclick="openTab(this)" tabindex="-1">{{tab_title}}</button>
{{/tabs}}
</div>
<p>Next Tab: &#xE0A7;</p>
</div>
<div class="tab-content-container">
{{#tabs}}
<div id="{{tab_id}}_tab" class="tab-content">
{{#tab_submenus}}
<div class="menu-item" id="{{submenu_id}}">
<button class="menu-button" onfocus="setHelpText('{{help_text}}')" onclick="openItem(this)">
<div class="menu-icon"><img src="./img/{{submenu_id}}.svg" /></div>
<p>{{submenu_title}}</p>
</button>
<div class="hide modal{{#is_single_option}} single-option{{/is_single_option}}">
<div class="hide modal{{#is_single_option}} single-option{{/is_single_option}}" data-id="{{submenu_id}}">
{{#toggles}}
<button class="menu-button" onclick="toggleOption(this)">
<div class="menu-icon"><img class="hide" src="./img/check.svg" data-val="{{toggle_value}}"/></div>
<p>{{toggle_title}}</p>
<button class="modal-button" onclick="toggleOption(this)">
<div class="modal-button-content">
<img class="hidden menu-icon" src="./img/check.svg" data-val="{{toggle_value}}" />
<p class="modal-button-title">{{toggle_title}}</p>
</div>
</button>
{{/toggles}}
</div>
</div>
{{/tab_submenus}}
</div>
<div id="{{tab_id}}_tab" class="tab-content hide">
<div class="tab-content-wrapper">
{{#tab_submenus}}
<div class="menu-item" id="{{submenu_id}}">
<button class="menu-button" onfocus="setHelpText('{{help_text}}')" onclick="openMenuItem(this)" data-target="{{submenu_id}}">
<div class="menu-button-content">
<img src="./img/{{submenu_id}}.svg" class="menu-icon" />
<p class="menu-title">{{submenu_title}}</p>
</div>
</button>
</div>
{{/tab_submenus}}
</div>
</div>
{{/tabs}}
</div>
<footer id="footer" class="footer">

View file

@ -624,7 +624,7 @@ impl BuffOption {
BuffOption::ARSENE => "Arsene",
BuffOption::LIMIT => "Limit Break",
BuffOption::KO => "KO Punch",
BuffOption::WING => "One-Winged Angel",
BuffOption::WING => "1-Winged Angel",
_ => return None,
})
}