1
1
mirror of https://github.com/namibia/file-icon-vectors.git synced 2024-06-02 04:00:47 +00:00

Optimized; changed Classic script icon

This commit is contained in:
Daniel Hendricks 2018-08-04 09:26:46 -05:00
parent 8c48777dad
commit 9540f469b8
177 changed files with 208 additions and 169 deletions

View File

@ -1,5 +1,5 @@
[![Author](https://img.shields.io/badge/author-Daniel%20M.%20Hendricks-lightgrey.svg?colorB=9900cc )](https://www.danhendricks.com?utm_source=github.com&utm_medium=campaign&utm_content=button&utm_campaign=dmhendricks%2Ffile-icon-vectors)
![Icon Count](https://img.shields.io/badge/icon%20count-900%2B-red.svg)
![Icon Count](https://img.shields.io/badge/icon%20count-3x328-red.svg)
[![Release](https://img.shields.io/github/release/dmhendricks/file-icon-vectors.svg)](https://github.com/dmhendricks/file-icon-vectors/releases)
[![License](https://img.shields.io/badge/license-MIT-yellow.svg)](https://raw.githubusercontent.com/dmhendricks/file-icon-vectors/master/LICENSE)
[![GitHub Downloads](https://img.shields.io/packagist/dt/dmhendricks/file-icon-vectors.svg?label=GitHub%20downloads)](https://github.com/dmhendricks/file-icon-vectors/releases)
@ -54,6 +54,7 @@ To display a file icon, simply link to one or all of the icon set CSS files in t
```html
<link rel="stylesheet" href="dist/file-icon-classic.min.css" />
<link rel="stylesheet" href="dist/file-icon-square-o.min.css" />
<link rel="stylesheet" href="dist/file-icon-vivid.min.css" />
<!-- Alternatively, you can load all sets: -->
@ -66,7 +67,11 @@ For releases:
```html
<link rel="stylesheet" href="https://unpkg.com/file-icon-vectors@0.8.1/dist/file-icon-classic.min.css" />
<link rel="stylesheet" href="https://unpkg.com/file-icon-vectors@0.8.1/dist/file-icon-square-o.min.css" />
<link rel="stylesheet" href="https://unpkg.com/file-icon-vectors@0.8.1/dist/file-icon-vivid.min.css" />
<!-- Alternatively, you can load all sets: -->
<link rel="stylesheet" href="https://unpkg.com/file-icon-vectors@0.8.1/dist/file-icon-vectors.min.css" />
```
#### CDN: jsDelivr
@ -75,7 +80,11 @@ Supports both HTTP and HTTPS.
```html
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/dmhendricks/file-icon-vectors/dist/file-icon-classic.min.css" />
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/dmhendricks/file-icon-vectors/dist/file-icon-square-o.min.css" />
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/dmhendricks/file-icon-vectors/dist/file-icon-vivid.min.css" />
<!-- Alternatively, you can load all sets: -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/dmhendricks/file-icon-vectors/dist/file-icon-vectors.min.css" />
```
#### CDN: GitHack

View File

@ -1156,6 +1156,10 @@
background-image: url("icons/classic/vbproj.svg");
}
.fiv-cla.fiv-icon-vbs {
background-image: url("icons/classic/vbs.svg");
}
.fiv-cla.fiv-icon-vcd {
background-image: url("icons/classic/vcd.svg");
}

View File

@ -289,6 +289,7 @@
.fiv-cla.fiv-icon-udf{background-image:url("icons/classic/udf.svg")}
.fiv-cla.fiv-icon-vb{background-image:url("icons/classic/vb.svg")}
.fiv-cla.fiv-icon-vbproj{background-image:url("icons/classic/vbproj.svg")}
.fiv-cla.fiv-icon-vbs{background-image:url("icons/classic/vbs.svg")}
.fiv-cla.fiv-icon-vcd{background-image:url("icons/classic/vcd.svg")}
.fiv-cla.fiv-icon-vcs{background-image:url("icons/classic/vcs.svg")}
.fiv-cla.fiv-icon-vdi{background-image:url("icons/classic/vdi.svg")}

View File

@ -1156,6 +1156,10 @@
background-image: url("icons/square-o/vbproj.svg");
}
.fiv-sqo.fiv-icon-vbs {
background-image: url("icons/square-o/vbs.svg");
}
.fiv-sqo.fiv-icon-vcd {
background-image: url("icons/square-o/vcd.svg");
}

View File

@ -289,6 +289,7 @@
.fiv-sqo.fiv-icon-udf{background-image:url("icons/square-o/udf.svg")}
.fiv-sqo.fiv-icon-vb{background-image:url("icons/square-o/vb.svg")}
.fiv-sqo.fiv-icon-vbproj{background-image:url("icons/square-o/vbproj.svg")}
.fiv-sqo.fiv-icon-vbs{background-image:url("icons/square-o/vbs.svg")}
.fiv-sqo.fiv-icon-vcd{background-image:url("icons/square-o/vcd.svg")}
.fiv-sqo.fiv-icon-vcs{background-image:url("icons/square-o/vcs.svg")}
.fiv-sqo.fiv-icon-vdi{background-image:url("icons/square-o/vdi.svg")}

View File

@ -1156,6 +1156,10 @@
background-image: url("icons/classic/vbproj.svg");
}
.fiv-cla.fiv-icon-vbs {
background-image: url("icons/classic/vbs.svg");
}
.fiv-cla.fiv-icon-vcd {
background-image: url("icons/classic/vcd.svg");
}
@ -2475,6 +2479,10 @@
background-image: url("icons/vivid/vbproj.svg");
}
.fiv-viv.fiv-icon-vbs {
background-image: url("icons/vivid/vbs.svg");
}
.fiv-viv.fiv-icon-vcd {
background-image: url("icons/vivid/vcd.svg");
}
@ -3794,6 +3802,10 @@
background-image: url("icons/square-o/vbproj.svg");
}
.fiv-sqo.fiv-icon-vbs {
background-image: url("icons/square-o/vbs.svg");
}
.fiv-sqo.fiv-icon-vcd {
background-image: url("icons/square-o/vcd.svg");
}

View File

@ -289,6 +289,7 @@
.fiv-cla.fiv-icon-udf{background-image:url("icons/classic/udf.svg")}
.fiv-cla.fiv-icon-vb{background-image:url("icons/classic/vb.svg")}
.fiv-cla.fiv-icon-vbproj{background-image:url("icons/classic/vbproj.svg")}
.fiv-cla.fiv-icon-vbs{background-image:url("icons/classic/vbs.svg")}
.fiv-cla.fiv-icon-vcd{background-image:url("icons/classic/vcd.svg")}
.fiv-cla.fiv-icon-vcs{background-image:url("icons/classic/vcs.svg")}
.fiv-cla.fiv-icon-vdi{background-image:url("icons/classic/vdi.svg")}
@ -618,6 +619,7 @@
.fiv-viv.fiv-icon-udf{background-image:url("icons/vivid/udf.svg")}
.fiv-viv.fiv-icon-vb{background-image:url("icons/vivid/vb.svg")}
.fiv-viv.fiv-icon-vbproj{background-image:url("icons/vivid/vbproj.svg")}
.fiv-viv.fiv-icon-vbs{background-image:url("icons/vivid/vbs.svg")}
.fiv-viv.fiv-icon-vcd{background-image:url("icons/vivid/vcd.svg")}
.fiv-viv.fiv-icon-vcs{background-image:url("icons/vivid/vcs.svg")}
.fiv-viv.fiv-icon-vdi{background-image:url("icons/vivid/vdi.svg")}
@ -947,6 +949,7 @@
.fiv-sqo.fiv-icon-udf{background-image:url("icons/square-o/udf.svg")}
.fiv-sqo.fiv-icon-vb{background-image:url("icons/square-o/vb.svg")}
.fiv-sqo.fiv-icon-vbproj{background-image:url("icons/square-o/vbproj.svg")}
.fiv-sqo.fiv-icon-vbs{background-image:url("icons/square-o/vbs.svg")}
.fiv-sqo.fiv-icon-vcd{background-image:url("icons/square-o/vcd.svg")}
.fiv-sqo.fiv-icon-vcs{background-image:url("icons/square-o/vcs.svg")}
.fiv-sqo.fiv-icon-vdi{background-image:url("icons/square-o/vdi.svg")}

View File

@ -1156,6 +1156,10 @@
background-image: url("icons/vivid/vbproj.svg");
}
.fiv-viv.fiv-icon-vbs {
background-image: url("icons/vivid/vbs.svg");
}
.fiv-viv.fiv-icon-vcd {
background-image: url("icons/vivid/vcd.svg");
}

View File

@ -289,6 +289,7 @@
.fiv-viv.fiv-icon-udf{background-image:url("icons/vivid/udf.svg")}
.fiv-viv.fiv-icon-vb{background-image:url("icons/vivid/vb.svg")}
.fiv-viv.fiv-icon-vbproj{background-image:url("icons/vivid/vbproj.svg")}
.fiv-viv.fiv-icon-vbs{background-image:url("icons/vivid/vbs.svg")}
.fiv-viv.fiv-icon-vcd{background-image:url("icons/vivid/vcd.svg")}
.fiv-viv.fiv-icon-vcs{background-image:url("icons/vivid/vcs.svg")}
.fiv-viv.fiv-icon-vdi{background-image:url("icons/vivid/vdi.svg")}

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#f8b0b8"/><stop offset=".211" stop-color="#f6acb5"/><stop offset=".37" stop-color="#f2a3ad"/><stop offset=".512" stop-color="#ed95a1"/><stop offset=".645" stop-color="#e78292"/><stop offset=".77" stop-color="#e06980"/><stop offset=".889" stop-color="#d7486b"/><stop offset="1" stop-color="#ce0757"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#SVGID_1_)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d41c5c" stroke-width="2"/><path d="M43.3 91.1h-4.4l-1.8-4.5H29l-1.7 4.5H23l7.9-19.8h4.3l8.1 19.8zm-7.5-7.9L33 75.9l-2.7 7.4h5.5zm9.5 7.9V71.2h4.1V91h-4.1z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="1729.689" y1="-415.956" x2="1753.864" y2="-415.956" gradientTransform="scale(-1 1) rotate(-35.88 1555.712 2555.727)"><stop offset="0" stop-color="#ee2868"/><stop offset="1" stop-color="#bc024f"/></linearGradient><path d="M22 62.3L17.4 59s7.7-15.2 4.7-20.8l16.3-12.6s6.2 1 9.3 6.5l-7 19.1C34.3 50.3 22 62.3 22 62.3zm11.1-19.8c1.3.9 3 .6 3.9-.6.9-1.3.6-3-.6-3.9-1.3-.9-3-.6-3.9.6-1 1.2-.7 3 .6 3.9zm0 0L19.8 60.6m39.3-34.4c-6.2-11.8-19.6-14-19.6-14l-6 8.2c13.4 2.2 19.6 14 19.6 14l6-8.2z" opacity=".73" fill="url(#SVGID_2_)"/><path d="M19.9 60.8l13.4-18.2" fill-opacity="0" stroke="#f8b6bb"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".265" stop-color="#fffaec"/><stop offset=".402" stop-color="#fef2e6"/><stop offset=".51" stop-color="#fce7dc"/><stop offset=".604" stop-color="#fad7cf"/><stop offset=".687" stop-color="#f6c3bf"/><stop offset=".763" stop-color="#f2abac"/><stop offset=".834" stop-color="#ee8f97"/><stop offset=".901" stop-color="#ea6f82"/><stop offset=".962" stop-color="#e5446d"/><stop offset="1" stop-color="#e30e60"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#SVGID_3_)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d41c5c" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#f8b0b8"/><stop offset=".211" stop-color="#f6acb5"/><stop offset=".37" stop-color="#f2a3ad"/><stop offset=".512" stop-color="#ed95a1"/><stop offset=".645" stop-color="#e78292"/><stop offset=".77" stop-color="#e06980"/><stop offset=".889" stop-color="#d7486b"/><stop offset="1" stop-color="#ce0757"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#a)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d41c5c" stroke-width="2"/><path d="M43.3 91.1h-4.4l-1.8-4.5H29l-1.7 4.5H23l7.9-19.8h4.3l8.1 19.8zm-7.5-7.9L33 75.9l-2.7 7.4h5.5zm9.5 7.9V71.2h4.1V91h-4.1z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="1729.689" y1="-415.956" x2="1753.864" y2="-415.956" gradientTransform="scale(-1 1) rotate(-35.88 1555.712 2555.727)"><stop offset="0" stop-color="#ee2868"/><stop offset="1" stop-color="#bc024f"/></linearGradient><path d="M22 62.3L17.4 59s7.7-15.2 4.7-20.8l16.3-12.6s6.2 1 9.3 6.5l-7 19.1C34.3 50.3 22 62.3 22 62.3zm11.1-19.8c1.3.9 3 .6 3.9-.6.9-1.3.6-3-.6-3.9-1.3-.9-3-.6-3.9.6-1 1.2-.7 3 .6 3.9zm0 0L19.8 60.6m39.3-34.4c-6.2-11.8-19.6-14-19.6-14l-6 8.2c13.4 2.2 19.6 14 19.6 14l6-8.2z" opacity=".73" fill="url(#b)"/><path d="M19.9 60.8l13.4-18.2" fill-opacity="0" stroke="#f8b6bb"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".265" stop-color="#fffaec"/><stop offset=".402" stop-color="#fef2e6"/><stop offset=".51" stop-color="#fce7dc"/><stop offset=".604" stop-color="#fad7cf"/><stop offset=".687" stop-color="#f6c3bf"/><stop offset=".763" stop-color="#f2abac"/><stop offset=".834" stop-color="#ee8f97"/><stop offset=".901" stop-color="#ea6f82"/><stop offset=".962" stop-color="#e5446d"/><stop offset="1" stop-color="#e30e60"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#c)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d41c5c" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#f8b0b8"/><stop offset=".211" stop-color="#f6acb5"/><stop offset=".37" stop-color="#f2a3ad"/><stop offset=".512" stop-color="#ed95a1"/><stop offset=".645" stop-color="#e78292"/><stop offset=".77" stop-color="#e06980"/><stop offset=".889" stop-color="#d7486b"/><stop offset="1" stop-color="#ce0757"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#SVGID_1_)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d41c5c" stroke-width="2"/><path d="M33.9 91.1h-4.4l-1.8-4.5h-8.1L18 91.1h-4.3l7.9-19.8h4.3l8 19.8zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm9.6 7.9V71.2h4V91h-4zm12.5 0V74.6h-6v-3.4h16v3.4h-6v16.5h-4z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="1729.689" y1="-415.956" x2="1753.864" y2="-415.956" gradientTransform="scale(-1 1) rotate(-35.88 1555.712 2555.727)"><stop offset="0" stop-color="#ee2868"/><stop offset="1" stop-color="#bc024f"/></linearGradient><path d="M22 62.3L17.4 59s7.7-15.2 4.7-20.8l16.3-12.6s6.2 1 9.3 6.5l-7 19.1C34.3 50.3 22 62.3 22 62.3zm11.1-19.8c1.3.9 3 .6 3.9-.6.9-1.3.6-3-.6-3.9-1.3-.9-3-.6-3.9.6-1 1.2-.7 3 .6 3.9zm0 0L19.8 60.6m39.3-34.4c-6.2-11.8-19.6-14-19.6-14l-6 8.2c13.4 2.2 19.6 14 19.6 14l6-8.2z" opacity=".73" fill="url(#SVGID_2_)"/><path d="M19.9 60.8l13.4-18.2" fill-opacity="0" stroke="#f8b6bb"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".265" stop-color="#fffaec"/><stop offset=".402" stop-color="#fef2e6"/><stop offset=".51" stop-color="#fce7dc"/><stop offset=".604" stop-color="#fad7cf"/><stop offset=".687" stop-color="#f6c3bf"/><stop offset=".763" stop-color="#f2abac"/><stop offset=".834" stop-color="#ee8f97"/><stop offset=".901" stop-color="#ea6f82"/><stop offset=".962" stop-color="#e5446d"/><stop offset="1" stop-color="#e30e60"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#SVGID_3_)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d41c5c" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#f8b0b8"/><stop offset=".211" stop-color="#f6acb5"/><stop offset=".37" stop-color="#f2a3ad"/><stop offset=".512" stop-color="#ed95a1"/><stop offset=".645" stop-color="#e78292"/><stop offset=".77" stop-color="#e06980"/><stop offset=".889" stop-color="#d7486b"/><stop offset="1" stop-color="#ce0757"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#a)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d41c5c" stroke-width="2"/><path d="M33.9 91.1h-4.4l-1.8-4.5h-8.1L18 91.1h-4.3l7.9-19.8h4.3l8 19.8zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm9.6 7.9V71.2h4V91h-4zm12.5 0V74.6h-6v-3.4h16v3.4h-6v16.5h-4z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="1729.689" y1="-415.956" x2="1753.864" y2="-415.956" gradientTransform="scale(-1 1) rotate(-35.88 1555.712 2555.727)"><stop offset="0" stop-color="#ee2868"/><stop offset="1" stop-color="#bc024f"/></linearGradient><path d="M22 62.3L17.4 59s7.7-15.2 4.7-20.8l16.3-12.6s6.2 1 9.3 6.5l-7 19.1C34.3 50.3 22 62.3 22 62.3zm11.1-19.8c1.3.9 3 .6 3.9-.6.9-1.3.6-3-.6-3.9-1.3-.9-3-.6-3.9.6-1 1.2-.7 3 .6 3.9zm0 0L19.8 60.6m39.3-34.4c-6.2-11.8-19.6-14-19.6-14l-6 8.2c13.4 2.2 19.6 14 19.6 14l6-8.2z" opacity=".73" fill="url(#b)"/><path d="M19.9 60.8l13.4-18.2" fill-opacity="0" stroke="#f8b6bb"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".265" stop-color="#fffaec"/><stop offset=".402" stop-color="#fef2e6"/><stop offset=".51" stop-color="#fce7dc"/><stop offset=".604" stop-color="#fad7cf"/><stop offset=".687" stop-color="#f6c3bf"/><stop offset=".763" stop-color="#f2abac"/><stop offset=".834" stop-color="#ee8f97"/><stop offset=".901" stop-color="#ea6f82"/><stop offset=".962" stop-color="#e5446d"/><stop offset="1" stop-color="#e30e60"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#c)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d41c5c" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M28 91.1h-4.4l-1.7-4.5h-8l-1.6 4.5H8l7.8-19.8H20l8 19.8zm-7.4-7.9l-2.8-7.4-2.7 7.4h5.5zm9.5 7.9V71.2h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3h-2.6v7.5h-4.1zm4.1-16.5v5.6h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.4-.1-2.9-.1h-2.1zm14.5 16.5V71.2h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3h-2.6v7.5h-4.1zm4.1-16.5v5.6H55c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.4-.1-2.9-.1h-2.1z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="34.962" y1="37.847" x2="34.962" y2="88.47" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M55.1 36.3c-.1-1-.3-1.9-.6-2.9l4.7-2.7-5-8.6-4.7 2.7c-1.3-1.4-2.9-2.6-4.6-3.6l1.4-5.1-9.7-2.7-1.4 5.1c-1 0-1.9 0-2.9.1s-1.9.3-2.9.6l-2.7-4.7-8.7 4.9 2.7 4.7c-1.4 1.4-2.6 2.9-3.6 4.6l-5.2-1.4L9.4 37l5.2 1.4c0 1 0 1.9.2 2.9.1 1 .3 1.9.6 2.9l-4.7 2.7 5 8.6 4.7-2.7c1.3 1.4 2.9 2.6 4.6 3.6l-1.4 5.1 9.7 2.7 1.4-5.1c1 0 1.9 0 2.9-.1s1.9-.3 2.9-.6l2.7 4.7 8.7-4.9-2.7-4.7c1.4-1.3 2.6-2.9 3.6-4.6l5.2 1.4 2.7-9.6-5.2-1.4c-.2-1-.2-2-.4-3zM36.1 47c-4.5.6-8.7-2.7-9.3-7.1-.6-4.5 2.7-8.6 7.2-9.2 4.5-.6 8.7 2.7 9.3 7.1.5 4.5-2.7 8.6-7.2 9.2z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_3_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M28 91.1h-4.4l-1.7-4.5h-8l-1.6 4.5H8l7.8-19.8H20l8 19.8zm-7.4-7.9l-2.8-7.4-2.7 7.4h5.5zm9.5 7.9V71.2h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3h-2.6v7.5h-4.1zm4.1-16.5v5.6h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.4-.1-2.9-.1h-2.1zm14.5 16.5V71.2h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3h-2.6v7.5h-4.1zm4.1-16.5v5.6H55c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.4-.1-2.9-.1h-2.1z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="34.962" y1="37.847" x2="34.962" y2="88.47" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M55.1 36.3c-.1-1-.3-1.9-.6-2.9l4.7-2.7-5-8.6-4.7 2.7c-1.3-1.4-2.9-2.6-4.6-3.6l1.4-5.1-9.7-2.7-1.4 5.1c-1 0-1.9 0-2.9.1s-1.9.3-2.9.6l-2.7-4.7-8.7 4.9 2.7 4.7c-1.4 1.4-2.6 2.9-3.6 4.6l-5.2-1.4L9.4 37l5.2 1.4c0 1 0 1.9.2 2.9.1 1 .3 1.9.6 2.9l-4.7 2.7 5 8.6 4.7-2.7c1.3 1.4 2.9 2.6 4.6 3.6l-1.4 5.1 9.7 2.7 1.4-5.1c1 0 1.9 0 2.9-.1s1.9-.3 2.9-.6l2.7 4.7 8.7-4.9-2.7-4.7c1.4-1.3 2.6-2.9 3.6-4.6l5.2 1.4 2.7-9.6-5.2-1.4c-.2-1-.2-2-.4-3zM36.1 47c-4.5.6-8.7-2.7-9.3-7.1-.6-4.5 2.7-8.6 7.2-9.2 4.5-.6 8.7 2.7 9.3 7.1.5 4.5-2.7 8.6-7.2 9.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#c)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M20.9 89.8h-3.5L16 86.2H9.6l-1.3 3.6H4.9l6.2-15.7h3.4l6.4 15.7zM15 83.6l-2.2-5.8-2.1 5.8H15zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm30 5.1h-3.5l-1.4-3.6h-6.4l-1.3 3.6h-3.4L42 74.1h3.4l6.4 15.7zm-6-6.2l-2.2-5.8-2.1 5.8h4.3zm6.1 6.2l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_3_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M20.9 89.8h-3.5L16 86.2H9.6l-1.3 3.6H4.9l6.2-15.7h3.4l6.4 15.7zM15 83.6l-2.2-5.8-2.1 5.8H15zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm30 5.1h-3.5l-1.4-3.6h-6.4l-1.3 3.6h-3.4L42 74.1h3.4l6.4 15.7zm-6-6.2l-2.2-5.8-2.1 5.8h4.3zm6.1 6.2l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="127.8" x2="36" y2="29.8" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.075" y1="56.575" x2="58.575" y2="43.075" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_2_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M27.3 89.8h-4.4l-1.8-4.6h-8l-1.7 4.6H7.2l7.8-20h4.3l8 20zm-7.5-7.9L17 74.5l-2.7 7.4h5.5zm8.6 1.4l3.9-.4c.2 1.3.7 2.3 1.4 2.9s1.7.9 2.9.9c1.3 0 2.3-.3 2.9-.8s1-1.2 1-1.9c0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.9.6-.9 1.4-1.6 2.5-2 1.1-.5 2.4-.7 3.9-.7 2.5 0 4.4.6 5.7 1.7s1.9 2.6 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2s-1.4-.7-2.6-.7c-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3 2 .5 3.4.9 4.4 1.4s1.7 1.2 2.2 2 .8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2s-1.5 1.7-2.7 2.2-2.6.7-4.4.7c-2.5 0-4.5-.6-5.8-1.8-1.2-.9-2-2.6-2.3-4.8zm32.5-.9l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9s-3.2 1.6-5.3 1.6c-2.7 0-4.8-.9-6.6-2.7s-2.6-4.3-2.6-7.5c0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.9-2.7-.9c-1.5 0-2.7.5-3.6 1.6s-1.4 2.8-1.4 5.2c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.6 1.6c1.1 0 2-.3 2.8-1s1.2-1.7 1.5-3.2z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="127.8" x2="36" y2="29.8" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.075" y1="56.575" x2="58.575" y2="43.075" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M27.3 89.8h-4.4l-1.8-4.6h-8l-1.7 4.6H7.2l7.8-20h4.3l8 20zm-7.5-7.9L17 74.5l-2.7 7.4h5.5zm8.6 1.4l3.9-.4c.2 1.3.7 2.3 1.4 2.9s1.7.9 2.9.9c1.3 0 2.3-.3 2.9-.8s1-1.2 1-1.9c0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.9.6-.9 1.4-1.6 2.5-2 1.1-.5 2.4-.7 3.9-.7 2.5 0 4.4.6 5.7 1.7s1.9 2.6 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2s-1.4-.7-2.6-.7c-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3 2 .5 3.4.9 4.4 1.4s1.7 1.2 2.2 2 .8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2s-1.5 1.7-2.7 2.2-2.6.7-4.4.7c-2.5 0-4.5-.6-5.8-1.8-1.2-.9-2-2.6-2.3-4.8zm32.5-.9l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9s-3.2 1.6-5.3 1.6c-2.7 0-4.8-.9-6.6-2.7s-2.6-4.3-2.6-7.5c0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.9-2.7-.9c-1.5 0-2.7.5-3.6 1.6s-1.4 2.8-1.4 5.2c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.6 1.6c1.1 0 2-.3 2.8-1s1.2-1.7 1.5-3.2z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M20.9 89.8h-3.5L16 86.2H9.6l-1.3 3.6H4.9l6.2-15.7h3.4l6.4 15.7zM15 83.6l-2.2-5.8-2.1 5.8H15zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm25.8-.7l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.8-.7-5.2-2.1-1.4-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9s-1.3-.7-2.2-.7c-1.2 0-2.1.4-2.9 1.3s-1.1 2.2-1.1 4.1c0 2 .4 3.4 1.1 4.3s1.7 1.3 2.8 1.3c.9 0 1.6-.3 2.2-.8s1.1-1.6 1.4-2.8zm4.3 5.8l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_3_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M20.9 89.8h-3.5L16 86.2H9.6l-1.3 3.6H4.9l6.2-15.7h3.4l6.4 15.7zM15 83.6l-2.2-5.8-2.1 5.8H15zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm25.8-.7l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.8-.7-5.2-2.1-1.4-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9s-1.3-.7-2.2-.7c-1.2 0-2.1.4-2.9 1.3s-1.1 2.2-1.1 4.1c0 2 .4 3.4 1.1 4.3s1.7 1.3 2.8 1.3c.9 0 1.6-.3 2.2-.8s1.1-1.6 1.4-2.8zm4.3 5.8l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M27.3 91.1h-4.4l-1.7-4.5h-8l-1.6 4.5H7.3l7.8-19.8h4.3l7.9 19.8zm-7.4-7.9l-2.8-7.4-2.7 7.4h5.5zm8.5 1.4l3.9-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 2.9-.8s1-1.2 1-1.9c0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.5-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6s1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.7.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2 .5.9.8 1.9.8 3.2 0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2s-2.6.7-4.3.7c-2.5 0-4.5-.6-5.8-1.7-1.3-1-2.1-2.7-2.4-4.9zm19.7 6.5V71.2h4V79H60v-7.8h4V91h-4v-8.7h-7.9V91h-4z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.75" y1="64" x2="36.75" y2="17.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M60 17.5H13.5V64H60V17.5zm-37.2 9.3h-4.6v-4.6h4.6v4.6zm32.5 0H27.5v-4.6h27.9v4.6zm0 32.5H18.1V31.5h37.2v27.8z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="28.109" y1="52.694" x2="28.109" y2="35.456"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M25.4 35.5l-3.2 3.2 5.3 5.4-5.3 5.3 3.2 3.3 8.7-8.6z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="37.75" y1="55.7" x2="37.75" y2="51.05"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33.1 51h9.3v4.7h-9.3z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_5_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.231" x2="36.632" y2="24.231"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.606" x2="36.632" y2="23.856"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M30.2 40.4h12.9v3.2H30.2v-3.2zm0 6.4h12.9V50H30.2v-3.2zm0 6.5h12.9v3.2H30.2v-3.2zm22.6-29.1H26.9c-3.6 0-6.5 2.9-6.5 6.5v29.1H14c0 3.6 2.9 6.5 6.5 6.5h25.8c3.6 0 6.5-2.9 6.5-6.5V33.9h6.5v-3.2c-.1-3.6-2.9-6.5-6.5-6.5zm-3.2 35c0 2.1-1.7 3.8-3.8 3.8H22.1c1.6-1.1 1.6-3.2 1.6-3.2V30.7c0-1.8 1.4-3.2 3.2-3.2 1.8 0 3.2 1.4 3.2 3.2v3.2h19.4v25.3zM33.4 30.7v-3.2h19.4c2.9 0 3.2 1.8 3.2 3.2H33.4z" fill="url(#b)" stroke="url(#c)" stroke-width=".75" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#d)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M27.9 91.9h-3.8L22.6 88h-6.9l-1.4 3.9h-3.7l6.7-17.2H21l6.9 17.2zm-6.4-6.8l-2.4-6.4-2.3 6.4h4.7zm7.4 1.2l3.4-.3c.2 1.1.6 2 1.2 2.5s1.5.8 2.5.8c1.1 0 2-.2 2.5-.7s.8-1 .8-1.7c0-.4-.1-.8-.4-1s-.7-.5-1.2-.7c-.4-.1-1.3-.4-2.8-.8-1.9-.5-3.2-1-3.9-1.7-1.1-.9-1.6-2.1-1.6-3.5 0-.9.2-1.7.7-2.5s1.2-1.3 2.1-1.7 2.1-.6 3.4-.6c2.2 0 3.8.5 4.9 1.4s1.7 2.2 1.7 3.8l-3.5.2c-.1-.9-.5-1.5-1-1.9s-1.2-.6-2.2-.6c-1 0-1.8.2-2.4.6-.4.3-.6.6-.6 1.1 0 .4.2.8.5 1 .4.4 1.5.8 3.2 1.1s2.9.8 3.7 1.2 1.4 1 1.9 1.7.7 1.7.7 2.7c0 1-.3 1.9-.8 2.8s-1.3 1.5-2.3 1.9-2.2.6-3.7.6c-2.2 0-3.8-.5-5-1.5s-1.6-2.3-1.8-4.2zm16.9 5.6V74.7h3.5v6.8H56v-6.8h3.5v17.2H56v-7.5h-6.8v7.5h-3.4z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M20.9 89.8h-3.5L16 86.2H9.6l-1.3 3.6H4.9l6.2-15.7h3.4l6.4 15.7zM15 83.6l-2.2-5.8-2.1 5.8H15zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm15.6 5.1V74.1h3.2v6.2h6.3v-6.2h3.2v15.7h-3.2v-6.9h-6.3v6.9h-3.2zm14.5 0l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_3_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M20.9 89.8h-3.5L16 86.2H9.6l-1.3 3.6H4.9l6.2-15.7h3.4l6.4 15.7zM15 83.6l-2.2-5.8-2.1 5.8H15zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm15.6 5.1V74.1h3.2v6.2h6.3v-6.2h3.2v15.7h-3.2v-6.9h-6.3v6.9h-3.2zm14.5 0l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M19.9 89.8h-3.5L15 86.2H8.6l-1.3 3.6H3.9l6.2-15.7h3.4l6.4 15.7zM14 83.6l-2.2-5.8-2.1 5.8H14zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm15.6 5.1V74.1h4.8l2.9 10.7L47 74.1h4.8v15.7h-3V77.4l-3.2 12.4h-3.1l-3.1-12.4v12.4h-3zm16.9 0l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_3_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M19.9 89.8h-3.5L15 86.2H8.6l-1.3 3.6H3.9l6.2-15.7h3.4l6.4 15.7zM14 83.6l-2.2-5.8-2.1 5.8H14zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm15.6 5.1V74.1h4.8l2.9 10.7L47 74.1h4.8v15.7h-3V77.4l-3.2 12.4h-3.1l-3.1-12.4v12.4h-3zm16.9 0l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M28 89.8h-4.4l-1.8-4.5h-8l-1.7 4.5H7.9L15.7 70H20l8 19.8zM20.6 82l-2.8-7.4-2.7 7.4h5.5zm8.6 1.4l3.9-.4c.2 1.3.7 2.3 1.4 2.9s1.7.9 2.9.9c1.3 0 2.3-.3 2.9-.8s1-1.2 1-1.9c0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2s-2.6.7-4.4.7c-2.5 0-4.5-.6-5.8-1.7-1.3-1-2.1-2.7-2.3-4.9zm19.7 6.4V70h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1s-1 1.5-1.7 2-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3H53v7.5h-4.1zm4-16.5V79h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8s-1-.8-1.6-.9c-.5-.1-1.5-.1-2.9-.1h-2.1z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_3_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M28 89.8h-4.4l-1.8-4.5h-8l-1.7 4.5H7.9L15.7 70H20l8 19.8zM20.6 82l-2.8-7.4-2.7 7.4h5.5zm8.6 1.4l3.9-.4c.2 1.3.7 2.3 1.4 2.9s1.7.9 2.9.9c1.3 0 2.3-.3 2.9-.8s1-1.2 1-1.9c0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2s-2.6.7-4.4.7c-2.5 0-4.5-.6-5.8-1.7-1.3-1-2.1-2.7-2.3-4.9zm19.7 6.4V70h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 1.9.8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.2-.7 3.1s-1 1.5-1.7 2-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3H53v7.5h-4.1zm4-16.5V79h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8s-1-.8-1.6-.9c-.5-.1-1.5-.1-2.9-.1h-2.1z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M21.9 89.8h-3.5L17 86.2h-6.4l-1.3 3.6H5.9l6.2-15.7h3.4l6.4 15.7zM16 83.6l-2.2-5.8-2.1 5.8H16zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm15.6 5.1V74.1h5.2c2 0 3.2.1 3.8.2.9.2 1.7.8 2.3 1.5.6.8.9 1.8.9 3.1 0 1-.2 1.8-.5 2.4s-.8 1.2-1.4 1.6c-.5.4-1.1.6-1.7.7-.8.2-1.9.2-3.3.2h-2.1v5.9h-3.2zm3.2-13.1v4.5h1.8c1.3 0 2.1-.1 2.5-.2s.8-.4 1-.8.4-.8.4-1.2c0-.6-.2-1-.5-1.4-.3-.4-.8-.6-1.3-.7-.4-.1-1.2-.1-2.3-.1h-1.6zm10 13.1l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7L61 81.7l5.4 8.1h-3.9L59 84.4l-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_3_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M21.9 89.8h-3.5L17 86.2h-6.4l-1.3 3.6H5.9l6.2-15.7h3.4l6.4 15.7zM16 83.6l-2.2-5.8-2.1 5.8H16zm6.8 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3.6.5 1.4.7 2.3.7 1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.1-.2-.5-.4-1.1-.6-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 3 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.6-.5-4.6-1.4-1.2-1.1-1.8-2.4-2-4.2zm15.6 5.1V74.1h5.2c2 0 3.2.1 3.8.2.9.2 1.7.8 2.3 1.5.6.8.9 1.8.9 3.1 0 1-.2 1.8-.5 2.4s-.8 1.2-1.4 1.6c-.5.4-1.1.6-1.7.7-.8.2-1.9.2-3.3.2h-2.1v5.9h-3.2zm3.2-13.1v4.5h1.8c1.3 0 2.1-.1 2.5-.2s.8-.4 1-.8.4-.8.4-1.2c0-.6-.2-1-.5-1.4-.3-.4-.8-.6-1.3-.7-.4-.1-1.2-.1-2.3-.1h-1.6zm10 13.1l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7L61 81.7l5.4 8.1h-3.9L59 84.4l-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M26.2 89.8h-4.4L20 85.3h-8.1l-1.7 4.6H5.9l7.9-20h4.3l8.1 19.9zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm7.7 7.9l6.9-10.5-6.3-9.5h4.8l4.1 6.4 4-6.4h4.7l-6.3 9.7 6.9 10.3h-4.9l-4.5-6.9-4.5 6.9h-4.9zm20.9-20h7.5c1.7 0 3 .1 3.9.4 1.2.3 2.2 1 3.1 1.8.8.9 1.5 2 1.9 3.2.4 1.3.7 2.9.7 4.7 0 1.6-.2 3.1-.6 4.3-.5 1.5-1.2 2.6-2.2 3.5-.7.7-1.7 1.2-2.9 1.6-.9.3-2.1.4-3.6.4h-7.7V69.8zm4.1 3.4v13.3h3.1c1.1 0 2-.1 2.5-.2.7-.2 1.2-.4 1.7-.8.4-.4.8-1 1.1-1.9s.4-2.1.4-3.7-.1-2.7-.4-3.6-.7-1.5-1.2-1.9-1.1-.8-1.9-.9c-.6-.1-1.7-.2-3.4-.2h-1.9z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_3_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M26.2 89.8h-4.4L20 85.3h-8.1l-1.7 4.6H5.9l7.9-20h4.3l8.1 19.9zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm7.7 7.9l6.9-10.5-6.3-9.5h4.8l4.1 6.4 4-6.4h4.7l-6.3 9.7 6.9 10.3h-4.9l-4.5-6.9-4.5 6.9h-4.9zm20.9-20h7.5c1.7 0 3 .1 3.9.4 1.2.3 2.2 1 3.1 1.8.8.9 1.5 2 1.9 3.2.4 1.3.7 2.9.7 4.7 0 1.6-.2 3.1-.6 4.3-.5 1.5-1.2 2.6-2.2 3.5-.7.7-1.7 1.2-2.9 1.6-.9.3-2.1.4-3.6.4h-7.7V69.8zm4.1 3.4v13.3h3.1c1.1 0 2-.1 2.5-.2.7-.2 1.2-.4 1.7-.8.4-.4.8-1 1.1-1.9s.4-2.1.4-3.7-.1-2.7-.4-3.6-.7-1.5-1.2-1.9-1.1-.8-1.9-.9c-.6-.1-1.7-.2-3.4-.2h-1.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.953" x2="36" y2="100.95" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M28.6 91.1h-4.3l-1.7-4.4h-7.8l-1.6 4.4H9l7.6-19.3h4.2l7.8 19.3zm-7.3-7.6l-2.7-7.2-2.6 7.2h5.3zm7.7 7.6v-3.5l10.3-12.5h-9.1v-3.3h14.3v3l-10.7 13h11.1v3.3H29zm18.3 0V71.8h14.5v3.3H51.3v4.3h9.8v3.3h-9.8V88h10.9v3.3H47.3z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="19.103" y1="40.285" x2="55" y2="40.285"><stop offset="0" stop-color="#ffce85"/><stop offset=".137" stop-color="#ffca7c"/><stop offset=".365" stop-color="#ffc062"/><stop offset=".656" stop-color="#ffaf39"/><stop offset=".994" stop-color="#ff9800"/></linearGradient><path d="M43 62.6c9.9-8.8 1.4-20.1-1.3-21.3.3 1.4.2 3.7-1.1 5-.7-3.4-3.3-7.7-7.1-9.1.6 4.8-2.3 8.3-3.4 10-1 1.6-6.8 9.7-.9 15.4-14-4.4-10.6-18.5-6.4-24.7C27 31.4 32 26.1 30.9 18c6.8 2.4 11.5 9.6 12.7 15.2 2.3-2.2 2.6-6.1 2-8.3 4.8 2 19.8 28.9-2.6 37.7z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.068" y1="74.155" x2="58.568" y2="87.655" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_3_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.953" x2="36" y2="100.95" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M28.6 91.1h-4.3l-1.7-4.4h-7.8l-1.6 4.4H9l7.6-19.3h4.2l7.8 19.3zm-7.3-7.6l-2.7-7.2-2.6 7.2h5.3zm7.7 7.6v-3.5l10.3-12.5h-9.1v-3.3h14.3v3l-10.7 13h11.1v3.3H29zm18.3 0V71.8h14.5v3.3H51.3v4.3h9.8v3.3h-9.8V88h10.9v3.3H47.3z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="19.103" y1="40.285" x2="55" y2="40.285"><stop offset="0" stop-color="#ffce85"/><stop offset=".137" stop-color="#ffca7c"/><stop offset=".365" stop-color="#ffc062"/><stop offset=".656" stop-color="#ffaf39"/><stop offset=".994" stop-color="#ff9800"/></linearGradient><path d="M43 62.6c9.9-8.8 1.4-20.1-1.3-21.3.3 1.4.2 3.7-1.1 5-.7-3.4-3.3-7.7-7.1-9.1.6 4.8-2.3 8.3-3.4 10-1 1.6-6.8 9.7-.9 15.4-14-4.4-10.6-18.5-6.4-24.7C27 31.4 32 26.1 30.9 18c6.8 2.4 11.5 9.6 12.7 15.2 2.3-2.2 2.6-6.1 2-8.3 4.8 2 19.8 28.9-2.6 37.7z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.068" y1="74.155" x2="58.568" y2="87.655" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M7 75.3h6.3c1.3 0 2.2.1 2.8.2.6.1 1.2.3 1.7.6s.9.8 1.2 1.3c.3.5.5 1.2.5 1.8 0 .7-.2 1.4-.6 2-.4.6-.9 1.1-1.6 1.4 1 .3 1.7.8 2.2 1.4s.8 1.5.8 2.4c0 .7-.2 1.4-.5 2.1-.3.7-.8 1.2-1.4 1.6-.6.4-1.3.7-2.1.7-.5.1-1.8.1-3.9.1H7V75.3zm3.2 2.6v3.6h2.1c1.2 0 2 0 2.3-.1.5-.1 1-.3 1.3-.6.3-.3.5-.7.5-1.2s-.1-.9-.4-1.2c-.3-.3-.7-.5-1.2-.6-.3 0-1.2-.1-2.7-.1h-1.9zm0 6.3v4.2h3c1.2 0 1.9 0 2.2-.1.5-.1.9-.3 1.2-.6.3-.3.4-.8.4-1.3s-.1-.9-.3-1.2c-.2-.3-.6-.6-1-.7s-1.4-.2-2.8-.2h-2.7zm27.1 6.9h-3.5l-1.4-3.6H26l-1.3 3.6h-3.4l6.2-15.7h3.4l6.4 15.7zm-5.9-6.3L29.2 79 27 84.8h4.4zm6.7 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3s1.3.7 2.3.7c1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.2-.3-.6-.5-1.2-.7-.4-.1-1.2-.4-2.6-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6s1.9-.5 3.1-.5c2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3 .3c-.1-.8-.4-1.4-.9-1.7-.5-.4-1.1-.5-2-.5-.9 0-1.7.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 2.9 1.1 1.6.4 2.7.7 3.5 1.1.7.4 1.3.9 1.8 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.5.6-2 0-3.5-.5-4.6-1.4-1.1-1.2-1.8-2.5-2-4.3zm15.6 5.2V75.3h3.2v6.2h6.3v-6.2h3.2V91h-3.2v-6.9h-6.3V91h-3.2z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.75" y1="64" x2="36.75" y2="17.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M60 17.5H13.5V64H60V17.5zm-37.2 9.3h-4.6v-4.6h4.6v4.6zm32.5 0H27.5v-4.6h27.9v4.6zm0 32.5H18.1V31.5h37.2v27.8z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="28.109" y1="52.694" x2="28.109" y2="35.456"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M25.4 35.5l-3.2 3.2 5.3 5.4-5.3 5.3 3.2 3.3 8.7-8.6z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="37.75" y1="55.7" x2="37.75" y2="51.05"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33.1 51h9.3v4.7h-9.3z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_5_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.231" x2="36.632" y2="24.231"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.606" x2="36.632" y2="23.856"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M30.2 40.4h12.9v3.2H30.2v-3.2zm0 6.4h12.9V50H30.2v-3.2zm0 6.5h12.9v3.2H30.2v-3.2zm22.6-29.1H26.9c-3.6 0-6.5 2.9-6.5 6.5v29.1H14c0 3.6 2.9 6.5 6.5 6.5h25.8c3.6 0 6.5-2.9 6.5-6.5V33.9h6.5v-3.2c-.1-3.6-2.9-6.5-6.5-6.5zm-3.2 35c0 2.1-1.7 3.8-3.8 3.8H22.1c1.6-1.1 1.6-3.2 1.6-3.2V30.7c0-1.8 1.4-3.2 3.2-3.2 1.8 0 3.2 1.4 3.2 3.2v3.2h19.4v25.3zM33.4 30.7v-3.2h19.4c2.9 0 3.2 1.8 3.2 3.2H33.4z" fill="url(#b)" stroke="url(#c)" stroke-width=".75" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#d)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M6.4 76.1h6.3c1.2 0 2.2.1 2.8.2.6.1 1.2.3 1.6.6s.9.8 1.2 1.3c.3.5.5 1.2.5 1.8 0 .7-.2 1.4-.6 2s-.9 1.1-1.6 1.4c1 .3 1.7.8 2.2 1.4s.8 1.5.8 2.4c0 .7-.2 1.4-.5 2.1-.3.7-.8 1.2-1.4 1.6-.6.4-1.3.7-2.1.7-.5.1-1.8.1-3.8.1H6.4V76.1zm3.2 2.7v3.6h2.1c1.2 0 2 0 2.3-.1.5-.1 1-.3 1.3-.6.3-.3.5-.7.5-1.2s-.1-.9-.4-1.2c-.3-.3-.7-.5-1.2-.6-.3 0-1.2-.1-2.7-.1H9.6zm0 6.2v4.2h2.9c1.1 0 1.9 0 2.2-.1.5-.1.9-.3 1.2-.6.3-.3.4-.8.4-1.3s-.1-.9-.3-1.2c-.2-.3-.6-.6-1-.7-.4-.2-1.4-.2-2.8-.2H9.6zm26.9 6.9H33l-1.4-3.6h-6.3L24 91.9h-3.4l6.1-15.7h3.4l6.4 15.7zm-5.8-6.2l-2.2-5.8-2.1 5.8h4.3zm6.7 1.1l3.1-.3c.2 1 .6 1.8 1.1 2.3s1.3.7 2.3.7c1 0 1.8-.2 2.3-.7.5-.4.8-.9.8-1.5 0-.4-.1-.7-.3-1-.2-.3-.6-.5-1.1-.7-.4-.1-1.2-.4-2.5-.7-1.7-.4-2.9-.9-3.6-1.6-1-.9-1.5-1.9-1.5-3.2 0-.8.2-1.6.7-2.2.5-.7 1.1-1.2 2-1.6.9-.4 1.9-.5 3.1-.5 2 0 3.5.4 4.5 1.3s1.5 2 1.6 3.5l-3.2.1c-.1-.8-.4-1.4-.9-1.7-.4-.4-1.1-.5-2-.5-.9 0-1.6.2-2.2.6-.3.2-.5.6-.5 1s.2.7.5 1c.4.3 1.4.7 2.9 1.1s2.7.7 3.4 1.1c.7.4 1.3.9 1.7 1.6.4.7.6 1.5.6 2.5 0 .9-.3 1.7-.8 2.5s-1.2 1.4-2.1 1.8c-.9.4-2.1.6-3.4.6-2 0-3.5-.5-4.6-1.4-1.1-1-1.7-2.4-1.9-4.1zm15.5 5.1V76.1h3.2v6.2h6.2v-6.2h3.2v15.7h-3.2V85h-6.2v6.9h-3.2z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M10.1 71.2h8c1.6 0 2.8.1 3.5.2.8.1 1.5.4 2.1.8.6.4 1.1 1 1.5 1.7s.6 1.5.6 2.3c0 .9-.3 1.8-.8 2.6s-1.2 1.4-2.1 1.7c1.2.4 2.2 1 2.8 1.8.7.8 1 1.8 1 3 0 .9-.2 1.8-.6 2.6s-1 1.5-1.7 2-1.6.8-2.7.9c-.7.1-2.3.1-4.9.1H10V71.2zm4.1 3.3v4.6h2.6c1.6 0 2.5 0 2.9-.1.7-.1 1.2-.3 1.6-.7s.6-.9.6-1.5-.2-1.1-.5-1.5c-.3-.4-.8-.6-1.5-.7-.4 0-1.5-.1-3.4-.1h-2.3zm0 7.9v5.3h3.7c1.5 0 2.4 0 2.8-.1.6-.1 1.1-.4 1.5-.8.4-.4.6-1 .6-1.7 0-.6-.1-1.1-.4-1.5-.3-.4-.7-.7-1.3-.9-.5-.2-1.7-.3-3.6-.3h-3.3zm34.1 8.7h-4.4l-1.7-4.5h-8l-1.6 4.5h-4.3L36 71.2h4.3l8 19.9zm-7.4-7.9l-2.8-7.4-2.7 7.4h5.5zm11.9 7.9V74.6h-5.9v-3.4h15.9v3.4h-5.9v16.5h-4.1z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.75" y1="64" x2="36.75" y2="17.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M60 17.5H13.5V64H60V17.5zm-37.2 9.3h-4.6v-4.6h4.6v4.6zm32.5 0H27.5v-4.6h27.9v4.6zm0 32.5H18.1V31.5h37.2v27.8z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="28.109" y1="52.694" x2="28.109" y2="35.456"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M25.4 35.5l-3.2 3.2 5.3 5.4-5.3 5.3 3.2 3.3 8.7-8.6z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="37.75" y1="55.7" x2="37.75" y2="51.05"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33.1 51h9.3v4.7h-9.3z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_5_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M10.1 71.2h8c1.6 0 2.8.1 3.5.2.8.1 1.5.4 2.1.8.6.4 1.1 1 1.5 1.7s.6 1.5.6 2.3c0 .9-.3 1.8-.8 2.6s-1.2 1.4-2.1 1.7c1.2.4 2.2 1 2.8 1.8.7.8 1 1.8 1 3 0 .9-.2 1.8-.6 2.6s-1 1.5-1.7 2-1.6.8-2.7.9c-.7.1-2.3.1-4.9.1H10V71.2zm4.1 3.3v4.6h2.6c1.6 0 2.5 0 2.9-.1.7-.1 1.2-.3 1.6-.7s.6-.9.6-1.5-.2-1.1-.5-1.5c-.3-.4-.8-.6-1.5-.7-.4 0-1.5-.1-3.4-.1h-2.3zm0 7.9v5.3h3.7c1.5 0 2.4 0 2.8-.1.6-.1 1.1-.4 1.5-.8.4-.4.6-1 .6-1.7 0-.6-.1-1.1-.4-1.5-.3-.4-.7-.7-1.3-.9-.5-.2-1.7-.3-3.6-.3h-3.3zm34.1 8.7h-4.4l-1.7-4.5h-8l-1.6 4.5h-4.3L36 71.2h4.3l8 19.9zm-7.4-7.9l-2.8-7.4-2.7 7.4h5.5zm11.9 7.9V74.6h-5.9v-3.4h15.9v3.4h-5.9v16.5h-4.1z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.75" y1="64" x2="36.75" y2="17.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M60 17.5H13.5V64H60V17.5zm-37.2 9.3h-4.6v-4.6h4.6v4.6zm32.5 0H27.5v-4.6h27.9v4.6zm0 32.5H18.1V31.5h37.2v27.8z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="28.109" y1="52.694" x2="28.109" y2="35.456"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M25.4 35.5l-3.2 3.2 5.3 5.4-5.3 5.3 3.2 3.3 8.7-8.6z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="37.75" y1="55.7" x2="37.75" y2="51.05"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33.1 51h9.3v4.7h-9.3z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#e)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1 +1 @@
<svg id="Layer_3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="1" x2="36" y2="99" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.068" y1="72.204" x2="58.568" y2="85.705" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_2_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="1" x2="36" y2="99" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.068" y1="72.204" x2="58.568" y2="85.705" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#b)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="35.75" y1="3.096" x2="35.75" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M44.8 1l27 26.7v71.2h-72V1h45z" fill="url(#SVGID_1_)"/><path d="M44.8 1l27 26.7v71.2h-72V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.85" y1="4.085" x2="35.85" y2="38.441" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#ef4136"/><stop offset="1" stop-color="#be1e2d"/></linearGradient><path d="M.7 63.6h70.2v34.3H.7V63.6z" fill="url(#SVGID_2_)"/><path d="M21.8 82.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.4 0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.5 0 4.4.7 6 2.1.9.8 1.6 2.1 2.1 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.8-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.1 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .6-.7 1.2-1.8 1.5-3.2zm25.5 7.3h-4.4l-1.8-4.5h-8l-1.7 4.5h-4.3L35 70.3h4.3l8 19.8zm-7.5-7.9L37 74.8l-2.7 7.4h5.5zm9.8 7.9V70.4h4v16.3h10.1V90H49.6z" fill="#fff"/><linearGradient id="path1156_1_" gradientUnits="userSpaceOnUse" x1="1025.8" y1="947.945" x2="1025.8" y2="986.7" gradientTransform="matrix(1 0 0 -1 -990 1005.111)"><stop offset="0" stop-color="#879ca8"/><stop offset="1" stop-color="#4d6a78"/></linearGradient><path id="path1156" d="M18.2 54.4v-6.2h7.2v6.2h-7.2zm8.8 0v-6.2h8v6.2h-8zm-8.8-7.6v-6.9h7.2v6.9h-7.2zm8.8 0v-6.9h8v6.9h-8zm-8.8-8.3v-6.2h7.2v6.2h-7.2zm18.4 15.9v-6.2h8v6.2h-8zM27 38.5v-6.2h8v6.2h-8zm19.2 15.9v-6.2h7.2v6.2h-7.2zm-9.6-7.6v-6.9h8v6.9h-8zm-8.8-18.7c0 .4-.4.7-.8.7h-1.6c-.4 0-.8-.3-.8-.7v-6.2c0-.4.4-.7.8-.7H27c.4 0 .8.3.8.7v6.2zm18.4 18.7v-6.9h7.2v6.9h-7.2zm-9.6-8.3v-6.2h8v6.2h-8zm9.6 0v-6.2h7.2v6.2h-7.2zm.8-10.4c0 .4-.4.7-.8.7h-1.6c-.4 0-.8-.3-.8-.7v-6.2c0-.4.4-.7.8-.7h1.6c.4 0 .8.3.8.7v6.2zm9.6-1.4c0-1.5-1.4-2.8-3.2-2.8h-3.2v-2.1c0-1.9-1.8-3.5-4-3.5h-1.6c-2.2 0-4 1.6-4 3.5v2.1H31v-2.1c0-1.9-1.8-3.5-4-3.5h-1.6c-2.2 0-4 1.6-4 3.5v2.1h-3.2c-1.7 0-3.2 1.3-3.2 2.8v27.7c0 1.5 1.4 2.8 3.2 2.8h35.1c1.7 0 3.2-1.3 3.2-2.8V26.7z" fill="url(#path1156_1_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="44.825" y1="74.224" x2="58.325" y2="87.724" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M44.8 1l27 26.7h-27V1z" fill="url(#SVGID_3_)"/><path d="M44.8 1l27 26.7h-27V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="35.75" y1="3.096" x2="35.75" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M44.8 1l27 26.7v71.2h-72V1h45z" fill="url(#a)"/><path d="M44.8 1l27 26.7v71.2h-72V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.85" y1="4.085" x2="35.85" y2="38.441" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#ef4136"/><stop offset="1" stop-color="#be1e2d"/></linearGradient><path d="M.7 63.6h70.2v34.3H.7V63.6z" fill="url(#b)"/><path d="M21.8 82.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.4 0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.5 0 4.4.7 6 2.1.9.8 1.6 2.1 2.1 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.8-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.1 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .6-.7 1.2-1.8 1.5-3.2zm25.5 7.3h-4.4l-1.8-4.5h-8l-1.7 4.5h-4.3L35 70.3h4.3l8 19.8zm-7.5-7.9L37 74.8l-2.7 7.4h5.5zm9.8 7.9V70.4h4v16.3h10.1V90H49.6z" fill="#fff"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="1025.8" y1="947.945" x2="1025.8" y2="986.7" gradientTransform="matrix(1 0 0 -1 -990 1005.111)"><stop offset="0" stop-color="#879ca8"/><stop offset="1" stop-color="#4d6a78"/></linearGradient><path d="M18.2 54.4v-6.2h7.2v6.2h-7.2zm8.8 0v-6.2h8v6.2h-8zm-8.8-7.6v-6.9h7.2v6.9h-7.2zm8.8 0v-6.9h8v6.9h-8zm-8.8-8.3v-6.2h7.2v6.2h-7.2zm18.4 15.9v-6.2h8v6.2h-8zM27 38.5v-6.2h8v6.2h-8zm19.2 15.9v-6.2h7.2v6.2h-7.2zm-9.6-7.6v-6.9h8v6.9h-8zm-8.8-18.7c0 .4-.4.7-.8.7h-1.6c-.4 0-.8-.3-.8-.7v-6.2c0-.4.4-.7.8-.7H27c.4 0 .8.3.8.7v6.2zm18.4 18.7v-6.9h7.2v6.9h-7.2zm-9.6-8.3v-6.2h8v6.2h-8zm9.6 0v-6.2h7.2v6.2h-7.2zm.8-10.4c0 .4-.4.7-.8.7h-1.6c-.4 0-.8-.3-.8-.7v-6.2c0-.4.4-.7.8-.7h1.6c.4 0 .8.3.8.7v6.2zm9.6-1.4c0-1.5-1.4-2.8-3.2-2.8h-3.2v-2.1c0-1.9-1.8-3.5-4-3.5h-1.6c-2.2 0-4 1.6-4 3.5v2.1H31v-2.1c0-1.9-1.8-3.5-4-3.5h-1.6c-2.2 0-4 1.6-4 3.5v2.1h-3.2c-1.7 0-3.2 1.3-3.2 2.8v27.7c0 1.5 1.4 2.8 3.2 2.8h35.1c1.7 0 3.2-1.3 3.2-2.8V26.7z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="44.825" y1="74.224" x2="58.325" y2="87.724" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M44.8 1l27 26.7h-27V1z" fill="url(#d)"/><path d="M44.8 1l27 26.7h-27V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1 +1 @@
["3g2","3ga","3gp","7z","aa","aac","accdb","accdt","adn","ai","aif","aifc","aiff","ait","amr","ani","apk","app","asax","asc","ascx","asf","ash","ashx","asmx","asp","aspx","asx","au","aup","avi","axd","aze","bak","bash","bat","bin","blank","bmp","bpg","browser","bz2","c","cab","caf","cal","cd","cer","cfg","cfm","cfml","class","cmd","com","compile","config","cpp","cptx","cr2","crdownload","crt","crypt","cs","csh","csproj","css","csv","cue","dat","db","dbf","deb","dgn","dist","diz","dll","dmg","dng","doc","docb","docm","docx","dot","dotm","dotx","download","dpj","ds_store","dtd","dwg","dxf","enc","eot","eps","epub","exe","f4v","fax","fb2","fla","flac","flv","folder","gadget","gem","gif","gitignore","go","gpg","gz","h","handlebars","hbs","hs","hsl","htm","html","ibooks","ico","ics","idx","iff","ifo","image","img","indd","inf","ini","iso","j2","jar","java","jpe","jpeg","jpg","js","json","jsp","jsx","key","kf8","ksh","less","licx","lisp","lit","lock","log","lua","m","m2v","m3u","m3u8","m4a","m4r","m4v","map","master","mc","md","mdb","mdf","mi","mid","midi","mkv","mm","mo","mobi","mov","mp2","mp3","mp4","mpa","mpd","mpe","mpeg","mpg","mpga","mpp","mpt","msi","msu","nef","nes","nfo","nix","odb","ods","odt","ogg","ogv","ost","otf","ott","ovf","p12","p7b","pages","part","pcd","pdb","pdf","pem","pfx","pgp","ph","phar","php","pkg","pl","pm","png","po","pom","pot","potx","pps","ppsx","ppt","pptm","pptx","prop","ps","ps1","psd","psp","pst","pub","py","pyc","qt","ra","ram","rar","raw","rb","rdf","resx","retry","rm","rpm","rsa","rtf","ru","rub","sass","scss","sdf","sh","sitemap","skin","sldm","sldx","sln","sol","sql","step","stl","svg","swd","swf","swift","sys","tar","tcsh","tex","tfignore","tga","tgz","tif","tiff","torrent","ts","tsv","ttf","twig","txt","udf","vb","vbproj","vcd","vcs","vdi","vdx","vmdk","vob","vscodeignore","vsd","vss","vst","vsx","vtx","war","wav","wbk","webinfo","webm","webp","wma","wmf","wmv","woff","woff2","wsf","xaml","xcf","xlm","xls","xlsm","xlsx","xlt","xltm","xltx","xml","xpi","xps","xrb","xsd","xsl","xspf","xz","yaml","yml","z","zip","zsh"]
["3g2","3ga","3gp","7z","aa","aac","accdb","accdt","adn","ai","aif","aifc","aiff","ait","amr","ani","apk","app","asax","asc","ascx","asf","ash","ashx","asmx","asp","aspx","asx","au","aup","avi","axd","aze","bak","bash","bat","bin","blank","bmp","bpg","browser","bz2","c","cab","caf","cal","cd","cer","cfg","cfm","cfml","class","cmd","com","compile","config","cpp","cptx","cr2","crdownload","crt","crypt","cs","csh","csproj","css","csv","cue","dat","db","dbf","deb","dgn","dist","diz","dll","dmg","dng","doc","docb","docm","docx","dot","dotm","dotx","download","dpj","ds_store","dtd","dwg","dxf","enc","eot","eps","epub","exe","f4v","fax","fb2","fla","flac","flv","folder","gadget","gem","gif","gitignore","go","gpg","gz","h","handlebars","hbs","hs","hsl","htm","html","ibooks","ico","ics","idx","iff","ifo","image","img","indd","inf","ini","iso","j2","jar","java","jpe","jpeg","jpg","js","json","jsp","jsx","key","kf8","ksh","less","licx","lisp","lit","lock","log","lua","m","m2v","m3u","m3u8","m4a","m4r","m4v","map","master","mc","md","mdb","mdf","mi","mid","midi","mkv","mm","mo","mobi","mov","mp2","mp3","mp4","mpa","mpd","mpe","mpeg","mpg","mpga","mpp","mpt","msi","msu","nef","nes","nfo","nix","odb","ods","odt","ogg","ogv","ost","otf","ott","ovf","p12","p7b","pages","part","pcd","pdb","pdf","pem","pfx","pgp","ph","phar","php","pkg","pl","pm","png","po","pom","pot","potx","pps","ppsx","ppt","pptm","pptx","prop","ps","ps1","psd","psp","pst","pub","py","pyc","qt","ra","ram","rar","raw","rb","rdf","resx","retry","rm","rpm","rsa","rtf","ru","rub","sass","scss","sdf","sh","sitemap","skin","sldm","sldx","sln","sol","sql","step","stl","svg","swd","swf","swift","sys","tar","tcsh","tex","tfignore","tga","tgz","tif","tiff","torrent","ts","tsv","ttf","twig","txt","udf","vb","vbproj","vbs","vcd","vcs","vdi","vdx","vmdk","vob","vscodeignore","vsd","vss","vst","vsx","vtx","war","wav","wbk","webinfo","webm","webp","wma","wmf","wmv","woff","woff2","wsf","xaml","xcf","xlm","xls","xlsm","xlsx","xlt","xltm","xltx","xml","xpi","xps","xrb","xsd","xsl","xspf","xz","yaml","yml","z","zip","zsh"]

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.8" y1="61.589" x2="36.8" y2="20.333"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.4 37.7h-2.9V32c0-6.4-5.2-11.7-11.7-11.7S25.1 25.6 25.1 32v5.7h-2.9c-1.1 0-2 .9-2 2v19.8c0 1.1.9 2 2 2h29.1c1.1 0 2-.9 2-2V39.8c.1-1.2-.8-2.1-1.9-2.1zM39.3 54.2c.2.7-.3 1.3-1 1.3h-3c-.7 0-1.2-.7-1-1.3l1-3.7c-1.1-.6-1.9-1.7-1.9-3.1 0-2 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5c0 1.4-.8 2.6-1.9 3.1l.8 3.7zm3.3-16.5H31V32c0-3.2 2.6-5.8 5.8-5.8s5.8 2.6 5.8 5.8v5.7z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_3_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M21.2 84.5l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.8-2.7-.8c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .6-.7 1.2-1.8 1.5-3.3zm7.4 7.4v-20h14.9v3.4H32.7v4.4h10.1v3.4H32.7v5.5h11.2V92H28.6zm18.7 0v-20h8.5c2.1 0 3.7.2 4.7.5s1.7 1 2.3 1.9c.6.9.9 2 .9 3.2 0 1.5-.4 2.7-1.3 3.7s-2.2 1.6-4 1.9c.9.5 1.6 1.1 2.2 1.7.6.6 1.3 1.7 2.3 3.3l2.4 3.9h-4.8l-2.9-4.4c-1-1.6-1.8-2.5-2.1-2.9s-.8-.7-1.2-.8c-.4-.2-1.1-.2-2-.2h-.8v8.4h-4.2zm4-11.6h3c1.9 0 3.2-.1 3.6-.2.5-.2.9-.4 1.1-.8s.4-.9.4-1.5c0-.7-.2-1.2-.5-1.6-.4-.4-.9-.7-1.5-.8-.3 0-1.3-.1-3-.1h-3.2v5z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.8" y1="61.589" x2="36.8" y2="20.333"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.4 37.7h-2.9V32c0-6.4-5.2-11.7-11.7-11.7S25.1 25.6 25.1 32v5.7h-2.9c-1.1 0-2 .9-2 2v19.8c0 1.1.9 2 2 2h29.1c1.1 0 2-.9 2-2V39.8c.1-1.2-.8-2.1-1.9-2.1zM39.3 54.2c.2.7-.3 1.3-1 1.3h-3c-.7 0-1.2-.7-1-1.3l1-3.7c-1.1-.6-1.9-1.7-1.9-3.1 0-2 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5c0 1.4-.8 2.6-1.9 3.1l.8 3.7zm3.3-16.5H31V32c0-3.2 2.6-5.8 5.8-5.8s5.8 2.6 5.8 5.8v5.7z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M21.2 84.5l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.8-2.7-.8c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .6-.7 1.2-1.8 1.5-3.3zm7.4 7.4v-20h14.9v3.4H32.7v4.4h10.1v3.4H32.7v5.5h11.2V92H28.6zm18.7 0v-20h8.5c2.1 0 3.7.2 4.7.5s1.7 1 2.3 1.9c.6.9.9 2 .9 3.2 0 1.5-.4 2.7-1.3 3.7s-2.2 1.6-4 1.9c.9.5 1.6 1.1 2.2 1.7.6.6 1.3 1.7 2.3 3.3l2.4 3.9h-4.8l-2.9-4.4c-1-1.6-1.8-2.5-2.1-2.9s-.8-.7-1.2-.8c-.4-.2-1.1-.2-2-.2h-.8v8.4h-4.2zm4-11.6h3c1.9 0 3.2-.1 3.6-.2.5-.2.9-.4 1.1-.8s.4-.9.4-1.5c0-.7-.2-1.2-.5-1.6-.4-.4-.9-.7-1.5-.8-.3 0-1.3-.1-3-.1h-3.2v5z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g opacity=".95"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.2" y1="61.717" x2="36.2" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="36.2" y1="62.217" x2="36.2" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M42 35.4c0-2.5-1.5-4.5-3.7-5.4v-7.3c0-1.2-.9-2.1-2.1-2.1s-2.1.9-2.1 2.1V30c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v18.4c0 1.2.9 2.1 2.1 2.1s2.1-.9 2.1-2.1V41.2c0-.2 0-.3-.1-.4 2.4-.8 3.9-2.9 3.9-5.4zM36.2 37c-.9 0-1.6-.7-1.6-1.6s.7-1.6 1.6-1.6 1.6.7 1.6 1.6-.7 1.6-1.6 1.6z" fill="url(#SVGID_2_)" stroke="url(#SVGID_3_)" stroke-miterlimit="10"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="50.918" y1="61.717" x2="50.918" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="50.918" y1="62.217" x2="50.918" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M53 22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8zM50.9 47c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6s1.6.7 1.6 1.6c0 .9-.7 1.6-1.6 1.6z" fill="url(#SVGID_4_)" stroke="url(#SVGID_5_)" stroke-miterlimit="10"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="21.482" y1="61.717" x2="21.482" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="21.482" y1="62.217" x2="21.482" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M19.4 59.6c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4zm2.1-15.8c.9 0 1.6.7 1.6 1.6 0 .9-.7 1.6-1.6 1.6-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6z" fill="url(#SVGID_6_)" stroke="url(#SVGID_7_)" stroke-miterlimit="10"/></g><linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_8_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M21.3 84.5l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5S18 75 16.9 75c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .7-.7 1.3-1.8 1.6-3.3zm7.4 7.4v-20h13.7v3.4h-9.7V80h8.4v3.4h-8.4v8.5h-4zm26.4-7.4v-3.4h8.7v8c-.8.8-2.1 1.5-3.7 2.2-1.6.6-3.2.9-4.9.9-2.1 0-3.9-.4-5.5-1.3s-2.7-2.1-3.5-3.8c-.8-1.6-1.2-3.4-1.2-5.3 0-2.1.4-3.9 1.3-5.6s2.2-2.9 3.8-3.7c1.3-.7 2.9-1 4.8-1 2.5 0 4.4.5 5.8 1.6 1.4 1 2.3 2.5 2.7 4.3l-4 .8c-.3-1-.8-1.8-1.6-2.3s-1.6-.9-2.7-.9c-1.8 0-3.2.6-4.2 1.7s-1.6 2.8-1.6 5c0 2.4.5 4.2 1.6 5.4 1.1 1.2 2.4 1.8 4.2 1.8.8 0 1.7-.2 2.5-.5.9-.3 1.6-.7 2.2-1.2v-2.5h-4.7z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g opacity=".95"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.2" y1="61.717" x2="36.2" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.2" y1="62.217" x2="36.2" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M42 35.4c0-2.5-1.5-4.5-3.7-5.4v-7.3c0-1.2-.9-2.1-2.1-2.1s-2.1.9-2.1 2.1V30c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v18.4c0 1.2.9 2.1 2.1 2.1s2.1-.9 2.1-2.1V41.2c0-.2 0-.3-.1-.4 2.4-.8 3.9-2.9 3.9-5.4zM36.2 37c-.9 0-1.6-.7-1.6-1.6s.7-1.6 1.6-1.6 1.6.7 1.6 1.6-.7 1.6-1.6 1.6z" fill="url(#b)" stroke="url(#c)" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="50.918" y1="61.717" x2="50.918" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="50.918" y1="62.217" x2="50.918" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M53 22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8zM50.9 47c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6s1.6.7 1.6 1.6c0 .9-.7 1.6-1.6 1.6z" fill="url(#d)" stroke="url(#e)" stroke-miterlimit="10"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="21.482" y1="61.717" x2="21.482" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="21.482" y1="62.217" x2="21.482" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M19.4 59.6c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4zm2.1-15.8c.9 0 1.6.7 1.6 1.6 0 .9-.7 1.6-1.6 1.6-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6z" fill="url(#f)" stroke="url(#g)" stroke-miterlimit="10"/></g><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#h)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M21.3 84.5l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5S18 75 16.9 75c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .7-.7 1.3-1.8 1.6-3.3zm7.4 7.4v-20h13.7v3.4h-9.7V80h8.4v3.4h-8.4v8.5h-4zm26.4-7.4v-3.4h8.7v8c-.8.8-2.1 1.5-3.7 2.2-1.6.6-3.2.9-4.9.9-2.1 0-3.9-.4-5.5-1.3s-2.7-2.1-3.5-3.8c-.8-1.6-1.2-3.4-1.2-5.3 0-2.1.4-3.9 1.3-5.6s2.2-2.9 3.8-3.7c1.3-.7 2.9-1 4.8-1 2.5 0 4.4.5 5.8 1.6 1.4 1 2.3 2.5 2.7 4.3l-4 .8c-.3-1-.8-1.8-1.6-2.3s-1.6-.9-2.7-.9c-1.8 0-3.2.6-4.2 1.7s-1.6 2.8-1.6 5c0 2.4.5 4.2 1.6 5.4 1.1 1.2 2.4 1.8 4.2 1.8.8 0 1.7-.2 2.5-.5.9-.3 1.6-.7 2.2-1.2v-2.5h-4.7z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="3" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g opacity=".9"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="19" y1="39.207" x2="19" y2="67.397" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="19" y1="37.568" x2="19" y2="69.036" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M12 44.7l14-12.1v6.1l-9.5 7.9v.1l9.5 7.9v6.1l-14-12v-4z" fill="url(#SVGID_2_)" stroke="url(#SVGID_3_)" stroke-width="1.5" stroke-miterlimit="10"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="36.7" y1="35.5" x2="36.7" y2="70.5" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="36.701" y1="34.75" x2="36.701" y2="71.25" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M38.4 29.5h3.7l-7.2 35h-3.6l7.1-35z" fill="url(#SVGID_4_)" stroke="url(#SVGID_5_)" stroke-width="1.5" stroke-miterlimit="10"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="54.2" y1="38.948" x2="54.2" y2="67.31" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="54.2" y1="37.307" x2="54.2" y2="68.946" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M47.2 54.8l9.5-7.9v-.1l-9.5-7.9v-6.1l14 12.1V49l-14 12.1v-6.3z" fill="url(#SVGID_6_)" stroke="url(#SVGID_7_)" stroke-width="1.5" stroke-miterlimit="10"/></g><linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="45.037" y1="74.187" x2="58.537" y2="87.687" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_8_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M20.9 84.4l3.8 1.2c-.6 2.1-1.6 3.7-2.9 4.7-1.4 1-3.1 1.5-5.2 1.5-2.6 0-4.7-.9-6.4-2.6C8.5 87.4 7.7 85 7.7 82c0-3.2.8-5.7 2.5-7.5s3.9-2.7 6.6-2.7c2.4 0 4.3.7 5.8 2.1.9.8 1.6 2 2 3.6l-3.9.9c-.2-1-.7-1.8-1.4-2.4s-1.6-.9-2.7-.9c-1.4 0-2.6.5-3.5 1.5s-1.4 2.7-1.4 5c0 2.4.4 4.2 1.3 5.2s2 1.6 3.5 1.6c1 0 1.9-.3 2.7-1 .8-.5 1.3-1.5 1.7-3zm7.2 7.1V72.2h13.4v3.3H32v4.6h8.2v3.3H32v8.2l-3.9-.1zm16.6 0V72.2h5.9l3.5 13.2 3.5-13.2h5.9v19.3h-3.7V76.3L56 91.5h-3.8l-3.9-15.2v15.2h-3.6z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g opacity=".9"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="19" y1="39.207" x2="19" y2="67.397" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="19" y1="37.568" x2="19" y2="69.036" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M12 44.7l14-12.1v6.1l-9.5 7.9v.1l9.5 7.9v6.1l-14-12v-4z" fill="url(#b)" stroke="url(#c)" stroke-width="1.5" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="36.7" y1="35.5" x2="36.7" y2="70.5" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="36.701" y1="34.75" x2="36.701" y2="71.25" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M38.4 29.5h3.7l-7.2 35h-3.6l7.1-35z" fill="url(#d)" stroke="url(#e)" stroke-width="1.5" stroke-miterlimit="10"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="54.2" y1="38.948" x2="54.2" y2="67.31" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="54.2" y1="37.307" x2="54.2" y2="68.946" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M47.2 54.8l9.5-7.9v-.1l-9.5-7.9v-6.1l14 12.1V49l-14 12.1v-6.3z" fill="url(#f)" stroke="url(#g)" stroke-width="1.5" stroke-miterlimit="10"/></g><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="45.037" y1="74.187" x2="58.537" y2="87.687" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#h)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M20.9 84.4l3.8 1.2c-.6 2.1-1.6 3.7-2.9 4.7-1.4 1-3.1 1.5-5.2 1.5-2.6 0-4.7-.9-6.4-2.6C8.5 87.4 7.7 85 7.7 82c0-3.2.8-5.7 2.5-7.5s3.9-2.7 6.6-2.7c2.4 0 4.3.7 5.8 2.1.9.8 1.6 2 2 3.6l-3.9.9c-.2-1-.7-1.8-1.4-2.4s-1.6-.9-2.7-.9c-1.4 0-2.6.5-3.5 1.5s-1.4 2.7-1.4 5c0 2.4.4 4.2 1.3 5.2s2 1.6 3.5 1.6c1 0 1.9-.3 2.7-1 .8-.5 1.3-1.5 1.7-3zm7.2 7.1V72.2h13.4v3.3H32v4.6h8.2v3.3H32v8.2l-3.9-.1zm16.6 0V72.2h5.9l3.5 13.2 3.5-13.2h5.9v19.3h-3.7V76.3L56 91.5h-3.8l-3.9-15.2v15.2h-3.6z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g opacity=".9"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="19.014" y1="60.793" x2="19.014" y2="32.603"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="19.014" y1="62.432" x2="19.014" y2="30.964"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M12 44.7l14-12.1v6.1l-9.5 7.9v.1l9.5 7.9v6.1l-14-12v-4z" fill="url(#SVGID_2_)" stroke="url(#SVGID_3_)" stroke-width="1.5" stroke-miterlimit="10"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="36.686" y1="64.5" x2="36.686" y2="29.5"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="36.687" y1="65.25" x2="36.687" y2="28.75"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M38.4 29.5h3.7l-7.2 35h-3.6l7.1-35z" fill="url(#SVGID_4_)" stroke="url(#SVGID_5_)" stroke-width="1.5" stroke-miterlimit="10"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="54.186" y1="61.052" x2="54.186" y2="32.69"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="54.186" y1="62.691" x2="54.186" y2="31.05"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M47.2 54.8l9.5-7.9v-.1l-9.5-7.9v-6.1l14 12.1V49l-14 12.1v-6.3z" fill="url(#SVGID_6_)" stroke="url(#SVGID_7_)" stroke-width="1.5" stroke-miterlimit="10"/></g><linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_8_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M17.4 85.8l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.8-.7-5.2-2.1-1.4-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9-.6-.5-1.3-.7-2.2-.7-1.2 0-2.1.4-2.9 1.3s-1 2-1 3.9c0 2 .4 3.4 1.1 4.3s1.7 1.3 2.8 1.3c.9 0 1.6-.3 2.2-.8.6-.6 1.1-1.5 1.3-2.6zm5.9 5.7V75.8h10.9v2.7h-7.7v3.7h6.6v2.7h-6.6v6.7h-3.2zm13.5 0V75.8h4.8l2.9 10.7 2.9-10.7h4.8v15.7h-3V79.1L46 91.5h-3l-3.1-12.4v12.4h-3.1zm18.7 0V75.9h3.2v13h8v2.7H55.5z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g opacity=".9"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="19.014" y1="60.793" x2="19.014" y2="32.603"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="19.014" y1="62.432" x2="19.014" y2="30.964"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M12 44.7l14-12.1v6.1l-9.5 7.9v.1l9.5 7.9v6.1l-14-12v-4z" fill="url(#b)" stroke="url(#c)" stroke-width="1.5" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="36.686" y1="64.5" x2="36.686" y2="29.5"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="36.687" y1="65.25" x2="36.687" y2="28.75"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M38.4 29.5h3.7l-7.2 35h-3.6l7.1-35z" fill="url(#d)" stroke="url(#e)" stroke-width="1.5" stroke-miterlimit="10"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="54.186" y1="61.052" x2="54.186" y2="32.69"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="54.186" y1="62.691" x2="54.186" y2="31.05"><stop offset="0" stop-color="#adccdc"/><stop offset=".153" stop-color="#9ab9c9"/><stop offset=".529" stop-color="#708f9f"/><stop offset=".824" stop-color="#567685"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M47.2 54.8l9.5-7.9v-.1l-9.5-7.9v-6.1l14 12.1V49l-14 12.1v-6.3z" fill="url(#f)" stroke="url(#g)" stroke-width="1.5" stroke-miterlimit="10"/></g><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#h)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M17.4 85.8l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.8-.7-5.2-2.1-1.4-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9-.6-.5-1.3-.7-2.2-.7-1.2 0-2.1.4-2.9 1.3s-1 2-1 3.9c0 2 .4 3.4 1.1 4.3s1.7 1.3 2.8 1.3c.9 0 1.6-.3 2.2-.8.6-.6 1.1-1.5 1.3-2.6zm5.9 5.7V75.8h10.9v2.7h-7.7v3.7h6.6v2.7h-6.6v6.7h-3.2zm13.5 0V75.8h4.8l2.9 10.7 2.9-10.7h4.8v15.7h-3V79.1L46 91.5h-3l-3.1-12.4v12.4h-3.1zm18.7 0V75.9h3.2v13h8v2.7H55.5z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M18.8 83.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.5-2.7s-2.6-4.3-2.6-7.4c0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.4 0 4.4.7 6 2.2.9.8 1.6 2.1 2 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.7-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.5 2.7-1.5 5c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.5 1.6c1.1 0 2-.3 2.8-1s1.3-1.8 1.7-3.2zm7.3 7.3V71.2h6l3.6 13.5 3.6-13.5h6V91h-3.7V75.4l-4 15.6h-3.9l-4-15.6V91h-3.6zm23.3-19.9h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8s1.5 1.9 1.9 3.2c.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4h-7.6V71.2zm4 3.4v13.1h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8s.8-1 1.1-1.9.4-2.1.4-3.6-.1-2.7-.4-3.5-.7-1.5-1.1-1.9c-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.3-.2h-1.8z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.75" y1="64" x2="36.75" y2="17.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M60 17.5H13.5V64H60V17.5zm-37.2 9.3h-4.6v-4.6h4.6v4.6zm32.5 0H27.5v-4.6h27.9v4.6zm0 32.5H18.1V31.5h37.2v27.8z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="28.109" y1="52.694" x2="28.109" y2="35.456"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M25.4 35.5l-3.2 3.2 5.3 5.4-5.3 5.3 3.2 3.3 8.7-8.6z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="37.75" y1="55.7" x2="37.75" y2="51.05"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33.1 51h9.3v4.7h-9.3z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_5_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M18.8 83.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.5-2.7s-2.6-4.3-2.6-7.4c0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.4 0 4.4.7 6 2.2.9.8 1.6 2.1 2 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.7-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.5 2.7-1.5 5c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.5 1.6c1.1 0 2-.3 2.8-1s1.3-1.8 1.7-3.2zm7.3 7.3V71.2h6l3.6 13.5 3.6-13.5h6V91h-3.7V75.4l-4 15.6h-3.9l-4-15.6V91h-3.6zm23.3-19.9h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8s1.5 1.9 1.9 3.2c.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4h-7.6V71.2zm4 3.4v13.1h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8s.8-1 1.1-1.9.4-2.1.4-3.6-.1-2.7-.4-3.5-.7-1.5-1.1-1.9c-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.3-.2h-1.8z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.75" y1="64" x2="36.75" y2="17.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M60 17.5H13.5V64H60V17.5zm-37.2 9.3h-4.6v-4.6h4.6v4.6zm32.5 0H27.5v-4.6h27.9v4.6zm0 32.5H18.1V31.5h37.2v27.8z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="28.109" y1="52.694" x2="28.109" y2="35.456"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M25.4 35.5l-3.2 3.2 5.3 5.4-5.3 5.3 3.2 3.3 8.7-8.6z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="37.75" y1="55.7" x2="37.75" y2="51.05"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33.1 51h9.3v4.7h-9.3z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#e)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M18 83.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.5-2.7s-2.6-4.3-2.6-7.4c0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.4 0 4.4.7 6 2.2.9.8 1.6 2.1 2 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.7-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.4 2.7-1.4 5c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.5 1.6c1.1 0 2-.3 2.8-1s1.3-1.8 1.6-3.2zm6.5-2.5c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.6-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 2.9 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.3 2.7 7.6 0 3.2-.9 5.7-2.6 7.5-1.8 1.8-4.1 2.7-7 2.7-3 0-5.3-.9-7.1-2.7-1.9-1.8-2.8-4.3-2.8-7.4zm4.2-.2c0 2.2.5 3.9 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.5-2.9 1.5-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.1 1.2-1.6 2.9-1.6 5.2zm18.3 10V71.2h6l3.6 13.5 3.6-13.5h6V91h-3.7V75.4l-4 15.6h-3.9l-4-15.6V91H47z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.75" y1="64" x2="36.75" y2="17.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M60 17.5H13.5V64H60V17.5zm-37.2 9.3h-4.6v-4.6h4.6v4.6zm32.5 0H27.5v-4.6h27.9v4.6zm0 32.5H18.1V31.5h37.2v27.8z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="28.109" y1="52.694" x2="28.109" y2="35.456"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M25.4 35.5l-3.2 3.2 5.3 5.4-5.3 5.3 3.2 3.3 8.7-8.6z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="37.75" y1="55.7" x2="37.75" y2="51.05"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33.1 51h9.3v4.7h-9.3z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_5_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M18 83.8l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.5-2.7s-2.6-4.3-2.6-7.4c0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.4 0 4.4.7 6 2.2.9.8 1.6 2.1 2 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.7-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.4 2.7-1.4 5c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.5 1.6c1.1 0 2-.3 2.8-1s1.3-1.8 1.6-3.2zm6.5-2.5c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.6-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 2.9 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.3 2.7 7.6 0 3.2-.9 5.7-2.6 7.5-1.8 1.8-4.1 2.7-7 2.7-3 0-5.3-.9-7.1-2.7-1.9-1.8-2.8-4.3-2.8-7.4zm4.2-.2c0 2.2.5 3.9 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.5-2.9 1.5-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.1 1.2-1.6 2.9-1.6 5.2zm18.3 10V71.2h6l3.6 13.5 3.6-13.5h6V91h-3.7V75.4l-4 15.6h-3.9l-4-15.6V91H47z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.75" y1="64" x2="36.75" y2="17.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M60 17.5H13.5V64H60V17.5zm-37.2 9.3h-4.6v-4.6h4.6v4.6zm32.5 0H27.5v-4.6h27.9v4.6zm0 32.5H18.1V31.5h37.2v27.8z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="28.109" y1="52.694" x2="28.109" y2="35.456"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M25.4 35.5l-3.2 3.2 5.3 5.4-5.3 5.3 3.2 3.3 8.7-8.6z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="37.75" y1="55.7" x2="37.75" y2="51.05"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33.1 51h9.3v4.7h-9.3z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#e)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -1 +1 @@
<svg id="Layer_2_1_" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="-27.8" x2="36" y2="70.2" gradientTransform="matrix(1 0 0 -1 0 71)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.075" y1="43.425" x2="58.575" y2="56.925" gradientTransform="matrix(1 0 0 -1 0 71)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_2_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M11.4 86.1l2 .6c-.3 1.1-.8 1.9-1.5 2.4s-1.6.8-2.7.8c-1.3 0-2.4-.5-3.3-1.4s-1.3-2.2-1.3-3.7c0-1.7.4-3 1.3-3.9s2-1.4 3.4-1.4c1.2 0 2.2.4 3 1.1.5.4.8 1 1 1.8l-2 .5c-.1-.5-.4-.9-.7-1.2s-.8-.5-1.4-.5c-.7 0-1.3.3-1.8.8s-.7 1.4-.7 2.6c0 1.3.2 2.2.7 2.7s1 .8 1.8.8c.5 0 1-.2 1.4-.5s.6-.8.8-1.5zm3.3-1.2c0-1 .2-1.9.5-2.6.2-.5.5-1 .9-1.4.4-.4.8-.7 1.3-.9.6-.3 1.3-.4 2.2-.4 1.5 0 2.7.5 3.5 1.4s1.3 2.2 1.3 3.8c0 1.6-.4 2.9-1.3 3.8S21 90 19.5 90s-2.7-.5-3.6-1.4c-.8-.9-1.2-2.2-1.2-3.7zm2-.1c0 1.1.3 2 .8 2.6s1.2.9 2 .9 1.5-.3 2-.9.8-1.5.8-2.6-.3-2-.8-2.6-1.2-.8-2-.8-1.5.3-2 .9c-.5.5-.8 1.3-.8 2.5zm9.2 5v-10h3l1.8 6.8 1.8-6.8h3v10h-1.9v-7.9l-2 7.9h-1.9l-2-7.9v7.9h-1.8zm11.7 0v-10h3.2c1.2 0 2 0 2.4.2.6.2 1.1.5 1.4 1 .4.5.6 1.2.6 2 0 .6-.1 1.1-.3 1.6-.2.4-.5.7-.9 1-.3.2-.7.4-1 .5-.4-.1-1.1-.1-2-.1h-1.3v3.8h-2.1zm2-8.3v2.8h1.1c.8 0 1.3-.1 1.6-.2s.5-.3.6-.5c.2-.2.2-.5.2-.8 0-.4-.1-.7-.3-.9-.2-.2-.5-.4-.8-.4-.2 0-.7-.1-1.5-.1l-.9.1zm7.3 8.3v-10h2v10h-2zm4 0v-9.9h2v8.3h5v1.7l-7-.1zm8.5 0v-10h7.4v1.7h-5.4v2.2h5v1.7h-5v2.7H67v1.7h-7.6z" fill="#4c6c7b"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="36" y1="69.126" x2="36" y2="40.965"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M52.5 64.4V41h4.7v28.2H14.9V41h4.7v23.4h32.9z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="35.915" y1="40.627" x2="35.915" y2="29.126"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M24.4 29.1h23L35.9 40.6 24.4 29.1z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="31.307" y1="50.268" x2="31.307" y2="45.617"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M29 50.3v-4.7h4.7v4.7H29z" fill="url(#SVGID_5_)"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="40.693" y1="50.268" x2="40.693" y2="45.617"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M43 50.3h-4.7v-4.7H43v4.7z" fill="url(#SVGID_6_)"/><linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="26.571" y1="59.655" x2="26.571" y2="55.004"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M24.2 55h4.7v4.7h-4.7V55z" fill="url(#SVGID_7_)"/><linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="45.429" y1="59.655" x2="45.429" y2="55.004"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M43.1 59.7V55h4.7v4.7h-4.7z" fill="url(#SVGID_8_)"/><linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="35.958" y1="59.655" x2="35.958" y2="55.004"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M38.3 55v4.7h-4.7V55h4.7z" fill="url(#SVGID_9_)"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="-27.8" x2="36" y2="70.2" gradientTransform="matrix(1 0 0 -1 0 71)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.075" y1="43.425" x2="58.575" y2="56.925" gradientTransform="matrix(1 0 0 -1 0 71)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M11.4 86.1l2 .6c-.3 1.1-.8 1.9-1.5 2.4s-1.6.8-2.7.8c-1.3 0-2.4-.5-3.3-1.4s-1.3-2.2-1.3-3.7c0-1.7.4-3 1.3-3.9s2-1.4 3.4-1.4c1.2 0 2.2.4 3 1.1.5.4.8 1 1 1.8l-2 .5c-.1-.5-.4-.9-.7-1.2s-.8-.5-1.4-.5c-.7 0-1.3.3-1.8.8s-.7 1.4-.7 2.6c0 1.3.2 2.2.7 2.7s1 .8 1.8.8c.5 0 1-.2 1.4-.5s.6-.8.8-1.5zm3.3-1.2c0-1 .2-1.9.5-2.6.2-.5.5-1 .9-1.4.4-.4.8-.7 1.3-.9.6-.3 1.3-.4 2.2-.4 1.5 0 2.7.5 3.5 1.4s1.3 2.2 1.3 3.8c0 1.6-.4 2.9-1.3 3.8S21 90 19.5 90s-2.7-.5-3.6-1.4c-.8-.9-1.2-2.2-1.2-3.7zm2-.1c0 1.1.3 2 .8 2.6s1.2.9 2 .9 1.5-.3 2-.9.8-1.5.8-2.6-.3-2-.8-2.6-1.2-.8-2-.8-1.5.3-2 .9c-.5.5-.8 1.3-.8 2.5zm9.2 5v-10h3l1.8 6.8 1.8-6.8h3v10h-1.9v-7.9l-2 7.9h-1.9l-2-7.9v7.9h-1.8zm11.7 0v-10h3.2c1.2 0 2 0 2.4.2.6.2 1.1.5 1.4 1 .4.5.6 1.2.6 2 0 .6-.1 1.1-.3 1.6-.2.4-.5.7-.9 1-.3.2-.7.4-1 .5-.4-.1-1.1-.1-2-.1h-1.3v3.8h-2.1zm2-8.3v2.8h1.1c.8 0 1.3-.1 1.6-.2s.5-.3.6-.5c.2-.2.2-.5.2-.8 0-.4-.1-.7-.3-.9-.2-.2-.5-.4-.8-.4-.2 0-.7-.1-1.5-.1l-.9.1zm7.3 8.3v-10h2v10h-2zm4 0v-9.9h2v8.3h5v1.7l-7-.1zm8.5 0v-10h7.4v1.7h-5.4v2.2h5v1.7h-5v2.7H67v1.7h-7.6z" fill="#4c6c7b"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36" y1="69.126" x2="36" y2="40.965"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M52.5 64.4V41h4.7v28.2H14.9V41h4.7v23.4h32.9z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="35.915" y1="40.627" x2="35.915" y2="29.126"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M24.4 29.1h23L35.9 40.6 24.4 29.1z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="31.307" y1="50.268" x2="31.307" y2="45.617"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M29 50.3v-4.7h4.7v4.7H29z" fill="url(#e)"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="40.693" y1="50.268" x2="40.693" y2="45.617"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M43 50.3h-4.7v-4.7H43v4.7z" fill="url(#f)"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="26.571" y1="59.655" x2="26.571" y2="55.004"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M24.2 55h4.7v4.7h-4.7V55z" fill="url(#g)"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="45.429" y1="59.655" x2="45.429" y2="55.004"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M43.1 59.7V55h4.7v4.7h-4.7z" fill="url(#h)"/><linearGradient id="i" gradientUnits="userSpaceOnUse" x1="35.958" y1="59.655" x2="35.958" y2="55.004"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M38.3 55v4.7h-4.7V55h4.7z" fill="url(#i)"/></svg>

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".118" stop-color="#66e283"/><stop offset="1" stop-color="#24342d"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#SVGID_1_)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="none" stroke="#24342d" stroke-width="2"/><path d="M17.5 85.3l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.3 1.3-2.1 0-3.9-.7-5.2-2.1-1.4-1.4-2.1-3.4-2.1-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 2 0 3.6.6 4.8 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9s-1.3-.7-2.2-.7c-1.2 0-2.2.4-2.9 1.3s-1 2-1 3.9c0 2 .4 3.4 1.1 4.3.7.8 1.7 1.3 2.8 1.3.9 0 1.6-.3 2.2-.8s1.2-1.5 1.4-2.6zm5.9 5.8V75.3h5.2c2 0 3.2.1 3.8.2.9.2 1.7.8 2.3 1.5.6.8.9 1.8.9 3.1 0 1-.2 1.8-.5 2.4s-.8 1.2-1.4 1.6c-.6.4-1.1.6-1.7.7-.8.2-1.9.2-3.4.2h-2.1v5.9h-3.1zM26.7 78v4.5h1.8c1.3 0 2.1-.1 2.6-.2s.8-.4 1-.8.4-.8.4-1.2c0-.6-.2-1-.5-1.4s-.8-.6-1.3-.7c-.5-.2-1.3-.2-2.5-.2h-1.5zM42 91.1V78h-4.8v-2.7h12.7V78h-4.7v13.1H42zm8.4 0l5.5-8.2-5-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-5 7.6 5.5 8.1h-3.9l-3.6-5.4-3.6 5.4h-3.7z" fill="#fff"/><g transform="translate(0 -952.362)"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.625" y1="1015.362" x2="36.625" y2="974.612"><stop offset=".05" stop-color="#478555"/><stop offset=".283" stop-color="#3f764c"/><stop offset=".4" stop-color="#3a6c46"/><stop offset=".969" stop-color="#1f3d26"/><stop offset=".974" stop-color="#1f3d26"/></linearGradient><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="36.625" y1="1015.862" x2="36.625" y2="974.112"><stop offset=".05" stop-color="#478555"/><stop offset=".283" stop-color="#3f764c"/><stop offset=".4" stop-color="#3a6c46"/><stop offset=".969" stop-color="#1f3d26"/><stop offset=".974" stop-color="#1f3d26"/></linearGradient><path d="M36.6 974.6c-11.3 0-20.4 9.1-20.4 20.4 0 11.3 9.1 20.4 20.4 20.4S57 1006.2 57 995c0-11.3-9.1-20.4-20.4-20.4zm3.9 4.8l-3.3 12.3h8.6l-13 18.8 3.3-12.3h-8.6l13-18.8z" fill="url(#SVGID_2_)" stroke="url(#SVGID_3_)" stroke-miterlimit="10"/></g><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#d2e0d5"/><stop offset=".128" stop-color="#cde0d1"/><stop offset=".274" stop-color="#bfe0c7"/><stop offset=".429" stop-color="#a8e1b5"/><stop offset=".59" stop-color="#89e19d"/><stop offset=".732" stop-color="#66e283"/><stop offset="1" stop-color="#24342d"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#SVGID_4_)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill="none" stroke="#24342d" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".118" stop-color="#66e283"/><stop offset="1" stop-color="#24342d"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#a)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="none" stroke="#24342d" stroke-width="2"/><path d="M17.5 85.3l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.3 1.3-2.1 0-3.9-.7-5.2-2.1-1.4-1.4-2.1-3.4-2.1-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 2 0 3.6.6 4.8 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9s-1.3-.7-2.2-.7c-1.2 0-2.2.4-2.9 1.3s-1 2-1 3.9c0 2 .4 3.4 1.1 4.3.7.8 1.7 1.3 2.8 1.3.9 0 1.6-.3 2.2-.8s1.2-1.5 1.4-2.6zm5.9 5.8V75.3h5.2c2 0 3.2.1 3.8.2.9.2 1.7.8 2.3 1.5.6.8.9 1.8.9 3.1 0 1-.2 1.8-.5 2.4s-.8 1.2-1.4 1.6c-.6.4-1.1.6-1.7.7-.8.2-1.9.2-3.4.2h-2.1v5.9h-3.1zM26.7 78v4.5h1.8c1.3 0 2.1-.1 2.6-.2s.8-.4 1-.8.4-.8.4-1.2c0-.6-.2-1-.5-1.4s-.8-.6-1.3-.7c-.5-.2-1.3-.2-2.5-.2h-1.5zM42 91.1V78h-4.8v-2.7h12.7V78h-4.7v13.1H42zm8.4 0l5.5-8.2-5-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-5 7.6 5.5 8.1h-3.9l-3.6-5.4-3.6 5.4h-3.7z" fill="#fff"/><g transform="translate(0 -952.362)"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.625" y1="1015.362" x2="36.625" y2="974.612"><stop offset=".05" stop-color="#478555"/><stop offset=".283" stop-color="#3f764c"/><stop offset=".4" stop-color="#3a6c46"/><stop offset=".969" stop-color="#1f3d26"/><stop offset=".974" stop-color="#1f3d26"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.625" y1="1015.862" x2="36.625" y2="974.112"><stop offset=".05" stop-color="#478555"/><stop offset=".283" stop-color="#3f764c"/><stop offset=".4" stop-color="#3a6c46"/><stop offset=".969" stop-color="#1f3d26"/><stop offset=".974" stop-color="#1f3d26"/></linearGradient><path d="M36.6 974.6c-11.3 0-20.4 9.1-20.4 20.4 0 11.3 9.1 20.4 20.4 20.4S57 1006.2 57 995c0-11.3-9.1-20.4-20.4-20.4zm3.9 4.8l-3.3 12.3h8.6l-13 18.8 3.3-12.3h-8.6l13-18.8z" fill="url(#b)" stroke="url(#c)" stroke-miterlimit="10"/></g><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#d2e0d5"/><stop offset=".128" stop-color="#cde0d1"/><stop offset=".274" stop-color="#bfe0c7"/><stop offset=".429" stop-color="#a8e1b5"/><stop offset=".59" stop-color="#89e19d"/><stop offset=".732" stop-color="#66e283"/><stop offset="1" stop-color="#24342d"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#d)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill="none" stroke="#24342d" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1 +1 @@
<svg id="Layer_2_1_" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97.8" x2="36" y2="-.2" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.075" y1="26.575" x2="58.575" y2="13.075" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_2_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".8"><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="18.426" y1="41.139" x2="56.026" y2="41.139"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M18.4 38.8C29 26.5 48.7 28.9 56 43.4H38.3c-3.2 0-5.2-.1-7.5 1.1-2.6 1.4-4.6 3.9-5.3 6.9l-7.1-12.6z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="28.137" y1="53.702" x2="43.294" y2="53.702"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.1 53.7c0 4.2 3.4 7.6 7.6 7.6s7.6-3.4 7.6-7.6-3.4-7.6-7.6-7.6c-4.2 0-7.6 3.4-7.6 7.6z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="12.92" y1="58.664" x2="38.654" y2="58.664"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M38.7 63.6c-4.3 1.3-9.2-.1-12-4.8-2.1-3.6-7.6-13.2-10.1-17.5C7.9 54.7 15.4 73 31.3 76.1l7.4-12.5z" fill="url(#SVGID_5_)"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="34.293" y1="61.307" x2="58.524" y2="61.307"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M42.8 46.1c3.5 3.3 4.3 8.6 1.9 12.8-1.8 3.1-7.6 12.9-10.4 17.6 16.4 1 28.3-15 22.9-30.3l-14.4-.1z" fill="url(#SVGID_6_)"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97.8" x2="36" y2="-.2" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.075" y1="26.575" x2="58.575" y2="13.075" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".8"><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="18.426" y1="41.139" x2="56.026" y2="41.139"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M18.4 38.8C29 26.5 48.7 28.9 56 43.4H38.3c-3.2 0-5.2-.1-7.5 1.1-2.6 1.4-4.6 3.9-5.3 6.9l-7.1-12.6z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="28.137" y1="53.702" x2="43.294" y2="53.702"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.1 53.7c0 4.2 3.4 7.6 7.6 7.6s7.6-3.4 7.6-7.6-3.4-7.6-7.6-7.6c-4.2 0-7.6 3.4-7.6 7.6z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="12.92" y1="58.664" x2="38.654" y2="58.664"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M38.7 63.6c-4.3 1.3-9.2-.1-12-4.8-2.1-3.6-7.6-13.2-10.1-17.5C7.9 54.7 15.4 73 31.3 76.1l7.4-12.5z" fill="url(#e)"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="34.293" y1="61.307" x2="58.524" y2="61.307"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M42.8 46.1c3.5 3.3 4.3 8.6 1.9 12.8-1.8 3.1-7.6 12.9-10.4 17.6 16.4 1 28.3-15 22.9-30.3l-14.4-.1z" fill="url(#f)"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.8" y1="61.589" x2="36.8" y2="20.333"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.4 37.7h-2.9V32c0-6.4-5.2-11.7-11.7-11.7S25.1 25.6 25.1 32v5.7h-2.9c-1.1 0-2 .9-2 2v19.8c0 1.1.9 2 2 2h29.1c1.1 0 2-.9 2-2V39.8c.1-1.2-.8-2.1-1.9-2.1zM39.3 54.2c.2.7-.3 1.3-1 1.3h-3c-.7 0-1.2-.7-1-1.3l1-3.7c-1.1-.6-1.9-1.7-1.9-3.1 0-2 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5c0 1.4-.8 2.6-1.9 3.1l.8 3.7zm3.3-16.5H31V32c0-3.2 2.6-5.8 5.8-5.8s5.8 2.6 5.8 5.8v5.7z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_3_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M22.2 84.5l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.8-2.7-.8c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .6-.7 1.2-1.8 1.5-3.3zm7.4 7.4v-20h8.5c2.1 0 3.7.2 4.7.5s1.7 1 2.3 1.9c.6.9.9 2 .9 3.2 0 1.5-.4 2.7-1.3 3.7s-2.2 1.6-4 1.9c.9.5 1.6 1.1 2.2 1.7.6.6 1.3 1.7 2.3 3.3l2.4 3.9h-4.8l-2.9-4.4c-1-1.6-1.8-2.5-2.1-2.9s-.8-.7-1.2-.8c-.4-.2-1.1-.2-2-.2h-.8v8.4h-4.2zm4.1-11.6h3c1.9 0 3.2-.1 3.6-.2.5-.2.9-.4 1.1-.8s.4-.9.4-1.5c0-.7-.2-1.2-.5-1.6-.4-.4-.9-.7-1.5-.8-.3 0-1.3-.1-3-.1h-3.2v5zm20.6 11.6V75.2h-5.9v-3.4h15.9v3.4h-5.9v16.7h-4.1z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.8" y1="61.589" x2="36.8" y2="20.333"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.4 37.7h-2.9V32c0-6.4-5.2-11.7-11.7-11.7S25.1 25.6 25.1 32v5.7h-2.9c-1.1 0-2 .9-2 2v19.8c0 1.1.9 2 2 2h29.1c1.1 0 2-.9 2-2V39.8c.1-1.2-.8-2.1-1.9-2.1zM39.3 54.2c.2.7-.3 1.3-1 1.3h-3c-.7 0-1.2-.7-1-1.3l1-3.7c-1.1-.6-1.9-1.7-1.9-3.1 0-2 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5c0 1.4-.8 2.6-1.9 3.1l.8 3.7zm3.3-16.5H31V32c0-3.2 2.6-5.8 5.8-5.8s5.8 2.6 5.8 5.8v5.7z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M22.2 84.5l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.8-2.7-.8c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .6-.7 1.2-1.8 1.5-3.3zm7.4 7.4v-20h8.5c2.1 0 3.7.2 4.7.5s1.7 1 2.3 1.9c.6.9.9 2 .9 3.2 0 1.5-.4 2.7-1.3 3.7s-2.2 1.6-4 1.9c.9.5 1.6 1.1 2.2 1.7.6.6 1.3 1.7 2.3 3.3l2.4 3.9h-4.8l-2.9-4.4c-1-1.6-1.8-2.5-2.1-2.9s-.8-.7-1.2-.8c-.4-.2-1.1-.2-2-.2h-.8v8.4h-4.2zm4.1-11.6h3c1.9 0 3.2-.1 3.6-.2.5-.2.9-.4 1.1-.8s.4-.9.4-1.5c0-.7-.2-1.2-.5-1.6-.4-.4-.9-.7-1.5-.8-.3 0-1.3-.1-3-.1h-3.2v5zm20.6 11.6V75.2h-5.9v-3.4h15.9v3.4h-5.9v16.7h-4.1z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.8" y1="61.589" x2="36.8" y2="20.333"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.4 37.7h-2.9V32c0-6.4-5.2-11.7-11.7-11.7S25.1 25.6 25.1 32v5.7h-2.9c-1.1 0-2 .9-2 2v19.8c0 1.1.9 2 2 2h29.1c1.1 0 2-.9 2-2V39.8c.1-1.2-.8-2.1-1.9-2.1zM39.3 54.2c.2.7-.3 1.3-1 1.3h-3c-.7 0-1.2-.7-1-1.3l1-3.7c-1.1-.6-1.9-1.7-1.9-3.1 0-2 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5c0 1.4-.8 2.6-1.9 3.1l.8 3.7zm3.3-16.5H31V32c0-3.2 2.6-5.8 5.8-5.8s5.8 2.6 5.8 5.8v5.7z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_3_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M14.5 86.9l2.7.8c-.4 1.5-1.1 2.6-2 3.3-.9.7-2.2 1.1-3.6 1.1-1.8 0-3.3-.6-4.5-1.9-1.2-1.2-1.7-2.9-1.7-5.1 0-2.3.6-4 1.8-5.3 1.2-1.3 2.7-1.9 4.6-1.9 1.7 0 3 .5 4.1 1.5.6.6 1.1 1.4 1.4 2.5l-2.7.6c-.2-.7-.5-1.3-1-1.7-.5-.4-1.1-.6-1.9-.6-1 0-1.8.4-2.5 1.1-.6.7-.9 1.9-.9 3.5 0 1.7.3 2.9.9 3.7.6.7 1.4 1.1 2.4 1.1.7 0 1.4-.2 1.9-.7.4-.3.8-1 1-2zm5 5V78.3h5.8c1.5 0 2.5.1 3.2.4.7.2 1.2.7 1.6 1.3.4.6.6 1.3.6 2.1 0 1-.3 1.9-.9 2.5-.6.7-1.5 1.1-2.7 1.3.6.3 1.1.7 1.5 1.1.4.4.9 1.2 1.6 2.2l1.7 2.7h-3.3l-2-3c-.7-1.1-1.2-1.7-1.4-2-.3-.3-.5-.5-.8-.6-.3-.1-.8-.2-1.4-.2h-.6v5.7h-2.9zm2.8-7.9h2c1.3 0 2.1-.1 2.5-.2.3-.1.6-.3.8-.6s.3-.6.3-1c0-.5-.1-.8-.4-1.1-.2-.3-.6-.5-1-.5h-4.1V84zm13.8 7.9v-5.7l-5-7.9h3.2l3.2 5.4 3.1-5.4h3.2l-5 7.9v5.7h-2.7zm9.1 0V78.3h4.4c1.7 0 2.8.1 3.3.2.8.2 1.4.6 2 1.3.5.7.8 1.6.8 2.6 0 .8-.2 1.5-.5 2.1s-.7 1-1.2 1.3c-.5.3-.9.5-1.4.6-.7.1-1.6.2-2.8.2H48v5.1h-2.8zm2.7-11.3v3.9h1.5c1.1 0 1.8-.1 2.2-.2.4-.1.7-.4.9-.7.2-.3.3-.7.3-1.1 0-.5-.1-.9-.4-1.2-.3-.3-.7-.5-1.1-.6-.3-.1-1-.1-2-.1h-1.4zm13 11.3V80.6h-4v-2.3h10.8v2.3h-4v11.3h-2.8z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.8" y1="61.589" x2="36.8" y2="20.333"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.4 37.7h-2.9V32c0-6.4-5.2-11.7-11.7-11.7S25.1 25.6 25.1 32v5.7h-2.9c-1.1 0-2 .9-2 2v19.8c0 1.1.9 2 2 2h29.1c1.1 0 2-.9 2-2V39.8c.1-1.2-.8-2.1-1.9-2.1zM39.3 54.2c.2.7-.3 1.3-1 1.3h-3c-.7 0-1.2-.7-1-1.3l1-3.7c-1.1-.6-1.9-1.7-1.9-3.1 0-2 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5c0 1.4-.8 2.6-1.9 3.1l.8 3.7zm3.3-16.5H31V32c0-3.2 2.6-5.8 5.8-5.8s5.8 2.6 5.8 5.8v5.7z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M14.5 86.9l2.7.8c-.4 1.5-1.1 2.6-2 3.3-.9.7-2.2 1.1-3.6 1.1-1.8 0-3.3-.6-4.5-1.9-1.2-1.2-1.7-2.9-1.7-5.1 0-2.3.6-4 1.8-5.3 1.2-1.3 2.7-1.9 4.6-1.9 1.7 0 3 .5 4.1 1.5.6.6 1.1 1.4 1.4 2.5l-2.7.6c-.2-.7-.5-1.3-1-1.7-.5-.4-1.1-.6-1.9-.6-1 0-1.8.4-2.5 1.1-.6.7-.9 1.9-.9 3.5 0 1.7.3 2.9.9 3.7.6.7 1.4 1.1 2.4 1.1.7 0 1.4-.2 1.9-.7.4-.3.8-1 1-2zm5 5V78.3h5.8c1.5 0 2.5.1 3.2.4.7.2 1.2.7 1.6 1.3.4.6.6 1.3.6 2.1 0 1-.3 1.9-.9 2.5-.6.7-1.5 1.1-2.7 1.3.6.3 1.1.7 1.5 1.1.4.4.9 1.2 1.6 2.2l1.7 2.7h-3.3l-2-3c-.7-1.1-1.2-1.7-1.4-2-.3-.3-.5-.5-.8-.6-.3-.1-.8-.2-1.4-.2h-.6v5.7h-2.9zm2.8-7.9h2c1.3 0 2.1-.1 2.5-.2.3-.1.6-.3.8-.6s.3-.6.3-1c0-.5-.1-.8-.4-1.1-.2-.3-.6-.5-1-.5h-4.1V84zm13.8 7.9v-5.7l-5-7.9h3.2l3.2 5.4 3.1-5.4h3.2l-5 7.9v5.7h-2.7zm9.1 0V78.3h4.4c1.7 0 2.8.1 3.3.2.8.2 1.4.6 2 1.3.5.7.8 1.6.8 2.6 0 .8-.2 1.5-.5 2.1s-.7 1-1.2 1.3c-.5.3-.9.5-1.4.6-.7.1-1.6.2-2.8.2H48v5.1h-2.8zm2.7-11.3v3.9h1.5c1.1 0 1.8-.1 2.2-.2.4-.1.7-.4.9-.7.2-.3.3-.7.3-1.1 0-.5-.1-.9-.4-1.2-.3-.3-.7-.5-1.1-.6-.3-.1-1-.1-2-.1h-1.4zm13 11.3V80.6h-4v-2.3h10.8v2.3h-4v11.3h-2.8z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M31.3 82.4l4 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.4 1.6-2.7 0-4.9-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8 1.7-1.8 4-2.8 6.9-2.8 2.5 0 4.5.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.9-2.8-.9c-1.5 0-2.7.5-3.7 1.6s-1.4 2.8-1.4 5.2c0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1s1.2-1.7 1.6-3.2zm6.4.9l4-.4c.2 1.3.7 2.3 1.5 2.9s1.7.9 3 .9 2.3-.3 3-.8c.7-.6 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.3-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.9-2.4-1.9-4 0-1 .3-2 .9-2.9s1.4-1.6 2.5-2c1.1-.5 2.4-.7 4-.7 2.5 0 4.5.6 5.7 1.7 1.3 1.1 2 2.6 2 4.4l-4.1.2c-.2-1-.6-1.8-1.1-2.2s-1.4-.7-2.6-.7c-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.8 1.3 2 .5 3.5.9 4.4 1.4s1.7 1.2 2.2 2c.5.9.8 1.9.8 3.2 0 1.1-.3 2.2-1 3.2-.6 1-1.6 1.7-2.7 2.2s-2.6.7-4.4.7c-2.6 0-4.5-.6-5.9-1.8s-2.2-2.6-2.5-4.8z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_3_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M31.3 82.4l4 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.4 1.6-2.7 0-4.9-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8 1.7-1.8 4-2.8 6.9-2.8 2.5 0 4.5.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.9-2.8-.9c-1.5 0-2.7.5-3.7 1.6s-1.4 2.8-1.4 5.2c0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1s1.2-1.7 1.6-3.2zm6.4.9l4-.4c.2 1.3.7 2.3 1.5 2.9s1.7.9 3 .9 2.3-.3 3-.8c.7-.6 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.3-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.9-2.4-1.9-4 0-1 .3-2 .9-2.9s1.4-1.6 2.5-2c1.1-.5 2.4-.7 4-.7 2.5 0 4.5.6 5.7 1.7 1.3 1.1 2 2.6 2 4.4l-4.1.2c-.2-1-.6-1.8-1.1-2.2s-1.4-.7-2.6-.7c-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.8 1.3 2 .5 3.5.9 4.4 1.4s1.7 1.2 2.2 2c.5.9.8 1.9.8 3.2 0 1.1-.3 2.2-1 3.2-.6 1-1.6 1.7-2.7 2.2s-2.6.7-4.4.7c-2.6 0-4.5-.6-5.9-1.8s-2.2-2.6-2.5-4.8z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M22.1 83.8L26 85c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.5-2.7s-2.6-4.3-2.6-7.4c0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.4 0 4.4.7 6 2.2.9.8 1.6 2.1 2 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.7-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.4 2.8-1.4 5.1c0 2.5.5 4.3 1.4 5.4s2.1 1.6 3.5 1.6c1.1 0 2-.3 2.8-1s1.2-1.9 1.6-3.3zm6.3.8l3.9-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 2.9-.8s1-1.2 1-1.9c0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.5-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6s1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.7.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2 .5.9.8 1.9.8 3.2 0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2s-2.6.7-4.3.7c-2.5 0-4.5-.6-5.8-1.7-1.3-1-2.1-2.7-2.4-4.9zm19.7 6.5V71.2h4V79H60v-7.8h4V91h-4v-8.7h-7.9V91h-4z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.75" y1="64" x2="36.75" y2="17.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M60 17.5H13.5V64H60V17.5zm-37.2 9.3h-4.6v-4.6h4.6v4.6zm32.5 0H27.5v-4.6h27.9v4.6zm0 32.5H18.1V31.5h37.2v27.8z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="28.109" y1="52.694" x2="28.109" y2="35.456"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M25.4 35.5l-3.2 3.2 5.3 5.4-5.3 5.3 3.2 3.3 8.7-8.6z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="37.75" y1="55.7" x2="37.75" y2="51.05"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33.1 51h9.3v4.7h-9.3z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_5_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.231" x2="36.632" y2="24.231"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.606" x2="36.632" y2="23.856"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M30.2 40.4h12.9v3.2H30.2v-3.2zm0 6.4h12.9V50H30.2v-3.2zm0 6.5h12.9v3.2H30.2v-3.2zm22.6-29.1H26.9c-3.6 0-6.5 2.9-6.5 6.5v29.1H14c0 3.6 2.9 6.5 6.5 6.5h25.8c3.6 0 6.5-2.9 6.5-6.5V33.9h6.5v-3.2c-.1-3.6-2.9-6.5-6.5-6.5zm-3.2 35c0 2.1-1.7 3.8-3.8 3.8H22.1c1.6-1.1 1.6-3.2 1.6-3.2V30.7c0-1.8 1.4-3.2 3.2-3.2 1.8 0 3.2 1.4 3.2 3.2v3.2h19.4v25.3zM33.4 30.7v-3.2h19.4c2.9 0 3.2 1.8 3.2 3.2H33.4z" fill="url(#b)" stroke="url(#c)" stroke-width=".75" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#d)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M23.4 85.6l3.4 1.1c-.5 1.9-1.4 3.3-2.6 4.2s-2.7 1.4-4.6 1.4c-2.3 0-4.2-.8-5.6-2.3s-2.2-3.7-2.2-6.4c0-2.9.7-5.1 2.2-6.7s3.4-2.4 5.8-2.4c2.1 0 3.8.6 5.1 1.9.8.7 1.4 1.8 1.8 3.2l-3.4.8c-.2-.9-.6-1.6-1.3-2.1s-1.4-.8-2.3-.8c-1.3 0-2.3.5-3.1 1.4s-1.2 2.4-1.2 4.4c0 2.2.4 3.7 1.2 4.6s1.8 1.4 3 1.4c.9 0 1.7-.3 2.4-.9s1.1-1.6 1.4-2.8zm5.5.7l3.4-.3c.2 1.1.6 2 1.2 2.5s1.5.8 2.5.8c1.1 0 2-.2 2.5-.7s.8-1 .8-1.7c0-.4-.1-.8-.4-1s-.7-.5-1.2-.7c-.4-.1-1.3-.4-2.8-.8-1.9-.5-3.2-1-3.9-1.7-1.1-.9-1.6-2.1-1.6-3.5 0-.9.2-1.7.7-2.5s1.2-1.3 2.1-1.7 2.1-.6 3.4-.6c2.2 0 3.8.5 4.9 1.4s1.7 2.2 1.7 3.8l-3.5.2c-.1-.9-.5-1.5-1-1.9s-1.2-.6-2.2-.6c-1 0-1.8.2-2.4.6-.4.3-.6.6-.6 1.1 0 .4.2.8.5 1 .4.4 1.5.8 3.2 1.1s2.9.8 3.7 1.2 1.4 1 1.9 1.7.7 1.7.7 2.7c0 1-.3 1.9-.8 2.8s-1.3 1.5-2.3 1.9-2.2.6-3.7.6c-2.2 0-3.8-.5-5-1.5s-1.6-2.3-1.8-4.2zm16.9 5.6V74.7h3.5v6.8H56v-6.8h3.5v17.2H56v-7.5h-6.8v7.5h-3.4z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M13 85.9l2.1.7c-.3 1.2-.9 2-1.6 2.6-.8.6-1.7.9-2.9.9C9.1 90 8 89.5 7 88.5c-.9-1-1.4-2.3-1.4-4 0-1.8.5-3.2 1.4-4.2.9-1 2.2-1.5 3.7-1.5 1.3 0 2.4.4 3.2 1.2.5.5.9 1.1 1.1 2l-2.2.5c-.1-.6-.4-1-.8-1.3-.4-.3-.9-.5-1.5-.5-.8 0-1.5.3-2 .9-.5.6-.8 1.5-.8 2.8 0 1.4.2 2.3.7 2.9s1.1.9 1.9.9c.6 0 1.1-.2 1.5-.5.7-.5 1-1 1.2-1.8zm3.4.4l2.1-.2c.1.7.4 1.2.8 1.6s.9.5 1.6.5c.7 0 1.2-.1 1.6-.4.4-.3.5-.6.5-1 0-.3-.1-.5-.2-.6-.2-.2-.4-.3-.8-.5-.3-.1-.8-.2-1.8-.5-1.2-.3-2-.6-2.5-1.1-.7-.6-1-1.3-1-2.2 0-.5.2-1.1.5-1.5.3-.5.8-.8 1.4-1.1.6-.2 1.3-.4 2.1-.4 1.4 0 2.4.3 3.1.9.7.6 1 1.4 1.1 2.4l-2.2.1c-.1-.6-.3-.9-.6-1.2-.3-.2-.8-.4-1.4-.4-.6 0-1.1.1-1.5.4-.2.2-.3.4-.3.7 0 .3.1.5.3.7.3.2.9.5 2 .7 1.1.2 1.9.5 2.4.8.5.3.9.6 1.2 1.1.3.5.4 1 .4 1.7 0 .6-.2 1.2-.5 1.7s-.8.9-1.5 1.2c-.6.3-1.4.4-2.4.4-1.4 0-2.4-.3-3.2-.9-.6-.8-1-1.7-1.2-2.9zm10.7 3.5V79.1h3.5c1.3 0 2.2.1 2.6.2.6.2 1.1.5 1.6 1.1.4.5.6 1.2.6 2.1 0 .7-.1 1.2-.4 1.7-.2.4-.5.8-.9 1.1-.4.3-.8.4-1.1.5-.5.1-1.3.2-2.3.2h-1.4v4.1h-2.2zm2.2-8.9v3h1.2c.9 0 1.4-.1 1.7-.2.3-.1.5-.3.7-.5.2-.2.2-.5.2-.8 0-.4-.1-.7-.3-1s-.5-.4-.9-.4c-.3 0-.8-.1-1.6-.1h-1zm7.9 8.9V79.1h4.6c1.2 0 2 .1 2.5.3.5.2.9.5 1.3 1 .3.5.5 1.1.5 1.7 0 .8-.2 1.5-.7 2-.5.5-1.2.9-2.1 1 .5.3.9.6 1.2.9.3.3.7.9 1.2 1.7l1.3 2.1h-2.6l-1.6-2.3c-.6-.8-.9-1.4-1.2-1.6-.2-.2-.4-.4-.7-.4-.2-.1-.6-.1-1.1-.1h-.4v4.5h-2.2zm2.2-6.2H41c1.1 0 1.7 0 2-.1s.5-.2.6-.5c.1-.2.2-.5.2-.8 0-.4-.1-.7-.3-.9-.2-.2-.5-.4-.8-.4h-3.3v2.7zm8.3.9c0-1.1.2-2 .5-2.8.2-.5.6-1 1-1.5.4-.4.9-.8 1.4-1 .7-.3 1.5-.4 2.3-.4 1.6 0 2.9.5 3.8 1.5 1 1 1.4 2.3 1.4 4.1 0 1.7-.5 3.1-1.4 4.1-1 1-2.2 1.5-3.8 1.5-1.6 0-2.9-.5-3.8-1.5-.9-.9-1.4-2.3-1.4-4zm2.2-.1c0 1.2.3 2.1.9 2.8.6.6 1.3.9 2.2.9s1.6-.3 2.1-.9c.6-.6.8-1.6.8-2.8 0-1.2-.3-2.1-.8-2.8-.5-.6-1.3-.9-2.2-.9-.9 0-1.6.3-2.2.9-.5.7-.8 1.6-.8 2.8zm13.9-5.3H66v6.8c0 .9-.1 1.6-.2 2.1-.2.6-.6 1.1-1.2 1.5-.6.4-1.3.6-2.2.6-1.1 0-1.9-.3-2.5-.9-.6-.6-.9-1.5-.9-2.6l2.1-.2c0 .6.1 1.1.3 1.3.2.4.6.6 1.1.6.5 0 .8-.1 1-.4.2-.3.3-.8.3-1.7v-7.1z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_3_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M13 85.9l2.1.7c-.3 1.2-.9 2-1.6 2.6-.8.6-1.7.9-2.9.9C9.1 90 8 89.5 7 88.5c-.9-1-1.4-2.3-1.4-4 0-1.8.5-3.2 1.4-4.2.9-1 2.2-1.5 3.7-1.5 1.3 0 2.4.4 3.2 1.2.5.5.9 1.1 1.1 2l-2.2.5c-.1-.6-.4-1-.8-1.3-.4-.3-.9-.5-1.5-.5-.8 0-1.5.3-2 .9-.5.6-.8 1.5-.8 2.8 0 1.4.2 2.3.7 2.9s1.1.9 1.9.9c.6 0 1.1-.2 1.5-.5.7-.5 1-1 1.2-1.8zm3.4.4l2.1-.2c.1.7.4 1.2.8 1.6s.9.5 1.6.5c.7 0 1.2-.1 1.6-.4.4-.3.5-.6.5-1 0-.3-.1-.5-.2-.6-.2-.2-.4-.3-.8-.5-.3-.1-.8-.2-1.8-.5-1.2-.3-2-.6-2.5-1.1-.7-.6-1-1.3-1-2.2 0-.5.2-1.1.5-1.5.3-.5.8-.8 1.4-1.1.6-.2 1.3-.4 2.1-.4 1.4 0 2.4.3 3.1.9.7.6 1 1.4 1.1 2.4l-2.2.1c-.1-.6-.3-.9-.6-1.2-.3-.2-.8-.4-1.4-.4-.6 0-1.1.1-1.5.4-.2.2-.3.4-.3.7 0 .3.1.5.3.7.3.2.9.5 2 .7 1.1.2 1.9.5 2.4.8.5.3.9.6 1.2 1.1.3.5.4 1 .4 1.7 0 .6-.2 1.2-.5 1.7s-.8.9-1.5 1.2c-.6.3-1.4.4-2.4.4-1.4 0-2.4-.3-3.2-.9-.6-.8-1-1.7-1.2-2.9zm10.7 3.5V79.1h3.5c1.3 0 2.2.1 2.6.2.6.2 1.1.5 1.6 1.1.4.5.6 1.2.6 2.1 0 .7-.1 1.2-.4 1.7-.2.4-.5.8-.9 1.1-.4.3-.8.4-1.1.5-.5.1-1.3.2-2.3.2h-1.4v4.1h-2.2zm2.2-8.9v3h1.2c.9 0 1.4-.1 1.7-.2.3-.1.5-.3.7-.5.2-.2.2-.5.2-.8 0-.4-.1-.7-.3-1s-.5-.4-.9-.4c-.3 0-.8-.1-1.6-.1h-1zm7.9 8.9V79.1h4.6c1.2 0 2 .1 2.5.3.5.2.9.5 1.3 1 .3.5.5 1.1.5 1.7 0 .8-.2 1.5-.7 2-.5.5-1.2.9-2.1 1 .5.3.9.6 1.2.9.3.3.7.9 1.2 1.7l1.3 2.1h-2.6l-1.6-2.3c-.6-.8-.9-1.4-1.2-1.6-.2-.2-.4-.4-.7-.4-.2-.1-.6-.1-1.1-.1h-.4v4.5h-2.2zm2.2-6.2H41c1.1 0 1.7 0 2-.1s.5-.2.6-.5c.1-.2.2-.5.2-.8 0-.4-.1-.7-.3-.9-.2-.2-.5-.4-.8-.4h-3.3v2.7zm8.3.9c0-1.1.2-2 .5-2.8.2-.5.6-1 1-1.5.4-.4.9-.8 1.4-1 .7-.3 1.5-.4 2.3-.4 1.6 0 2.9.5 3.8 1.5 1 1 1.4 2.3 1.4 4.1 0 1.7-.5 3.1-1.4 4.1-1 1-2.2 1.5-3.8 1.5-1.6 0-2.9-.5-3.8-1.5-.9-.9-1.4-2.3-1.4-4zm2.2-.1c0 1.2.3 2.1.9 2.8.6.6 1.3.9 2.2.9s1.6-.3 2.1-.9c.6-.6.8-1.6.8-2.8 0-1.2-.3-2.1-.8-2.8-.5-.6-1.3-.9-2.2-.9-.9 0-1.6.3-2.2.9-.5.7-.8 1.6-.8 2.8zm13.9-5.3H66v6.8c0 .9-.1 1.6-.2 2.1-.2.6-.6 1.1-1.2 1.5-.6.4-1.3.6-2.2.6-1.1 0-1.9-.3-2.5-.9-.6-.6-.9-1.5-.9-2.6l2.1-.2c0 .6.1 1.1.3 1.3.2.4.6.6 1.1.6.5 0 .8-.1 1-.4.2-.3.3-.8.3-1.7v-7.1z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.018" x2="36.2" y2="101.052" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#00a6e9"/><stop offset=".002" stop-color="#00a7e9"/><stop offset=".092" stop-color="#00b2ec"/><stop offset=".186" stop-color="#23bdef"/><stop offset=".286" stop-color="#66c8f2"/><stop offset=".393" stop-color="#89d3f5"/><stop offset=".507" stop-color="#a1dbf8"/><stop offset=".633" stop-color="#b2e2f9"/><stop offset=".781" stop-color="#bce6fb"/><stop offset="1" stop-color="#bfe7fb"/></linearGradient><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#0096db" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.773" y1="87.876" x2="49.741" y2="78.845" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009de1"/><stop offset=".03" stop-color="#00a3e3"/><stop offset=".095" stop-color="#00b1e7"/><stop offset=".166" stop-color="#67c0ec"/><stop offset=".241" stop-color="#92cef0"/><stop offset=".321" stop-color="#b4dbf4"/><stop offset=".407" stop-color="#cee7f8"/><stop offset=".503" stop-color="#e3f0fb"/><stop offset=".614" stop-color="#f1f8fd"/><stop offset=".751" stop-color="#fbfdfe"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2.8l27.1 26.7H45.2V.8z" fill="url(#SVGID_2_)"/><path d="M45.2.8l27.1 26.7H45.2V.8z" fill-opacity="0" stroke="#0096db" stroke-width="2" stroke-linejoin="bevel"/><path d="M8.9 71.6h6.9c1.6 0 2.7.1 3.6.4 1.1.3 2 .9 2.8 1.7.8.8 1.4 1.8 1.8 3s.6 2.6.6 4.4c0 1.5-.2 2.8-.6 3.9-.5 1.3-1.1 2.4-2 3.3-.7.6-1.5 1.1-2.6 1.5-.8.3-1.9.4-3.3.4H8.9V71.6zm3.8 3.1V87h2.8c1.1 0 1.8-.1 2.3-.2.6-.2 1.1-.4 1.5-.8s.7-1 1-1.8c.3-.8.4-2 .4-3.4s-.1-2.5-.4-3.3-.6-1.4-1.1-1.8c-.5-.4-1-.7-1.7-.9-.5-.1-1.6-.2-3.1-.2h-1.7zm23.8 8.6v-3.1h8.1v7.3c-.8.8-1.9 1.4-3.4 2-1.5.6-3 .9-4.6.9-2 0-3.7-.4-5.1-1.2-1.5-.8-2.5-2-3.3-3.5-.7-1.5-1.1-3.1-1.1-4.9 0-1.9.4-3.6 1.2-5.1.8-1.5 2-2.6 3.6-3.4 1.2-.6 2.7-.9 4.5-.9 2.3 0 4.1.5 5.4 1.4 1.3 1 2.1 2.3 2.5 4l-3.7.7c-.3-.9-.8-1.6-1.5-2.1s-1.6-.8-2.7-.8c-1.6 0-3 .5-3.9 1.5-1 1-1.5 2.6-1.5 4.6 0 2.2.5 3.8 1.5 4.9 1 1.1 2.3 1.6 3.9 1.6.8 0 1.6-.2 2.4-.5s1.5-.7 2-1.1v-2.3h-4.3zm11.6 6.8V71.6h3.7l7.6 12.3V71.6h3.5V90h-3.8l-7.5-12v12h-3.5z" fill="#fff"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="36.1" y1="97.426" x2="36.1" y2="37.782" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009ade"/><stop offset="1" stop-color="#00bdf2"/></linearGradient><path d="M1.7 9.5l17.3 13 1.8-2.4L1 5.3V9l.7.5zm36 23.3l5.5-7.1-1.2-.9-6.6-5.1.7.5 8.2-10.7v-5l-10.7 14-7.1-5.5-12.9 16.6 7.1 5.4L1.1 59.9 1 64.2l22.1-27.4-.9-.7 8.1 6.1 5.5-7.1 35.4 26.6V58L37.7 32.8zm-8 5.5l-11.9-9 9.1-11.8 11.9 9-9.1 11.8z" fill="url(#SVGID_3_)"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.018" x2="36.2" y2="101.052" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#00a6e9"/><stop offset=".002" stop-color="#00a7e9"/><stop offset=".092" stop-color="#00b2ec"/><stop offset=".186" stop-color="#23bdef"/><stop offset=".286" stop-color="#66c8f2"/><stop offset=".393" stop-color="#89d3f5"/><stop offset=".507" stop-color="#a1dbf8"/><stop offset=".633" stop-color="#b2e2f9"/><stop offset=".781" stop-color="#bce6fb"/><stop offset="1" stop-color="#bfe7fb"/></linearGradient><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill="url(#a)"/><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#0096db" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="58.773" y1="87.876" x2="49.741" y2="78.845" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009de1"/><stop offset=".03" stop-color="#00a3e3"/><stop offset=".095" stop-color="#00b1e7"/><stop offset=".166" stop-color="#67c0ec"/><stop offset=".241" stop-color="#92cef0"/><stop offset=".321" stop-color="#b4dbf4"/><stop offset=".407" stop-color="#cee7f8"/><stop offset=".503" stop-color="#e3f0fb"/><stop offset=".614" stop-color="#f1f8fd"/><stop offset=".751" stop-color="#fbfdfe"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2.8l27.1 26.7H45.2V.8z" fill="url(#b)"/><path d="M45.2.8l27.1 26.7H45.2V.8z" fill-opacity="0" stroke="#0096db" stroke-width="2" stroke-linejoin="bevel"/><path d="M8.9 71.6h6.9c1.6 0 2.7.1 3.6.4 1.1.3 2 .9 2.8 1.7.8.8 1.4 1.8 1.8 3s.6 2.6.6 4.4c0 1.5-.2 2.8-.6 3.9-.5 1.3-1.1 2.4-2 3.3-.7.6-1.5 1.1-2.6 1.5-.8.3-1.9.4-3.3.4H8.9V71.6zm3.8 3.1V87h2.8c1.1 0 1.8-.1 2.3-.2.6-.2 1.1-.4 1.5-.8s.7-1 1-1.8c.3-.8.4-2 .4-3.4s-.1-2.5-.4-3.3-.6-1.4-1.1-1.8c-.5-.4-1-.7-1.7-.9-.5-.1-1.6-.2-3.1-.2h-1.7zm23.8 8.6v-3.1h8.1v7.3c-.8.8-1.9 1.4-3.4 2-1.5.6-3 .9-4.6.9-2 0-3.7-.4-5.1-1.2-1.5-.8-2.5-2-3.3-3.5-.7-1.5-1.1-3.1-1.1-4.9 0-1.9.4-3.6 1.2-5.1.8-1.5 2-2.6 3.6-3.4 1.2-.6 2.7-.9 4.5-.9 2.3 0 4.1.5 5.4 1.4 1.3 1 2.1 2.3 2.5 4l-3.7.7c-.3-.9-.8-1.6-1.5-2.1s-1.6-.8-2.7-.8c-1.6 0-3 .5-3.9 1.5-1 1-1.5 2.6-1.5 4.6 0 2.2.5 3.8 1.5 4.9 1 1.1 2.3 1.6 3.9 1.6.8 0 1.6-.2 2.4-.5s1.5-.7 2-1.1v-2.3h-4.3zm11.6 6.8V71.6h3.7l7.6 12.3V71.6h3.5V90h-3.8l-7.5-12v12h-3.5z" fill="#fff"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.1" y1="97.426" x2="36.1" y2="37.782" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009ade"/><stop offset="1" stop-color="#00bdf2"/></linearGradient><path d="M1.7 9.5l17.3 13 1.8-2.4L1 5.3V9l.7.5zm36 23.3l5.5-7.1-1.2-.9-6.6-5.1.7.5 8.2-10.7v-5l-10.7 14-7.1-5.5-12.9 16.6 7.1 5.4L1.1 59.9 1 64.2l22.1-27.4-.9-.7 8.1 6.1 5.5-7.1 35.4 26.6V58L37.7 32.8zm-8 5.5l-11.9-9 9.1-11.8 11.9 9-9.1 11.8z" fill="url(#c)"/></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g transform="translate(0 -952.362)"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="37.25" y1="1015.563" x2="37.25" y2="979.162"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M56.2 979.2c-3 0-2.2 3-2.8 4.4-.2.6-.6 1.4-.9 2.2l.2-.5c-.2.4-.3.6-.9.9l-4 2.4c-2.2-3.8-6.2-6.1-10.7-6.2-4.4 0-8.5 2.4-10.6 6.2l-4-2.4c-.5-.3-.7-.5-.9-.9l.2.5c-.3-.8-.7-1.6-.9-2.2-.5-1.4.3-4.4-2.8-4.4-3 0-2.5 4.1-3.4 5.7-.6 1-2.4 2-3.2 3.3-.1.1-.1.2-.1.3-.3.6-.4 1.4.1 2.2 1.5 2.6 3.7.4 5.1.2.6-.1 1.5-.1 2.4-.3l-.6.1c.4-.1.7 0 1.2.3 0 0 2.3 1.2 5.2 2.9v.7c0 2.3.7 4.5 1.9 6.5-4 2.4-7.4 4.5-7.4 4.5-.5.3-.8.4-1.2.4h.5-2.2c-1.3 0-3.2-1.7-4.9.7-1.7 2.3 1.8 3.3 2.5 4.5.7 1.2-.2 4.7 2.7 4.5 2.9-.3 2.4-2.7 3-3.9.3-.5.7-1.2 1.1-1.9l-.3.5c.2-.4.4-.5.9-.8 0 0 3.3-1.8 7.1-3.9v5.4c1 .4 2 .7 3.1.9v-2.9l1.5.3v2.9c1 .2 2.1.3 3.1.3v-2.9h1.6v2.9c1 0 2.1-.1 3.1-.3v-2.9c.5-.1 1.1-.2 1.5-.3v2.9c1.1-.2 2.1-.6 3.1-.9v-5.4c3.8 2.1 7.1 3.9 7.1 3.9.5.3.7.5.9.8.3.6.6 1.1.8 1.4.6 1.2.2 3.6 3 3.9 2.9.3 2-3.2 2.7-4.5.7-1.2 4.2-2.2 2.5-4.5-1.7-2.3-3.5-.7-4.9-.7h-2.2.5c-.4 0-.7-.1-1.2-.4 0 0-3.5-2.1-7.4-4.5 1.2-1.9 1.9-4.2 1.9-6.5v-.7c2.9-1.6 5.2-2.9 5.2-2.9.5-.3.8-.3 1.2-.3l-.6-.1c.9.1 1.8.2 2.4.3 1.4.2 3.6 2.4 5.1-.2 1.5-2.6-2.3-4.2-3.2-5.8-.6-1-.6-3.1-1.3-4.4 0-.1-.1-.2-.2-.3 0-.6-.6-1-1.6-1zm-23.5 14.2c.3 0 .5 0 .8.1 1.7.5 2.1 2 1.7 3.7-.4 1.7-2.2 2.7-3.9 2.2-1.7-.5-2.2-2-1.7-3.7.3-1.4 1.7-2.3 3.1-2.3zm9.1 0c1.4 0 2.8.9 3.1 2.3.4 1.7 0 3.3-1.7 3.7-1.7.5-3.4-.5-3.9-2.2-.4-1.7 0-3.2 1.7-3.7.3-.1.6-.1.8-.1zm-4.6 7.8c.5 0 2.5 2.6 2.3 2.9-.2.3-4.3.3-4.5 0-.2-.2 1.8-2.9 2.2-2.9z" fill="url(#SVGID_2_)"/></g><path d="M16.3 71.2h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8.8.9 1.5 1.9 1.9 3.2s.7 2.8.7 4.7c0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4h-7.6V71.2zm4 3.4v13.1h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9s.4-2.1.4-3.6-.1-2.7-.4-3.5-.7-1.5-1.1-1.9c-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.3-.2h-1.8zm16 16.5V71.2h4V91h-4zm6.2 0v-3.6L53 74.6h-9.3v-3.4h14.6v3.1l-11 13.4h11.4V91H42.5z" fill="#4c6c7b"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_3_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g transform="translate(0 -952.362)"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="37.25" y1="1015.563" x2="37.25" y2="979.162"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M56.2 979.2c-3 0-2.2 3-2.8 4.4-.2.6-.6 1.4-.9 2.2l.2-.5c-.2.4-.3.6-.9.9l-4 2.4c-2.2-3.8-6.2-6.1-10.7-6.2-4.4 0-8.5 2.4-10.6 6.2l-4-2.4c-.5-.3-.7-.5-.9-.9l.2.5c-.3-.8-.7-1.6-.9-2.2-.5-1.4.3-4.4-2.8-4.4-3 0-2.5 4.1-3.4 5.7-.6 1-2.4 2-3.2 3.3-.1.1-.1.2-.1.3-.3.6-.4 1.4.1 2.2 1.5 2.6 3.7.4 5.1.2.6-.1 1.5-.1 2.4-.3l-.6.1c.4-.1.7 0 1.2.3 0 0 2.3 1.2 5.2 2.9v.7c0 2.3.7 4.5 1.9 6.5-4 2.4-7.4 4.5-7.4 4.5-.5.3-.8.4-1.2.4h.5-2.2c-1.3 0-3.2-1.7-4.9.7-1.7 2.3 1.8 3.3 2.5 4.5.7 1.2-.2 4.7 2.7 4.5 2.9-.3 2.4-2.7 3-3.9.3-.5.7-1.2 1.1-1.9l-.3.5c.2-.4.4-.5.9-.8 0 0 3.3-1.8 7.1-3.9v5.4c1 .4 2 .7 3.1.9v-2.9l1.5.3v2.9c1 .2 2.1.3 3.1.3v-2.9h1.6v2.9c1 0 2.1-.1 3.1-.3v-2.9c.5-.1 1.1-.2 1.5-.3v2.9c1.1-.2 2.1-.6 3.1-.9v-5.4c3.8 2.1 7.1 3.9 7.1 3.9.5.3.7.5.9.8.3.6.6 1.1.8 1.4.6 1.2.2 3.6 3 3.9 2.9.3 2-3.2 2.7-4.5.7-1.2 4.2-2.2 2.5-4.5-1.7-2.3-3.5-.7-4.9-.7h-2.2.5c-.4 0-.7-.1-1.2-.4 0 0-3.5-2.1-7.4-4.5 1.2-1.9 1.9-4.2 1.9-6.5v-.7c2.9-1.6 5.2-2.9 5.2-2.9.5-.3.8-.3 1.2-.3l-.6-.1c.9.1 1.8.2 2.4.3 1.4.2 3.6 2.4 5.1-.2 1.5-2.6-2.3-4.2-3.2-5.8-.6-1-.6-3.1-1.3-4.4 0-.1-.1-.2-.2-.3 0-.6-.6-1-1.6-1zm-23.5 14.2c.3 0 .5 0 .8.1 1.7.5 2.1 2 1.7 3.7-.4 1.7-2.2 2.7-3.9 2.2-1.7-.5-2.2-2-1.7-3.7.3-1.4 1.7-2.3 3.1-2.3zm9.1 0c1.4 0 2.8.9 3.1 2.3.4 1.7 0 3.3-1.7 3.7-1.7.5-3.4-.5-3.9-2.2-.4-1.7 0-3.2 1.7-3.7.3-.1.6-.1.8-.1zm-4.6 7.8c.5 0 2.5 2.6 2.3 2.9-.2.3-4.3.3-4.5 0-.2-.2 1.8-2.9 2.2-2.9z" fill="url(#b)"/></g><path d="M16.3 71.2h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8.8.9 1.5 1.9 1.9 3.2s.7 2.8.7 4.7c0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4h-7.6V71.2zm4 3.4v13.1h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9s.4-2.1.4-3.6-.1-2.7-.4-3.5-.7-1.5-1.1-1.9c-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.3-.2h-1.8zm16 16.5V71.2h4V91h-4zm6.2 0v-3.6L53 74.6h-9.3v-3.4h14.6v3.1l-11 13.4h11.4V91H42.5z" fill="#4c6c7b"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#c)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M6.6 71.2H14c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8.8.9 1.5 1.9 1.9 3.2.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4H6.6V71.2zm4 3.4v13.1h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9s.4-2.1.4-3.6-.1-2.7-.4-3.5c-.3-.8-.7-1.5-1.1-1.9s-1.1-.8-1.9-.9c-.6-.1-1.7-.2-3.3-.2h-1.8zM26 81.3c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.7-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 3 0 5.3.9 7.1 2.7s2.7 4.3 2.7 7.6c0 3.2-.9 5.7-2.6 7.5s-4.1 2.7-7.1 2.7-5.4-.9-7.1-2.7c-1.8-1.8-2.7-4.3-2.7-7.4zm4.2-.2c0 2.2.5 4 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.6-2.9 1.6-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.2 1.2-1.7 2.9-1.7 5.2zm31.2 2.7l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8s-3.2 1.6-5.3 1.6c-2.7 0-4.8-.9-6.6-2.7s-2.6-4.3-2.6-7.4c0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.5 0 4.4.7 6 2.2.9.8 1.6 2.1 2.1 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.8-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.4 2.8-1.4 5.1c0 2.5.5 4.3 1.4 5.4s2 1.5 3.5 1.5c1.1 0 2-.3 2.8-1s1.3-1.8 1.6-3.2z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_3_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M6.6 71.2H14c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8.8.9 1.5 1.9 1.9 3.2.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4H6.6V71.2zm4 3.4v13.1h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9s.4-2.1.4-3.6-.1-2.7-.4-3.5c-.3-.8-.7-1.5-1.1-1.9s-1.1-.8-1.9-.9c-.6-.1-1.7-.2-3.3-.2h-1.8zM26 81.3c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.7-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 3 0 5.3.9 7.1 2.7s2.7 4.3 2.7 7.6c0 3.2-.9 5.7-2.6 7.5s-4.1 2.7-7.1 2.7-5.4-.9-7.1-2.7c-1.8-1.8-2.7-4.3-2.7-7.4zm4.2-.2c0 2.2.5 4 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.6-2.9 1.6-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.2 1.2-1.7 2.9-1.7 5.2zm31.2 2.7l3.9 1.2c-.6 2.2-1.6 3.8-3 4.8s-3.2 1.6-5.3 1.6c-2.7 0-4.8-.9-6.6-2.7s-2.6-4.3-2.6-7.4c0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.5 0 4.4.7 6 2.2.9.8 1.6 2.1 2.1 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.8-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6s-1.4 2.8-1.4 5.1c0 2.5.5 4.3 1.4 5.4s2 1.5 3.5 1.5c1.1 0 2-.3 2.8-1s1.3-1.8 1.6-3.2z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M7.7 76.7H13c1.2 0 2.1.1 2.8.3.8.2 1.6.7 2.2 1.3.6.6 1.1 1.4 1.4 2.3.3.9.5 2 .5 3.4 0 1.2-.1 2.2-.4 3-.4 1-.9 1.9-1.5 2.5-.5.5-1.2.9-2.1 1.1-.6.2-1.5.3-2.6.3H7.7V76.7zm3 2.5v9.5h2.2c.8 0 1.4 0 1.8-.1.5-.1.9-.3 1.2-.6.3-.3.6-.7.8-1.4.2-.6.3-1.5.3-2.6s-.1-2-.3-2.5c-.2-.6-.5-1.1-.8-1.4-.4-.3-.8-.6-1.4-.7-.4-.1-1.2-.1-2.4-.1h-1.4zm11 4.8c0-1.5.2-2.7.7-3.7.3-.7.8-1.4 1.3-2s1.2-1 1.9-1.3c.9-.4 1.9-.6 3.1-.6 2.1 0 3.8.7 5.1 2s1.9 3.1 1.9 5.5c0 2.3-.6 4.1-1.9 5.4s-3 2-5.1 2c-2.2 0-3.9-.6-5.1-1.9-1.2-1.3-1.9-3.1-1.9-5.4zm3.1-.1c0 1.6.4 2.8 1.1 3.7s1.7 1.3 2.9 1.3 2.1-.4 2.9-1.2c.7-.8 1.1-2.1 1.1-3.7s-.4-2.9-1.1-3.7c-.8-.9-1.7-1.3-2.9-1.3s-2.2.4-2.9 1.2c-.8.8-1.1 2-1.1 3.7zm22.5 1.9l2.8.9c-.4 1.6-1.2 2.7-2.2 3.5-1 .8-2.3 1.1-3.8 1.1-1.9 0-3.5-.6-4.7-1.9-1.2-1.3-1.9-3.1-1.9-5.3 0-2.4.6-4.2 1.9-5.6 1.2-1.3 2.9-2 4.9-2 1.8 0 3.2.5 4.3 1.6.7.6 1.2 1.5 1.5 2.6l-2.9.7c-.2-.7-.5-1.3-1.1-1.8s-1.2-.6-2-.6c-1.1 0-1.9.4-2.6 1.1-.7.8-1 2-1 3.7 0 1.8.3 3.1 1 3.9.7.8 1.5 1.2 2.6 1.2.8 0 1.4-.2 2-.7s1-1.4 1.2-2.4zm5.4-9.1h5.8c1.1 0 2 0 2.6.1s1.1.3 1.5.6c.4.3.8.7 1.1 1.2s.4 1.1.4 1.7c0 .7-.2 1.3-.5 1.8-.4.6-.9 1-1.5 1.3.9.3 1.6.7 2 1.3.5.6.7 1.3.7 2.2 0 .7-.2 1.3-.5 1.9s-.7 1.1-1.3 1.5-1.2.6-2 .7c-.5.1-1.7.1-3.5.1h-4.9V76.7zm2.9 2.4v3.3h4c.5-.1.9-.2 1.2-.5.3-.3.4-.7.4-1.1 0-.4-.1-.8-.4-1.1s-.6-.4-1.1-.5h-4.1zm0 5.7v3.8h2.7c1.1 0 1.7 0 2-.1.4-.1.8-.3 1.1-.6s.4-.7.4-1.2c0-.4-.1-.8-.3-1.1s-.5-.5-.9-.7c-.4-.1-1.3-.2-2.6-.2h-2.4z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_3_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M7.7 76.7H13c1.2 0 2.1.1 2.8.3.8.2 1.6.7 2.2 1.3.6.6 1.1 1.4 1.4 2.3.3.9.5 2 .5 3.4 0 1.2-.1 2.2-.4 3-.4 1-.9 1.9-1.5 2.5-.5.5-1.2.9-2.1 1.1-.6.2-1.5.3-2.6.3H7.7V76.7zm3 2.5v9.5h2.2c.8 0 1.4 0 1.8-.1.5-.1.9-.3 1.2-.6.3-.3.6-.7.8-1.4.2-.6.3-1.5.3-2.6s-.1-2-.3-2.5c-.2-.6-.5-1.1-.8-1.4-.4-.3-.8-.6-1.4-.7-.4-.1-1.2-.1-2.4-.1h-1.4zm11 4.8c0-1.5.2-2.7.7-3.7.3-.7.8-1.4 1.3-2s1.2-1 1.9-1.3c.9-.4 1.9-.6 3.1-.6 2.1 0 3.8.7 5.1 2s1.9 3.1 1.9 5.5c0 2.3-.6 4.1-1.9 5.4s-3 2-5.1 2c-2.2 0-3.9-.6-5.1-1.9-1.2-1.3-1.9-3.1-1.9-5.4zm3.1-.1c0 1.6.4 2.8 1.1 3.7s1.7 1.3 2.9 1.3 2.1-.4 2.9-1.2c.7-.8 1.1-2.1 1.1-3.7s-.4-2.9-1.1-3.7c-.8-.9-1.7-1.3-2.9-1.3s-2.2.4-2.9 1.2c-.8.8-1.1 2-1.1 3.7zm22.5 1.9l2.8.9c-.4 1.6-1.2 2.7-2.2 3.5-1 .8-2.3 1.1-3.8 1.1-1.9 0-3.5-.6-4.7-1.9-1.2-1.3-1.9-3.1-1.9-5.3 0-2.4.6-4.2 1.9-5.6 1.2-1.3 2.9-2 4.9-2 1.8 0 3.2.5 4.3 1.6.7.6 1.2 1.5 1.5 2.6l-2.9.7c-.2-.7-.5-1.3-1.1-1.8s-1.2-.6-2-.6c-1.1 0-1.9.4-2.6 1.1-.7.8-1 2-1 3.7 0 1.8.3 3.1 1 3.9.7.8 1.5 1.2 2.6 1.2.8 0 1.4-.2 2-.7s1-1.4 1.2-2.4zm5.4-9.1h5.8c1.1 0 2 0 2.6.1s1.1.3 1.5.6c.4.3.8.7 1.1 1.2s.4 1.1.4 1.7c0 .7-.2 1.3-.5 1.8-.4.6-.9 1-1.5 1.3.9.3 1.6.7 2 1.3.5.6.7 1.3.7 2.2 0 .7-.2 1.3-.5 1.9s-.7 1.1-1.3 1.5-1.2.6-2 .7c-.5.1-1.7.1-3.5.1h-4.9V76.7zm2.9 2.4v3.3h4c.5-.1.9-.2 1.2-.5.3-.3.4-.7.4-1.1 0-.4-.1-.8-.4-1.1s-.6-.4-1.1-.5h-4.1zm0 5.7v3.8h2.7c1.1 0 1.7 0 2-.1.4-.1.8-.3 1.1-.6s.4-.7.4-1.2c0-.4-.1-.8-.3-1.1s-.5-.5-.9-.7c-.4-.1-1.3-.2-2.6-.2h-2.4z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M6.2 76.7h5.3c1.2 0 2.1.1 2.8.3.8.2 1.6.7 2.2 1.3.6.6 1.1 1.4 1.4 2.3.3.9.5 2 .5 3.4 0 1.2-.1 2.2-.4 3-.4 1-.9 1.9-1.5 2.5-.5.5-1.2.9-2.1 1.1-.6.2-1.5.3-2.6.3H6.2V76.7zm2.9 2.5v9.5h2.2c.8 0 1.4 0 1.8-.1.5-.1.9-.3 1.2-.6.3-.3.6-.7.8-1.4.2-.6.3-1.5.3-2.6s-.1-2-.3-2.5c-.2-.6-.5-1.1-.8-1.4-.4-.3-.8-.6-1.4-.7-.4-.1-1.2-.1-2.4-.1H9.1zM20.2 84c0-1.5.2-2.7.7-3.7.3-.7.8-1.4 1.3-2s1.2-1 1.9-1.3c.9-.4 1.9-.6 3.1-.6 2.1 0 3.8.7 5.1 2s1.9 3.1 1.9 5.5c0 2.3-.6 4.1-1.9 5.4s-3 2-5.1 2c-2.2 0-3.9-.6-5.1-1.9-1.3-1.3-1.9-3.1-1.9-5.4zm3-.1c0 1.6.4 2.8 1.1 3.7s1.7 1.3 2.9 1.3 2.1-.4 2.9-1.2c.7-.8 1.1-2.1 1.1-3.7s-.4-2.9-1.1-3.7c-.7-.8-1.7-1.2-2.9-1.2s-2.2.4-2.9 1.2c-.7.7-1.1 1.9-1.1 3.6zm22.5 1.9l2.8.9c-.4 1.6-1.2 2.7-2.2 3.5-1 .8-2.3 1.1-3.8 1.1-1.9 0-3.5-.6-4.7-1.9-1.2-1.3-1.8-3.1-1.8-5.4 0-2.4.6-4.2 1.9-5.6s2.9-2 4.9-2c1.8 0 3.2.5 4.3 1.6.7.6 1.2 1.5 1.5 2.6l-2.9.7c-.2-.7-.5-1.3-1.1-1.8s-1.2-.6-2-.6c-1.1 0-1.9.4-2.6 1.1s-1 2-1 3.7c0 1.8.3 3.1 1 3.9s1.5 1.2 2.6 1.2c.8 0 1.4-.2 2-.7.5-.5.9-1.3 1.1-2.3zm5.3 5.3V76.7h4.4l2.6 9.8 2.6-9.8H65V91h-2.7V79.8l-2.9 11.3h-2.8l-2.9-11.3v11.3H51z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_3_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M6.2 76.7h5.3c1.2 0 2.1.1 2.8.3.8.2 1.6.7 2.2 1.3.6.6 1.1 1.4 1.4 2.3.3.9.5 2 .5 3.4 0 1.2-.1 2.2-.4 3-.4 1-.9 1.9-1.5 2.5-.5.5-1.2.9-2.1 1.1-.6.2-1.5.3-2.6.3H6.2V76.7zm2.9 2.5v9.5h2.2c.8 0 1.4 0 1.8-.1.5-.1.9-.3 1.2-.6.3-.3.6-.7.8-1.4.2-.6.3-1.5.3-2.6s-.1-2-.3-2.5c-.2-.6-.5-1.1-.8-1.4-.4-.3-.8-.6-1.4-.7-.4-.1-1.2-.1-2.4-.1H9.1zM20.2 84c0-1.5.2-2.7.7-3.7.3-.7.8-1.4 1.3-2s1.2-1 1.9-1.3c.9-.4 1.9-.6 3.1-.6 2.1 0 3.8.7 5.1 2s1.9 3.1 1.9 5.5c0 2.3-.6 4.1-1.9 5.4s-3 2-5.1 2c-2.2 0-3.9-.6-5.1-1.9-1.3-1.3-1.9-3.1-1.9-5.4zm3-.1c0 1.6.4 2.8 1.1 3.7s1.7 1.3 2.9 1.3 2.1-.4 2.9-1.2c.7-.8 1.1-2.1 1.1-3.7s-.4-2.9-1.1-3.7c-.7-.8-1.7-1.2-2.9-1.2s-2.2.4-2.9 1.2c-.7.7-1.1 1.9-1.1 3.6zm22.5 1.9l2.8.9c-.4 1.6-1.2 2.7-2.2 3.5-1 .8-2.3 1.1-3.8 1.1-1.9 0-3.5-.6-4.7-1.9-1.2-1.3-1.8-3.1-1.8-5.4 0-2.4.6-4.2 1.9-5.6s2.9-2 4.9-2c1.8 0 3.2.5 4.3 1.6.7.6 1.2 1.5 1.5 2.6l-2.9.7c-.2-.7-.5-1.3-1.1-1.8s-1.2-.6-2-.6c-1.1 0-1.9.4-2.6 1.1s-1 2-1 3.7c0 1.8.3 3.1 1 3.9s1.5 1.2 2.6 1.2c.8 0 1.4-.2 2-.7.5-.5.9-1.3 1.1-2.3zm5.3 5.3V76.7h4.4l2.6 9.8 2.6-9.8H65V91h-2.7V79.8l-2.9 11.3h-2.8l-2.9-11.3v11.3H51z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M5.4 75.3h5.9c1.3 0 2.3.1 3 .3.9.3 1.7.8 2.4 1.5s1.2 1.5 1.5 2.6c.3 1 .5 2.2.5 3.7 0 1.3-.2 2.4-.5 3.4-.4 1.1-1 2.1-1.7 2.8-.6.5-1.3 1-2.3 1.3-.7.2-1.7.3-2.8.3h-6V75.3zM8.6 78v10.4H11c.9 0 1.5 0 1.9-.2.5-.1 1-.3 1.3-.7s.6-.8.8-1.5c.2-.7.3-1.7.3-2.9s-.1-2.2-.3-2.8c-.2-.7-.5-1.2-.9-1.5s-.9-.6-1.5-.7c-.3-.1-1.2-.1-2.5-.1H8.6zm12.2 5.3c0-1.6.2-3 .7-4 .4-.8.9-1.5 1.5-2.2.6-.6 1.3-1.1 2.1-1.4 1-.4 2.1-.6 3.4-.6 2.3 0 4.2.7 5.6 2.2s2.1 3.4 2.1 6c0 2.5-.7 4.5-2.1 6-1.4 1.4-3.3 2.2-5.6 2.2-2.4 0-4.2-.7-5.6-2.1-1.4-1.6-2.1-3.6-2.1-6.1zm3.3-.1c0 1.8.4 3.1 1.2 4.1.8.9 1.9 1.4 3.2 1.4 1.3 0 2.3-.5 3.2-1.4.8-.9 1.2-2.3 1.2-4.1 0-1.8-.4-3.2-1.2-4s-1.9-1.3-3.2-1.3c-1.3 0-2.4.4-3.2 1.3-.8.8-1.2 2.2-1.2 4zm24.8 2.1l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.8-.7-5.2-2.1-1.4-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9-.6-.5-1.3-.7-2.2-.7-1.2 0-2.1.4-2.9 1.3-.7.8-1.1 2.2-1.1 4.1 0 2 .4 3.4 1.1 4.3s1.7 1.3 2.8 1.3c.9 0 1.6-.3 2.2-.8.7-.8 1.2-1.7 1.4-2.8zm4.3 5.8l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-5 7.6 5.4 8.1H64l-3.5-5.4-3.5 5.4h-3.8z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_3_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M5.4 75.3h5.9c1.3 0 2.3.1 3 .3.9.3 1.7.8 2.4 1.5s1.2 1.5 1.5 2.6c.3 1 .5 2.2.5 3.7 0 1.3-.2 2.4-.5 3.4-.4 1.1-1 2.1-1.7 2.8-.6.5-1.3 1-2.3 1.3-.7.2-1.7.3-2.8.3h-6V75.3zM8.6 78v10.4H11c.9 0 1.5 0 1.9-.2.5-.1 1-.3 1.3-.7s.6-.8.8-1.5c.2-.7.3-1.7.3-2.9s-.1-2.2-.3-2.8c-.2-.7-.5-1.2-.9-1.5s-.9-.6-1.5-.7c-.3-.1-1.2-.1-2.5-.1H8.6zm12.2 5.3c0-1.6.2-3 .7-4 .4-.8.9-1.5 1.5-2.2.6-.6 1.3-1.1 2.1-1.4 1-.4 2.1-.6 3.4-.6 2.3 0 4.2.7 5.6 2.2s2.1 3.4 2.1 6c0 2.5-.7 4.5-2.1 6-1.4 1.4-3.3 2.2-5.6 2.2-2.4 0-4.2-.7-5.6-2.1-1.4-1.6-2.1-3.6-2.1-6.1zm3.3-.1c0 1.8.4 3.1 1.2 4.1.8.9 1.9 1.4 3.2 1.4 1.3 0 2.3-.5 3.2-1.4.8-.9 1.2-2.3 1.2-4.1 0-1.8-.4-3.2-1.2-4s-1.9-1.3-3.2-1.3c-1.3 0-2.4.4-3.2 1.3-.8.8-1.2 2.2-1.2 4zm24.8 2.1l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.8-.7-5.2-2.1-1.4-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9-.6-.5-1.3-.7-2.2-.7-1.2 0-2.1.4-2.9 1.3-.7.8-1.1 2.2-1.1 4.1 0 2 .4 3.4 1.1 4.3s1.7 1.3 2.8 1.3c.9 0 1.6-.3 2.2-.8.7-.8 1.2-1.7 1.4-2.8zm4.3 5.8l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-5 7.6 5.4 8.1H64l-3.5-5.4-3.5 5.4h-3.8z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M8.2 71.2h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8.8.9 1.5 1.9 1.9 3.2.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4H8.2V71.2zm4.1 3.4v13.1h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9s.4-2.1.4-3.6-.1-2.7-.4-3.5c-.3-.8-.7-1.5-1.1-1.9s-1.1-.8-1.9-.9c-.6-.1-1.7-.2-3.3-.2h-1.8zm15.4 6.7c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.7-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 3 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.3 2.7 7.6 0 3.2-.9 5.7-2.6 7.5s-4.1 2.7-7.1 2.7-5.4-.9-7.1-2.7c-1.9-1.8-2.7-4.3-2.7-7.4zm4.1-.2c0 2.2.5 4 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.6-2.9 1.6-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.2 1.2-1.7 2.9-1.7 5.2zm23 10V74.6h-5.9v-3.4h15.9v3.4h-5.9v16.5h-4.1z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_3_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M8.2 71.2h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8.8.9 1.5 1.9 1.9 3.2.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4H8.2V71.2zm4.1 3.4v13.1h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9s.4-2.1.4-3.6-.1-2.7-.4-3.5c-.3-.8-.7-1.5-1.1-1.9s-1.1-.8-1.9-.9c-.6-.1-1.7-.2-3.3-.2h-1.8zm15.4 6.7c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.7-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 3 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.3 2.7 7.6 0 3.2-.9 5.7-2.6 7.5s-4.1 2.7-7.1 2.7-5.4-.9-7.1-2.7c-1.9-1.8-2.7-4.3-2.7-7.4zm4.1-.2c0 2.2.5 4 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.6-2.9 1.6-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.2 1.2-1.7 2.9-1.7 5.2zm23 10V74.6h-5.9v-3.4h15.9v3.4h-5.9v16.5h-4.1z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M7.3 76.7h5.3c1.2 0 2.1.1 2.8.3.8.2 1.6.7 2.2 1.3.6.6 1.1 1.4 1.4 2.3.3.9.5 2 .5 3.4 0 1.2-.1 2.2-.4 3-.4 1-.9 1.9-1.5 2.5-.5.5-1.2.9-2.1 1.1-.6.2-1.5.3-2.6.3H7.3V76.7zm2.9 2.5v9.5h2.2c.8 0 1.4 0 1.8-.1.5-.1.9-.3 1.2-.6.3-.3.6-.7.8-1.4.2-.6.3-1.5.3-2.6s-.1-2-.3-2.5c-.2-.6-.5-1.1-.8-1.4-.4-.3-.8-.6-1.4-.7-.4-.1-1.2-.1-2.4-.1h-1.4zM21.3 84c0-1.5.2-2.7.7-3.7.3-.7.8-1.4 1.3-2s1.2-1 1.9-1.3c.9-.4 1.9-.6 3.1-.6 2.1 0 3.8.7 5.1 2s1.9 3.1 1.9 5.5c0 2.3-.6 4.1-1.9 5.4s-3 2-5.1 2c-2.2 0-3.9-.6-5.1-1.9-1.3-1.3-1.9-3.1-1.9-5.4zm3-.1c0 1.6.4 2.8 1.1 3.7s1.7 1.3 2.9 1.3 2.1-.4 2.9-1.2c.7-.8 1.1-2.1 1.1-3.7s-.4-2.9-1.1-3.7c-.7-.8-1.7-1.2-2.9-1.2s-2.2.4-2.9 1.2c-.7.7-1.1 1.9-1.1 3.6zm16.6 7.2V79.2h-4.3v-2.4h11.5v2.4h-4.3v11.9h-2.9zm9 0V76.7h4.4l2.6 9.8 2.6-9.8h4.4V91h-2.7V79.8l-2.9 11.3h-2.8l-2.9-11.3v11.3h-2.7z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_3_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M7.3 76.7h5.3c1.2 0 2.1.1 2.8.3.8.2 1.6.7 2.2 1.3.6.6 1.1 1.4 1.4 2.3.3.9.5 2 .5 3.4 0 1.2-.1 2.2-.4 3-.4 1-.9 1.9-1.5 2.5-.5.5-1.2.9-2.1 1.1-.6.2-1.5.3-2.6.3H7.3V76.7zm2.9 2.5v9.5h2.2c.8 0 1.4 0 1.8-.1.5-.1.9-.3 1.2-.6.3-.3.6-.7.8-1.4.2-.6.3-1.5.3-2.6s-.1-2-.3-2.5c-.2-.6-.5-1.1-.8-1.4-.4-.3-.8-.6-1.4-.7-.4-.1-1.2-.1-2.4-.1h-1.4zM21.3 84c0-1.5.2-2.7.7-3.7.3-.7.8-1.4 1.3-2s1.2-1 1.9-1.3c.9-.4 1.9-.6 3.1-.6 2.1 0 3.8.7 5.1 2s1.9 3.1 1.9 5.5c0 2.3-.6 4.1-1.9 5.4s-3 2-5.1 2c-2.2 0-3.9-.6-5.1-1.9-1.3-1.3-1.9-3.1-1.9-5.4zm3-.1c0 1.6.4 2.8 1.1 3.7s1.7 1.3 2.9 1.3 2.1-.4 2.9-1.2c.7-.8 1.1-2.1 1.1-3.7s-.4-2.9-1.1-3.7c-.7-.8-1.7-1.2-2.9-1.2s-2.2.4-2.9 1.2c-.7.7-1.1 1.9-1.1 3.6zm16.6 7.2V79.2h-4.3v-2.4h11.5v2.4h-4.3v11.9h-2.9zm9 0V76.7h4.4l2.6 9.8 2.6-9.8h4.4V91h-2.7V79.8l-2.9 11.3h-2.8l-2.9-11.3v11.3h-2.7z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M6.7 75.3h5.9c1.3 0 2.3.1 3 .3.9.3 1.7.8 2.4 1.5s1.2 1.5 1.5 2.6c.3 1 .5 2.2.5 3.7 0 1.3-.2 2.4-.5 3.4-.4 1.1-1 2.1-1.7 2.8-.6.5-1.3 1-2.3 1.3-.7.2-1.7.3-2.8.3h-6V75.3zM9.9 78v10.4h2.4c.9 0 1.5 0 1.9-.2.5-.1 1-.3 1.3-.7s.6-.8.8-1.5c.2-.7.3-1.7.3-2.9s-.1-2.2-.3-2.8c-.2-.7-.5-1.2-.9-1.5s-.9-.6-1.5-.7c-.4-.1-1.3-.1-2.6-.1H9.9zm12.2 5.3c0-1.6.2-3 .7-4 .4-.8.9-1.5 1.5-2.2.6-.6 1.3-1.1 2.1-1.4 1-.4 2.1-.6 3.4-.6 2.3 0 4.2.7 5.6 2.2s2.1 3.4 2.1 6c0 2.5-.7 4.5-2.1 6-1.4 1.4-3.3 2.2-5.6 2.2-2.4 0-4.2-.7-5.6-2.1-1.4-1.6-2.1-3.6-2.1-6.1zm3.3-.1c0 1.8.4 3.1 1.2 4.1.8.9 1.9 1.4 3.2 1.4 1.3 0 2.3-.5 3.2-1.4.8-.9 1.2-2.3 1.2-4.1 0-1.8-.4-3.2-1.2-4s-1.9-1.3-3.2-1.3c-1.3 0-2.4.4-3.2 1.3-.8.8-1.2 2.2-1.2 4zm18.2 7.9V78h-4.7v-2.7h12.6V78h-4.7v13.1h-3.2zm8.4 0l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-5 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4H52z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_3_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M6.7 75.3h5.9c1.3 0 2.3.1 3 .3.9.3 1.7.8 2.4 1.5s1.2 1.5 1.5 2.6c.3 1 .5 2.2.5 3.7 0 1.3-.2 2.4-.5 3.4-.4 1.1-1 2.1-1.7 2.8-.6.5-1.3 1-2.3 1.3-.7.2-1.7.3-2.8.3h-6V75.3zM9.9 78v10.4h2.4c.9 0 1.5 0 1.9-.2.5-.1 1-.3 1.3-.7s.6-.8.8-1.5c.2-.7.3-1.7.3-2.9s-.1-2.2-.3-2.8c-.2-.7-.5-1.2-.9-1.5s-.9-.6-1.5-.7c-.4-.1-1.3-.1-2.6-.1H9.9zm12.2 5.3c0-1.6.2-3 .7-4 .4-.8.9-1.5 1.5-2.2.6-.6 1.3-1.1 2.1-1.4 1-.4 2.1-.6 3.4-.6 2.3 0 4.2.7 5.6 2.2s2.1 3.4 2.1 6c0 2.5-.7 4.5-2.1 6-1.4 1.4-3.3 2.2-5.6 2.2-2.4 0-4.2-.7-5.6-2.1-1.4-1.6-2.1-3.6-2.1-6.1zm3.3-.1c0 1.8.4 3.1 1.2 4.1.8.9 1.9 1.4 3.2 1.4 1.3 0 2.3-.5 3.2-1.4.8-.9 1.2-2.3 1.2-4.1 0-1.8-.4-3.2-1.2-4s-1.9-1.3-3.2-1.3c-1.3 0-2.4.4-3.2 1.3-.8.8-1.2 2.2-1.2 4zm18.2 7.9V78h-4.7v-2.7h12.6V78h-4.7v13.1h-3.2zm8.4 0l5.4-8.2-4.9-7.5h3.8l3.2 5.1 3.1-5.1h3.7l-5 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4H52z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="18.121" y1="50.468" x2="55.041" y2="87.389" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#006186"/><stop offset=".116" stop-color="#005f83"/><stop offset=".239" stop-color="#005a7d"/><stop offset=".369" stop-color="#005373"/><stop offset=".502" stop-color="#004865"/><stop offset=".639" stop-color="#003953"/><stop offset=".779" stop-color="#00253c"/><stop offset=".918" stop-color="#00031d"/><stop offset="1"/></linearGradient><path d="M64.4 25.7c-.5 0-1 .2-1.4.3-.5.2-1 .4-1.4.6-.7.4-1.2.8-1.5 1.3-.3.5-.6 1.1-.8 1.7-.9 2.4-2.2 6-4 11.3-1.8 5.1-3.6 10.5-5.6 16H45l-8.7-24.4-7.9 24.4h-4.7c-2.6-7.5-4.6-13.3-6-17.2-1.4-4.1-2.5-7.4-3.5-10.2-.3-.8-.6-1.4-1-1.8-.4-.4-.9-.8-1.4-1.2-.4-.3-.9-.5-1.3-.6-.5-.1-1-.2-1.6-.3v-1.8h17.6v1.8c-1 .1-1.8.2-2.3.4-.5.1-.9.2-1.2.4-.3.1-.5.3-.5.4-.1.1-.1.3-.1.4 0 .2 0 .4.1.6.1.2.1.4.2.7.4 1.2 1.1 3.5 2.3 6.8 1.1 3.4 2.5 7.5 4.2 12.5L36.7 24h4.9l8.7 24.5c1.3-4 2.3-7.2 3.1-9.7.8-2.5 1.4-4.7 1.9-6.4.3-1.1.6-2 .7-2.8.2-.7.3-1.4.3-1.9 0-.3-.2-.6-.5-.8-.3-.2-.7-.4-1.2-.6-.4-.1-1-.3-1.7-.3-.7-.1-1.3-.2-1.8-.2v-2h13.3v1.9z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -1 +1 @@
<svg id="Layer_2_1_" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97.8" x2="36" y2="-.2" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.075" y1="26.575" x2="58.575" y2="13.075" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_2_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".85"><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="13.2" y1="63.966" x2="58.8" y2="63.966"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M58.8 61.7c0-1.8-1.4-3.2-3.2-3.2H16.4c-1.8 0-3.2 1.4-3.2 3.2v4.5c0 1.8 1.4 3.2 3.2 3.2h39.2c1.8 0 3.2-1.4 3.2-3.2v-4.5zm-16.9 4.1c-1 0-1.8-.8-1.8-1.8s.8-1.8 1.8-1.8 1.8.8 1.8 1.8c.1 1-.8 1.8-1.8 1.8zm5.5 0c-1 0-1.8-.8-1.8-1.8s.8-1.8 1.8-1.8 1.8.8 1.8 1.8-.8 1.8-1.8 1.8zm5.5 0c-1 0-1.8-.8-1.8-1.8s.8-1.8 1.8-1.8 1.8.8 1.8 1.8-.8 1.8-1.8 1.8z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="13.968" y1="51.725" x2="58.032" y2="51.725"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M16.4 56.7h39.2c.9 0 1.7.2 2.4.6l-3.8-8c-1-2.3-2.8-3.2-4.6-3.2h-4.3l-6.2 6.3c-.4.4-.9.8-1.5 1-.6.2-1.2.4-1.8.4-.6 0-1.2-.1-1.8-.4h-.2c-.5-.3-.9-.6-1.3-.9l-6.1-6.3h-4.2c-1.8 0-3.4 1-4.6 3.2l-3.8 8c.9-.5 1.7-.7 2.6-.7z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="26.172" y1="40.752" x2="45.827" y2="40.752"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M45.1 43.2c.2-.2.4-.5.5-.8.1-.3.2-.6.2-.9 0-.3-.1-.6-.2-.9-.1-.3-.3-.5-.5-.8-.2-.2-.5-.4-.8-.5-.3-.1-.6-.2-.9-.2s-.6.1-.9.2c-.3.1-.6.3-.8.5l-3.5 3.5v-11c0-.3-.1-.6-.2-.9-.1-.3-.3-.5-.5-.8-.2-.2-.5-.4-.8-.5-.1-.1-.4-.1-.7-.1-.3 0-.6.1-.9.2-.3.1-.6.3-.8.5-.2.2-.4.5-.5.8-.1.3-.2.6-.2.9v11l-3.5-3.5c-.2-.2-.5-.4-.8-.5-.3-.1-.6-.2-.9-.2-.3 0-.6.1-.9.2-.3.1-.5.3-.8.5-.2.2-.4.5-.5.8-.1.3-.2.6-.2.9 0 .3.1.6.2.9.1.3.3.6.5.8l7.5 7.7c.2.2.5.4.8.5.3.1.6.2.9.2.3 0 .6-.1.9-.2.3-.1.5-.3.8-.5l7.5-7.8z" fill="url(#SVGID_5_)"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97.8" x2="36" y2="-.2" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.075" y1="26.575" x2="58.575" y2="13.075" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".85"><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="13.2" y1="63.966" x2="58.8" y2="63.966"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M58.8 61.7c0-1.8-1.4-3.2-3.2-3.2H16.4c-1.8 0-3.2 1.4-3.2 3.2v4.5c0 1.8 1.4 3.2 3.2 3.2h39.2c1.8 0 3.2-1.4 3.2-3.2v-4.5zm-16.9 4.1c-1 0-1.8-.8-1.8-1.8s.8-1.8 1.8-1.8 1.8.8 1.8 1.8c.1 1-.8 1.8-1.8 1.8zm5.5 0c-1 0-1.8-.8-1.8-1.8s.8-1.8 1.8-1.8 1.8.8 1.8 1.8-.8 1.8-1.8 1.8zm5.5 0c-1 0-1.8-.8-1.8-1.8s.8-1.8 1.8-1.8 1.8.8 1.8 1.8-.8 1.8-1.8 1.8z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="13.968" y1="51.725" x2="58.032" y2="51.725"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M16.4 56.7h39.2c.9 0 1.7.2 2.4.6l-3.8-8c-1-2.3-2.8-3.2-4.6-3.2h-4.3l-6.2 6.3c-.4.4-.9.8-1.5 1-.6.2-1.2.4-1.8.4-.6 0-1.2-.1-1.8-.4h-.2c-.5-.3-.9-.6-1.3-.9l-6.1-6.3h-4.2c-1.8 0-3.4 1-4.6 3.2l-3.8 8c.9-.5 1.7-.7 2.6-.7z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="26.172" y1="40.752" x2="45.827" y2="40.752"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M45.1 43.2c.2-.2.4-.5.5-.8.1-.3.2-.6.2-.9 0-.3-.1-.6-.2-.9-.1-.3-.3-.5-.5-.8-.2-.2-.5-.4-.8-.5-.3-.1-.6-.2-.9-.2s-.6.1-.9.2c-.3.1-.6.3-.8.5l-3.5 3.5v-11c0-.3-.1-.6-.2-.9-.1-.3-.3-.5-.5-.8-.2-.2-.5-.4-.8-.5-.1-.1-.4-.1-.7-.1-.3 0-.6.1-.9.2-.3.1-.6.3-.8.5-.2.2-.4.5-.5.8-.1.3-.2.6-.2.9v11l-3.5-3.5c-.2-.2-.5-.4-.8-.5-.3-.1-.6-.2-.9-.2-.3 0-.6.1-.9.2-.3.1-.5.3-.8.5-.2.2-.4.5-.5.8-.1.3-.2.6-.2.9 0 .3.1.6.2.9.1.3.3.6.5.8l7.5 7.7c.2.2.5.4.8.5.3.1.6.2.9.2.3 0 .6-.1.9-.2.3-.1.5-.3.8-.5l7.5-7.8z" fill="url(#e)"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.018" x2="36.2" y2="101.052" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#00a6e9"/><stop offset=".002" stop-color="#00a7e9"/><stop offset=".092" stop-color="#00b2ec"/><stop offset=".186" stop-color="#23bdef"/><stop offset=".286" stop-color="#66c8f2"/><stop offset=".393" stop-color="#89d3f5"/><stop offset=".507" stop-color="#a1dbf8"/><stop offset=".633" stop-color="#b2e2f9"/><stop offset=".781" stop-color="#bce6fb"/><stop offset="1" stop-color="#bfe7fb"/></linearGradient><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#0096db" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.773" y1="87.876" x2="49.741" y2="78.845" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009de1"/><stop offset=".03" stop-color="#00a3e3"/><stop offset=".095" stop-color="#00b1e7"/><stop offset=".166" stop-color="#67c0ec"/><stop offset=".241" stop-color="#92cef0"/><stop offset=".321" stop-color="#b4dbf4"/><stop offset=".407" stop-color="#cee7f8"/><stop offset=".503" stop-color="#e3f0fb"/><stop offset=".614" stop-color="#f1f8fd"/><stop offset=".751" stop-color="#fbfdfe"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2.8l27.1 26.7H45.2V.8z" fill="url(#SVGID_2_)"/><path d="M45.2.8l27.1 26.7H45.2V.8z" fill-opacity="0" stroke="#0096db" stroke-width="2" stroke-linejoin="bevel"/><path d="M6.9 71.6h6.9c1.6 0 2.7.1 3.6.4 1.1.3 2 .9 2.8 1.7.8.8 1.4 1.8 1.8 3s.6 2.6.6 4.4c0 1.5-.2 2.8-.6 3.9-.5 1.3-1.1 2.4-2 3.3-.7.6-1.5 1.1-2.6 1.5-.8.3-1.9.4-3.3.4H6.9V71.6zm3.8 3.1V87h2.8c1.1 0 1.8-.1 2.3-.2.6-.2 1.1-.4 1.5-.8s.7-1 1-1.8c.3-.8.4-2 .4-3.4s-.1-2.5-.4-3.3-.6-1.4-1.1-1.8c-.5-.4-1-.7-1.7-.9-.5-.1-1.6-.2-3.1-.2h-1.7zm17.7 15.4L24 71.6h3.9l2.8 12.7 3.4-12.7h4.5l3.3 12.9 2.9-12.9h3.8L44.1 90h-4l-3.7-13.8L32.7 90h-4.3zm30.7-6.8v-3.1h8.1v7.3c-.8.8-1.9 1.4-3.4 2-1.5.6-3 .9-4.6.9-2 0-3.7-.4-5.1-1.2-1.5-.8-2.5-2-3.3-3.5-.7-1.5-1.1-3.1-1.1-4.9 0-1.9.4-3.6 1.2-5.1.8-1.5 2-2.6 3.6-3.4 1.2-.6 2.7-.9 4.5-.9 2.3 0 4.1.5 5.4 1.4 1.3 1 2.1 2.3 2.5 4l-3.7.7c-.3-.9-.8-1.6-1.5-2.1s-1.6-.8-2.7-.8c-1.6 0-3 .5-3.9 1.5-1 1-1.5 2.6-1.5 4.6 0 2.2.5 3.8 1.5 4.9s2.3 1.6 3.9 1.6c.8 0 1.6-.2 2.4-.5s1.5-.7 2-1.1v-2.3h-4.3z" fill="#fff"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="36.1" y1="97.426" x2="36.1" y2="37.782" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009ade"/><stop offset="1" stop-color="#00bdf2"/></linearGradient><path d="M1.7 9.5l17.3 13 1.8-2.4L1 5.3V9l.7.5zm36 23.3l5.5-7.1-1.2-.9-6.6-5.1.7.5 8.2-10.7v-5l-10.7 14-7.1-5.5-12.9 16.6 7.1 5.4L1.1 59.9 1 64.2l22.1-27.4-.9-.7 8.1 6.1 5.5-7.1 35.4 26.6V58L37.7 32.8zm-8 5.5l-11.9-9 9.1-11.8 11.9 9-9.1 11.8z" fill="url(#SVGID_3_)"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.018" x2="36.2" y2="101.052" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#00a6e9"/><stop offset=".002" stop-color="#00a7e9"/><stop offset=".092" stop-color="#00b2ec"/><stop offset=".186" stop-color="#23bdef"/><stop offset=".286" stop-color="#66c8f2"/><stop offset=".393" stop-color="#89d3f5"/><stop offset=".507" stop-color="#a1dbf8"/><stop offset=".633" stop-color="#b2e2f9"/><stop offset=".781" stop-color="#bce6fb"/><stop offset="1" stop-color="#bfe7fb"/></linearGradient><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill="url(#a)"/><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#0096db" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="58.773" y1="87.876" x2="49.741" y2="78.845" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009de1"/><stop offset=".03" stop-color="#00a3e3"/><stop offset=".095" stop-color="#00b1e7"/><stop offset=".166" stop-color="#67c0ec"/><stop offset=".241" stop-color="#92cef0"/><stop offset=".321" stop-color="#b4dbf4"/><stop offset=".407" stop-color="#cee7f8"/><stop offset=".503" stop-color="#e3f0fb"/><stop offset=".614" stop-color="#f1f8fd"/><stop offset=".751" stop-color="#fbfdfe"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2.8l27.1 26.7H45.2V.8z" fill="url(#b)"/><path d="M45.2.8l27.1 26.7H45.2V.8z" fill-opacity="0" stroke="#0096db" stroke-width="2" stroke-linejoin="bevel"/><path d="M6.9 71.6h6.9c1.6 0 2.7.1 3.6.4 1.1.3 2 .9 2.8 1.7.8.8 1.4 1.8 1.8 3s.6 2.6.6 4.4c0 1.5-.2 2.8-.6 3.9-.5 1.3-1.1 2.4-2 3.3-.7.6-1.5 1.1-2.6 1.5-.8.3-1.9.4-3.3.4H6.9V71.6zm3.8 3.1V87h2.8c1.1 0 1.8-.1 2.3-.2.6-.2 1.1-.4 1.5-.8s.7-1 1-1.8c.3-.8.4-2 .4-3.4s-.1-2.5-.4-3.3-.6-1.4-1.1-1.8c-.5-.4-1-.7-1.7-.9-.5-.1-1.6-.2-3.1-.2h-1.7zm17.7 15.4L24 71.6h3.9l2.8 12.7 3.4-12.7h4.5l3.3 12.9 2.9-12.9h3.8L44.1 90h-4l-3.7-13.8L32.7 90h-4.3zm30.7-6.8v-3.1h8.1v7.3c-.8.8-1.9 1.4-3.4 2-1.5.6-3 .9-4.6.9-2 0-3.7-.4-5.1-1.2-1.5-.8-2.5-2-3.3-3.5-.7-1.5-1.1-3.1-1.1-4.9 0-1.9.4-3.6 1.2-5.1.8-1.5 2-2.6 3.6-3.4 1.2-.6 2.7-.9 4.5-.9 2.3 0 4.1.5 5.4 1.4 1.3 1 2.1 2.3 2.5 4l-3.7.7c-.3-.9-.8-1.6-1.5-2.1s-1.6-.8-2.7-.8c-1.6 0-3 .5-3.9 1.5-1 1-1.5 2.6-1.5 4.6 0 2.2.5 3.8 1.5 4.9s2.3 1.6 3.9 1.6c.8 0 1.6-.2 2.4-.5s1.5-.7 2-1.1v-2.3h-4.3z" fill="#fff"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.1" y1="97.426" x2="36.1" y2="37.782" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009ade"/><stop offset="1" stop-color="#00bdf2"/></linearGradient><path d="M1.7 9.5l17.3 13 1.8-2.4L1 5.3V9l.7.5zm36 23.3l5.5-7.1-1.2-.9-6.6-5.1.7.5 8.2-10.7v-5l-10.7 14-7.1-5.5-12.9 16.6 7.1 5.4L1.1 59.9 1 64.2l22.1-27.4-.9-.7 8.1 6.1 5.5-7.1 35.4 26.6V58L37.7 32.8zm-8 5.5l-11.9-9 9.1-11.8 11.9 9-9.1 11.8z" fill="url(#c)"/></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.018" x2="36.2" y2="101.052" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#00a6e9"/><stop offset=".002" stop-color="#00a7e9"/><stop offset=".092" stop-color="#00b2ec"/><stop offset=".186" stop-color="#23bdef"/><stop offset=".286" stop-color="#66c8f2"/><stop offset=".393" stop-color="#89d3f5"/><stop offset=".507" stop-color="#a1dbf8"/><stop offset=".633" stop-color="#b2e2f9"/><stop offset=".781" stop-color="#bce6fb"/><stop offset="1" stop-color="#bfe7fb"/></linearGradient><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill="url(#SVGID_1_)"/><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#0096db" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="58.773" y1="87.876" x2="49.741" y2="78.845" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009de1"/><stop offset=".03" stop-color="#00a3e3"/><stop offset=".095" stop-color="#00b1e7"/><stop offset=".166" stop-color="#67c0ec"/><stop offset=".241" stop-color="#92cef0"/><stop offset=".321" stop-color="#b4dbf4"/><stop offset=".407" stop-color="#cee7f8"/><stop offset=".503" stop-color="#e3f0fb"/><stop offset=".614" stop-color="#f1f8fd"/><stop offset=".751" stop-color="#fbfdfe"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2.8l27.1 26.7H45.2V.8z" fill="url(#SVGID_2_)"/><path d="M45.2.8l27.1 26.7H45.2V.8z" fill-opacity="0" stroke="#0096db" stroke-width="2" stroke-linejoin="bevel"/><path d="M11.8 71.6h6.9c1.6 0 2.7.1 3.6.4 1.1.3 2 .9 2.8 1.7.8.8 1.4 1.8 1.8 3s.6 2.6.6 4.4c0 1.5-.2 2.8-.6 3.9-.5 1.3-1.1 2.4-2 3.3-.7.6-1.5 1.1-2.6 1.5-.8.3-1.9.4-3.3.4h-7.1V71.6zm3.8 3.1V87h2.8c1.1 0 1.8-.1 2.3-.2.6-.2 1.1-.4 1.5-.8s.7-1 1-1.8c.3-.8.4-2 .4-3.4s-.1-2.5-.4-3.3-.6-1.4-1.1-1.8c-.5-.4-1-.7-1.7-.9-.5-.1-1.6-.2-3.1-.2h-1.7zm13.2 15.4l6.4-9.6-5.8-8.8h4.4l3.7 5.9 3.7-5.9h4.4l-5.8 9 6.4 9.5h-4.5l-4.1-6.4-4.2 6.4h-4.6zm19.3 0V71.6h12.8v3.1h-9v4.4h7.8v3.1h-7.8V90h-3.8z" fill="#fff"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="36.1" y1="97.426" x2="36.1" y2="37.782" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009ade"/><stop offset="1" stop-color="#00bdf2"/></linearGradient><path d="M1.7 9.5l17.3 13 1.8-2.4L1 5.3V9l.7.5zm36 23.3l5.5-7.1-1.2-.9-6.6-5.1.7.5 8.2-10.7v-5l-10.7 14-7.1-5.5-12.9 16.6 7.1 5.4L1.1 59.9 1 64.2l22.1-27.4-.9-.7 8.1 6.1 5.5-7.1 35.4 26.6V58L37.7 32.8zm-8 5.5l-11.9-9 9.1-11.8 11.9 9-9.1 11.8z" fill="url(#SVGID_3_)"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.018" x2="36.2" y2="101.052" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#00a6e9"/><stop offset=".002" stop-color="#00a7e9"/><stop offset=".092" stop-color="#00b2ec"/><stop offset=".186" stop-color="#23bdef"/><stop offset=".286" stop-color="#66c8f2"/><stop offset=".393" stop-color="#89d3f5"/><stop offset=".507" stop-color="#a1dbf8"/><stop offset=".633" stop-color="#b2e2f9"/><stop offset=".781" stop-color="#bce6fb"/><stop offset="1" stop-color="#bfe7fb"/></linearGradient><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill="url(#a)"/><path d="M45.2.9l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#0096db" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="58.773" y1="87.876" x2="49.741" y2="78.845" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009de1"/><stop offset=".03" stop-color="#00a3e3"/><stop offset=".095" stop-color="#00b1e7"/><stop offset=".166" stop-color="#67c0ec"/><stop offset=".241" stop-color="#92cef0"/><stop offset=".321" stop-color="#b4dbf4"/><stop offset=".407" stop-color="#cee7f8"/><stop offset=".503" stop-color="#e3f0fb"/><stop offset=".614" stop-color="#f1f8fd"/><stop offset=".751" stop-color="#fbfdfe"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2.8l27.1 26.7H45.2V.8z" fill="url(#b)"/><path d="M45.2.8l27.1 26.7H45.2V.8z" fill-opacity="0" stroke="#0096db" stroke-width="2" stroke-linejoin="bevel"/><path d="M11.8 71.6h6.9c1.6 0 2.7.1 3.6.4 1.1.3 2 .9 2.8 1.7.8.8 1.4 1.8 1.8 3s.6 2.6.6 4.4c0 1.5-.2 2.8-.6 3.9-.5 1.3-1.1 2.4-2 3.3-.7.6-1.5 1.1-2.6 1.5-.8.3-1.9.4-3.3.4h-7.1V71.6zm3.8 3.1V87h2.8c1.1 0 1.8-.1 2.3-.2.6-.2 1.1-.4 1.5-.8s.7-1 1-1.8c.3-.8.4-2 .4-3.4s-.1-2.5-.4-3.3-.6-1.4-1.1-1.8c-.5-.4-1-.7-1.7-.9-.5-.1-1.6-.2-3.1-.2h-1.7zm13.2 15.4l6.4-9.6-5.8-8.8h4.4l3.7 5.9 3.7-5.9h4.4l-5.8 9 6.4 9.5h-4.5l-4.1-6.4-4.2 6.4h-4.6zm19.3 0V71.6h12.8v3.1h-9v4.4h7.8v3.1h-7.8V90h-3.8z" fill="#fff"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.1" y1="97.426" x2="36.1" y2="37.782" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#009ade"/><stop offset="1" stop-color="#00bdf2"/></linearGradient><path d="M1.7 9.5l17.3 13 1.8-2.4L1 5.3V9l.7.5zm36 23.3l5.5-7.1-1.2-.9-6.6-5.1.7.5 8.2-10.7v-5l-10.7 14-7.1-5.5-12.9 16.6 7.1 5.4L1.1 59.9 1 64.2l22.1-27.4-.9-.7 8.1 6.1 5.5-7.1 35.4 26.6V58L37.7 32.8zm-8 5.5l-11.9-9 9.1-11.8 11.9 9-9.1 11.8z" fill="url(#c)"/></svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.8" y1="61.589" x2="36.8" y2="20.333"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.4 37.7h-2.9V32c0-6.4-5.2-11.7-11.7-11.7S25.1 25.6 25.1 32v5.7h-2.9c-1.1 0-2 .9-2 2v19.8c0 1.1.9 2 2 2h29.1c1.1 0 2-.9 2-2V39.8c.1-1.2-.8-2.1-1.9-2.1zM39.3 54.2c.2.7-.3 1.3-1 1.3h-3c-.7 0-1.2-.7-1-1.3l1-3.7c-1.1-.6-1.9-1.7-1.9-3.1 0-2 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5c0 1.4-.8 2.6-1.9 3.1l.8 3.7zm3.3-16.5H31V32c0-3.2 2.6-5.8 5.8-5.8s5.8 2.6 5.8 5.8v5.7z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_3_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M9 91.9v-20h14.9v3.4H13v4.4h10.1v3.4H13v5.5h11.2V92H9zm18.7 0v-20h3.9l8.2 13.4V71.8h3.8v20h-4.1l-8.1-13.1v13.1h-3.7zm33-7.4l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.8-2.8-.8c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .7-.7 1.3-1.8 1.6-3.3z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.8" y1="61.589" x2="36.8" y2="20.333"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.4 37.7h-2.9V32c0-6.4-5.2-11.7-11.7-11.7S25.1 25.6 25.1 32v5.7h-2.9c-1.1 0-2 .9-2 2v19.8c0 1.1.9 2 2 2h29.1c1.1 0 2-.9 2-2V39.8c.1-1.2-.8-2.1-1.9-2.1zM39.3 54.2c.2.7-.3 1.3-1 1.3h-3c-.7 0-1.2-.7-1-1.3l1-3.7c-1.1-.6-1.9-1.7-1.9-3.1 0-2 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5c0 1.4-.8 2.6-1.9 3.1l.8 3.7zm3.3-16.5H31V32c0-3.2 2.6-5.8 5.8-5.8s5.8 2.6 5.8 5.8v5.7z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M9 91.9v-20h14.9v3.4H13v4.4h10.1v3.4H13v5.5h11.2V92H9zm18.7 0v-20h3.9l8.2 13.4V71.8h3.8v20h-4.1l-8.1-13.1v13.1h-3.7zm33-7.4l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.8-2.8-.8c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .7-.7 1.3-1.8 1.6-3.3z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#f8b0b8"/><stop offset=".211" stop-color="#f6acb5"/><stop offset=".37" stop-color="#f2a3ad"/><stop offset=".512" stop-color="#ed95a1"/><stop offset=".645" stop-color="#e78292"/><stop offset=".77" stop-color="#e06980"/><stop offset=".889" stop-color="#d7486b"/><stop offset="1" stop-color="#ce0757"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#SVGID_1_)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d41c5c" stroke-width="2"/><path d="M10.4 91.1V71.2h15v3.4H14.5V79h10.1v3.3H14.5v5.4h11.3V91H10.4zm18.8 0V71.2h6.5c2.5 0 4.1.1 4.8.3 1.2.3 2.1.9 2.9 1.9s1.2 2.3 1.2 3.9c0 1.2-.2 2.2-.7 3.1-.5.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3h-2.7v7.5h-4zm4.1-16.5v5.6h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.5-.1-2.9-.1h-2.1zm13.7 10l4-.4c.2 1.3.7 2.3 1.5 2.9.7.6 1.7.9 3 .9s2.3-.3 3-.8c.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.3-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.9-2.4-1.9-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 4-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 2 2.5 2 4.4l-4.1.2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2 .5.9.8 1.9.8 3.2 0 1.1-.3 2.2-1 3.2-.6 1-1.6 1.7-2.7 2.2s-2.6.7-4.4.7c-2.6 0-4.5-.6-5.9-1.7-1.3-1-2.1-2.7-2.4-4.9z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="1729.689" y1="-415.956" x2="1753.864" y2="-415.956" gradientTransform="scale(-1 1) rotate(-35.88 1555.712 2555.727)"><stop offset="0" stop-color="#ee2868"/><stop offset="1" stop-color="#bc024f"/></linearGradient><path d="M22 62.3L17.4 59s7.7-15.2 4.7-20.8l16.3-12.6s6.2 1 9.3 6.5l-7 19.1C34.3 50.3 22 62.3 22 62.3zm11.1-19.8c1.3.9 3 .6 3.9-.6.9-1.3.6-3-.6-3.9-1.3-.9-3-.6-3.9.6-1 1.2-.7 3 .6 3.9zm0 0L19.8 60.6m39.3-34.4c-6.2-11.8-19.6-14-19.6-14l-6 8.2c13.4 2.2 19.6 14 19.6 14l6-8.2z" opacity=".73" fill="url(#SVGID_2_)"/><path d="M19.9 60.8l13.4-18.2" fill-opacity="0" stroke="#f8b6bb"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".265" stop-color="#fffaec"/><stop offset=".402" stop-color="#fef2e6"/><stop offset=".51" stop-color="#fce7dc"/><stop offset=".604" stop-color="#fad7cf"/><stop offset=".687" stop-color="#f6c3bf"/><stop offset=".763" stop-color="#f2abac"/><stop offset=".834" stop-color="#ee8f97"/><stop offset=".901" stop-color="#ea6f82"/><stop offset=".962" stop-color="#e5446d"/><stop offset="1" stop-color="#e30e60"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#SVGID_3_)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d41c5c" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#f8b0b8"/><stop offset=".211" stop-color="#f6acb5"/><stop offset=".37" stop-color="#f2a3ad"/><stop offset=".512" stop-color="#ed95a1"/><stop offset=".645" stop-color="#e78292"/><stop offset=".77" stop-color="#e06980"/><stop offset=".889" stop-color="#d7486b"/><stop offset="1" stop-color="#ce0757"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#a)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d41c5c" stroke-width="2"/><path d="M10.4 91.1V71.2h15v3.4H14.5V79h10.1v3.3H14.5v5.4h11.3V91H10.4zm18.8 0V71.2h6.5c2.5 0 4.1.1 4.8.3 1.2.3 2.1.9 2.9 1.9s1.2 2.3 1.2 3.9c0 1.2-.2 2.2-.7 3.1-.5.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3h-2.7v7.5h-4zm4.1-16.5v5.6h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.5 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.5-.1-2.9-.1h-2.1zm13.7 10l4-.4c.2 1.3.7 2.3 1.5 2.9.7.6 1.7.9 3 .9s2.3-.3 3-.8c.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.3-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.9-2.4-1.9-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 4-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 2 2.5 2 4.4l-4.1.2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2 .5.9.8 1.9.8 3.2 0 1.1-.3 2.2-1 3.2-.6 1-1.6 1.7-2.7 2.2s-2.6.7-4.4.7c-2.6 0-4.5-.6-5.9-1.7-1.3-1-2.1-2.7-2.4-4.9z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="1729.689" y1="-415.956" x2="1753.864" y2="-415.956" gradientTransform="scale(-1 1) rotate(-35.88 1555.712 2555.727)"><stop offset="0" stop-color="#ee2868"/><stop offset="1" stop-color="#bc024f"/></linearGradient><path d="M22 62.3L17.4 59s7.7-15.2 4.7-20.8l16.3-12.6s6.2 1 9.3 6.5l-7 19.1C34.3 50.3 22 62.3 22 62.3zm11.1-19.8c1.3.9 3 .6 3.9-.6.9-1.3.6-3-.6-3.9-1.3-.9-3-.6-3.9.6-1 1.2-.7 3 .6 3.9zm0 0L19.8 60.6m39.3-34.4c-6.2-11.8-19.6-14-19.6-14l-6 8.2c13.4 2.2 19.6 14 19.6 14l6-8.2z" opacity=".73" fill="url(#b)"/><path d="M19.9 60.8l13.4-18.2" fill-opacity="0" stroke="#f8b6bb"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".265" stop-color="#fffaec"/><stop offset=".402" stop-color="#fef2e6"/><stop offset=".51" stop-color="#fce7dc"/><stop offset=".604" stop-color="#fad7cf"/><stop offset=".687" stop-color="#f6c3bf"/><stop offset=".763" stop-color="#f2abac"/><stop offset=".834" stop-color="#ee8f97"/><stop offset=".901" stop-color="#ea6f82"/><stop offset=".962" stop-color="#e5446d"/><stop offset="1" stop-color="#e30e60"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#c)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d41c5c" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="path1228_1_" gradientUnits="userSpaceOnUse" x1="486.311" y1="644.112" x2="486.31" y2="742.085" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#742d2d"/><stop offset=".005" stop-color="#827100"/><stop offset="1" stop-color="#ffee91"/></linearGradient><path id="path1228" d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill="url(#path1228_1_)"/><path id="path1230" d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill-opacity="0" stroke="#827100" stroke-width="2"/><path d="M7.2 91.6V76h11.7v2.6h-8.5v3.5h7.9v2.6h-7.9V89h8.8v2.6h-12zm14.7 0V76H27c1.9 0 3.2.1 3.8.2.9.2 1.7.7 2.3 1.5s.9 1.8.9 3c0 1-.2 1.8-.5 2.4s-.8 1.2-1.3 1.5c-.5.4-1.1.6-1.7.7-.8.1-1.9.2-3.3.2h-2.1v5.9h-3.2zm3.2-13V83h1.7c1.3 0 2.1-.1 2.5-.2.4-.2.8-.4 1-.8.2-.3.4-.8.4-1.2 0-.6-.2-1-.5-1.4-.3-.4-.8-.6-1.3-.7-.4-.1-1.1-.1-2.3-.1h-1.5zM36.6 76h3.2v8.4c0 1.3 0 2.2.1 2.6.1.6.5 1.1 1 1.5.5.4 1.2.6 2.1.6.9 0 1.6-.2 2-.5.5-.4.7-.8.8-1.3.1-.5.1-1.4.1-2.6V76h3.2v8.2c0 1.9-.1 3.2-.3 4-.2.8-.5 1.4-1 2-.5.5-1.1 1-1.9 1.3s-1.8.5-3 .5c-1.5 0-2.7-.2-3.4-.5-.8-.3-1.4-.8-1.8-1.3-.5-.5-.8-1.1-.9-1.7-.2-.9-.3-2.2-.3-4V76zm16 0h6.3c1.2 0 2.2.1 2.8.2.6.1 1.2.3 1.6.6s.9.8 1.2 1.3c.3.5.5 1.2.5 1.8 0 .7-.2 1.4-.6 2s-.9 1.1-1.6 1.4c1 .3 1.7.7 2.2 1.4s.8 1.4.8 2.3c0 .7-.2 1.4-.5 2.1-.3.7-.8 1.2-1.4 1.6-.6.4-1.3.6-2.1.7-.5.1-1.8.1-3.8.1h-5.4V76zm3.2 2.6v3.6h2.1c1.2 0 2 0 2.3-.1.5-.1 1-.2 1.3-.6s.5-.7.5-1.2-.1-.9-.4-1.2c-.3-.3-.7-.5-1.2-.5-.3 0-1.2-.1-2.7-.1h-1.9zm0 6.2V89h3c1.1 0 1.9 0 2.2-.1.5-.1.9-.3 1.2-.6.3-.3.4-.8.4-1.3s-.1-.9-.3-1.2c-.2-.3-.6-.6-1-.7-.4-.1-1.4-.2-2.8-.2h-2.7z" fill="#fefefe"/><linearGradient id="path1236_1_" gradientUnits="userSpaceOnUse" x1="305.171" y1="859.444" x2="305.171" y2="814.684" gradientTransform="scale(1 -1) rotate(-15.79 -2993.474 1367.872)"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path id="path1236" d="M62.7 34.5c-.3-.7-.7-1.2-1.3-1.7-.1.5-.3 1.1-.6 1.6L44.4 59.6c-.6.9-2 1.2-3 .9l-26.1-7.3c-1.6-.4-3.4-1.3-3.5-3.1-.1-.7 0-.9.4-1.2.4-.3.8-.2 1.2-.1L38 55.6c3.6 1 4.6.3 7.2-3.7l15-23.1c.8-1.2 1-2.6.5-3.8-.4-1.2-1.4-2.1-2.8-2.5l-21.5-6c-.5-.1-1-.1-1.5-.2l.1-.1c-3.3-2-4.6 1.8-6.3 3.2-.6.5-1.5.9-1.7 1.4-.2.5-.1 1-.3 1.5-.6 1.4-2.5 3.8-3.4 4.5-.6.4-1.3.5-1.7 1.1-.3.4-.2 1.1-.4 1.7-.5 1.3-2.2 3.5-3.4 4.6-.4.4-1.1.7-1.4 1.2-.3.4-.2 1.1-.5 1.6-.7 1.4-2.3 3.4-3.6 4.5-.7.6-1.4.9-1.7 1.6-.2.3 0 .8-.2 1.2-.3.7-.6 1.2-.8 1.7-.7 1-1.1 2.2-1 3.6.2 3.2 2.7 6.3 5.5 7.1L40.3 64c2.4.7 5.5-.5 6.8-2.6l15-23.1c.8-1.3 1-2.6.6-3.8zm-30.2-8.3l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.2-.7-.7-.4-1.1zm-4.4 6.4l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.1-.7-.6-.4-1.1z" fill="url(#path1236_1_)"/><linearGradient id="path1238_1_" gradientUnits="userSpaceOnUse" x1="495.437" y1="715.271" x2="508.982" y2="728.818" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#feea86"/><stop offset="1" stop-color="#867200"/></linearGradient><path id="path1238" d="M45.3 1l27.1 26.7H45.3V1z" fill="url(#path1238_1_)"/><path id="path1240" d="M45.3 1l27.1 26.7H45.3V1z" fill-opacity="0" stroke="#827100" stroke-width="2" stroke-linejoin="round"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="486.311" y1="644.112" x2="486.31" y2="742.085" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#742d2d"/><stop offset=".005" stop-color="#827100"/><stop offset="1" stop-color="#ffee91"/></linearGradient><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill="url(#a)"/><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill-opacity="0" stroke="#827100" stroke-width="2"/><path d="M7.2 91.6V76h11.7v2.6h-8.5v3.5h7.9v2.6h-7.9V89h8.8v2.6h-12zm14.7 0V76H27c1.9 0 3.2.1 3.8.2.9.2 1.7.7 2.3 1.5s.9 1.8.9 3c0 1-.2 1.8-.5 2.4s-.8 1.2-1.3 1.5c-.5.4-1.1.6-1.7.7-.8.1-1.9.2-3.3.2h-2.1v5.9h-3.2zm3.2-13V83h1.7c1.3 0 2.1-.1 2.5-.2.4-.2.8-.4 1-.8.2-.3.4-.8.4-1.2 0-.6-.2-1-.5-1.4-.3-.4-.8-.6-1.3-.7-.4-.1-1.1-.1-2.3-.1h-1.5zM36.6 76h3.2v8.4c0 1.3 0 2.2.1 2.6.1.6.5 1.1 1 1.5.5.4 1.2.6 2.1.6.9 0 1.6-.2 2-.5.5-.4.7-.8.8-1.3.1-.5.1-1.4.1-2.6V76h3.2v8.2c0 1.9-.1 3.2-.3 4-.2.8-.5 1.4-1 2-.5.5-1.1 1-1.9 1.3s-1.8.5-3 .5c-1.5 0-2.7-.2-3.4-.5-.8-.3-1.4-.8-1.8-1.3-.5-.5-.8-1.1-.9-1.7-.2-.9-.3-2.2-.3-4V76zm16 0h6.3c1.2 0 2.2.1 2.8.2.6.1 1.2.3 1.6.6s.9.8 1.2 1.3c.3.5.5 1.2.5 1.8 0 .7-.2 1.4-.6 2s-.9 1.1-1.6 1.4c1 .3 1.7.7 2.2 1.4s.8 1.4.8 2.3c0 .7-.2 1.4-.5 2.1-.3.7-.8 1.2-1.4 1.6-.6.4-1.3.6-2.1.7-.5.1-1.8.1-3.8.1h-5.4V76zm3.2 2.6v3.6h2.1c1.2 0 2 0 2.3-.1.5-.1 1-.2 1.3-.6s.5-.7.5-1.2-.1-.9-.4-1.2c-.3-.3-.7-.5-1.2-.5-.3 0-1.2-.1-2.7-.1h-1.9zm0 6.2V89h3c1.1 0 1.9 0 2.2-.1.5-.1.9-.3 1.2-.6.3-.3.4-.8.4-1.3s-.1-.9-.3-1.2c-.2-.3-.6-.6-1-.7-.4-.1-1.4-.2-2.8-.2h-2.7z" fill="#fefefe"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="305.171" y1="859.444" x2="305.171" y2="814.684" gradientTransform="scale(1 -1) rotate(-15.79 -2993.474 1367.872)"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path d="M62.7 34.5c-.3-.7-.7-1.2-1.3-1.7-.1.5-.3 1.1-.6 1.6L44.4 59.6c-.6.9-2 1.2-3 .9l-26.1-7.3c-1.6-.4-3.4-1.3-3.5-3.1-.1-.7 0-.9.4-1.2.4-.3.8-.2 1.2-.1L38 55.6c3.6 1 4.6.3 7.2-3.7l15-23.1c.8-1.2 1-2.6.5-3.8-.4-1.2-1.4-2.1-2.8-2.5l-21.5-6c-.5-.1-1-.1-1.5-.2l.1-.1c-3.3-2-4.6 1.8-6.3 3.2-.6.5-1.5.9-1.7 1.4-.2.5-.1 1-.3 1.5-.6 1.4-2.5 3.8-3.4 4.5-.6.4-1.3.5-1.7 1.1-.3.4-.2 1.1-.4 1.7-.5 1.3-2.2 3.5-3.4 4.6-.4.4-1.1.7-1.4 1.2-.3.4-.2 1.1-.5 1.6-.7 1.4-2.3 3.4-3.6 4.5-.7.6-1.4.9-1.7 1.6-.2.3 0 .8-.2 1.2-.3.7-.6 1.2-.8 1.7-.7 1-1.1 2.2-1 3.6.2 3.2 2.7 6.3 5.5 7.1L40.3 64c2.4.7 5.5-.5 6.8-2.6l15-23.1c.8-1.3 1-2.6.6-3.8zm-30.2-8.3l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.2-.7-.7-.4-1.1zm-4.4 6.4l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.1-.7-.6-.4-1.1z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="495.437" y1="715.271" x2="508.982" y2="728.818" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#feea86"/><stop offset="1" stop-color="#867200"/></linearGradient><path d="M45.3 1l27.1 26.7H45.3V1z" fill="url(#c)"/><path d="M45.3 1l27.1 26.7H45.3V1z" fill-opacity="0" stroke="#827100" stroke-width="2" stroke-linejoin="round"/></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M9.8 91.1V71.2h14.8v3.4H13.9V79h10v3.3h-10v5.4H25V91H9.8zm16.6 0l6.8-10.4-6.2-9.5h4.7l4 6.4 3.9-6.4h4.7l-6.2 9.6L45 91.1h-4.9l-4.4-6.9-4.4 6.9h-4.9zm20.7 0V71.2h14.8v3.4H51.1V79h10v3.3h-10v5.4h11.2V91H47.1z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="34.962" y1="37.847" x2="34.962" y2="88.47" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M55.1 36.3c-.1-1-.3-1.9-.6-2.9l4.7-2.7-5-8.6-4.7 2.7c-1.3-1.4-2.9-2.6-4.6-3.6l1.4-5.1-9.7-2.7-1.4 5.1c-1 0-1.9 0-2.9.1s-1.9.3-2.9.6l-2.7-4.7-8.7 4.9 2.7 4.7c-1.4 1.4-2.6 2.9-3.6 4.6l-5.2-1.4L9.4 37l5.2 1.4c0 1 0 1.9.2 2.9.1 1 .3 1.9.6 2.9l-4.7 2.7 5 8.6 4.7-2.7c1.3 1.4 2.9 2.6 4.6 3.6l-1.4 5.1 9.7 2.7 1.4-5.1c1 0 1.9 0 2.9-.1s1.9-.3 2.9-.6l2.7 4.7 8.7-4.9-2.7-4.7c1.4-1.3 2.6-2.9 3.6-4.6l5.2 1.4 2.7-9.6-5.2-1.4c-.2-1-.2-2-.4-3zM36.1 47c-4.5.6-8.7-2.7-9.3-7.1-.6-4.5 2.7-8.6 7.2-9.2 4.5-.6 8.7 2.7 9.3 7.1.5 4.5-2.7 8.6-7.2 9.2z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_3_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M9.8 91.1V71.2h14.8v3.4H13.9V79h10v3.3h-10v5.4H25V91H9.8zm16.6 0l6.8-10.4-6.2-9.5h4.7l4 6.4 3.9-6.4h4.7l-6.2 9.6L45 91.1h-4.9l-4.4-6.9-4.4 6.9h-4.9zm20.7 0V71.2h14.8v3.4H51.1V79h10v3.3h-10v5.4h11.2V91H47.1z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="34.962" y1="37.847" x2="34.962" y2="88.47" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M55.1 36.3c-.1-1-.3-1.9-.6-2.9l4.7-2.7-5-8.6-4.7 2.7c-1.3-1.4-2.9-2.6-4.6-3.6l1.4-5.1-9.7-2.7-1.4 5.1c-1 0-1.9 0-2.9.1s-1.9.3-2.9.6l-2.7-4.7-8.7 4.9 2.7 4.7c-1.4 1.4-2.6 2.9-3.6 4.6l-5.2-1.4L9.4 37l5.2 1.4c0 1 0 1.9.2 2.9.1 1 .3 1.9.6 2.9l-4.7 2.7 5 8.6 4.7-2.7c1.3 1.4 2.9 2.6 4.6 3.6l-1.4 5.1 9.7 2.7 1.4-5.1c1 0 1.9 0 2.9-.1s1.9-.3 2.9-.6l2.7 4.7 8.7-4.9-2.7-4.7c1.4-1.3 2.6-2.9 3.6-4.6l5.2 1.4 2.7-9.6-5.2-1.4c-.2-1-.2-2-.4-3zM36.1 47c-4.5.6-8.7-2.7-9.3-7.1-.6-4.5 2.7-8.6 7.2-9.2 4.5-.6 8.7 2.7 9.3 7.1.5 4.5-2.7 8.6-7.2 9.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#c)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".531" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#SVGID_1_)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d10407" stroke-width="2"/><path d="M12.6 91.1V71.2h13.8v3.4h-9.8v4.7H25v3.4h-8.4v8.4h-4zm23.9 0v-4h-8.3v-3.3L37 71.1h3.2v12.6h2.5V87h-2.5v4h-3.7zm0-7.4V77l-4.6 6.8h4.6zm14.1 7.4l-7.2-19.8h4.4L52.9 86l4.9-14.7h4.3L55 91.1h-4.4z" fill="#fff"/><g transform="translate(0 -952.362)"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.625" y1="974.612" x2="36.625" y2="1015.362"><stop offset=".118" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M36.6 974.6c-11.3 0-20.4 9.1-20.4 20.4 0 11.3 9.1 20.4 20.4 20.4S57 1006.2 57 995c0-11.3-9.1-20.4-20.4-20.4zm3.9 4.8l-3.3 12.3h8.6l-13 18.8 3.3-12.3h-8.6l13-18.8z" fill="url(#SVGID_2_)"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#SVGID_3_)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d10407" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".531" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#a)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d10407" stroke-width="2"/><path d="M12.6 91.1V71.2h13.8v3.4h-9.8v4.7H25v3.4h-8.4v8.4h-4zm23.9 0v-4h-8.3v-3.3L37 71.1h3.2v12.6h2.5V87h-2.5v4h-3.7zm0-7.4V77l-4.6 6.8h4.6zm14.1 7.4l-7.2-19.8h4.4L52.9 86l4.9-14.7h4.3L55 91.1h-4.4z" fill="#fff"/><g transform="translate(0 -952.362)"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.625" y1="974.612" x2="36.625" y2="1015.362"><stop offset=".118" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M36.6 974.6c-11.3 0-20.4 9.1-20.4 20.4 0 11.3 9.1 20.4 20.4 20.4S57 1006.2 57 995c0-11.3-9.1-20.4-20.4-20.4zm3.9 4.8l-3.3 12.3h8.6l-13 18.8 3.3-12.3h-8.6l13-18.8z" fill="url(#b)"/></g><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#c)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d10407" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#f8b0b8"/><stop offset=".211" stop-color="#f6acb5"/><stop offset=".37" stop-color="#f2a3ad"/><stop offset=".512" stop-color="#ed95a1"/><stop offset=".645" stop-color="#e78292"/><stop offset=".77" stop-color="#e06980"/><stop offset=".889" stop-color="#d7486b"/><stop offset="1" stop-color="#ce0757"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#SVGID_1_)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d41c5c" stroke-width="2"/><path d="M11 91.1V71.2h13.8v3.4H15v4.7h8.4v3.4H15v8.4h-4zm33.9 0h-4.4l-1.8-4.5h-8.1l-1.7 4.5h-4.3l7.9-19.8h4.3l8.1 19.8zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm7.6 7.9l6.9-10.4-6.2-9.5h4.8l4 6.4 4-6.4h4.7l-6.3 9.6L63.8 91h-4.9l-4.5-6.9-4.5 6.9H45z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".265" stop-color="#fffaec"/><stop offset=".402" stop-color="#fef2e6"/><stop offset=".51" stop-color="#fce7dc"/><stop offset=".604" stop-color="#fad7cf"/><stop offset=".687" stop-color="#f6c3bf"/><stop offset=".763" stop-color="#f2abac"/><stop offset=".834" stop-color="#ee8f97"/><stop offset=".901" stop-color="#ea6f82"/><stop offset=".962" stop-color="#e5446d"/><stop offset="1" stop-color="#e30e60"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#SVGID_2_)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d41c5c" stroke-width="2" stroke-linejoin="bevel"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="57.718" y1="58.463" x2="20.542" y2="31.568" gradientTransform="matrix(-1 0 0 1 73.572 0)"><stop offset="0" stop-color="#ee2868"/><stop offset="1" stop-color="#bc024f"/></linearGradient><path d="M41.7 35.1h-2.4c-.3 0-.5-.2-.5-.5v-11H28.5v4.5c0 .9-.7 1.6-1.6 1.6h-4.5v4.9c0 .3-.2.5-.5.5h-2.4c-.3 0-.5-.2-.5-.5v-7.3l7.2-7.2H40c1.2 0 2.2 1 2.3 2.2v12.3c-.1.3-.3.5-.6.5zm.5 26c0 .5-.4.9-.9.9H20.6c-2.4 0-4.3-1.9-4.3-4.3V39.4c0-.5.4-.9.9-.9h24.2c.5 0 .9.4.9.9v21.7h-.1zm-17-16.9c0-1-.8-1.8-1.8-1.8s-1.8.8-1.8 1.8.8 1.8 1.8 1.8 1.8-.8 1.8-1.8zm0 6c0-1-.8-1.8-1.8-1.8s-1.8.8-1.8 1.8.8 1.8 1.8 1.8c1 .1 1.8-.7 1.8-1.8 0 .1 0 0 0 0zm4.2-7.8c-1 0-1.8.8-1.8 1.8s.8 1.8 1.8 1.8 1.8-.8 1.8-1.8-.8-1.8-1.8-1.8zm1.8 7.8c0-1-.8-1.8-1.8-1.8s-1.8.8-1.8 1.8.8 1.8 1.8 1.8c1 .1 1.8-.7 1.8-1.8zm0 6.1c0-1-.8-1.8-1.8-1.8s-1.8.8-1.8 1.8.8 1.8 1.8 1.8 1.8-.8 1.8-1.8zm4.2-13.9c-1 0-1.8.8-1.8 1.8s.8 1.8 1.8 1.8 1.8-.8 1.8-1.8-.8-1.8-1.8-1.8zm1.8 7.8c0-1-.8-1.8-1.8-1.8s-1.8.8-1.8 1.8.8 1.8 1.8 1.8c1 .1 1.9-.7 1.8-1.8zm.1 6.1c0-1-.8-1.8-1.8-1.8s-1.8.8-1.8 1.8.8 1.8 1.8 1.8c.9 0 1.7-.8 1.8-1.8zm19.4 1.3V38.4c0-3-2.5-5.5-5.5-5.5h-4.6c-.5 0-.9.4-.9.9v27.3c0 .5.4.9.9.9h5.8c2.4 0 4.3-2 4.3-4.4z" fill="url(#SVGID_3_)"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#f8b0b8"/><stop offset=".211" stop-color="#f6acb5"/><stop offset=".37" stop-color="#f2a3ad"/><stop offset=".512" stop-color="#ed95a1"/><stop offset=".645" stop-color="#e78292"/><stop offset=".77" stop-color="#e06980"/><stop offset=".889" stop-color="#d7486b"/><stop offset="1" stop-color="#ce0757"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#a)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d41c5c" stroke-width="2"/><path d="M11 91.1V71.2h13.8v3.4H15v4.7h8.4v3.4H15v8.4h-4zm33.9 0h-4.4l-1.8-4.5h-8.1l-1.7 4.5h-4.3l7.9-19.8h4.3l8.1 19.8zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5zm7.6 7.9l6.9-10.4-6.2-9.5h4.8l4 6.4 4-6.4h4.7l-6.3 9.6L63.8 91h-4.9l-4.5-6.9-4.5 6.9H45z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".265" stop-color="#fffaec"/><stop offset=".402" stop-color="#fef2e6"/><stop offset=".51" stop-color="#fce7dc"/><stop offset=".604" stop-color="#fad7cf"/><stop offset=".687" stop-color="#f6c3bf"/><stop offset=".763" stop-color="#f2abac"/><stop offset=".834" stop-color="#ee8f97"/><stop offset=".901" stop-color="#ea6f82"/><stop offset=".962" stop-color="#e5446d"/><stop offset="1" stop-color="#e30e60"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#b)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d41c5c" stroke-width="2" stroke-linejoin="bevel"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="57.718" y1="58.463" x2="20.542" y2="31.568" gradientTransform="matrix(-1 0 0 1 73.572 0)"><stop offset="0" stop-color="#ee2868"/><stop offset="1" stop-color="#bc024f"/></linearGradient><path d="M41.7 35.1h-2.4c-.3 0-.5-.2-.5-.5v-11H28.5v4.5c0 .9-.7 1.6-1.6 1.6h-4.5v4.9c0 .3-.2.5-.5.5h-2.4c-.3 0-.5-.2-.5-.5v-7.3l7.2-7.2H40c1.2 0 2.2 1 2.3 2.2v12.3c-.1.3-.3.5-.6.5zm.5 26c0 .5-.4.9-.9.9H20.6c-2.4 0-4.3-1.9-4.3-4.3V39.4c0-.5.4-.9.9-.9h24.2c.5 0 .9.4.9.9v21.7h-.1zm-17-16.9c0-1-.8-1.8-1.8-1.8s-1.8.8-1.8 1.8.8 1.8 1.8 1.8 1.8-.8 1.8-1.8zm0 6c0-1-.8-1.8-1.8-1.8s-1.8.8-1.8 1.8.8 1.8 1.8 1.8c1 .1 1.8-.7 1.8-1.8 0 .1 0 0 0 0zm4.2-7.8c-1 0-1.8.8-1.8 1.8s.8 1.8 1.8 1.8 1.8-.8 1.8-1.8-.8-1.8-1.8-1.8zm1.8 7.8c0-1-.8-1.8-1.8-1.8s-1.8.8-1.8 1.8.8 1.8 1.8 1.8c1 .1 1.8-.7 1.8-1.8zm0 6.1c0-1-.8-1.8-1.8-1.8s-1.8.8-1.8 1.8.8 1.8 1.8 1.8 1.8-.8 1.8-1.8zm4.2-13.9c-1 0-1.8.8-1.8 1.8s.8 1.8 1.8 1.8 1.8-.8 1.8-1.8-.8-1.8-1.8-1.8zm1.8 7.8c0-1-.8-1.8-1.8-1.8s-1.8.8-1.8 1.8.8 1.8 1.8 1.8c1 .1 1.9-.7 1.8-1.8zm.1 6.1c0-1-.8-1.8-1.8-1.8s-1.8.8-1.8 1.8.8 1.8 1.8 1.8c.9 0 1.7-.8 1.8-1.8zm19.4 1.3V38.4c0-3-2.5-5.5-5.5-5.5h-4.6c-.5 0-.9.4-.9.9v27.3c0 .5.4.9.9.9h5.8c2.4 0 4.3-2 4.3-4.4z" fill="url(#c)"/></svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="path1228_1_" gradientUnits="userSpaceOnUse" x1="486.311" y1="644.112" x2="486.31" y2="742.085" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#742d2d"/><stop offset=".005" stop-color="#827100"/><stop offset="1" stop-color="#ffee91"/></linearGradient><path id="path1228" d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill="url(#path1228_1_)"/><path id="path1230" d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill-opacity="0" stroke="#827100" stroke-width="2"/><path d="M17 91.6V76h10.8v2.6h-7.6v3.7h6.6V85h-6.6v6.6H17zM30.5 76h6.3c1.3 0 2.2.1 2.8.2.6.1 1.2.3 1.6.6.5.3.9.8 1.2 1.3.3.5.5 1.2.5 1.8 0 .7-.2 1.4-.6 2-.4.6-.9 1.1-1.6 1.4 1 .3 1.7.7 2.2 1.4.5.7.8 1.4.8 2.3 0 .7-.2 1.4-.5 2.1-.3.7-.8 1.2-1.4 1.6-.6.4-1.3.6-2.1.7-.5.1-1.8.1-3.8.1h-5.4V76zm3.2 2.6v3.6h2.1c1.2 0 2 0 2.3-.1.5-.1 1-.2 1.3-.6s.5-.7.5-1.2-.1-.9-.4-1.2c-.3-.3-.7-.5-1.2-.5-.3 0-1.2-.1-2.7-.1h-1.9zm0 6.2V89h3c1.1 0 1.9 0 2.2-.1.5-.1.9-.3 1.2-.6.3-.3.4-.8.4-1.3s-.1-.9-.3-1.2-.6-.6-1-.7c-.4-.1-1.4-.2-2.8-.2h-2.7zm22.3 4v2.8H45.4c.1-1 .5-2 1-3 .6-.9 1.7-2.2 3.4-3.7 1.4-1.3 2.2-2.1 2.5-2.6.4-.6.6-1.2.6-1.8 0-.7-.2-1.2-.5-1.5-.4-.4-.9-.5-1.5-.5s-1.1.2-1.5.6c-.4.4-.6 1-.6 1.9l-3-.3c.2-1.6.7-2.8 1.7-3.5s2.1-1.1 3.6-1.1c1.6 0 2.8.4 3.7 1.2.7.7 1.2 1.7 1.2 3 0 .7-.1 1.4-.4 2-.3.6-.7 1.3-1.2 2-.4.5-1 1.1-2 2-1 .9-1.6 1.4-1.8 1.7-.3.3-.5.6-.6.8h6z" fill="#fefefe"/><linearGradient id="path1236_1_" gradientUnits="userSpaceOnUse" x1="305.171" y1="859.444" x2="305.171" y2="814.684" gradientTransform="scale(1 -1) rotate(-15.79 -2993.474 1367.872)"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path id="path1236" d="M62.7 34.5c-.3-.7-.7-1.2-1.3-1.7-.1.5-.3 1.1-.6 1.6L44.4 59.6c-.6.9-2 1.2-3 .9l-26.1-7.3c-1.6-.4-3.4-1.3-3.5-3.1-.1-.7 0-.9.4-1.2.4-.3.8-.2 1.2-.1L38 55.6c3.6 1 4.6.3 7.2-3.7l15-23.1c.8-1.2 1-2.6.5-3.8-.4-1.2-1.4-2.1-2.8-2.5l-21.5-6c-.5-.1-1-.1-1.5-.2l.1-.1c-3.3-2-4.6 1.8-6.3 3.2-.6.5-1.5.9-1.7 1.4-.2.5-.1 1-.3 1.5-.6 1.4-2.5 3.8-3.4 4.5-.6.4-1.3.5-1.7 1.1-.3.4-.2 1.1-.4 1.7-.5 1.3-2.2 3.5-3.4 4.6-.4.4-1.1.7-1.4 1.2-.3.4-.2 1.1-.5 1.6-.7 1.4-2.3 3.4-3.6 4.5-.7.6-1.4.9-1.7 1.6-.2.3 0 .8-.2 1.2-.3.7-.6 1.2-.8 1.7-.7 1-1.1 2.2-1 3.6.2 3.2 2.7 6.3 5.5 7.1L40.3 64c2.4.7 5.5-.5 6.8-2.6l15-23.1c.8-1.3 1-2.6.6-3.8zm-30.2-8.3l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.2-.7-.7-.4-1.1zm-4.4 6.4l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.1-.7-.6-.4-1.1z" fill="url(#path1236_1_)"/><linearGradient id="path1238_1_" gradientUnits="userSpaceOnUse" x1="495.437" y1="715.271" x2="508.982" y2="728.818" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#feea86"/><stop offset="1" stop-color="#867200"/></linearGradient><path id="path1238" d="M45.3 1l27.1 26.7H45.3V1z" fill="url(#path1238_1_)"/><path id="path1240" d="M45.3 1l27.1 26.7H45.3V1z" fill-opacity="0" stroke="#827100" stroke-width="2" stroke-linejoin="round"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="486.311" y1="644.112" x2="486.31" y2="742.085" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#742d2d"/><stop offset=".005" stop-color="#827100"/><stop offset="1" stop-color="#ffee91"/></linearGradient><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill="url(#a)"/><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill-opacity="0" stroke="#827100" stroke-width="2"/><path d="M17 91.6V76h10.8v2.6h-7.6v3.7h6.6V85h-6.6v6.6H17zM30.5 76h6.3c1.3 0 2.2.1 2.8.2.6.1 1.2.3 1.6.6.5.3.9.8 1.2 1.3.3.5.5 1.2.5 1.8 0 .7-.2 1.4-.6 2-.4.6-.9 1.1-1.6 1.4 1 .3 1.7.7 2.2 1.4.5.7.8 1.4.8 2.3 0 .7-.2 1.4-.5 2.1-.3.7-.8 1.2-1.4 1.6-.6.4-1.3.6-2.1.7-.5.1-1.8.1-3.8.1h-5.4V76zm3.2 2.6v3.6h2.1c1.2 0 2 0 2.3-.1.5-.1 1-.2 1.3-.6s.5-.7.5-1.2-.1-.9-.4-1.2c-.3-.3-.7-.5-1.2-.5-.3 0-1.2-.1-2.7-.1h-1.9zm0 6.2V89h3c1.1 0 1.9 0 2.2-.1.5-.1.9-.3 1.2-.6.3-.3.4-.8.4-1.3s-.1-.9-.3-1.2-.6-.6-1-.7c-.4-.1-1.4-.2-2.8-.2h-2.7zm22.3 4v2.8H45.4c.1-1 .5-2 1-3 .6-.9 1.7-2.2 3.4-3.7 1.4-1.3 2.2-2.1 2.5-2.6.4-.6.6-1.2.6-1.8 0-.7-.2-1.2-.5-1.5-.4-.4-.9-.5-1.5-.5s-1.1.2-1.5.6c-.4.4-.6 1-.6 1.9l-3-.3c.2-1.6.7-2.8 1.7-3.5s2.1-1.1 3.6-1.1c1.6 0 2.8.4 3.7 1.2.7.7 1.2 1.7 1.2 3 0 .7-.1 1.4-.4 2-.3.6-.7 1.3-1.2 2-.4.5-1 1.1-2 2-1 .9-1.6 1.4-1.8 1.7-.3.3-.5.6-.6.8h6z" fill="#fefefe"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="305.171" y1="859.444" x2="305.171" y2="814.684" gradientTransform="scale(1 -1) rotate(-15.79 -2993.474 1367.872)"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path d="M62.7 34.5c-.3-.7-.7-1.2-1.3-1.7-.1.5-.3 1.1-.6 1.6L44.4 59.6c-.6.9-2 1.2-3 .9l-26.1-7.3c-1.6-.4-3.4-1.3-3.5-3.1-.1-.7 0-.9.4-1.2.4-.3.8-.2 1.2-.1L38 55.6c3.6 1 4.6.3 7.2-3.7l15-23.1c.8-1.2 1-2.6.5-3.8-.4-1.2-1.4-2.1-2.8-2.5l-21.5-6c-.5-.1-1-.1-1.5-.2l.1-.1c-3.3-2-4.6 1.8-6.3 3.2-.6.5-1.5.9-1.7 1.4-.2.5-.1 1-.3 1.5-.6 1.4-2.5 3.8-3.4 4.5-.6.4-1.3.5-1.7 1.1-.3.4-.2 1.1-.4 1.7-.5 1.3-2.2 3.5-3.4 4.6-.4.4-1.1.7-1.4 1.2-.3.4-.2 1.1-.5 1.6-.7 1.4-2.3 3.4-3.6 4.5-.7.6-1.4.9-1.7 1.6-.2.3 0 .8-.2 1.2-.3.7-.6 1.2-.8 1.7-.7 1-1.1 2.2-1 3.6.2 3.2 2.7 6.3 5.5 7.1L40.3 64c2.4.7 5.5-.5 6.8-2.6l15-23.1c.8-1.3 1-2.6.6-3.8zm-30.2-8.3l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.2-.7-.7-.4-1.1zm-4.4 6.4l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.1-.7-.6-.4-1.1z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="495.437" y1="715.271" x2="508.982" y2="728.818" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#feea86"/><stop offset="1" stop-color="#867200"/></linearGradient><path d="M45.3 1l27.1 26.7H45.3V1z" fill="url(#c)"/><path d="M45.3 1l27.1 26.7H45.3V1z" fill-opacity="0" stroke="#827100" stroke-width="2" stroke-linejoin="round"/></svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".531" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#SVGID_1_)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d10407" stroke-width="2"/><path d="M11.6 91.1V71.2h13.8v3.4h-9.8v4.7H24v3.4h-8.4v8.4h-4zm17.3 0V71.4H33v16.3h10.1V91H28.9zm35.3 0h-4.4L58 86.6h-8.1l-1.7 4.5h-4.3l7.9-19.8h4.3l8.1 19.8zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5z" fill="#fff"/><g transform="translate(0 -952.362)"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.625" y1="974.612" x2="36.625" y2="1015.362"><stop offset=".118" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M36.6 974.6c-11.3 0-20.4 9.1-20.4 20.4 0 11.3 9.1 20.4 20.4 20.4S57 1006.2 57 995c0-11.3-9.1-20.4-20.4-20.4zm3.9 4.8l-3.3 12.3h8.6l-13 18.8 3.3-12.3h-8.6l13-18.8z" fill="url(#SVGID_2_)"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#SVGID_3_)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d10407" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".531" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#a)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d10407" stroke-width="2"/><path d="M11.6 91.1V71.2h13.8v3.4h-9.8v4.7H24v3.4h-8.4v8.4h-4zm17.3 0V71.4H33v16.3h10.1V91H28.9zm35.3 0h-4.4L58 86.6h-8.1l-1.7 4.5h-4.3l7.9-19.8h4.3l8.1 19.8zm-7.5-7.9l-2.8-7.4-2.7 7.4h5.5z" fill="#fff"/><g transform="translate(0 -952.362)"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.625" y1="974.612" x2="36.625" y2="1015.362"><stop offset=".118" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M36.6 974.6c-11.3 0-20.4 9.1-20.4 20.4 0 11.3 9.1 20.4 20.4 20.4S57 1006.2 57 995c0-11.3-9.1-20.4-20.4-20.4zm3.9 4.8l-3.3 12.3h8.6l-13 18.8 3.3-12.3h-8.6l13-18.8z" fill="url(#b)"/></g><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#c)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d10407" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".531" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#SVGID_1_)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d10407" stroke-width="2"/><path d="M12.9 91.1V71.2h13.8v3.4h-9.8v4.7h8.4v3.4h-8.4v8.4h-4zm17.3 0V71.4h4.1v16.3h10.1V91H30.2zm20.1 0l-7.2-19.8h4.4L52.6 86l4.9-14.7h4.3l-7.2 19.8h-4.3z" fill="#fff"/><g transform="translate(0 -952.362)"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.625" y1="974.612" x2="36.625" y2="1015.362"><stop offset=".118" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M36.6 974.6c-11.3 0-20.4 9.1-20.4 20.4 0 11.3 9.1 20.4 20.4 20.4S57 1006.2 57 995c0-11.3-9.1-20.4-20.4-20.4zm3.9 4.8l-3.3 12.3h8.6l-13 18.8 3.3-12.3h-8.6l13-18.8z" fill="url(#SVGID_2_)"/></g><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#SVGID_3_)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d10407" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="101" x2="36" y2="3.004" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".531" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill="url(#a)"/><path d="M45.1 1l27.2 26.7V99H-.2V1h45.3z" fill-opacity="0" stroke="#d10407" stroke-width="2"/><path d="M12.9 91.1V71.2h13.8v3.4h-9.8v4.7h8.4v3.4h-8.4v8.4h-4zm17.3 0V71.4h4.1v16.3h10.1V91H30.2zm20.1 0l-7.2-19.8h4.4L52.6 86l4.9-14.7h4.3l-7.2 19.8h-4.3z" fill="#fff"/><g transform="translate(0 -952.362)"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.625" y1="974.612" x2="36.625" y2="1015.362"><stop offset=".118" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M36.6 974.6c-11.3 0-20.4 9.1-20.4 20.4 0 11.3 9.1 20.4 20.4 20.4S57 1006.2 57 995c0-11.3-9.1-20.4-20.4-20.4zm3.9 4.8l-3.3 12.3h8.6l-13 18.8 3.3-12.3h-8.6l13-18.8z" fill="url(#b)"/></g><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.178" y1="74.159" x2="58.772" y2="87.753" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fffeee"/><stop offset=".637" stop-color="#f9b1b2"/><stop offset="1" stop-color="#d10407"/></linearGradient><path d="M45.1 1l27.2 26.7H45.1V1z" fill="url(#c)"/><path d="M45.1 1l27.2 26.7H45.1V1z" fill-opacity="0" stroke="#d10407" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.014" x2="36.2" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill="url(#SVGID_1_)"/><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M15.7 82.8v-3.3h8.8v7.9c-.9.8-2.1 1.5-3.7 2.1-1.6.6-3.2.9-4.9.9-2.1 0-3.9-.4-5.5-1.3S7.7 87 6.9 85.4 5.7 82 5.7 80.1c0-2.1.4-3.9 1.3-5.5s2.2-2.8 3.9-3.7c1.3-.7 2.9-1 4.8-1 2.5 0 4.4.5 5.9 1.5 1.4 1 2.3 2.5 2.7 4.3l-4 .7c-.3-1-.8-1.7-1.6-2.3-.8-.6-1.8-.8-2.9-.8-1.8 0-3.2.6-4.2 1.7S10 77.8 10 79.9c0 2.4.5 4.1 1.6 5.3 1.1 1.2 2.5 1.8 4.2 1.8.9 0 1.7-.2 2.6-.5.9-.3 1.6-.7 2.2-1.2v-2.5h-4.9zm12.5 7.3V70.2h14.9v3.4H32.3V78h10.1v3.3H32.3v5.4h11.2V90H28.2zm18.7 0V70.2H53l3.6 13.5 3.6-13.5h6.1V90h-3.8V74.5l-4 15.6h-3.9l-4-15.6v15.6h-3.7z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="31.747" y1="69.935" x2="31.747" y2="69.986" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M31.8 32c-.1.1-.1.1 0 0" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="18" y1="60.5" x2="54" y2="60.5" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M54 23.5v36l-9-27 9-9zm-36 36h36l-27-9-9 9zm9-9l27 9-18-18-9 9zm9-9l18 18-9-27-9 9zm-18 9v9l9-9h-9zm18-9h-9v9l9-9zm9-9h-9v9l9-9zm9-9h-9v9l9-9zm-27 18l-9 9h9v-9zm9-9l-9 9h9v-9zm9-9l-9 9h9v-9z" fill="url(#SVGID_3_)"/><path d="M54 23.5v36l-9-27 9-9zm-36 36h36l-27-9-9 9zm9-9l27 9-18-18-9 9zm9-9l18 18-9-27-9 9zm-18 9v9l9-9h-9zm18-9h-9v9l9-9zm9-9h-9v9l9-9zm9-9h-9v9l9-9zm-27 18l-9 9h9v-9zm9-9l-9 9h9v-9zm9-9l-9 9h9v-9z" fill-opacity="0" stroke="#fff"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="45.324" y1="74.184" x2="58.871" y2="87.731" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.2 1l27.1 26.7H45.2V1z" fill="url(#SVGID_4_)"/><path d="M45.2 1l27.1 26.7H45.2V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.014" x2="36.2" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill="url(#a)"/><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M15.7 82.8v-3.3h8.8v7.9c-.9.8-2.1 1.5-3.7 2.1-1.6.6-3.2.9-4.9.9-2.1 0-3.9-.4-5.5-1.3S7.7 87 6.9 85.4 5.7 82 5.7 80.1c0-2.1.4-3.9 1.3-5.5s2.2-2.8 3.9-3.7c1.3-.7 2.9-1 4.8-1 2.5 0 4.4.5 5.9 1.5 1.4 1 2.3 2.5 2.7 4.3l-4 .7c-.3-1-.8-1.7-1.6-2.3-.8-.6-1.8-.8-2.9-.8-1.8 0-3.2.6-4.2 1.7S10 77.8 10 79.9c0 2.4.5 4.1 1.6 5.3 1.1 1.2 2.5 1.8 4.2 1.8.9 0 1.7-.2 2.6-.5.9-.3 1.6-.7 2.2-1.2v-2.5h-4.9zm12.5 7.3V70.2h14.9v3.4H32.3V78h10.1v3.3H32.3v5.4h11.2V90H28.2zm18.7 0V70.2H53l3.6 13.5 3.6-13.5h6.1V90h-3.8V74.5l-4 15.6h-3.9l-4-15.6v15.6h-3.7z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="31.747" y1="69.935" x2="31.747" y2="69.986" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M31.8 32c-.1.1-.1.1 0 0" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="18" y1="60.5" x2="54" y2="60.5" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M54 23.5v36l-9-27 9-9zm-36 36h36l-27-9-9 9zm9-9l27 9-18-18-9 9zm9-9l18 18-9-27-9 9zm-18 9v9l9-9h-9zm18-9h-9v9l9-9zm9-9h-9v9l9-9zm9-9h-9v9l9-9zm-27 18l-9 9h9v-9zm9-9l-9 9h9v-9zm9-9l-9 9h9v-9z" fill="url(#c)"/><path d="M54 23.5v36l-9-27 9-9zm-36 36h36l-27-9-9 9zm9-9l27 9-18-18-9 9zm9-9l18 18-9-27-9 9zm-18 9v9l9-9h-9zm18-9h-9v9l9-9zm9-9h-9v9l9-9zm9-9h-9v9l9-9zm-27 18l-9 9h9v-9zm9-9l-9 9h9v-9zm9-9l-9 9h9v-9z" fill-opacity="0" stroke="#fff"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.324" y1="74.184" x2="58.871" y2="87.731" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.2 1l27.1 26.7H45.2V1z" fill="url(#d)"/><path d="M45.2 1l27.1 26.7H45.2V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1 +1 @@
<svg id="Layer_2_1_" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97.8" x2="36" y2="-.2" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.075" y1="26.575" x2="58.575" y2="13.075" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_2_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".75"><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="15.222" y1="53.7" x2="56.222" y2="53.7"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="14.972" y1="53.7" x2="56.472" y2="53.7"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M50.2 39.2c-8-8-21-8-29 0s-8 21 0 29 21 8 29 0 8-21 0-29zM23 61.9C19.2 56 19.9 48.1 25 43c5.1-5.1 13-5.8 18.9-2L23 61.9zm4.5 4.5l20.9-20.9c3.8 5.9 3.1 13.8-2 18.9-5.1 5.1-13 5.8-18.9 2z" fill="url(#SVGID_3_)" stroke="url(#SVGID_4_)" stroke-width=".5" stroke-miterlimit="10"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97.8" x2="36" y2="-.2" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.075" y1="26.575" x2="58.575" y2="13.075" gradientTransform="translate(0 1)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".75"><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="15.222" y1="53.7" x2="56.222" y2="53.7"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="14.972" y1="53.7" x2="56.472" y2="53.7"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M50.2 39.2c-8-8-21-8-29 0s-8 21 0 29 21 8 29 0 8-21 0-29zM23 61.9C19.2 56 19.9 48.1 25 43c5.1-5.1 13-5.8 18.9-2L23 61.9zm4.5 4.5l20.9-20.9c3.8 5.9 3.1 13.8-2 18.9-5.1 5.1-13 5.8-18.9 2z" fill="url(#c)" stroke="url(#d)" stroke-width=".5" stroke-miterlimit="10"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.014" x2="36.2" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill="url(#SVGID_1_)"/><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M8.6 90.1V70.2h4.1V78h8v-7.8h4.1V90h-4.1v-8.7h-8V90H8.6zm20.3-19.9h8c1.6 0 2.8.1 3.6.2.8.1 1.5.4 2.1.8.6.4 1.1 1 1.5 1.7.4.7.6 1.5.6 2.3 0 .9-.3 1.8-.8 2.6s-1.2 1.4-2.1 1.7c1.2.4 2.2 1 2.8 1.8.7.8 1 1.8 1 3 0 .9-.2 1.8-.6 2.6-.4.9-1 1.5-1.7 2s-1.6.8-2.7.9c-.6.2-2.2.2-4.8.3H29V70.2zm4.1 3.3v4.6h2.7c1.6 0 2.6 0 3-.1.7-.1 1.2-.3 1.6-.7.4-.4.6-.9.6-1.5s-.2-1.1-.5-1.5c-.3-.4-.9-.6-1.5-.7-.4 0-1.6-.1-3.5-.1H33zm0 7.9v5.3h3.8c1.5 0 2.4 0 2.8-.1.6-.1 1.1-.4 1.5-.8.4-.4.6-1 .6-1.7 0-.6-.1-1.1-.4-1.5-.3-.4-.7-.7-1.3-.9s-1.8-.3-3.6-.3H33zm15.2 2.2l4-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 3-.8s1-1.2 1-1.9c0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.3-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.9-2.4-1.9-4 0-1 .3-2 .9-2.8s1.4-1.5 2.5-2 2.4-.7 4-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 1.9 2.5 2 4.4l-4.1.2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2s-2.6.7-4.4.7c-2.5 0-4.5-.6-5.9-1.7-1.1-1-1.9-2.7-2.2-4.9z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="31.747" y1="69.935" x2="31.747" y2="69.986" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M31.8 32c-.1.1-.1.1 0 0" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.324" y1="74.184" x2="58.871" y2="87.731" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.2 1l27.1 26.7H45.2V1z" fill="url(#SVGID_3_)"/><path d="M45.2 1l27.1 26.7H45.2V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".93"><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="37" y1="60.489" x2="37" y2="48.312"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M30.4 48.3c1.7-.1 3.5.5 4.9 1.7.7.6 1.2 1.2 1.7 2.1.8-1.4 2.1-2.6 3.6-3.1 1.9-.7 4-.7 5.9 0 1.7.7 3.1 1.6 4.4 2.8 1 .9 2 1.9 3.1 2.7.6.5 1.2.8 1.8 1.1.9.3 2 0 2.6-.7.6-.7.6-1.7-.1-2.4-.4-.3-1-.3-1.4.1 0 0 0 .1-.1.1-.2.4-.2.9.1 1.2-.6-.3-1-1-1.1-1.7-.1-.8.5-1.6 1.2-1.8 1.5-.6 3.2-.1 4.1 1.2.7 1.2 1.1 2.7.8 4.1-.2 1.3-.9 2.6-2.1 3.4-1.6 1.1-3.5 1.6-5.4 1.4-1.8-.1-3.6-.4-5.3-1.2-2.8-1.2-5.4-2.6-8.3-3.6-1-.2-2.1-.5-3.1-.7h-2.3c-.9.1-1.9.3-2.7.7-3 .9-5.6 2.5-8.4 3.6-2.4 1-5 1.3-7.6.8-1.5-.2-2.8-1-3.8-2.1-.8-1-1.2-2.2-1.2-3.5-.1-1.2.2-2.4 1-3.4.7-.9 1.9-1.3 3.1-1.2.7 0 1.4.3 1.9.9.3.5.4 1.1.2 1.7-.2.5-.6.9-1 1.2.2-.3.3-.8.1-1.2-.3-.4-.9-.6-1.4-.2-.1 0-.1.1-.2.1-.5.6-.6 1.3-.2 2 .4.7 1.1 1.1 1.8 1.2 1.1 0 2.1-.5 2.9-1.2 1.6-1.6 3.3-3 5-4.3 1.8-1.1 3.6-1.7 5.5-1.8z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="37" y1="42.488" x2="37" y2="30.311"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M30.4 30.3c1.7-.1 3.5.5 4.9 1.7.7.6 1.2 1.2 1.7 2.1.8-1.4 2.1-2.6 3.6-3.1 1.9-.7 4-.7 5.9 0 1.7.7 3.1 1.6 4.4 2.8 1 .9 2 1.9 3.1 2.7.6.5 1.2.8 1.8 1.1.9.3 2 0 2.6-.7.6-.7.6-1.7-.1-2.4-.4-.3-1-.3-1.4.1 0 0 0 .1-.1.1-.2.4-.2.9.1 1.2-.6-.3-1-1-1.1-1.7-.1-.8.5-1.6 1.2-1.8 1.5-.6 3.2-.1 4.1 1.2.7 1.2 1.1 2.7.8 4.1-.2 1.3-.9 2.6-2.1 3.4-1.6 1.1-3.5 1.6-5.4 1.4-1.8-.1-3.6-.4-5.3-1.2-2.8-1.2-5.4-2.6-8.3-3.6-1-.2-2.1-.5-3.1-.7h-2.3c-.9.1-1.9.3-2.7.7-3 .9-5.6 2.5-8.4 3.6-2.4 1-5 1.3-7.6.8-1.5-.2-2.8-1-3.8-2.1-.8-1-1.2-2.2-1.2-3.5-.1-1.2.2-2.4 1-3.4.7-.9 1.9-1.3 3.1-1.2.7 0 1.4.3 1.9.9.3.5.4 1.1.2 1.7-.2.5-.6.9-1 1.2.2-.3.3-.8.1-1.2-.3-.4-.9-.6-1.4-.2-.1 0-.1.1-.2.1-.5.6-.6 1.3-.2 2 .4.7 1.1 1.1 1.8 1.2 1.1 0 2.1-.5 2.9-1.2 1.6-1.6 3.3-3 5-4.3 1.8-1.1 3.6-1.7 5.5-1.8z" fill="url(#SVGID_5_)"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.014" x2="36.2" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill="url(#a)"/><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M8.6 90.1V70.2h4.1V78h8v-7.8h4.1V90h-4.1v-8.7h-8V90H8.6zm20.3-19.9h8c1.6 0 2.8.1 3.6.2.8.1 1.5.4 2.1.8.6.4 1.1 1 1.5 1.7.4.7.6 1.5.6 2.3 0 .9-.3 1.8-.8 2.6s-1.2 1.4-2.1 1.7c1.2.4 2.2 1 2.8 1.8.7.8 1 1.8 1 3 0 .9-.2 1.8-.6 2.6-.4.9-1 1.5-1.7 2s-1.6.8-2.7.9c-.6.2-2.2.2-4.8.3H29V70.2zm4.1 3.3v4.6h2.7c1.6 0 2.6 0 3-.1.7-.1 1.2-.3 1.6-.7.4-.4.6-.9.6-1.5s-.2-1.1-.5-1.5c-.3-.4-.9-.6-1.5-.7-.4 0-1.6-.1-3.5-.1H33zm0 7.9v5.3h3.8c1.5 0 2.4 0 2.8-.1.6-.1 1.1-.4 1.5-.8.4-.4.6-1 .6-1.7 0-.6-.1-1.1-.4-1.5-.3-.4-.7-.7-1.3-.9s-1.8-.3-3.6-.3H33zm15.2 2.2l4-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 3-.8s1-1.2 1-1.9c0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.3-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.9-2.4-1.9-4 0-1 .3-2 .9-2.8s1.4-1.5 2.5-2 2.4-.7 4-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 1.9 2.5 2 4.4l-4.1.2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2s-2.6.7-4.4.7c-2.5 0-4.5-.6-5.9-1.7-1.1-1-1.9-2.7-2.2-4.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="31.747" y1="69.935" x2="31.747" y2="69.986" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M31.8 32c-.1.1-.1.1 0 0" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.324" y1="74.184" x2="58.871" y2="87.731" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.2 1l27.1 26.7H45.2V1z" fill="url(#c)"/><path d="M45.2 1l27.1 26.7H45.2V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".93"><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="37" y1="60.489" x2="37" y2="48.312"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M30.4 48.3c1.7-.1 3.5.5 4.9 1.7.7.6 1.2 1.2 1.7 2.1.8-1.4 2.1-2.6 3.6-3.1 1.9-.7 4-.7 5.9 0 1.7.7 3.1 1.6 4.4 2.8 1 .9 2 1.9 3.1 2.7.6.5 1.2.8 1.8 1.1.9.3 2 0 2.6-.7.6-.7.6-1.7-.1-2.4-.4-.3-1-.3-1.4.1 0 0 0 .1-.1.1-.2.4-.2.9.1 1.2-.6-.3-1-1-1.1-1.7-.1-.8.5-1.6 1.2-1.8 1.5-.6 3.2-.1 4.1 1.2.7 1.2 1.1 2.7.8 4.1-.2 1.3-.9 2.6-2.1 3.4-1.6 1.1-3.5 1.6-5.4 1.4-1.8-.1-3.6-.4-5.3-1.2-2.8-1.2-5.4-2.6-8.3-3.6-1-.2-2.1-.5-3.1-.7h-2.3c-.9.1-1.9.3-2.7.7-3 .9-5.6 2.5-8.4 3.6-2.4 1-5 1.3-7.6.8-1.5-.2-2.8-1-3.8-2.1-.8-1-1.2-2.2-1.2-3.5-.1-1.2.2-2.4 1-3.4.7-.9 1.9-1.3 3.1-1.2.7 0 1.4.3 1.9.9.3.5.4 1.1.2 1.7-.2.5-.6.9-1 1.2.2-.3.3-.8.1-1.2-.3-.4-.9-.6-1.4-.2-.1 0-.1.1-.2.1-.5.6-.6 1.3-.2 2 .4.7 1.1 1.1 1.8 1.2 1.1 0 2.1-.5 2.9-1.2 1.6-1.6 3.3-3 5-4.3 1.8-1.1 3.6-1.7 5.5-1.8z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="37" y1="42.488" x2="37" y2="30.311"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M30.4 30.3c1.7-.1 3.5.5 4.9 1.7.7.6 1.2 1.2 1.7 2.1.8-1.4 2.1-2.6 3.6-3.1 1.9-.7 4-.7 5.9 0 1.7.7 3.1 1.6 4.4 2.8 1 .9 2 1.9 3.1 2.7.6.5 1.2.8 1.8 1.1.9.3 2 0 2.6-.7.6-.7.6-1.7-.1-2.4-.4-.3-1-.3-1.4.1 0 0 0 .1-.1.1-.2.4-.2.9.1 1.2-.6-.3-1-1-1.1-1.7-.1-.8.5-1.6 1.2-1.8 1.5-.6 3.2-.1 4.1 1.2.7 1.2 1.1 2.7.8 4.1-.2 1.3-.9 2.6-2.1 3.4-1.6 1.1-3.5 1.6-5.4 1.4-1.8-.1-3.6-.4-5.3-1.2-2.8-1.2-5.4-2.6-8.3-3.6-1-.2-2.1-.5-3.1-.7h-2.3c-.9.1-1.9.3-2.7.7-3 .9-5.6 2.5-8.4 3.6-2.4 1-5 1.3-7.6.8-1.5-.2-2.8-1-3.8-2.1-.8-1-1.2-2.2-1.2-3.5-.1-1.2.2-2.4 1-3.4.7-.9 1.9-1.3 3.1-1.2.7 0 1.4.3 1.9.9.3.5.4 1.1.2 1.7-.2.5-.6.9-1 1.2.2-.3.3-.8.1-1.2-.3-.4-.9-.6-1.4-.2-.1 0-.1.1-.2.1-.5.6-.6 1.3-.2 2 .4.7 1.1 1.1 1.8 1.2 1.1 0 2.1-.5 2.9-1.2 1.6-1.6 3.3-3 5-4.3 1.8-1.1 3.6-1.7 5.5-1.8z" fill="url(#e)"/></g></svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.014" x2="36.2" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill="url(#SVGID_1_)"/><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M18.9 90.1V70.2H23V78h8v-7.8h4V90h-4v-8.7h-8V90h-4.1zm19.3-6.5l4-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 3-.8.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.3-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.9-2.4-1.9-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 4-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 1.9 2.5 2 4.4l-4.1.2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2-1.2.5-2.6.7-4.4.7-2.5 0-4.5-.6-5.9-1.7s-1.9-2.7-2.2-4.9z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="31.747" y1="69.935" x2="31.747" y2="69.986" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M31.8 32c-.1.1-.1.1 0 0" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.324" y1="74.184" x2="58.871" y2="87.731" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.2 1l27.1 26.7H45.2V1z" fill="url(#SVGID_3_)"/><path d="M45.2 1l27.1 26.7H45.2V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".9"><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="15.462" y1="43" x2="33.584" y2="43"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_4_)" d="M15.5 58.5L25.8 43 15.5 27.5h7.7L33.6 43 23.2 58.5z"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="25.828" y1="43" x2="54.316" y2="43"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_5_)" d="M25.8 58.5L36.2 43 25.8 27.5h7.8l20.7 31h-7.8l-6.4-9.7-6.5 9.7z"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="47.381" y1="46.878" x2="59.462" y2="46.878"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_6_)" d="M50.8 49.5l-3.4-5.2h12.1v5.2z"/><linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="42.235" y1="39.122" x2="59.462" y2="39.122"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_7_)" d="M45.7 41.7l-3.5-5.2h17.3v5.2z"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.014" x2="36.2" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill="url(#a)"/><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M18.9 90.1V70.2H23V78h8v-7.8h4V90h-4v-8.7h-8V90h-4.1zm19.3-6.5l4-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 3-.8.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.3-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.9-2.4-1.9-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 4-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 1.9 2.5 2 4.4l-4.1.2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2-1.2.5-2.6.7-4.4.7-2.5 0-4.5-.6-5.9-1.7s-1.9-2.7-2.2-4.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="31.747" y1="69.935" x2="31.747" y2="69.986" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M31.8 32c-.1.1-.1.1 0 0" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.324" y1="74.184" x2="58.871" y2="87.731" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.2 1l27.1 26.7H45.2V1z" fill="url(#c)"/><path d="M45.2 1l27.1 26.7H45.2V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".9"><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="15.462" y1="43" x2="33.584" y2="43"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#d)" d="M15.5 58.5L25.8 43 15.5 27.5h7.7L33.6 43 23.2 58.5z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="25.828" y1="43" x2="54.316" y2="43"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#e)" d="M25.8 58.5L36.2 43 25.8 27.5h7.8l20.7 31h-7.8l-6.4-9.7-6.5 9.7z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="47.381" y1="46.878" x2="59.462" y2="46.878"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#f)" d="M50.8 49.5l-3.4-5.2h12.1v5.2z"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="42.235" y1="39.122" x2="59.462" y2="39.122"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#g)" d="M45.7 41.7l-3.5-5.2h17.3v5.2z"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.014" x2="36.2" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill="url(#SVGID_1_)"/><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M10.6 90.1V70.2h4.1V78h8v-7.8h4.1V90h-4.1v-8.7h-8V90h-4.1zm19.2-6.5l4-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 3-.8.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.3-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.9-2.4-1.9-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 4-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 1.9 2.5 2 4.4l-4.1.2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2-1.2.5-2.6.7-4.4.7-2.5 0-4.5-.6-5.9-1.7s-1.9-2.7-2.2-4.9zm19.9 6.5V70.4h4.1v16.3h10.1V90H49.7z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="31.747" y1="69.935" x2="31.747" y2="69.986" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M31.8 32c-.1.1-.1.1 0 0" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.324" y1="74.184" x2="58.871" y2="87.731" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.2 1l27.1 26.7H45.2V1z" fill="url(#SVGID_3_)"/><path d="M45.2 1l27.1 26.7H45.2V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".9"><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="15.462" y1="43" x2="33.584" y2="43"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_4_)" d="M15.5 58.5L25.8 43 15.5 27.5h7.7L33.6 43 23.2 58.5z"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="25.828" y1="43" x2="54.316" y2="43"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_5_)" d="M25.8 58.5L36.2 43 25.8 27.5h7.8l20.7 31h-7.8l-6.4-9.7-6.5 9.7z"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="47.381" y1="46.878" x2="59.462" y2="46.878"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_6_)" d="M50.8 49.5l-3.4-5.2h12.1v5.2z"/><linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="42.235" y1="39.122" x2="59.462" y2="39.122"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_7_)" d="M45.7 41.7l-3.5-5.2h17.3v5.2z"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.014" x2="36.2" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill="url(#a)"/><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M10.6 90.1V70.2h4.1V78h8v-7.8h4.1V90h-4.1v-8.7h-8V90h-4.1zm19.2-6.5l4-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 3-.8.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2-.3-.3-.8-.6-1.5-.9-.5-.2-1.6-.5-3.3-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.9-2.4-1.9-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 4-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 1.9 2.5 2 4.4l-4.1.2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2-1.2.5-2.6.7-4.4.7-2.5 0-4.5-.6-5.9-1.7s-1.9-2.7-2.2-4.9zm19.9 6.5V70.4h4.1v16.3h10.1V90H49.7z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="31.747" y1="69.935" x2="31.747" y2="69.986" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M31.8 32c-.1.1-.1.1 0 0" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.324" y1="74.184" x2="58.871" y2="87.731" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.2 1l27.1 26.7H45.2V1z" fill="url(#c)"/><path d="M45.2 1l27.1 26.7H45.2V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><g opacity=".9"><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="15.462" y1="43" x2="33.584" y2="43"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#d)" d="M15.5 58.5L25.8 43 15.5 27.5h7.7L33.6 43 23.2 58.5z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="25.828" y1="43" x2="54.316" y2="43"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#e)" d="M25.8 58.5L36.2 43 25.8 27.5h7.8l20.7 31h-7.8l-6.4-9.7-6.5 9.7z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="47.381" y1="46.878" x2="59.462" y2="46.878"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#f)" d="M50.8 49.5l-3.4-5.2h12.1v5.2z"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="42.235" y1="39.122" x2="59.462" y2="39.122"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#g)" d="M45.7 41.7l-3.5-5.2h17.3v5.2z"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="35.75" y1="3.096" x2="35.75" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M44.8 1l27 26.7v71.2h-72V1h45z" fill="url(#SVGID_1_)"/><path d="M44.8 1l27 26.7v71.2h-72V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.85" y1="4.085" x2="35.85" y2="38.441" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#ef4136"/><stop offset="1" stop-color="#be1e2d"/></linearGradient><path d="M.7 63.6h70.2v34.3H.7V63.6z" fill="url(#SVGID_2_)"/><path d="M14.4 90.1V70.3h4v19.8h-4zm20.7-7.3L39 84c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.4 0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.5 0 4.4.7 6 2.1.9.8 1.6 2.1 2.1 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.8-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.1 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .6-.7 1.2-1.8 1.5-3.2zm6.4.8l3.9-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 2.9-.8.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8s1.4-1.5 2.5-2 2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2 .5.9.8 1.9.8 3.2 0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2-1.2.5-2.6.7-4.4.7-2.5 0-4.5-.6-5.8-1.7s-2-2.7-2.3-4.9z" fill="#fff"/><linearGradient id="path1156_1_" gradientUnits="userSpaceOnUse" x1="1025.8" y1="947.945" x2="1025.8" y2="986.7" gradientTransform="matrix(1 0 0 -1 -990 1005.111)"><stop offset="0" stop-color="#879ca8"/><stop offset="1" stop-color="#4d6a78"/></linearGradient><path id="path1156" d="M18.2 54.4v-6.2h7.2v6.2h-7.2zm8.8 0v-6.2h8v6.2h-8zm-8.8-7.6v-6.9h7.2v6.9h-7.2zm8.8 0v-6.9h8v6.9h-8zm-8.8-8.3v-6.2h7.2v6.2h-7.2zm18.4 15.9v-6.2h8v6.2h-8zM27 38.5v-6.2h8v6.2h-8zm19.2 15.9v-6.2h7.2v6.2h-7.2zm-9.6-7.6v-6.9h8v6.9h-8zm-8.8-18.7c0 .4-.4.7-.8.7h-1.6c-.4 0-.8-.3-.8-.7v-6.2c0-.4.4-.7.8-.7H27c.4 0 .8.3.8.7v6.2zm18.4 18.7v-6.9h7.2v6.9h-7.2zm-9.6-8.3v-6.2h8v6.2h-8zm9.6 0v-6.2h7.2v6.2h-7.2zm.8-10.4c0 .4-.4.7-.8.7h-1.6c-.4 0-.8-.3-.8-.7v-6.2c0-.4.4-.7.8-.7h1.6c.4 0 .8.3.8.7v6.2zm9.6-1.4c0-1.5-1.4-2.8-3.2-2.8h-3.2v-2.1c0-1.9-1.8-3.5-4-3.5h-1.6c-2.2 0-4 1.6-4 3.5v2.1H31v-2.1c0-1.9-1.8-3.5-4-3.5h-1.6c-2.2 0-4 1.6-4 3.5v2.1h-3.2c-1.7 0-3.2 1.3-3.2 2.8v27.7c0 1.5 1.4 2.8 3.2 2.8h35.1c1.7 0 3.2-1.3 3.2-2.8V26.7z" fill="url(#path1156_1_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="44.825" y1="74.224" x2="58.325" y2="87.724" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M44.8 1l27 26.7h-27V1z" fill="url(#SVGID_3_)"/><path d="M44.8 1l27 26.7h-27V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="35.75" y1="3.096" x2="35.75" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M44.8 1l27 26.7v71.2h-72V1h45z" fill="url(#a)"/><path d="M44.8 1l27 26.7v71.2h-72V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.85" y1="4.085" x2="35.85" y2="38.441" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#ef4136"/><stop offset="1" stop-color="#be1e2d"/></linearGradient><path d="M.7 63.6h70.2v34.3H.7V63.6z" fill="url(#b)"/><path d="M14.4 90.1V70.3h4v19.8h-4zm20.7-7.3L39 84c-.6 2.2-1.6 3.8-3 4.8-1.4 1.1-3.2 1.6-5.3 1.6-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.4 0-3.3.9-5.9 2.6-7.7s4-2.7 6.8-2.7c2.5 0 4.4.7 6 2.1.9.8 1.6 2.1 2.1 3.7l-4 .9c-.2-1-.7-1.8-1.5-2.4-.8-.6-1.7-.9-2.7-.9-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.1 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1 .6-.7 1.2-1.8 1.5-3.2zm6.4.8l3.9-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 2.9-.8.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8s1.4-1.5 2.5-2 2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6 1.3 1.1 1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2 .5.9.8 1.9.8 3.2 0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2-1.2.5-2.6.7-4.4.7-2.5 0-4.5-.6-5.8-1.7s-2-2.7-2.3-4.9z" fill="#fff"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="1025.8" y1="947.945" x2="1025.8" y2="986.7" gradientTransform="matrix(1 0 0 -1 -990 1005.111)"><stop offset="0" stop-color="#879ca8"/><stop offset="1" stop-color="#4d6a78"/></linearGradient><path d="M18.2 54.4v-6.2h7.2v6.2h-7.2zm8.8 0v-6.2h8v6.2h-8zm-8.8-7.6v-6.9h7.2v6.9h-7.2zm8.8 0v-6.9h8v6.9h-8zm-8.8-8.3v-6.2h7.2v6.2h-7.2zm18.4 15.9v-6.2h8v6.2h-8zM27 38.5v-6.2h8v6.2h-8zm19.2 15.9v-6.2h7.2v6.2h-7.2zm-9.6-7.6v-6.9h8v6.9h-8zm-8.8-18.7c0 .4-.4.7-.8.7h-1.6c-.4 0-.8-.3-.8-.7v-6.2c0-.4.4-.7.8-.7H27c.4 0 .8.3.8.7v6.2zm18.4 18.7v-6.9h7.2v6.9h-7.2zm-9.6-8.3v-6.2h8v6.2h-8zm9.6 0v-6.2h7.2v6.2h-7.2zm.8-10.4c0 .4-.4.7-.8.7h-1.6c-.4 0-.8-.3-.8-.7v-6.2c0-.4.4-.7.8-.7h1.6c.4 0 .8.3.8.7v6.2zm9.6-1.4c0-1.5-1.4-2.8-3.2-2.8h-3.2v-2.1c0-1.9-1.8-3.5-4-3.5h-1.6c-2.2 0-4 1.6-4 3.5v2.1H31v-2.1c0-1.9-1.8-3.5-4-3.5h-1.6c-2.2 0-4 1.6-4 3.5v2.1h-3.2c-1.7 0-3.2 1.3-3.2 2.8v27.7c0 1.5 1.4 2.8 3.2 2.8h35.1c1.7 0 3.2-1.3 3.2-2.8V26.7z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="44.825" y1="74.224" x2="58.325" y2="87.724" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M44.8 1l27 26.7h-27V1z" fill="url(#d)"/><path d="M44.8 1l27 26.7h-27V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.014" x2="36.2" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill="url(#SVGID_1_)"/><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M15.8 90.1V70.2h4.1V90h-4.1zm7.9-19.9h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8s1.5 1.9 1.9 3.2c.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.2 3.5-.7.7-1.7 1.2-2.9 1.6-.9.3-2.1.4-3.6.4h-7.6V70.2zm4.1 3.4v13.1h3c1.1 0 2-.1 2.5-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9.3-.9.4-2.1.4-3.6s-.1-2.7-.4-3.5c-.3-.8-.7-1.5-1.2-1.9-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.3-.2h-1.8zM42 90.1l6.9-10.4-6.2-9.5h4.7l4 6.4 4-6.4H60l-6.3 9.6L60.6 90h-4.9l-4.5-6.9-4.5 6.9H42z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="31.747" y1="69.935" x2="31.747" y2="69.986" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M31.8 32c-.1.1-.1.1 0 0" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.324" y1="74.184" x2="58.871" y2="87.731" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.2 1l27.1 26.7H45.2V1z" fill="url(#SVGID_3_)"/><path d="M45.2 1l27.1 26.7H45.2V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="35.525" y1="61" x2="35.525" y2="16"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M52.7 43.8c0 2.8-2.1 12.5-2.1 12.5-.5 2.2-2.6 4.7-5.3 4.7H32.6c-1.9 0-3.6-1.1-4.3-2.8 0 0-6.2-11.5-8.8-15.7-1.7-2.9-1.7-2.9.5-4.1.4-.2.8-.3 1.2-.3.9 0 1.5.5 2.1 1.2l3.8 4.4 1.2 1.5V18.4c0-1.3 1.2-2.4 2.6-2.4 1.3 0 2.4 1.1 2.4 2.4l.4 17.1H35l.2-3c0-1.3 1.1-2.4 2.4-2.4 1.3 0 2.4 1.1 2.4 2.4l.2 3.6h1.1l.2-2.4c0-1.3 1.1-2.4 2.4-2.4 1.3 0 2.4 1.1 2.4 2.5l.2 2.4v.6h.9l.2-1.2c0-1.3 1.1-2.4 2.4-2.4 1.3 0 2.4 1.1 2.4 2.4.3 0 .3 5.4.3 8.2z" fill="url(#SVGID_4_)"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.2" y1="3.014" x2="36.2" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill="url(#a)"/><path d="M45.2 1l27.1 26.7V99H.1V1h45.1z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M15.8 90.1V70.2h4.1V90h-4.1zm7.9-19.9h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8s1.5 1.9 1.9 3.2c.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.2 3.5-.7.7-1.7 1.2-2.9 1.6-.9.3-2.1.4-3.6.4h-7.6V70.2zm4.1 3.4v13.1h3c1.1 0 2-.1 2.5-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9.3-.9.4-2.1.4-3.6s-.1-2.7-.4-3.5c-.3-.8-.7-1.5-1.2-1.9-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.3-.2h-1.8zM42 90.1l6.9-10.4-6.2-9.5h4.7l4 6.4 4-6.4H60l-6.3 9.6L60.6 90h-4.9l-4.5-6.9-4.5 6.9H42z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="31.747" y1="69.935" x2="31.747" y2="69.986" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M31.8 32c-.1.1-.1.1 0 0" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.324" y1="74.184" x2="58.871" y2="87.731" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.2 1l27.1 26.7H45.2V1z" fill="url(#c)"/><path d="M45.2 1l27.1 26.7H45.2V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="35.525" y1="61" x2="35.525" y2="16"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M52.7 43.8c0 2.8-2.1 12.5-2.1 12.5-.5 2.2-2.6 4.7-5.3 4.7H32.6c-1.9 0-3.6-1.1-4.3-2.8 0 0-6.2-11.5-8.8-15.7-1.7-2.9-1.7-2.9.5-4.1.4-.2.8-.3 1.2-.3.9 0 1.5.5 2.1 1.2l3.8 4.4 1.2 1.5V18.4c0-1.3 1.2-2.4 2.6-2.4 1.3 0 2.4 1.1 2.4 2.4l.4 17.1H35l.2-3c0-1.3 1.1-2.4 2.4-2.4 1.3 0 2.4 1.1 2.4 2.4l.2 3.6h1.1l.2-2.4c0-1.3 1.1-2.4 2.4-2.4 1.3 0 2.4 1.1 2.4 2.5l.2 2.4v.6h.9l.2-1.2c0-1.3 1.1-2.4 2.4-2.4 1.3 0 2.4 1.1 2.4 2.4.3 0 .3 5.4.3 8.2z" fill="url(#d)"/></svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="path1042_1_" gradientUnits="userSpaceOnUse" x1="-63" y1="145.111" x2="-63" y2="243.111" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#4ba0d8"/><stop offset="1" stop-color="#fefefe"/></linearGradient><path id="path1042" d="M0 1v98h72V27.7L45 1H0z" fill="url(#path1042_1_)"/><path id="path1044" d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#0099db" stroke-width="2"/><linearGradient id="path1046_1_" gradientUnits="userSpaceOnUse" x1="-41.251" y1="228.997" x2="-47.006" y2="223.242" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0085c9"/><stop offset="1" stop-color="#dce9f7"/></linearGradient><path id="path1046" d="M45 27.7h27L45 1v26.7z" fill="url(#path1046_1_)"/><path id="path1048" d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#0099db" stroke-width="2" stroke-linejoin="bevel"/><linearGradient id="path1050_1_" gradientUnits="userSpaceOnUse" x1="-76.5" y1="207.475" x2="-76.5" y2="234.202" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#e6ebf6"/><stop offset=".005" stop-color="#e6ebf6"/><stop offset="1" stop-color="#00afee"/></linearGradient><path id="path1050" d="M9 36.6h27V9.9H9v26.7z" fill="url(#path1050_1_)"/><linearGradient id="path1052_1_" gradientUnits="userSpaceOnUse" x1="-74.935" y1="207.475" x2="-74.935" y2="231.384" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0096d8"/><stop offset=".005" stop-color="#0096d8"/><stop offset="1" stop-color="#005f8e"/></linearGradient><path id="path1052" d="M18.4 15.5c-4.3-2.3-6.4 1.7-6.4 1.7l4.4.3c-5 1.5-3.7 6.4-3.7 6.4l4.4-4c-1 2.2 1.2 3.8 1.2 3.8l1.3-5.4s4.7 5.3 6.1 10.7c-1.9.9-4.7 2.5-7 2.8-3.1.4-6.8 2.5-6.8 2.5v2.5h24l.1-6.5-2-1.1c-2-.2-4.5-.9-6-1-1.8-2.9-4.8-7.5-7.3-10l6.9.4c-1.9-4.4-6.6-2.8-6.6-2.8l3.2-2.7c-.7-.3-1.3-.4-1.9-.4-2.7 0-3.9 2.8-3.9 2.8" fill="url(#path1052_1_)"/><linearGradient id="path1054_1_" gradientUnits="userSpaceOnUse" x1="-77.513" y1="211.052" x2="-48.487" y2="182.024" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0095d6"/><stop offset="1" stop-color="#83bee7"/></linearGradient><path id="path1054" d="M9 49.6h54v-4.1H9v4.1z" fill="url(#path1054_1_)"/><linearGradient id="path1056_1_" gradientUnits="userSpaceOnUse" x1="-77.514" y1="200.526" x2="-48.486" y2="171.498" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0095d6"/><stop offset="1" stop-color="#83bee7"/></linearGradient><path id="path1056" d="M9 60.1h54V56H9v4.1z" fill="url(#path1056_1_)"/><linearGradient id="path1058_1_" gradientUnits="userSpaceOnUse" x1="-77.514" y1="189.999" x2="-48.486" y2="160.971" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0095d6"/><stop offset="1" stop-color="#83bee7"/></linearGradient><path id="path1058" d="M9 70.7h54v-4.1H9v4.1z" fill="url(#path1058_1_)"/><linearGradient id="path1060_1_" gradientUnits="userSpaceOnUse" x1="-77.514" y1="179.472" x2="-48.486" y2="150.443" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0093d6"/><stop offset="1" stop-color="#66b4e3"/></linearGradient><path id="path1060" d="M9 81.2h54v-4.1H9v4.1z" fill="url(#path1060_1_)"/><linearGradient id="path1062_1_" gradientUnits="userSpaceOnUse" x1="-77.513" y1="168.945" x2="-48.487" y2="139.917" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0087cb"/><stop offset="1" stop-color="#4aa6dc"/></linearGradient><path id="path1062" d="M9 91.7h54v-4.1H9v4.1z" fill="url(#path1062_1_)"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="-63" y1="145.111" x2="-63" y2="243.111" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#4ba0d8"/><stop offset="1" stop-color="#fefefe"/></linearGradient><path d="M0 1v98h72V27.7L45 1H0z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#0099db" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="-41.251" y1="228.997" x2="-47.006" y2="223.242" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0085c9"/><stop offset="1" stop-color="#dce9f7"/></linearGradient><path d="M45 27.7h27L45 1v26.7z" fill="url(#b)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#0099db" stroke-width="2" stroke-linejoin="bevel"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="-76.5" y1="207.475" x2="-76.5" y2="234.202" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#e6ebf6"/><stop offset=".005" stop-color="#e6ebf6"/><stop offset="1" stop-color="#00afee"/></linearGradient><path d="M9 36.6h27V9.9H9v26.7z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="-74.935" y1="207.475" x2="-74.935" y2="231.384" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0096d8"/><stop offset=".005" stop-color="#0096d8"/><stop offset="1" stop-color="#005f8e"/></linearGradient><path d="M18.4 15.5c-4.3-2.3-6.4 1.7-6.4 1.7l4.4.3c-5 1.5-3.7 6.4-3.7 6.4l4.4-4c-1 2.2 1.2 3.8 1.2 3.8l1.3-5.4s4.7 5.3 6.1 10.7c-1.9.9-4.7 2.5-7 2.8-3.1.4-6.8 2.5-6.8 2.5v2.5h24l.1-6.5-2-1.1c-2-.2-4.5-.9-6-1-1.8-2.9-4.8-7.5-7.3-10l6.9.4c-1.9-4.4-6.6-2.8-6.6-2.8l3.2-2.7c-.7-.3-1.3-.4-1.9-.4-2.7 0-3.9 2.8-3.9 2.8" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="-77.513" y1="211.052" x2="-48.487" y2="182.024" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0095d6"/><stop offset="1" stop-color="#83bee7"/></linearGradient><path d="M9 49.6h54v-4.1H9v4.1z" fill="url(#e)"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="-77.514" y1="200.526" x2="-48.486" y2="171.498" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0095d6"/><stop offset="1" stop-color="#83bee7"/></linearGradient><path d="M9 60.1h54V56H9v4.1z" fill="url(#f)"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="-77.514" y1="189.999" x2="-48.486" y2="160.971" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0095d6"/><stop offset="1" stop-color="#83bee7"/></linearGradient><path d="M9 70.7h54v-4.1H9v4.1z" fill="url(#g)"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="-77.514" y1="179.472" x2="-48.486" y2="150.443" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0093d6"/><stop offset="1" stop-color="#66b4e3"/></linearGradient><path d="M9 81.2h54v-4.1H9v4.1z" fill="url(#h)"/><linearGradient id="i" gradientUnits="userSpaceOnUse" x1="-77.513" y1="168.945" x2="-48.487" y2="139.917" gradientTransform="matrix(1 0 0 -1 99 244.111)"><stop offset="0" stop-color="#0087cb"/><stop offset="1" stop-color="#4aa6dc"/></linearGradient><path d="M9 91.7h54v-4.1H9v4.1z" fill="url(#i)"/></svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g opacity=".95"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.2" y1="61.717" x2="36.2" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="36.2" y1="62.217" x2="36.2" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M42 35.4c0-2.5-1.5-4.5-3.7-5.4v-7.3c0-1.2-.9-2.1-2.1-2.1s-2.1.9-2.1 2.1V30c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v18.4c0 1.2.9 2.1 2.1 2.1s2.1-.9 2.1-2.1V41.2c0-.2 0-.3-.1-.4 2.4-.8 3.9-2.9 3.9-5.4zM36.2 37c-.9 0-1.6-.7-1.6-1.6s.7-1.6 1.6-1.6 1.6.7 1.6 1.6-.7 1.6-1.6 1.6z" fill="url(#SVGID_2_)" stroke="url(#SVGID_3_)" stroke-miterlimit="10"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="50.918" y1="61.717" x2="50.918" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="50.918" y1="62.217" x2="50.918" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M53 22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8zM50.9 47c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6s1.6.7 1.6 1.6c0 .9-.7 1.6-1.6 1.6z" fill="url(#SVGID_4_)" stroke="url(#SVGID_5_)" stroke-miterlimit="10"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="21.482" y1="61.717" x2="21.482" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="21.482" y1="62.217" x2="21.482" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M19.4 59.6c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4zm2.1-15.8c.9 0 1.6.7 1.6 1.6 0 .9-.7 1.6-1.6 1.6-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6z" fill="url(#SVGID_6_)" stroke="url(#SVGID_7_)" stroke-miterlimit="10"/></g><linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_8_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M16 91.9v-20h4v20h-4zm7.9 0v-20h3.9L36 85.3V71.8h3.8v20h-4.1l-8.1-13.1v13.1h-3.7zm20.2 0v-20h13.7v3.4h-9.7V80h8.4v3.4h-8.4v8.5h-4z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g opacity=".95"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.2" y1="61.717" x2="36.2" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.2" y1="62.217" x2="36.2" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M42 35.4c0-2.5-1.5-4.5-3.7-5.4v-7.3c0-1.2-.9-2.1-2.1-2.1s-2.1.9-2.1 2.1V30c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v18.4c0 1.2.9 2.1 2.1 2.1s2.1-.9 2.1-2.1V41.2c0-.2 0-.3-.1-.4 2.4-.8 3.9-2.9 3.9-5.4zM36.2 37c-.9 0-1.6-.7-1.6-1.6s.7-1.6 1.6-1.6 1.6.7 1.6 1.6-.7 1.6-1.6 1.6z" fill="url(#b)" stroke="url(#c)" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="50.918" y1="61.717" x2="50.918" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="50.918" y1="62.217" x2="50.918" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M53 22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8zM50.9 47c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6s1.6.7 1.6 1.6c0 .9-.7 1.6-1.6 1.6z" fill="url(#d)" stroke="url(#e)" stroke-miterlimit="10"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="21.482" y1="61.717" x2="21.482" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="21.482" y1="62.217" x2="21.482" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M19.4 59.6c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4zm2.1-15.8c.9 0 1.6.7 1.6 1.6 0 .9-.7 1.6-1.6 1.6-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6z" fill="url(#f)" stroke="url(#g)" stroke-miterlimit="10"/></g><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#h)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M16 91.9v-20h4v20h-4zm7.9 0v-20h3.9L36 85.3V71.8h3.8v20h-4.1l-8.1-13.1v13.1h-3.7zm20.2 0v-20h13.7v3.4h-9.7V80h8.4v3.4h-8.4v8.5h-4z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g opacity=".95"><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.2" y1="61.717" x2="36.2" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="36.2" y1="62.217" x2="36.2" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M42 35.4c0-2.5-1.5-4.5-3.7-5.4v-7.3c0-1.2-.9-2.1-2.1-2.1s-2.1.9-2.1 2.1V30c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v18.4c0 1.2.9 2.1 2.1 2.1s2.1-.9 2.1-2.1V41.2c0-.2 0-.3-.1-.4 2.4-.8 3.9-2.9 3.9-5.4zM36.2 37c-.9 0-1.6-.7-1.6-1.6s.7-1.6 1.6-1.6 1.6.7 1.6 1.6-.7 1.6-1.6 1.6z" fill="url(#SVGID_2_)" stroke="url(#SVGID_3_)" stroke-miterlimit="10"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="50.918" y1="61.717" x2="50.918" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="50.918" y1="62.217" x2="50.918" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M53 22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8zM50.9 47c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6s1.6.7 1.6 1.6c0 .9-.7 1.6-1.6 1.6z" fill="url(#SVGID_4_)" stroke="url(#SVGID_5_)" stroke-miterlimit="10"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="21.482" y1="61.717" x2="21.482" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="21.482" y1="62.217" x2="21.482" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M19.4 59.6c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4zm2.1-15.8c.9 0 1.6.7 1.6 1.6 0 .9-.7 1.6-1.6 1.6-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6z" fill="url(#SVGID_6_)" stroke="url(#SVGID_7_)" stroke-miterlimit="10"/></g><linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_8_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M20.3 91.9v-20h4v20h-4zm7.9 0v-20h3.9l8.2 13.4V71.8h3.8v20H40l-8-13v13.1h-3.8zm20.1 0v-20h4v20h-4z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><g opacity=".95"><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.2" y1="61.717" x2="36.2" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.2" y1="62.217" x2="36.2" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M42 35.4c0-2.5-1.5-4.5-3.7-5.4v-7.3c0-1.2-.9-2.1-2.1-2.1s-2.1.9-2.1 2.1V30c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v18.4c0 1.2.9 2.1 2.1 2.1s2.1-.9 2.1-2.1V41.2c0-.2 0-.3-.1-.4 2.4-.8 3.9-2.9 3.9-5.4zM36.2 37c-.9 0-1.6-.7-1.6-1.6s.7-1.6 1.6-1.6 1.6.7 1.6 1.6-.7 1.6-1.6 1.6z" fill="url(#b)" stroke="url(#c)" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="50.918" y1="61.717" x2="50.918" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="50.918" y1="62.217" x2="50.918" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M53 22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8zM50.9 47c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6s1.6.7 1.6 1.6c0 .9-.7 1.6-1.6 1.6z" fill="url(#d)" stroke="url(#e)" stroke-miterlimit="10"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="21.482" y1="61.717" x2="21.482" y2="20.717"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="21.482" y1="62.217" x2="21.482" y2="20.217"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M19.4 59.6c0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1v-8.4c0-.2 0-.3-.1-.4 2.2-.8 3.7-2.9 3.7-5.4 0-2.5-1.5-4.5-3.7-5.4V22.8c0-1.2-.9-2.1-2.1-2.1-1.2 0-2.1.9-2.1 2.1V40c-2.2.8-3.7 2.9-3.7 5.4 0 2.5 1.5 4.6 3.7 5.4 0 .1-.1.3-.1.4v8.4zm2.1-15.8c.9 0 1.6.7 1.6 1.6 0 .9-.7 1.6-1.6 1.6-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6z" fill="url(#f)" stroke="url(#g)" stroke-miterlimit="10"/></g><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#h)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M20.3 91.9v-20h4v20h-4zm7.9 0v-20h3.9l8.2 13.4V71.8h3.8v20H40l-8-13v13.1h-3.8zm20.1 0v-20h4v20h-4z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="path4735_1_" gradientUnits="userSpaceOnUse" x1="38" y1="65" x2="38" y2="24"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path id="path4735" d="M59.4 24s-8.4 4-15.2 4.9c-6.8.9-19.8 1.8-22.4 1.1-2.6-.6-4.4-1.4-4.4-1.4l.5 1.8-1.7 1.5.3.5.7.1 2.1.3.3.9 1.2.1.6 2s2.5.2 3.2.2c.7 0 2.2-.1 2.2-.1v.8l.5.1v.9l-1.2 1 .3.1v.4s-2.6.2-3.7.1c-.9-.3-1.1-.3-1.1-.3l-.1.1v.5h.2l.1 2 5.4-.2-.4 7v.9l-4.6-.3v-1.9h1l.1-.7.9-.2.1-.2-3.5-.8-2.6.8.4.4h.4v.6l.9.1v1.8l-1 .3.2.4.2.2v1.4h.6v6.5l-1 .2.1 1.9.6.1-.1 4.3 2.8.1-.3-4.5 4.2-.1-.3 2.3-.4 1.6 4.2.1v-4.2l2.9-.3-.1 2.6-.1 1.6h2.5l-.1-4.3.3.1.1-2h-.4l-.1-.8-.2-2.4.1-2.8h.5v-1.7l-.7.1.1-2 .8-.1v-.6l.4-.1.5-.4-2.8-.6-2.8.6.4.6h.6l.1.8h.8v1.7l-3.3-.1.1-1.9.1-1.7v-2.2l.1-2.3 6.6-.3 7.9-.5V42l-.3 3.6-.1 3.3-2.9-.1v-2.3h1.1v-.7l.4-.1v-.1h.4l.2-.3-3.3-.8-3.3.7.2.4h.4v.2h.4v.7h1v2.1h-1v.5h.3v1.8h.7l-.1 7.1-.9.2v.3h.3v1.8h.5l-.1 2.5.1 2.1 3.5.1-.1-1.9-.4-1.5v-1.4l2.9-.1-.1 2.1v2.2l1.7.1 2.3-.1.7-.2-.4-1.2-.1-1.7-.2-1.3 2.8-.1-.1 1.6V64l1.1.1h1.1l.5-.2-.3-2.4-.1-1.8.5-.1V58h.1v-.4h-.5l-.1-1.2v-5.2h.4v-1.7h.2v-.3l-.6-.1v-2l1-.1-.1-.7h.4v-.1l.6-.3-3-.6-3.2.7.2.4h.5v.2h.4v.8h1l.1 1.9h-3.5l-.4-2.9-.3-1.5-.3-2.9.2-1.6 7-.5v-2.4l.4-.1V37l-.3-.2s-3.8.6-5.1.7c-.3 0-.3 0-.6.1v-.4l-1.5-.8v-.9h.5v-1.2s3-.2 4.1-.5c1.1-.3 2.7-.5 2.7-.5l.7-2 1.5-.4.1-.3 3.3-.9.4-.3-1.3-2.8.1-.6.6-.3.5-1.4-.1-.3zm-16 10.5v1h.8v1l-1.5 1-.1.3h.6v.2l-4.5.2v-.7l.2-.3v-.7l.1-.3v-.4l.2-.8 4.2-.5zm-9.4.9l-.1.7.4.4v.7l.3.5-.1.6.2.4-4.6.2v-.2l.5-.1v-.2l-1.2-.6-.1-1h.6v-1.1l4.1-.3zM40.8 51l2.8.2-.1 3.8.4 3.1-3-.1-.1-7zm-18.7.1l4.5.2-.5 2.7v2.2l.3 1.2-4.4.2.1-6.5zm28.6.1v6.4l-2.8.2-.1-3.4-.3-3.2h3.2zm-21.5.1h3.3v6l-3.1.1-.2-1.9v-4.2z" fill="url(#path4735_1_)"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_2_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M29.2 71.8h4v12.7c0 1.7-.1 2.9-.4 3.8-.4 1.2-1.1 2.1-2.1 2.8-1 .7-2.4 1.1-4.1 1.1-2 0-3.5-.6-4.6-1.7s-1.6-2.7-1.6-4.9l3.8-.4c0 1.1.2 2 .5 2.4.4.7 1.1 1.1 2 1.1.9 0 1.5-.3 1.9-.8.4-.5.6-1.6.6-3.2V71.8zm20.4 16.5v3.6H36.2c.1-1.3.6-2.6 1.3-3.8.7-1.2 2.2-2.8 4.3-4.8 1.7-1.6 2.8-2.7 3.2-3.3.5-.8.8-1.6.8-2.4 0-.9-.2-1.5-.7-2-.5-.5-1.1-.7-1.9-.7-.8 0-1.4.2-1.9.7-.5.5-.7 1.3-.8 2.4l-3.8-.4c.2-2.1.9-3.6 2.1-4.6s2.7-1.4 4.5-1.4c2 0 3.5.5 4.7 1.6 1.1 1.1 1.7 2.4 1.7 4 0 .9-.2 1.8-.5 2.6s-.8 1.7-1.5 2.6c-.5.6-1.3 1.4-2.5 2.6-1.2 1.1-2 1.9-2.3 2.2-.3.4-.6.7-.8 1.1h7.5z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="38" y1="65" x2="38" y2="24"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M59.4 24s-8.4 4-15.2 4.9c-6.8.9-19.8 1.8-22.4 1.1-2.6-.6-4.4-1.4-4.4-1.4l.5 1.8-1.7 1.5.3.5.7.1 2.1.3.3.9 1.2.1.6 2s2.5.2 3.2.2c.7 0 2.2-.1 2.2-.1v.8l.5.1v.9l-1.2 1 .3.1v.4s-2.6.2-3.7.1c-.9-.3-1.1-.3-1.1-.3l-.1.1v.5h.2l.1 2 5.4-.2-.4 7v.9l-4.6-.3v-1.9h1l.1-.7.9-.2.1-.2-3.5-.8-2.6.8.4.4h.4v.6l.9.1v1.8l-1 .3.2.4.2.2v1.4h.6v6.5l-1 .2.1 1.9.6.1-.1 4.3 2.8.1-.3-4.5 4.2-.1-.3 2.3-.4 1.6 4.2.1v-4.2l2.9-.3-.1 2.6-.1 1.6h2.5l-.1-4.3.3.1.1-2h-.4l-.1-.8-.2-2.4.1-2.8h.5v-1.7l-.7.1.1-2 .8-.1v-.6l.4-.1.5-.4-2.8-.6-2.8.6.4.6h.6l.1.8h.8v1.7l-3.3-.1.1-1.9.1-1.7v-2.2l.1-2.3 6.6-.3 7.9-.5V42l-.3 3.6-.1 3.3-2.9-.1v-2.3h1.1v-.7l.4-.1v-.1h.4l.2-.3-3.3-.8-3.3.7.2.4h.4v.2h.4v.7h1v2.1h-1v.5h.3v1.8h.7l-.1 7.1-.9.2v.3h.3v1.8h.5l-.1 2.5.1 2.1 3.5.1-.1-1.9-.4-1.5v-1.4l2.9-.1-.1 2.1v2.2l1.7.1 2.3-.1.7-.2-.4-1.2-.1-1.7-.2-1.3 2.8-.1-.1 1.6V64l1.1.1h1.1l.5-.2-.3-2.4-.1-1.8.5-.1V58h.1v-.4h-.5l-.1-1.2v-5.2h.4v-1.7h.2v-.3l-.6-.1v-2l1-.1-.1-.7h.4v-.1l.6-.3-3-.6-3.2.7.2.4h.5v.2h.4v.8h1l.1 1.9h-3.5l-.4-2.9-.3-1.5-.3-2.9.2-1.6 7-.5v-2.4l.4-.1V37l-.3-.2s-3.8.6-5.1.7c-.3 0-.3 0-.6.1v-.4l-1.5-.8v-.9h.5v-1.2s3-.2 4.1-.5c1.1-.3 2.7-.5 2.7-.5l.7-2 1.5-.4.1-.3 3.3-.9.4-.3-1.3-2.8.1-.6.6-.3.5-1.4-.1-.3zm-16 10.5v1h.8v1l-1.5 1-.1.3h.6v.2l-4.5.2v-.7l.2-.3v-.7l.1-.3v-.4l.2-.8 4.2-.5zm-9.4.9l-.1.7.4.4v.7l.3.5-.1.6.2.4-4.6.2v-.2l.5-.1v-.2l-1.2-.6-.1-1h.6v-1.1l4.1-.3zM40.8 51l2.8.2-.1 3.8.4 3.1-3-.1-.1-7zm-18.7.1l4.5.2-.5 2.7v2.2l.3 1.2-4.4.2.1-6.5zm28.6.1v6.4l-2.8.2-.1-3.4-.3-3.2h3.2zm-21.5.1h3.3v6l-3.1.1-.2-1.9v-4.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M29.2 71.8h4v12.7c0 1.7-.1 2.9-.4 3.8-.4 1.2-1.1 2.1-2.1 2.8-1 .7-2.4 1.1-4.1 1.1-2 0-3.5-.6-4.6-1.7s-1.6-2.7-1.6-4.9l3.8-.4c0 1.1.2 2 .5 2.4.4.7 1.1 1.1 2 1.1.9 0 1.5-.3 1.9-.8.4-.5.6-1.6.6-3.2V71.8zm20.4 16.5v3.6H36.2c.1-1.3.6-2.6 1.3-3.8.7-1.2 2.2-2.8 4.3-4.8 1.7-1.6 2.8-2.7 3.2-3.3.5-.8.8-1.6.8-2.4 0-.9-.2-1.5-.7-2-.5-.5-1.1-.7-1.9-.7-.8 0-1.4.2-1.9.7-.5.5-.7 1.3-.8 2.4l-3.8-.4c.2-2.1.9-3.6 2.1-4.6s2.7-1.4 4.5-1.4c2 0 3.5.5 4.7 1.6 1.1 1.1 1.7 2.4 1.7 4 0 .9-.2 1.8-.5 2.6s-.8 1.7-1.5 2.6c-.5.6-1.3 1.4-2.5 2.6-1.2 1.1-2 1.9-2.3 2.2-.3.4-.6.7-.8 1.1h7.5z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.5" y1="63.25" x2="36.5" y2="23.65"><stop offset="0" stop-color="#869ba6"/><stop offset=".379" stop-color="#8399a4"/><stop offset=".576" stop-color="#7b929e"/><stop offset=".731" stop-color="#6d8694"/><stop offset=".863" stop-color="#5a7785"/><stop offset=".981" stop-color="#426373"/><stop offset=".99" stop-color="#416271"/></linearGradient><path d="M58.7 43.5c0-2.9-3.7-5.7-9.3-7.4 1.3-5.7.7-10.3-1.8-11.8-.6-.3-1.3-.5-2.1-.5v2.1c.4 0 .8.1 1 .3 1.2.7 1.8 3.4 1.4 6.8-.1.9-.3 1.7-.4 2.7-1.8-.4-3.7-.8-5.7-1-1.2-1.7-2.5-3.2-3.8-4.5 3-2.7 5.7-4.3 7.6-4.3v-2.1c-2.5 0-5.7 1.8-9.1 4.9-3.3-3.1-6.6-4.8-9.1-4.8V26c1.9 0 4.6 1.5 7.6 4.2-1.3 1.4-2.6 2.8-3.8 4.5-2.1.3-4 .5-5.7 1-.2-.9-.3-1.8-.5-2.7-.4-3.4.1-6.2 1.3-6.8.3-.2 1.2-.3 1.2-.3v-2.1h-.2c-.8 0-1.5.2-2.1.5-2.6 1.5-3.1 6.1-1.8 11.8-5.6 1.7-9.3 4.5-9.3 7.4s3.7 5.7 9.3 7.4c-1.3 5.7-.7 10.3 1.8 11.8.6.3 1.3.5 2.1.5 2.5 0 5.7-1.8 9.1-4.9 3.3 3.1 6.6 4.8 9.1 4.8.8 0 1.5-.2 2.1-.5 2.6-1.5 3.1-6.1 1.8-11.8 5.7-1.6 9.3-4.4 9.3-7.3zm-11.8-6.1c-.3 1.2-.8 2.4-1.2 3.6-.3-.7-.8-1.5-1.2-2.1-.4-.7-.9-1.5-1.3-2.1 1.3.1 2.5.4 3.7.6zm-4.2 9.7c-.7 1.2-1.5 2.4-2.2 3.4-1.3.2-2.7.3-4 .3s-2.7-.1-4.1-.2c-.8-1.1-1.5-2.2-2.2-3.4-.7-1.2-1.3-2.4-1.9-3.6.6-1.2 1.2-2.4 1.9-3.6.7-1.2 1.5-2.4 2.2-3.4 1.4-.1 2.7-.2 4.1-.2s2.7.1 4.1.2c.8 1.1 1.5 2.2 2.2 3.4.7 1.2 1.3 2.4 1.9 3.6-.6 1.1-1.3 2.3-2 3.5zm3-1.2c.5 1.2.9 2.4 1.3 3.6-1.2.3-2.5.5-3.8.7.4-.7.9-1.5 1.3-2.1.5-.7.8-1.4 1.2-2.2zm-9.2 9.7c-.9-.9-1.7-1.9-2.5-2.9.9 0 1.6.1 2.5.1.9 0 1.7 0 2.5-.1-.8 1.1-1.6 2-2.5 2.9zm-6.8-5.4c-1.3-.2-2.6-.4-3.7-.7.3-1.2.8-2.4 1.2-3.6.3.7.8 1.5 1.2 2.1.5.9.9 1.6 1.3 2.2zm6.8-18.8c.9.9 1.7 1.9 2.5 2.9-.9 0-1.6-.1-2.5-.1-.9 0-1.7 0-2.5.1.8-1.1 1.6-2 2.5-2.9zm-6.8 5.3c-.4.7-.9 1.5-1.3 2.1-.4.7-.8 1.5-1.2 2.1-.5-1.2-.9-2.4-1.3-3.6 1.3-.1 2.6-.4 3.8-.6zm-8.2 11.4c-3.3-1.4-5.3-3.2-5.3-4.6 0-1.5 2.1-3.3 5.3-4.6.8-.3 1.6-.6 2.5-.9.5 1.8 1.2 3.6 2.1 5.6-.9 1.9-1.5 3.8-2.1 5.5-.8-.4-1.6-.6-2.5-1zM26.4 61c-1.2-.7-1.8-3.4-1.4-6.8.1-.9.3-1.7.4-2.7 1.8.4 3.7.8 5.7 1 1.2 1.7 2.5 3.2 3.8 4.5-3 2.7-5.7 4.3-7.6 4.3-.2 0-.6-.1-.9-.3zM48 54.1c.4 3.4-.1 6.2-1.3 6.8-.3.2-.6.3-1 .3-1.9 0-4.6-1.5-7.6-4.2 1.3-1.4 2.6-2.8 3.8-4.5 2.1-.3 4-.5 5.7-1 .1.9.3 1.8.4 2.6zm3.5-6c-.8.3-1.6.6-2.5.9-.5-1.8-1.2-3.6-2.1-5.6.9-1.9 1.5-3.8 2.1-5.5.9.3 1.7.6 2.6.9 3.3 1.4 5.3 3.2 5.3 4.6-.2 1.5-2.3 3.3-5.4 4.7z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="36.5" y1="47.598" x2="36.5" y2="39.387"><stop offset="0" stop-color="#869ba6"/><stop offset=".379" stop-color="#8399a4"/><stop offset=".576" stop-color="#7b929e"/><stop offset=".731" stop-color="#6d8694"/><stop offset=".863" stop-color="#5a7785"/><stop offset=".981" stop-color="#426373"/><stop offset=".99" stop-color="#416271"/></linearGradient><circle cx="36.5" cy="43.5" r="4.1" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_4_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M19.6 71.8h4v12.7c0 1.7-.1 2.9-.4 3.8-.4 1.2-1.1 2.1-2.1 2.8-1 .7-2.4 1.1-4.1 1.1-2 0-3.5-.6-4.6-1.7s-1.6-2.7-1.6-4.9l3.8-.4c0 1.1.2 2 .5 2.4.4.7 1.1 1.1 2 1.1.9 0 1.5-.3 1.9-.8.4-.5.6-1.6.6-3.2V71.8zm7.3 13.5l3.9-.4c.2 1.3.7 2.3 1.4 2.9s1.7.9 2.9.9c1.3 0 2.3-.3 2.9-.8s1-1.2 1-1.9c0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.9.6-.9 1.4-1.6 2.5-2 1.1-.5 2.4-.7 3.9-.7 2.5 0 4.4.6 5.7 1.7s1.9 2.6 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2s-1.4-.7-2.6-.7c-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3 2 .5 3.4.9 4.4 1.4s1.7 1.2 2.2 2 .8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2s-1.5 1.7-2.7 2.2-2.6.7-4.4.7c-2.5 0-4.5-.6-5.8-1.8-1.2-.9-2-2.6-2.3-4.8zm17.7 6.5l6.8-10.5-6.2-9.6H50l4 6.4 3.9-6.4h4.7l-6.2 9.7 6.8 10.3h-4.9l-4.4-6.9-4.5 6.9h-4.8z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.5" y1="63.25" x2="36.5" y2="23.65"><stop offset="0" stop-color="#869ba6"/><stop offset=".379" stop-color="#8399a4"/><stop offset=".576" stop-color="#7b929e"/><stop offset=".731" stop-color="#6d8694"/><stop offset=".863" stop-color="#5a7785"/><stop offset=".981" stop-color="#426373"/><stop offset=".99" stop-color="#416271"/></linearGradient><path d="M58.7 43.5c0-2.9-3.7-5.7-9.3-7.4 1.3-5.7.7-10.3-1.8-11.8-.6-.3-1.3-.5-2.1-.5v2.1c.4 0 .8.1 1 .3 1.2.7 1.8 3.4 1.4 6.8-.1.9-.3 1.7-.4 2.7-1.8-.4-3.7-.8-5.7-1-1.2-1.7-2.5-3.2-3.8-4.5 3-2.7 5.7-4.3 7.6-4.3v-2.1c-2.5 0-5.7 1.8-9.1 4.9-3.3-3.1-6.6-4.8-9.1-4.8V26c1.9 0 4.6 1.5 7.6 4.2-1.3 1.4-2.6 2.8-3.8 4.5-2.1.3-4 .5-5.7 1-.2-.9-.3-1.8-.5-2.7-.4-3.4.1-6.2 1.3-6.8.3-.2 1.2-.3 1.2-.3v-2.1h-.2c-.8 0-1.5.2-2.1.5-2.6 1.5-3.1 6.1-1.8 11.8-5.6 1.7-9.3 4.5-9.3 7.4s3.7 5.7 9.3 7.4c-1.3 5.7-.7 10.3 1.8 11.8.6.3 1.3.5 2.1.5 2.5 0 5.7-1.8 9.1-4.9 3.3 3.1 6.6 4.8 9.1 4.8.8 0 1.5-.2 2.1-.5 2.6-1.5 3.1-6.1 1.8-11.8 5.7-1.6 9.3-4.4 9.3-7.3zm-11.8-6.1c-.3 1.2-.8 2.4-1.2 3.6-.3-.7-.8-1.5-1.2-2.1-.4-.7-.9-1.5-1.3-2.1 1.3.1 2.5.4 3.7.6zm-4.2 9.7c-.7 1.2-1.5 2.4-2.2 3.4-1.3.2-2.7.3-4 .3s-2.7-.1-4.1-.2c-.8-1.1-1.5-2.2-2.2-3.4-.7-1.2-1.3-2.4-1.9-3.6.6-1.2 1.2-2.4 1.9-3.6.7-1.2 1.5-2.4 2.2-3.4 1.4-.1 2.7-.2 4.1-.2s2.7.1 4.1.2c.8 1.1 1.5 2.2 2.2 3.4.7 1.2 1.3 2.4 1.9 3.6-.6 1.1-1.3 2.3-2 3.5zm3-1.2c.5 1.2.9 2.4 1.3 3.6-1.2.3-2.5.5-3.8.7.4-.7.9-1.5 1.3-2.1.5-.7.8-1.4 1.2-2.2zm-9.2 9.7c-.9-.9-1.7-1.9-2.5-2.9.9 0 1.6.1 2.5.1.9 0 1.7 0 2.5-.1-.8 1.1-1.6 2-2.5 2.9zm-6.8-5.4c-1.3-.2-2.6-.4-3.7-.7.3-1.2.8-2.4 1.2-3.6.3.7.8 1.5 1.2 2.1.5.9.9 1.6 1.3 2.2zm6.8-18.8c.9.9 1.7 1.9 2.5 2.9-.9 0-1.6-.1-2.5-.1-.9 0-1.7 0-2.5.1.8-1.1 1.6-2 2.5-2.9zm-6.8 5.3c-.4.7-.9 1.5-1.3 2.1-.4.7-.8 1.5-1.2 2.1-.5-1.2-.9-2.4-1.3-3.6 1.3-.1 2.6-.4 3.8-.6zm-8.2 11.4c-3.3-1.4-5.3-3.2-5.3-4.6 0-1.5 2.1-3.3 5.3-4.6.8-.3 1.6-.6 2.5-.9.5 1.8 1.2 3.6 2.1 5.6-.9 1.9-1.5 3.8-2.1 5.5-.8-.4-1.6-.6-2.5-1zM26.4 61c-1.2-.7-1.8-3.4-1.4-6.8.1-.9.3-1.7.4-2.7 1.8.4 3.7.8 5.7 1 1.2 1.7 2.5 3.2 3.8 4.5-3 2.7-5.7 4.3-7.6 4.3-.2 0-.6-.1-.9-.3zM48 54.1c.4 3.4-.1 6.2-1.3 6.8-.3.2-.6.3-1 .3-1.9 0-4.6-1.5-7.6-4.2 1.3-1.4 2.6-2.8 3.8-4.5 2.1-.3 4-.5 5.7-1 .1.9.3 1.8.4 2.6zm3.5-6c-.8.3-1.6.6-2.5.9-.5-1.8-1.2-3.6-2.1-5.6.9-1.9 1.5-3.8 2.1-5.5.9.3 1.7.6 2.6.9 3.3 1.4 5.3 3.2 5.3 4.6-.2 1.5-2.3 3.3-5.4 4.7z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.5" y1="47.598" x2="36.5" y2="39.387"><stop offset="0" stop-color="#869ba6"/><stop offset=".379" stop-color="#8399a4"/><stop offset=".576" stop-color="#7b929e"/><stop offset=".731" stop-color="#6d8694"/><stop offset=".863" stop-color="#5a7785"/><stop offset=".981" stop-color="#426373"/><stop offset=".99" stop-color="#416271"/></linearGradient><circle cx="36.5" cy="43.5" r="4.1" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#d)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M19.6 71.8h4v12.7c0 1.7-.1 2.9-.4 3.8-.4 1.2-1.1 2.1-2.1 2.8-1 .7-2.4 1.1-4.1 1.1-2 0-3.5-.6-4.6-1.7s-1.6-2.7-1.6-4.9l3.8-.4c0 1.1.2 2 .5 2.4.4.7 1.1 1.1 2 1.1.9 0 1.5-.3 1.9-.8.4-.5.6-1.6.6-3.2V71.8zm7.3 13.5l3.9-.4c.2 1.3.7 2.3 1.4 2.9s1.7.9 2.9.9c1.3 0 2.3-.3 2.9-.8s1-1.2 1-1.9c0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.9.6-.9 1.4-1.6 2.5-2 1.1-.5 2.4-.7 3.9-.7 2.5 0 4.4.6 5.7 1.7s1.9 2.6 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2s-1.4-.7-2.6-.7c-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3 2 .5 3.4.9 4.4 1.4s1.7 1.2 2.2 2 .8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2s-1.5 1.7-2.7 2.2-2.6.7-4.4.7c-2.5 0-4.5-.6-5.8-1.8-1.2-.9-2-2.6-2.3-4.8zm17.7 6.5l6.8-10.5-6.2-9.6H50l4 6.4 3.9-6.4h4.7l-6.2 9.7 6.8 10.3h-4.9l-4.4-6.9-4.5 6.9h-4.8z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="path1228_1_" gradientUnits="userSpaceOnUse" x1="486.311" y1="644.112" x2="486.31" y2="742.085" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#742d2d"/><stop offset=".005" stop-color="#827100"/><stop offset="1" stop-color="#ffee91"/></linearGradient><path id="path1228" d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill="url(#path1228_1_)"/><path id="path1230" d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill-opacity="0" stroke="#827100" stroke-width="2"/><path d="M17 91.6V76h3.2v6.9l6.4-6.9H31l-6 6.1 6.3 9.5h-4.1l-4.3-7.3-2.6 2.6v4.7H17zm16 0V76h10.8v2.6h-7.6v3.7h6.6V85h-6.6v6.6H33zm15.3-8.4c-.8-.3-1.4-.8-1.7-1.3-.4-.6-.5-1.2-.5-1.9 0-1.2.4-2.1 1.2-2.9.8-.8 2-1.1 3.5-1.1s2.7.4 3.5 1.1c.8.8 1.2 1.7 1.2 2.9 0 .7-.2 1.4-.6 1.9s-.9 1-1.6 1.3c.9.3 1.5.9 2 1.5s.7 1.4.7 2.3c0 1.4-.5 2.6-1.4 3.5-.9.9-2.2 1.3-3.7 1.3-1.4 0-2.6-.4-3.6-1.1-1.1-.9-1.7-2.1-1.7-3.6 0-.8.2-1.6.6-2.3.6-.7 1.2-1.2 2.1-1.6zm.4 3.6c0 .8.2 1.5.6 1.9.4.5 1 .7 1.6.7.6 0 1.1-.2 1.6-.7.4-.4.6-1.1.6-1.9 0-.7-.2-1.3-.6-1.8-.4-.4-.9-.7-1.6-.7-.7 0-1.3.3-1.7.8-.3.6-.5 1.1-.5 1.7zm.3-6.6c0 .6.2 1.1.5 1.4s.8.5 1.4.5c.6 0 1-.2 1.4-.5.3-.3.5-.8.5-1.4 0-.6-.2-1-.5-1.3-.3-.3-.8-.5-1.4-.5-.6 0-1 .2-1.4.5-.4.3-.5.7-.5 1.3z" fill="#fefefe"/><linearGradient id="path1236_1_" gradientUnits="userSpaceOnUse" x1="305.171" y1="859.444" x2="305.171" y2="814.684" gradientTransform="scale(1 -1) rotate(-15.79 -2993.474 1367.872)"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path id="path1236" d="M62.7 34.5c-.3-.7-.7-1.2-1.3-1.7-.1.5-.3 1.1-.6 1.6L44.4 59.6c-.6.9-2 1.2-3 .9l-26.1-7.3c-1.6-.4-3.4-1.3-3.5-3.1-.1-.7 0-.9.4-1.2.4-.3.8-.2 1.2-.1L38 55.6c3.6 1 4.6.3 7.2-3.7l15-23.1c.8-1.2 1-2.6.5-3.8-.4-1.2-1.4-2.1-2.8-2.5l-21.5-6c-.5-.1-1-.1-1.5-.2l.1-.1c-3.3-2-4.6 1.8-6.3 3.2-.6.5-1.5.9-1.7 1.4-.2.5-.1 1-.3 1.5-.6 1.4-2.5 3.8-3.4 4.5-.6.4-1.3.5-1.7 1.1-.3.4-.2 1.1-.4 1.7-.5 1.3-2.2 3.5-3.4 4.6-.4.4-1.1.7-1.4 1.2-.3.4-.2 1.1-.5 1.6-.7 1.4-2.3 3.4-3.6 4.5-.7.6-1.4.9-1.7 1.6-.2.3 0 .8-.2 1.2-.3.7-.6 1.2-.8 1.7-.7 1-1.1 2.2-1 3.6.2 3.2 2.7 6.3 5.5 7.1L40.3 64c2.4.7 5.5-.5 6.8-2.6l15-23.1c.8-1.3 1-2.6.6-3.8zm-30.2-8.3l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.2-.7-.7-.4-1.1zm-4.4 6.4l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.1-.7-.6-.4-1.1z" fill="url(#path1236_1_)"/><linearGradient id="path1238_1_" gradientUnits="userSpaceOnUse" x1="495.437" y1="715.271" x2="508.982" y2="728.818" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#feea86"/><stop offset="1" stop-color="#867200"/></linearGradient><path id="path1238" d="M45.3 1l27.1 26.7H45.3V1z" fill="url(#path1238_1_)"/><path id="path1240" d="M45.3 1l27.1 26.7H45.3V1z" fill-opacity="0" stroke="#827100" stroke-width="2" stroke-linejoin="round"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="486.311" y1="644.112" x2="486.31" y2="742.085" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#742d2d"/><stop offset=".005" stop-color="#827100"/><stop offset="1" stop-color="#ffee91"/></linearGradient><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill="url(#a)"/><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill-opacity="0" stroke="#827100" stroke-width="2"/><path d="M17 91.6V76h3.2v6.9l6.4-6.9H31l-6 6.1 6.3 9.5h-4.1l-4.3-7.3-2.6 2.6v4.7H17zm16 0V76h10.8v2.6h-7.6v3.7h6.6V85h-6.6v6.6H33zm15.3-8.4c-.8-.3-1.4-.8-1.7-1.3-.4-.6-.5-1.2-.5-1.9 0-1.2.4-2.1 1.2-2.9.8-.8 2-1.1 3.5-1.1s2.7.4 3.5 1.1c.8.8 1.2 1.7 1.2 2.9 0 .7-.2 1.4-.6 1.9s-.9 1-1.6 1.3c.9.3 1.5.9 2 1.5s.7 1.4.7 2.3c0 1.4-.5 2.6-1.4 3.5-.9.9-2.2 1.3-3.7 1.3-1.4 0-2.6-.4-3.6-1.1-1.1-.9-1.7-2.1-1.7-3.6 0-.8.2-1.6.6-2.3.6-.7 1.2-1.2 2.1-1.6zm.4 3.6c0 .8.2 1.5.6 1.9.4.5 1 .7 1.6.7.6 0 1.1-.2 1.6-.7.4-.4.6-1.1.6-1.9 0-.7-.2-1.3-.6-1.8-.4-.4-.9-.7-1.6-.7-.7 0-1.3.3-1.7.8-.3.6-.5 1.1-.5 1.7zm.3-6.6c0 .6.2 1.1.5 1.4s.8.5 1.4.5c.6 0 1-.2 1.4-.5.3-.3.5-.8.5-1.4 0-.6-.2-1-.5-1.3-.3-.3-.8-.5-1.4-.5-.6 0-1 .2-1.4.5-.4.3-.5.7-.5 1.3z" fill="#fefefe"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="305.171" y1="859.444" x2="305.171" y2="814.684" gradientTransform="scale(1 -1) rotate(-15.79 -2993.474 1367.872)"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path d="M62.7 34.5c-.3-.7-.7-1.2-1.3-1.7-.1.5-.3 1.1-.6 1.6L44.4 59.6c-.6.9-2 1.2-3 .9l-26.1-7.3c-1.6-.4-3.4-1.3-3.5-3.1-.1-.7 0-.9.4-1.2.4-.3.8-.2 1.2-.1L38 55.6c3.6 1 4.6.3 7.2-3.7l15-23.1c.8-1.2 1-2.6.5-3.8-.4-1.2-1.4-2.1-2.8-2.5l-21.5-6c-.5-.1-1-.1-1.5-.2l.1-.1c-3.3-2-4.6 1.8-6.3 3.2-.6.5-1.5.9-1.7 1.4-.2.5-.1 1-.3 1.5-.6 1.4-2.5 3.8-3.4 4.5-.6.4-1.3.5-1.7 1.1-.3.4-.2 1.1-.4 1.7-.5 1.3-2.2 3.5-3.4 4.6-.4.4-1.1.7-1.4 1.2-.3.4-.2 1.1-.5 1.6-.7 1.4-2.3 3.4-3.6 4.5-.7.6-1.4.9-1.7 1.6-.2.3 0 .8-.2 1.2-.3.7-.6 1.2-.8 1.7-.7 1-1.1 2.2-1 3.6.2 3.2 2.7 6.3 5.5 7.1L40.3 64c2.4.7 5.5-.5 6.8-2.6l15-23.1c.8-1.3 1-2.6.6-3.8zm-30.2-8.3l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.2-.7-.7-.4-1.1zm-4.4 6.4l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.1-.7-.6-.4-1.1z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="495.437" y1="715.271" x2="508.982" y2="728.818" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#feea86"/><stop offset="1" stop-color="#867200"/></linearGradient><path d="M45.3 1l27.1 26.7H45.3V1z" fill="url(#c)"/><path d="M45.3 1l27.1 26.7H45.3V1z" fill-opacity="0" stroke="#827100" stroke-width="2" stroke-linejoin="round"/></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M9.4 91.1V71.2h4V80l8.1-8.8H27L19.4 79l7.9 12.1h-5.2l-5.5-9.3-3.3 3.3v6H9.4zm19-6.5l3.9-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 2.9-.8s1-1.2 1-1.9c0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.5-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6s1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2-.6-.4-1.4-.7-2.6-.7-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.7.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2 .5.9.8 1.9.8 3.2 0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2s-2.6.7-4.3.7c-2.5 0-4.5-.6-5.8-1.7-1.3-1-2.1-2.7-2.4-4.9zm19.7 6.5V71.2h4V79H60v-7.8h4V91h-4v-8.7h-7.9V91h-4z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.75" y1="64" x2="36.75" y2="17.5"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M60 17.5H13.5V64H60V17.5zm-37.2 9.3h-4.6v-4.6h4.6v4.6zm32.5 0H27.5v-4.6h27.9v4.6zm0 32.5H18.1V31.5h37.2v27.8z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="28.109" y1="52.694" x2="28.109" y2="35.456"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M25.4 35.5l-3.2 3.2 5.3 5.4-5.3 5.3 3.2 3.3 8.7-8.6z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="37.75" y1="55.7" x2="37.75" y2="51.05"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M33.1 51h9.3v4.7h-9.3z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_5_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.231" x2="36.632" y2="24.231"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="36.632" y1="66.606" x2="36.632" y2="23.856"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M30.2 40.4h12.9v3.2H30.2v-3.2zm0 6.4h12.9V50H30.2v-3.2zm0 6.5h12.9v3.2H30.2v-3.2zm22.6-29.1H26.9c-3.6 0-6.5 2.9-6.5 6.5v29.1H14c0 3.6 2.9 6.5 6.5 6.5h25.8c3.6 0 6.5-2.9 6.5-6.5V33.9h6.5v-3.2c-.1-3.6-2.9-6.5-6.5-6.5zm-3.2 35c0 2.1-1.7 3.8-3.8 3.8H22.1c1.6-1.1 1.6-3.2 1.6-3.2V30.7c0-1.8 1.4-3.2 3.2-3.2 1.8 0 3.2 1.4 3.2 3.2v3.2h19.4v25.3zM33.4 30.7v-3.2h19.4c2.9 0 3.2 1.8 3.2 3.2H33.4z" fill="url(#b)" stroke="url(#c)" stroke-width=".75" stroke-miterlimit="10"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#d)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M12.5 91.9V74.7H16v7.6l7-7.6h4.7l-6.5 6.7L28 91.9h-4.5l-4.7-8.1-2.8 2.9v5.2h-3.5zm16.4-5.6l3.4-.3c.2 1.1.6 2 1.2 2.5s1.5.8 2.5.8c1.1 0 2-.2 2.5-.7s.8-1 .8-1.7c0-.4-.1-.8-.4-1s-.7-.5-1.2-.7c-.4-.1-1.3-.4-2.8-.8-1.9-.5-3.2-1-3.9-1.7-1.1-.9-1.6-2.1-1.6-3.5 0-.9.2-1.7.7-2.5s1.2-1.3 2.1-1.7 2.1-.6 3.4-.6c2.2 0 3.8.5 4.9 1.4s1.7 2.2 1.7 3.8l-3.5.2c-.1-.9-.5-1.5-1-1.9s-1.2-.6-2.2-.6c-1 0-1.8.2-2.4.6-.4.3-.6.6-.6 1.1 0 .4.2.8.5 1 .4.4 1.5.8 3.2 1.1s2.9.8 3.7 1.2 1.4 1 1.9 1.7.7 1.7.7 2.7c0 1-.3 1.9-.8 2.8s-1.3 1.5-2.3 1.9-2.2.6-3.7.6c-2.2 0-3.8-.5-5-1.5s-1.6-2.3-1.8-4.2zm16.9 5.6V74.7h3.5v6.8H56v-6.8h3.5v17.2H56v-7.5h-6.8v7.5h-3.4z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M12.6 89.8V74.2h3.2v13h8v2.7H12.6zm13.4 0V74.1h3.2v15.7H26zM42.5 84l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.8-.7-5.2-2.1-1.4-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9-.6-.5-1.3-.7-2.2-.7-1.2 0-2.1.4-2.9 1.3S35 80 35 81.8c0 2 .4 3.4 1.1 4.3s1.7 1.3 2.8 1.3c.9 0 1.6-.3 2.2-.8s1.1-1.4 1.4-2.6zm4.2 5.8l5.4-8.2-4.9-7.5H51l3.2 5.1 3.1-5.1H61l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_3_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M12.6 89.8V74.2h3.2v13h8v2.7H12.6zm13.4 0V74.1h3.2v15.7H26zM42.5 84l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.8-.7-5.2-2.1-1.4-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2.1-6.1 1.4-1.4 3.2-2.2 5.4-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.2.8c-.2-.8-.6-1.5-1.2-1.9-.6-.5-1.3-.7-2.2-.7-1.2 0-2.1.4-2.9 1.3S35 80 35 81.8c0 2 .4 3.4 1.1 4.3s1.7 1.3 2.8 1.3c.9 0 1.6-.3 2.2-.8s1.1-1.4 1.4-2.6zm4.2 5.8l5.4-8.2-4.9-7.5H51l3.2 5.1 3.1-5.1H61l-4.9 7.6 5.4 8.1h-3.9l-3.5-5.4-3.5 5.4h-3.9z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="path1228_1_" gradientUnits="userSpaceOnUse" x1="486.311" y1="644.112" x2="486.31" y2="742.085" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#742d2d"/><stop offset=".005" stop-color="#827100"/><stop offset="1" stop-color="#ffee91"/></linearGradient><path id="path1228" d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill="url(#path1228_1_)"/><path id="path1230" d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill-opacity="0" stroke="#827100" stroke-width="2"/><path d="M21.4 91.6V76.1h3.2V89h7.9v2.6H21.4zm13.3 0V76h3.2v15.6h-3.2zm9.8 0v-13h-4.7V76h12.6v2.6h-4.7v12.9h-3.2z" fill="#fefefe"/><linearGradient id="path1236_1_" gradientUnits="userSpaceOnUse" x1="305.171" y1="859.444" x2="305.171" y2="814.684" gradientTransform="scale(1 -1) rotate(-15.79 -2993.474 1367.872)"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path id="path1236" d="M62.7 34.5c-.3-.7-.7-1.2-1.3-1.7-.1.5-.3 1.1-.6 1.6L44.4 59.6c-.6.9-2 1.2-3 .9l-26.1-7.3c-1.6-.4-3.4-1.3-3.5-3.1-.1-.7 0-.9.4-1.2.4-.3.8-.2 1.2-.1L38 55.6c3.6 1 4.6.3 7.2-3.7l15-23.1c.8-1.2 1-2.6.5-3.8-.4-1.2-1.4-2.1-2.8-2.5l-21.5-6c-.5-.1-1-.1-1.5-.2l.1-.1c-3.3-2-4.6 1.8-6.3 3.2-.6.5-1.5.9-1.7 1.4-.2.5-.1 1-.3 1.5-.6 1.4-2.5 3.8-3.4 4.5-.6.4-1.3.5-1.7 1.1-.3.4-.2 1.1-.4 1.7-.5 1.3-2.2 3.5-3.4 4.6-.4.4-1.1.7-1.4 1.2-.3.4-.2 1.1-.5 1.6-.7 1.4-2.3 3.4-3.6 4.5-.7.6-1.4.9-1.7 1.6-.2.3 0 .8-.2 1.2-.3.7-.6 1.2-.8 1.7-.7 1-1.1 2.2-1 3.6.2 3.2 2.7 6.3 5.5 7.1L40.3 64c2.4.7 5.5-.5 6.8-2.6l15-23.1c.8-1.3 1-2.6.6-3.8zm-30.2-8.3l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.2-.7-.7-.4-1.1zm-4.4 6.4l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.1-.7-.6-.4-1.1z" fill="url(#path1236_1_)"/><linearGradient id="path1238_1_" gradientUnits="userSpaceOnUse" x1="495.437" y1="715.271" x2="508.982" y2="728.818" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#feea86"/><stop offset="1" stop-color="#867200"/></linearGradient><path id="path1238" d="M45.3 1l27.1 26.7H45.3V1z" fill="url(#path1238_1_)"/><path id="path1240" d="M45.3 1l27.1 26.7H45.3V1z" fill-opacity="0" stroke="#827100" stroke-width="2" stroke-linejoin="round"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="486.311" y1="644.112" x2="486.31" y2="742.085" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#742d2d"/><stop offset=".005" stop-color="#827100"/><stop offset="1" stop-color="#ffee91"/></linearGradient><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill="url(#a)"/><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill-opacity="0" stroke="#827100" stroke-width="2"/><path d="M21.4 91.6V76.1h3.2V89h7.9v2.6H21.4zm13.3 0V76h3.2v15.6h-3.2zm9.8 0v-13h-4.7V76h12.6v2.6h-4.7v12.9h-3.2z" fill="#fefefe"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="305.171" y1="859.444" x2="305.171" y2="814.684" gradientTransform="scale(1 -1) rotate(-15.79 -2993.474 1367.872)"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path d="M62.7 34.5c-.3-.7-.7-1.2-1.3-1.7-.1.5-.3 1.1-.6 1.6L44.4 59.6c-.6.9-2 1.2-3 .9l-26.1-7.3c-1.6-.4-3.4-1.3-3.5-3.1-.1-.7 0-.9.4-1.2.4-.3.8-.2 1.2-.1L38 55.6c3.6 1 4.6.3 7.2-3.7l15-23.1c.8-1.2 1-2.6.5-3.8-.4-1.2-1.4-2.1-2.8-2.5l-21.5-6c-.5-.1-1-.1-1.5-.2l.1-.1c-3.3-2-4.6 1.8-6.3 3.2-.6.5-1.5.9-1.7 1.4-.2.5-.1 1-.3 1.5-.6 1.4-2.5 3.8-3.4 4.5-.6.4-1.3.5-1.7 1.1-.3.4-.2 1.1-.4 1.7-.5 1.3-2.2 3.5-3.4 4.6-.4.4-1.1.7-1.4 1.2-.3.4-.2 1.1-.5 1.6-.7 1.4-2.3 3.4-3.6 4.5-.7.6-1.4.9-1.7 1.6-.2.3 0 .8-.2 1.2-.3.7-.6 1.2-.8 1.7-.7 1-1.1 2.2-1 3.6.2 3.2 2.7 6.3 5.5 7.1L40.3 64c2.4.7 5.5-.5 6.8-2.6l15-23.1c.8-1.3 1-2.6.6-3.8zm-30.2-8.3l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.2-.7-.7-.4-1.1zm-4.4 6.4l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.1-.7-.6-.4-1.1z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="495.437" y1="715.271" x2="508.982" y2="728.818" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#feea86"/><stop offset="1" stop-color="#867200"/></linearGradient><path d="M45.3 1l27.1 26.7H45.3V1z" fill="url(#c)"/><path d="M45.3 1l27.1 26.7H45.3V1z" fill-opacity="0" stroke="#827100" stroke-width="2" stroke-linejoin="round"/></svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="36.8" y1="61.589" x2="36.8" y2="20.333"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.4 37.7h-2.9V32c0-6.4-5.2-11.7-11.7-11.7S25.1 25.6 25.1 32v5.7h-2.9c-1.1 0-2 .9-2 2v19.8c0 1.1.9 2 2 2h29.1c1.1 0 2-.9 2-2V39.8c.1-1.2-.8-2.1-1.9-2.1zM39.3 54.2c.2.7-.3 1.3-1 1.3h-3c-.7 0-1.2-.7-1-1.3l1-3.7c-1.1-.6-1.9-1.7-1.9-3.1 0-2 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5c0 1.4-.8 2.6-1.9 3.1l.8 3.7zm3.3-16.5H31V32c0-3.2 2.6-5.8 5.8-5.8s5.8 2.6 5.8 5.8v5.7z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_3_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M7 91.9V76.3h3.2v13h7.9V92H7zm12.7-7.8c0-1.6.2-3 .7-4 .4-.8.8-1.5 1.5-2.2.6-.6 1.3-1.1 2-1.4 1-.4 2.1-.6 3.4-.6 2.3 0 4.2.7 5.6 2.2 1.4 1.4 2.1 3.4 2.1 6 0 2.5-.7 4.5-2.1 6-1.4 1.4-3.2 2.2-5.5 2.2s-4.2-.7-5.6-2.1c-1.4-1.6-2.1-3.6-2.1-6.1zM23 84c0 1.8.4 3.1 1.2 4.1.8.9 1.9 1.4 3.1 1.4s2.3-.5 3.1-1.4c.8-.9 1.2-2.3 1.2-4.1 0-1.8-.4-3.2-1.2-4-.8-.9-1.8-1.3-3.2-1.3s-2.2.3-3 1.2c-.8.9-1.2 2.3-1.2 4.1zm24.6 2.1l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.8-.7-5.2-2.1-1.3-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2-6.1 1.4-1.4 3.1-2.2 5.3-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.1.8c-.2-.8-.6-1.5-1.2-1.9s-1.3-.7-2.2-.7c-1.2 0-2.1.4-2.8 1.3s-1.1 2.2-1.1 4.1c0 2 .4 3.4 1.1 4.3.7.8 1.6 1.3 2.8 1.3.8 0 1.6-.3 2.2-.8.7-.8 1.1-1.7 1.4-2.8zm5.8 5.8V76.1h3.2v7l6.4-7h4.3l-5.9 6.1 6.3 9.6h-4.1l-4.3-7.4-2.6 2.6v4.8h-3.3z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="36.8" y1="61.589" x2="36.8" y2="20.333"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M51.4 37.7h-2.9V32c0-6.4-5.2-11.7-11.7-11.7S25.1 25.6 25.1 32v5.7h-2.9c-1.1 0-2 .9-2 2v19.8c0 1.1.9 2 2 2h29.1c1.1 0 2-.9 2-2V39.8c.1-1.2-.8-2.1-1.9-2.1zM39.3 54.2c.2.7-.3 1.3-1 1.3h-3c-.7 0-1.2-.7-1-1.3l1-3.7c-1.1-.6-1.9-1.7-1.9-3.1 0-2 1.6-3.5 3.5-3.5s3.5 1.6 3.5 3.5c0 1.4-.8 2.6-1.9 3.1l.8 3.7zm3.3-16.5H31V32c0-3.2 2.6-5.8 5.8-5.8s5.8 2.6 5.8 5.8v5.7z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#c)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M7 91.9V76.3h3.2v13h7.9V92H7zm12.7-7.8c0-1.6.2-3 .7-4 .4-.8.8-1.5 1.5-2.2.6-.6 1.3-1.1 2-1.4 1-.4 2.1-.6 3.4-.6 2.3 0 4.2.7 5.6 2.2 1.4 1.4 2.1 3.4 2.1 6 0 2.5-.7 4.5-2.1 6-1.4 1.4-3.2 2.2-5.5 2.2s-4.2-.7-5.6-2.1c-1.4-1.6-2.1-3.6-2.1-6.1zM23 84c0 1.8.4 3.1 1.2 4.1.8.9 1.9 1.4 3.1 1.4s2.3-.5 3.1-1.4c.8-.9 1.2-2.3 1.2-4.1 0-1.8-.4-3.2-1.2-4-.8-.9-1.8-1.3-3.2-1.3s-2.2.3-3 1.2c-.8.9-1.2 2.3-1.2 4.1zm24.6 2.1l3.1 1c-.5 1.7-1.3 3-2.4 3.8-1.1.8-2.5 1.3-4.2 1.3-2.1 0-3.8-.7-5.2-2.1-1.3-1.4-2-3.4-2-5.9 0-2.6.7-4.7 2-6.1 1.4-1.4 3.1-2.2 5.3-2.2 1.9 0 3.5.6 4.7 1.7.7.7 1.3 1.6 1.6 2.9l-3.1.8c-.2-.8-.6-1.5-1.2-1.9s-1.3-.7-2.2-.7c-1.2 0-2.1.4-2.8 1.3s-1.1 2.2-1.1 4.1c0 2 .4 3.4 1.1 4.3.7.8 1.6 1.3 2.8 1.3.8 0 1.6-.3 2.2-.8.7-.8 1.1-1.7 1.4-2.8zm5.8 5.8V76.1h3.2v7l6.4-7h4.3l-5.9 6.1 6.3 9.6h-4.1l-4.3-7.4-2.6 2.6v4.8h-3.3z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="11.8" y1="33.75" x2="60.4" y2="33.75" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M11.8 33.7h48.6v4.1H11.8v-4.1z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="11.8" y1="57.85" x2="60.4" y2="57.85" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M11.8 57.8h48.6v4.1H11.8v-4.1z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="11.8" y1="46.05" x2="60.4" y2="46.05" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M11.8 46h48.6v4.1H11.8V46z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="11.8" y1="21.65" x2="60.4" y2="21.65" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M11.8 21.6h48.6v4.1H11.8v-4.1z" fill="url(#SVGID_5_)"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_6_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M7.6 91.2V71.3h4v16.5h10.1v3.4H7.6zm16.2-9.9c0-2 .3-3.8.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.7-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 3 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.4 2.7 7.6 0 3.2-.9 5.8-2.6 7.6-1.8 1.8-4.1 2.7-7.1 2.7s-5.4-.9-7.1-2.7c-1.9-1.8-2.7-4.3-2.7-7.5zm4.1-.1c0 2.3.5 4 1.6 5.2 1 1.2 2.4 1.8 4 1.8s2.9-.6 4-1.7c1-1.2 1.6-2.9 1.6-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.2.9-1.7 2.7-1.7 5zm27.8 2.6v-3.4h8.7v8c-.8.8-2.1 1.5-3.7 2.2-1.6.6-3.2.9-4.9.9-2.1 0-3.9-.4-5.5-1.3s-2.7-2.1-3.5-3.8c-.8-1.6-1.2-3.4-1.2-5.3 0-2.1.4-3.9 1.3-5.6s2.2-2.9 3.8-3.7c1.3-.7 2.9-1 4.8-1 2.5 0 4.4.5 5.8 1.6 1.4 1 2.3 2.5 2.7 4.3l-4 .8c-.3-1-.8-1.8-1.6-2.3s-1.8-.9-2.9-.9c-1.8 0-3.2.6-4.2 1.7s-1.6 2.8-1.6 5c0 2.4.5 4.2 1.6 5.4 1.1 1.2 2.4 1.8 4.2 1.8.8 0 1.7-.2 2.5-.5.9-.3 1.6-.7 2.2-1.2V84h-4.5z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="97" x2="36" y2="-1" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="11.8" y1="33.75" x2="60.4" y2="33.75" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M11.8 33.7h48.6v4.1H11.8v-4.1z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="11.8" y1="57.85" x2="60.4" y2="57.85" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M11.8 57.8h48.6v4.1H11.8v-4.1z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="11.8" y1="46.05" x2="60.4" y2="46.05" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M11.8 46h48.6v4.1H11.8V46z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="11.8" y1="21.65" x2="60.4" y2="21.65" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M11.8 21.6h48.6v4.1H11.8v-4.1z" fill="url(#e)"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="45.037" y1="25.813" x2="58.537" y2="12.313" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#f)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M7.6 91.2V71.3h4v16.5h10.1v3.4H7.6zm16.2-9.9c0-2 .3-3.8.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.7-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 3 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.4 2.7 7.6 0 3.2-.9 5.8-2.6 7.6-1.8 1.8-4.1 2.7-7.1 2.7s-5.4-.9-7.1-2.7c-1.9-1.8-2.7-4.3-2.7-7.5zm4.1-.1c0 2.3.5 4 1.6 5.2 1 1.2 2.4 1.8 4 1.8s2.9-.6 4-1.7c1-1.2 1.6-2.9 1.6-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.2.9-1.7 2.7-1.7 5zm27.8 2.6v-3.4h8.7v8c-.8.8-2.1 1.5-3.7 2.2-1.6.6-3.2.9-4.9.9-2.1 0-3.9-.4-5.5-1.3s-2.7-2.1-3.5-3.8c-.8-1.6-1.2-3.4-1.2-5.3 0-2.1.4-3.9 1.3-5.6s2.2-2.9 3.8-3.7c1.3-.7 2.9-1 4.8-1 2.5 0 4.4.5 5.8 1.6 1.4 1 2.3 2.5 2.7 4.3l-4 .8c-.3-1-.8-1.8-1.6-2.3s-1.8-.9-2.9-.9c-1.8 0-3.2.6-4.2 1.7s-1.6 2.8-1.6 5c0 2.4.5 4.2 1.6 5.4 1.1 1.2 2.4 1.8 4.2 1.8.8 0 1.7-.2 2.5-.5.9-.3 1.6-.7 2.2-1.2V84h-4.5z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M26.1 91.1V71.2h6l3.6 13.5 3.6-13.5h6V91h-3.7V75.4l-4 15.6h-3.9l-4-15.6V91h-3.6z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="33.5" y1="25" x2="33.5" y2="21"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_2_)" d="M15 21h37v4H15z"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="40.5" y1="34" x2="40.5" y2="30"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_3_)" d="M22 30h37v4H22z"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="33.5" y1="43" x2="33.5" y2="39"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_4_)" d="M15 39h37v4H15z"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="40.5" y1="52" x2="40.5" y2="48"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_5_)" d="M22 48h37v4H22z"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="31.5" y1="61" x2="31.5" y2="57"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_6_)" d="M13 57h37v4H13z"/><linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_7_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M26.1 91.1V71.2h6l3.6 13.5 3.6-13.5h6V91h-3.7V75.4l-4 15.6h-3.9l-4-15.6V91h-3.6z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="33.5" y1="25" x2="33.5" y2="21"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#b)" d="M15 21h37v4H15z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="40.5" y1="34" x2="40.5" y2="30"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#c)" d="M22 30h37v4H22z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="33.5" y1="43" x2="33.5" y2="39"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#d)" d="M15 39h37v4H15z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="40.5" y1="52" x2="40.5" y2="48"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#e)" d="M22 48h37v4H22z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="31.5" y1="61" x2="31.5" y2="57"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#f)" d="M13 57h37v4H13z"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#g)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M8.3 89.8v-20h6.1l3.7 13.7 3.6-13.7h6.1v20H24V74l-4 15.8h-3.9l-4-15.8v15.8H8.3zm23.6-20h7.5c1.7 0 3 .1 3.9.4 1.2.3 2.2 1 3.1 1.8s1.5 2 1.9 3.2c.4 1.3.7 2.9.7 4.7 0 1.6-.2 3.1-.6 4.3-.5 1.5-1.2 2.6-2.2 3.5-.7.7-1.7 1.2-2.9 1.6-.9.3-2.1.4-3.6.4H32V69.8zm4.1 3.4v13.3h3c1.1 0 2-.1 2.5-.2.7-.2 1.2-.4 1.7-.8s.8-1 1.1-1.9.4-2.1.4-3.7-.1-2.7-.4-3.6-.7-1.5-1.2-1.9c-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.4-.2H36zm16.4 16.6v-20h13.9v3.4h-9.8v4.7H65v3.4h-8.5v8.5h-4.1z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_3_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="2.265" x2="36" y2="100.25" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M8.3 89.8v-20h6.1l3.7 13.7 3.6-13.7h6.1v20H24V74l-4 15.8h-3.9l-4-15.8v15.8H8.3zm23.6-20h7.5c1.7 0 3 .1 3.9.4 1.2.3 2.2 1 3.1 1.8s1.5 2 1.9 3.2c.4 1.3.7 2.9.7 4.7 0 1.6-.2 3.1-.6 4.3-.5 1.5-1.2 2.6-2.2 3.5-.7.7-1.7 1.2-2.9 1.6-.9.3-2.1.4-3.6.4H32V69.8zm4.1 3.4v13.3h3c1.1 0 2-.1 2.5-.2.7-.2 1.2-.4 1.7-.8s.8-1 1.1-1.9.4-2.1.4-3.7-.1-2.7-.4-3.6-.7-1.5-1.2-1.9c-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.4-.2H36zm16.4 16.6v-20h13.9v3.4h-9.8v4.7H65v3.4h-8.5v8.5h-4.1z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="35.619" y1="64.5" x2="35.619" y2="18.906"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path d="M28.2 44.6c-1.4 1-2.7 2.1-4 3.1-2.7 2-5.3 4.1-8 6.1-.4.3-.6.3-1 .1-.5-.3-1.1-.6-1.7-.9-.3-.2-.4-.4-.4-.7V31.1c0-.2.2-.6.4-.7.6-.4 1.3-.7 1.9-1 .3-.2.6 0 .9.2 2.2 1.7 4.4 3.4 6.6 5 1.8 1.4 3.6 2.8 5.4 4.1.1-.1.3-.2.4-.3 6.6-6.4 13.2-12.8 19.7-19.2.3-.3.6-.4 1-.2 2.8 1.1 5.6 2.2 8.4 3.4.2.1.4.4.5.6.1.1 0 .3 0 .5V60c0 .9 0 .9-.9 1.2-2.7 1.1-5.3 2.1-7.9 3.2-.5.2-.8.1-1.1-.2-6.5-6.4-13-12.7-19.6-19l-.6-.6zm19 5.8V33c-3.9 2.9-7.7 5.8-11.6 8.7 3.9 2.9 7.7 5.8 11.6 8.7zm-24.3-8.7c-1.9-1.7-3.8-3.4-5.8-5.2v10.4c1.9-1.7 3.8-3.5 5.8-5.2z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.069" y1="73.457" x2="58.569" y2="86.957" gradientTransform="matrix(1 0 0 -1 0 101)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#c)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M14.5 91.1V71.2h6l3.6 13.5 3.6-13.5h6V91H30V75.4L26 91h-3.9l-4-15.6V91h-3.6zm23.2 0V71.2h6l3.6 13.5 3.6-13.5h6V91h-3.7V75.4l-4 15.6h-3.9l-4-15.6V91h-3.6z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="33.5" y1="25" x2="33.5" y2="21"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_2_)" d="M15 21h37v4H15z"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="40.5" y1="34" x2="40.5" y2="30"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_3_)" d="M22 30h37v4H22z"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="33.5" y1="43" x2="33.5" y2="39"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_4_)" d="M15 39h37v4H15z"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="40.5" y1="52" x2="40.5" y2="48"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_5_)" d="M22 48h37v4H22z"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="31.5" y1="61" x2="31.5" y2="57"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#SVGID_6_)" d="M13 57h37v4H13z"/><linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_7_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M14.5 91.1V71.2h6l3.6 13.5 3.6-13.5h6V91H30V75.4L26 91h-3.9l-4-15.6V91h-3.6zm23.2 0V71.2h6l3.6 13.5 3.6-13.5h6V91h-3.7V75.4l-4 15.6h-3.9l-4-15.6V91h-3.6z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="33.5" y1="25" x2="33.5" y2="21"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#b)" d="M15 21h37v4H15z"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="40.5" y1="34" x2="40.5" y2="30"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#c)" d="M22 30h37v4H22z"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="33.5" y1="43" x2="33.5" y2="39"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#d)" d="M15 39h37v4H15z"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="40.5" y1="52" x2="40.5" y2="48"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#e)" d="M22 48h37v4H22z"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="31.5" y1="61" x2="31.5" y2="57"><stop offset="0" stop-color="#adccdc"/><stop offset="1" stop-color="#4c6c7b"/></linearGradient><path fill="url(#f)" d="M13 57h37v4H13z"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#g)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="path1228_1_" gradientUnits="userSpaceOnUse" x1="486.311" y1="644.112" x2="486.31" y2="742.085" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#742d2d"/><stop offset=".005" stop-color="#827100"/><stop offset="1" stop-color="#ffee91"/></linearGradient><path id="path1228" d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill="url(#path1228_1_)"/><path id="path1230" d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill-opacity="0" stroke="#827100" stroke-width="2"/><path d="M20.4 91.6V76h4.8l2.9 10.6L30.9 76h4.8v15.6h-3V79.3l-3.1 12.3h-3.1l-3.1-12.3v12.3h-3zm17.8-7.7c0-1.6.2-2.9.7-4 .4-.8.8-1.5 1.5-2.1.6-.6 1.3-1.1 2-1.4 1-.4 2.1-.6 3.4-.6 2.3 0 4.2.7 5.6 2.1 1.4 1.4 2.1 3.4 2.1 5.9 0 2.5-.7 4.5-2.1 5.9s-3.2 2.1-5.6 2.1c-2.3 0-4.2-.7-5.6-2.1-1.3-1.4-2-3.3-2-5.8zm3.3-.1c0 1.8.4 3.1 1.2 4 .8.9 1.9 1.4 3.1 1.4 1.3 0 2.3-.5 3.1-1.4.8-.9 1.2-2.3 1.2-4.1 0-1.8-.4-3.1-1.2-4-.8-.9-1.8-1.3-3.2-1.3-1.3 0-2.4.4-3.2 1.3-.6.9-1 2.3-1 4.1z" fill="#fefefe"/><linearGradient id="path1238_1_" gradientUnits="userSpaceOnUse" x1="495.437" y1="715.271" x2="508.982" y2="728.818" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#feea86"/><stop offset="1" stop-color="#867200"/></linearGradient><path id="path1238" d="M45.3 1l27.1 26.7H45.3V1z" fill="url(#path1238_1_)"/><path id="path1240" d="M45.3 1l27.1 26.7H45.3V1z" fill-opacity="0" stroke="#827100" stroke-width="2" stroke-linejoin="round"/><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="23.925" y1="57.728" x2="23.925" y2="23.1"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="23.882" y1="58.267" x2="23.882" y2="22.725"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path d="M34.9 48.6c-3.5-3.4-6.6-6.5-8.4-13.4h12.3V30H26.6v-6.9h-5.3v7H9v5.2h12.6s-.1 1-.3 1.8C19.6 43.9 17.5 48.3 9 52.5l1.8 5.2c8-4.3 12.2-9.6 14.1-15.6 1.8 4.5 4.8 8.2 8.2 11.6l1.8-5.1z" fill="url(#SVGID_1_)" stroke="url(#SVGID_2_)" stroke-width=".75" stroke-miterlimit="10"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="47.653" y1="66.365" x2="47.653" y2="31.736"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="47.653" y1="66.74" x2="47.653" y2="31.361"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path d="M51.2 31.7h-7L31.8 66.4h5.3L40.6 56h14.1l3.5 10.4h5.3L51.2 31.7zm-8.8 19.1L47.7 37 53 50.9l-10.6-.1z" fill="url(#SVGID_3_)" stroke="url(#SVGID_4_)" stroke-width=".75" stroke-miterlimit="10"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="486.311" y1="644.112" x2="486.31" y2="742.085" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#742d2d"/><stop offset=".005" stop-color="#827100"/><stop offset="1" stop-color="#ffee91"/></linearGradient><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill="url(#a)"/><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill-opacity="0" stroke="#827100" stroke-width="2"/><path d="M20.4 91.6V76h4.8l2.9 10.6L30.9 76h4.8v15.6h-3V79.3l-3.1 12.3h-3.1l-3.1-12.3v12.3h-3zm17.8-7.7c0-1.6.2-2.9.7-4 .4-.8.8-1.5 1.5-2.1.6-.6 1.3-1.1 2-1.4 1-.4 2.1-.6 3.4-.6 2.3 0 4.2.7 5.6 2.1 1.4 1.4 2.1 3.4 2.1 5.9 0 2.5-.7 4.5-2.1 5.9s-3.2 2.1-5.6 2.1c-2.3 0-4.2-.7-5.6-2.1-1.3-1.4-2-3.3-2-5.8zm3.3-.1c0 1.8.4 3.1 1.2 4 .8.9 1.9 1.4 3.1 1.4 1.3 0 2.3-.5 3.1-1.4.8-.9 1.2-2.3 1.2-4.1 0-1.8-.4-3.1-1.2-4-.8-.9-1.8-1.3-3.2-1.3-1.3 0-2.4.4-3.2 1.3-.6.9-1 2.3-1 4.1z" fill="#fefefe"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="495.437" y1="715.271" x2="508.982" y2="728.818" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#feea86"/><stop offset="1" stop-color="#867200"/></linearGradient><path d="M45.3 1l27.1 26.7H45.3V1z" fill="url(#b)"/><path d="M45.3 1l27.1 26.7H45.3V1z" fill-opacity="0" stroke="#827100" stroke-width="2" stroke-linejoin="round"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="23.925" y1="57.728" x2="23.925" y2="23.1"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="23.882" y1="58.267" x2="23.882" y2="22.725"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path d="M34.9 48.6c-3.5-3.4-6.6-6.5-8.4-13.4h12.3V30H26.6v-6.9h-5.3v7H9v5.2h12.6s-.1 1-.3 1.8C19.6 43.9 17.5 48.3 9 52.5l1.8 5.2c8-4.3 12.2-9.6 14.1-15.6 1.8 4.5 4.8 8.2 8.2 11.6l1.8-5.1z" fill="url(#c)" stroke="url(#d)" stroke-width=".75" stroke-miterlimit="10"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="47.653" y1="66.365" x2="47.653" y2="31.736"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="47.653" y1="66.74" x2="47.653" y2="31.361"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path d="M51.2 31.7h-7L31.8 66.4h5.3L40.6 56h14.1l3.5 10.4h5.3L51.2 31.7zm-8.8 19.1L47.7 37 53 50.9l-10.6-.1z" fill="url(#e)" stroke="url(#f)" stroke-width=".75" stroke-miterlimit="10"/></svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="path1228_1_" gradientUnits="userSpaceOnUse" x1="486.311" y1="644.112" x2="486.31" y2="742.085" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#742d2d"/><stop offset=".005" stop-color="#827100"/><stop offset="1" stop-color="#ffee91"/></linearGradient><path id="path1228" d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill="url(#path1228_1_)"/><path id="path1230" d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill-opacity="0" stroke="#827100" stroke-width="2"/><path d="M9.8 91.6V76h4.8l2.9 10.6L20.3 76h4.8v15.6h-3V79.3L19 91.6h-3.1l-3.1-12.3v12.3h-3zm17.8-7.7c0-1.6.2-2.9.7-4 .4-.8.8-1.5 1.5-2.1s1.3-1.1 2-1.4c1-.4 2.1-.6 3.4-.6 2.3 0 4.2.7 5.6 2.1 1.4 1.4 2.1 3.4 2.1 5.9 0 2.5-.7 4.5-2.1 5.9s-3.2 2.1-5.6 2.1c-2.4 0-4.2-.7-5.6-2.1-1.3-1.4-2-3.3-2-5.8zm3.3-.1c0 1.8.4 3.1 1.2 4 .8.9 1.9 1.4 3.1 1.4s2.3-.5 3.1-1.4 1.2-2.3 1.2-4.1c0-1.8-.4-3.1-1.2-4-.8-.9-1.8-1.3-3.2-1.3s-2.4.4-3.2 1.3c-.6.9-1 2.3-1 4.1zM45.4 76h6.3c1.2 0 2.2.1 2.8.2.6.1 1.2.3 1.6.6s.9.8 1.2 1.3c.3.5.5 1.2.5 1.8 0 .7-.2 1.4-.6 2s-.9 1.1-1.6 1.4c1 .3 1.7.7 2.2 1.4s.8 1.4.8 2.3c0 .7-.2 1.4-.5 2.1s-.8 1.2-1.4 1.6c-.6.4-1.3.6-2.1.7-.5.1-1.8.1-3.8.1h-5.4V76zm3.2 2.6v3.6h2.1c1.2 0 2 0 2.3-.1.5-.1 1-.2 1.3-.6.3-.3.5-.7.5-1.2s-.1-.9-.4-1.2c-.3-.3-.7-.5-1.2-.5-.3 0-1.2-.1-2.7-.1h-1.9zm0 6.2V89h3c1.2 0 1.9 0 2.2-.1.5-.1.9-.3 1.2-.6.3-.3.4-.8.4-1.3s-.1-.9-.3-1.2c-.2-.3-.6-.6-1-.7-.4-.1-1.4-.2-2.8-.2h-2.7zm12.6 6.8V76h3.2v15.6h-3.2z" fill="#fefefe"/><linearGradient id="path1236_1_" gradientUnits="userSpaceOnUse" x1="305.171" y1="859.444" x2="305.171" y2="814.684" gradientTransform="scale(1 -1) rotate(-15.79 -2993.474 1367.872)"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path id="path1236" d="M62.7 34.5c-.3-.7-.7-1.2-1.3-1.7-.1.5-.3 1.1-.6 1.6L44.4 59.6c-.6.9-2 1.2-3 .9l-26.1-7.3c-1.6-.4-3.4-1.3-3.5-3.1-.1-.7 0-.9.4-1.2.4-.3.8-.2 1.2-.1L38 55.6c3.6 1 4.6.3 7.2-3.7l15-23.1c.8-1.2 1-2.6.5-3.8-.4-1.2-1.4-2.1-2.8-2.5l-21.5-6c-.5-.1-1-.1-1.5-.2l.1-.1c-3.3-2-4.6 1.8-6.3 3.2-.6.5-1.5.9-1.7 1.4-.2.5-.1 1-.3 1.5-.6 1.4-2.5 3.8-3.4 4.5-.6.4-1.3.5-1.7 1.1-.3.4-.2 1.1-.4 1.7-.5 1.3-2.2 3.5-3.4 4.6-.4.4-1.1.7-1.4 1.2-.3.4-.2 1.1-.5 1.6-.7 1.4-2.3 3.4-3.6 4.5-.7.6-1.4.9-1.7 1.6-.2.3 0 .8-.2 1.2-.3.7-.6 1.2-.8 1.7-.7 1-1.1 2.2-1 3.6.2 3.2 2.7 6.3 5.5 7.1L40.3 64c2.4.7 5.5-.5 6.8-2.6l15-23.1c.8-1.3 1-2.6.6-3.8zm-30.2-8.3l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.2-.7-.7-.4-1.1zm-4.4 6.4l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.1-.7-.6-.4-1.1z" fill="url(#path1236_1_)"/><linearGradient id="path1238_1_" gradientUnits="userSpaceOnUse" x1="495.437" y1="715.271" x2="508.982" y2="728.818" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#feea86"/><stop offset="1" stop-color="#867200"/></linearGradient><path id="path1238" d="M45.3 1l27.1 26.7H45.3V1z" fill="url(#path1238_1_)"/><path id="path1240" d="M45.3 1l27.1 26.7H45.3V1z" fill-opacity="0" stroke="#827100" stroke-width="2" stroke-linejoin="round"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="486.311" y1="644.112" x2="486.31" y2="742.085" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#742d2d"/><stop offset=".005" stop-color="#827100"/><stop offset="1" stop-color="#ffee91"/></linearGradient><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill="url(#a)"/><path d="M45.3 1l27.1 26.7V99H.1V1h45.2z" fill-opacity="0" stroke="#827100" stroke-width="2"/><path d="M9.8 91.6V76h4.8l2.9 10.6L20.3 76h4.8v15.6h-3V79.3L19 91.6h-3.1l-3.1-12.3v12.3h-3zm17.8-7.7c0-1.6.2-2.9.7-4 .4-.8.8-1.5 1.5-2.1s1.3-1.1 2-1.4c1-.4 2.1-.6 3.4-.6 2.3 0 4.2.7 5.6 2.1 1.4 1.4 2.1 3.4 2.1 5.9 0 2.5-.7 4.5-2.1 5.9s-3.2 2.1-5.6 2.1c-2.4 0-4.2-.7-5.6-2.1-1.3-1.4-2-3.3-2-5.8zm3.3-.1c0 1.8.4 3.1 1.2 4 .8.9 1.9 1.4 3.1 1.4s2.3-.5 3.1-1.4 1.2-2.3 1.2-4.1c0-1.8-.4-3.1-1.2-4-.8-.9-1.8-1.3-3.2-1.3s-2.4.4-3.2 1.3c-.6.9-1 2.3-1 4.1zM45.4 76h6.3c1.2 0 2.2.1 2.8.2.6.1 1.2.3 1.6.6s.9.8 1.2 1.3c.3.5.5 1.2.5 1.8 0 .7-.2 1.4-.6 2s-.9 1.1-1.6 1.4c1 .3 1.7.7 2.2 1.4s.8 1.4.8 2.3c0 .7-.2 1.4-.5 2.1s-.8 1.2-1.4 1.6c-.6.4-1.3.6-2.1.7-.5.1-1.8.1-3.8.1h-5.4V76zm3.2 2.6v3.6h2.1c1.2 0 2 0 2.3-.1.5-.1 1-.2 1.3-.6.3-.3.5-.7.5-1.2s-.1-.9-.4-1.2c-.3-.3-.7-.5-1.2-.5-.3 0-1.2-.1-2.7-.1h-1.9zm0 6.2V89h3c1.2 0 1.9 0 2.2-.1.5-.1.9-.3 1.2-.6.3-.3.4-.8.4-1.3s-.1-.9-.3-1.2c-.2-.3-.6-.6-1-.7-.4-.1-1.4-.2-2.8-.2h-2.7zm12.6 6.8V76h3.2v15.6h-3.2z" fill="#fefefe"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="305.171" y1="859.444" x2="305.171" y2="814.684" gradientTransform="scale(1 -1) rotate(-15.79 -2993.474 1367.872)"><stop offset="0" stop-color="#aa9400"/><stop offset="1" stop-color="#564a00"/></linearGradient><path d="M62.7 34.5c-.3-.7-.7-1.2-1.3-1.7-.1.5-.3 1.1-.6 1.6L44.4 59.6c-.6.9-2 1.2-3 .9l-26.1-7.3c-1.6-.4-3.4-1.3-3.5-3.1-.1-.7 0-.9.4-1.2.4-.3.8-.2 1.2-.1L38 55.6c3.6 1 4.6.3 7.2-3.7l15-23.1c.8-1.2 1-2.6.5-3.8-.4-1.2-1.4-2.1-2.8-2.5l-21.5-6c-.5-.1-1-.1-1.5-.2l.1-.1c-3.3-2-4.6 1.8-6.3 3.2-.6.5-1.5.9-1.7 1.4-.2.5-.1 1-.3 1.5-.6 1.4-2.5 3.8-3.4 4.5-.6.4-1.3.5-1.7 1.1-.3.4-.2 1.1-.4 1.7-.5 1.3-2.2 3.5-3.4 4.6-.4.4-1.1.7-1.4 1.2-.3.4-.2 1.1-.5 1.6-.7 1.4-2.3 3.4-3.6 4.5-.7.6-1.4.9-1.7 1.6-.2.3 0 .8-.2 1.2-.3.7-.6 1.2-.8 1.7-.7 1-1.1 2.2-1 3.6.2 3.2 2.7 6.3 5.5 7.1L40.3 64c2.4.7 5.5-.5 6.8-2.6l15-23.1c.8-1.3 1-2.6.6-3.8zm-30.2-8.3l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.2-.7-.7-.4-1.1zm-4.4 6.4l1.1-1.6c.3-.5 1-.7 1.4-.6l17.2 4.8c.5.1.7.6.4 1.1l-1.1 1.6c-.3.5-1 .7-1.4.6l-17.2-4.8c-.5-.1-.7-.6-.4-1.1z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="495.437" y1="715.271" x2="508.982" y2="728.818" gradientTransform="matrix(1 0 0 -1 -450.061 743.109)"><stop offset="0" stop-color="#feea86"/><stop offset="1" stop-color="#867200"/></linearGradient><path d="M45.3 1l27.1 26.7H45.3V1z" fill="url(#c)"/><path d="M45.3 1l27.1 26.7H45.3V1z" fill-opacity="0" stroke="#827100" stroke-width="2" stroke-linejoin="round"/></svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M8.8 91.1V71.2h3.9l8.2 13.2V71.2h3.7V91h-4l-8.1-12.9V91H8.8zm20.2 0V71.2h13.7v3.4H33v4.7h8.3v3.4H33v8.4h-4zm16.2-9.8c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.6-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 2.9 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.3 2.7 7.6 0 3.2-.9 5.7-2.6 7.5-1.8 1.8-4.1 2.7-7 2.7-3 0-5.3-.9-7.1-2.7s-2.8-4.3-2.8-7.4zm4.1-.2c0 2.2.5 3.9 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7 1.5-2.9 1.5-5.2c0-2.3-.5-4-1.5-5.1s-2.3-1.7-4-1.7-3 .6-4 1.7c-1.1 1.2-1.6 2.9-1.6 5.2z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="12.35" y1="33.75" x2="60.95" y2="33.75" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M12.4 33.7H61v4.1H12.4v-4.1z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="12.35" y1="57.85" x2="60.95" y2="57.85" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M12.4 57.8H61v4.1H12.4v-4.1z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="12.35" y1="46.05" x2="60.95" y2="46.05" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M12.4 46H61v4.1H12.4V46z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="12.35" y1="21.65" x2="60.95" y2="21.65" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M12.4 21.6H61v4.1H12.4v-4.1z" fill="url(#SVGID_5_)"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_6_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M8.8 91.1V71.2h3.9l8.2 13.2V71.2h3.7V91h-4l-8.1-12.9V91H8.8zm20.2 0V71.2h13.7v3.4H33v4.7h8.3v3.4H33v8.4h-4zm16.2-9.8c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.6-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 2.9 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.3 2.7 7.6 0 3.2-.9 5.7-2.6 7.5-1.8 1.8-4.1 2.7-7 2.7-3 0-5.3-.9-7.1-2.7s-2.8-4.3-2.8-7.4zm4.1-.2c0 2.2.5 3.9 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7 1.5-2.9 1.5-5.2c0-2.3-.5-4-1.5-5.1s-2.3-1.7-4-1.7-3 .6-4 1.7c-1.1 1.2-1.6 2.9-1.6 5.2z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="12.35" y1="33.75" x2="60.95" y2="33.75" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M12.4 33.7H61v4.1H12.4v-4.1z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="12.35" y1="57.85" x2="60.95" y2="57.85" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M12.4 57.8H61v4.1H12.4v-4.1z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="12.35" y1="46.05" x2="60.95" y2="46.05" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M12.4 46H61v4.1H12.4V46z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="12.35" y1="21.65" x2="60.95" y2="21.65" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M12.4 21.6H61v4.1H12.4v-4.1z" fill="url(#e)"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#f)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#SVGID_1_)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M14.5 91.1V71.2h3.9l8.2 13.2V71.2h3.7V91h-4l-8.1-12.9V91h-3.7zm20 0V71.2h4V91h-4zm5.9 0l6.8-10.4-6.2-9.5h4.7l4 6.4 3.9-6.4h4.7l-6.2 9.6L58.9 91H54l-4.4-6.9-4.4 6.9h-4.8z" fill="#4c6c7b"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="13.15" y1="22" x2="54.15" y2="22" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M13.1 22h41v4h-41v-4z" fill="url(#SVGID_2_)"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="19.15" y1="33.75" x2="60.15" y2="33.75" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M19.1 33.7h41v4.1h-41v-4.1z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="13.15" y1="45.75" x2="54.15" y2="45.75" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M13.1 45.7h41v4.1h-41v-4.1z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="19.15" y1="58" x2="60.15" y2="58" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M19.1 58h41v4h-41v-4z" fill="url(#SVGID_5_)"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#SVGID_6_)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.108" y1="3.003" x2="36.108" y2="101.001" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill="url(#a)"/><path d="M45.1 1L72 27.7V99H.2V1h44.9z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><path d="M14.5 91.1V71.2h3.9l8.2 13.2V71.2h3.7V91h-4l-8.1-12.9V91h-3.7zm20 0V71.2h4V91h-4zm5.9 0l6.8-10.4-6.2-9.5h4.7l4 6.4 3.9-6.4h4.7l-6.2 9.6L58.9 91H54l-4.4-6.9-4.4 6.9h-4.8z" fill="#4c6c7b"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="13.15" y1="22" x2="54.15" y2="22" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M13.1 22h41v4h-41v-4z" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="19.15" y1="33.75" x2="60.15" y2="33.75" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M19.1 33.7h41v4.1h-41v-4.1z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="13.15" y1="45.75" x2="54.15" y2="45.75" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M13.1 45.7h41v4.1h-41v-4.1z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="19.15" y1="58" x2="60.15" y2="58" gradientTransform="translate(0 2)"><stop offset="0" stop-color="#7291a1"/><stop offset="1" stop-color="#cad5db"/></linearGradient><path d="M19.1 58h41v4h-41v-4z" fill="url(#e)"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="45.122" y1="74.229" x2="58.575" y2="87.683" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45.1 1L72 27.7H45.1V1z" fill="url(#f)"/><path d="M45.1 1L72 27.7H45.1V1z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2" y1="97" x2="36.2" y2="-1" gradientTransform="translate(0 2)"><stop offset=".029" stop-color="#235427"/><stop offset=".462" stop-color="#4eb056"/><stop offset=".998" stop-color="#64d66d"/></linearGradient><path d="M45.2 1l26.9 26.7V99H.3V1h44.9z" fill="url(#SVGID_1_)"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1=".3" y1="50" x2="72.1" y2="50" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset=".005" stop-color="#077265"/><stop offset=".343" stop-color="#006a69"/><stop offset="1" stop-color="#003836"/></linearGradient><path d="M45.2 1l26.9 26.7V99H.3V1h44.9z" fill="url(#SVGID_2_)" fill-opacity="0" stroke="#235427" stroke-width="2"/><path d="M7.2 81.3c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.6-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 2.9 0 5.3.9 7.1 2.7s2.6 4.3 2.6 7.6c0 3.2-.9 5.7-2.6 7.5s-4.1 2.7-7 2.7c-3 0-5.3-.9-7.1-2.7-1.8-1.8-2.7-4.3-2.7-7.4zm4.1-.2c0 2.2.5 4 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.5-2.9 1.5-5.2 0-2.3-.5-4-1.5-5.1s-2.3-1.7-4-1.7-3 .6-4 1.7c-1.1 1.2-1.6 3-1.6 5.2zm18.4-9.9h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8.8.9 1.5 1.9 1.9 3.2.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4h-7.6V71.2h-.1zm4 3.4v13.1h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9s.4-2.1.4-3.6-.1-2.7-.4-3.5c-.3-.8-.7-1.5-1.1-1.9-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.3-.2l-1.8-.1zm15.1 10l3.9-.4c.2 1.3.7 2.3 1.4 2.9s1.7.9 2.9.9c1.3 0 2.3-.3 2.9-.8.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.5-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6s1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2s-1.4-.7-2.6-.7c-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.7.9 3.7 1.3 2 .5 3.4.9 4.4 1.4.9.5 1.7 1.2 2.2 2 .5.8.8 1.9.8 3.2 0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2s-2.6.7-4.3.7c-2.5 0-4.5-.6-5.8-1.7-1.3-1-2.1-2.7-2.4-4.9z" fill="#fff"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="45.221" y1="25.779" x2="58.672" y2="12.329" gradientTransform="translate(0 2)"><stop offset=".484" stop-color="#ccf8d2"/><stop offset=".931" stop-color="#429b4e"/><stop offset=".998" stop-color="#2d7136"/></linearGradient><path d="M45.2 1l26.9 26.7H45.2V1z" fill="url(#SVGID_3_)"/><path d="M45.2 1l26.9 26.7H45.2V1z" fill-opacity="0" stroke="#235427" stroke-width="2" stroke-linejoin="bevel"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="53.28" y1="41.06" x2="53.28" y2="48.656"><stop offset="0" stop-color="#235427"/><stop offset="1" stop-color="#44984b"/></linearGradient><path d="M47.6 41.1H59v7.6H47.6z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="53.28" y1="52.782" x2="53.28" y2="60.378"><stop offset="0" stop-color="#235427"/><stop offset="1" stop-color="#44984b"/></linearGradient><path d="M47.6 52.8H59v7.6H47.6z" fill="url(#SVGID_5_)"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="43.855" y1="36.036" x2="43.855" y2="39.975"><stop offset="0" stop-color="#235427"/><stop offset="1" stop-color="#44984b"/></linearGradient><path d="M36.6 36h1.6c2.4.2 4.3.8 6.2 1.5 3.6-1.6 8.6-.4 11.8.8-4-.4-8.8 0-11.6 1.6-2.8-2.3-8.1-2.9-13-2.3 1.3-.8 3-1.4 5-1.6z" fill="url(#SVGID_6_)"/><linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="28.139" y1="42.105" x2="28.139" y2="48.602"><stop offset="0" stop-color="#235427"/><stop offset="1" stop-color="#44984b"/></linearGradient><path d="M35.5 42.1c-2.9.2-5.3 1.1-6.8 2.4-4.8-2.2-13-1.2-16.1 1.7-.3.2-.6.4-.5.7 2.7-.8 6-1.5 9.4-1.2 3.4.3 5.9 1.4 7.8 2.9 3.5-3.1 8.6-4.9 15.1-4.8-2.4-1-5.7-1.9-8.9-1.7z" fill="url(#SVGID_7_)"/><linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="37.908" y1="52.867" x2="37.908" y2="60.462"><stop offset="0" stop-color="#235427"/><stop offset="1" stop-color="#44984b"/></linearGradient><path d="M32.2 52.9h11.4v7.6H32.2z" fill="url(#SVGID_8_)"/><linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="22.435" y1="52.867" x2="22.435" y2="60.462"><stop offset="0" stop-color="#235427"/><stop offset="1" stop-color="#44984b"/></linearGradient><path d="M16.7 52.9h11.4v7.6H16.7z" fill="url(#SVGID_9_)"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36.2" y1="97" x2="36.2" y2="-1" gradientTransform="translate(0 2)"><stop offset=".029" stop-color="#235427"/><stop offset=".462" stop-color="#4eb056"/><stop offset=".998" stop-color="#64d66d"/></linearGradient><path d="M45.2 1l26.9 26.7V99H.3V1h44.9z" fill="url(#a)"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1=".3" y1="50" x2="72.1" y2="50" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset=".005" stop-color="#077265"/><stop offset=".343" stop-color="#006a69"/><stop offset="1" stop-color="#003836"/></linearGradient><path d="M45.2 1l26.9 26.7V99H.3V1h44.9z" fill="url(#b)" fill-opacity="0" stroke="#235427" stroke-width="2"/><path d="M7.2 81.3c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.6-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 2.9 0 5.3.9 7.1 2.7s2.6 4.3 2.6 7.6c0 3.2-.9 5.7-2.6 7.5s-4.1 2.7-7 2.7c-3 0-5.3-.9-7.1-2.7-1.8-1.8-2.7-4.3-2.7-7.4zm4.1-.2c0 2.2.5 4 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.5-2.9 1.5-5.2 0-2.3-.5-4-1.5-5.1s-2.3-1.7-4-1.7-3 .6-4 1.7c-1.1 1.2-1.6 3-1.6 5.2zm18.4-9.9h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8.8.9 1.5 1.9 1.9 3.2.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4h-7.6V71.2h-.1zm4 3.4v13.1h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9s.4-2.1.4-3.6-.1-2.7-.4-3.5c-.3-.8-.7-1.5-1.1-1.9-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.3-.2l-1.8-.1zm15.1 10l3.9-.4c.2 1.3.7 2.3 1.4 2.9s1.7.9 2.9.9c1.3 0 2.3-.3 2.9-.8.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.5-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6s1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2s-1.4-.7-2.6-.7c-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.7.9 3.7 1.3 2 .5 3.4.9 4.4 1.4.9.5 1.7 1.2 2.2 2 .5.8.8 1.9.8 3.2 0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2s-2.6.7-4.3.7c-2.5 0-4.5-.6-5.8-1.7-1.3-1-2.1-2.7-2.4-4.9z" fill="#fff"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="45.221" y1="25.779" x2="58.672" y2="12.329" gradientTransform="translate(0 2)"><stop offset=".484" stop-color="#ccf8d2"/><stop offset=".931" stop-color="#429b4e"/><stop offset=".998" stop-color="#2d7136"/></linearGradient><path d="M45.2 1l26.9 26.7H45.2V1z" fill="url(#c)"/><path d="M45.2 1l26.9 26.7H45.2V1z" fill-opacity="0" stroke="#235427" stroke-width="2" stroke-linejoin="bevel"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="53.28" y1="41.06" x2="53.28" y2="48.656"><stop offset="0" stop-color="#235427"/><stop offset="1" stop-color="#44984b"/></linearGradient><path d="M47.6 41.1H59v7.6H47.6z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="53.28" y1="52.782" x2="53.28" y2="60.378"><stop offset="0" stop-color="#235427"/><stop offset="1" stop-color="#44984b"/></linearGradient><path d="M47.6 52.8H59v7.6H47.6z" fill="url(#e)"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="43.855" y1="36.036" x2="43.855" y2="39.975"><stop offset="0" stop-color="#235427"/><stop offset="1" stop-color="#44984b"/></linearGradient><path d="M36.6 36h1.6c2.4.2 4.3.8 6.2 1.5 3.6-1.6 8.6-.4 11.8.8-4-.4-8.8 0-11.6 1.6-2.8-2.3-8.1-2.9-13-2.3 1.3-.8 3-1.4 5-1.6z" fill="url(#f)"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="28.139" y1="42.105" x2="28.139" y2="48.602"><stop offset="0" stop-color="#235427"/><stop offset="1" stop-color="#44984b"/></linearGradient><path d="M35.5 42.1c-2.9.2-5.3 1.1-6.8 2.4-4.8-2.2-13-1.2-16.1 1.7-.3.2-.6.4-.5.7 2.7-.8 6-1.5 9.4-1.2 3.4.3 5.9 1.4 7.8 2.9 3.5-3.1 8.6-4.9 15.1-4.8-2.4-1-5.7-1.9-8.9-1.7z" fill="url(#g)"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="37.908" y1="52.867" x2="37.908" y2="60.462"><stop offset="0" stop-color="#235427"/><stop offset="1" stop-color="#44984b"/></linearGradient><path d="M32.2 52.9h11.4v7.6H32.2z" fill="url(#h)"/><linearGradient id="i" gradientUnits="userSpaceOnUse" x1="22.435" y1="52.867" x2="22.435" y2="60.462"><stop offset="0" stop-color="#235427"/><stop offset="1" stop-color="#44984b"/></linearGradient><path d="M16.7 52.9h11.4v7.6H16.7z" fill="url(#i)"/></svg>

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M7.5 81.3c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.7-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 3 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.3 2.7 7.6 0 3.2-.9 5.7-2.6 7.5-1.8 1.8-4.1 2.7-7.1 2.7s-5.4-.9-7.1-2.7c-1.8-1.8-2.7-4.3-2.7-7.4zm4.2-.2c0 2.2.5 4 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.6-2.9 1.6-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.2 1.2-1.7 2.9-1.7 5.2zm18.4-9.9h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8s1.5 1.9 1.9 3.2c.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4h-7.6V71.2zm4.1 3.4v13.1h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9s.4-2.1.4-3.6-.1-2.7-.4-3.5c-.3-.8-.7-1.5-1.1-1.9s-1.1-.8-1.9-.9c-.6-.1-1.7-.2-3.3-.2h-1.8zm20.7 16.5V74.6H49v-3.4h15.9v3.4H59v16.5h-4.1z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_2_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/><path d="M39.2 34h1.9c2.8.2 5.1.9 7.3 1.8 4.2-1.9 10.3-.4 14 1-4.8-.5-10.5 0-13.8 1.9C45.3 36 39 35.3 33.1 36c1.7-1.1 3.7-1.8 6.1-2zm-1.4 7.3c-3.4.2-6.2 1.3-8.1 2.9-5.7-2.6-15.5-1.5-19.2 2-.3.2-.7.5-.6.8 3.2-1 7.1-1.8 11.2-1.5 4 .3 7 1.7 9.3 3.5 4.1-3.7 10.2-5.8 17.9-5.7-2.7-1.3-6.6-2.3-10.5-2z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M7.5 81.3c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.7-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 3 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.3 2.7 7.6 0 3.2-.9 5.7-2.6 7.5-1.8 1.8-4.1 2.7-7.1 2.7s-5.4-.9-7.1-2.7c-1.8-1.8-2.7-4.3-2.7-7.4zm4.2-.2c0 2.2.5 4 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.6-2.9 1.6-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.2 1.2-1.7 2.9-1.7 5.2zm18.4-9.9h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8s1.5 1.9 1.9 3.2c.4 1.3.7 2.8.7 4.7 0 1.6-.2 3-.6 4.2-.5 1.4-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4h-7.6V71.2zm4.1 3.4v13.1h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9s.4-2.1.4-3.6-.1-2.7-.4-3.5c-.3-.8-.7-1.5-1.1-1.9s-1.1-.8-1.9-.9c-.6-.1-1.7-.2-3.3-.2h-1.8zm20.7 16.5V74.6H49v-3.4h15.9v3.4H59v16.5h-4.1z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#b)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/><path d="M39.2 34h1.9c2.8.2 5.1.9 7.3 1.8 4.2-1.9 10.3-.4 14 1-4.8-.5-10.5 0-13.8 1.9C45.3 36 39 35.3 33.1 36c1.7-1.1 3.7-1.8 6.1-2zm-1.4 7.3c-3.4.2-6.2 1.3-8.1 2.9-5.7-2.6-15.5-1.5-19.2 2-.3.2-.7.5-.6.8 3.2-1 7.1-1.8 11.2-1.5 4 .3 7 1.7 9.3 3.5 4.1-3.7 10.2-5.8 17.9-5.7-2.7-1.3-6.6-2.3-10.5-2z"/></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#113c60"/><stop offset=".16" stop-color="#194f7e"/><stop offset=".36" stop-color="#1c5f97"/><stop offset="1" stop-color="#1d6fb5"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#113c60" stroke-width="2"/><path d="M8 81.3c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.7-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 3 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.3 2.7 7.6 0 3.2-.9 5.7-2.6 7.5-1.8 1.8-4.1 2.7-7.1 2.7s-5.4-.9-7.1-2.7C8.9 86.9 8 84.4 8 81.3zm4.2-.2c0 2.2.5 4 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.6-2.9 1.6-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.2 1.2-1.7 2.9-1.7 5.2zm17.4 3.5l3.9-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 2.9-.8.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6s1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2s-1.4-.7-2.6-.7c-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2-1.2.5-2.6.7-4.4.7-2.5 0-4.5-.6-5.8-1.7-1.2-1-2.1-2.7-2.3-4.9zm24.2 6.5V74.6h-5.9v-3.4h15.9v3.4h-5.9v16.5h-4.1z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_2_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#113c60" stroke-width="2" stroke-linejoin="bevel"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="26.413" y1="38.044" x2="26.413" y2="45.156"><stop offset=".005" stop-color="#113c60"/><stop offset=".824" stop-color="#194f7e"/><stop offset="1" stop-color="#1c5f97"/></linearGradient><path d="M26.4 38.1c-1.5.2-2.7 1.8-2.7 3.5 0 1.8 1.2 3.4 2.7 3.5 1.5.2 2.7-1.4 2.7-3.5s-1.2-3.7-2.7-3.5z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="26.713" y1="23.713" x2="26.713" y2="59.487"><stop offset=".005" stop-color="#113c60"/><stop offset=".824" stop-color="#194f7e"/><stop offset="1" stop-color="#1c5f97"/></linearGradient><path d="M15.9 27.9v27.7l21.7 3.9V23.7l-21.7 4.2zm10.5 19.4c-2.4-.3-4.3-2.9-4.3-5.7s1.9-5.4 4.3-5.7 4.3 2.3 4.3 5.7c0 3.5-1.9 6-4.3 5.7z" fill="url(#SVGID_4_)"/><linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="47.039" y1="31.202" x2="47.039" y2="41.997"><stop offset=".005" stop-color="#113c60"/><stop offset=".824" stop-color="#194f7e"/><stop offset="1" stop-color="#1c5f97"/></linearGradient><path d="M54.6 32.1L42.7 42l-3.2-2.6v-8.2h15.1z" fill="url(#SVGID_5_)"/><linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="47.039" y1="34.023" x2="47.039" y2="52.427"><stop offset=".005" stop-color="#113c60"/><stop offset=".824" stop-color="#194f7e"/><stop offset="1" stop-color="#1c5f97"/></linearGradient><path d="M54.6 34l-11.9 9.9-3.2-2.6v11.1h15.1z" fill="url(#SVGID_6_)"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#113c60"/><stop offset=".16" stop-color="#194f7e"/><stop offset=".36" stop-color="#1c5f97"/><stop offset="1" stop-color="#1d6fb5"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#113c60" stroke-width="2"/><path d="M8 81.3c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.7-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 3 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.3 2.7 7.6 0 3.2-.9 5.7-2.6 7.5-1.8 1.8-4.1 2.7-7.1 2.7s-5.4-.9-7.1-2.7C8.9 86.9 8 84.4 8 81.3zm4.2-.2c0 2.2.5 4 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.6-2.9 1.6-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.2 1.2-1.7 2.9-1.7 5.2zm17.4 3.5l3.9-.4c.2 1.3.7 2.3 1.4 2.9.7.6 1.7.9 2.9.9 1.3 0 2.3-.3 2.9-.8.7-.5 1-1.2 1-1.9 0-.5-.1-.9-.4-1.2s-.8-.6-1.5-.9c-.5-.2-1.6-.5-3.2-.9-2.2-.5-3.7-1.2-4.6-2-1.2-1.1-1.8-2.4-1.8-4 0-1 .3-2 .9-2.8.6-.9 1.4-1.5 2.5-2s2.4-.7 3.9-.7c2.5 0 4.4.5 5.7 1.6s1.9 2.5 2 4.4l-4 .2c-.2-1-.5-1.8-1.1-2.2s-1.4-.7-2.6-.7c-1.2 0-2.1.2-2.8.7-.4.3-.6.7-.6 1.2s.2.9.6 1.2c.5.4 1.8.9 3.7 1.3s3.4.9 4.4 1.4c.9.5 1.7 1.2 2.2 2s.8 1.9.8 3.2c0 1.1-.3 2.2-1 3.2-.6 1-1.5 1.7-2.7 2.2-1.2.5-2.6.7-4.4.7-2.5 0-4.5-.6-5.8-1.7-1.2-1-2.1-2.7-2.3-4.9zm24.2 6.5V74.6h-5.9v-3.4h15.9v3.4h-5.9v16.5h-4.1z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#b)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#113c60" stroke-width="2" stroke-linejoin="bevel"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="26.413" y1="38.044" x2="26.413" y2="45.156"><stop offset=".005" stop-color="#113c60"/><stop offset=".824" stop-color="#194f7e"/><stop offset="1" stop-color="#1c5f97"/></linearGradient><path d="M26.4 38.1c-1.5.2-2.7 1.8-2.7 3.5 0 1.8 1.2 3.4 2.7 3.5 1.5.2 2.7-1.4 2.7-3.5s-1.2-3.7-2.7-3.5z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="26.713" y1="23.713" x2="26.713" y2="59.487"><stop offset=".005" stop-color="#113c60"/><stop offset=".824" stop-color="#194f7e"/><stop offset="1" stop-color="#1c5f97"/></linearGradient><path d="M15.9 27.9v27.7l21.7 3.9V23.7l-21.7 4.2zm10.5 19.4c-2.4-.3-4.3-2.9-4.3-5.7s1.9-5.4 4.3-5.7 4.3 2.3 4.3 5.7c0 3.5-1.9 6-4.3 5.7z" fill="url(#d)"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="47.039" y1="31.202" x2="47.039" y2="41.997"><stop offset=".005" stop-color="#113c60"/><stop offset=".824" stop-color="#194f7e"/><stop offset="1" stop-color="#1c5f97"/></linearGradient><path d="M54.6 32.1L42.7 42l-3.2-2.6v-8.2h15.1z" fill="url(#e)"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="47.039" y1="34.023" x2="47.039" y2="52.427"><stop offset=".005" stop-color="#113c60"/><stop offset=".824" stop-color="#194f7e"/><stop offset="1" stop-color="#1c5f97"/></linearGradient><path d="M54.6 34l-11.9 9.9-3.2-2.6v11.1h15.1z" fill="url(#f)"/></svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -1 +1 @@
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#SVGID_1_)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M8.8 81.3c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.7-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 3 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.3 2.7 7.6 0 3.2-.9 5.7-2.6 7.5-1.8 1.8-4.1 2.7-7.1 2.7s-5.4-.9-7.1-2.7c-1.8-1.8-2.7-4.3-2.7-7.4zm4.2-.2c0 2.2.5 4 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.6-2.9 1.6-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.2 1.2-1.7 2.9-1.7 5.2zm22.9 10V74.6H30v-3.4h15.9v3.4H40v16.5h-4.1zm17.1 0V74.6h-5.9v-3.4H63v3.4h-5.9v16.5H53z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#SVGID_2_)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/><path d="M39.2 34h1.9c2.8.2 5.1.9 7.3 1.8 4.2-1.9 10.3-.4 14 1-4.8-.5-10.5 0-13.8 1.9C45.3 36 39 35.3 33.1 36c1.7-1.1 3.7-1.8 6.1-2zm-1.4 7.3c-3.4.2-6.2 1.3-8.1 2.9-5.7-2.6-15.5-1.5-19.2 2-.3.2-.7.5-.6.8 3.2-1 7.1-1.8 11.2-1.5 4 .3 7 1.7 9.3 3.5 4.1-3.7 10.2-5.8 17.9-5.7-2.7-1.3-6.6-2.3-10.5-2z"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="3.005" x2="36" y2="101" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#002d44"/><stop offset=".056" stop-color="#013852"/><stop offset=".16" stop-color="#0a4d6b"/><stop offset=".274" stop-color="#0f5e82"/><stop offset=".398" stop-color="#0f6d96"/><stop offset=".539" stop-color="#0d77a4"/><stop offset=".711" stop-color="#0a7eae"/><stop offset="1" stop-color="#0881b2"/></linearGradient><path d="M45 1l27 26.7V99H0V1h45z" fill="url(#a)"/><path d="M45 1l27 26.7V99H0V1h45z" fill-opacity="0" stroke="#01415e" stroke-width="2"/><path d="M8.8 81.3c0-2 .3-3.7.9-5.1.5-1 1.1-1.9 1.9-2.7.8-.8 1.7-1.4 2.6-1.8 1.2-.5 2.7-.8 4.3-.8 3 0 5.3.9 7.1 2.7 1.8 1.8 2.7 4.3 2.7 7.6 0 3.2-.9 5.7-2.6 7.5-1.8 1.8-4.1 2.7-7.1 2.7s-5.4-.9-7.1-2.7c-1.8-1.8-2.7-4.3-2.7-7.4zm4.2-.2c0 2.2.5 4 1.6 5.1 1 1.2 2.4 1.7 4 1.7s2.9-.6 4-1.7c1-1.2 1.6-2.9 1.6-5.2 0-2.3-.5-4-1.5-5.1-1-1.1-2.3-1.7-4-1.7s-3 .6-4 1.7c-1.2 1.2-1.7 2.9-1.7 5.2zm22.9 10V74.6H30v-3.4h15.9v3.4H40v16.5h-4.1zm17.1 0V74.6h-5.9v-3.4H63v3.4h-5.9v16.5H53z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.069" y1="74.205" x2="58.569" y2="87.705" gradientTransform="matrix(1 0 0 -1 0 102)"><stop offset=".005" stop-color="#dff1fa"/><stop offset=".3" stop-color="#dceef7"/><stop offset=".443" stop-color="#d3e4ef"/><stop offset=".553" stop-color="#c4d6e3"/><stop offset=".647" stop-color="#b1c5d5"/><stop offset=".73" stop-color="#9ab0c5"/><stop offset=".805" stop-color="#819ab3"/><stop offset=".875" stop-color="#64829f"/><stop offset=".938" stop-color="#426c8c"/><stop offset=".998" stop-color="#06577a"/><stop offset="1" stop-color="#015679"/></linearGradient><path d="M45 1l27 26.7H45V1z" fill="url(#b)"/><path d="M45 1l27 26.7H45V1z" fill-opacity="0" stroke="#01415e" stroke-width="2" stroke-linejoin="bevel"/><path d="M39.2 34h1.9c2.8.2 5.1.9 7.3 1.8 4.2-1.9 10.3-.4 14 1-4.8-.5-10.5 0-13.8 1.9C45.3 36 39 35.3 33.1 36c1.7-1.1 3.7-1.8 6.1-2zm-1.4 7.3c-3.4.2-6.2 1.3-8.1 2.9-5.7-2.6-15.5-1.5-19.2 2-.3.2-.7.5-.6.8 3.2-1 7.1-1.8 11.2-1.5 4 .3 7 1.7 9.3 3.5 4.1-3.7 10.2-5.8 17.9-5.7-2.7-1.3-6.6-2.3-10.5-2z"/></svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="127.8" x2="36" y2="29.8" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.075" y1="56.575" x2="58.575" y2="43.075" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_2_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M9.3 89.8V74.1h5.1c1.9 0 3.2.1 3.8.2.9.2 1.7.8 2.3 1.5.6.8.9 1.8.9 3.1 0 1-.2 1.8-.5 2.4-.4.7-.8 1.2-1.3 1.6-.5.4-1.1.6-1.6.7-.8.2-1.9.2-3.3.2h-2.1v5.9H9.3zm3.2-13.1v4.5h1.7c1.3 0 2.1-.1 2.5-.2.4-.2.8-.4 1-.8.2-.4.4-.8.4-1.2 0-.6-.2-1-.5-1.4-.3-.4-.8-.6-1.3-.7-.4-.1-1.1-.1-2.3-.1h-1.5zm24 13.1H33l-1.4-3.6h-6.3L24 89.8h-3.4l6.1-15.7h3.4l6.4 15.7zm-5.8-6.2l-2.2-5.8-2.1 5.8h4.3zm7.5 6.2V74.1h6.7c1.7 0 2.9.1 3.7.4.8.3 1.4.8 1.8 1.5.5.7.7 1.6.7 2.5 0 1.2-.3 2.2-1 2.9-.7.8-1.7 1.3-3.1 1.5.7.4 1.3.8 1.7 1.3s1.1 1.3 1.8 2.6l1.9 3.1h-3.8l-2.3-3.4c-.8-1.2-1.4-2-1.7-2.3-.3-.3-.6-.5-1-.7-.3-.1-.9-.2-1.6-.2h-.6v6.6h-3.2zm3.2-9.1h2.4c1.5 0 2.5-.1 2.9-.2.4-.1.7-.4.9-.7s.3-.7.3-1.2-.1-1-.4-1.3c-.3-.3-.7-.5-1.2-.6-.3 0-1-.1-2.3-.1h-2.5v4.1zm16.3 9.1V76.7H53V74h12.5v2.7h-4.7v13.1h-3.1z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="127.8" x2="36" y2="29.8" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.075" y1="56.575" x2="58.575" y2="43.075" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M9.3 89.8V74.1h5.1c1.9 0 3.2.1 3.8.2.9.2 1.7.8 2.3 1.5.6.8.9 1.8.9 3.1 0 1-.2 1.8-.5 2.4-.4.7-.8 1.2-1.3 1.6-.5.4-1.1.6-1.6.7-.8.2-1.9.2-3.3.2h-2.1v5.9H9.3zm3.2-13.1v4.5h1.7c1.3 0 2.1-.1 2.5-.2.4-.2.8-.4 1-.8.2-.4.4-.8.4-1.2 0-.6-.2-1-.5-1.4-.3-.4-.8-.6-1.3-.7-.4-.1-1.1-.1-2.3-.1h-1.5zm24 13.1H33l-1.4-3.6h-6.3L24 89.8h-3.4l6.1-15.7h3.4l6.4 15.7zm-5.8-6.2l-2.2-5.8-2.1 5.8h4.3zm7.5 6.2V74.1h6.7c1.7 0 2.9.1 3.7.4.8.3 1.4.8 1.8 1.5.5.7.7 1.6.7 2.5 0 1.2-.3 2.2-1 2.9-.7.8-1.7 1.3-3.1 1.5.7.4 1.3.8 1.7 1.3s1.1 1.3 1.8 2.6l1.9 3.1h-3.8l-2.3-3.4c-.8-1.2-1.4-2-1.7-2.3-.3-.3-.6-.5-1-.7-.3-.1-.9-.2-1.6-.2h-.6v6.6h-3.2zm3.2-9.1h2.4c1.5 0 2.5-.1 2.9-.2.4-.1.7-.4.9-.7s.3-.7.3-1.2-.1-1-.4-1.3c-.3-.3-.7-.5-1.2-.6-.3 0-1-.1-2.3-.1h-2.5v4.1zm16.3 9.1V76.7H53V74h12.5v2.7h-4.7v13.1h-3.1z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1 +1 @@
<svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1="127.8" x2="36" y2="29.8" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.075" y1="56.575" x2="58.575" y2="43.075" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#SVGID_2_)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M9.3 89.8v-20h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1 1 2.9 2 .8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.3-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1 1c-1 .2-2.4.3-4.2.3h-2.6V90H9.3zm4.1-16.7v5.7h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.6 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.5-.1-2.9-.1h-2.1zm27.4 9.3l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9s-3.2 1.6-5.3 1.6c-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.9-2.7-.9c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1s1.2-1.7 1.5-3.2zm7.4-12.6h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8s1.5 2 1.9 3.2.7 2.9.7 4.8c0 1.6-.2 3.1-.6 4.3-.5 1.5-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4h-7.6v-20zm4 3.3v13.3h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8s.8-1 1.1-1.9.4-2.1.4-3.7-.1-2.7-.4-3.6-.7-1.5-1.1-1.9-1.1-.8-1.9-.9c-.6-.1-1.7-.2-3.3-.2h-1.8z" fill="#4c6c7b"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1="127.8" x2="36" y2="29.8" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#c8d4db"/><stop offset=".139" stop-color="#d8e1e6"/><stop offset=".359" stop-color="#ebf0f3"/><stop offset=".617" stop-color="#f9fafb"/><stop offset="1" stop-color="#fff"/></linearGradient><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.7v71.3H0V.8h45z" fill-opacity="0" stroke="#7191a1" stroke-width="2"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.075" y1="56.575" x2="58.575" y2="43.075" gradientTransform="translate(0 -29)"><stop offset="0" stop-color="#fff"/><stop offset=".35" stop-color="#fafbfb"/><stop offset=".532" stop-color="#edf1f4"/><stop offset=".675" stop-color="#dde5e9"/><stop offset=".799" stop-color="#c7d3da"/><stop offset=".908" stop-color="#adbdc7"/><stop offset="1" stop-color="#92a5b0"/></linearGradient><path d="M45 .8l27 26.7H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.7H45V.8z" fill-opacity="0" stroke="#7191a1" stroke-width="2" stroke-linejoin="bevel"/><path d="M9.3 89.8v-20h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1 1 2.9 2 .8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.3-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1 1c-1 .2-2.4.3-4.2.3h-2.6V90H9.3zm4.1-16.7v5.7h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.6 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.5-.1-2.9-.1h-2.1zm27.4 9.3l3.9 1.2c-.6 2.2-1.6 3.8-3 4.9s-3.2 1.6-5.3 1.6c-2.7 0-4.8-.9-6.6-2.7-1.7-1.8-2.6-4.3-2.6-7.5 0-3.3.9-5.9 2.6-7.8s4-2.8 6.8-2.8c2.5 0 4.4.7 6 2.2.9.9 1.6 2.1 2.1 3.7l-4 1c-.2-1-.7-1.9-1.5-2.5s-1.7-.9-2.7-.9c-1.5 0-2.7.5-3.6 1.6-.9 1.1-1.4 2.8-1.4 5.2 0 2.5.5 4.3 1.4 5.4.9 1.1 2.1 1.6 3.6 1.6 1.1 0 2-.3 2.8-1s1.2-1.7 1.5-3.2zm7.4-12.6h7.4c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8s1.5 2 1.9 3.2.7 2.9.7 4.8c0 1.6-.2 3.1-.6 4.3-.5 1.5-1.2 2.6-2.1 3.5-.7.7-1.6 1.2-2.8 1.6-.9.3-2.1.4-3.6.4h-7.6v-20zm4 3.3v13.3h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8s.8-1 1.1-1.9.4-2.1.4-3.7-.1-2.7-.4-3.6-.7-1.5-1.1-1.9-1.1-.8-1.9-.9c-.6-.1-1.7-.2-3.3-.2h-1.8z" fill="#4c6c7b"/></svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -1 +1 @@
<svg id="PDF" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36" y1=".767" x2="36" y2="99.25" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset=".005" stop-color="#6e0e10"/><stop offset=".047" stop-color="#7e1416"/><stop offset=".116" stop-color="#94191c"/><stop offset=".196" stop-color="#a71d21"/><stop offset=".289" stop-color="#b61f24"/><stop offset=".403" stop-color="#c02026"/><stop offset=".563" stop-color="#c72027"/><stop offset="1" stop-color="#c82127"/></linearGradient><path d="M45 .8l27 26.9v71.6H0V.8h45z" fill="url(#SVGID_1_)"/><path d="M45 .8l27 26.9v71.6H0V.8h45z" fill-opacity="0" stroke="#951b1f" stroke-width="2"/><path d="M9.9 91.3v-20h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 2 .8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.3-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3H14v7.5H9.9zM14 74.7v5.7h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.6 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.5-.1-2.9-.1H14zm14.6-3.4H36c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8.8.9 1.5 2 1.9 3.2.4 1.3.7 2.8.7 4.7 0 1.6-.2 3.1-.6 4.2-.5 1.5-1.2 2.6-2.1 3.5-.7.7-1.7 1.2-2.8 1.6-.9.3-2.1.4-3.6.4h-7.6V71.3zm4 3.4v13.2h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9.3-.9.4-2.1.4-3.7 0-1.5-.1-2.7-.4-3.5s-.7-1.5-1.1-1.9c-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.3-.2h-1.8zm16.2 16.6v-20h13.7v3.4h-9.7v4.7h8.4v3.4h-8.4v8.5h-4z" fill="#fff"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="45.035" y1="72.356" x2="58.535" y2="85.856" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#fddfd8"/><stop offset=".166" stop-color="#fcdcd4"/><stop offset=".302" stop-color="#f9d3c9"/><stop offset=".427" stop-color="#f4c5b7"/><stop offset=".546" stop-color="#efb1a0"/><stop offset=".661" stop-color="#e99983"/><stop offset=".772" stop-color="#e27e66"/><stop offset=".88" stop-color="#da5c46"/><stop offset=".984" stop-color="#d22b2a"/><stop offset="1" stop-color="#d12027"/></linearGradient><path d="M45 .8l27 26.9H45V.8z" fill="url(#SVGID_2_)"/><path d="M45 .8l27 26.9H45V.8z" fill-opacity="0" stroke="#8e191c" stroke-width="2" stroke-linejoin="round"/><linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="10.268" y1="31.916" x2="52.274" y2="73.921" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset=".005" stop-color="#a50d12"/><stop offset=".432" stop-color="#a20d12"/><stop offset=".639" stop-color="#9a0c10"/><stop offset=".799" stop-color="#8c090b"/><stop offset=".933" stop-color="#7b0405"/><stop offset="1" stop-color="#700101"/></linearGradient><path d="M15.7 54.3c-2.9 3-6.7 5.2-7.8 9.9 7-1.7 11-9.2 14.9-15.9 1.6-2.8 3.8-6.4 5.7-10.2 1.6-3.3 4.2-8.4 4.3-11.3.2-5.5-4.5-12.6-.4-18 2.6-.4 4 .5 3.6 3.2-.8-.8-.5-2.5-2.1-2.5-2.8 2.6-1.2 10.4 0 13.4.7-2.3 1.4-4.8 1.4-7.8 1.2 4.3-.7 7.9-.4 11.3 1 8.7 8.9 13.8 14.9 17.7 5.8-.2 15.3-1.7 17.8 2.5-.6.9-1.8-.7-3.2-1.1-3.1-.7-7.7-.1-11.4-.4 3.5 2.3 7.9 3.7 13.9 3.6-5.5 3.9-13.3-2.6-18.1-3.2-7-.9-14.8 3.4-21.7 3.9 5.6-2.5 12.4-3.7 19.2-5-5.2-3.8-9.7-8.3-12.1-14.8-1.7 5.7-5.5 12.1-9.2 18.4-3.7 6.1-7 12.6-11.7 15.9-2.1 1.5-4.4 1.8-6.8.4.6-5.4 6.7-8.8 9.2-10z" fill="url(#SVGID_3_)"/><linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="9.782" y1="30.875" x2="53.239" y2="74.332" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset=".005" stop-color="#a50d12"/><stop offset=".432" stop-color="#a20d12"/><stop offset=".639" stop-color="#9a0c10"/><stop offset=".799" stop-color="#8c090b"/><stop offset=".933" stop-color="#7b0405"/><stop offset="1" stop-color="#700101"/></linearGradient><path d="M6.8 65.5l-.3.1v-.2l-.6-.3-.6-.3.1-.6c.8-6.1 7.3-9.5 9.8-10.7l1.1 1.6c-2.6 2.7-5.5 4.5-6.9 7.7 5.4-2.3 8.9-8.8 12.5-14.8 1.6-2.8 3.8-6.4 5.7-10.1 1.6-3.2 4.1-8.4 4.2-10.9v-.3c0-3.4-2.1-7.9-2.1-12.2 0-2.1.5-4.2 1.9-6l.2-.5.4-.1c.4-.1.8-.1 1.2-.1 1 0 1.9.2 2.6.8.7.6 1 1.6 1 2.6 0 .3 0 .7-.1 1.1l-.3 1.9-1.4-1.3c-.7-.7-.8-1.4-1-1.8-.1-.1-.1-.2-.1-.2-.6.8-.9 2.3-.9 4 0 1.5.2 3.1.5 4.6.3-1.3.4-2.6.5-4.1l2-.3c.3 1.1.5 2.3.5 3.3 0 2.8-.8 5.3-.8 7.4v.9c.8 8 8.2 13 14.2 16.8 2.4-.1 5.6-.4 8.6-.4 4 0 7.9.5 9.8 3.4l.3.6-.4.5c-.1.2-.4.4-.6.5l2.3-.1-2.6 1.9c-1.4 1-3 1.4-4.6 1.4-5.3-.1-10.9-4.1-14.2-4.5-.6-.1-1.2-.1-1.8-.1-6.1 0-13.1 3.5-19.6 4l-.5-1.9c5.1-2.3 11.2-3.5 17.2-4.6-3.9-3.1-7.3-6.7-9.6-11.4-2 5.2-5.2 10.7-8.5 16.1-3.7 6.1-7 12.6-12 16.2-1.3.9-2.7 1.5-4.2 1.5-1.1-.5-2-.7-2.9-1.1zM66 47.7h.5c-.5-.2-.8-.4-1.1-.6-.5-.3-.9-.6-1.2-.6-1.1-.3-2.6-.4-4.2-.4h-2.9c2.5 1 5.4 1.6 8.9 1.6zM51.1 45H51h.1zm-2.5-.6c-1.7-1.1-3.5-2.3-5.3-3.6 1.1 1 2.3 1.9 3.5 2.8l1.1.8h.7zm-14.8-18v.4c0 .4-.1.8-.1 1.2l.3-1.1v-.4c0-.3-.1-.6-.1-.9l-.1-.3c-.1.3 0 .7 0 1.1z" fill="url(#SVGID_4_)"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 100"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="36" y1=".767" x2="36" y2="99.25" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset=".005" stop-color="#6e0e10"/><stop offset=".047" stop-color="#7e1416"/><stop offset=".116" stop-color="#94191c"/><stop offset=".196" stop-color="#a71d21"/><stop offset=".289" stop-color="#b61f24"/><stop offset=".403" stop-color="#c02026"/><stop offset=".563" stop-color="#c72027"/><stop offset="1" stop-color="#c82127"/></linearGradient><path d="M45 .8l27 26.9v71.6H0V.8h45z" fill="url(#a)"/><path d="M45 .8l27 26.9v71.6H0V.8h45z" fill-opacity="0" stroke="#951b1f" stroke-width="2"/><path d="M9.9 91.3v-20h6.5c2.5 0 4.1.1 4.8.3 1.1.3 2.1.9 2.9 2 .8 1 1.2 2.3 1.2 3.9 0 1.2-.2 2.3-.7 3.1-.4.8-1 1.5-1.7 2s-1.4.8-2.1.9c-1 .2-2.4.3-4.2.3H14v7.5H9.9zM14 74.7v5.7h2.2c1.6 0 2.7-.1 3.2-.3.5-.2 1-.5 1.3-1 .3-.4.5-1 .5-1.6 0-.7-.2-1.3-.6-1.8-.4-.5-1-.8-1.6-.9-.5-.1-1.5-.1-2.9-.1H14zm14.6-3.4H36c1.7 0 2.9.1 3.8.4 1.2.3 2.2 1 3 1.8.8.9 1.5 2 1.9 3.2.4 1.3.7 2.8.7 4.7 0 1.6-.2 3.1-.6 4.2-.5 1.5-1.2 2.6-2.1 3.5-.7.7-1.7 1.2-2.8 1.6-.9.3-2.1.4-3.6.4h-7.6V71.3zm4 3.4v13.2h3c1.1 0 1.9-.1 2.4-.2.7-.2 1.2-.4 1.6-.8.4-.4.8-1 1.1-1.9.3-.9.4-2.1.4-3.7 0-1.5-.1-2.7-.4-3.5s-.7-1.5-1.1-1.9c-.5-.5-1.1-.8-1.9-.9-.6-.1-1.7-.2-3.3-.2h-1.8zm16.2 16.6v-20h13.7v3.4h-9.7v4.7h8.4v3.4h-8.4v8.5h-4z" fill="#fff"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="45.035" y1="72.356" x2="58.535" y2="85.856" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset="0" stop-color="#fddfd8"/><stop offset=".166" stop-color="#fcdcd4"/><stop offset=".302" stop-color="#f9d3c9"/><stop offset=".427" stop-color="#f4c5b7"/><stop offset=".546" stop-color="#efb1a0"/><stop offset=".661" stop-color="#e99983"/><stop offset=".772" stop-color="#e27e66"/><stop offset=".88" stop-color="#da5c46"/><stop offset=".984" stop-color="#d22b2a"/><stop offset="1" stop-color="#d12027"/></linearGradient><path d="M45 .8l27 26.9H45V.8z" fill="url(#b)"/><path d="M45 .8l27 26.9H45V.8z" fill-opacity="0" stroke="#8e191c" stroke-width="2" stroke-linejoin="round"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="10.268" y1="31.916" x2="52.274" y2="73.921" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset=".005" stop-color="#a50d12"/><stop offset=".432" stop-color="#a20d12"/><stop offset=".639" stop-color="#9a0c10"/><stop offset=".799" stop-color="#8c090b"/><stop offset=".933" stop-color="#7b0405"/><stop offset="1" stop-color="#700101"/></linearGradient><path d="M15.7 54.3c-2.9 3-6.7 5.2-7.8 9.9 7-1.7 11-9.2 14.9-15.9 1.6-2.8 3.8-6.4 5.7-10.2 1.6-3.3 4.2-8.4 4.3-11.3.2-5.5-4.5-12.6-.4-18 2.6-.4 4 .5 3.6 3.2-.8-.8-.5-2.5-2.1-2.5-2.8 2.6-1.2 10.4 0 13.4.7-2.3 1.4-4.8 1.4-7.8 1.2 4.3-.7 7.9-.4 11.3 1 8.7 8.9 13.8 14.9 17.7 5.8-.2 15.3-1.7 17.8 2.5-.6.9-1.8-.7-3.2-1.1-3.1-.7-7.7-.1-11.4-.4 3.5 2.3 7.9 3.7 13.9 3.6-5.5 3.9-13.3-2.6-18.1-3.2-7-.9-14.8 3.4-21.7 3.9 5.6-2.5 12.4-3.7 19.2-5-5.2-3.8-9.7-8.3-12.1-14.8-1.7 5.7-5.5 12.1-9.2 18.4-3.7 6.1-7 12.6-11.7 15.9-2.1 1.5-4.4 1.8-6.8.4.6-5.4 6.7-8.8 9.2-10z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="9.782" y1="30.875" x2="53.239" y2="74.332" gradientTransform="matrix(1 0 0 -1 0 100)"><stop offset=".005" stop-color="#a50d12"/><stop offset=".432" stop-color="#a20d12"/><stop offset=".639" stop-color="#9a0c10"/><stop offset=".799" stop-color="#8c090b"/><stop offset=".933" stop-color="#7b0405"/><stop offset="1" stop-color="#700101"/></linearGradient><path d="M6.8 65.5l-.3.1v-.2l-.6-.3-.6-.3.1-.6c.8-6.1 7.3-9.5 9.8-10.7l1.1 1.6c-2.6 2.7-5.5 4.5-6.9 7.7 5.4-2.3 8.9-8.8 12.5-14.8 1.6-2.8 3.8-6.4 5.7-10.1 1.6-3.2 4.1-8.4 4.2-10.9v-.3c0-3.4-2.1-7.9-2.1-12.2 0-2.1.5-4.2 1.9-6l.2-.5.4-.1c.4-.1.8-.1 1.2-.1 1 0 1.9.2 2.6.8.7.6 1 1.6 1 2.6 0 .3 0 .7-.1 1.1l-.3 1.9-1.4-1.3c-.7-.7-.8-1.4-1-1.8-.1-.1-.1-.2-.1-.2-.6.8-.9 2.3-.9 4 0 1.5.2 3.1.5 4.6.3-1.3.4-2.6.5-4.1l2-.3c.3 1.1.5 2.3.5 3.3 0 2.8-.8 5.3-.8 7.4v.9c.8 8 8.2 13 14.2 16.8 2.4-.1 5.6-.4 8.6-.4 4 0 7.9.5 9.8 3.4l.3.6-.4.5c-.1.2-.4.4-.6.5l2.3-.1-2.6 1.9c-1.4 1-3 1.4-4.6 1.4-5.3-.1-10.9-4.1-14.2-4.5-.6-.1-1.2-.1-1.8-.1-6.1 0-13.1 3.5-19.6 4l-.5-1.9c5.1-2.3 11.2-3.5 17.2-4.6-3.9-3.1-7.3-6.7-9.6-11.4-2 5.2-5.2 10.7-8.5 16.1-3.7 6.1-7 12.6-12 16.2-1.3.9-2.7 1.5-4.2 1.5-1.1-.5-2-.7-2.9-1.1zM66 47.7h.5c-.5-.2-.8-.4-1.1-.6-.5-.3-.9-.6-1.2-.6-1.1-.3-2.6-.4-4.2-.4h-2.9c2.5 1 5.4 1.6 8.9 1.6zM51.1 45H51h.1zm-2.5-.6c-1.7-1.1-3.5-2.3-5.3-3.6 1.1 1 2.3 1.9 3.5 2.8l1.1.8h.7zm-14.8-18v.4c0 .4-.1.8-.1 1.2l.3-1.1v-.4c0-.3-.1-.6-.1-.9l-.1-.3c-.1.3 0 .7 0 1.1z" fill="url(#d)"/></svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

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