Updating the client flags to svg flags
|
@ -1,4 +1,8 @@
|
|||
# Changelog:
|
||||
* **23.03.21**
|
||||
- Made the permission editor popoutable
|
||||
- Now using SVG flags for higher quality.
|
||||
- Fixed issue [#74](https://github.com/TeaSpeak/TeaWeb/issues/74) (Swiss flag box has black background)
|
||||
* **21.03.21**
|
||||
- Reworked the server group assignment modal. It now better reacts to the user input as well is now popoutable
|
||||
|
||||
|
|
|
@ -0,0 +1,84 @@
|
|||
/* Country icons from https://www.flaticon.com/packs/rectangular-country-simple-flags?word=country&k=1616497480370 */
|
||||
/* Worldwide: https://www.flaticon.com/free-icon/worldwide_814513?term=earth%20flag&page=1&position=1&page=1&position=1&related_id=814513&origin=search */
|
||||
|
||||
import * as path from "path";
|
||||
import * as fs from "fs-extra";
|
||||
import {getKnownCountries} from "./js/i18n/country";
|
||||
|
||||
const kIconsPath = path.join(__dirname, "img", "country-flags");
|
||||
|
||||
async function fixupAdobeTags() {
|
||||
const icons = await fs.readdir(kIconsPath);
|
||||
for(const icon of icons) {
|
||||
const iconPath = path.join(kIconsPath, icon);
|
||||
|
||||
console.error("Icon: %s", icon);
|
||||
let content = (await fs.readFile(iconPath)).toString();
|
||||
content = content.replace(/<g>\n<\/g>\n/g, "");
|
||||
content = content.replace("\n<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->", "");
|
||||
content = content.replace("id=\"Capa_1\" ", "");
|
||||
content = content.replace("encoding=\"iso-8859-1\"", "encoding=\"utf-8\"");
|
||||
await fs.writeFile(iconPath, content);
|
||||
}
|
||||
}
|
||||
|
||||
async function fixupIconNames() {
|
||||
const icons = await fs.readdir(kIconsPath);
|
||||
for(const icon of icons) {
|
||||
if(!icon.match(/^[0-9]{3}-/)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
let newName = icon.substring(4).replace(/-/g, "_");
|
||||
await fs.rename(path.join(kIconsPath, icon), path.join(kIconsPath, newName));
|
||||
}
|
||||
}
|
||||
|
||||
async function generateMapping() {
|
||||
const icons = await fs.readdir(kIconsPath);
|
||||
const knownCountries = getKnownCountries();
|
||||
|
||||
let countFound = 0, countUnknown = 0;
|
||||
for(const country of knownCountries) {
|
||||
let name = country.name;
|
||||
const splitIndex = name.indexOf(",");
|
||||
if(splitIndex !== -1) {
|
||||
name = name.substring(splitIndex + 2) + " " + name.substring(0, splitIndex);
|
||||
}
|
||||
|
||||
let iconName = name.replace(/ /g, "_").toLocaleLowerCase() + ".svg";
|
||||
|
||||
console.log("array.push({");
|
||||
console.log("name: \"%s\",", country.name);
|
||||
console.log("alpha_2: \"%s\",", country.alpha_2);
|
||||
console.log("alpha_3: \"%s\",", country.alpha_3);
|
||||
console.log("un_code: %d,", country.un_code);
|
||||
if(icons.indexOf(iconName) === -1) {
|
||||
iconName = undefined;
|
||||
console.log("icon: \"%s\", // FIXME: Resolve icons or remove", "worldwide");
|
||||
countUnknown++;
|
||||
} else {
|
||||
console.log("icon: \"%s\",", iconName.replace(".svg", "").replace(/_/g, "-"));
|
||||
countFound++;
|
||||
}
|
||||
console.log("});");
|
||||
}
|
||||
|
||||
/*
|
||||
array.push({
|
||||
name: "Netherlands",
|
||||
alpha_2: "NL",
|
||||
alpha_3: "NLD",
|
||||
un_code: 528
|
||||
});
|
||||
*/
|
||||
|
||||
console.log("Icons resolved %d. Unresolved %d.", countFound, countUnknown);
|
||||
}
|
||||
|
||||
async function main() {
|
||||
//await fixupAdobeTags();
|
||||
//await fixupIconNames();
|
||||
await generateMapping();
|
||||
}
|
||||
main().then(undefined);
|
|
@ -1,3 +1,12 @@
|
|||
/*
|
||||
Still is use by (grep -rne "flag-" -w shared/js/):
|
||||
shared/js/ui/modal/ModalClientInfo.ts
|
||||
shared/js/ui/modal/ModalMusicManage.ts
|
||||
shared/js/ui/modal/ModalServerInfo.ts
|
||||
shared/js/ui/modal/ModalSettings.tsx
|
||||
|
||||
TODO: Remove when these modals have been reworked
|
||||
*/
|
||||
:global {
|
||||
.country {
|
||||
width: 16px;
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#F0F0F0;" width="512" height="341.337"/>
|
||||
<g>
|
||||
<rect y="85.331" style="fill:#6DA544;" width="512" height="48.762"/>
|
||||
<rect y="182.856" style="fill:#6DA544;" width="512" height="48.762"/>
|
||||
<rect y="280.381" style="fill:#6DA544;" width="512" height="48.762"/>
|
||||
<rect y="377.895" style="fill:#6DA544;" width="512" height="48.762"/>
|
||||
</g>
|
||||
<rect y="85.331" style="fill:#D80027;" width="256" height="146.287"/>
|
||||
<g>
|
||||
<polygon style="fill:#F0F0F0;" points="116.87,199.777 109.449,184.937 109.449,155.255 128,140.415 146.551,155.255 146.551,177.516 153.971,170.096 153.971,184.937 139.13,199.777 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="76.959,154.266 78.924,160.313 85.281,160.313 80.138,164.049 82.104,170.096 76.959,166.359 71.816,170.096 73.78,164.049 68.638,160.313 74.995,160.313 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="91.8,139.425 93.765,145.473 100.123,145.473 94.979,149.209 96.944,155.255 91.8,151.519 86.657,155.255 88.622,149.209 83.478,145.473 89.836,145.473 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="106.641,124.584 108.605,130.631 114.963,130.631 109.82,134.369 111.784,140.415 106.641,136.678 101.497,140.415 103.462,134.369 98.318,130.631 104.676,130.631 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="179.041,154.266 177.076,160.313 170.719,160.313 175.862,164.049 173.896,170.096 179.041,166.359 184.184,170.096 182.22,164.049 187.362,160.313 181.005,160.313 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="164.199,139.425 162.235,145.473 155.878,145.473 161.021,149.209 159.056,155.255 164.199,151.519 169.344,155.255 167.378,149.209 172.522,145.473 166.164,145.473 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="149.359,124.584 147.395,130.631 141.037,130.631 146.18,134.369 144.216,140.415 149.359,136.678 154.503,140.415 152.538,134.369 157.682,130.631 151.324,130.631 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="128,117.164 126.035,123.212 119.678,123.212 124.821,126.948 122.857,132.994 128,129.258 133.143,132.994 131.179,126.948 136.322,123.212 129.966,123.212 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#D80027;" width="512" height="341.326"/>
|
||||
<rect x="330.207" y="85.331" style="fill:#496E2D;" width="181.793" height="341.337"/>
|
||||
<rect y="85.331" width="181.793" height="341.337"/>
|
||||
<g>
|
||||
<path style="fill:#FFDA44;" d="M256,196.632c-32.785,0-59.362,26.577-59.362,59.362s26.577,59.362,59.362,59.362 s59.362-26.577,59.362-59.362S288.785,196.632,256,196.632z M256,293.095c-20.491,0-37.101-16.611-37.101-37.101 s16.61-37.101,37.101-37.101s37.101,16.61,37.101,37.101S276.491,293.095,256,293.095z"/>
|
||||
<path style="fill:#FFDA44;" d="M256,233.734c-8.196,0-14.84,6.644-14.84,14.84v22.261h29.682v-22.261 C270.84,240.377,264.196,233.734,256,233.734z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 924 B |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.334" style="fill:#0052B4;" width="512" height="341.337"/>
|
||||
<polygon style="fill:#FFDA44;" points="512,295.883 202.195,295.883 202.195,426.666 183.652,426.666 140.978,426.666 122.435,426.666 122.435,295.883 0,295.883 0,277.329 0,234.666 0,216.111 122.435,216.111 122.435,85.329 140.978,85.329 183.652,85.329 202.195,85.329 202.195,216.111 512,216.111 512,234.666 512,277.329 "/>
|
||||
<polygon style="fill:#D80027;" points="512,234.666 512,277.329 183.652,277.329 183.652,426.666 140.978,426.666 140.978,277.329 0,277.329 0,234.666 140.978,234.666 140.978,85.329 183.652,85.329 183.652,234.666 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 854 B |
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#D80027;" width="512" height="341.337"/>
|
||||
<path d="M352.464,212h-61.817c3.817-3.996,6.165-9.405,6.165-15.368c0-12.295-9.966-22.261-22.261-22.261 c-7.745,0-14.563,3.957-18.551,9.958c-3.988-6-10.805-9.958-18.551-9.958c-12.295,0-22.261,9.966-22.261,22.261 c0,5.963,2.349,11.372,6.165,15.368h-61.817c0,16.393,14.278,29.68,30.67,29.68h-0.988c0,16.393,13.289,29.682,29.682,29.682 c0,5.309,1.399,10.287,3.842,14.595l-24.619,24.621l18.888,18.888l26.794-26.794c1.05,0.385,2.136,0.692,3.257,0.903l-16.191,36.557 L256,367.299l25.13-27.167l-16.191-36.557c1.122-0.21,2.207-0.518,3.257-0.903l26.794,26.794l18.888-18.888l-24.621-24.621 c2.443-4.309,3.842-9.286,3.842-14.595c16.393,0,29.682-13.289,29.682-29.682h-0.988C338.186,241.681,352.464,228.393,352.464,212z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#496E2D;" width="512" height="341.326"/>
|
||||
<rect x="256" y="85.331" style="fill:#F0F0F0;" width="256" height="341.337"/>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="292.669,223.259 278.666,242.554 255.989,235.201 270.013,254.481 256.011,273.777 278.682,266.396 292.707,285.676 292.693,261.835 315.362,254.454 292.684,247.1 "/>
|
||||
<path style="fill:#D80027;" d="M270.158,304.226c-26.637,0-48.232-21.594-48.232-48.232s21.594-48.232,48.232-48.232 c8.306,0,16.12,2.1,22.943,5.797c-10.704-10.467-25.342-16.927-41.494-16.927c-32.785,0-59.362,26.577-59.362,59.362 s26.577,59.362,59.362,59.362c16.152,0,30.79-6.461,41.494-16.927C286.278,302.127,278.463,304.226,270.158,304.226z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 957 B |
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="83.923" style="fill:#0052B4;" width="512" height="341.326"/>
|
||||
<polygon style="fill:#D80027;" points="512,108.546 59.699,258.293 512,408.038 512,428.077 0,258.293 512,88.508 "/>
|
||||
<polyline style="fill:#F0F0F0;" points="512,374.201 512,408.038 59.699,258.293 512,108.546 512,142.384 "/>
|
||||
<path style="fill:#A2001D;" d="M493.301,253.493h-29.275c7.612-9.139,7.141-22.736-1.432-31.31c9.084-9.082,9.084-23.81,0-32.895 l-0.546,0.549c9.082-9.082,9.63-24.359,0.546-33.441L331.019,287.971c9.084,9.085,23.552,8.976,32.634-0.108l2.532-2.314 l63.003-5.728v27.097h21.37v-29.04l32.056-2.913L493.301,253.493z"/>
|
||||
<polygon style="fill:#FFDA44;" points="333.03,316.084 311.652,305.399 333.03,294.714 471.938,294.714 471.938,316.084 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 971 B |
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#FFDA44;" width="512" height="341.337"/>
|
||||
<rect y="85.331" style="fill:#0052B4;" width="170.663" height="341.337"/>
|
||||
<g>
|
||||
<rect x="341.337" y="85.331" style="fill:#D80027;" width="170.663" height="341.337"/>
|
||||
<path style="fill:#D80027;" d="M256,315.356c0-27.234,0-59.362,0-59.362h44.522v22.261c0,3.868-7.421,18.038-25.735,29.682 C267.849,312.348,260.669,313.766,256,315.356z"/>
|
||||
<rect x="211.478" y="211.473" style="fill:#D80027;" width="44.522" height="44.522"/>
|
||||
</g>
|
||||
<path style="fill:#FF9811;" d="M278.261,196.632c0-8.196-6.645-14.84-14.84-14.84c-2.707,0-5.236,0.736-7.421,2.001 c-2.185-1.266-4.714-2.001-7.421-2.001c-8.195,0-14.84,6.644-14.84,14.84h-37.101v74.202c0,27.624,21.938,43.599,39.14,51.88 c-1.288,2.198-2.039,4.75-2.039,7.483c0,8.196,6.645,14.84,14.84,14.84c2.707,0,5.236-0.736,7.421-2.001 c2.185,1.266,4.714,2.001,7.421,2.001c8.195,0,14.84-6.644,14.84-14.84c0-2.733-0.751-5.284-2.04-7.483 c17.203-8.281,39.141-24.257,39.141-51.88v-74.202L278.261,196.632L278.261,196.632z M293.101,270.835 c0,3.868,0,15.635-18.314,27.279c-6.936,4.411-14.118,7.27-18.787,8.861c-4.669-1.591-11.849-4.45-18.787-8.861 c-18.314-11.644-18.314-23.411-18.314-27.278v-51.941h74.203v51.941H293.101z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" width="512" height="341.337"/>
|
||||
<rect y="85.331" style="fill:#D80027;" width="512" height="170.663"/>
|
||||
<g>
|
||||
<polygon style="fill:#FFDA44;" points="232.598,221.069 247.067,231.569 241.554,248.574 256.01,238.058 270.48,248.557 264.944,231.558 279.402,221.04 261.525,221.052 255.99,204.052 250.475,221.058 "/>
|
||||
<path style="fill:#FFDA44;" d="M298.666,182.094c-13.449-7.765-28.153-11.43-42.666-11.404v22.255 c10.728-0.019,21.595,2.688,31.536,8.427c30.119,17.389,40.476,56.039,23.086,86.158c-17.388,30.119-56.04,40.476-86.158,23.087 c-8.774-5.065-15.858-11.944-21.08-19.882l-18.584,12.27c7.066,10.739,16.662,20.037,28.533,26.891 c40.75,23.526,93.04,9.515,116.567-31.234C353.427,257.912,339.416,205.62,298.666,182.094z"/>
|
||||
<path style="fill:#FFDA44;" d="M206.792,241.154c-5.9,10.786-1.939,24.313,8.846,30.214l72.299,39.506 c-4.916,8.988-2.306,19.927,6.682,24.843L314.15,346.4c8.988,4.917,20.261,1.616,25.178-7.372l10.683-19.529L206.792,241.154z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.334" style="fill:#0052B4;" width="512" height="341.337"/>
|
||||
<path style="fill:#F3F3F3;" d="M427.757,295.819c4.907-6.752,8.185-14.997,8.185-24.982v-74.203 c-6.202,4.659-13.907,7.421-22.261,7.421c-12.138,0-22.912-5.829-29.682-14.839c-6.77,9.01-17.544,14.839-29.682,14.839 c-8.353,0-16.059-2.761-22.261-7.418v74.201c0,9.985,3.278,18.232,8.185,24.982H427.757z"/>
|
||||
<g>
|
||||
<path style="fill:#FF9811;" d="M412.32,257.071c2.362-5.763,4.2-14.188,4.2-18.382c0-6.737-8.783-12.198-8.783-12.198 s-8.783,5.461-8.783,12.198c0,4.194,1.838,12.619,4.2,18.382l-5.07,11.448c2.98,1.212,6.237,1.885,9.653,1.885 c3.416,0,6.673-0.673,9.653-1.885L412.32,257.071z"/>
|
||||
<path style="fill:#FF9811;" d="M377.994,220.004c-6.171,0.836-14.385,3.459-18.017,5.556c-5.835,3.369-6.173,13.704-6.173,13.704 s9.121,4.875,14.955,1.507c3.632-2.097,10.008-7.9,13.816-12.828l12.451-1.333c-0.441-3.186-1.488-6.343-3.194-9.302 c-1.71-2.958-3.919-5.444-6.459-7.418L377.994,220.004z"/>
|
||||
<path style="fill:#FF9811;" d="M363.059,268.267c3.809,4.925,10.187,10.728,13.818,12.824c5.835,3.368,14.955-1.507,14.955-1.507 s-0.339-10.336-6.173-13.705c-3.633-2.097-11.846-4.717-18.019-5.552l-7.378-10.115c-2.539,1.975-4.75,4.461-6.459,7.416 c-1.707,2.96-2.753,6.116-3.194,9.304L363.059,268.267z"/>
|
||||
</g>
|
||||
<path style="fill:#338AF3;" d="M338.408,293.099C352.267,315.335,384,322.778,384,322.778s31.733-7.443,45.592-29.679 L338.408,293.099L338.408,293.099z"/>
|
||||
<g>
|
||||
<path style="fill:#F0F0F0;" d="M256,186.665H144.006v69.331H160v-48.918l73.372,48.918H256l-80.006-53.337h22.628L256,240.915 v-7.535l-46.069-30.72H256V186.665z"/>
|
||||
<path style="fill:#F0F0F0;" d="M175.994,138.66L256,85.334h-22.628L160,134.241V85.334h-15.994v69.331H256V138.66h-46.069 L256,107.951v-7.535l-57.377,38.244H175.994z"/>
|
||||
<path style="fill:#F0F0F0;" d="M96,85.334v48.907L22.628,85.334H0l80.006,53.326H57.377L0,100.415v7.536l46.069,30.709H0v16.006 h111.994V85.334H96z"/>
|
||||
<path style="fill:#F0F0F0;" d="M0,186.665v15.994h46.069L0,233.38v7.535l57.377-38.255h22.628L0,255.997h22.628L96,207.078v48.918 h15.994v-69.331L0,186.665L0,186.665z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="144,85.329 112,85.329 112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 "/>
|
||||
<polygon style="fill:#D80027;" points="80,138.663 0,85.329 0,100.412 57.377,138.663 "/>
|
||||
<polygon style="fill:#D80027;" points="176,138.663 198.623,138.663 256,100.412 256,85.329 "/>
|
||||
<polygon style="fill:#D80027;" points="57.377,202.663 0,240.915 0,255.997 80,202.663 "/>
|
||||
<polygon style="fill:#D80027;" points="176,202.663 256,255.997 256,240.915 198.623,202.663 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" width="512" height="341.326"/>
|
||||
<path style="fill:#0052B4;" d="M88.751,221.865c-2.239,11.029-3.417,22.443-3.417,34.134c0,11.69,1.179,23.105,3.417,34.134 L256,300.519l167.249-10.388c2.239-11.029,3.417-22.443,3.417-34.134s-1.179-23.105-3.417-34.134"/>
|
||||
<path style="fill:#F0F0F0;" d="M423.249,290.131H88.751c15.813,77.9,84.683,136.534,167.249,136.534 S407.436,368.031,423.249,290.131z"/>
|
||||
<polygon style="fill:#FFDA44;" points="330.203,221.865 181.797,221.865 212.117,207.603 195.971,178.238 228.894,184.536 233.068,151.276 256,175.738 278.933,151.276 283.105,184.536 316.029,178.238 299.884,207.604 "/>
|
||||
<g>
|
||||
<polygon style="fill:#A2001D;" points="255.997,426.661 0,85.335 0,426.661 "/>
|
||||
<polygon style="fill:#A2001D;" points="512,426.661 512,85.335 256.003,426.661 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<g>
|
||||
<rect y="85.337" style="fill:#338AF3;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#338AF3;" width="512" height="113.775"/>
|
||||
</g>
|
||||
<polygon style="fill:#FFDA44;" points="296.809,256 280.133,263.844 289.013,279.993 270.906,276.529 268.612,294.82 256,281.367 243.388,294.82 241.094,276.529 222.987,279.992 231.866,263.842 215.191,256 231.867,248.156 222.987,232.008 241.093,235.471 243.388,217.18 256,230.633 268.612,217.18 270.906,235.471 289.013,232.008 280.134,248.157 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 815 B |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#0052B4;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#D80027;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#FF9811;" width="512" height="113.775"/>
|
||||
</svg>
|
After Width: | Height: | Size: 457 B |
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 362.023 362.023" style="enable-background:new 0 0 362.023 362.023;" xml:space="preserve">
|
||||
<rect y="60.341" style="fill:#338AF3;" width="362.023" height="241.34"/>
|
||||
<polygon style="fill:#F0F0F0;" points="34.315,118.089 10.736,107.683 34.315,97.278 44.718,73.701 55.123,97.278 78.701,107.683 55.123,118.089 44.718,141.664 "/>
|
||||
<polygon style="fill:#D80027;" points="44.718,86.696 51.144,101.257 65.706,107.683 51.144,114.109 44.718,128.67 38.294,114.109 23.732,107.683 38.294,101.257 "/>
|
||||
<g>
|
||||
<rect y="212.496" style="fill:#FFDA44;" width="362.023" height="15.743"/>
|
||||
<rect y="243.974" style="fill:#FFDA44;" width="362.023" height="15.743"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 819 B |
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.333" style="fill:#0052B4;" width="512" height="341.337"/>
|
||||
<g>
|
||||
<path style="fill:#F0F0F0;" d="M223.397,255.996c0.273-0.304,0.543-0.609,0.813-0.916c-0.27,0.308-0.546,0.61-0.82,0.916H223.397z"/>
|
||||
<polygon style="fill:#F0F0F0;" points="189.217,297.923 200.175,320.836 224.922,315.118 213.839,337.971 233.739,353.752 208.963,359.337 209.032,384.735 189.217,368.845 169.403,384.735 169.472,359.337 144.696,353.752 164.596,337.971 153.513,315.118 178.259,320.836 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="387.076,326.387 392.303,337.316 404.106,334.588 398.82,345.488 408.312,353.016 396.494,355.679 396.526,367.793 387.076,360.215 377.626,367.793 377.658,355.679 365.841,353.016 375.332,345.488 370.047,334.588 381.85,337.316 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="338.453,210.448 343.68,221.378 355.483,218.649 350.197,229.55 359.688,237.078 347.871,239.741 347.903,251.856 338.453,244.276 329.002,251.856 329.035,239.741 317.217,237.078 326.708,229.55 321.424,218.649 333.226,221.378 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="387.076,144.198 392.303,155.128 404.106,152.398 398.82,163.3 408.311,170.827 396.494,173.491 396.526,185.605 387.076,178.025 377.626,185.605 377.658,173.491 365.841,170.827 375.332,163.3 370.047,152.398 381.85,155.128 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="429.547,193.886 434.774,204.815 446.576,202.087 441.292,212.987 450.783,220.514 438.965,223.178 438.998,235.292 429.547,227.714 420.097,235.292 420.129,223.178 408.312,220.514 417.803,212.987 412.517,202.087 424.32,204.815 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="399.179,251.856 403.289,264.508 416.593,264.508 405.83,272.328 409.942,284.98 399.179,277.161 388.414,284.98 392.526,272.328 381.763,264.508 395.067,264.508 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="256,85.333 256,115.886 210.833,140.985 256,140.985 256,200.344 196.897,200.344 256,233.179 256,255.996 229.32,255.996 155.826,215.17 155.826,255.996 100.174,255.996 100.174,207.423 12.744,255.996 0,255.996 0,225.443 45.167,200.344 0,200.344 0,140.985 59.103,140.985 0,108.139 0,85.333 26.68,85.333 100.174,126.16 100.174,85.333 155.826,85.333 155.826,133.906 243.256,85.333 "/>
|
||||
</g>
|
||||
<polygon style="fill:#D80027;" points="144,85.33 112,85.33 112,154.662 0,154.662 0,186.662 112,186.662 112,255.996 144,255.996 144,186.662 256,186.662 256,154.662 144,154.662 "/>
|
||||
<polygon style="fill:#0052B4;" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>
|
||||
<polygon style="fill:#D80027;" points="71.846,200.344 0,240.259 0,255.996 0,255.996 100.174,200.344 "/>
|
||||
</g>
|
||||
<polygon style="fill:#0052B4;" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>
|
||||
<polygon style="fill:#D80027;" points="184.154,140.982 256,101.067 256,85.33 256,85.33 155.826,140.982 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<g>
|
||||
<rect y="85.337" style="fill:#D80027;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#D80027;" width="512" height="113.775"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 468 B |
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#D80027;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#338AF3;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#6DA544;" width="512" height="113.775"/>
|
||||
<g>
|
||||
<path style="fill:#F0F0F0;" d="M259.2,297.6c-22.975,0-41.6-18.625-41.6-41.6s18.625-41.6,41.6-41.6c7.164,0,13.904,1.811,19.789,5 c-9.232-9.027-21.857-14.6-35.789-14.6c-28.277,0-51.2,22.923-51.2,51.2s22.923,51.2,51.2,51.2c13.932,0,26.557-5.573,35.789-14.6 C273.104,295.789,266.364,297.6,259.2,297.6z"/>
|
||||
<polygon style="fill:#F0F0F0;" points="291.2,227.2 296.71,242.697 311.565,235.635 304.503,250.489 320,256 304.503,261.511 311.565,276.365 296.71,269.303 291.2,284.8 285.69,269.303 270.835,276.365 277.897,261.511 262.4,256 277.897,250.489 270.835,235.635 285.69,242.697 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#0052B4;" width="236.31" height="341.326"/>
|
||||
<path style="fill:#D80027;" d="M171.382,144.696v27.826c0,13.831,11.213,25.043,25.043,25.043s25.043-11.213,25.043-25.043v-27.826 H171.382z"/>
|
||||
<path style="fill:#F0F0F0;" d="M196.425,182.725c-5.626,0-10.203-4.577-10.203-10.203v-12.986h20.405v12.986 C206.629,178.148,202.052,182.725,196.425,182.725z"/>
|
||||
<g>
|
||||
<path style="fill:#FFDA44;" d="M295.672,263.421H251.15c0-8.195-6.645-14.84-14.84-14.84c-8.195,0-14.84,6.645-14.84,14.84h-44.522 c0,8.196,7.139,14.84,15.334,14.84h-0.494c0,8.196,6.644,14.84,14.84,14.84c0,8.196,6.644,14.84,14.84,14.84h29.682 c8.195,0,14.84-6.644,14.84-14.84c8.195,0,14.84-6.644,14.84-14.84h-0.494C288.533,278.261,295.672,271.617,295.672,263.421z"/>
|
||||
<polygon style="fill:#FFDA44;" points="301.771,239.672 297.875,245.909 302.601,251.541 295.465,249.765 291.567,256 291.054,248.664 283.918,246.884 290.738,244.129 290.226,236.792 294.953,242.428 "/>
|
||||
<polygon style="fill:#FFDA44;" points="279.036,220.595 277.508,227.789 283.876,231.466 276.561,232.236 275.033,239.429 272.041,232.711 264.727,233.479 270.194,228.557 267.203,221.84 273.57,225.517 "/>
|
||||
<polygon style="fill:#FFDA44;" points="251.148,210.445 252.172,217.728 259.414,219.005 252.806,222.23 253.828,229.512 248.72,224.221 242.109,227.446 245.562,220.951 240.453,215.662 247.697,216.939 "/>
|
||||
<polygon style="fill:#FFDA44;" points="221.47,210.445 224.924,216.939 232.166,215.661 227.058,220.952 230.509,227.446 223.901,224.221 218.791,229.511 219.815,222.23 213.206,219.007 220.447,217.728 "/>
|
||||
<polygon style="fill:#FFDA44;" points="193.584,220.595 199.049,225.517 205.417,221.84 202.427,228.56 207.891,233.48 200.577,232.711 197.585,239.429 196.059,232.235 188.744,231.467 195.112,227.79 "/>
|
||||
<polygon style="fill:#FFDA44;" points="170.849,239.672 177.668,242.428 182.393,236.793 181.884,244.132 188.701,246.886 181.564,248.665 181.05,256 177.155,249.765 170.02,251.542 174.747,245.909 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#FFDA44;" width="512" height="341.326"/>
|
||||
<g>
|
||||
<rect y="85.337" style="fill:#338AF3;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#338AF3;" width="512" height="113.775"/>
|
||||
</g>
|
||||
<polygon points="256,256.006 0,426.668 0,85.331 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 520 B |
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect x="2.216" y="86.076" style="fill:#D80027;" width="509.784" height="339.848"/>
|
||||
<polygon style="fill:#F0F0F0;" points="209.455,154.969 159.219,180.236 209.455,205.493 159.219,230.76 209.455,256.017 159.219,281.283 209.455,306.54 159.219,331.808 209.455,357.065 159.219,382.332 209.455,407.6 173.005,425.93 0,425.93 0,86.07 172.939,86.07 209.455,104.434 159.219,129.701 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 627 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#D80027;" width="512" height="341.337"/>
|
||||
<g>
|
||||
<rect y="161.174" style="fill:#FFDA44;" width="512" height="37.921"/>
|
||||
<rect y="237.028" style="fill:#FFDA44;" width="512" height="37.921"/>
|
||||
<rect y="312.882" style="fill:#FFDA44;" width="512" height="37.921"/>
|
||||
<rect y="388.736" style="fill:#FFDA44;" width="512" height="37.921"/>
|
||||
<rect y="85.331" style="fill:#FFDA44;" width="512" height="37.921"/>
|
||||
</g>
|
||||
<rect y="85.331" style="fill:#4A1F63;" width="256" height="170.663"/>
|
||||
<polygon style="fill:#F0F0F0;" points="172.522,155.819 172.522,170.66 165.101,170.66 165.101,155.819 150.261,155.819 150.261,170.66 142.84,170.66 142.84,140.978 113.16,140.978 113.16,170.66 105.739,170.66 105.739,155.819 90.899,155.819 90.899,170.66 83.478,170.66 83.478,155.819 68.638,155.819 68.638,200.341 187.362,200.341 187.362,155.819 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#496E2D;" width="512" height="341.337"/>
|
||||
<circle style="fill:#D80027;" cx="218.902" cy="255.994" r="74.207"/>
|
||||
</svg>
|
After Width: | Height: | Size: 385 B |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#FFDA44;" width="512" height="341.337"/>
|
||||
<g>
|
||||
<rect y="85.331" style="fill:#0052B4;" width="170.663" height="341.337"/>
|
||||
<rect x="341.337" y="85.331" style="fill:#0052B4;" width="170.663" height="341.337"/>
|
||||
</g>
|
||||
<path d="M307.942,189.212l9.955,4.978L307.942,189.212l-9.955-4.978c-0.6,1.201-13.599,27.649-15.723,68.05H267.13v-63.073 L256,174.372l-11.13,14.84v63.073h-15.133c-2.124-40.401-15.123-66.849-15.723-68.05l-19.911,9.955 c0.137,0.273,13.666,27.811,13.666,69.226v11.13h37.101v63.073h22.261v-63.073h37.101v-11.13c0-21.413,3.705-39.068,6.813-50.109 c3.389-12.04,6.831-19.072,6.865-19.141L307.942,189.212z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 890 B |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.333" style="fill:#D80027;" width="512" height="341.337"/>
|
||||
<polygon style="fill:#496E2D;" points="301.255,255.996 512,115.499 512,85.33 466.745,85.33 256,225.826 45.255,85.33 0,85.33 0,115.499 210.745,255.996 0,396.493 0,426.662 45.255,426.662 256,286.166 466.745,426.662 512,426.662 512,396.493 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="278.261,233.735 278.261,202.254 278.261,85.33 233.739,85.33 233.739,202.254 233.74,233.735 233.74,233.735 202.258,233.735 0,233.735 0,278.257 202.258,278.257 233.739,278.257 233.739,309.738 233.739,426.662 278.261,426.662 278.261,309.739 278.261,278.258 278.261,278.257 309.743,278.257 512,278.257 512,233.735 309.742,233.735 278.262,233.735 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 950 B |
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect x="0.556" y="85.523" style="fill:#6DA544;" width="511.444" height="340.955"/>
|
||||
<polyline style="fill:#A2001D;" points="0,315.298 511.444,315.298 511.444,85.52 511.444,85.52 0,85.52 0,85.52 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="100.065,315.298 100.065,300.474 100.065,85.52 0,85.52 0,426.482 511.444,426.482 511.444,426.482 100.065,426.482 "/>
|
||||
<g>
|
||||
<polygon style="fill:#A2001D;" points="68.564,243.647 50.033,210.028 68.564,176.937 87.093,210.028 "/>
|
||||
<polygon style="fill:#A2001D;" points="31.502,243.647 12.972,210.028 31.502,176.937 50.033,210.028 "/>
|
||||
<polygon style="fill:#A2001D;" points="68.564,335.064 50.033,301.446 68.564,268.354 87.093,301.446 "/>
|
||||
<polygon style="fill:#A2001D;" points="31.502,335.064 12.972,301.446 31.502,268.354 50.033,301.446 "/>
|
||||
<polygon style="fill:#A2001D;" points="68.564,426.482 50.033,392.863 68.564,359.771 87.093,392.863 "/>
|
||||
<polygon style="fill:#A2001D;" points="31.502,426.482 12.972,392.863 31.502,359.771 50.033,392.863 "/>
|
||||
<polygon style="fill:#A2001D;" points="68.564,152.23 50.033,118.611 68.564,85.518 87.093,118.611 "/>
|
||||
<polygon style="fill:#A2001D;" points="31.502,152.23 12.972,118.611 31.502,85.518 50.033,118.611 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#FFDA44;" width="512" height="341.326"/>
|
||||
<rect y="85.331" width="170.663" height="341.337"/>
|
||||
<rect x="341.337" y="85.331" style="fill:#D80027;" width="170.663" height="341.337"/>
|
||||
</svg>
|
After Width: | Height: | Size: 454 B |
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#0052B4;" width="512" height="341.337"/>
|
||||
<circle style="fill:#F0F0F0;" cx="256" cy="255.994" r="81.619"/>
|
||||
<circle style="fill:#6DA544;" cx="256" cy="255.994" r="66.783"/>
|
||||
<circle style="fill:#F0F0F0;" cx="256" cy="255.994" r="44.522"/>
|
||||
<polygon style="fill:#0052B4;" points="256,244.864 231.884,255.994 231.884,274.544 256,289.386 280.116,274.544 280.116,255.994 "/>
|
||||
<rect x="231.88" y="233.734" style="fill:#FFDA44;" width="48.228" height="22.261"/>
|
||||
<g>
|
||||
<rect y="85.331" style="fill:#A2001D;" width="512" height="29.68"/>
|
||||
<rect y="396.984" style="fill:#A2001D;" width="512" height="29.682"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 877 B |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#6DA544;" width="512" height="341.326"/>
|
||||
<rect x="196.641" y="85.337" style="fill:#FFDA44;" width="315.359" height="170.663"/>
|
||||
<rect x="196.641" y="256" style="fill:#D80027;" width="315.359" height="170.663"/>
|
||||
</svg>
|
After Width: | Height: | Size: 485 B |
|
@ -0,0 +1,42 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.334" style="fill:#D80027;" width="512" height="341.337"/>
|
||||
<rect y="85.334" style="fill:#F0F0F0;" width="256" height="170.663"/>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="144,85.33 112,85.33 112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 "/>
|
||||
<polygon style="fill:#D80027;" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#2E52B2;" points="0,107.951 0,138.663 46.069,138.663 "/>
|
||||
<polygon style="fill:#2E52B2;" points="96,85.331 96,134.244 22.628,85.331 "/>
|
||||
</g>
|
||||
<polygon style="fill:#D80027;" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>
|
||||
<g>
|
||||
<polygon style="fill:#2E52B2;" points="256,107.951 256,138.663 209.931,138.663 "/>
|
||||
<polygon style="fill:#2E52B2;" points="160,85.331 160,134.244 233.372,85.331 "/>
|
||||
</g>
|
||||
<polygon style="fill:#D80027;" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>
|
||||
<g>
|
||||
<polygon style="fill:#2E52B2;" points="0,107.951 0,138.663 46.069,138.663 "/>
|
||||
<polygon style="fill:#2E52B2;" points="96,85.331 96,134.244 22.628,85.331 "/>
|
||||
</g>
|
||||
<polygon style="fill:#D80027;" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>
|
||||
<g>
|
||||
<polygon style="fill:#2E52B2;" points="256,107.951 256,138.663 209.931,138.663 "/>
|
||||
<polygon style="fill:#2E52B2;" points="160,85.331 160,134.244 233.372,85.331 "/>
|
||||
</g>
|
||||
<polygon style="fill:#D80027;" points="0,255.997 0,240.915 57.377,202.663 80,202.663 "/>
|
||||
<g>
|
||||
<polygon style="fill:#2E52B2;" points="0,233.376 0,202.663 46.069,202.663 "/>
|
||||
<polygon style="fill:#2E52B2;" points="96,255.994 96,207.082 22.628,255.994 "/>
|
||||
</g>
|
||||
<polygon style="fill:#D80027;" points="256,255.997 256,240.915 198.623,202.663 176,202.663 "/>
|
||||
<g>
|
||||
<polygon style="fill:#2E52B2;" points="256,233.376 256,202.663 209.931,202.663 "/>
|
||||
<polygon style="fill:#2E52B2;" points="160,255.994 160,207.082 233.372,255.994 "/>
|
||||
</g>
|
||||
<path style="fill:#F3F3F3;" d="M332.058,189.214v81.623c0,39.76,103.884,39.76,103.884,0v-81.623H332.058z"/>
|
||||
<path style="fill:#6DA544;" d="M332.058,270.837L332.058,270.837c0,39.76,51.942,51.942,51.942,51.942s51.942-12.182,51.942-51.942 v0.001H332.058V270.837z"/>
|
||||
<polygon style="fill:#A2001D;" points="384,238.188 359.884,248.576 359.884,270.837 384,285.678 408.116,270.837 408.116,248.576 "/>
|
||||
<rect x="359.88" y="226.312" style="fill:#338AF3;" width="48.228" height="22.261"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.333" style="fill:#FF9811;" width="512" height="341.337"/>
|
||||
<polyline style="fill:#FFDA44;" points="512,85.33 0,85.33 0,426.662 "/>
|
||||
<path style="fill:#F0F0F0;" d="M352.546,181.793v-29.682h-56.891l-4.346,4.346c-15.459,15.459-12.859,33.494-10.96,46.662 c1.761,12.216,1.972,16.894-2.57,21.437c-4.542,4.542-9.223,4.331-21.437,2.57c-13.167-1.898-31.202-4.499-46.661,10.959 c-15.458,15.459-12.857,33.493-10.957,46.66c1.762,12.213,1.973,16.893-2.568,21.434c-4.542,4.54-9.223,4.329-21.434,2.568 c-4.762-0.687-9.686-1.397-14.94-1.455l-0.326,29.679c3.289,0.037,7.049,0.579,11.029,1.152c4.712,0.68,10.045,1.45,15.663,1.45 c5.821,0,11.945-0.83,17.993-3.442v23.747h44.522v-22.261h-22.261v-14.84h14.84v-22.261H229.38 c0.563-7.201-0.426-14.097-1.28-20.009c-1.762-12.213-1.973-16.893,2.568-21.434c4.542-4.542,9.222-4.332,21.437-2.57 c9.594,1.384,21.774,3.131,33.658-1.999v23.751h44.522v-22.261h-22.261v-14.84h14.84v-22.261h-11.861 c0.563-7.202-0.425-14.097-1.278-20.011c-1.23-8.534-1.704-13.39-0.329-17.091H352.546z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#FFDA44;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#D80027;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#6DA544;" width="512" height="113.775"/>
|
||||
</svg>
|
After Width: | Height: | Size: 457 B |
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<polygon style="fill:#0052B4;" points="0,426.663 512,426.663 512,85.337 512,85.337 "/>
|
||||
<polygon style="fill:#FFDA44;" points="250.435,85.337 0,85.337 0,85.337 0,252.282 "/>
|
||||
<path d="M188.052,250.239l14.708-7.967l-14.708-7.967c-3.434-22.308-21.06-39.934-43.366-43.366l-7.967-14.708l-7.967,14.708 c-22.308,3.434-39.933,21.06-43.366,43.366l-14.707,7.968l14.708,7.967c3.434,22.308,21.06,39.934,43.366,43.366l7.966,14.707 l7.967-14.708C166.993,290.173,184.618,272.546,188.052,250.239z M136.718,271.953c-16.393,0-29.682-13.289-29.682-29.682 s13.289-29.68,29.682-29.68S166.4,225.88,166.4,242.273S153.111,271.953,136.718,271.953z"/>
|
||||
<polygon style="fill:#D80027;" points="136.718,220.012 143.145,231.142 155.997,231.142 149.571,242.273 155.997,253.403 143.145,253.403 136.718,264.534 130.293,253.403 117.441,253.403 123.866,242.273 117.441,231.142 130.293,231.142 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.334" style="fill:#0052B4;" width="512" height="341.337"/>
|
||||
<polyline style="fill:#FFDA44;" points="99.905,85.329 441.238,85.329 441.238,426.663 "/>
|
||||
<g>
|
||||
<polygon style="fill:#F0F0F0;" points="36.561,100.645 51.404,89.838 66.271,100.632 61.292,85.33 41.525,85.33 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="88.332,103.632 82.649,86.16 76.977,103.632 58.612,103.644 73.479,114.44 67.818,131.901 82.661,121.095 97.527,131.89 91.843,114.416 106.697,103.621 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="119.59,134.89 113.906,117.416 108.233,134.89 89.868,134.901 104.735,145.696 99.074,163.158 113.918,152.351 128.784,163.147 123.099,145.673 137.955,134.879 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="150.846,166.146 145.163,148.673 139.49,166.146 121.126,166.157 135.992,176.953 130.331,194.414 145.174,183.608 160.04,194.403 154.357,176.929 169.212,166.135 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="182.103,197.403 176.42,179.929 170.748,197.403 152.382,197.414 167.248,208.209 161.588,225.671 176.431,214.864 191.297,225.66 185.613,208.187 200.468,197.392 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="213.359,228.659 207.676,211.187 202.004,228.659 183.639,228.671 198.505,239.466 192.845,256.928 207.687,246.122 222.553,256.916 216.87,239.443 231.725,228.648 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="244.616,259.916 238.933,242.443 233.261,259.916 214.895,259.928 229.762,270.723 224.101,288.185 238.945,277.378 253.811,288.172 248.126,270.7 262.981,259.906 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="275.872,291.173 270.19,273.7 264.517,291.173 246.152,291.184 261.019,301.98 255.358,319.441 270.201,308.635 285.067,319.43 279.384,301.956 294.237,291.162 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="307.13,322.43 301.447,304.956 295.773,322.43 277.409,322.441 292.275,333.236 286.614,350.698 301.458,339.891 316.324,350.687 310.64,333.213 325.495,322.419 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="338.386,353.686 332.703,336.214 327.031,353.686 308.666,353.698 323.532,364.493 317.871,381.955 332.714,371.148 347.58,381.943 341.897,364.471 356.752,353.675 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="369.643,384.943 363.96,367.47 358.288,384.943 339.922,384.955 354.788,395.749 349.128,413.212 363.971,402.405 378.837,413.2 373.153,395.727 388.008,384.932 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="395.216,398.727 389.544,416.199 371.179,416.211 385.573,426.664 404.851,426.664 419.265,416.188 400.899,416.199 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<g>
|
||||
<rect y="322.783" style="fill:#338AF3;" width="512" height="103.88"/>
|
||||
<rect y="85.337" style="fill:#338AF3;" width="512" height="104.515"/>
|
||||
</g>
|
||||
<rect y="210.877" width="512" height="89.656"/>
|
||||
</svg>
|
After Width: | Height: | Size: 515 B |
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#6DA544;" width="512" height="341.337"/>
|
||||
<polygon style="fill:#FFDA44;" points="256,161.678 384,255.994 256,350.31 128,255.994 "/>
|
||||
<circle style="fill:#F0F0F0;" cx="256" cy="255.994" r="53.894"/>
|
||||
<g>
|
||||
<path style="fill:#0052B4;" d="M229.052,252.626c-9.372,0-18.416,1.426-26.93,4.07c0.377,29.44,24.348,53.193,53.877,53.193 c18.259,0,34.386-9.089,44.134-22.981C283.457,266.029,257.792,252.626,229.052,252.626z"/>
|
||||
<path style="fill:#0052B4;" d="M308.895,266.32c0.649-3.344,1-6.793,1-10.326c0-29.765-24.13-53.895-53.895-53.895 c-22.21,0-41.275,13.438-49.527,32.623c7.293-1.51,14.845-2.307,22.579-2.307C260.356,232.416,288.674,245.427,308.895,266.32z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 934 B |
|
@ -0,0 +1,41 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 509.85 509.85" style="enable-background:new 0 0 509.85 509.85;" xml:space="preserve">
|
||||
<g>
|
||||
<rect x="0" y="84.975" style="fill:#F0F0F0;" width="509.85" height="339.904"/>
|
||||
<rect x="0" y="84.975" style="fill:#F0F0F0;" width="509.85" height="169.946"/>
|
||||
</g>
|
||||
<rect x="0" y="154.015" style="fill:#D80027;" width="509.85" height="31.866"/>
|
||||
<g>
|
||||
<polygon style="fill:#0052B4;" points="379.051,199.5 509.85,232.199 509.85,199.5 "/>
|
||||
<polygon style="fill:#0052B4;" points="288.176,199.5 509.85,254.918 509.85,239.246 350.861,199.5 "/>
|
||||
<polygon style="fill:#0052B4;" points="450.804,254.918 288.176,214.257 288.176,254.918 "/>
|
||||
</g>
|
||||
<polygon style="fill:#F0F0F0;" points="288.176,199.5 509.85,254.918 509.85,239.246 350.861,199.5 "/>
|
||||
<polygon style="fill:#D80027;" points="288.176,199.5 509.85,254.918 509.85,239.246 350.861,199.5 "/>
|
||||
<g>
|
||||
<polygon style="fill:#0052B4;" points="99.957,199.499 0,224.487 0,199.499 "/>
|
||||
<polygon style="fill:#0052B4;" points="221.674,206.546 221.674,254.917 28.205,254.917 "/>
|
||||
</g>
|
||||
<polygon style="fill:#D80027;" points="158.988,199.5 0,239.246 0,254.918 0,254.918 221.674,199.5 "/>
|
||||
<g>
|
||||
<polygon style="fill:#0052B4;" points="130.799,140.389 0,107.69 0,140.389 "/>
|
||||
<polygon style="fill:#0052B4;" points="221.674,140.389 0,84.971 0,100.642 158.989,140.389 "/>
|
||||
<polygon style="fill:#0052B4;" points="59.046,84.971 221.674,125.631 221.674,84.971 "/>
|
||||
</g>
|
||||
<polygon style="fill:#F0F0F0;" points="221.674,140.389 0,84.971 0,100.642 158.989,140.389 "/>
|
||||
<polygon style="fill:#D80027;" points="221.674,140.389 0,84.971 0,100.642 158.989,140.389 "/>
|
||||
<g>
|
||||
<polygon style="fill:#0052B4;" points="409.893,140.39 509.85,115.401 509.85,140.39 "/>
|
||||
<polygon style="fill:#0052B4;" points="288.176,133.342 288.176,84.973 481.645,84.973 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="350.862,140.389 509.85,100.643 509.85,84.971 509.85,84.971 288.176,140.389 "/>
|
||||
<rect x="238.998" y="84.975" style="fill:#D80027;" width="31.855" height="169.946"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0052B4;" d="M509.85,270.693v22.234c-4.411,0.743-12.802,5.497-19.053,9.055 c-10.906,6.196-21.214,12.048-31.068,12.048c-9.864,0-20.161-5.852-31.079-12.048c-6.805-3.868-16.127-9.155-20.128-9.155 c-4.001,0-13.323,5.287-20.128,9.155c-10.906,6.196-21.214,12.048-31.068,12.048s-20.161-5.852-31.079-12.048 c-6.805-3.868-16.127-9.155-20.128-9.155c-3.99,0-13.312,5.287-20.117,9.155c-10.917,6.196-21.225,12.048-31.079,12.048 s-20.161-5.852-31.079-12.048c-6.805-3.868-16.127-9.155-20.117-9.155c-4.001,0-13.323,5.287-20.128,9.155 c-10.917,6.196-21.225,12.048-31.079,12.048c-9.853,0-20.161-5.852-31.068-12.048c-6.805-3.868-16.127-9.155-20.128-9.155 s-13.323,5.287-20.128,9.155c-10.917,6.196-21.214,12.048-31.079,12.048c-9.853,0-20.161-5.852-31.068-12.048 C12.802,298.425,4.411,293.67,0,292.927v-22.234c9.521,0.388,19.485,6.041,30.004,12.015c6.805,3.857,16.127,9.155,20.117,9.155 c4.001,0,13.323-5.298,20.128-9.155c10.917-6.196,21.225-12.048,31.079-12.048s20.161,5.852,31.068,12.048 c6.805,3.857,16.127,9.155,20.128,9.155c4.001,0,13.323-5.298,20.128-9.155c10.917-6.196,21.214-12.048,31.079-12.048 c9.853,0,20.161,5.852,31.068,12.048c6.805,3.857,16.127,9.155,20.128,9.155s13.323-5.298,20.128-9.155 c10.906-6.196,21.214-12.048,31.068-12.048c9.864,0,20.161,5.852,31.079,12.048c6.805,3.857,16.127,9.155,20.128,9.155 s13.323-5.298,20.128-9.155c10.906-6.196,21.214-12.048,31.068-12.048c9.853,0,20.161,5.852,31.079,12.048 c6.805,3.857,16.127,9.155,20.128,9.155c3.99,0,13.312-5.298,20.117-9.155C490.365,276.734,500.329,271.081,509.85,270.693z"/>
|
||||
<path style="fill:#0052B4;" d="M509.85,326.112v22.234c-4.411,0.743-12.802,5.497-19.053,9.055 c-10.906,6.196-21.214,12.048-31.068,12.048c-9.864,0-20.161-5.852-31.079-12.048c-6.805-3.868-16.127-9.155-20.128-9.155 c-4.001,0-13.323,5.287-20.128,9.155c-10.906,6.196-21.214,12.048-31.068,12.048s-20.161-5.852-31.079-12.048 c-6.805-3.868-16.127-9.155-20.128-9.155c-3.99,0-13.312,5.287-20.117,9.155c-10.917,6.196-21.225,12.048-31.079,12.048 s-20.161-5.852-31.079-12.048c-6.805-3.868-16.127-9.155-20.117-9.155c-4.001,0-13.323,5.287-20.128,9.155 c-10.917,6.196-21.225,12.048-31.079,12.048c-9.853,0-20.161-5.852-31.068-12.048c-6.805-3.868-16.127-9.155-20.128-9.155 s-13.323,5.287-20.128,9.155c-10.917,6.196-21.214,12.048-31.079,12.048c-9.853,0-20.161-5.852-31.068-12.048 c-6.251-3.558-14.642-8.313-19.053-9.055v-22.234c9.521,0.388,19.485,6.041,30.004,12.015c6.805,3.857,16.127,9.155,20.117,9.155 c4.001,0,13.323-5.298,20.128-9.155c10.917-6.196,21.225-12.048,31.079-12.048s20.161,5.852,31.068,12.048 c6.805,3.857,16.127,9.155,20.128,9.155c4.001,0,13.323-5.298,20.128-9.155c10.917-6.196,21.214-12.048,31.079-12.048 c9.853,0,20.161,5.852,31.068,12.048c6.805,3.857,16.127,9.155,20.128,9.155s13.323-5.298,20.128-9.155 c10.906-6.196,21.214-12.048,31.068-12.048c9.864,0,20.161,5.852,31.079,12.048c6.805,3.857,16.127,9.155,20.128,9.155 s13.323-5.298,20.128-9.155c10.906-6.196,21.214-12.048,31.068-12.048c9.853,0,20.161,5.852,31.079,12.048 c6.805,3.857,16.127,9.155,20.128,9.155c3.99,0,13.312-5.298,20.117-9.155C490.365,332.152,500.329,326.499,509.85,326.112z"/>
|
||||
<path style="fill:#0052B4;" d="M509.85,381.53v22.234c-4.411,0.743-12.802,5.497-19.053,9.055 c-10.906,6.196-21.214,12.048-31.068,12.048c-9.864,0-20.161-5.852-31.079-12.048c-6.805-3.868-16.127-9.155-20.128-9.155 c-4.001,0-13.323,5.287-20.128,9.155c-10.906,6.196-21.214,12.048-31.068,12.048s-20.161-5.852-31.079-12.048 c-6.805-3.868-16.127-9.155-20.128-9.155c-3.99,0-13.312,5.287-20.117,9.155c-10.917,6.196-21.225,12.048-31.079,12.048 s-20.161-5.852-31.079-12.048c-6.805-3.868-16.127-9.155-20.117-9.155c-4.001,0-13.323,5.287-20.128,9.155 c-10.917,6.196-21.225,12.048-31.079,12.048c-9.853,0-20.161-5.852-31.068-12.048c-6.805-3.868-16.127-9.155-20.128-9.155 s-13.323,5.287-20.128,9.155c-10.917,6.196-21.214,12.048-31.079,12.048c-9.853,0-20.161-5.852-31.068-12.048 c-6.251-3.558-14.642-8.313-19.053-9.055V381.53c9.521,0.388,19.485,6.041,30.004,12.015c6.805,3.857,16.127,9.155,20.117,9.155 c4.001,0,13.323-5.298,20.128-9.155c10.917-6.196,21.225-12.048,31.079-12.048s20.161,5.852,31.068,12.048 c6.805,3.857,16.127,9.155,20.128,9.155c4.001,0,13.323-5.298,20.128-9.155c10.917-6.196,21.214-12.048,31.079-12.048 c9.853,0,20.161,5.852,31.068,12.048c6.805,3.857,16.127,9.155,20.128,9.155s13.323-5.298,20.128-9.155 c10.906-6.196,21.214-12.048,31.068-12.048c9.864,0,20.161,5.852,31.079,12.048c6.805,3.857,16.127,9.155,20.128,9.155 s13.323-5.298,20.128-9.155c10.906-6.196,21.214-12.048,31.068-12.048c9.853,0,20.161,5.852,31.079,12.048 c6.805,3.857,16.127,9.155,20.128,9.155c3.99,0,13.312-5.298,20.117-9.155C490.365,387.571,500.329,381.918,509.85,381.53z"/>
|
||||
</g>
|
||||
<polygon style="fill:#FFDA44;" points="306.463,388.055 325.423,353.57 286.756,360.965 281.857,321.905 254.925,350.633 227.994,321.905 223.093,360.965 184.428,353.57 203.389,388.054 167.781,404.804 203.388,421.551 201.564,424.871 308.285,424.871 306.461,421.552 342.069,404.804 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 7.0 KiB |
|
@ -0,0 +1,58 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.334" style="fill:#F0F0F0;" width="512" height="341.337"/>
|
||||
<g>
|
||||
<path style="fill:#0052B4;" d="M461.664,283.341c-4.016,0-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1 s-20.246,5.877-31.204,12.1c-6.835,3.881-16.196,9.197-20.212,9.197s-13.378-5.315-20.211-9.197 c-10.958-6.223-21.308-12.1-31.204-12.1c-9.896,0-20.246,5.877-31.204,12.1c-6.835,3.881-16.196,9.197-20.212,9.197 c-4.016,0-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1c-9.896,0-20.246,5.877-31.204,12.1 c-6.834,3.881-16.195,9.197-20.211,9.197c-4.016,0-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1 s-20.246,5.877-31.204,12.1c-6.835,3.881-16.196,9.197-20.212,9.197s-13.378-5.315-20.211-9.197 C19.565,268.147,9.57,262.487,0,262.083v22.332c4.437,0.746,12.847,5.516,19.131,9.086c10.958,6.223,21.308,12.1,31.204,12.1 s20.246-5.877,31.204-12.1c6.835-3.881,16.196-9.197,20.212-9.197s13.378,5.315,20.212,9.197c10.958,6.223,21.308,12.1,31.204,12.1 s20.246-5.877,31.204-12.1c6.834-3.881,16.195-9.197,20.211-9.197c4.016,0,13.378,5.315,20.212,9.197 c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1c6.835-3.881,16.196-9.197,20.212-9.197 c4.016,0,13.378,5.315,20.211,9.197c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1 c6.835-3.881,16.196-9.197,20.212-9.197s13.378,5.315,20.212,9.197c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1 c6.284-3.57,14.694-8.34,19.131-9.086v-22.332c-9.57,0.404-19.565,6.064-30.125,12.061 C475.041,278.025,465.681,283.341,461.664,283.341z"/>
|
||||
<path style="fill:#0052B4;" d="M0,117.459c4.437,0.746,12.847,5.516,19.131,9.086c10.958,6.223,21.308,12.1,31.204,12.1 s20.246-5.877,31.204-12.1c6.835-3.881,16.196-9.197,20.212-9.197s13.378,5.315,20.212,9.197c10.958,6.223,21.308,12.1,31.204,12.1 s20.246-5.877,31.204-12.1c6.834-3.881,16.195-9.197,20.211-9.197c4.016,0,13.378,5.315,20.212,9.197 c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1c6.835-3.881,16.196-9.197,20.212-9.197 c4.016,0,13.378,5.315,20.211,9.197c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1 c6.835-3.881,16.196-9.197,20.212-9.197s13.378,5.315,20.212,9.197c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1 c6.284-3.57,14.694-8.34,19.131-9.086V95.126c-9.57,0.404-19.565,6.064-30.125,12.061c-6.834,3.881-16.195,9.197-20.211,9.197 s-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1s-20.246,5.877-31.204,12.1 c-6.835,3.881-16.196,9.197-20.212,9.197c-4.016,0-13.378-5.315-20.211-9.197c-10.958-6.223-21.308-12.1-31.204-12.1 s-20.246,5.877-31.204,12.1c-6.835,3.881-16.196,9.197-20.212,9.197c-4.016,0-13.378-5.315-20.212-9.197 c-10.958-6.223-21.308-12.1-31.204-12.1s-20.246,5.877-31.204,12.1c-6.834,3.881-16.195,9.197-20.211,9.197 c-4.016,0-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1s-20.246,5.877-31.204,12.1 c-6.835,3.881-16.196,9.197-20.212,9.197s-13.378-5.315-20.211-9.197C19.565,101.19,9.57,95.53,0,95.126V117.459z"/>
|
||||
<path style="fill:#0052B4;" d="M461.664,172.036c-4.016,0-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1 s-20.246,5.877-31.204,12.1c-6.835,3.881-16.196,9.197-20.212,9.197s-13.378-5.315-20.211-9.197 c-10.958-6.223-21.308-12.1-31.204-12.1c-9.896,0-20.246,5.877-31.204,12.1c-6.835,3.881-16.196,9.197-20.212,9.197 c-4.016,0-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1c-9.896,0-20.246,5.877-31.204,12.1 c-6.834,3.881-16.195,9.197-20.211,9.197c-4.016,0-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1 s-20.246,5.877-31.204,12.1c-6.835,3.881-16.196,9.197-20.212,9.197s-13.378-5.315-20.211-9.197 C19.565,156.842,9.57,151.182,0,150.778v22.332c4.437,0.746,12.847,5.516,19.131,9.086c10.958,6.223,21.308,12.1,31.204,12.1 s20.246-5.877,31.204-12.1c6.835-3.881,16.196-9.197,20.212-9.197s13.378,5.315,20.212,9.197c10.958,6.223,21.308,12.1,31.204,12.1 s20.246-5.877,31.204-12.1c6.834-3.881,16.195-9.197,20.211-9.197c4.016,0,13.378,5.315,20.212,9.197 c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1c6.835-3.881,16.196-9.197,20.212-9.197 c4.016,0,13.378,5.315,20.211,9.197c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1 c6.835-3.881,16.196-9.197,20.212-9.197s13.378,5.315,20.212,9.197c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1 c6.284-3.57,14.694-8.34,19.131-9.086v-22.332c-9.57,0.404-19.565,6.064-30.125,12.061 C475.041,166.721,465.681,172.036,461.664,172.036z"/>
|
||||
<path style="fill:#0052B4;" d="M512,206.431c-9.57,0.404-19.565,6.064-30.125,12.061c-6.834,3.881-16.195,9.197-20.211,9.197 s-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1s-20.246,5.877-31.204,12.1 c-6.835,3.881-16.196,9.197-20.212,9.197c-4.016,0-13.378-5.315-20.211-9.197c-10.958-6.223-21.308-12.1-31.204-12.1 s-20.246,5.877-31.204,12.1c-6.835,3.881-16.196,9.197-20.212,9.197c-4.016,0-13.378-5.315-20.212-9.197 c-10.958-6.223-21.308-12.1-31.204-12.1s-20.246,5.877-31.204,12.1c-6.834,3.881-16.195,9.197-20.211,9.197 s-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1s-20.246,5.877-31.204,12.1 c-6.835,3.881-16.196,9.197-20.212,9.197s-13.378-5.315-20.211-9.197C19.565,212.494,9.57,206.835,0,206.431v22.332 c4.437,0.746,12.847,5.516,19.131,9.086c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1 c6.835-3.881,16.196-9.197,20.212-9.197s13.378,5.315,20.212,9.197c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1 c6.834-3.881,16.195-9.197,20.211-9.197c4.016,0,13.378,5.315,20.212,9.197c10.958,6.223,21.308,12.1,31.204,12.1 s20.246-5.877,31.204-12.1c6.835-3.881,16.196-9.197,20.212-9.197c4.016,0,13.378,5.315,20.211,9.197 c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1c6.835-3.881,16.196-9.197,20.212-9.197s13.378,5.315,20.212,9.197 c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1c6.284-3.57,14.694-8.34,19.131-9.086v-22.332H512z"/>
|
||||
<path style="fill:#0052B4;" d="M461.664,338.993c-4.016,0-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1 s-20.246,5.877-31.204,12.1c-6.835,3.881-16.196,9.197-20.212,9.197s-13.378-5.315-20.211-9.197 c-10.958-6.223-21.308-12.1-31.204-12.1c-9.896,0-20.246,5.877-31.204,12.1c-6.835,3.881-16.196,9.197-20.212,9.197 c-4.016,0-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1c-9.896,0-20.246,5.877-31.204,12.1 c-6.834,3.881-16.195,9.197-20.211,9.197c-4.016,0-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1 s-20.246,5.877-31.204,12.1c-6.835,3.881-16.196,9.197-20.212,9.197s-13.378-5.315-20.211-9.197 C19.565,323.799,9.57,318.139,0,317.735v22.332c4.437,0.746,12.847,5.516,19.131,9.086c10.958,6.223,21.308,12.1,31.204,12.1 s20.246-5.877,31.204-12.1c6.835-3.881,16.196-9.197,20.212-9.197s13.378,5.315,20.212,9.197c10.958,6.223,21.308,12.1,31.204,12.1 s20.246-5.877,31.204-12.1c6.834-3.881,16.195-9.197,20.211-9.197c4.016,0,13.378,5.315,20.212,9.197 c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1c6.835-3.881,16.196-9.197,20.212-9.197 c4.016,0,13.378,5.315,20.211,9.197c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1 c6.835-3.881,16.196-9.197,20.212-9.197s13.378,5.315,20.212,9.197c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1 c6.284-3.57,14.694-8.34,19.131-9.086v-22.332c-9.57,0.404-19.565,6.064-30.125,12.061 C475.041,333.677,465.681,338.993,461.664,338.993z"/>
|
||||
<path style="fill:#0052B4;" d="M512,373.387c-9.57,0.404-19.565,6.064-30.125,12.061c-6.834,3.881-16.195,9.197-20.211,9.197 s-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1s-20.246,5.877-31.204,12.1 c-6.835,3.881-16.196,9.197-20.212,9.197c-4.016,0-13.378-5.315-20.211-9.197c-10.958-6.223-21.308-12.1-31.204-12.1 s-20.246,5.877-31.204,12.1c-6.835,3.881-16.196,9.197-20.212,9.197c-4.016,0-13.378-5.315-20.212-9.197 c-10.958-6.223-21.308-12.1-31.204-12.1s-20.246,5.877-31.204,12.1c-6.834,3.881-16.195,9.197-20.211,9.197 s-13.378-5.315-20.212-9.197c-10.958-6.223-21.308-12.1-31.204-12.1s-20.246,5.877-31.204,12.1 c-6.835,3.881-16.196,9.197-20.212,9.197s-13.378-5.315-20.211-9.197C19.565,379.451,9.57,373.791,0,373.387v22.332 c4.437,0.746,12.847,5.516,19.131,9.086c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1 c6.835-3.881,16.196-9.197,20.212-9.197s13.378,5.315,20.212,9.197c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1 c6.834-3.881,16.195-9.197,20.211-9.197c4.016,0,13.378,5.315,20.212,9.197c10.958,6.223,21.308,12.1,31.204,12.1 s20.246-5.877,31.204-12.1c6.835-3.881,16.196-9.197,20.212-9.197c4.016,0,13.378,5.315,20.211,9.197 c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1c6.835-3.881,16.196-9.197,20.212-9.197s13.378,5.315,20.212,9.197 c10.958,6.223,21.308,12.1,31.204,12.1s20.246-5.877,31.204-12.1c6.284-3.57,14.694-8.34,19.131-9.086v-22.332H512z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#F0F0F0;" d="M256,85.329c-0.01,0-0.019,0-0.029,0H256L256,85.329z"/>
|
||||
<path style="fill:#F0F0F0;" d="M255.544,255.997H256c0-0.154,0-0.303,0-0.456C255.848,255.692,255.696,255.844,255.544,255.997z"/>
|
||||
</g>
|
||||
<polygon style="fill:#496E2D;" points="278.261,255.997 278.261,255.997 278.261,255.996 "/>
|
||||
<polygon style="fill:#6DA544;" points="350.609,168.809 417.391,168.809 384,202.2 "/>
|
||||
<g>
|
||||
<rect x="376.576" y="194.779" style="fill:#A2001D;" width="14.84" height="40.812"/>
|
||||
<rect x="376.576" y="302.377" style="fill:#A2001D;" width="14.84" height="40.812"/>
|
||||
</g>
|
||||
<path style="fill:#FFDA44;" d="M428.522,280.113c0-12.295-9.966-22.261-22.261-22.261c-5.703,0-10.901,2.146-14.84,5.672v-13.093 h7.421v-14.84h-7.421v-7.421h-14.84v7.421h-7.421v14.84h7.421v13.093c-3.939-3.526-9.138-5.672-14.84-5.672 c-12.295,0-22.261,9.966-22.261,22.261c0,6.591,2.867,12.512,7.421,16.589v13.093h74.203v-13.094 C425.655,292.625,428.522,286.704,428.522,280.113z"/>
|
||||
<path style="fill:#D80027;" d="M406.261,272.692c-2.341,0-3.98,1.027-4.943,1.889l-9.898,8.861h-14.84l-9.898-8.861 c-0.962-0.861-2.601-1.889-4.942-1.889c-4.092,0-7.421,3.329-7.421,7.421c0,2.882,1.554,4.703,2.48,5.533l4.941,4.424v4.883h44.522 v-4.884l4.941-4.424c0.926-0.829,2.48-2.651,2.48-5.533C413.681,276.021,410.352,272.692,406.261,272.692z"/>
|
||||
<rect y="85.334" style="fill:#F0F0F0;" width="256" height="170.663"/>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="144,85.329 112,85.329 112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 "/>
|
||||
<polygon style="fill:#D80027;" points="0,85.329 0,100.411 57.377,138.663 80,138.663 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#2E52B2;" points="0,107.951 0,138.663 46.069,138.663 "/>
|
||||
<polygon style="fill:#2E52B2;" points="96,85.331 96,134.244 22.628,85.331 "/>
|
||||
</g>
|
||||
<polygon style="fill:#D80027;" points="256,85.329 256,100.411 198.623,138.663 176,138.663 "/>
|
||||
<g>
|
||||
<polygon style="fill:#2E52B2;" points="256,107.951 256,138.663 209.931,138.663 "/>
|
||||
<polygon style="fill:#2E52B2;" points="160,85.331 160,134.244 233.372,85.331 "/>
|
||||
</g>
|
||||
<polygon style="fill:#D80027;" points="0,85.329 0,100.411 57.377,138.663 80,138.663 "/>
|
||||
<g>
|
||||
<polygon style="fill:#2E52B2;" points="0,107.951 0,138.663 46.069,138.663 "/>
|
||||
<polygon style="fill:#2E52B2;" points="96,85.331 96,134.244 22.628,85.331 "/>
|
||||
</g>
|
||||
<polygon style="fill:#D80027;" points="256,85.329 256,100.411 198.623,138.663 176,138.663 "/>
|
||||
<g>
|
||||
<polygon style="fill:#2E52B2;" points="256,107.951 256,138.663 209.931,138.663 "/>
|
||||
<polygon style="fill:#2E52B2;" points="160,85.331 160,134.244 233.372,85.331 "/>
|
||||
</g>
|
||||
<polygon style="fill:#D80027;" points="0,255.997 0,240.915 57.377,202.663 80,202.663 "/>
|
||||
<g>
|
||||
<polygon style="fill:#2E52B2;" points="0,233.376 0,202.663 46.069,202.663 "/>
|
||||
<polygon style="fill:#2E52B2;" points="96,255.994 96,207.082 22.628,255.994 "/>
|
||||
</g>
|
||||
<polygon style="fill:#D80027;" points="256,255.997 256,240.915 198.623,202.663 176,202.663 "/>
|
||||
<g>
|
||||
<polygon style="fill:#2E52B2;" points="256,233.376 256,202.663 209.931,202.663 "/>
|
||||
<polygon style="fill:#2E52B2;" points="160,255.994 160,207.082 233.372,255.994 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.334" style="fill:#0052B4;" width="512" height="341.337"/>
|
||||
<polygon style="fill:#F0F0F0;" points="256,85.334 256,202.66 209.931,202.66 256,233.38 256,255.997 233.372,255.997 160,207.078 160,255.997 96,255.997 96,207.078 22.628,255.997 0,255.997 0,233.38 46.069,202.66 0,202.66 0,138.66 46.069,138.66 0,107.951 0,85.334 22.628,85.334 96,134.241 96,85.334 160,85.334 160,134.241 233.372,85.334 "/>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="144,85.33 112,85.33 112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 "/>
|
||||
<polygon style="fill:#D80027;" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>
|
||||
<polygon style="fill:#D80027;" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>
|
||||
</g>
|
||||
<polygon style="fill:#2E52B2;" points="256,107.951 256,138.663 209.931,138.663 "/>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>
|
||||
<polygon style="fill:#D80027;" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>
|
||||
</g>
|
||||
<polygon style="fill:#2E52B2;" points="256,107.951 256,138.663 209.931,138.663 "/>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="0,255.997 0,240.915 57.377,202.663 80,202.663 "/>
|
||||
<polygon style="fill:#D80027;" points="256,255.997 256,240.915 198.623,202.663 176,202.663 "/>
|
||||
</g>
|
||||
<path style="fill:#FFDA44;" d="M384,259.706l-46.129,46.129c8.645,16.675,26.051,28.074,46.129,28.074 c20.078,0,37.484-11.4,46.129-28.074L384,259.706z"/>
|
||||
<path style="fill:#6DA544;" d="M332.058,178.084v81.623v0.001l0,0C332.059,299.467,384,311.649,384,311.649 s51.941-12.182,51.942-51.942l0,0v-0.001v-81.622H332.058z"/>
|
||||
<rect x="372.87" y="215.181" style="fill:#F0F0F0;" width="22.261" height="59.359"/>
|
||||
<circle style="fill:#A2001D;" cx="384" cy="215.181" r="11.13"/>
|
||||
<g>
|
||||
<rect x="346.902" y="192.92" style="fill:#FFDA44;" width="14.84" height="14.84"/>
|
||||
<rect x="346.902" y="226.312" style="fill:#FFDA44;" width="14.84" height="14.84"/>
|
||||
<rect x="346.902" y="259.703" style="fill:#FFDA44;" width="14.84" height="14.84"/>
|
||||
<rect x="406.261" y="192.92" style="fill:#FFDA44;" width="14.84" height="14.84"/>
|
||||
<rect x="406.261" y="226.312" style="fill:#FFDA44;" width="14.84" height="14.84"/>
|
||||
<rect x="406.261" y="259.703" style="fill:#FFDA44;" width="14.84" height="14.84"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#FFDA44;" width="512" height="341.326"/>
|
||||
<polygon points="0,199.078 512,406.261 512,359.591 273.232,265.198 0,152.412 "/>
|
||||
<polyline style="fill:#F0F0F0;" points="512,359.588 512,312.923 0,105.739 0,152.412 "/>
|
||||
<g>
|
||||
<path style="fill:#D80027;" d="M304.224,237.452c0,26.633-21.591,48.224-48.224,48.224s-48.224-21.591-48.224-48.224 c0-8.304,2.099-16.118,5.796-22.94c-10.465,10.702-16.925,25.337-16.925,41.488c0,32.779,26.573,59.353,59.353,59.353 s59.353-26.574,59.353-59.353c0-16.15-6.46-30.786-16.925-41.488C302.125,221.334,304.224,229.148,304.224,237.452z"/>
|
||||
<rect x="244.87" y="181.805" style="fill:#D80027;" width="22.258" height="111.282"/>
|
||||
<path style="fill:#D80027;" d="M293.095,204.066h-74.191c0,5.122,4.461,9.274,9.583,9.274h-0.309c0,5.122,4.153,9.274,9.274,9.274 c0,5.122,4.153,9.274,9.274,9.274h18.548c5.122,0,9.274-4.152,9.274-9.274c5.122,0,9.274-4.152,9.274-9.274h-0.308 C288.633,213.34,293.095,209.189,293.095,204.066z"/>
|
||||
<rect x="204.065" y="300.511" style="fill:#D80027;" width="103.869" height="22.258"/>
|
||||
<rect x="278.261" y="307.935" style="fill:#D80027;" width="44.514" height="22.258"/>
|
||||
<rect x="189.229" y="307.935" style="fill:#D80027;" width="44.514" height="22.258"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#496E2D;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#D80027;" width="512" height="113.775"/>
|
||||
</svg>
|
After Width: | Height: | Size: 457 B |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#6DA544;" width="512" height="341.337"/>
|
||||
<rect y="85.331" style="fill:#D80027;" width="512" height="170.663"/>
|
||||
<polygon style="fill:#FFDA44;" points="255.999,196.632 268.89,236.311 310.616,236.311 276.861,260.836 289.753,300.516 255.999,275.992 222.245,300.516 235.139,260.836 201.384,236.311 243.106,236.311 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 590 B |
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#D80027;" width="512" height="341.326"/>
|
||||
<g>
|
||||
<polygon style="fill:#6DA544;" points="215.864,256.006 0,399.911 0,112.089 "/>
|
||||
<polygon style="fill:#6DA544;" points="512,112.089 512,399.911 296.136,256.006 "/>
|
||||
</g>
|
||||
<polygon style="fill:#0052B4;" points="512,112.089 296.136,256.006 512,399.911 512,426.668 471.875,426.668 256,282.752 40.125,426.668 0,426.668 0,399.911 215.864,256.006 0,112.089 0,85.331 40.125,85.331 256,229.248 471.875,85.331 512,85.331 "/>
|
||||
<g>
|
||||
<polygon style="fill:#F0F0F0;" points="512,112.089 296.136,256.006 512,399.911 512,426.668 471.875,426.668 256,282.752 40.125,426.668 0,426.668 0,399.911 215.864,256.006 0,112.089 0,85.331 40.125,85.331 256,229.248 471.875,85.331 512,85.331 "/>
|
||||
<circle style="fill:#F0F0F0;" cx="256" cy="256" r="74.207"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="256,204.058 262.426,215.188 275.278,215.188 268.852,226.318 275.278,237.449 262.426,237.449 256,248.579 249.574,237.449 236.722,237.449 243.148,226.318 236.722,215.188 249.574,215.188 "/>
|
||||
<polygon style="fill:#D80027;" points="223.337,256 229.762,267.13 242.615,267.13 236.189,278.261 242.615,289.391 229.762,289.391 223.337,300.522 216.91,289.391 204.058,289.391 210.484,278.261 204.058,267.13 216.91,267.13 "/>
|
||||
<polygon style="fill:#D80027;" points="288.663,256 295.09,267.13 307.942,267.13 301.516,278.261 307.942,289.391 295.09,289.391 288.663,300.522 282.238,289.391 269.385,289.391 275.811,278.261 269.385,267.13 282.238,267.13 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#D80027;" width="512" height="341.326"/>
|
||||
<g>
|
||||
<rect y="85.337" style="fill:#0052B4;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#0052B4;" width="512" height="113.775"/>
|
||||
</g>
|
||||
<polygon style="fill:#F0F0F0;" points="303.49,281.971 303.49,264.162 291.617,264.162 291.617,240.417 279.745,228.545 267.873,240.417 267.873,216.673 256,204.8 244.127,216.673 244.127,240.417 232.255,228.545 220.383,240.417 220.383,264.162 208.51,264.162 208.51,281.971 196.638,281.971 196.638,299.779 315.362,299.779 315.362,281.971 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 809 B |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#D80027;" width="512" height="341.337"/>
|
||||
<rect y="85.331" style="fill:#496E2D;" width="170.663" height="341.337"/>
|
||||
<g>
|
||||
<rect x="341.337" y="85.331" style="fill:#FFDA44;" width="170.663" height="341.337"/>
|
||||
<polygon style="fill:#FFDA44;" points="255.999,208.504 267.786,244.782 305.933,244.782 275.073,267.205 286.86,303.485 255.999,281.062 225.138,303.485 236.927,267.205 206.066,244.782 244.212,244.782 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 693 B |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<g>
|
||||
<rect y="85.331" style="fill:#D80027;" width="170.663" height="341.337"/>
|
||||
<rect x="341.337" y="85.331" style="fill:#D80027;" width="170.663" height="341.337"/>
|
||||
<polygon style="fill:#D80027;" points="288,279.704 320,263.704 304,255.705 304,239.705 272,255.705 288,223.705 272,223.705 256,199.704 240,223.705 224,223.705 240,255.705 208,239.705 208,255.705 192,263.704 224,279.704 216.001,295.704 248.001,295.704 248.001,319.705 264.001,319.705 264.001,295.704 296.001,295.704 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 814 B |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#338AF3;" width="512" height="341.337"/>
|
||||
<rect y="85.331" style="fill:#F0F0F0;" width="170.663" height="341.337"/>
|
||||
<rect x="341.337" y="85.331" style="fill:#FFDA44;" width="170.663" height="341.337"/>
|
||||
</svg>
|
After Width: | Height: | Size: 476 B |
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#0052B4;" width="512" height="341.337"/>
|
||||
<rect y="322.777" style="fill:#D80027;" width="512" height="22.261"/>
|
||||
<g>
|
||||
<rect y="300.516" style="fill:#F0F0F0;" width="512" height="22.261"/>
|
||||
<rect y="345.038" style="fill:#F0F0F0;" width="512" height="22.261"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#FFDA44;" points="180.384,261.272 183.388,270.521 193.113,270.521 185.246,276.236 188.251,285.484 180.384,279.769 172.517,285.484 175.522,276.236 167.656,270.521 177.38,270.521 "/>
|
||||
<polygon style="fill:#FFDA44;" points="180.384,382.332 183.388,391.579 193.113,391.579 185.246,397.294 188.251,406.542 180.384,400.827 172.517,406.542 175.522,397.294 167.656,391.579 177.38,391.579 "/>
|
||||
<polygon style="fill:#FFDA44;" points="124.033,341.389 127.037,350.638 136.762,350.638 128.896,356.353 131.9,365.601 124.033,359.886 116.166,365.601 119.171,356.353 111.304,350.638 121.029,350.638 "/>
|
||||
<polygon style="fill:#FFDA44;" points="145.557,273.378 148.561,282.626 158.286,282.626 150.42,288.342 153.424,297.59 145.557,291.874 137.69,297.59 140.695,288.342 132.828,282.626 142.553,282.626 "/>
|
||||
<polygon style="fill:#FFDA44;" points="111.304,311.462 121.027,311.463 124.032,302.214 127.037,311.462 136.762,311.461 128.895,317.177 131.9,326.427 124.032,320.711 116.166,326.424 119.17,317.177 "/>
|
||||
<polygon style="fill:#FFDA44;" points="137.69,392.671 140.695,383.425 132.827,377.708 142.552,377.708 145.557,368.46 148.562,377.707 158.286,377.707 150.419,383.423 153.423,392.672 145.556,386.956 "/>
|
||||
<polygon style="fill:#FFDA44;" points="236.714,341.389 233.71,350.638 223.986,350.638 231.851,356.353 228.847,365.601 236.714,359.886 244.581,365.601 241.576,356.353 249.443,350.638 239.718,350.638 "/>
|
||||
<polygon style="fill:#FFDA44;" points="215.19,273.378 212.186,282.626 202.461,282.626 210.327,288.342 207.323,297.59 215.19,291.874 223.057,297.59 220.052,288.342 227.919,282.626 218.194,282.626 "/>
|
||||
<polygon style="fill:#FFDA44;" points="249.443,311.462 239.721,311.463 236.715,302.214 233.71,311.462 223.986,311.461 231.853,317.177 228.847,326.427 236.715,320.711 244.581,326.424 241.577,317.177 "/>
|
||||
<polygon style="fill:#FFDA44;" points="223.057,392.671 220.052,383.425 227.919,377.708 218.195,377.708 215.19,368.46 212.185,377.707 202.461,377.707 210.328,383.423 207.324,392.672 215.191,386.956 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.334" style="fill:#0052B4;" width="512" height="341.337"/>
|
||||
<circle style="fill:#6DA544;" cx="384" cy="181.79" r="29.682"/>
|
||||
<rect x="332.054" y="174.377" style="fill:#D80027;" width="103.88" height="44.522"/>
|
||||
<path style="fill:#496E2D;" d="M435.942,255.997v-0.001V255.997z"/>
|
||||
<path style="fill:#FFDA44;" d="M332.058,285.678v29.682h15.616c9.364,9.176,22.18,14.84,36.326,14.84 c14.147,0,26.962-5.664,36.326-14.84h0.776h14.84v-29.682H332.058z"/>
|
||||
<path style="fill:#338AF3;" d="M332.058,211.475v44.522c0,39.759,51.942,51.942,51.942,51.942s51.942-12.182,51.942-51.942v-44.522 H332.058z"/>
|
||||
<g>
|
||||
<path style="fill:#F3F3F3;" d="M383.997,235.256c-12.985,0-12.985,11.873-25.97,11.873s-12.985-11.873-25.97-11.873v20.777 c12.985,0,12.985,11.873,25.97,11.873s12.985-11.873,25.97-11.873c12.986,0,12.986,11.873,25.973,11.873 c12.986,0,12.986-11.873,25.973-11.873v-20.777c-12.986,0-12.986,11.873-25.973,11.873 C396.984,247.128,396.984,235.256,383.997,235.256z"/>
|
||||
<path style="fill:#F3F3F3;" d="M383.997,193.666c-12.985,0-12.985,11.873-25.97,11.873s-12.985-11.873-25.97-11.873v20.777 c12.985,0,12.985,11.873,25.97,11.873s12.985-11.873,25.97-11.873c12.986,0,12.986,11.873,25.973,11.873 c12.986,0,12.986-11.873,25.973-11.873v-20.777c-12.986,0-12.986,11.873-25.973,11.873 C396.984,205.539,396.984,193.666,383.997,193.666z"/>
|
||||
</g>
|
||||
<polygon style="fill:#F0F0F0;" points="256,85.334 256,107.951 209.931,138.66 256,138.66 256,202.66 209.931,202.66 256,233.38 256,255.997 233.372,255.997 160,207.078 160,255.997 96,255.997 96,207.078 22.628,255.997 0,255.997 0,233.38 46.069,202.66 0,202.66 0,138.66 46.069,138.66 0,107.951 0,85.334 22.628,85.334 96,134.241 96,85.334 160,85.334 160,134.241 233.372,85.334 "/>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="144,85.329 112,85.329 112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 "/>
|
||||
<polygon style="fill:#D80027;" points="0,85.329 0,100.411 57.377,138.663 80,138.663 "/>
|
||||
<polygon style="fill:#D80027;" points="256,85.329 256,100.411 198.623,138.663 176,138.663 "/>
|
||||
<polygon style="fill:#D80027;" points="0,85.329 0,100.411 57.377,138.663 80,138.663 "/>
|
||||
<polygon style="fill:#D80027;" points="256,85.329 256,100.411 198.623,138.663 176,138.663 "/>
|
||||
<polygon style="fill:#D80027;" points="0,255.997 0,240.915 57.377,202.663 80,202.663 "/>
|
||||
<polygon style="fill:#D80027;" points="256,255.997 256,240.915 198.623,202.663 176,202.663 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.333" style="fill:#D80027;" width="512" height="341.337"/>
|
||||
<g>
|
||||
<rect y="255.996" style="fill:#6DA544;" width="211.478" height="85.337"/>
|
||||
<rect x="300.522" y="255.996" style="fill:#6DA544;" width="211.478" height="85.337"/>
|
||||
</g>
|
||||
<polygon style="fill:#0052B4;" points="0,85.33 0,85.333 0,170.662 211.478,170.662 211.478,85.333 300.522,85.333 300.522,170.662 512,170.662 512,85.333 512,85.33 "/>
|
||||
<g>
|
||||
<rect x="300.522" y="170.659" style="fill:#F0F0F0;" width="211.478" height="85.337"/>
|
||||
<rect y="170.659" style="fill:#F0F0F0;" width="211.478" height="85.337"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#FFDA44;" points="300.522,426.659 211.478,426.659 211.478,341.33 0,341.33 0,426.659 0,426.662 512,426.662 512,426.659 512,341.33 300.522,341.33 "/>
|
||||
<polygon style="fill:#FFDA44;" points="119.678,111.3 124.282,125.472 139.184,125.472 127.13,134.231 131.734,148.402 119.678,139.644 107.624,148.402 112.229,134.231 100.174,125.472 115.074,125.472 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.333" style="fill:#F0F0F0;" width="512" height="341.337"/>
|
||||
<polygon points="85.334,85.33 256,255.996 256,85.33 "/>
|
||||
<polygon points="0,426.662 85.334,426.662 256,255.996 0,255.996 "/>
|
||||
<polygon points="426.666,426.662 256,255.996 256,426.662 "/>
|
||||
<polygon points="426.666,85.33 256,255.996 512,255.996 512,85.33 "/>
|
||||
<polygon style="fill:#FFDA44;" points="196.638,204.054 256,211.475 315.362,204.054 315.362,168.436 291.617,180.309 256,144.692 220.383,180.309 196.638,168.436 "/>
|
||||
<path style="fill:#D80027;" d="M256,345.04c-32.732,0-59.362-26.63-59.362-59.362v-59.36l22.261-22.262h74.203l22.261,22.262v59.36 C315.362,318.41,288.732,345.04,256,345.04z"/>
|
||||
<path style="fill:#F0F0F0;" d="M256,322.779c-20.458,0-37.101-16.643-37.101-37.101v-59.361h74.203v59.361 C293.101,306.135,276.458,322.779,256,322.779z"/>
|
||||
<g>
|
||||
<rect x="196.641" y="204.05" style="fill:#FFDA44;" width="22.261" height="22.261"/>
|
||||
<rect x="293.098" y="204.05" style="fill:#FFDA44;" width="22.261" height="22.261"/>
|
||||
<rect x="293.098" y="252.29" style="fill:#FFDA44;" width="22.261" height="22.261"/>
|
||||
<rect x="196.641" y="252.29" style="fill:#FFDA44;" width="22.261" height="22.261"/>
|
||||
<path style="fill:#FFDA44;" d="M256,322.779c-3.877,0-7.615-0.6-11.13-1.709v22.908c3.608,0.688,7.325,1.062,11.13,1.062 s7.522-0.374,11.13-1.062V321.07C263.615,322.179,259.877,322.779,256,322.779z"/>
|
||||
<path style="fill:#FFDA44;" d="M219.395,291.7l-17.766,17.766c3.081,7.013,7.474,13.319,12.876,18.606l15.733-15.733 C224.624,306.913,220.713,299.74,219.395,291.7z"/>
|
||||
<path style="fill:#FFDA44;" d="M310.371,309.467L292.605,291.7c-1.319,8.038-5.229,15.212-10.843,20.638l15.733,15.733 C302.896,322.785,307.29,316.48,310.371,309.467z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path style="fill:#0052B4;" d="M248.579,238.683v12.367c0,4.098,3.322,7.421,7.421,7.421c4.098,0,7.421-3.322,7.421-7.421v-12.367 H248.579z"/>
|
||||
<path style="fill:#0052B4;" d="M248.579,288.151v12.367c0,4.098,3.322,7.421,7.421,7.421c4.098,0,7.421-3.322,7.421-7.421v-12.367 H248.579z"/>
|
||||
<path style="fill:#0052B4;" d="M270.84,263.417v12.368c0,4.097,3.322,7.421,7.421,7.421s7.421-3.324,7.421-7.421v-12.368 L270.84,263.417L270.84,263.417z"/>
|
||||
<path style="fill:#0052B4;" d="M248.579,263.417v12.368c0,4.097,3.322,7.421,7.421,7.421c4.098,0,7.421-3.324,7.421-7.421v-12.368 L248.579,263.417L248.579,263.417z"/>
|
||||
<path style="fill:#0052B4;" d="M226.318,263.417v12.368c0,4.097,3.322,7.421,7.421,7.421s7.421-3.324,7.421-7.421v-12.368 L226.318,263.417L226.318,263.417z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#FFDA44;" width="512" height="341.337"/>
|
||||
<rect y="85.331" style="fill:#0052B4;" width="170.663" height="341.337"/>
|
||||
<rect x="341.337" y="85.331" style="fill:#D80027;" width="170.663" height="341.337"/>
|
||||
</svg>
|
After Width: | Height: | Size: 476 B |
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#D80027;" width="512" height="341.326"/>
|
||||
<rect x="256" y="85.337" style="fill:#F0F0F0;" width="256" height="170.663"/>
|
||||
<rect y="85.337" style="fill:#0052B4;" width="256" height="170.663"/>
|
||||
<polygon style="fill:#F0F0F0;" points="128,109.801 143.108,156.299 192,156.299 152.446,185.038 167.554,231.536 128,202.799 88.446,231.536 103.554,185.038 64,156.299 112.892,156.299 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 651 B |
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#D80027;" width="512" height="341.337"/>
|
||||
<g>
|
||||
<polygon style="fill:#FFDA44;" points="178.923,189.567 193.579,234.674 241.008,234.674 202.637,262.552 217.294,307.661 178.923,279.782 140.552,307.661 155.208,262.552 116.837,234.674 164.266,234.674 "/>
|
||||
<polygon style="fill:#FFDA44;" points="271.3,339.593 256.91,329.138 242.522,339.592 248.017,322.678 233.628,312.223 251.414,312.223 256.91,295.307 262.408,312.223 280.193,312.223 265.804,322.677 "/>
|
||||
<polygon style="fill:#FFDA44;" points="308.837,287.927 291.052,287.927 285.556,304.841 280.06,287.928 262.273,287.927 276.664,277.472 271.166,260.557 285.556,271.01 299.945,260.557 294.449,277.472 "/>
|
||||
<polygon style="fill:#FFDA44;" points="308.837,224.063 294.449,234.518 299.944,251.432 285.556,240.979 271.166,251.434 276.664,234.517 262.273,224.065 280.061,224.063 285.556,207.147 291.052,224.063 "/>
|
||||
<polygon style="fill:#FFDA44;" points="271.3,172.397 265.805,189.313 280.193,199.766 262.408,199.767 256.91,216.684 251.414,199.766 233.629,199.768 248.018,189.312 242.522,172.396 256.91,182.851 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.333" style="fill:#0052B4;" width="512" height="341.337"/>
|
||||
<polyline style="fill:#6DA544;" points="0,85.33 512,85.33 512,426.662 "/>
|
||||
<circle style="fill:#FFDA44;" cx="256" cy="255.996" r="44.522"/>
|
||||
<g>
|
||||
<polygon style="fill:#F0F0F0;" points="127.576,352.46 132.26,362.253 142.835,359.809 138.099,369.576 146.603,376.321 136.015,378.706 136.044,389.561 127.576,382.77 119.108,389.561 119.137,378.706 108.547,376.321 117.053,369.576 112.317,359.809 122.892,362.253 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="96.941,270.836 101.624,280.629 112.199,278.185 107.464,287.953 115.968,294.697 105.38,297.083 105.409,307.938 96.941,301.147 88.472,307.938 88.501,297.083 77.913,294.697 86.418,287.953 81.682,278.185 92.257,280.629 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="127.576,204.054 132.26,213.846 142.835,211.402 138.099,221.17 146.603,227.914 136.015,230.3 136.044,241.156 127.576,234.364 119.108,241.156 119.137,230.3 108.548,227.914 117.052,221.17 112.317,211.402 122.892,213.846 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="165.631,255.996 170.315,265.789 180.891,263.343 176.155,273.112 184.658,279.856 174.07,282.243 174.099,293.097 165.631,286.306 157.164,293.097 157.193,282.243 146.603,279.856 155.108,273.112 150.372,263.343 160.948,265.789 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="138.419,300.518 142.103,311.855 154.024,311.855 144.38,318.862 148.064,330.199 138.419,323.193 128.776,330.199 132.46,318.862 122.815,311.855 134.736,311.855 "/>
|
||||
</g>
|
||||
<path style="fill:#6DA544;" d="M256,285.678h14.84c0,0,6.431-11.376,0-22.261l14.84-14.84l-7.42-14.841h-7.421 c0,0-3.71,11.13-18.551,11.13c-14.841,0-18.55-11.13-18.55-11.13h-7.42l7.42,14.84l-7.421,14.84l7.421,7.421 c0,0,7.421-14.84,22.261-7.421C256,263.417,262.308,272.692,256,285.678z"/>
|
||||
<path style="fill:#FFDA44;" d="M396.449,200.819c0.351-1.823,0.536-3.704,0.536-5.629c0-13.2-8.618-24.381-20.533-28.238 c3.641,7.4,5.693,15.723,5.693,24.527c0,2.97-0.239,5.882-0.688,8.726c-1.793-2.888-4.096-5.528-6.91-7.768 c-10.601-8.435-25.087-8.658-35.797-1.554c8.268,1.805,16.264,5.475,23.335,11.102c5.536,4.405,10.01,10.364,13.434,16.116 l-45.316,14.19c44.522,7.421,81.623-22.261,81.623-22.261C407.716,201.809,401.33,200.424,396.449,200.819z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#6DA544;" width="512" height="341.337"/>
|
||||
<g>
|
||||
<polygon style="fill:#FFDA44;" points="347.323,330.198 352.006,339.99 362.582,337.546 357.846,347.313 366.35,354.058 355.762,356.443 355.791,367.299 347.323,360.508 338.855,367.299 338.884,356.443 328.296,354.058 336.8,347.313 332.064,337.546 342.639,339.99 "/>
|
||||
<polygon style="fill:#FFDA44;" points="303.755,226.313 308.439,236.107 319.015,233.661 314.278,243.429 322.783,250.173 312.194,252.56 312.223,263.415 303.755,256.623 295.287,263.415 295.316,252.56 284.728,250.173 293.232,243.429 288.495,233.661 299.071,236.107 "/>
|
||||
<polygon style="fill:#FFDA44;" points="347.323,166.951 352.006,176.743 362.582,174.298 357.847,184.067 366.35,190.811 355.762,193.198 355.791,204.052 347.323,197.261 338.855,204.052 338.884,193.198 328.296,190.811 336.8,184.067 332.064,174.298 342.639,176.743 "/>
|
||||
<polygon style="fill:#FFDA44;" points="385.378,211.473 390.062,221.265 400.638,218.821 395.902,228.589 404.405,235.333 393.817,237.719 393.846,248.574 385.378,241.783 376.91,248.574 376.939,237.719 366.35,235.333 374.855,228.589 370.119,218.821 380.695,221.265 "/>
|
||||
<polygon style="fill:#FFDA44;" points="358.166,263.415 361.85,274.753 373.771,274.753 364.127,281.759 367.811,293.095 358.166,286.089 348.523,293.095 352.207,281.759 342.562,274.753 354.483,274.753 "/>
|
||||
<path style="fill:#FFDA44;" d="M274.551,304.226c-26.638,0-48.233-21.594-48.233-48.232s21.594-48.232,48.233-48.232 c8.306,0,16.12,2.1,22.943,5.797c-10.703-10.467-25.341-16.927-41.495-16.927c-32.784,0-59.362,26.577-59.362,59.362 s26.577,59.362,59.362,59.362c16.155,0,30.792-6.46,41.495-16.927C290.671,302.126,282.857,304.226,274.551,304.226z"/>
|
||||
<path style="fill:#FFDA44;" d="M192.657,152.111c-5.133-8.87-14.717-14.84-25.7-14.84s-20.568,5.971-25.7,14.84H192.657z"/>
|
||||
<path style="fill:#FFDA44;" d="M192.756,152.282l-25.799,25.799l-25.799-25.799c-2.465,4.328-3.882,9.331-3.882,14.669 c0,16.393,13.289,29.682,29.682,29.682s29.682-13.289,29.682-29.682C196.638,161.613,195.221,156.61,192.756,152.282z"/>
|
||||
</g>
|
||||
<path style="fill:#A2001D;" d="M159.536,170.661v25.036c2.372,0.61,4.858,0.935,7.421,0.935s5.049-0.325,7.421-0.935v-25.036 H159.536z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#FFDA44;" width="512" height="341.326"/>
|
||||
<rect y="343.096" style="fill:#D80027;" width="512" height="83.567"/>
|
||||
<rect y="256" style="fill:#0052B4;" width="512" height="87.096"/>
|
||||
</svg>
|
After Width: | Height: | Size: 452 B |
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#0052B4;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#FFDA44;" width="512" height="85.337"/>
|
||||
<rect y="170.663" style="fill:#F0F0F0;" width="512" height="85.337"/>
|
||||
<rect y="256" style="fill:#D80027;" width="512" height="85.337"/>
|
||||
<polygon style="fill:#6DA544;" points="256,256.006 0,426.668 0,85.331 "/>
|
||||
<g>
|
||||
<path style="fill:#F0F0F0;" d="M68.638,256c0-24.865,17.476-45.638,40.812-50.734c-3.587-0.784-7.308-1.208-11.13-1.208 c-28.688,0-51.942,23.255-51.942,51.942s23.255,51.942,51.942,51.942c3.822,0,7.543-0.425,11.13-1.208 C86.113,301.638,68.638,280.865,68.638,256z"/>
|
||||
<polygon style="fill:#F0F0F0;" points="108.877,211.478 111.639,219.981 120.579,219.981 113.347,225.237 116.109,233.739 108.877,228.484 101.643,233.739 104.407,225.237 97.173,219.981 106.113,219.981 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="108.877,233.739 111.639,242.242 120.579,242.242 113.347,247.497 116.109,256 108.877,250.745 101.643,256 104.407,247.497 97.173,242.242 106.113,242.242 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="108.877,256 111.639,264.503 120.579,264.503 113.347,269.758 116.109,278.261 108.877,273.006 101.643,278.261 104.407,269.758 97.173,264.503 106.113,264.503 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="108.877,278.261 111.639,286.763 120.579,286.763 113.347,292.019 116.109,300.522 108.877,295.267 101.643,300.522 104.407,292.019 97.173,286.763 106.113,286.763 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.332" style="fill:#0052B4;" width="512" height="341.337"/>
|
||||
<g>
|
||||
<polygon style="fill:#F0F0F0;" points="384,156.705 389.283,172.959 406.372,172.959 392.546,183.004 397.827,199.258 384,189.211 370.175,199.258 375.455,183.004 361.63,172.959 378.719,172.959 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="313.791,185.786 329.019,193.544 341.103,181.461 338.43,198.34 353.657,206.099 336.778,208.772 334.104,225.652 326.344,210.425 309.466,213.098 321.552,201.014 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="284.71,255.995 300.964,250.714 300.965,233.625 311.009,247.45 327.263,242.168 317.217,255.995 327.263,269.821 311.009,264.541 300.965,278.366 300.965,261.276 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="313.791,326.204 321.55,310.975 309.466,298.891 326.347,301.565 334.104,286.338 336.778,303.217 353.657,305.889 338.43,313.648 341.103,330.53 329.019,318.443 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="384,355.284 378.719,339.031 361.628,339.031 375.455,328.986 370.175,312.732 384,322.776 397.827,312.732 392.546,328.986 406.372,339.031 389.283,339.031 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="454.209,326.204 438.98,318.446 426.897,330.53 429.57,313.648 414.343,305.892 431.222,303.217 433.897,286.338 441.653,301.565 458.534,298.891 446.448,310.976 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="483.29,255.995 467.036,261.276 467.036,278.366 456.991,264.54 440.737,269.821 450.783,255.995 440.737,242.168 456.991,247.45 467.036,233.625 467.036,250.714 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="454.209,185.788 446.452,201.014 458.534,213.098 441.653,210.425 433.897,225.652 431.222,208.772 414.343,206.097 429.57,198.34 426.897,181.462 438.981,193.544 "/>
|
||||
<path style="fill:#F0F0F0;" d="M0,186.665v16h46.069L0,233.377v7.539l57.377-38.252H80L0,255.998h112v-69.334H0z M96,255.996 H22.628L96,207.083V255.996z"/>
|
||||
<path style="fill:#F0F0F0;" d="M176,138.665l80-53.334H144v69.334h112v-16h-46.069L256,107.951v-7.539l-57.377,38.251H176V138.665z M160,85.333h73.372L160,134.246V85.333z"/>
|
||||
<path style="fill:#F0F0F0;" d="M144,255.998h112l-80-53.334h22.623L256,240.917v-7.539l-46.069-30.713H256v-16H144V255.998z M160,207.083l73.372,48.913H160V207.083z"/>
|
||||
<path style="fill:#F0F0F0;" d="M112,85.331H0l80,53.334H57.377L0,100.413v7.539l46.069,30.712H0v16h112V85.331z M96,134.246 L22.628,85.333H96V134.246z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="144,85.331 112,85.331 112,154.665 0,154.665 0,186.665 112,186.665 112,255.998 144,255.998 144,186.665 256,186.665 256,154.665 144,154.665 "/>
|
||||
<polygon style="fill:#D80027;" points="80,138.665 0,85.331 0,100.413 57.377,138.665 "/>
|
||||
<polygon style="fill:#D80027;" points="176,138.665 198.623,138.665 256,100.413 256,85.331 "/>
|
||||
<polygon style="fill:#D80027;" points="57.377,202.665 0,240.917 0,255.998 80,202.665 "/>
|
||||
<polygon style="fill:#D80027;" points="176,202.665 256,255.998 256,240.917 198.623,202.665 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#F0F0F0;" width="512" height="341.337"/>
|
||||
<path d="M315.424,229.882c0-36.096-29.261-65.357-65.357-65.357c-26.635,0-49.535,15.94-59.715,38.796l-8.062,29.223l7.421,7.421 l-14.84,29.682l14.84,7.421l-7.421,7.421v7.421l7.421,7.421v14.84l7.421,7.421l22.261-7.421c0,0,0,7.421,7.421,14.84 c7.421,7.42,14.841,22.262,14.841,22.262s22.261,7.421,37.101-14.84s29.682-29.682,29.682-29.682l-14.305-28.61 C307.213,266.19,315.424,248.998,315.424,229.882z"/>
|
||||
<path style="fill:#ACABB1;" d="M320.751,254.876c30.152-5.087,35.176-64.13,35.176-64.13h-41.553 c21.518,51.942-1.004,55.436-1.004,55.436c-3.052-2.27-112.249-54-115.712-55.316c-0.834,1.116-3.903,4.047-7.635,13.174 c-3.732,9.127-4.649,17.338-4.649,17.338c1.749,1.139,117.718,41.633,120.783,41.971c6.083,3.978,13.569,15.871,9.385,51.137 l39.996-11.273C355.536,303.213,341.963,267.104,320.751,254.876z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<rect y="211.473" style="fill:#D80027;" width="512" height="89.043"/>
|
||||
<g>
|
||||
<rect y="352.462" style="fill:#0052B4;" width="512" height="74.207"/>
|
||||
<rect y="85.331" style="fill:#0052B4;" width="512" height="74.207"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 536 B |
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#D80027;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#0052B4;" width="512" height="113.775"/>
|
||||
<g>
|
||||
<polygon style="fill:#338AF3;" points="300.522,204.059 270.84,204.059 275.788,166.957 295.575,152.116 315.362,166.957 315.362,196.638 "/>
|
||||
<polygon style="fill:#338AF3;" points="211.478,204.059 241.16,204.059 236.212,166.957 216.425,152.116 196.638,166.957 196.638,196.638 "/>
|
||||
</g>
|
||||
<polygon style="fill:#0052B4;" points="275.788,204.059 236.212,204.059 236.212,166.957 256,152.116 275.788,166.957 "/>
|
||||
<path style="fill:#F0F0F0;" d="M196.638,196.638v81.623c0,19.436,9.389,36.719,23.868,47.555l10.388-2.6l13.109,13.188 c3.876,0.798,7.887,1.219,11.996,1.219c4.087,0,8.077-0.415,11.934-1.205l14.964-12.459l8.595,1.834 c14.474-10.834,23.868-28.101,23.868-47.531v-81.623L196.638,196.638L196.638,196.638z"/>
|
||||
<g>
|
||||
<rect x="196.641" y="196.641" style="fill:#D80027;" width="23.745" height="23.745"/>
|
||||
<rect x="244.124" y="196.641" style="fill:#D80027;" width="23.745" height="23.745"/>
|
||||
<rect x="291.617" y="196.641" style="fill:#D80027;" width="23.745" height="23.745"/>
|
||||
<rect x="220.383" y="220.383" style="fill:#D80027;" width="23.745" height="23.745"/>
|
||||
<rect x="267.876" y="220.383" style="fill:#D80027;" width="23.745" height="23.745"/>
|
||||
<rect x="196.641" y="244.124" style="fill:#D80027;" width="23.745" height="23.745"/>
|
||||
<rect x="220.383" y="267.865" style="fill:#D80027;" width="23.745" height="23.745"/>
|
||||
<rect x="244.124" y="244.124" style="fill:#D80027;" width="23.745" height="23.745"/>
|
||||
<rect x="291.617" y="244.124" style="fill:#D80027;" width="23.745" height="23.745"/>
|
||||
<rect x="267.876" y="267.865" style="fill:#D80027;" width="23.745" height="23.745"/>
|
||||
<rect x="244.124" y="291.617" style="fill:#D80027;" width="23.745" height="23.745"/>
|
||||
<path style="fill:#D80027;" d="M220.383,291.613h-22.212c2.038,8.826,6.042,16.904,11.536,23.745h10.676V291.613z"/>
|
||||
<path style="fill:#D80027;" d="M291.617,315.357h10.677c5.493-6.842,9.498-14.919,11.536-23.745h-22.213V315.357z"/>
|
||||
<path style="fill:#D80027;" d="M220.383,315.357v10.361c6.906,5.196,14.976,8.923,23.745,10.71v-21.071H220.383z"/>
|
||||
<path style="fill:#D80027;" d="M267.873,315.357v21.071c8.769-1.786,16.839-5.514,23.745-10.71v-10.361H267.873z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 511.999 511.999" style="enable-background:new 0 0 511.999 511.999;" xml:space="preserve">
|
||||
<polygon style="fill:#FF9811;" points="0.001,44.522 0,44.522 0,467.477 0.001,467.477 0.001,256.001 "/>
|
||||
<rect x="0" y="85.337" style="fill:#F0F0F0;" width="511.999" height="341.325"/>
|
||||
<g>
|
||||
<rect x="0" y="85.337" style="fill:#0052B4;" width="511.999" height="68.263"/>
|
||||
<rect x="0" y="221.874" style="fill:#0052B4;" width="511.999" height="68.263"/>
|
||||
<rect x="0" y="358.399" style="fill:#0052B4;" width="511.999" height="68.263"/>
|
||||
</g>
|
||||
<polygon style="fill:#D80027;" points="256.001,256.005 0.001,426.668 0.001,85.332 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="83.478,211.479 94.528,245.489 130.291,245.489 101.36,266.51 112.409,300.521 83.478,279.501 54.547,300.521 65.598,266.51 36.667,245.489 72.428,245.489 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 977 B |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#0052B4;" width="512" height="341.326"/>
|
||||
<rect y="325.331" style="fill:#FFDA44;" width="512" height="32"/>
|
||||
<g>
|
||||
<polygon style="fill:#F0F0F0;" points="145.786,148.41 154.995,176.751 184.798,176.751 160.688,194.269 169.896,222.612 145.786,205.096 121.676,222.612 130.886,194.269 106.776,176.751 136.577,176.751 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="94.608,118.728 100.134,135.733 118.015,135.733 103.55,146.244 109.075,163.25 94.608,152.74 80.142,163.25 85.668,146.244 71.202,135.733 89.084,135.733 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 796 B |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#FCFCFC;" width="512" height="341.337"/>
|
||||
<path style="fill:#6DA544;" d="M352,233.88c-5.169,0-11.569,0-22.154,0c0,40.784-33.063,73.846-73.846,73.846 c-40.785,0-73.846-33.062-73.846-73.846c-7.138,0-15.016,0-22.154,0c0,43.931,29.509,80.969,69.787,92.377 c-4.415,8.389-3.743,18.951,2.564,26.822c8.285-6.64,16.864-13.515,24.141-19.346c7.277,5.831,15.855,12.705,24.141,19.346 c6.371-7.95,6.998-18.646,2.434-27.075C322.905,314.318,352,277.5,352,233.88z"/>
|
||||
<path style="fill:#FFDA44;" d="M196.923,226.497c0,0,0,36.923,36.923,36.923l7.385,7.385H256c0,0,7.385-22.154,22.154-22.154 c0,0,0-14.769,14.769-14.769s22.154,0,22.154,0s-7.385-29.538,29.538-51.692l-14.769-7.385c0,0-51.692,36.923-88.615,29.538v14.769 h-14.769l-7.385-7.385L196.923,226.497z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1020 B |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#0052B4;" width="512" height="341.326"/>
|
||||
<polygon style="fill:#D80027;" points="512,256 512,426.663 0,426.663 215.185,256 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="512,85.337 512,256 215.185,256 0,85.337 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 484 B |
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#338AF3;" width="512" height="341.326"/>
|
||||
<polygon style="fill:#FFDA44;" points="512,152.222 512,85.337 411.67,85.337 0,359.778 0,426.663 100.33,426.663 "/>
|
||||
<polygon style="fill:#D80027;" points="512,85.337 512,125.462 60.193,426.663 0,426.663 0,386.538 451.807,85.337 "/>
|
||||
<polygon style="fill:#FFDA44;" points="176.287,137.278 185.496,165.62 215.297,165.62 191.187,183.137 200.397,211.479 176.287,193.962 152.178,211.479 161.387,183.137 137.277,165.62 167.078,165.62 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 748 B |
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.333" style="fill:#D80027;" width="512" height="341.337"/>
|
||||
<polygon style="fill:#F0F0F0;" points="192,85.33 128,85.33 128,223.996 0,223.996 0,287.996 128,287.996 128,426.662 192,426.662 192,287.996 512,287.996 512,223.996 192,223.996 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 497 B |
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#6DA544;" width="512" height="341.326"/>
|
||||
<polygon style="fill:#338AF3;" points="512,85.331 512,252.021 0,256.173 0,85.331 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="256,256.006 0,426.668 0,85.331 "/>
|
||||
<polygon style="fill:#D80027;" points="94.608,211.478 105.658,245.488 141.422,245.488 112.49,266.51 123.54,300.522 94.608,279.502 65.675,300.522 76.728,266.51 47.795,245.488 83.557,245.488 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 670 B |
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#496E2D;" width="512" height="341.326"/>
|
||||
<polygon points="0,224 0,245.334 0,266.666 0,288 512,288 512,266.666 512,245.334 512,224 "/>
|
||||
<rect y="224" style="fill:#FFDA44;" width="512" height="21.337"/>
|
||||
<rect y="266.663" style="fill:#F0F0F0;" width="512" height="21.337"/>
|
||||
<rect x="224" y="85.337" width="64" height="341.326"/>
|
||||
<rect x="224" y="85.337" style="fill:#FFDA44;" width="21.326" height="341.326"/>
|
||||
<rect x="266.674" y="85.337" style="fill:#F0F0F0;" width="21.326" height="341.326"/>
|
||||
<circle style="fill:#D80027;" cx="256" cy="256" r="81.619"/>
|
||||
<g>
|
||||
<path style="fill:#496E2D;" d="M274.596,265.107c-6.071-12.142-13.963-24.449-13.963-24.449s0.196-5.603,0.196-8.942 c0-5.03-4.077-9.107-9.107-9.107c-4.765,0-8.668,3.661-9.067,8.321c-3.746,0.245-6.712,3.352-6.712,7.161 c0,2.769,1.569,5.168,3.864,6.368c1.141-2.669,3.376-4.753,6.141-5.703c0.45,0.37,0.935,0.698,1.451,0.977l1.166,0.559 c0,0-4.326,12.193-4.326,18.745c0,18.416,12.142,24.095,12.142,24.095v0.19l-6.071,6.069h12.142v-12.142l6.071,6.072 C268.58,283.206,280.026,275.967,274.596,265.107z"/>
|
||||
<polygon style="fill:#496E2D;" points="256,189.217 258.763,197.72 267.703,197.72 260.47,202.976 263.234,211.478 256,206.224 248.766,211.478 251.53,202.976 244.297,197.72 253.237,197.72 "/>
|
||||
<polygon style="fill:#496E2D;" points="216.746,201.972 223.978,207.226 231.211,201.972 228.449,210.474 235.682,215.729 226.743,215.73 223.979,224.233 221.216,215.73 212.276,215.729 219.509,210.474 "/>
|
||||
<polygon style="fill:#496E2D;" points="192.486,235.363 201.425,235.363 204.188,226.861 206.952,235.363 215.891,235.363 208.659,240.618 211.423,249.121 204.188,243.867 196.955,249.12 199.718,240.618 "/>
|
||||
<polygon style="fill:#496E2D;" points="192.486,276.637 199.718,271.383 196.955,262.88 204.188,268.134 211.421,262.879 208.659,271.382 215.893,276.637 206.952,276.638 204.188,285.139 201.425,276.637 "/>
|
||||
<polygon style="fill:#496E2D;" points="216.746,310.028 219.509,301.527 212.275,296.271 221.216,296.271 223.979,287.767 226.743,296.27 235.682,296.27 228.449,301.526 231.211,310.028 223.978,304.774 "/>
|
||||
<polygon style="fill:#496E2D;" points="256,322.783 253.237,314.281 244.297,314.281 251.53,309.025 248.766,300.522 256,305.776 263.233,300.522 260.47,309.025 267.703,314.28 258.763,314.281 "/>
|
||||
<polygon style="fill:#496E2D;" points="295.254,310.028 288.022,304.774 280.789,310.029 283.551,301.526 276.317,296.271 285.257,296.27 288.02,287.767 290.784,296.271 299.724,296.271 292.491,301.527 "/>
|
||||
<polygon style="fill:#496E2D;" points="319.514,276.637 310.575,276.637 307.812,285.139 305.048,276.638 296.107,276.638 303.341,271.382 300.577,262.88 307.812,268.134 315.044,262.88 312.282,271.382 "/>
|
||||
<polygon style="fill:#496E2D;" points="319.514,235.363 312.282,240.618 315.045,249.12 307.812,243.866 300.578,249.121 303.341,240.618 296.107,235.364 305.048,235.363 307.811,226.861 310.575,235.363 "/>
|
||||
<polygon style="fill:#496E2D;" points="295.254,201.972 292.491,210.474 299.724,215.729 290.784,215.729 288.022,224.233 285.257,215.73 276.317,215.73 283.551,210.474 280.789,201.973 288.022,207.226 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<rect y="300.522" style="fill:#D80027;" width="211.478" height="126.141"/>
|
||||
<rect y="85.337" style="fill:#0052B4;" width="211.478" height="126.152"/>
|
||||
<rect x="300.522" y="85.337" style="fill:#D80027;" width="211.478" height="126.152"/>
|
||||
<rect x="300.522" y="300.522" style="fill:#0052B4;" width="211.478" height="126.141"/>
|
||||
<path style="fill:#496E2D;" d="M300.521,256.006c0,24.588-19.932,44.521-44.521,44.521s-44.521-19.932-44.521-44.521 S256,211.485,256,211.485S300.521,231.417,300.521,256.006z"/>
|
||||
<path style="fill:#0052B4;" d="M211.479,256.006c0-24.588,19.932-44.521,44.521-44.521s44.521,19.932,44.521,44.521"/>
|
||||
<path style="fill:#D80027;" d="M230.957,233.745v27.825c0,13.831,11.212,25.042,25.043,25.042c13.832,0,25.043-11.212,25.043-25.042 v-27.825H230.957z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#D80027;" width="512" height="341.326"/>
|
||||
<polygon style="fill:#FFDA44;" points="256,256 0,90.691 0,134.933 155.826,256 0,377.067 0,421.309 "/>
|
||||
<polygon points="0,90.691 0,421.309 189.217,256 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="44.184,213.36 69.096,236.937 99.217,220.527 84.494,251.507 109.405,275.082 75.393,270.652 60.67,301.63 54.374,267.914 20.362,263.484 50.481,247.076 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 663 B |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#FFDA44;" width="512" height="341.326"/>
|
||||
<rect y="256" style="fill:#0052B4;" width="512" height="85.337"/>
|
||||
<rect y="341.337" style="fill:#D80027;" width="512" height="85.326"/>
|
||||
<circle style="fill:#FFDA44;" cx="256" cy="256" r="59.359"/>
|
||||
<path style="fill:#338AF3;" d="M256,295.304c-21.098,0-38.261-17.163-38.261-38.261v-22.957c0-21.098,17.163-38.261,38.261-38.261 s38.261,17.163,38.261,38.261v22.957C294.261,278.141,277.098,295.304,256,295.304z"/>
|
||||
<path d="M317.217,165.217h-45.913c0-8.451-6.853-15.304-15.304-15.304s-15.304,6.853-15.304,15.304h-45.913 c0,8.452,7.363,15.304,15.814,15.304h-0.51c0,8.452,6.852,15.304,15.304,15.304c0,8.452,6.852,15.304,15.304,15.304h30.609 c8.452,0,15.304-6.852,15.304-15.304c8.452,0,15.304-6.852,15.304-15.304h-0.51C309.855,180.521,317.217,173.669,317.217,165.217z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#D80027;" width="512" height="113.775"/>
|
||||
<rect y="312.888" width="512" height="113.775"/>
|
||||
<path style="fill:#FF9811;" d="M320,236.29h-48c0-8.836-7.164-16-16-16s-16,7.164-16,16h-48c0,8.836,7.697,16,16.533,16H208 c0,8.836,7.164,16,16,16c0,8.836,7.164,16,16,16h32c8.836,0,16-7.164,16-16c8.836,0,16-7.164,16-16h-0.533 C312.303,252.29,320,245.127,320,236.29z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 704 B |
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<g>
|
||||
<rect y="85.337" style="fill:#0052B4;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#0052B4;" width="512" height="113.775"/>
|
||||
</g>
|
||||
<polygon style="fill:#FFDA44;" points="228.582,261.936 256,214.447 283.418,261.936 "/>
|
||||
<polygon style="fill:#6DA544;" points="291.616,277.616 256,295.425 220.384,277.616 220.384,253.872 291.616,253.872 "/>
|
||||
<path style="fill:#FFDA44;" d="M289.579,216.485l-12.592,12.592c5.37,5.372,8.693,12.791,8.693,20.988 c0,16.392-13.289,29.68-29.68,29.68c-16.392,0-29.68-13.289-29.68-29.68c0-8.195,3.322-15.616,8.693-20.988l-12.592-12.592 c-8.594,8.594-13.91,20.466-13.91,33.579c0,26.228,21.261,47.489,47.489,47.489s47.489-21.261,47.489-47.489 C303.489,236.95,298.173,225.077,289.579,216.485z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.333" style="fill:#F0F0F0;" width="512" height="341.337"/>
|
||||
<polygon style="fill:#D80027;" points="288,85.33 224,85.33 224,223.996 0,223.996 0,287.996 224,287.996 224,426.662 288,426.662 288,287.996 512,287.996 512,223.996 288,223.996 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 497 B |
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#6DA544;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#D80027;" width="512" height="113.775"/>
|
||||
<polygon style="fill:#0052B4;" points="256,256.006 0,426.668 0,85.331 "/>
|
||||
<path style="fill:#DEDDE0;" d="M279.807,219.71v44.444c0,27.216,35.555,35.556,35.555,35.556s35.555-8.339,35.555-35.556V219.71 H279.807z"/>
|
||||
<rect x="306.477" y="256.156" style="fill:#786145;" width="17.778" height="25.778"/>
|
||||
<path style="fill:#6DA544;" d="M333.141,246.377c0-9.818-7.959-17.778-17.778-17.778s-17.778,7.959-17.778,17.778 c-4.91,0-8.889,3.979-8.889,8.889s3.979,8.889,8.889,8.889c2.915,0,32.64,0,35.555,0c4.91,0,8.889-3.979,8.889-8.889 S338.05,246.377,333.141,246.377z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1017 B |
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#338AF3;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#6DA544;" width="512" height="170.663"/>
|
||||
<path style="fill:#D80027;" d="M0,426.663c-0.004,0.027,512-170.669,512-170.669L0,85.337V426.663z"/>
|
||||
<path style="fill:#FFDA44;" d="M140.986,191.994c-29.718,0-53.895,24.176-53.895,53.895V266.1c0,29.718,24.178,53.895,53.895,53.895 s53.895-24.176,53.895-53.895v-20.211C194.881,216.172,170.703,191.994,140.986,191.994z M174.67,266.1 c0,15.054-9.927,27.831-23.579,32.134v-22.028l14.299-14.298l-14.29-14.29l-0.008-5.087v-6.745h-20.211v20.211l-14.288,14.288 l14.288,14.288v13.663c-13.651-4.303-23.579-17.08-23.579-32.134V245.89c0-18.573,15.111-33.684,33.684-33.684 s33.684,15.111,33.684,33.684v20.21H174.67z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 994 B |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#0052B4;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#F0F0F0;" width="512" height="113.775"/>
|
||||
</svg>
|
After Width: | Height: | Size: 435 B |
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#FFDA44;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#6DA544;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#D80027;" width="512" height="113.775"/>
|
||||
<circle style="fill:#0052B4;" cx="256" cy="256" r="81.619"/>
|
||||
<g>
|
||||
<polygon style="fill:#FFDA44;" points="255.982,192.796 270.717,238.142 318.474,238.142 279.824,266.17 294.673,311.651 255.982,283.491 217.352,311.599 232.142,266.17 193.526,238.142 241.248,238.142 "/>
|
||||
<polygon style="fill:#FFDA44;" points="314.748,267.286 268.005,252.098 296.893,212.339 284.888,203.615 255.999,243.376 227.112,203.616 215.106,212.338 243.992,252.1 197.252,267.286 201.837,281.401 248.579,266.213 248.579,315.361 263.421,315.361 263.421,266.213 310.161,281.401 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1022 B |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#0052B4;" width="512" height="341.337"/>
|
||||
<g>
|
||||
<polygon style="fill:#FFDA44;" points="256,159.994 261.107,175.709 277.63,175.709 264.262,185.422 269.368,201.137 256,191.425 242.632,201.137 247.738,185.422 234.37,175.709 250.893,175.709 "/>
|
||||
<polygon style="fill:#FFDA44;" points="188.118,188.112 202.841,195.613 214.525,183.93 211.939,200.25 226.662,207.752 210.342,210.337 207.757,226.658 200.255,211.935 183.936,214.519 195.62,202.835 "/>
|
||||
<polygon style="fill:#FFDA44;" points="160,255.994 175.715,250.888 175.716,234.365 185.427,247.733 201.143,242.627 191.43,255.994 201.143,269.362 185.427,264.257 175.716,277.624 175.716,261.101 "/>
|
||||
<polygon style="fill:#FFDA44;" points="188.118,323.877 195.618,309.153 183.936,297.47 200.257,300.055 207.757,285.332 210.342,301.653 226.662,304.237 211.94,311.739 214.525,328.058 202.841,316.375 "/>
|
||||
<polygon style="fill:#FFDA44;" points="256,351.994 250.893,336.279 234.37,336.279 247.739,326.567 242.632,310.852 256,320.564 269.368,310.852 264.262,326.567 277.63,336.279 261.106,336.279 "/>
|
||||
<polygon style="fill:#FFDA44;" points="323.882,323.877 309.159,316.376 297.475,328.06 300.061,311.738 285.338,304.237 301.657,301.653 304.243,285.332 311.745,300.055 328.064,297.47 316.38,309.154 "/>
|
||||
<polygon style="fill:#FFDA44;" points="352,255.994 336.285,261.101 336.285,277.624 326.573,264.255 310.857,269.362 320.57,255.994 310.857,242.627 326.573,247.732 336.284,234.365 336.285,250.889 "/>
|
||||
<polygon style="fill:#FFDA44;" points="323.882,188.112 316.381,202.835 328.065,214.519 311.743,211.933 304.243,226.657 301.657,210.337 285.338,207.752 300.061,200.25 297.475,183.93 309.159,195.614 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.333" style="fill:#0052B4;" width="512" height="341.337"/>
|
||||
<polygon style="fill:#FFDA44;" points="413.681,293.097 413.681,300.518 354.318,300.518 354.318,293.097 332.058,293.097 332.058,322.779 346.899,322.779 346.899,330.198 421.101,330.198 421.101,322.779 435.942,322.779 435.942,293.097 "/>
|
||||
<path style="fill:#338AF3;" d="M332.058,181.793v81.623c0,39.759,51.942,51.942,51.942,51.942s51.942-12.182,51.942-51.942v-81.623 L332.058,181.793L332.058,181.793z"/>
|
||||
<g>
|
||||
<path style="fill:#F3F3F3;" d="M383.997,242.675c-12.985,0-12.985,11.873-25.97,11.873s-12.985-11.873-25.97-11.873v20.777 c12.985,0,12.985,11.873,25.97,11.873s12.985-11.873,25.97-11.873c12.986,0,12.986,11.873,25.973,11.873 c12.986,0,12.986-11.873,25.973-11.873v-20.777c-12.986,0-12.986,11.873-25.973,11.873 C396.984,254.548,396.984,242.675,383.997,242.675z"/>
|
||||
<path style="fill:#F3F3F3;" d="M383.997,201.085c-12.985,0-12.985,11.873-25.97,11.873s-12.985-11.873-25.97-11.873v20.777 c12.985,0,12.985,11.873,25.97,11.873s12.985-11.873,25.97-11.873c12.986,0,12.986,11.873,25.973,11.873 c12.986,0,12.986-11.873,25.973-11.873v-20.777c-12.986,0-12.986,11.873-25.973,11.873 C396.984,212.958,396.984,201.085,383.997,201.085z"/>
|
||||
</g>
|
||||
<polygon style="fill:#F0F0F0;" points="256,85.333 256,115.886 210.833,140.985 256,140.985 256,200.344 196.897,200.344 256,233.179 256,255.996 229.32,255.996 155.826,215.169 155.826,255.996 100.174,255.996 100.174,207.423 12.744,255.996 0,255.996 0,225.442 45.167,200.344 0,200.344 0,140.985 59.103,140.985 0,108.139 0,85.333 26.68,85.333 100.174,126.16 100.174,85.333 155.826,85.333 155.826,133.906 243.256,85.333 "/>
|
||||
<polygon style="fill:#D80027;" points="144,85.33 112,85.33 112,154.662 0,154.662 0,186.662 112,186.662 112,255.996 144,255.996 144,186.662 256,186.662 256,154.662 144,154.662 "/>
|
||||
<polygon style="fill:#0052B4;" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>
|
||||
<polygon style="fill:#D80027;" points="71.846,200.344 0,240.259 0,255.996 0,255.996 100.174,200.344 "/>
|
||||
</g>
|
||||
<polygon style="fill:#0052B4;" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>
|
||||
<polygon style="fill:#F0F0F0;" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>
|
||||
<polygon style="fill:#D80027;" points="184.154,140.982 256,101.067 256,85.33 256,85.33 155.826,140.982 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.334" style="fill:#F0F0F0;" width="512" height="341.337"/>
|
||||
<polygon style="fill:#0052B4;" points="512,295.883 202.195,295.883 202.195,426.666 183.652,426.666 140.978,426.666 122.435,426.666 122.435,295.883 0,295.883 0,277.329 0,234.666 0,216.111 122.435,216.111 122.435,85.329 140.978,85.329 183.652,85.329 202.195,85.329 202.195,216.111 512,216.111 512,234.666 512,277.329 "/>
|
||||
<polygon style="fill:#D80027;" points="512,234.666 512,277.329 183.652,277.329 183.652,426.666 140.978,426.666 140.978,277.329 0,277.329 0,234.666 140.978,234.666 140.978,85.329 183.652,85.329 183.652,234.666 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 854 B |
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.334" style="fill:#2E52B2;" width="512" height="341.337"/>
|
||||
<polygon style="fill:#F0F0F0;" points="256,85.334 256,107.951 209.931,138.66 256,138.66 256,202.66 209.931,202.66 256,233.38 256,255.997 233.372,255.997 160,207.078 160,255.997 96,255.997 96,207.078 22.628,255.997 0,255.997 0,233.38 46.069,202.66 0,202.66 0,138.66 46.069,138.66 0,107.951 0,85.334 22.628,85.334 96,134.241 96,85.334 160,85.334 160,134.241 233.372,85.334 "/>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="144,85.329 112,85.329 112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 "/>
|
||||
<polygon style="fill:#D80027;" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>
|
||||
<polygon style="fill:#D80027;" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>
|
||||
<polygon style="fill:#D80027;" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>
|
||||
<polygon style="fill:#D80027;" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>
|
||||
<polygon style="fill:#D80027;" points="0,255.997 0,240.915 57.377,202.663 80,202.663 "/>
|
||||
<polygon style="fill:#D80027;" points="256,255.997 256,240.915 198.623,202.663 176,202.663 "/>
|
||||
</g>
|
||||
<path style="fill:#F3F3F3;" d="M332.058,207.765v59.362c0,39.76,51.942,51.942,51.942,51.942s51.942-12.182,51.942-51.942v-59.362 L384,192.924L332.058,207.765z"/>
|
||||
<path style="fill:#D80027;" d="M435.942,211.475v-22.261H332.059v22.261h44.521v44.523h-44.521v14.839v0.001h44.521v49.664 c4.479,1.586,7.421,2.277,7.421,2.277s2.942-0.691,7.42-2.276v-49.665h44.523v-0.001v-14.839H391.42v-44.523H435.942z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.334" style="fill:#F0F0F0;" width="512" height="341.337"/>
|
||||
<polygon style="fill:#2E52B2;" points="512,234.666 512,277.329 183.652,277.329 183.652,426.666 140.978,426.666 140.978,277.329 0,277.329 0,234.666 140.978,234.666 140.978,85.329 183.652,85.329 183.652,234.666 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 531 B |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#F0F0F0;" width="512" height="341.337"/>
|
||||
<rect y="85.331" style="fill:#0052B4;" width="170.663" height="341.337"/>
|
||||
<rect x="341.337" y="85.331" style="fill:#D80027;" width="170.663" height="341.337"/>
|
||||
</svg>
|
After Width: | Height: | Size: 476 B |
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<g>
|
||||
<rect y="85.337" style="fill:#D80027;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#D80027;" width="512" height="113.775"/>
|
||||
</g>
|
||||
<path style="fill:#FFDA44;" d="M293.991,256c0,20.982-17.01,33.243-37.992,33.243S218.008,276.982,218.008,256 s17.01-37.992,37.992-37.992S293.991,235.018,293.991,256z"/>
|
||||
<path style="fill:#0052B4;" d="M293.991,256c0,20.982-17.01,37.992-37.992,37.992s-37.992-17.01-37.992-37.992"/>
|
||||
<g>
|
||||
<rect x="232.259" y="246.506" style="fill:#D80027;" width="9.498" height="19"/>
|
||||
<rect x="270.247" y="246.506" style="fill:#D80027;" width="9.498" height="19"/>
|
||||
<rect x="251.247" y="232.259" style="fill:#D80027;" width="9.498" height="33.243"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1004 B |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#FFDA44;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#6DA544;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#0052B4;" width="512" height="113.775"/>
|
||||
</svg>
|
After Width: | Height: | Size: 457 B |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#6DA544;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#0052B4;" width="512" height="113.775"/>
|
||||
</svg>
|
After Width: | Height: | Size: 457 B |
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#F0F0F0;" width="512" height="341.326"/>
|
||||
<rect y="322.783" style="fill:#496E2D;" width="512" height="103.88"/>
|
||||
<rect y="85.337" style="fill:#A2001D;" width="512" height="104.515"/>
|
||||
<rect y="210.877" style="fill:#0052B4;" width="512" height="89.656"/>
|
||||
</svg>
|
After Width: | Height: | Size: 526 B |
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.333" style="fill:#F0F0F0;" width="512" height="341.337"/>
|
||||
<g>
|
||||
<polygon style="fill:#D80027;" points="288,85.33 224,85.33 224,223.996 0,223.996 0,287.996 224,287.996 224,426.662 288,426.662 288,287.996 512,287.996 512,223.996 288,223.996 "/>
|
||||
<polygon style="fill:#D80027;" points="123.13,143.534 123.13,121.273 100.87,121.273 100.87,143.534 78.609,143.534 78.609,165.795 100.87,165.795 100.87,188.056 123.13,188.056 123.13,165.795 145.391,165.795 145.391,143.534 "/>
|
||||
<polygon style="fill:#D80027;" points="411.13,143.534 411.13,121.273 388.87,121.273 388.87,143.534 366.609,143.534 366.609,165.795 388.87,165.795 388.87,188.056 411.13,188.056 411.13,165.795 433.391,165.795 433.391,143.534 "/>
|
||||
<polygon style="fill:#D80027;" points="123.13,346.197 123.13,323.936 100.87,323.936 100.87,346.197 78.609,346.197 78.609,368.458 100.87,368.458 100.87,390.719 123.13,390.719 123.13,368.458 145.391,368.458 145.391,346.197 "/>
|
||||
<polygon style="fill:#D80027;" points="411.13,346.197 411.13,323.936 388.87,323.936 388.87,346.197 366.609,346.197 366.609,368.458 388.87,368.458 388.87,390.719 411.13,390.719 411.13,368.458 433.391,368.458 433.391,346.197 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#D80027;" width="512" height="341.337"/>
|
||||
<rect y="85.331" width="512" height="113.775"/>
|
||||
<rect y="312.882" style="fill:#FFDA44;" width="512" height="113.775"/>
|
||||
</svg>
|
After Width: | Height: | Size: 435 B |
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#FFDA44;" width="512" height="341.326"/>
|
||||
<rect y="85.337" style="fill:#D80027;" width="512" height="113.775"/>
|
||||
<rect y="312.888" style="fill:#496E2D;" width="512" height="113.775"/>
|
||||
<polygon points="255.883,199.111 270.002,242.569 310.368,245.769 273.399,272.63 292.852,312.889 255.883,286.03 218.913,312.889 233.036,269.43 196.067,242.569 241.763,242.569 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 637 B |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#F0F0F0;" width="512" height="341.337"/>
|
||||
<g>
|
||||
<rect y="312.882" style="fill:#D80027;" width="512" height="113.775"/>
|
||||
<polygon style="fill:#D80027;" points="322.783,226.313 322.783,204.052 330.203,204.052 330.203,189.212 315.362,189.212 315.362,196.631 300.522,196.631 300.522,189.212 285.682,189.212 285.682,204.052 293.101,204.052 293.101,226.313 278.261,226.313 278.261,174.373 285.682,174.373 285.682,159.531 270.84,159.531 270.84,166.951 263.421,166.951 263.421,159.531 248.579,159.531 248.579,166.951 241.16,166.951 241.16,159.531 226.318,159.531 226.318,174.373 233.739,174.373 233.739,226.313 218.899,226.313 218.899,204.052 226.318,204.052 226.318,189.212 211.478,189.212 211.478,196.631 196.638,196.631 196.638,189.212 181.797,189.212 181.797,204.052 189.217,204.052 189.217,226.313 174.377,226.313 174.377,285.675 337.623,285.675 337.623,226.313 "/>
|
||||
</g>
|
||||
<path style="fill:#FFDA44;" d="M256,278.255c-12.295,0-22.261,9.966-22.261,22.261c0,9.691,6.195,17.933,14.84,20.989v30.953 h-22.261v29.682h37.101v-60.634c8.646-3.055,14.841-11.297,14.841-20.989C278.261,288.221,268.295,278.255,256,278.255z M256,307.936c-4.098,0-7.421-3.322-7.421-7.421s3.321-7.421,7.421-7.421c4.098,0,7.421,3.321,7.421,7.421 C263.421,304.613,260.098,307.936,256,307.936z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 362.023 362.023" style="enable-background:new 0 0 362.023 362.023;" xml:space="preserve">
|
||||
<rect y="60.338" style="fill:#F0F0F0;" width="362.023" height="241.346"/>
|
||||
<g>
|
||||
<rect y="60.338" style="fill:#338AF3;" width="362.023" height="30.168"/>
|
||||
<rect y="120.679" style="fill:#338AF3;" width="362.023" height="30.168"/>
|
||||
<rect y="181.014" style="fill:#338AF3;" width="362.023" height="30.168"/>
|
||||
<rect y="241.35" style="fill:#338AF3;" width="362.023" height="30.168"/>
|
||||
<rect y="60.338" style="fill:#338AF3;" width="133.788" height="120.676"/>
|
||||
</g>
|
||||
<g>
|
||||
<rect y="107.27" style="fill:#F0F0F0;" width="133.788" height="26.814"/>
|
||||
<rect x="53.487" y="60.338" style="fill:#F0F0F0;" width="26.814" height="120.676"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 886 B |
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.34" style="fill:#D80027;" width="512" height="341.326"/>
|
||||
<g>
|
||||
<polygon style="fill:#F0F0F0;" points="512,85.334 512,252.024 0,256.175 0,85.334 "/>
|
||||
<circle style="fill:#F0F0F0;" cx="204.054" cy="256.003" r="81.619"/>
|
||||
</g>
|
||||
<path style="fill:#D80027;" d="M122.435,256.003c0-45.078,36.545-81.623,81.623-81.623c45.079,0,81.623,36.545,81.623,81.623"/>
|
||||
</svg>
|
After Width: | Height: | Size: 606 B |
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.337" style="fill:#A2001D;" width="512" height="341.326"/>
|
||||
<polygon style="fill:#496E2D;" points="256,256 44.522,382.141 44.522,129.859 "/>
|
||||
<g>
|
||||
<polygon style="fill:#FFDA44;" points="256,256 467.478,382.141 44.522,382.141 "/>
|
||||
<polygon style="fill:#FFDA44;" points="467.478,129.859 256,256 44.522,129.859 "/>
|
||||
</g>
|
||||
<polygon style="fill:#496E2D;" points="467.478,129.859 467.478,382.141 256,256 "/>
|
||||
<g>
|
||||
<polygon style="fill:#FFDA44;" points="256,95.722 259.316,105.925 270.044,105.925 261.365,112.231 264.681,122.435 256,116.128 247.32,122.435 250.636,112.231 241.956,105.925 252.684,105.925 "/>
|
||||
<polygon style="fill:#FFDA44;" points="170.094,95.722 173.41,105.925 184.137,105.925 175.459,112.231 178.775,122.435 170.094,116.128 161.415,122.435 164.73,112.231 156.05,105.925 166.778,105.925 "/>
|
||||
<polygon style="fill:#FFDA44;" points="341.906,95.722 345.222,105.925 355.95,105.925 347.271,112.231 350.586,122.435 341.906,116.128 333.227,122.435 336.543,112.231 327.863,105.925 338.59,105.925 "/>
|
||||
<polygon style="fill:#FFDA44;" points="256,389.565 259.316,399.768 270.044,399.768 261.365,406.075 264.681,416.278 256,409.972 247.32,416.278 250.636,406.075 241.956,399.768 252.684,399.768 "/>
|
||||
<polygon style="fill:#FFDA44;" points="170.094,389.565 173.41,399.768 184.137,399.768 175.459,406.075 178.775,416.278 170.094,409.972 161.415,416.278 164.73,406.075 156.05,399.768 166.778,399.768 "/>
|
||||
<polygon style="fill:#FFDA44;" points="341.906,389.565 345.222,399.768 355.95,399.768 347.271,406.075 350.586,416.278 341.906,409.972 333.227,416.278 336.543,406.075 327.863,399.768 338.59,399.768 "/>
|
||||
</g>
|
||||
<circle style="fill:#A2001D;" cx="256" cy="256" r="37.988"/>
|
||||
<g>
|
||||
<polygon style="fill:#FFDA44;" points="256,218.008 264.516,244.218 292.077,244.218 269.781,260.42 278.296,286.631 256,270.432 233.702,286.631 242.219,260.42 219.923,244.218 247.483,244.218 "/>
|
||||
<path style="fill:#FFDA44;" d="M107.655,253.181c4.383,6.926,2.323,16.092-4.602,20.477s-16.092,2.324-20.477-4.602 c-7.937-12.54-3.335-33.016-3.335-33.016S99.716,240.642,107.655,253.181z"/>
|
||||
</g>
|
||||
<circle style="fill:#A2001D;" cx="99.083" cy="267.386" r="7.42"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#D80027;" width="512" height="341.337"/>
|
||||
<rect x="11.13" y="96.462" style="fill:#0052B4;" width="489.739" height="319.076"/>
|
||||
<path style="fill:#D80027;" d="M246.342,363.726c-2.333-1.999-57.125-49.632-57.125-107.731s54.792-105.732,57.125-107.731 l9.658-8.279l9.658,8.279c2.333,1.999,57.125,49.632,57.125,107.731s-54.792,105.732-57.125,107.731L256,372.005L246.342,363.726z"/>
|
||||
<path style="fill:#338AF3;" d="M307.942,255.994c0-51.942-51.942-96.464-51.942-96.464s-51.942,44.524-51.942,96.464 c0,15.89,4.865,31.083,11.613,44.522h80.658C303.077,287.077,307.942,271.884,307.942,255.994z"/>
|
||||
<path style="fill:#0052B4;" d="M307.942,255.994c0,15.89-4.865,31.083-11.613,44.522L256,307.937l-40.329-7.421 c-6.748-13.439-11.613-28.632-11.613-44.522H307.942z"/>
|
||||
<path style="fill:#FFDA44;" d="M256,352.459c0,0,25.019-21.452,40.329-51.942h-80.658C230.981,331.007,256,352.459,256,352.459z"/>
|
||||
<polygon style="fill:#6DA544;" points="222.609,226.313 289.391,226.313 256,259.704 "/>
|
||||
<rect x="244.87" y="248.57" style="fill:#A2001D;" width="22.261" height="66.783"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
|
||||
<rect y="85.331" style="fill:#F0F0F0;" width="512" height="341.337"/>
|
||||
<g>
|
||||
<rect y="85.331" style="fill:#338AF3;" width="170.663" height="341.337"/>
|
||||
<rect x="341.337" y="85.331" style="fill:#338AF3;" width="170.663" height="341.337"/>
|
||||
</g>
|
||||
<polygon style="fill:#ACABB1;" points="304.083,286.736 272.971,255.624 302.586,226.008 301.244,210.366 292.766,201.886 256,238.652 219.234,201.886 210.756,210.366 209.414,226.008 239.029,255.624 207.917,286.736 224.887,303.706 256,272.594 287.113,303.706 "/>
|
||||
<path style="fill:#6DA544;" d="M301.255,210.367l-16.971,16.971c7.238,7.239,11.716,17.239,11.716,28.285 c0,22.092-17.909,40.001-40.001,40.001s-40.001-17.909-40.001-40.001c0-11.045,4.478-21.045,11.716-28.285l-16.971-16.971 C199.162,221.949,192,237.949,192,255.623c0,35.346,28.654,64,64,64s64-28.654,64-64C320,237.949,312.836,221.949,301.255,210.367z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |