Fork updated, datepicker plugin, texthighlighter plugin, news plugin added

This commit is contained in:
Serg-Kv
2026-01-13 18:49:13 +05:00
parent ce1fb8b075
commit 968cbc506c
141 changed files with 8995 additions and 1 deletions

View File

@ -0,0 +1,5 @@
# Change Log
## 1.0.0
- Initial release.

View File

@ -0,0 +1,22 @@
Overview
Inserting formatted dates into spreadsheet cells with a calendar interface.
Installation
Install the Insert QR Plugin from the plugin marketplace.
Usage
Activate the DatePicker:
Go to the plugin tab.
Activate the DatePicker plugin in the "Plugins" section
Select Cells:
Select the cells area where you would like to print the formatted date.
Select the date:
Click the "Select the date" option to select desired date from the calendar.
Select the format:
Click the "Select format" option to format the previously selected date.
Print the date:
Print the formatted date across the selected cell area.

View File

@ -0,0 +1,112 @@
{
"name": "Date picker",
"nameLocale": {
"cs": "Výběr data",
"de": "Datumsauswahl",
"es": "Selector de fecha",
"fr": "Sélecteur de date",
"it": "Selettore data",
"ja": "日付ピッカー",
"pt": "Seletor de data",
"ru": "Выбор даты",
"sq": "Zgjedhësi i datës",
"sr": "Избор датума",
"sp": "Izbor datuma",
"zh": "日期选择器"
},
"guid": "asc.{409e5493-56ae-45e1-8423-c73c84a06c50}",
"version": "1.0.0",
"description": "A plugin to insert formatted dates into cells.",
"descriptionLocale": {
"cs": "Plugin pro vkládání formátovaných dat do buněk.",
"de": "Ein Plugin zum Einfügen formatierter Daten in Zellen.",
"es": "Un complemento para insertar fechas formateadas en celdas.",
"fr": "Un plugin pour insérer des dates formatées dans les cellules.",
"it": "Un plugin per inserire date formattate nelle celle.",
"ja": "セルにフォーマットされた日付を挿入するプラグイン。",
"pt": "Um plugin para inserir datas formatadas em células.",
"ru": "Плагин для вставки отформатированных дат в ячейки.",
"sq": "Një shtojcë për të futur data të formatuara në qeliza.",
"sr": "Додатак за убацивање форматираних датума у ћелије.",
"sp": "Dodatak za ubacivanje formatiranih datuma u ćelije.",
"zh": "用于在单元格中插入格式化日期的插件。"
},
"type": "panel",
"icons": ["resources/light/icon.png", "resources/light/icon@2x.png"],
"variations": [
{
"description": "Insert formatted dates into spreadsheet cells with a calendar interface.",
"descriptionLocale": {
"cs": "Vkládejte formátovaná data do buněk tabulky pomocí kalendářního rozhraní.",
"de": "Fügen Sie formatierte Daten mit einer Kalender-Oberfläche in Tabellenzellen ein.",
"es": "Inserte fechas formateadas en celdas de hojas de cálculo con una interfaz de calendario.",
"fr": "Insérez des dates formatées dans les cellules de feuille de calcul avec une interface de calendrier.",
"it": "Inserisci date formattate nelle celle del foglio di calcolo con un'interfaccia calendario.",
"ja": "カレンダーインターフェースを使用して、スプレッドシートのセルにフォーマットされた日付を挿入します。",
"pt-BR": "Insira datas formatadas em células de planilha com uma interface de calendário.",
"ru": "Вставляйте отформатированные даты в ячейки электронной таблицы с помощью календарного интерфейса.",
"sq": "Futni data të formatuara në qelizat e fletës së llogaritjes me një ndërfaqe kalendari.",
"sr": "Убацујте форматиране датуме у ћелије табеле помоћу календарског интерфејса.",
"sp": "Ubacujte formatirane datume u ćelije tabele pomoću kalendarskog interfejsa.",
"zh": "使用日历界面将格式化日期插入电子表格单元格。"
},
"url": "index.html",
"icons": ["resources/light/icon.png", "resources/light/icon@2x.png"],
"icons2": [
{
"style": "light",
"100%": {
"normal": "resources/light/icon.svg"
},
"125%": {
"normal": "resources/light/icon@1.25x.svg"
},
"150%": {
"normal": "resources/light/icon@1.5x.svg"
},
"175%": {
"normal": "resources/light/icon@1.75x.svg"
},
"200%": {
"normal": "resources/light/icon@2x.svg"
}
},
{
"style": "dark",
"100%": {
"normal": "resources/dark/icon-dark.svg"
},
"125%": {
"normal": "resources/dark/icon-dark@1.25x.svg"
},
"150%": {
"normal": "resources/dark/icon-dark@1.5x.svg"
},
"175%": {
"normal": "resources/dark/icon-dark@1.75x.svg"
},
"200%": {
"normal": "resources/dark/icon-dark@2x.svg"
}
}
],
"isViewer": false,
"EditorsSupport": ["cell"],
"isVisual": true,
"isModal": false,
"isInsideMode": true,
"initDataType": "none",
"initData": "",
"isUpdateOleOnResize": true,
"buttons": [],
"store": {
"screenshots": [
"resources/store/screenshot1.png",
"resources/store/screenshot2.png",
"resources/store/screenshot3.png",
"resources/store/screenshot4.png"
]
}
}
]
}

View File

@ -0,0 +1,545 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>OnlyOffice Date Picker</title>
<link
rel="stylesheet"
href="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins.css"
/>
<style>
.datepicker-wrapper {
position: relative;
}
.datepicker-icon {
position: absolute;
top: 50%;
right: 8px;
transform: translateY(-50%);
width: 16px;
height: 16px;
cursor: pointer;
opacity: 0.7;
transition: all 0.2s;
border-radius: 2px;
padding: 2px;
display: flex;
align-items: center;
justify-content: center;
}
.datepicker-icon[style] {
background-image: none !important;
}
.datepicker-icon:hover,
.datepicker-icon.active {
opacity: 1;
background-color: rgba(0, 0, 0, 0.05);
}
.datepicker-icon svg {
width: 100%;
height: 100%;
fill: currentColor;
}
.datepicker-icon::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url("./resources/button/calendar.png");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
opacity: 0;
transition: opacity 0.2s;
}
.datepicker-icon.dark-theme::before {
filter: brightness(0) invert(1) !important;
}
.datepicker-icon.light-theme::before {
filter: none !important;
}
.dark-theme.datepicker-icon::before {
filter: brightness(0) invert(1) !important;
}
.light-theme.datepicker-icon::before {
filter: none !important;
}
.datepicker-icon.has-bg-image::before {
opacity: 1;
}
.datepicker-icon.has-bg-image svg {
opacity: 0;
}
.form {
padding: 16px;
}
.form-group {
margin-bottom: 16px;
}
.form-group label {
display: block;
margin-bottom: 6px;
font-weight: 600;
font-size: 12px;
}
.form-control {
width: 100%;
padding: 4px 12px;
font-size: 12px;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 3px;
box-sizing: border-box;
padding-right: 36px;
transition: border-color 0.2s, box-shadow 0.2s;
background: inherit;
color: inherit;
}
.form-control-second {
padding-left: 9px !important;
padding-top: 2px !important;
}
.form-control:focus {
outline: none;
border-color: #2563eb;
box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}
.button {
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #374151;
border-radius: 3px;
padding: 10px 16px;
width: 100%;
font-weight: 600;
font-size: 12px;
cursor: pointer;
height: 36px;
transition: all 0.2s;
background: #374151;
color: #ffffff;
}
.button:hover {
background: #4b5563;
border-color: #4b5563;
}
.instruction-text {
font-size: 12px;
margin-bottom: 20px;
text-align: justify;
line-height: 1.4;
}
.custom-calendar {
position: absolute;
top: 100%;
left: 0;
right: 0;
z-index: 1000;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 4px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
margin-top: 2px;
display: none;
width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.custom-calendar.show {
display: block;
}
.calendar-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 16px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
height: 45px;
box-sizing: border-box;
background: rgba(0, 0, 0, 0.02);
}
.calendar-title {
font-weight: 600;
font-size: 14px;
cursor: pointer;
padding: 6px 12px;
border-radius: 4px;
transition: background-color 0.2s;
}
.calendar-title:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.calendar-nav-btn {
background: none;
border: none;
cursor: pointer;
padding: 6px 10px;
border-radius: 3px;
font-size: 16px;
font-weight: bold;
transition: background-color 0.2s;
min-width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
color: inherit;
}
.calendar-nav-btn:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.calendar-grid {
padding: 0 12px 12px 12px;
box-sizing: border-box;
}
.calendar-weekdays {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 4px;
margin-bottom: 8px;
}
.calendar-weekday {
text-align: center;
font-size: 12px;
font-weight: 600;
padding: 8px 0;
text-transform: uppercase;
letter-spacing: 0.5px;
opacity: 0.7;
}
.calendar-days {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 4px;
}
.calendar-day {
text-align: center;
padding: 0;
font-size: 13px;
cursor: pointer;
border-radius: 4px;
transition: all 0.2s;
border: 1px solid transparent;
min-height: 28px;
display: flex;
align-items: center;
justify-content: center;
}
.calendar-day:hover {
background-color: rgba(0, 0, 0, 0.05);
border-color: rgba(0, 0, 0, 0.1);
}
.calendar-day.other-month {
opacity: 0.4;
}
.calendar-day:nth-child(7n + 1),
.calendar-day:nth-child(7n) {
color: #dc3545 !important;
}
.calendar-day.today {
font-weight: bold;
border: 2px solid #0d6efd;
background-color: rgba(13, 110, 253, 0.1);
}
.calendar-day.selected {
background-color: #0d6efd;
color: #ffffff;
font-weight: 600;
}
.calendar-months,
.calendar-years {
display: grid;
gap: 8px;
padding: 12px;
}
.calendar-months {
grid-template-columns: repeat(3, 1fr);
}
.calendar-years {
grid-template-columns: repeat(3, 1fr);
}
.calendar-month,
.calendar-year {
padding: 8px 6px;
text-align: center;
cursor: pointer;
border-radius: 4px;
transition: all 0.2s;
font-size: 13px;
display: flex;
align-items: center;
justify-content: center;
min-height: 32px;
border: 1px solid rgba(0, 0, 0, 0.1);
}
.calendar-month:hover,
.calendar-year:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.calendar-month.active,
.calendar-year.active {
background-color: #0d6efd;
color: #ffffff;
font-weight: 600;
}
.loading-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: none;
flex-direction: column;
z-index: 9999;
padding: 16px;
justify-content: flex-start;
align-items: flex-start;
}
.loading-content {
display: flex;
flex-direction: row;
align-items: start;
justify-content: start;
margin-top: 24px;
}
.loading-spinner {
width: 16px;
height: 16px;
margin-right: 12px;
border: 2px solid rgba(0, 0, 0, 0.1);
border-top: 2px solid #2563eb;
border-radius: 50%;
animation: spin 1s linear infinite;
flex-shrink: 0;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.loading-text {
font-size: 12px;
}
.main-content {
position: relative;
min-height: 320px;
}
.main-content.loading > *:not(.loading-overlay) {
display: none !important;
}
.main-content.loading .loading-overlay {
display: flex !important;
}
.theme-type-dark .calendar-day.today,
.theme-dark .calendar-day.today {
border-color: #4d8eff;
background-color: rgba(77, 142, 255, 0.15);
}
.theme-type-dark .calendar-day.selected,
.theme-dark .calendar-day.selected,
.theme-type-dark .calendar-month.active,
.theme-dark .calendar-month.active,
.theme-type-dark .calendar-year.active,
.theme-dark .calendar-year.active {
background-color: #9ca3af;
color: #ffffff;
}
.theme-type-contrast-dark .calendar-day.today,
.theme-contrast-dark .calendar-day.today {
border-color: #ffcc00;
background-color: rgba(255, 204, 0, 0.15);
}
.theme-type-contrast-dark .calendar-day.selected,
.theme-contrast-dark .calendar-day.selected,
.theme-type-contrast-dark .calendar-month.active,
.theme-contrast-dark .calendar-month.active,
.theme-type-contrast-dark .calendar-year.active,
.theme-contrast-dark .calendar-year.active {
background-color: #9ca3af;
color: #ffffff;
}
.theme-type-classic-light .calendar-day.today,
.theme-classic-light .calendar-day.today {
border-color: #0066cc;
background-color: rgba(0, 102, 204, 0.1);
}
.theme-type-classic-light .calendar-day.selected,
.theme-classic-light .calendar-day.selected,
.theme-type-classic-light .calendar-month.active,
.theme-classic-light .calendar-month.active,
.theme-type-classic-light .calendar-year.active,
.theme-classic-light .calendar-year.active {
background-color: #d1d5db;
color: #000000;
}
</style>
</head>
<body>
<div class="main-content" id="mainContent">
<div class="loading-overlay" id="loadingOverlay">
<div
id="pleaseDoNotClose"
style="font-size: 12px; font-weight: bold; margin-bottom: 8px"
>
Please <strong>do not close</strong> the plugin panel.
</div>
<div class="loading-content">
<div class="loading-spinner"></div>
<div class="loading-text" id="loadingText">Loading...</div>
</div>
</div>
<div class="form" id="mainForm">
<div class="instruction-text" id="instructionText">
Select the <strong>date and format</strong>, then click the
<strong>Insert date</strong> button. The date will be displayed in the
selected cell.
</div>
<div class="form-group">
<label for="dateInput" id="selectDateLabel">Select date</label>
<div class="datepicker-wrapper">
<input
type="text"
id="dateInput"
class="form-control"
placeholder="Select a date"
autocomplete="off"
readonly
/>
<span id="calendarIcon" class="datepicker-icon">
<svg viewBox="0 0 24 24">
<path
d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"
/>
</svg>
</span>
<div class="custom-calendar" id="customCalendar">
<div class="calendar-header">
<button class="calendar-nav-btn" id="prevBtn"></button>
<div class="calendar-title" id="monthYearTitle">June 2025</div>
<button class="calendar-nav-btn" id="nextBtn"></button>
</div>
<div class="calendar-grid">
<div class="calendar-weekdays" id="calendarWeekdays">
<div class="calendar-weekday" data-day="0">Su</div>
<div class="calendar-weekday" data-day="1">Mo</div>
<div class="calendar-weekday" data-day="2">Tu</div>
<div class="calendar-weekday" data-day="3">We</div>
<div class="calendar-weekday" data-day="4">Th</div>
<div class="calendar-weekday" data-day="5">Fr</div>
<div class="calendar-weekday" data-day="6">Sa</div>
</div>
<div class="calendar-days" id="calendarDays"></div>
<div
class="calendar-months"
id="monthView"
style="display: none"
>
<div class="calendar-month" data-month="0">Jan</div>
<div class="calendar-month" data-month="1">Feb</div>
<div class="calendar-month" data-month="2">Mar</div>
<div class="calendar-month" data-month="3">Apr</div>
<div class="calendar-month" data-month="4">May</div>
<div class="calendar-month" data-month="5">Jun</div>
<div class="calendar-month" data-month="6">Jul</div>
<div class="calendar-month" data-month="7">Aug</div>
<div class="calendar-month" data-month="8">Sep</div>
<div class="calendar-month" data-month="9">Oct</div>
<div class="calendar-month" data-month="10">Nov</div>
<div class="calendar-month" data-month="11">Dec</div>
</div>
<div
class="calendar-years"
id="yearView"
style="display: none"
></div>
</div>
</div>
</div>
</div>
<div class="form-group">
<label for="dateFormat" id="selectDateFormatLabel"
>Select date format</label
>
<select id="dateFormat" class="form-control form-control-second">
<option value="MM/DD/YYYY">05/06/2025</option>
<option value="dddd, MMMM D, YYYY">Monday, May 26, 2025</option>
<option value="MMMM D, YYYY">May 26, 2025</option>
<option value="M/D/YY">5/26/25</option>
<option value="YYYY-MM-DD">2025-05-26</option>
<option value="D-MMM-YY">26-May-25</option>
<option value="M.D.YYYY">5.26.2025</option>
</select>
</div>
<button id="insertDate" class="button">Insert date</button>
</div>
</div>
<script src="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins.js"></script>
<script src="scripts/code.js"></script>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 438 B

View File

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="4" width="18" height="18" rx="2" ry="2"/>
<line x1="16" y1="2" x2="16" y2="6"/>
<line x1="8" y1="2" x2="8" y2="6"/>
<line x1="3" y1="10" x2="21" y2="10"/>
<rect x="7" y="14" width="2" height="2"/>
<rect x="11" y="14" width="2" height="2"/>
<rect x="15" y="14" width="2" height="2"/>
</svg>

After

Width:  |  Height:  |  Size: 500 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 782 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -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" width="75px" height="75px" viewBox="0 0 75 75" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(3.529412%,4.705882%,4.313726%);fill-opacity:1;" d="M 16.628906 6.183594 C 16.171875 7.929688 14.707031 8.722656 11.433594 8.996094 L 6.875 9.375 L 6.875 70.625 L 68.125 70.625 L 68.488281 60.3125 C 68.71875 53.769531 68.375 50 67.550781 50 C 66.835938 50 65.828125 49.988281 65.3125 49.980469 C 64.796875 49.96875 64.09375 53.484375 63.75 57.792969 L 63.125 65.625 L 11.875 65.625 L 11.53125 44.6875 L 11.191406 23.75 L 63.75 23.75 L 63.75 28.214844 C 63.75 31.796875 64.183594 32.601562 65.9375 32.261719 C 67.828125 31.898438 68.125 30.3125 68.125 20.609375 L 68.125 9.375 L 63.566406 8.996094 C 60.292969 8.722656 58.828125 7.929688 58.371094 6.183594 C 57.542969 3.015625 54.949219 3.054688 54.113281 6.25 C 53.5 8.585938 52.40625 8.75 37.5 8.75 C 22.59375 8.75 21.5 8.585938 20.886719 6.25 C 20.050781 3.054688 17.457031 3.015625 16.628906 6.183594 M 13.75 16.25 C 13.75 16.9375 14.628906 17.5 15.699219 17.5 C 16.769531 17.5 17.300781 16.9375 16.875 16.25 C 16.449219 15.5625 15.574219 15 14.925781 15 C 14.277344 15 13.75 15.5625 13.75 16.25 M 20.625 16.25 C 20.125 17.0625 26.054688 17.5 37.5 17.5 C 48.945312 17.5 54.875 17.0625 54.375 16.25 C 53.347656 14.589844 21.652344 14.589844 20.625 16.25 M 58.125 16.25 C 57.699219 16.9375 58.511719 17.5 59.925781 17.5 C 61.339844 17.5 62.5 16.9375 62.5 16.25 C 62.5 15.5625 61.691406 15 60.699219 15 C 59.707031 15 58.550781 15.5625 58.125 16.25 M 16.5625 30.3125 C 16.847656 31.171875 17.832031 31.875 18.75 31.875 C 19.667969 31.875 20.652344 31.171875 20.9375 30.3125 C 21.246094 29.382812 20.359375 28.75 18.75 28.75 C 17.140625 28.75 16.253906 29.382812 16.5625 30.3125 M 26.25 30.625 C 26.25 31.65625 27.09375 32.5 28.125 32.5 C 29.15625 32.5 30 31.65625 30 30.625 C 30 29.59375 29.15625 28.75 28.125 28.75 C 27.09375 28.75 26.25 29.59375 26.25 30.625 M 35.3125 30.3125 C 35.597656 31.171875 36.582031 31.875 37.5 31.875 C 38.417969 31.875 39.402344 31.171875 39.6875 30.3125 C 39.996094 29.382812 39.109375 28.75 37.5 28.75 C 35.890625 28.75 35.003906 29.382812 35.3125 30.3125 M 45 30.625 C 45 31.65625 45.84375 32.5 46.875 32.5 C 47.90625 32.5 48.75 31.65625 48.75 30.625 C 48.75 29.59375 47.90625 28.75 46.875 28.75 C 45.84375 28.75 45 29.59375 45 30.625 M 54.0625 30.3125 C 54.347656 31.171875 55.332031 31.875 56.25 31.875 C 57.167969 31.875 58.152344 31.171875 58.4375 30.3125 C 58.746094 29.382812 57.859375 28.75 56.25 28.75 C 54.640625 28.75 53.753906 29.382812 54.0625 30.3125 M 64.339844 36.304688 C 63.210938 38.136719 64.855469 39.976562 66.914062 39.1875 C 67.921875 38.800781 68.75 38.039062 68.75 37.5 C 68.75 35.953125 65.160156 34.976562 64.339844 36.304688 M 16.808594 38.859375 C 15.519531 40.945312 18.417969 43.332031 20.140625 41.609375 C 21.582031 40.167969 20.679688 37.5 18.75 37.5 C 18.144531 37.5 17.269531 38.109375 16.808594 38.859375 M 26.472656 39.441406 C 27.035156 42.15625 29.253906 42.324219 29.761719 39.6875 C 30.023438 38.320312 29.414062 37.5 28.125 37.5 C 26.921875 37.5 26.234375 38.308594 26.472656 39.441406 M 35.558594 38.859375 C 34.269531 40.945312 37.167969 43.332031 38.890625 41.609375 C 40.332031 40.167969 39.429688 37.5 37.5 37.5 C 36.894531 37.5 36.019531 38.109375 35.558594 38.859375 M 45.222656 39.441406 C 45.785156 42.15625 48.003906 42.324219 48.511719 39.6875 C 48.773438 38.320312 48.164062 37.5 46.875 37.5 C 45.671875 37.5 44.984375 38.308594 45.222656 39.441406 M 54.308594 38.859375 C 53.019531 40.945312 55.917969 43.332031 57.640625 41.609375 C 59.082031 40.167969 58.179688 37.5 56.25 37.5 C 55.644531 37.5 54.769531 38.109375 54.308594 38.859375 M 63.75 44.285156 C 63.75 45.441406 64.820312 46.25 66.355469 46.25 C 69.398438 46.25 68.96875 43.328125 65.832031 42.722656 C 64.601562 42.480469 63.75 43.117188 63.75 44.285156 M 16.5625 49.0625 C 16.847656 49.921875 17.832031 50.625 18.75 50.625 C 19.667969 50.625 20.652344 49.921875 20.9375 49.0625 C 21.246094 48.132812 20.359375 47.5 18.75 47.5 C 17.140625 47.5 16.253906 48.132812 16.5625 49.0625 M 26.496094 54.0625 L 26.875 60.625 L 39.375 60.625 L 40.132812 47.5 L 26.117188 47.5 L 26.496094 54.0625 M 45.246094 54.0625 L 45.625 60.625 L 58.125 60.625 L 58.882812 47.5 L 44.867188 47.5 L 45.246094 54.0625 M 30 53.75 C 30 55.417969 30.832031 56.25 32.5 56.25 C 34.167969 56.25 35 55.417969 35 53.75 C 35 52.082031 34.167969 51.25 32.5 51.25 C 30.832031 51.25 30 52.082031 30 53.75 M 48.75 53.75 C 48.75 55.417969 49.582031 56.25 51.25 56.25 C 52.917969 56.25 53.75 55.417969 53.75 53.75 C 53.75 52.082031 52.917969 51.25 51.25 51.25 C 49.582031 51.25 48.75 52.082031 48.75 53.75 M 16.808594 57.609375 C 15.519531 59.695312 18.417969 62.082031 20.140625 60.359375 C 21.582031 58.917969 20.679688 56.25 18.75 56.25 C 18.144531 56.25 17.269531 56.859375 16.808594 57.609375 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(45.09804%,67.450982%,54.509807%);fill-opacity:1;" d="M 13.75 16.25 C 13.75 16.9375 14.628906 17.5 15.699219 17.5 C 16.769531 17.5 17.300781 16.9375 16.875 16.25 C 16.449219 15.5625 15.574219 15 14.925781 15 C 14.277344 15 13.75 15.5625 13.75 16.25 M 20.625 16.25 C 20.125 17.0625 26.054688 17.5 37.5 17.5 C 48.945312 17.5 54.875 17.0625 54.375 16.25 C 53.347656 14.589844 21.652344 14.589844 20.625 16.25 M 58.125 16.25 C 57.699219 16.9375 58.511719 17.5 59.925781 17.5 C 61.339844 17.5 62.5 16.9375 62.5 16.25 C 62.5 15.5625 61.691406 15 60.699219 15 C 59.707031 15 58.550781 15.5625 58.125 16.25 M 11.53125 44.6875 L 11.875 65.625 L 63.125 65.625 L 63.75 57.5 C 64.277344 50.640625 64.714844 49.433594 66.5625 49.742188 C 67.859375 49.960938 68.75 49.324219 68.75 48.179688 C 68.75 47.082031 67.671875 46.25 66.25 46.25 C 64.78125 46.25 63.75 45.417969 63.75 44.230469 C 63.75 42.824219 64.511719 42.40625 66.25 42.863281 C 68.117188 43.351562 68.75 42.898438 68.75 41.078125 C 68.75 39.449219 68.023438 38.761719 66.5625 39.007812 C 65.289062 39.222656 64.375 38.59375 64.375 37.5 C 64.375 36.40625 65.289062 35.777344 66.5625 35.992188 C 68.023438 36.238281 68.75 35.550781 68.75 33.921875 C 68.75 32.101562 68.117188 31.648438 66.25 32.136719 C 64.089844 32.703125 63.75 32.175781 63.75 28.269531 L 63.75 23.75 L 11.191406 23.75 L 11.53125 44.6875 M 16.5625 30.3125 C 16.847656 31.171875 17.832031 31.875 18.75 31.875 C 19.667969 31.875 20.652344 31.171875 20.9375 30.3125 C 21.246094 29.382812 20.359375 28.75 18.75 28.75 C 17.140625 28.75 16.253906 29.382812 16.5625 30.3125 M 26.25 30.625 C 26.25 31.65625 27.09375 32.5 28.125 32.5 C 29.15625 32.5 30 31.65625 30 30.625 C 30 29.59375 29.15625 28.75 28.125 28.75 C 27.09375 28.75 26.25 29.59375 26.25 30.625 M 35.3125 30.3125 C 35.597656 31.171875 36.582031 31.875 37.5 31.875 C 38.417969 31.875 39.402344 31.171875 39.6875 30.3125 C 39.996094 29.382812 39.109375 28.75 37.5 28.75 C 35.890625 28.75 35.003906 29.382812 35.3125 30.3125 M 45 30.625 C 45 31.65625 45.84375 32.5 46.875 32.5 C 47.90625 32.5 48.75 31.65625 48.75 30.625 C 48.75 29.59375 47.90625 28.75 46.875 28.75 C 45.84375 28.75 45 29.59375 45 30.625 M 54.0625 30.3125 C 54.347656 31.171875 55.332031 31.875 56.25 31.875 C 57.167969 31.875 58.152344 31.171875 58.4375 30.3125 C 58.746094 29.382812 57.859375 28.75 56.25 28.75 C 54.640625 28.75 53.753906 29.382812 54.0625 30.3125 M 16.808594 38.859375 C 15.519531 40.945312 18.417969 43.332031 20.140625 41.609375 C 21.582031 40.167969 20.679688 37.5 18.75 37.5 C 18.144531 37.5 17.269531 38.109375 16.808594 38.859375 M 26.472656 39.441406 C 27.035156 42.15625 29.253906 42.324219 29.761719 39.6875 C 30.023438 38.320312 29.414062 37.5 28.125 37.5 C 26.921875 37.5 26.234375 38.308594 26.472656 39.441406 M 35.558594 38.859375 C 34.269531 40.945312 37.167969 43.332031 38.890625 41.609375 C 40.332031 40.167969 39.429688 37.5 37.5 37.5 C 36.894531 37.5 36.019531 38.109375 35.558594 38.859375 M 45.222656 39.441406 C 45.785156 42.15625 48.003906 42.324219 48.511719 39.6875 C 48.773438 38.320312 48.164062 37.5 46.875 37.5 C 45.671875 37.5 44.984375 38.308594 45.222656 39.441406 M 54.308594 38.859375 C 53.019531 40.945312 55.917969 43.332031 57.640625 41.609375 C 59.082031 40.167969 58.179688 37.5 56.25 37.5 C 55.644531 37.5 54.769531 38.109375 54.308594 38.859375 M 16.5625 49.0625 C 16.847656 49.921875 17.832031 50.625 18.75 50.625 C 19.667969 50.625 20.652344 49.921875 20.9375 49.0625 C 21.246094 48.132812 20.359375 47.5 18.75 47.5 C 17.140625 47.5 16.253906 48.132812 16.5625 49.0625 M 26.496094 54.0625 L 26.875 60.625 L 39.375 60.625 L 40.132812 47.5 L 26.117188 47.5 L 26.496094 54.0625 M 45.246094 54.0625 L 45.625 60.625 L 58.125 60.625 L 58.882812 47.5 L 44.867188 47.5 L 45.246094 54.0625 M 30 53.75 C 30 55.417969 30.832031 56.25 32.5 56.25 C 34.167969 56.25 35 55.417969 35 53.75 C 35 52.082031 34.167969 51.25 32.5 51.25 C 30.832031 51.25 30 52.082031 30 53.75 M 48.75 53.75 C 48.75 55.417969 49.582031 56.25 51.25 56.25 C 52.917969 56.25 53.75 55.417969 53.75 53.75 C 53.75 52.082031 52.917969 51.25 51.25 51.25 C 49.582031 51.25 48.75 52.082031 48.75 53.75 M 16.808594 57.609375 C 15.519531 59.695312 18.417969 62.082031 20.140625 60.359375 C 21.582031 58.917969 20.679688 56.25 18.75 56.25 C 18.144531 56.25 17.269531 56.859375 16.808594 57.609375 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -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" width="90px" height="90px" viewBox="0 0 90 90" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(3.529412%,4.705882%,4.313726%);fill-opacity:1;" d="M 19.957031 7.417969 C 19.410156 9.515625 17.652344 10.464844 13.722656 10.792969 L 8.25 11.25 L 8.25 84.75 L 81.75 84.75 L 82.183594 72.375 C 82.460938 64.527344 82.050781 60 81.058594 60 C 80.203125 60 78.996094 59.988281 78.375 59.972656 C 77.753906 59.960938 76.914062 64.179688 76.5 69.347656 L 75.75 78.75 L 14.25 78.75 L 13.429688 28.5 L 76.5 28.5 L 76.5 33.859375 C 76.5 38.15625 77.019531 39.121094 79.125 38.714844 C 81.394531 38.277344 81.75 36.375 81.75 24.730469 L 81.75 11.25 L 76.277344 10.792969 C 72.347656 10.464844 70.589844 9.515625 70.042969 7.417969 C 69.050781 3.617188 65.9375 3.664062 64.933594 7.5 C 64.203125 10.300781 62.890625 10.5 45 10.5 C 27.109375 10.5 25.796875 10.300781 25.066406 7.5 C 24.0625 3.664062 20.949219 3.617188 19.957031 7.417969 M 16.5 19.5 C 16.5 20.324219 17.554688 21 18.839844 21 C 20.125 21 20.761719 20.324219 20.25 19.5 C 19.738281 18.675781 18.6875 18 17.910156 18 C 17.132812 18 16.5 18.675781 16.5 19.5 M 24.75 19.5 C 24.148438 20.472656 31.265625 21 45 21 C 58.734375 21 65.851562 20.472656 65.25 19.5 C 64.019531 17.507812 25.980469 17.507812 24.75 19.5 M 69.75 19.5 C 69.238281 20.324219 70.214844 21 71.910156 21 C 73.609375 21 75 20.324219 75 19.5 C 75 18.675781 74.027344 18 72.839844 18 C 71.648438 18 70.261719 18.675781 69.75 19.5 M 19.875 36.375 C 20.21875 37.40625 21.402344 38.25 22.5 38.25 C 23.597656 38.25 24.78125 37.40625 25.125 36.375 C 25.496094 35.257812 24.433594 34.5 22.5 34.5 C 20.566406 34.5 19.503906 35.257812 19.875 36.375 M 31.5 36.75 C 31.5 37.988281 32.511719 39 33.75 39 C 34.988281 39 36 37.988281 36 36.75 C 36 35.511719 34.988281 34.5 33.75 34.5 C 32.511719 34.5 31.5 35.511719 31.5 36.75 M 42.375 36.375 C 42.71875 37.40625 43.902344 38.25 45 38.25 C 46.097656 38.25 47.28125 37.40625 47.625 36.375 C 47.996094 35.257812 46.933594 34.5 45 34.5 C 43.066406 34.5 42.003906 35.257812 42.375 36.375 M 54 36.75 C 54 37.988281 55.011719 39 56.25 39 C 57.488281 39 58.5 37.988281 58.5 36.75 C 58.5 35.511719 57.488281 34.5 56.25 34.5 C 55.011719 34.5 54 35.511719 54 36.75 M 64.875 36.375 C 65.21875 37.40625 66.402344 38.25 67.5 38.25 C 68.597656 38.25 69.78125 37.40625 70.125 36.375 C 70.496094 35.257812 69.433594 34.5 67.5 34.5 C 65.566406 34.5 64.503906 35.257812 64.875 36.375 M 77.210938 43.566406 C 75.851562 45.761719 77.824219 47.972656 80.296875 47.023438 C 81.507812 46.558594 82.5 45.648438 82.5 45 C 82.5 43.140625 78.195312 41.972656 77.210938 43.566406 M 20.167969 46.628906 C 18.625 49.132812 22.097656 52 24.167969 49.929688 C 25.902344 48.199219 24.816406 45 22.5 45 C 21.773438 45 20.722656 45.734375 20.167969 46.628906 M 31.765625 47.328125 C 32.445312 50.585938 35.105469 50.785156 35.714844 47.625 C 36.03125 45.984375 35.296875 45 33.75 45 C 32.308594 45 31.480469 45.96875 31.765625 47.328125 M 42.667969 46.628906 C 41.125 49.132812 44.597656 52 46.667969 49.929688 C 48.402344 48.199219 47.316406 45 45 45 C 44.273438 45 43.222656 45.734375 42.667969 46.628906 M 54.265625 47.328125 C 54.945312 50.585938 57.605469 50.785156 58.214844 47.625 C 58.53125 45.984375 57.796875 45 56.25 45 C 54.808594 45 53.980469 45.96875 54.265625 47.328125 M 65.167969 46.628906 C 63.625 49.132812 67.097656 52 69.167969 49.929688 C 70.902344 48.199219 69.816406 45 67.5 45 C 66.773438 45 65.722656 45.734375 65.167969 46.628906 M 76.5 53.140625 C 76.5 54.53125 77.78125 55.5 79.625 55.5 C 83.28125 55.5 82.765625 51.996094 79 51.265625 C 77.519531 50.976562 76.5 51.742188 76.5 53.140625 M 19.875 58.875 C 20.21875 59.90625 21.402344 60.75 22.5 60.75 C 23.597656 60.75 24.78125 59.90625 25.125 58.875 C 25.496094 57.757812 24.433594 57 22.5 57 C 20.566406 57 19.503906 57.757812 19.875 58.875 M 31.796875 64.875 L 32.25 72.75 L 47.25 72.75 L 48.15625 57 L 31.34375 57 L 31.796875 64.875 M 54.296875 64.875 L 54.75 72.75 L 69.75 72.75 L 70.65625 57 L 53.84375 57 L 54.296875 64.875 M 36 64.5 C 36 66.5 37 67.5 39 67.5 C 41 67.5 42 66.5 42 64.5 C 42 62.5 41 61.5 39 61.5 C 37 61.5 36 62.5 36 64.5 M 58.5 64.5 C 58.5 66.5 59.5 67.5 61.5 67.5 C 63.5 67.5 64.5 66.5 64.5 64.5 C 64.5 62.5 63.5 61.5 61.5 61.5 C 59.5 61.5 58.5 62.5 58.5 64.5 M 20.167969 69.128906 C 18.625 71.632812 22.097656 74.5 24.167969 72.429688 C 25.902344 70.699219 24.816406 67.5 22.5 67.5 C 21.773438 67.5 20.722656 68.234375 20.167969 69.128906 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(45.09804%,67.450982%,54.509807%);fill-opacity:1;" d="M 16.5 19.5 C 16.5 20.324219 17.554688 21 18.839844 21 C 20.125 21 20.761719 20.324219 20.25 19.5 C 19.738281 18.675781 18.6875 18 17.910156 18 C 17.132812 18 16.5 18.675781 16.5 19.5 M 24.75 19.5 C 24.148438 20.472656 31.265625 21 45 21 C 58.734375 21 65.851562 20.472656 65.25 19.5 C 64.019531 17.507812 25.980469 17.507812 24.75 19.5 M 69.75 19.5 C 69.238281 20.324219 70.214844 21 71.910156 21 C 73.609375 21 75 20.324219 75 19.5 C 75 18.675781 74.027344 18 72.839844 18 C 71.648438 18 70.261719 18.675781 69.75 19.5 M 13.839844 53.625 L 14.25 78.75 L 75.75 78.75 L 76.5 69 C 77.132812 60.769531 77.660156 59.320312 79.875 59.691406 C 81.433594 59.953125 82.5 59.1875 82.5 57.816406 C 82.5 56.5 81.203125 55.5 79.5 55.5 C 77.738281 55.5 76.5 54.5 76.5 53.074219 C 76.5 51.386719 77.414062 50.890625 79.5 51.433594 C 81.742188 52.023438 82.5 51.480469 82.5 49.292969 C 82.5 47.339844 81.628906 46.515625 79.875 46.808594 C 78.347656 47.066406 77.25 46.3125 77.25 45 C 77.25 43.6875 78.347656 42.933594 79.875 43.191406 C 81.628906 43.484375 82.5 42.660156 82.5 40.707031 C 82.5 38.519531 81.742188 37.976562 79.5 38.566406 C 76.90625 39.242188 76.5 38.613281 76.5 33.925781 L 76.5 28.5 L 13.429688 28.5 L 13.839844 53.625 M 19.875 36.375 C 20.21875 37.40625 21.402344 38.25 22.5 38.25 C 23.597656 38.25 24.78125 37.40625 25.125 36.375 C 25.496094 35.257812 24.433594 34.5 22.5 34.5 C 20.566406 34.5 19.503906 35.257812 19.875 36.375 M 31.5 36.75 C 31.5 37.988281 32.511719 39 33.75 39 C 34.988281 39 36 37.988281 36 36.75 C 36 35.511719 34.988281 34.5 33.75 34.5 C 32.511719 34.5 31.5 35.511719 31.5 36.75 M 42.375 36.375 C 42.71875 37.40625 43.902344 38.25 45 38.25 C 46.097656 38.25 47.28125 37.40625 47.625 36.375 C 47.996094 35.257812 46.933594 34.5 45 34.5 C 43.066406 34.5 42.003906 35.257812 42.375 36.375 M 54 36.75 C 54 37.988281 55.011719 39 56.25 39 C 57.488281 39 58.5 37.988281 58.5 36.75 C 58.5 35.511719 57.488281 34.5 56.25 34.5 C 55.011719 34.5 54 35.511719 54 36.75 M 64.875 36.375 C 65.21875 37.40625 66.402344 38.25 67.5 38.25 C 68.597656 38.25 69.78125 37.40625 70.125 36.375 C 70.496094 35.257812 69.433594 34.5 67.5 34.5 C 65.566406 34.5 64.503906 35.257812 64.875 36.375 M 20.167969 46.628906 C 18.625 49.132812 22.097656 52 24.167969 49.929688 C 25.902344 48.199219 24.816406 45 22.5 45 C 21.773438 45 20.722656 45.734375 20.167969 46.628906 M 31.765625 47.328125 C 32.445312 50.585938 35.105469 50.785156 35.714844 47.625 C 36.03125 45.984375 35.296875 45 33.75 45 C 32.308594 45 31.480469 45.96875 31.765625 47.328125 M 42.667969 46.628906 C 41.125 49.132812 44.597656 52 46.667969 49.929688 C 48.402344 48.199219 47.316406 45 45 45 C 44.273438 45 43.222656 45.734375 42.667969 46.628906 M 54.265625 47.328125 C 54.945312 50.585938 57.605469 50.785156 58.214844 47.625 C 58.53125 45.984375 57.796875 45 56.25 45 C 54.808594 45 53.980469 45.96875 54.265625 47.328125 M 65.167969 46.628906 C 63.625 49.132812 67.097656 52 69.167969 49.929688 C 70.902344 48.199219 69.816406 45 67.5 45 C 66.773438 45 65.722656 45.734375 65.167969 46.628906 M 19.875 58.875 C 20.21875 59.90625 21.402344 60.75 22.5 60.75 C 23.597656 60.75 24.78125 59.90625 25.125 58.875 C 25.496094 57.757812 24.433594 57 22.5 57 C 20.566406 57 19.503906 57.757812 19.875 58.875 M 31.796875 64.875 L 32.25 72.75 L 47.25 72.75 L 48.15625 57 L 31.34375 57 L 31.796875 64.875 M 54.296875 64.875 L 54.75 72.75 L 69.75 72.75 L 70.65625 57 L 53.84375 57 L 54.296875 64.875 M 36 64.5 C 36 66.5 37 67.5 39 67.5 C 41 67.5 42 66.5 42 64.5 C 42 62.5 41 61.5 39 61.5 C 37 61.5 36 62.5 36 64.5 M 58.5 64.5 C 58.5 66.5 59.5 67.5 61.5 67.5 C 63.5 67.5 64.5 66.5 64.5 64.5 C 64.5 62.5 63.5 61.5 61.5 61.5 C 59.5 61.5 58.5 62.5 58.5 64.5 M 20.167969 69.128906 C 18.625 71.632812 22.097656 74.5 24.167969 72.429688 C 25.902344 70.699219 24.816406 67.5 22.5 67.5 C 21.773438 67.5 20.722656 68.234375 20.167969 69.128906 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -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" width="105px" height="105px" viewBox="0 0 105 105" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(3.529412%,4.705882%,4.313726%);fill-opacity:1;" d="M 23.28125 8.65625 C 22.644531 11.101562 20.59375 12.210938 16.007812 12.59375 L 9.625 13.125 L 9.625 98.875 L 95.375 98.875 L 95.882812 84.4375 C 96.207031 75.28125 95.726562 70 94.570312 70 C 93.570312 70 92.160156 69.984375 91.4375 69.96875 C 90.714844 69.953125 89.730469 74.875 89.25 80.90625 L 88.375 91.875 L 16.625 91.875 L 15.664062 33.25 L 89.25 33.25 L 89.25 39.503906 C 89.25 44.515625 89.855469 45.640625 92.3125 45.167969 C 94.957031 44.65625 95.375 42.4375 95.375 28.851562 L 95.375 13.125 L 88.992188 12.59375 C 84.40625 12.210938 82.355469 11.101562 81.71875 8.65625 C 80.558594 4.21875 76.925781 4.277344 75.757812 8.75 C 74.902344 12.019531 73.371094 12.25 52.5 12.25 C 31.628906 12.25 30.097656 12.019531 29.242188 8.75 C 28.074219 4.277344 24.441406 4.21875 23.28125 8.65625 M 19.25 22.75 C 19.25 23.710938 20.476562 24.5 21.976562 24.5 C 23.476562 24.5 24.21875 23.710938 23.625 22.75 C 23.03125 21.789062 21.804688 21 20.898438 21 C 19.992188 21 19.25 21.789062 19.25 22.75 M 28.875 22.75 C 28.171875 23.886719 36.476562 24.5 52.5 24.5 C 68.523438 24.5 76.828125 23.886719 76.125 22.75 C 74.6875 20.425781 30.3125 20.425781 28.875 22.75 M 81.375 22.75 C 80.78125 23.710938 81.914062 24.5 83.898438 24.5 C 85.878906 24.5 87.5 23.710938 87.5 22.75 C 87.5 21.789062 86.367188 21 84.976562 21 C 83.589844 21 81.96875 21.789062 81.375 22.75 M 23.1875 42.4375 C 23.589844 43.640625 24.96875 44.625 26.25 44.625 C 27.53125 44.625 28.910156 43.640625 29.3125 42.4375 C 29.746094 41.136719 28.503906 40.25 26.25 40.25 C 23.996094 40.25 22.753906 41.136719 23.1875 42.4375 M 36.75 42.875 C 36.75 44.320312 37.929688 45.5 39.375 45.5 C 40.820312 45.5 42 44.320312 42 42.875 C 42 41.429688 40.820312 40.25 39.375 40.25 C 37.929688 40.25 36.75 41.429688 36.75 42.875 M 49.4375 42.4375 C 49.839844 43.640625 51.21875 44.625 52.5 44.625 C 53.78125 44.625 55.160156 43.640625 55.5625 42.4375 C 55.996094 41.136719 54.753906 40.25 52.5 40.25 C 50.246094 40.25 49.003906 41.136719 49.4375 42.4375 M 63 42.875 C 63 44.320312 64.179688 45.5 65.625 45.5 C 67.070312 45.5 68.25 44.320312 68.25 42.875 C 68.25 41.429688 67.070312 40.25 65.625 40.25 C 64.179688 40.25 63 41.429688 63 42.875 M 75.6875 42.4375 C 76.089844 43.640625 77.46875 44.625 78.75 44.625 C 80.03125 44.625 81.410156 43.640625 81.8125 42.4375 C 82.246094 41.136719 81.003906 40.25 78.75 40.25 C 76.496094 40.25 75.253906 41.136719 75.6875 42.4375 M 90.078125 50.828125 C 88.492188 53.390625 90.796875 55.96875 93.679688 54.859375 C 95.09375 54.320312 96.25 53.257812 96.25 52.5 C 96.25 50.332031 91.226562 48.96875 90.078125 50.828125 M 23.53125 54.402344 C 21.726562 57.320312 25.78125 60.667969 28.199219 58.253906 C 30.21875 56.234375 28.953125 52.5 26.25 52.5 C 25.402344 52.5 24.179688 53.355469 23.53125 54.402344 M 37.058594 55.21875 C 37.851562 59.019531 40.957031 59.25 41.667969 55.5625 C 42.035156 53.644531 41.175781 52.5 39.375 52.5 C 37.691406 52.5 36.730469 53.632812 37.058594 55.21875 M 49.78125 54.402344 C 47.976562 57.320312 52.03125 60.667969 54.449219 58.253906 C 56.46875 56.234375 55.203125 52.5 52.5 52.5 C 51.652344 52.5 50.429688 53.355469 49.78125 54.402344 M 63.308594 55.21875 C 64.101562 59.019531 67.207031 59.25 67.917969 55.5625 C 68.285156 53.644531 67.425781 52.5 65.625 52.5 C 63.941406 52.5 62.980469 53.632812 63.308594 55.21875 M 76.03125 54.402344 C 74.226562 57.320312 78.28125 60.667969 80.699219 58.253906 C 82.71875 56.234375 81.453125 52.5 78.75 52.5 C 77.902344 52.5 76.679688 53.355469 76.03125 54.402344 M 89.25 61.996094 C 89.25 63.621094 90.746094 64.75 92.894531 64.75 C 97.160156 64.75 96.558594 60.660156 92.167969 59.808594 C 90.441406 59.472656 89.25 60.367188 89.25 61.996094 M 23.1875 68.6875 C 23.589844 69.890625 24.96875 70.875 26.25 70.875 C 27.53125 70.875 28.910156 69.890625 29.3125 68.6875 C 29.746094 67.386719 28.503906 66.5 26.25 66.5 C 23.996094 66.5 22.753906 67.386719 23.1875 68.6875 M 37.097656 75.6875 L 37.625 84.875 L 55.125 84.875 L 55.652344 75.6875 L 56.183594 66.5 L 36.566406 66.5 L 37.097656 75.6875 M 63.347656 75.6875 L 63.875 84.875 L 81.375 84.875 L 81.902344 75.6875 L 82.433594 66.5 L 62.816406 66.5 L 63.347656 75.6875 M 42 75.25 C 42 77.582031 43.167969 78.75 45.5 78.75 C 47.832031 78.75 49 77.582031 49 75.25 C 49 72.917969 47.832031 71.75 45.5 71.75 C 43.167969 71.75 42 72.917969 42 75.25 M 68.25 75.25 C 68.25 77.582031 69.417969 78.75 71.75 78.75 C 74.082031 78.75 75.25 77.582031 75.25 75.25 C 75.25 72.917969 74.082031 71.75 71.75 71.75 C 69.417969 71.75 68.25 72.917969 68.25 75.25 M 23.53125 80.652344 C 21.726562 83.570312 25.78125 86.917969 28.199219 84.503906 C 30.21875 82.484375 28.953125 78.75 26.25 78.75 C 25.402344 78.75 24.179688 79.605469 23.53125 80.652344 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(45.09804%,67.450982%,54.509807%);fill-opacity:1;" d="M 19.25 22.75 C 19.25 23.710938 20.476562 24.5 21.976562 24.5 C 23.476562 24.5 24.21875 23.710938 23.625 22.75 C 23.03125 21.789062 21.804688 21 20.898438 21 C 19.992188 21 19.25 21.789062 19.25 22.75 M 28.875 22.75 C 28.171875 23.886719 36.476562 24.5 52.5 24.5 C 68.523438 24.5 76.828125 23.886719 76.125 22.75 C 74.6875 20.425781 30.3125 20.425781 28.875 22.75 M 81.375 22.75 C 80.78125 23.710938 81.914062 24.5 83.898438 24.5 C 85.878906 24.5 87.5 23.710938 87.5 22.75 C 87.5 21.789062 86.367188 21 84.976562 21 C 83.589844 21 81.96875 21.789062 81.375 22.75 M 16.144531 62.5625 L 16.625 91.875 L 88.375 91.875 L 89.25 80.5 C 89.988281 70.898438 90.601562 69.207031 93.1875 69.640625 C 95.003906 69.945312 96.25 69.054688 96.25 67.453125 C 96.25 65.917969 94.738281 64.75 92.75 64.75 C 90.695312 64.75 89.25 63.582031 89.25 61.921875 C 89.25 59.953125 90.316406 59.371094 92.75 60.007812 C 95.367188 60.691406 96.25 60.058594 96.25 57.511719 C 96.25 55.230469 95.234375 54.265625 93.1875 54.609375 C 91.402344 54.910156 90.125 54.03125 90.125 52.5 C 90.125 50.96875 91.402344 50.089844 93.1875 50.390625 C 95.234375 50.734375 96.25 49.769531 96.25 47.488281 C 96.25 44.941406 95.367188 44.308594 92.75 44.992188 C 89.726562 45.785156 89.25 45.046875 89.25 39.578125 L 89.25 33.25 L 15.664062 33.25 L 16.144531 62.5625 M 23.1875 42.4375 C 23.589844 43.640625 24.96875 44.625 26.25 44.625 C 27.53125 44.625 28.910156 43.640625 29.3125 42.4375 C 29.746094 41.136719 28.503906 40.25 26.25 40.25 C 23.996094 40.25 22.753906 41.136719 23.1875 42.4375 M 36.75 42.875 C 36.75 44.320312 37.929688 45.5 39.375 45.5 C 40.820312 45.5 42 44.320312 42 42.875 C 42 41.429688 40.820312 40.25 39.375 40.25 C 37.929688 40.25 36.75 41.429688 36.75 42.875 M 49.4375 42.4375 C 49.839844 43.640625 51.21875 44.625 52.5 44.625 C 53.78125 44.625 55.160156 43.640625 55.5625 42.4375 C 55.996094 41.136719 54.753906 40.25 52.5 40.25 C 50.246094 40.25 49.003906 41.136719 49.4375 42.4375 M 63 42.875 C 63 44.320312 64.179688 45.5 65.625 45.5 C 67.070312 45.5 68.25 44.320312 68.25 42.875 C 68.25 41.429688 67.070312 40.25 65.625 40.25 C 64.179688 40.25 63 41.429688 63 42.875 M 75.6875 42.4375 C 76.089844 43.640625 77.46875 44.625 78.75 44.625 C 80.03125 44.625 81.410156 43.640625 81.8125 42.4375 C 82.246094 41.136719 81.003906 40.25 78.75 40.25 C 76.496094 40.25 75.253906 41.136719 75.6875 42.4375 M 23.53125 54.402344 C 21.726562 57.320312 25.78125 60.667969 28.199219 58.253906 C 30.21875 56.234375 28.953125 52.5 26.25 52.5 C 25.402344 52.5 24.179688 53.355469 23.53125 54.402344 M 37.058594 55.21875 C 37.851562 59.019531 40.957031 59.25 41.667969 55.5625 C 42.035156 53.644531 41.175781 52.5 39.375 52.5 C 37.691406 52.5 36.730469 53.632812 37.058594 55.21875 M 49.78125 54.402344 C 47.976562 57.320312 52.03125 60.667969 54.449219 58.253906 C 56.46875 56.234375 55.203125 52.5 52.5 52.5 C 51.652344 52.5 50.429688 53.355469 49.78125 54.402344 M 63.308594 55.21875 C 64.101562 59.019531 67.207031 59.25 67.917969 55.5625 C 68.285156 53.644531 67.425781 52.5 65.625 52.5 C 63.941406 52.5 62.980469 53.632812 63.308594 55.21875 M 76.03125 54.402344 C 74.226562 57.320312 78.28125 60.667969 80.699219 58.253906 C 82.71875 56.234375 81.453125 52.5 78.75 52.5 C 77.902344 52.5 76.679688 53.355469 76.03125 54.402344 M 23.1875 68.6875 C 23.589844 69.890625 24.96875 70.875 26.25 70.875 C 27.53125 70.875 28.910156 69.890625 29.3125 68.6875 C 29.746094 67.386719 28.503906 66.5 26.25 66.5 C 23.996094 66.5 22.753906 67.386719 23.1875 68.6875 M 37.097656 75.6875 L 37.625 84.875 L 55.125 84.875 L 55.652344 75.6875 L 56.183594 66.5 L 36.566406 66.5 L 37.097656 75.6875 M 63.347656 75.6875 L 63.875 84.875 L 81.375 84.875 L 81.902344 75.6875 L 82.433594 66.5 L 62.816406 66.5 L 63.347656 75.6875 M 42 75.25 C 42 77.582031 43.167969 78.75 45.5 78.75 C 47.832031 78.75 49 77.582031 49 75.25 C 49 72.917969 47.832031 71.75 45.5 71.75 C 43.167969 71.75 42 72.917969 42 75.25 M 68.25 75.25 C 68.25 77.582031 69.417969 78.75 71.75 78.75 C 74.082031 78.75 75.25 77.582031 75.25 75.25 C 75.25 72.917969 74.082031 71.75 71.75 71.75 C 69.417969 71.75 68.25 72.917969 68.25 75.25 M 23.53125 80.652344 C 21.726562 83.570312 25.78125 86.917969 28.199219 84.503906 C 30.21875 82.484375 28.953125 78.75 26.25 78.75 C 25.402344 78.75 24.179688 79.605469 23.53125 80.652344 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

@ -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" width="120px" height="120px" viewBox="0 0 120 120" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(3.529412%,4.705882%,4.313726%);fill-opacity:1;" d="M 26.609375 9.890625 C 25.878906 12.6875 23.535156 13.953125 18.296875 14.390625 L 11 15 L 11 113 L 109 113 L 109.578125 96.5 C 109.949219 86.035156 109.398438 80 108.078125 80 C 106.9375 80 105.324219 79.984375 104.5 79.964844 C 103.675781 79.949219 102.550781 85.570312 102 92.464844 L 101 105 L 19 105 L 18.453125 71.5 L 17.902344 38 L 102 38 L 102 45.144531 C 102 50.875 102.695312 52.160156 105.5 51.621094 C 108.523438 51.035156 109 48.5 109 32.972656 L 109 15 L 101.703125 14.390625 C 96.464844 13.953125 94.121094 12.6875 93.390625 9.890625 C 92.066406 4.820312 87.914062 4.886719 86.578125 10 C 85.601562 13.734375 83.851562 14 60 14 C 36.148438 14 34.398438 13.734375 33.421875 10 C 32.085938 4.886719 27.933594 4.820312 26.609375 9.890625 M 22 26 C 22 27.101562 23.402344 28 25.117188 28 C 26.832031 28 27.679688 27.101562 27 26 C 26.320312 24.898438 24.917969 24 23.882812 24 C 22.847656 24 22 24.898438 22 26 M 33 26 C 32.199219 27.296875 41.6875 28 60 28 C 78.3125 28 87.800781 27.296875 87 26 C 85.359375 23.34375 34.640625 23.34375 33 26 M 93 26 C 92.320312 27.101562 93.617188 28 95.882812 28 C 98.144531 28 100 27.101562 100 26 C 100 24.898438 98.703125 24 97.117188 24 C 95.53125 24 93.679688 24.898438 93 26 M 26.5 48.5 C 26.957031 49.875 28.535156 51 30 51 C 31.464844 51 33.042969 49.875 33.5 48.5 C 33.996094 47.011719 32.578125 46 30 46 C 27.421875 46 26.003906 47.011719 26.5 48.5 M 42 49 C 42 50.648438 43.351562 52 45 52 C 46.648438 52 48 50.648438 48 49 C 48 47.351562 46.648438 46 45 46 C 43.351562 46 42 47.351562 42 49 M 56.5 48.5 C 56.957031 49.875 58.535156 51 60 51 C 61.464844 51 63.042969 49.875 63.5 48.5 C 63.996094 47.011719 62.578125 46 60 46 C 57.421875 46 56.003906 47.011719 56.5 48.5 M 72 49 C 72 50.648438 73.351562 52 75 52 C 76.648438 52 78 50.648438 78 49 C 78 47.351562 76.648438 46 75 46 C 73.351562 46 72 47.351562 72 49 M 86.5 48.5 C 86.957031 49.875 88.535156 51 90 51 C 91.464844 51 93.042969 49.875 93.5 48.5 C 93.996094 47.011719 92.578125 46 90 46 C 87.421875 46 86.003906 47.011719 86.5 48.5 M 102.945312 58.089844 C 101.136719 61.015625 103.769531 63.964844 107.0625 62.699219 C 108.679688 62.078125 110 60.863281 110 60 C 110 57.523438 104.257812 55.964844 102.945312 58.089844 M 26.890625 62.175781 C 24.832031 65.511719 29.464844 69.335938 32.226562 66.574219 C 34.535156 64.265625 33.089844 60 30 60 C 29.03125 60 27.632812 60.976562 26.890625 62.175781 M 42.355469 63.105469 C 43.257812 67.449219 46.808594 67.714844 47.621094 63.5 C 48.039062 61.308594 47.058594 60 45 60 C 43.078125 60 41.976562 61.292969 42.355469 63.105469 M 56.890625 62.175781 C 54.832031 65.511719 59.464844 69.335938 62.226562 66.574219 C 64.535156 64.265625 63.089844 60 60 60 C 59.03125 60 57.632812 60.976562 56.890625 62.175781 M 72.355469 63.105469 C 73.257812 67.449219 76.808594 67.714844 77.621094 63.5 C 78.039062 61.308594 77.058594 60 75 60 C 73.078125 60 71.976562 61.292969 72.355469 63.105469 M 86.890625 62.175781 C 84.832031 65.511719 89.464844 69.335938 92.226562 66.574219 C 94.535156 64.265625 93.089844 60 90 60 C 89.03125 60 87.632812 60.976562 86.890625 62.175781 M 102 70.855469 C 102 72.707031 103.710938 74 106.164062 74 C 111.039062 74 110.351562 69.324219 105.335938 68.355469 C 103.359375 67.96875 102 68.988281 102 70.855469 M 26.5 78.5 C 26.957031 79.875 28.535156 81 30 81 C 31.464844 81 33.042969 79.875 33.5 78.5 C 33.996094 77.011719 32.578125 76 30 76 C 27.421875 76 26.003906 77.011719 26.5 78.5 M 42.394531 86.5 L 43 97 L 63 97 L 64.210938 76 L 41.789062 76 L 42.394531 86.5 M 72.394531 86.5 L 73 97 L 93 97 L 94.210938 76 L 71.789062 76 L 72.394531 86.5 M 48 86 C 48 88.664062 49.335938 90 52 90 C 54.664062 90 56 88.664062 56 86 C 56 83.335938 54.664062 82 52 82 C 49.335938 82 48 83.335938 48 86 M 78 86 C 78 88.664062 79.335938 90 82 90 C 84.664062 90 86 88.664062 86 86 C 86 83.335938 84.664062 82 82 82 C 79.335938 82 78 83.335938 78 86 M 26.890625 92.175781 C 24.832031 95.511719 29.464844 99.335938 32.226562 96.574219 C 34.535156 94.265625 33.089844 90 30 90 C 29.03125 90 27.632812 90.976562 26.890625 92.175781 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(45.09804%,67.450982%,54.509807%);fill-opacity:1;" d="M 22 26 C 22 27.101562 23.402344 28 25.117188 28 C 26.832031 28 27.679688 27.101562 27 26 C 26.320312 24.898438 24.917969 24 23.882812 24 C 22.847656 24 22 24.898438 22 26 M 33 26 C 32.199219 27.296875 41.6875 28 60 28 C 78.3125 28 87.800781 27.296875 87 26 C 85.359375 23.34375 34.640625 23.34375 33 26 M 93 26 C 92.320312 27.101562 93.617188 28 95.882812 28 C 98.144531 28 100 27.101562 100 26 C 100 24.898438 98.703125 24 97.117188 24 C 95.53125 24 93.679688 24.898438 93 26 M 18.453125 71.5 L 19 105 L 101 105 L 102 92 C 102.84375 81.027344 103.546875 79.09375 106.5 79.589844 C 108.574219 79.9375 110 78.917969 110 77.089844 C 110 75.335938 108.273438 74 106 74 C 103.648438 74 102 72.664062 102 70.765625 C 102 68.519531 103.21875 67.851562 106 68.578125 C 108.988281 69.363281 110 68.640625 110 65.726562 C 110 63.121094 108.839844 62.019531 106.5 62.410156 C 104.460938 62.753906 103 61.746094 103 60 C 103 58.253906 104.460938 57.246094 106.5 57.589844 C 108.839844 57.980469 110 56.878906 110 54.273438 C 110 51.359375 108.988281 50.636719 106 51.421875 C 102.542969 52.324219 102 51.480469 102 45.234375 L 102 38 L 17.902344 38 L 18.453125 71.5 M 26.5 48.5 C 26.957031 49.875 28.535156 51 30 51 C 31.464844 51 33.042969 49.875 33.5 48.5 C 33.996094 47.011719 32.578125 46 30 46 C 27.421875 46 26.003906 47.011719 26.5 48.5 M 42 49 C 42 50.648438 43.351562 52 45 52 C 46.648438 52 48 50.648438 48 49 C 48 47.351562 46.648438 46 45 46 C 43.351562 46 42 47.351562 42 49 M 56.5 48.5 C 56.957031 49.875 58.535156 51 60 51 C 61.464844 51 63.042969 49.875 63.5 48.5 C 63.996094 47.011719 62.578125 46 60 46 C 57.421875 46 56.003906 47.011719 56.5 48.5 M 72 49 C 72 50.648438 73.351562 52 75 52 C 76.648438 52 78 50.648438 78 49 C 78 47.351562 76.648438 46 75 46 C 73.351562 46 72 47.351562 72 49 M 86.5 48.5 C 86.957031 49.875 88.535156 51 90 51 C 91.464844 51 93.042969 49.875 93.5 48.5 C 93.996094 47.011719 92.578125 46 90 46 C 87.421875 46 86.003906 47.011719 86.5 48.5 M 26.890625 62.175781 C 24.832031 65.511719 29.464844 69.335938 32.226562 66.574219 C 34.535156 64.265625 33.089844 60 30 60 C 29.03125 60 27.632812 60.976562 26.890625 62.175781 M 42.355469 63.105469 C 43.257812 67.449219 46.808594 67.714844 47.621094 63.5 C 48.039062 61.308594 47.058594 60 45 60 C 43.078125 60 41.976562 61.292969 42.355469 63.105469 M 56.890625 62.175781 C 54.832031 65.511719 59.464844 69.335938 62.226562 66.574219 C 64.535156 64.265625 63.089844 60 60 60 C 59.03125 60 57.632812 60.976562 56.890625 62.175781 M 72.355469 63.105469 C 73.257812 67.449219 76.808594 67.714844 77.621094 63.5 C 78.039062 61.308594 77.058594 60 75 60 C 73.078125 60 71.976562 61.292969 72.355469 63.105469 M 86.890625 62.175781 C 84.832031 65.511719 89.464844 69.335938 92.226562 66.574219 C 94.535156 64.265625 93.089844 60 90 60 C 89.03125 60 87.632812 60.976562 86.890625 62.175781 M 26.5 78.5 C 26.957031 79.875 28.535156 81 30 81 C 31.464844 81 33.042969 79.875 33.5 78.5 C 33.996094 77.011719 32.578125 76 30 76 C 27.421875 76 26.003906 77.011719 26.5 78.5 M 42.394531 86.5 L 43 97 L 63 97 L 64.210938 76 L 41.789062 76 L 42.394531 86.5 M 72.394531 86.5 L 73 97 L 93 97 L 94.210938 76 L 71.789062 76 L 72.394531 86.5 M 48 86 C 48 88.664062 49.335938 90 52 90 C 54.664062 90 56 88.664062 56 86 C 56 83.335938 54.664062 82 52 82 C 49.335938 82 48 83.335938 48 86 M 78 86 C 78 88.664062 79.335938 90 82 90 C 84.664062 90 86 88.664062 86 86 C 86 83.335938 84.664062 82 82 82 C 79.335938 82 78 83.335938 78 86 M 26.890625 92.175781 C 24.832031 95.511719 29.464844 99.335938 32.226562 96.574219 C 34.535156 94.265625 33.089844 90 30 90 C 29.03125 90 27.632812 90.976562 26.890625 92.175781 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@ -0,0 +1,290 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 419.484 378.609" style="enable-background:new 0 0 419.484 378.609;" xml:space="preserve">
<g>
<g>
<g>
<path style="fill:#FEE8D4;" d="M368.875,372.929H50.609c-24.475,0-44.317-19.841-44.317-44.317V82.139
c0-24.475,19.841-44.317,44.317-44.317h318.266c24.475,0,44.317,19.841,44.317,44.317v246.474
C413.191,353.088,393.35,372.929,368.875,372.929z"/>
<path style="fill:#84CFC6;" d="M413.191,117.952V81.662c0-24.212-19.628-43.84-43.84-43.84H50.132
c-24.212,0-43.84,19.628-43.84,43.84v36.291H413.191z"/>
<path style="opacity:0.63;fill:#CBCCCE;" d="M369.352,37.822H50.132c-24.212,0-43.84,19.628-43.84,43.84v247.427
c0,24.212,19.628,43.84,43.84,43.84h319.219c24.212,0,43.84-19.628,43.84-43.84V81.662
C413.192,57.45,393.564,37.822,369.352,37.822z M395.349,268.898c0,25.299-19.628,45.808-43.84,45.808H70.326
c-24.212,0-43.84-20.509-43.84-45.808V91.905c0-25.299,19.628-45.808,43.84-45.808h281.183c24.212,0,43.84,20.509,43.84,45.808
V268.898z"/>
<g>
<path style="opacity:0.63;fill:#CBCCCE;" d="M363.655,351.252H57.079c-23.253,0-42.104-18.22-42.104-40.695v13.138
c0,22.475,18.851,40.695,42.104,40.695h306.576c23.253,0,42.104-18.22,42.104-40.695v-13.138
C405.759,333.032,386.909,351.252,363.655,351.252z"/>
</g>
<g>
<g>
<ellipse transform="matrix(0.2318 -0.9728 0.9728 0.2318 -9.9791 115.0937)" style="fill:#001239;" cx="67.883" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M72.853,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258C81.612,71.533,77.69,75.454,72.853,75.454z"
/>
<path style="fill:#0087BE;" d="M69.301,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592C76.365,46.296,73.202,49.459,69.301,49.459z"
/>
</g>
</g>
<g>
<ellipse transform="matrix(0.2318 -0.9728 0.9728 0.2318 212.5528 396.8905)" style="fill:#001239;" cx="357.572" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M362.541,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258C371.3,71.533,367.379,75.454,362.541,75.454z
"/>
<path style="fill:#0087BE;" d="M358.989,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C366.054,46.296,362.891,49.459,358.989,49.459z"/>
</g>
</g>
<g>
<ellipse transform="matrix(0.1612 -0.9869 0.9869 0.1612 74.9027 215.8628)" style="fill:#001239;" cx="164.446" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M169.416,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258
C178.174,71.533,174.253,75.454,169.416,75.454z"/>
<path style="fill:#0087BE;" d="M165.864,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C172.928,46.296,169.765,49.459,165.864,49.459z"/>
</g>
</g>
<g>
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 31.2882 203.2669)" style="fill:#001239;" cx="261.009" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M265.978,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258
C274.737,71.533,270.816,75.454,265.978,75.454z"/>
<path style="fill:#0087BE;" d="M262.426,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C269.491,46.296,266.328,49.459,262.426,49.459z"/>
</g>
</g>
</g>
</g>
<path style="opacity:0.5;fill:#FFFFFF;" d="M44.299,45.849c0,0-25.562,3.195-30.583,24.193
c-5.021,20.998-5.934,84.447,3.195,82.165c9.129-2.282,2.739-60.71,11.868-79.882C37.908,53.152,48.407,48.131,44.299,45.849z"/>
</g>
<g>
<g>
<rect x="183.625" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,299.142h-52.804v-37.545h52.804V299.142z M184.595,297.202h48.924v-33.665h-48.924
V297.202z"/>
</g>
<g>
<rect x="132.762" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,299.142h-52.803v-37.545h52.803V299.142z M133.732,297.202h48.923v-33.665h-48.923
V297.202z"/>
</g>
<g>
<rect x="81.898" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,299.142H80.928v-37.545h52.803V299.142z M82.868,297.202h48.923v-33.665H82.868V297.202z
"/>
</g>
<g>
<rect x="81.898" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,263.538H80.928v-37.544h52.803V263.538z M82.868,261.598h48.923v-33.664H82.868V261.598z
"/>
</g>
<g>
<rect x="285.353" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,299.142h-52.804v-37.545h52.804V299.142z M286.323,297.202h48.924v-33.665h-48.924
V297.202z"/>
</g>
<g>
<rect x="285.353" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,227.933h-52.804v-37.545h52.804V227.933z M286.323,225.993h48.924v-33.665h-48.924
V225.993z"/>
</g>
<g>
<rect x="234.489" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,299.142h-52.803v-37.545h52.803V299.142z M235.459,297.202h48.923v-33.665h-48.923
V297.202z"/>
</g>
<g>
<rect x="285.353" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,192.328h-52.804v-37.544h52.804V192.328z M286.323,190.388h48.924v-33.664h-48.924
V190.388z"/>
</g>
<g>
<rect x="285.353" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,263.538h-52.804v-37.544h52.804V263.538z M286.323,261.598h48.924v-33.664h-48.924
V261.598z"/>
</g>
<g>
<rect x="81.898" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,227.933H80.928v-37.545h52.803V227.933z M82.868,225.993h48.923v-33.665H82.868V225.993z
"/>
</g>
<g>
<rect x="132.762" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,192.328h-52.803v-37.544h52.803V192.328z M133.732,190.388h48.923v-33.664h-48.923
V190.388z"/>
</g>
<g>
<rect x="132.762" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,263.538h-52.803v-37.544h52.803V263.538z M133.732,261.598h48.923v-33.664h-48.923
V261.598z"/>
</g>
<g>
<rect x="183.625" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,263.538h-52.804v-37.544h52.804V263.538z M184.595,261.598h48.924v-33.664h-48.924
V261.598z"/>
</g>
<g>
<rect x="132.762" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,227.933h-52.803v-37.545h52.803V227.933z M133.732,225.993h48.923v-33.665h-48.923
V225.993z"/>
</g>
<g>
<rect x="81.898" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,192.328H80.928v-37.544h52.803V192.328z M82.868,190.388h48.923v-33.664H82.868V190.388z
"/>
</g>
<g>
<rect x="183.625" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,227.933h-52.804v-37.545h52.804V227.933z M184.595,225.993h48.924v-33.665h-48.924
V225.993z"/>
</g>
<g>
<rect x="234.489" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,263.538h-52.803v-37.544h52.803V263.538z M235.459,261.598h48.923v-33.664h-48.923
V261.598z"/>
</g>
<g>
<rect x="336.217" y="155.754" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,192.328h-53.488v-37.544h53.488V192.328z M337.187,190.388h49.608v-33.664h-49.608
V190.388z"/>
</g>
<g>
<rect x="234.489" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,227.933h-52.803v-37.545h52.803V227.933z M235.459,225.993h48.923v-33.665h-48.923
V225.993z"/>
</g>
<g>
<rect x="183.625" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,192.328h-52.804v-37.544h52.804V192.328z M184.595,190.388h48.924v-33.664h-48.924
V190.388z"/>
</g>
<g>
<rect x="234.489" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,192.328h-52.803v-37.544h52.803V192.328z M235.459,190.388h48.923v-33.664h-48.923
V190.388z"/>
</g>
<g>
<rect x="81.898" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M133.732,156.724H80.928v-29.328h52.803V156.724z M82.868,154.784h48.923v-25.448H82.868V154.784z
"/>
</g>
<g>
<rect x="234.489" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M286.323,333.928h-52.803v-36.726h52.803V333.928z M235.459,331.988h48.923v-32.846h-48.923
V331.988z"/>
</g>
<g>
<rect x="183.625" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M235.459,333.928h-52.804v-36.726h52.804V333.928z M184.595,331.988h48.924v-32.846h-48.924
V331.988z"/>
</g>
<g>
<rect x="81.898" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M133.732,333.928H80.928v-36.726h52.803V333.928z M82.868,331.988h48.923v-32.846H82.868V331.988z
"/>
</g>
<g>
<rect x="132.762" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M184.595,333.928h-52.803v-36.726h52.803V333.928z M133.732,331.988h48.923v-32.846h-48.923
V331.988z"/>
</g>
<g>
<rect x="32.403" y="298.172" style="fill:#FFFFFF;" width="49.494" height="34.786"/>
<path style="fill:#E8DFDB;" d="M82.868,333.928H31.434v-36.726h51.435V333.928z M33.374,331.988h47.555v-32.846H33.374V331.988z"
/>
</g>
<g>
<rect x="285.353" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M337.187,333.928h-52.804v-36.726h52.804V333.928z M286.323,331.988h48.924v-32.846h-48.924
V331.988z"/>
</g>
<g>
<rect x="336.217" y="191.358" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,227.933h-53.488v-37.545h53.488V227.933z M337.187,225.993h49.608v-33.665h-49.608
V225.993z"/>
</g>
<g>
<rect x="336.217" y="298.172" style="fill:#FFFFFF;" width="51.549" height="34.786"/>
<path style="fill:#E8DFDB;" d="M388.735,333.928h-53.488v-36.726h53.488V333.928z M337.187,331.988h49.608v-32.846h-49.608
V331.988z"/>
</g>
<g>
<rect x="336.217" y="226.963" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,263.538h-53.488v-37.544h53.488V263.538z M337.187,261.598h49.608v-33.664h-49.608
V261.598z"/>
</g>
<g>
<rect x="336.217" y="262.568" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,299.142h-53.488v-37.545h53.488V299.142z M337.187,297.202h49.608v-33.665h-49.608
V297.202z"/>
</g>
<g>
<rect x="183.625" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M235.459,156.724h-52.804v-29.328h52.804V156.724z M184.595,154.784h48.924v-25.448h-48.924
V154.784z"/>
</g>
<g>
<rect x="32.403" y="262.568" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,299.142H31.434v-37.545h51.435V299.142z M33.374,297.202h47.555v-33.665H33.374V297.202z"
/>
</g>
<g>
<rect x="132.762" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M184.595,156.724h-52.803v-29.328h52.803V156.724z M133.732,154.784h48.923v-25.448h-48.923
V154.784z"/>
</g>
<g>
<rect x="336.217" y="128.366" style="fill:#D95125;" width="51.549" height="27.388"/>
<path style="fill:#C1D1D9;" d="M388.735,156.724h-53.488v-29.328h53.488V156.724z M337.187,154.784h49.608v-25.448h-49.608
V154.784z"/>
</g>
<g>
<rect x="285.353" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M337.187,156.724h-52.804v-29.328h52.804V156.724z M286.323,154.784h48.924v-25.448h-48.924
V154.784z"/>
</g>
<g>
<rect x="234.489" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M286.323,156.724h-52.803v-29.328h52.803V156.724z M235.459,154.784h48.923v-25.448h-48.923
V154.784z"/>
</g>
<g>
<rect x="32.403" y="226.963" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,263.538H31.434v-37.544h51.435V263.538z M33.374,261.598h47.555v-33.664H33.374V261.598z"
/>
</g>
<g>
<rect x="32.403" y="191.358" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,227.933H31.434v-37.545h51.435V227.933z M33.374,225.993h47.555v-33.665H33.374V225.993z"
/>
</g>
<g>
<rect x="32.403" y="128.366" style="fill:#8CA4D5;" width="49.494" height="27.388"/>
<path style="fill:#C1D1D9;" d="M82.868,156.724H31.434v-29.328h51.435V156.724z M33.374,154.784h47.555v-25.448H33.374V154.784z"
/>
</g>
<g>
<rect x="32.403" y="155.754" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,192.328H31.434v-37.544h51.435V192.328z M33.374,190.388h47.555v-33.664H33.374V190.388z"
/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,290 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 419.484 378.609" style="enable-background:new 0 0 419.484 378.609;" xml:space="preserve">
<g>
<g>
<g>
<path style="fill:#FEE8D4;" d="M368.875,372.929H50.609c-24.475,0-44.317-19.841-44.317-44.317V82.139
c0-24.475,19.841-44.317,44.317-44.317h318.266c24.475,0,44.317,19.841,44.317,44.317v246.474
C413.191,353.088,393.35,372.929,368.875,372.929z"/>
<path style="fill:#84CFC6;" d="M413.191,117.952V81.662c0-24.212-19.628-43.84-43.84-43.84H50.132
c-24.212,0-43.84,19.628-43.84,43.84v36.291H413.191z"/>
<path style="opacity:0.63;fill:#CBCCCE;" d="M369.352,37.822H50.132c-24.212,0-43.84,19.628-43.84,43.84v247.427
c0,24.212,19.628,43.84,43.84,43.84h319.219c24.212,0,43.84-19.628,43.84-43.84V81.662
C413.192,57.45,393.564,37.822,369.352,37.822z M395.349,268.898c0,25.299-19.628,45.808-43.84,45.808H70.326
c-24.212,0-43.84-20.509-43.84-45.808V91.905c0-25.299,19.628-45.808,43.84-45.808h281.183c24.212,0,43.84,20.509,43.84,45.808
V268.898z"/>
<g>
<path style="opacity:0.63;fill:#CBCCCE;" d="M363.655,351.252H57.079c-23.253,0-42.104-18.22-42.104-40.695v13.138
c0,22.475,18.851,40.695,42.104,40.695h306.576c23.253,0,42.104-18.22,42.104-40.695v-13.138
C405.759,333.032,386.909,351.252,363.655,351.252z"/>
</g>
<g>
<g>
<ellipse transform="matrix(0.2318 -0.9728 0.9728 0.2318 -9.9791 115.0937)" style="fill:#001239;" cx="67.883" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M72.853,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258C81.612,71.533,77.69,75.454,72.853,75.454z"
/>
<path style="fill:#0087BE;" d="M69.301,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592C76.365,46.296,73.202,49.459,69.301,49.459z"
/>
</g>
</g>
<g>
<ellipse transform="matrix(0.2318 -0.9728 0.9728 0.2318 212.5528 396.8905)" style="fill:#001239;" cx="357.572" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M362.541,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258C371.3,71.533,367.379,75.454,362.541,75.454z
"/>
<path style="fill:#0087BE;" d="M358.989,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C366.054,46.296,362.891,49.459,358.989,49.459z"/>
</g>
</g>
<g>
<ellipse transform="matrix(0.1612 -0.9869 0.9869 0.1612 74.9027 215.8628)" style="fill:#001239;" cx="164.446" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M169.416,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258
C178.174,71.533,174.253,75.454,169.416,75.454z"/>
<path style="fill:#0087BE;" d="M165.864,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C172.928,46.296,169.765,49.459,165.864,49.459z"/>
</g>
</g>
<g>
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 31.2882 203.2669)" style="fill:#001239;" cx="261.009" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M265.978,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258
C274.737,71.533,270.816,75.454,265.978,75.454z"/>
<path style="fill:#0087BE;" d="M262.426,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C269.491,46.296,266.328,49.459,262.426,49.459z"/>
</g>
</g>
</g>
</g>
<path style="opacity:0.5;fill:#FFFFFF;" d="M44.299,45.849c0,0-25.562,3.195-30.583,24.193
c-5.021,20.998-5.934,84.447,3.195,82.165c9.129-2.282,2.739-60.71,11.868-79.882C37.908,53.152,48.407,48.131,44.299,45.849z"/>
</g>
<g>
<g>
<rect x="183.625" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,299.142h-52.804v-37.545h52.804V299.142z M184.595,297.202h48.924v-33.665h-48.924
V297.202z"/>
</g>
<g>
<rect x="132.762" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,299.142h-52.803v-37.545h52.803V299.142z M133.732,297.202h48.923v-33.665h-48.923
V297.202z"/>
</g>
<g>
<rect x="81.898" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,299.142H80.928v-37.545h52.803V299.142z M82.868,297.202h48.923v-33.665H82.868V297.202z
"/>
</g>
<g>
<rect x="81.898" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,263.538H80.928v-37.544h52.803V263.538z M82.868,261.598h48.923v-33.664H82.868V261.598z
"/>
</g>
<g>
<rect x="285.353" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,299.142h-52.804v-37.545h52.804V299.142z M286.323,297.202h48.924v-33.665h-48.924
V297.202z"/>
</g>
<g>
<rect x="285.353" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,227.933h-52.804v-37.545h52.804V227.933z M286.323,225.993h48.924v-33.665h-48.924
V225.993z"/>
</g>
<g>
<rect x="234.489" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,299.142h-52.803v-37.545h52.803V299.142z M235.459,297.202h48.923v-33.665h-48.923
V297.202z"/>
</g>
<g>
<rect x="285.353" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,192.328h-52.804v-37.544h52.804V192.328z M286.323,190.388h48.924v-33.664h-48.924
V190.388z"/>
</g>
<g>
<rect x="285.353" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,263.538h-52.804v-37.544h52.804V263.538z M286.323,261.598h48.924v-33.664h-48.924
V261.598z"/>
</g>
<g>
<rect x="81.898" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,227.933H80.928v-37.545h52.803V227.933z M82.868,225.993h48.923v-33.665H82.868V225.993z
"/>
</g>
<g>
<rect x="132.762" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,192.328h-52.803v-37.544h52.803V192.328z M133.732,190.388h48.923v-33.664h-48.923
V190.388z"/>
</g>
<g>
<rect x="132.762" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,263.538h-52.803v-37.544h52.803V263.538z M133.732,261.598h48.923v-33.664h-48.923
V261.598z"/>
</g>
<g>
<rect x="183.625" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,263.538h-52.804v-37.544h52.804V263.538z M184.595,261.598h48.924v-33.664h-48.924
V261.598z"/>
</g>
<g>
<rect x="132.762" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,227.933h-52.803v-37.545h52.803V227.933z M133.732,225.993h48.923v-33.665h-48.923
V225.993z"/>
</g>
<g>
<rect x="81.898" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,192.328H80.928v-37.544h52.803V192.328z M82.868,190.388h48.923v-33.664H82.868V190.388z
"/>
</g>
<g>
<rect x="183.625" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,227.933h-52.804v-37.545h52.804V227.933z M184.595,225.993h48.924v-33.665h-48.924
V225.993z"/>
</g>
<g>
<rect x="234.489" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,263.538h-52.803v-37.544h52.803V263.538z M235.459,261.598h48.923v-33.664h-48.923
V261.598z"/>
</g>
<g>
<rect x="336.217" y="155.754" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,192.328h-53.488v-37.544h53.488V192.328z M337.187,190.388h49.608v-33.664h-49.608
V190.388z"/>
</g>
<g>
<rect x="234.489" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,227.933h-52.803v-37.545h52.803V227.933z M235.459,225.993h48.923v-33.665h-48.923
V225.993z"/>
</g>
<g>
<rect x="183.625" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,192.328h-52.804v-37.544h52.804V192.328z M184.595,190.388h48.924v-33.664h-48.924
V190.388z"/>
</g>
<g>
<rect x="234.489" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,192.328h-52.803v-37.544h52.803V192.328z M235.459,190.388h48.923v-33.664h-48.923
V190.388z"/>
</g>
<g>
<rect x="81.898" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M133.732,156.724H80.928v-29.328h52.803V156.724z M82.868,154.784h48.923v-25.448H82.868V154.784z
"/>
</g>
<g>
<rect x="234.489" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M286.323,333.928h-52.803v-36.726h52.803V333.928z M235.459,331.988h48.923v-32.846h-48.923
V331.988z"/>
</g>
<g>
<rect x="183.625" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M235.459,333.928h-52.804v-36.726h52.804V333.928z M184.595,331.988h48.924v-32.846h-48.924
V331.988z"/>
</g>
<g>
<rect x="81.898" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M133.732,333.928H80.928v-36.726h52.803V333.928z M82.868,331.988h48.923v-32.846H82.868V331.988z
"/>
</g>
<g>
<rect x="132.762" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M184.595,333.928h-52.803v-36.726h52.803V333.928z M133.732,331.988h48.923v-32.846h-48.923
V331.988z"/>
</g>
<g>
<rect x="32.403" y="298.172" style="fill:#FFFFFF;" width="49.494" height="34.786"/>
<path style="fill:#E8DFDB;" d="M82.868,333.928H31.434v-36.726h51.435V333.928z M33.374,331.988h47.555v-32.846H33.374V331.988z"
/>
</g>
<g>
<rect x="285.353" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M337.187,333.928h-52.804v-36.726h52.804V333.928z M286.323,331.988h48.924v-32.846h-48.924
V331.988z"/>
</g>
<g>
<rect x="336.217" y="191.358" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,227.933h-53.488v-37.545h53.488V227.933z M337.187,225.993h49.608v-33.665h-49.608
V225.993z"/>
</g>
<g>
<rect x="336.217" y="298.172" style="fill:#FFFFFF;" width="51.549" height="34.786"/>
<path style="fill:#E8DFDB;" d="M388.735,333.928h-53.488v-36.726h53.488V333.928z M337.187,331.988h49.608v-32.846h-49.608
V331.988z"/>
</g>
<g>
<rect x="336.217" y="226.963" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,263.538h-53.488v-37.544h53.488V263.538z M337.187,261.598h49.608v-33.664h-49.608
V261.598z"/>
</g>
<g>
<rect x="336.217" y="262.568" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,299.142h-53.488v-37.545h53.488V299.142z M337.187,297.202h49.608v-33.665h-49.608
V297.202z"/>
</g>
<g>
<rect x="183.625" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M235.459,156.724h-52.804v-29.328h52.804V156.724z M184.595,154.784h48.924v-25.448h-48.924
V154.784z"/>
</g>
<g>
<rect x="32.403" y="262.568" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,299.142H31.434v-37.545h51.435V299.142z M33.374,297.202h47.555v-33.665H33.374V297.202z"
/>
</g>
<g>
<rect x="132.762" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M184.595,156.724h-52.803v-29.328h52.803V156.724z M133.732,154.784h48.923v-25.448h-48.923
V154.784z"/>
</g>
<g>
<rect x="336.217" y="128.366" style="fill:#D95125;" width="51.549" height="27.388"/>
<path style="fill:#C1D1D9;" d="M388.735,156.724h-53.488v-29.328h53.488V156.724z M337.187,154.784h49.608v-25.448h-49.608
V154.784z"/>
</g>
<g>
<rect x="285.353" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M337.187,156.724h-52.804v-29.328h52.804V156.724z M286.323,154.784h48.924v-25.448h-48.924
V154.784z"/>
</g>
<g>
<rect x="234.489" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M286.323,156.724h-52.803v-29.328h52.803V156.724z M235.459,154.784h48.923v-25.448h-48.923
V154.784z"/>
</g>
<g>
<rect x="32.403" y="226.963" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,263.538H31.434v-37.544h51.435V263.538z M33.374,261.598h47.555v-33.664H33.374V261.598z"
/>
</g>
<g>
<rect x="32.403" y="191.358" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,227.933H31.434v-37.545h51.435V227.933z M33.374,225.993h47.555v-33.665H33.374V225.993z"
/>
</g>
<g>
<rect x="32.403" y="128.366" style="fill:#8CA4D5;" width="49.494" height="27.388"/>
<path style="fill:#C1D1D9;" d="M82.868,156.724H31.434v-29.328h51.435V156.724z M33.374,154.784h47.555v-25.448H33.374V154.784z"
/>
</g>
<g>
<rect x="32.403" y="155.754" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,192.328H31.434v-37.544h51.435V192.328z M33.374,190.388h47.555v-33.664H33.374V190.388z"
/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,290 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 419.484 378.609" style="enable-background:new 0 0 419.484 378.609;" xml:space="preserve">
<g>
<g>
<g>
<path style="fill:#FEE8D4;" d="M368.875,372.929H50.609c-24.475,0-44.317-19.841-44.317-44.317V82.139
c0-24.475,19.841-44.317,44.317-44.317h318.266c24.475,0,44.317,19.841,44.317,44.317v246.474
C413.191,353.088,393.35,372.929,368.875,372.929z"/>
<path style="fill:#84CFC6;" d="M413.191,117.952V81.662c0-24.212-19.628-43.84-43.84-43.84H50.132
c-24.212,0-43.84,19.628-43.84,43.84v36.291H413.191z"/>
<path style="opacity:0.63;fill:#CBCCCE;" d="M369.352,37.822H50.132c-24.212,0-43.84,19.628-43.84,43.84v247.427
c0,24.212,19.628,43.84,43.84,43.84h319.219c24.212,0,43.84-19.628,43.84-43.84V81.662
C413.192,57.45,393.564,37.822,369.352,37.822z M395.349,268.898c0,25.299-19.628,45.808-43.84,45.808H70.326
c-24.212,0-43.84-20.509-43.84-45.808V91.905c0-25.299,19.628-45.808,43.84-45.808h281.183c24.212,0,43.84,20.509,43.84,45.808
V268.898z"/>
<g>
<path style="opacity:0.63;fill:#CBCCCE;" d="M363.655,351.252H57.079c-23.253,0-42.104-18.22-42.104-40.695v13.138
c0,22.475,18.851,40.695,42.104,40.695h306.576c23.253,0,42.104-18.22,42.104-40.695v-13.138
C405.759,333.032,386.909,351.252,363.655,351.252z"/>
</g>
<g>
<g>
<ellipse transform="matrix(0.2318 -0.9728 0.9728 0.2318 -9.9791 115.0937)" style="fill:#001239;" cx="67.883" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M72.853,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258C81.612,71.533,77.69,75.454,72.853,75.454z"
/>
<path style="fill:#0087BE;" d="M69.301,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592C76.365,46.296,73.202,49.459,69.301,49.459z"
/>
</g>
</g>
<g>
<ellipse transform="matrix(0.2318 -0.9728 0.9728 0.2318 212.5528 396.8905)" style="fill:#001239;" cx="357.572" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M362.541,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258C371.3,71.533,367.379,75.454,362.541,75.454z
"/>
<path style="fill:#0087BE;" d="M358.989,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C366.054,46.296,362.891,49.459,358.989,49.459z"/>
</g>
</g>
<g>
<ellipse transform="matrix(0.1612 -0.9869 0.9869 0.1612 74.9027 215.8628)" style="fill:#001239;" cx="164.446" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M169.416,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258
C178.174,71.533,174.253,75.454,169.416,75.454z"/>
<path style="fill:#0087BE;" d="M165.864,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C172.928,46.296,169.765,49.459,165.864,49.459z"/>
</g>
</g>
<g>
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 31.2882 203.2669)" style="fill:#001239;" cx="261.009" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M265.978,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258
C274.737,71.533,270.816,75.454,265.978,75.454z"/>
<path style="fill:#0087BE;" d="M262.426,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C269.491,46.296,266.328,49.459,262.426,49.459z"/>
</g>
</g>
</g>
</g>
<path style="opacity:0.5;fill:#FFFFFF;" d="M44.299,45.849c0,0-25.562,3.195-30.583,24.193
c-5.021,20.998-5.934,84.447,3.195,82.165c9.129-2.282,2.739-60.71,11.868-79.882C37.908,53.152,48.407,48.131,44.299,45.849z"/>
</g>
<g>
<g>
<rect x="183.625" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,299.142h-52.804v-37.545h52.804V299.142z M184.595,297.202h48.924v-33.665h-48.924
V297.202z"/>
</g>
<g>
<rect x="132.762" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,299.142h-52.803v-37.545h52.803V299.142z M133.732,297.202h48.923v-33.665h-48.923
V297.202z"/>
</g>
<g>
<rect x="81.898" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,299.142H80.928v-37.545h52.803V299.142z M82.868,297.202h48.923v-33.665H82.868V297.202z
"/>
</g>
<g>
<rect x="81.898" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,263.538H80.928v-37.544h52.803V263.538z M82.868,261.598h48.923v-33.664H82.868V261.598z
"/>
</g>
<g>
<rect x="285.353" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,299.142h-52.804v-37.545h52.804V299.142z M286.323,297.202h48.924v-33.665h-48.924
V297.202z"/>
</g>
<g>
<rect x="285.353" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,227.933h-52.804v-37.545h52.804V227.933z M286.323,225.993h48.924v-33.665h-48.924
V225.993z"/>
</g>
<g>
<rect x="234.489" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,299.142h-52.803v-37.545h52.803V299.142z M235.459,297.202h48.923v-33.665h-48.923
V297.202z"/>
</g>
<g>
<rect x="285.353" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,192.328h-52.804v-37.544h52.804V192.328z M286.323,190.388h48.924v-33.664h-48.924
V190.388z"/>
</g>
<g>
<rect x="285.353" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,263.538h-52.804v-37.544h52.804V263.538z M286.323,261.598h48.924v-33.664h-48.924
V261.598z"/>
</g>
<g>
<rect x="81.898" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,227.933H80.928v-37.545h52.803V227.933z M82.868,225.993h48.923v-33.665H82.868V225.993z
"/>
</g>
<g>
<rect x="132.762" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,192.328h-52.803v-37.544h52.803V192.328z M133.732,190.388h48.923v-33.664h-48.923
V190.388z"/>
</g>
<g>
<rect x="132.762" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,263.538h-52.803v-37.544h52.803V263.538z M133.732,261.598h48.923v-33.664h-48.923
V261.598z"/>
</g>
<g>
<rect x="183.625" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,263.538h-52.804v-37.544h52.804V263.538z M184.595,261.598h48.924v-33.664h-48.924
V261.598z"/>
</g>
<g>
<rect x="132.762" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,227.933h-52.803v-37.545h52.803V227.933z M133.732,225.993h48.923v-33.665h-48.923
V225.993z"/>
</g>
<g>
<rect x="81.898" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,192.328H80.928v-37.544h52.803V192.328z M82.868,190.388h48.923v-33.664H82.868V190.388z
"/>
</g>
<g>
<rect x="183.625" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,227.933h-52.804v-37.545h52.804V227.933z M184.595,225.993h48.924v-33.665h-48.924
V225.993z"/>
</g>
<g>
<rect x="234.489" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,263.538h-52.803v-37.544h52.803V263.538z M235.459,261.598h48.923v-33.664h-48.923
V261.598z"/>
</g>
<g>
<rect x="336.217" y="155.754" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,192.328h-53.488v-37.544h53.488V192.328z M337.187,190.388h49.608v-33.664h-49.608
V190.388z"/>
</g>
<g>
<rect x="234.489" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,227.933h-52.803v-37.545h52.803V227.933z M235.459,225.993h48.923v-33.665h-48.923
V225.993z"/>
</g>
<g>
<rect x="183.625" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,192.328h-52.804v-37.544h52.804V192.328z M184.595,190.388h48.924v-33.664h-48.924
V190.388z"/>
</g>
<g>
<rect x="234.489" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,192.328h-52.803v-37.544h52.803V192.328z M235.459,190.388h48.923v-33.664h-48.923
V190.388z"/>
</g>
<g>
<rect x="81.898" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M133.732,156.724H80.928v-29.328h52.803V156.724z M82.868,154.784h48.923v-25.448H82.868V154.784z
"/>
</g>
<g>
<rect x="234.489" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M286.323,333.928h-52.803v-36.726h52.803V333.928z M235.459,331.988h48.923v-32.846h-48.923
V331.988z"/>
</g>
<g>
<rect x="183.625" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M235.459,333.928h-52.804v-36.726h52.804V333.928z M184.595,331.988h48.924v-32.846h-48.924
V331.988z"/>
</g>
<g>
<rect x="81.898" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M133.732,333.928H80.928v-36.726h52.803V333.928z M82.868,331.988h48.923v-32.846H82.868V331.988z
"/>
</g>
<g>
<rect x="132.762" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M184.595,333.928h-52.803v-36.726h52.803V333.928z M133.732,331.988h48.923v-32.846h-48.923
V331.988z"/>
</g>
<g>
<rect x="32.403" y="298.172" style="fill:#FFFFFF;" width="49.494" height="34.786"/>
<path style="fill:#E8DFDB;" d="M82.868,333.928H31.434v-36.726h51.435V333.928z M33.374,331.988h47.555v-32.846H33.374V331.988z"
/>
</g>
<g>
<rect x="285.353" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M337.187,333.928h-52.804v-36.726h52.804V333.928z M286.323,331.988h48.924v-32.846h-48.924
V331.988z"/>
</g>
<g>
<rect x="336.217" y="191.358" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,227.933h-53.488v-37.545h53.488V227.933z M337.187,225.993h49.608v-33.665h-49.608
V225.993z"/>
</g>
<g>
<rect x="336.217" y="298.172" style="fill:#FFFFFF;" width="51.549" height="34.786"/>
<path style="fill:#E8DFDB;" d="M388.735,333.928h-53.488v-36.726h53.488V333.928z M337.187,331.988h49.608v-32.846h-49.608
V331.988z"/>
</g>
<g>
<rect x="336.217" y="226.963" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,263.538h-53.488v-37.544h53.488V263.538z M337.187,261.598h49.608v-33.664h-49.608
V261.598z"/>
</g>
<g>
<rect x="336.217" y="262.568" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,299.142h-53.488v-37.545h53.488V299.142z M337.187,297.202h49.608v-33.665h-49.608
V297.202z"/>
</g>
<g>
<rect x="183.625" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M235.459,156.724h-52.804v-29.328h52.804V156.724z M184.595,154.784h48.924v-25.448h-48.924
V154.784z"/>
</g>
<g>
<rect x="32.403" y="262.568" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,299.142H31.434v-37.545h51.435V299.142z M33.374,297.202h47.555v-33.665H33.374V297.202z"
/>
</g>
<g>
<rect x="132.762" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M184.595,156.724h-52.803v-29.328h52.803V156.724z M133.732,154.784h48.923v-25.448h-48.923
V154.784z"/>
</g>
<g>
<rect x="336.217" y="128.366" style="fill:#D95125;" width="51.549" height="27.388"/>
<path style="fill:#C1D1D9;" d="M388.735,156.724h-53.488v-29.328h53.488V156.724z M337.187,154.784h49.608v-25.448h-49.608
V154.784z"/>
</g>
<g>
<rect x="285.353" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M337.187,156.724h-52.804v-29.328h52.804V156.724z M286.323,154.784h48.924v-25.448h-48.924
V154.784z"/>
</g>
<g>
<rect x="234.489" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M286.323,156.724h-52.803v-29.328h52.803V156.724z M235.459,154.784h48.923v-25.448h-48.923
V154.784z"/>
</g>
<g>
<rect x="32.403" y="226.963" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,263.538H31.434v-37.544h51.435V263.538z M33.374,261.598h47.555v-33.664H33.374V261.598z"
/>
</g>
<g>
<rect x="32.403" y="191.358" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,227.933H31.434v-37.545h51.435V227.933z M33.374,225.993h47.555v-33.665H33.374V225.993z"
/>
</g>
<g>
<rect x="32.403" y="128.366" style="fill:#8CA4D5;" width="49.494" height="27.388"/>
<path style="fill:#C1D1D9;" d="M82.868,156.724H31.434v-29.328h51.435V156.724z M33.374,154.784h47.555v-25.448H33.374V154.784z"
/>
</g>
<g>
<rect x="32.403" y="155.754" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,192.328H31.434v-37.544h51.435V192.328z M33.374,190.388h47.555v-33.664H33.374V190.388z"
/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,290 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 419.484 378.609" style="enable-background:new 0 0 419.484 378.609;" xml:space="preserve">
<g>
<g>
<g>
<path style="fill:#FEE8D4;" d="M368.875,372.929H50.609c-24.475,0-44.317-19.841-44.317-44.317V82.139
c0-24.475,19.841-44.317,44.317-44.317h318.266c24.475,0,44.317,19.841,44.317,44.317v246.474
C413.191,353.088,393.35,372.929,368.875,372.929z"/>
<path style="fill:#84CFC6;" d="M413.191,117.952V81.662c0-24.212-19.628-43.84-43.84-43.84H50.132
c-24.212,0-43.84,19.628-43.84,43.84v36.291H413.191z"/>
<path style="opacity:0.63;fill:#CBCCCE;" d="M369.352,37.822H50.132c-24.212,0-43.84,19.628-43.84,43.84v247.427
c0,24.212,19.628,43.84,43.84,43.84h319.219c24.212,0,43.84-19.628,43.84-43.84V81.662
C413.192,57.45,393.564,37.822,369.352,37.822z M395.349,268.898c0,25.299-19.628,45.808-43.84,45.808H70.326
c-24.212,0-43.84-20.509-43.84-45.808V91.905c0-25.299,19.628-45.808,43.84-45.808h281.183c24.212,0,43.84,20.509,43.84,45.808
V268.898z"/>
<g>
<path style="opacity:0.63;fill:#CBCCCE;" d="M363.655,351.252H57.079c-23.253,0-42.104-18.22-42.104-40.695v13.138
c0,22.475,18.851,40.695,42.104,40.695h306.576c23.253,0,42.104-18.22,42.104-40.695v-13.138
C405.759,333.032,386.909,351.252,363.655,351.252z"/>
</g>
<g>
<g>
<ellipse transform="matrix(0.2318 -0.9728 0.9728 0.2318 -9.9791 115.0937)" style="fill:#001239;" cx="67.883" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M72.853,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258C81.612,71.533,77.69,75.454,72.853,75.454z"
/>
<path style="fill:#0087BE;" d="M69.301,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592C76.365,46.296,73.202,49.459,69.301,49.459z"
/>
</g>
</g>
<g>
<ellipse transform="matrix(0.2318 -0.9728 0.9728 0.2318 212.5528 396.8905)" style="fill:#001239;" cx="357.572" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M362.541,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258C371.3,71.533,367.379,75.454,362.541,75.454z
"/>
<path style="fill:#0087BE;" d="M358.989,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C366.054,46.296,362.891,49.459,358.989,49.459z"/>
</g>
</g>
<g>
<ellipse transform="matrix(0.1612 -0.9869 0.9869 0.1612 74.9027 215.8628)" style="fill:#001239;" cx="164.446" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M169.416,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258
C178.174,71.533,174.253,75.454,169.416,75.454z"/>
<path style="fill:#0087BE;" d="M165.864,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C172.928,46.296,169.765,49.459,165.864,49.459z"/>
</g>
</g>
<g>
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 31.2882 203.2669)" style="fill:#001239;" cx="261.009" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M265.978,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258
C274.737,71.533,270.816,75.454,265.978,75.454z"/>
<path style="fill:#0087BE;" d="M262.426,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C269.491,46.296,266.328,49.459,262.426,49.459z"/>
</g>
</g>
</g>
</g>
<path style="opacity:0.5;fill:#FFFFFF;" d="M44.299,45.849c0,0-25.562,3.195-30.583,24.193
c-5.021,20.998-5.934,84.447,3.195,82.165c9.129-2.282,2.739-60.71,11.868-79.882C37.908,53.152,48.407,48.131,44.299,45.849z"/>
</g>
<g>
<g>
<rect x="183.625" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,299.142h-52.804v-37.545h52.804V299.142z M184.595,297.202h48.924v-33.665h-48.924
V297.202z"/>
</g>
<g>
<rect x="132.762" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,299.142h-52.803v-37.545h52.803V299.142z M133.732,297.202h48.923v-33.665h-48.923
V297.202z"/>
</g>
<g>
<rect x="81.898" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,299.142H80.928v-37.545h52.803V299.142z M82.868,297.202h48.923v-33.665H82.868V297.202z
"/>
</g>
<g>
<rect x="81.898" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,263.538H80.928v-37.544h52.803V263.538z M82.868,261.598h48.923v-33.664H82.868V261.598z
"/>
</g>
<g>
<rect x="285.353" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,299.142h-52.804v-37.545h52.804V299.142z M286.323,297.202h48.924v-33.665h-48.924
V297.202z"/>
</g>
<g>
<rect x="285.353" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,227.933h-52.804v-37.545h52.804V227.933z M286.323,225.993h48.924v-33.665h-48.924
V225.993z"/>
</g>
<g>
<rect x="234.489" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,299.142h-52.803v-37.545h52.803V299.142z M235.459,297.202h48.923v-33.665h-48.923
V297.202z"/>
</g>
<g>
<rect x="285.353" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,192.328h-52.804v-37.544h52.804V192.328z M286.323,190.388h48.924v-33.664h-48.924
V190.388z"/>
</g>
<g>
<rect x="285.353" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,263.538h-52.804v-37.544h52.804V263.538z M286.323,261.598h48.924v-33.664h-48.924
V261.598z"/>
</g>
<g>
<rect x="81.898" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,227.933H80.928v-37.545h52.803V227.933z M82.868,225.993h48.923v-33.665H82.868V225.993z
"/>
</g>
<g>
<rect x="132.762" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,192.328h-52.803v-37.544h52.803V192.328z M133.732,190.388h48.923v-33.664h-48.923
V190.388z"/>
</g>
<g>
<rect x="132.762" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,263.538h-52.803v-37.544h52.803V263.538z M133.732,261.598h48.923v-33.664h-48.923
V261.598z"/>
</g>
<g>
<rect x="183.625" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,263.538h-52.804v-37.544h52.804V263.538z M184.595,261.598h48.924v-33.664h-48.924
V261.598z"/>
</g>
<g>
<rect x="132.762" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,227.933h-52.803v-37.545h52.803V227.933z M133.732,225.993h48.923v-33.665h-48.923
V225.993z"/>
</g>
<g>
<rect x="81.898" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,192.328H80.928v-37.544h52.803V192.328z M82.868,190.388h48.923v-33.664H82.868V190.388z
"/>
</g>
<g>
<rect x="183.625" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,227.933h-52.804v-37.545h52.804V227.933z M184.595,225.993h48.924v-33.665h-48.924
V225.993z"/>
</g>
<g>
<rect x="234.489" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,263.538h-52.803v-37.544h52.803V263.538z M235.459,261.598h48.923v-33.664h-48.923
V261.598z"/>
</g>
<g>
<rect x="336.217" y="155.754" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,192.328h-53.488v-37.544h53.488V192.328z M337.187,190.388h49.608v-33.664h-49.608
V190.388z"/>
</g>
<g>
<rect x="234.489" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,227.933h-52.803v-37.545h52.803V227.933z M235.459,225.993h48.923v-33.665h-48.923
V225.993z"/>
</g>
<g>
<rect x="183.625" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,192.328h-52.804v-37.544h52.804V192.328z M184.595,190.388h48.924v-33.664h-48.924
V190.388z"/>
</g>
<g>
<rect x="234.489" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,192.328h-52.803v-37.544h52.803V192.328z M235.459,190.388h48.923v-33.664h-48.923
V190.388z"/>
</g>
<g>
<rect x="81.898" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M133.732,156.724H80.928v-29.328h52.803V156.724z M82.868,154.784h48.923v-25.448H82.868V154.784z
"/>
</g>
<g>
<rect x="234.489" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M286.323,333.928h-52.803v-36.726h52.803V333.928z M235.459,331.988h48.923v-32.846h-48.923
V331.988z"/>
</g>
<g>
<rect x="183.625" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M235.459,333.928h-52.804v-36.726h52.804V333.928z M184.595,331.988h48.924v-32.846h-48.924
V331.988z"/>
</g>
<g>
<rect x="81.898" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M133.732,333.928H80.928v-36.726h52.803V333.928z M82.868,331.988h48.923v-32.846H82.868V331.988z
"/>
</g>
<g>
<rect x="132.762" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M184.595,333.928h-52.803v-36.726h52.803V333.928z M133.732,331.988h48.923v-32.846h-48.923
V331.988z"/>
</g>
<g>
<rect x="32.403" y="298.172" style="fill:#FFFFFF;" width="49.494" height="34.786"/>
<path style="fill:#E8DFDB;" d="M82.868,333.928H31.434v-36.726h51.435V333.928z M33.374,331.988h47.555v-32.846H33.374V331.988z"
/>
</g>
<g>
<rect x="285.353" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M337.187,333.928h-52.804v-36.726h52.804V333.928z M286.323,331.988h48.924v-32.846h-48.924
V331.988z"/>
</g>
<g>
<rect x="336.217" y="191.358" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,227.933h-53.488v-37.545h53.488V227.933z M337.187,225.993h49.608v-33.665h-49.608
V225.993z"/>
</g>
<g>
<rect x="336.217" y="298.172" style="fill:#FFFFFF;" width="51.549" height="34.786"/>
<path style="fill:#E8DFDB;" d="M388.735,333.928h-53.488v-36.726h53.488V333.928z M337.187,331.988h49.608v-32.846h-49.608
V331.988z"/>
</g>
<g>
<rect x="336.217" y="226.963" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,263.538h-53.488v-37.544h53.488V263.538z M337.187,261.598h49.608v-33.664h-49.608
V261.598z"/>
</g>
<g>
<rect x="336.217" y="262.568" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,299.142h-53.488v-37.545h53.488V299.142z M337.187,297.202h49.608v-33.665h-49.608
V297.202z"/>
</g>
<g>
<rect x="183.625" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M235.459,156.724h-52.804v-29.328h52.804V156.724z M184.595,154.784h48.924v-25.448h-48.924
V154.784z"/>
</g>
<g>
<rect x="32.403" y="262.568" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,299.142H31.434v-37.545h51.435V299.142z M33.374,297.202h47.555v-33.665H33.374V297.202z"
/>
</g>
<g>
<rect x="132.762" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M184.595,156.724h-52.803v-29.328h52.803V156.724z M133.732,154.784h48.923v-25.448h-48.923
V154.784z"/>
</g>
<g>
<rect x="336.217" y="128.366" style="fill:#D95125;" width="51.549" height="27.388"/>
<path style="fill:#C1D1D9;" d="M388.735,156.724h-53.488v-29.328h53.488V156.724z M337.187,154.784h49.608v-25.448h-49.608
V154.784z"/>
</g>
<g>
<rect x="285.353" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M337.187,156.724h-52.804v-29.328h52.804V156.724z M286.323,154.784h48.924v-25.448h-48.924
V154.784z"/>
</g>
<g>
<rect x="234.489" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M286.323,156.724h-52.803v-29.328h52.803V156.724z M235.459,154.784h48.923v-25.448h-48.923
V154.784z"/>
</g>
<g>
<rect x="32.403" y="226.963" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,263.538H31.434v-37.544h51.435V263.538z M33.374,261.598h47.555v-33.664H33.374V261.598z"
/>
</g>
<g>
<rect x="32.403" y="191.358" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,227.933H31.434v-37.545h51.435V227.933z M33.374,225.993h47.555v-33.665H33.374V225.993z"
/>
</g>
<g>
<rect x="32.403" y="128.366" style="fill:#8CA4D5;" width="49.494" height="27.388"/>
<path style="fill:#C1D1D9;" d="M82.868,156.724H31.434v-29.328h51.435V156.724z M33.374,154.784h47.555v-25.448H33.374V154.784z"
/>
</g>
<g>
<rect x="32.403" y="155.754" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,192.328H31.434v-37.544h51.435V192.328z M33.374,190.388h47.555v-33.664H33.374V190.388z"
/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,290 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 27.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 419.484 378.609" style="enable-background:new 0 0 419.484 378.609;" xml:space="preserve">
<g>
<g>
<g>
<path style="fill:#FEE8D4;" d="M368.875,372.929H50.609c-24.475,0-44.317-19.841-44.317-44.317V82.139
c0-24.475,19.841-44.317,44.317-44.317h318.266c24.475,0,44.317,19.841,44.317,44.317v246.474
C413.191,353.088,393.35,372.929,368.875,372.929z"/>
<path style="fill:#84CFC6;" d="M413.191,117.952V81.662c0-24.212-19.628-43.84-43.84-43.84H50.132
c-24.212,0-43.84,19.628-43.84,43.84v36.291H413.191z"/>
<path style="opacity:0.63;fill:#CBCCCE;" d="M369.352,37.822H50.132c-24.212,0-43.84,19.628-43.84,43.84v247.427
c0,24.212,19.628,43.84,43.84,43.84h319.219c24.212,0,43.84-19.628,43.84-43.84V81.662
C413.192,57.45,393.564,37.822,369.352,37.822z M395.349,268.898c0,25.299-19.628,45.808-43.84,45.808H70.326
c-24.212,0-43.84-20.509-43.84-45.808V91.905c0-25.299,19.628-45.808,43.84-45.808h281.183c24.212,0,43.84,20.509,43.84,45.808
V268.898z"/>
<g>
<path style="opacity:0.63;fill:#CBCCCE;" d="M363.655,351.252H57.079c-23.253,0-42.104-18.22-42.104-40.695v13.138
c0,22.475,18.851,40.695,42.104,40.695h306.576c23.253,0,42.104-18.22,42.104-40.695v-13.138
C405.759,333.032,386.909,351.252,363.655,351.252z"/>
</g>
<g>
<g>
<ellipse transform="matrix(0.2318 -0.9728 0.9728 0.2318 -9.9791 115.0937)" style="fill:#001239;" cx="67.883" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M72.853,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258C81.612,71.533,77.69,75.454,72.853,75.454z"
/>
<path style="fill:#0087BE;" d="M69.301,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592C76.365,46.296,73.202,49.459,69.301,49.459z"
/>
</g>
</g>
<g>
<ellipse transform="matrix(0.2318 -0.9728 0.9728 0.2318 212.5528 396.8905)" style="fill:#001239;" cx="357.572" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M362.541,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258C371.3,71.533,367.379,75.454,362.541,75.454z
"/>
<path style="fill:#0087BE;" d="M358.989,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C366.054,46.296,362.891,49.459,358.989,49.459z"/>
</g>
</g>
<g>
<ellipse transform="matrix(0.1612 -0.9869 0.9869 0.1612 74.9027 215.8628)" style="fill:#001239;" cx="164.446" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M169.416,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258
C178.174,71.533,174.253,75.454,169.416,75.454z"/>
<path style="fill:#0087BE;" d="M165.864,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C172.928,46.296,169.765,49.459,165.864,49.459z"/>
</g>
</g>
<g>
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 31.2882 203.2669)" style="fill:#001239;" cx="261.009" cy="63.865" rx="20.888" ry="20.888"/>
<g>
<path style="fill:#004F8A;" d="M265.978,75.454h-9.939c-4.837,0-8.759-3.921-8.759-8.759V14.438
c0-4.837,3.921-8.759,8.759-8.759h9.939c4.837,0,8.759,3.921,8.759,8.759v52.258
C274.737,71.533,270.816,75.454,265.978,75.454z"/>
<path style="fill:#0087BE;" d="M262.426,49.459h-5.594c-3.902,0-7.065-3.163-7.065-7.065V16.802
c0-3.902,3.163-7.065,7.065-7.065h5.594c3.902,0,7.065,3.163,7.065,7.065v25.592
C269.491,46.296,266.328,49.459,262.426,49.459z"/>
</g>
</g>
</g>
</g>
<path style="opacity:0.5;fill:#FFFFFF;" d="M44.299,45.849c0,0-25.562,3.195-30.583,24.193
c-5.021,20.998-5.934,84.447,3.195,82.165c9.129-2.282,2.739-60.71,11.868-79.882C37.908,53.152,48.407,48.131,44.299,45.849z"/>
</g>
<g>
<g>
<rect x="183.625" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,299.142h-52.804v-37.545h52.804V299.142z M184.595,297.202h48.924v-33.665h-48.924
V297.202z"/>
</g>
<g>
<rect x="132.762" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,299.142h-52.803v-37.545h52.803V299.142z M133.732,297.202h48.923v-33.665h-48.923
V297.202z"/>
</g>
<g>
<rect x="81.898" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,299.142H80.928v-37.545h52.803V299.142z M82.868,297.202h48.923v-33.665H82.868V297.202z
"/>
</g>
<g>
<rect x="81.898" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,263.538H80.928v-37.544h52.803V263.538z M82.868,261.598h48.923v-33.664H82.868V261.598z
"/>
</g>
<g>
<rect x="285.353" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,299.142h-52.804v-37.545h52.804V299.142z M286.323,297.202h48.924v-33.665h-48.924
V297.202z"/>
</g>
<g>
<rect x="285.353" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,227.933h-52.804v-37.545h52.804V227.933z M286.323,225.993h48.924v-33.665h-48.924
V225.993z"/>
</g>
<g>
<rect x="234.489" y="262.568" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,299.142h-52.803v-37.545h52.803V299.142z M235.459,297.202h48.923v-33.665h-48.923
V297.202z"/>
</g>
<g>
<rect x="285.353" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,192.328h-52.804v-37.544h52.804V192.328z M286.323,190.388h48.924v-33.664h-48.924
V190.388z"/>
</g>
<g>
<rect x="285.353" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M337.187,263.538h-52.804v-37.544h52.804V263.538z M286.323,261.598h48.924v-33.664h-48.924
V261.598z"/>
</g>
<g>
<rect x="81.898" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,227.933H80.928v-37.545h52.803V227.933z M82.868,225.993h48.923v-33.665H82.868V225.993z
"/>
</g>
<g>
<rect x="132.762" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,192.328h-52.803v-37.544h52.803V192.328z M133.732,190.388h48.923v-33.664h-48.923
V190.388z"/>
</g>
<g>
<rect x="132.762" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,263.538h-52.803v-37.544h52.803V263.538z M133.732,261.598h48.923v-33.664h-48.923
V261.598z"/>
</g>
<g>
<rect x="183.625" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,263.538h-52.804v-37.544h52.804V263.538z M184.595,261.598h48.924v-33.664h-48.924
V261.598z"/>
</g>
<g>
<rect x="132.762" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M184.595,227.933h-52.803v-37.545h52.803V227.933z M133.732,225.993h48.923v-33.665h-48.923
V225.993z"/>
</g>
<g>
<rect x="81.898" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M133.732,192.328H80.928v-37.544h52.803V192.328z M82.868,190.388h48.923v-33.664H82.868V190.388z
"/>
</g>
<g>
<rect x="183.625" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,227.933h-52.804v-37.545h52.804V227.933z M184.595,225.993h48.924v-33.665h-48.924
V225.993z"/>
</g>
<g>
<rect x="234.489" y="226.963" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,263.538h-52.803v-37.544h52.803V263.538z M235.459,261.598h48.923v-33.664h-48.923
V261.598z"/>
</g>
<g>
<rect x="336.217" y="155.754" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,192.328h-53.488v-37.544h53.488V192.328z M337.187,190.388h49.608v-33.664h-49.608
V190.388z"/>
</g>
<g>
<rect x="234.489" y="191.358" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,227.933h-52.803v-37.545h52.803V227.933z M235.459,225.993h48.923v-33.665h-48.923
V225.993z"/>
</g>
<g>
<rect x="183.625" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M235.459,192.328h-52.804v-37.544h52.804V192.328z M184.595,190.388h48.924v-33.664h-48.924
V190.388z"/>
</g>
<g>
<rect x="234.489" y="155.754" style="fill:#FFFFFF;" width="50.864" height="35.605"/>
<path style="fill:#E8DFDB;" d="M286.323,192.328h-52.803v-37.544h52.803V192.328z M235.459,190.388h48.923v-33.664h-48.923
V190.388z"/>
</g>
<g>
<rect x="81.898" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M133.732,156.724H80.928v-29.328h52.803V156.724z M82.868,154.784h48.923v-25.448H82.868V154.784z
"/>
</g>
<g>
<rect x="234.489" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M286.323,333.928h-52.803v-36.726h52.803V333.928z M235.459,331.988h48.923v-32.846h-48.923
V331.988z"/>
</g>
<g>
<rect x="183.625" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M235.459,333.928h-52.804v-36.726h52.804V333.928z M184.595,331.988h48.924v-32.846h-48.924
V331.988z"/>
</g>
<g>
<rect x="81.898" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M133.732,333.928H80.928v-36.726h52.803V333.928z M82.868,331.988h48.923v-32.846H82.868V331.988z
"/>
</g>
<g>
<rect x="132.762" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M184.595,333.928h-52.803v-36.726h52.803V333.928z M133.732,331.988h48.923v-32.846h-48.923
V331.988z"/>
</g>
<g>
<rect x="32.403" y="298.172" style="fill:#FFFFFF;" width="49.494" height="34.786"/>
<path style="fill:#E8DFDB;" d="M82.868,333.928H31.434v-36.726h51.435V333.928z M33.374,331.988h47.555v-32.846H33.374V331.988z"
/>
</g>
<g>
<rect x="285.353" y="298.172" style="fill:#FFFFFF;" width="50.864" height="34.786"/>
<path style="fill:#E8DFDB;" d="M337.187,333.928h-52.804v-36.726h52.804V333.928z M286.323,331.988h48.924v-32.846h-48.924
V331.988z"/>
</g>
<g>
<rect x="336.217" y="191.358" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,227.933h-53.488v-37.545h53.488V227.933z M337.187,225.993h49.608v-33.665h-49.608
V225.993z"/>
</g>
<g>
<rect x="336.217" y="298.172" style="fill:#FFFFFF;" width="51.549" height="34.786"/>
<path style="fill:#E8DFDB;" d="M388.735,333.928h-53.488v-36.726h53.488V333.928z M337.187,331.988h49.608v-32.846h-49.608
V331.988z"/>
</g>
<g>
<rect x="336.217" y="226.963" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,263.538h-53.488v-37.544h53.488V263.538z M337.187,261.598h49.608v-33.664h-49.608
V261.598z"/>
</g>
<g>
<rect x="336.217" y="262.568" style="fill:#FFFFFF;" width="51.549" height="35.605"/>
<path style="fill:#E8DFDB;" d="M388.735,299.142h-53.488v-37.545h53.488V299.142z M337.187,297.202h49.608v-33.665h-49.608
V297.202z"/>
</g>
<g>
<rect x="183.625" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M235.459,156.724h-52.804v-29.328h52.804V156.724z M184.595,154.784h48.924v-25.448h-48.924
V154.784z"/>
</g>
<g>
<rect x="32.403" y="262.568" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,299.142H31.434v-37.545h51.435V299.142z M33.374,297.202h47.555v-33.665H33.374V297.202z"
/>
</g>
<g>
<rect x="132.762" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M184.595,156.724h-52.803v-29.328h52.803V156.724z M133.732,154.784h48.923v-25.448h-48.923
V154.784z"/>
</g>
<g>
<rect x="336.217" y="128.366" style="fill:#D95125;" width="51.549" height="27.388"/>
<path style="fill:#C1D1D9;" d="M388.735,156.724h-53.488v-29.328h53.488V156.724z M337.187,154.784h49.608v-25.448h-49.608
V154.784z"/>
</g>
<g>
<rect x="285.353" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M337.187,156.724h-52.804v-29.328h52.804V156.724z M286.323,154.784h48.924v-25.448h-48.924
V154.784z"/>
</g>
<g>
<rect x="234.489" y="128.366" style="fill:#8CA4D5;" width="50.864" height="27.388"/>
<path style="fill:#C1D1D9;" d="M286.323,156.724h-52.803v-29.328h52.803V156.724z M235.459,154.784h48.923v-25.448h-48.923
V154.784z"/>
</g>
<g>
<rect x="32.403" y="226.963" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,263.538H31.434v-37.544h51.435V263.538z M33.374,261.598h47.555v-33.664H33.374V261.598z"
/>
</g>
<g>
<rect x="32.403" y="191.358" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,227.933H31.434v-37.545h51.435V227.933z M33.374,225.993h47.555v-33.665H33.374V225.993z"
/>
</g>
<g>
<rect x="32.403" y="128.366" style="fill:#8CA4D5;" width="49.494" height="27.388"/>
<path style="fill:#C1D1D9;" d="M82.868,156.724H31.434v-29.328h51.435V156.724z M33.374,154.784h47.555v-25.448H33.374V154.784z"
/>
</g>
<g>
<rect x="32.403" y="155.754" style="fill:#FFFFFF;" width="49.494" height="35.605"/>
<path style="fill:#E8DFDB;" d="M82.868,192.328H31.434v-37.544h51.435V192.328z M33.374,190.388h47.555v-33.664H33.374V190.388z"
/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -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" width="75px" height="75px" viewBox="0 0 75 75" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(3.529412%,4.705882%,4.313726%);fill-opacity:1;" d="M 16.628906 6.183594 C 16.171875 7.929688 14.707031 8.722656 11.433594 8.996094 L 6.875 9.375 L 6.875 70.625 L 68.125 70.625 L 68.488281 60.3125 C 68.71875 53.769531 68.375 50 67.550781 50 C 66.835938 50 65.828125 49.988281 65.3125 49.980469 C 64.796875 49.96875 64.09375 53.484375 63.75 57.792969 L 63.125 65.625 L 11.875 65.625 L 11.53125 44.6875 L 11.191406 23.75 L 63.75 23.75 L 63.75 28.214844 C 63.75 31.796875 64.183594 32.601562 65.9375 32.261719 C 67.828125 31.898438 68.125 30.3125 68.125 20.609375 L 68.125 9.375 L 63.566406 8.996094 C 60.292969 8.722656 58.828125 7.929688 58.371094 6.183594 C 57.542969 3.015625 54.949219 3.054688 54.113281 6.25 C 53.5 8.585938 52.40625 8.75 37.5 8.75 C 22.59375 8.75 21.5 8.585938 20.886719 6.25 C 20.050781 3.054688 17.457031 3.015625 16.628906 6.183594 M 13.75 16.25 C 13.75 16.9375 14.628906 17.5 15.699219 17.5 C 16.769531 17.5 17.300781 16.9375 16.875 16.25 C 16.449219 15.5625 15.574219 15 14.925781 15 C 14.277344 15 13.75 15.5625 13.75 16.25 M 20.625 16.25 C 20.125 17.0625 26.054688 17.5 37.5 17.5 C 48.945312 17.5 54.875 17.0625 54.375 16.25 C 53.347656 14.589844 21.652344 14.589844 20.625 16.25 M 58.125 16.25 C 57.699219 16.9375 58.511719 17.5 59.925781 17.5 C 61.339844 17.5 62.5 16.9375 62.5 16.25 C 62.5 15.5625 61.691406 15 60.699219 15 C 59.707031 15 58.550781 15.5625 58.125 16.25 M 16.5625 30.3125 C 16.847656 31.171875 17.832031 31.875 18.75 31.875 C 19.667969 31.875 20.652344 31.171875 20.9375 30.3125 C 21.246094 29.382812 20.359375 28.75 18.75 28.75 C 17.140625 28.75 16.253906 29.382812 16.5625 30.3125 M 26.25 30.625 C 26.25 31.65625 27.09375 32.5 28.125 32.5 C 29.15625 32.5 30 31.65625 30 30.625 C 30 29.59375 29.15625 28.75 28.125 28.75 C 27.09375 28.75 26.25 29.59375 26.25 30.625 M 35.3125 30.3125 C 35.597656 31.171875 36.582031 31.875 37.5 31.875 C 38.417969 31.875 39.402344 31.171875 39.6875 30.3125 C 39.996094 29.382812 39.109375 28.75 37.5 28.75 C 35.890625 28.75 35.003906 29.382812 35.3125 30.3125 M 45 30.625 C 45 31.65625 45.84375 32.5 46.875 32.5 C 47.90625 32.5 48.75 31.65625 48.75 30.625 C 48.75 29.59375 47.90625 28.75 46.875 28.75 C 45.84375 28.75 45 29.59375 45 30.625 M 54.0625 30.3125 C 54.347656 31.171875 55.332031 31.875 56.25 31.875 C 57.167969 31.875 58.152344 31.171875 58.4375 30.3125 C 58.746094 29.382812 57.859375 28.75 56.25 28.75 C 54.640625 28.75 53.753906 29.382812 54.0625 30.3125 M 64.339844 36.304688 C 63.210938 38.136719 64.855469 39.976562 66.914062 39.1875 C 67.921875 38.800781 68.75 38.039062 68.75 37.5 C 68.75 35.953125 65.160156 34.976562 64.339844 36.304688 M 16.808594 38.859375 C 15.519531 40.945312 18.417969 43.332031 20.140625 41.609375 C 21.582031 40.167969 20.679688 37.5 18.75 37.5 C 18.144531 37.5 17.269531 38.109375 16.808594 38.859375 M 26.472656 39.441406 C 27.035156 42.15625 29.253906 42.324219 29.761719 39.6875 C 30.023438 38.320312 29.414062 37.5 28.125 37.5 C 26.921875 37.5 26.234375 38.308594 26.472656 39.441406 M 35.558594 38.859375 C 34.269531 40.945312 37.167969 43.332031 38.890625 41.609375 C 40.332031 40.167969 39.429688 37.5 37.5 37.5 C 36.894531 37.5 36.019531 38.109375 35.558594 38.859375 M 45.222656 39.441406 C 45.785156 42.15625 48.003906 42.324219 48.511719 39.6875 C 48.773438 38.320312 48.164062 37.5 46.875 37.5 C 45.671875 37.5 44.984375 38.308594 45.222656 39.441406 M 54.308594 38.859375 C 53.019531 40.945312 55.917969 43.332031 57.640625 41.609375 C 59.082031 40.167969 58.179688 37.5 56.25 37.5 C 55.644531 37.5 54.769531 38.109375 54.308594 38.859375 M 63.75 44.285156 C 63.75 45.441406 64.820312 46.25 66.355469 46.25 C 69.398438 46.25 68.96875 43.328125 65.832031 42.722656 C 64.601562 42.480469 63.75 43.117188 63.75 44.285156 M 16.5625 49.0625 C 16.847656 49.921875 17.832031 50.625 18.75 50.625 C 19.667969 50.625 20.652344 49.921875 20.9375 49.0625 C 21.246094 48.132812 20.359375 47.5 18.75 47.5 C 17.140625 47.5 16.253906 48.132812 16.5625 49.0625 M 26.496094 54.0625 L 26.875 60.625 L 39.375 60.625 L 40.132812 47.5 L 26.117188 47.5 L 26.496094 54.0625 M 45.246094 54.0625 L 45.625 60.625 L 58.125 60.625 L 58.882812 47.5 L 44.867188 47.5 L 45.246094 54.0625 M 30 53.75 C 30 55.417969 30.832031 56.25 32.5 56.25 C 34.167969 56.25 35 55.417969 35 53.75 C 35 52.082031 34.167969 51.25 32.5 51.25 C 30.832031 51.25 30 52.082031 30 53.75 M 48.75 53.75 C 48.75 55.417969 49.582031 56.25 51.25 56.25 C 52.917969 56.25 53.75 55.417969 53.75 53.75 C 53.75 52.082031 52.917969 51.25 51.25 51.25 C 49.582031 51.25 48.75 52.082031 48.75 53.75 M 16.808594 57.609375 C 15.519531 59.695312 18.417969 62.082031 20.140625 60.359375 C 21.582031 58.917969 20.679688 56.25 18.75 56.25 C 18.144531 56.25 17.269531 56.859375 16.808594 57.609375 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(45.09804%,67.450982%,54.509807%);fill-opacity:1;" d="M 13.75 16.25 C 13.75 16.9375 14.628906 17.5 15.699219 17.5 C 16.769531 17.5 17.300781 16.9375 16.875 16.25 C 16.449219 15.5625 15.574219 15 14.925781 15 C 14.277344 15 13.75 15.5625 13.75 16.25 M 20.625 16.25 C 20.125 17.0625 26.054688 17.5 37.5 17.5 C 48.945312 17.5 54.875 17.0625 54.375 16.25 C 53.347656 14.589844 21.652344 14.589844 20.625 16.25 M 58.125 16.25 C 57.699219 16.9375 58.511719 17.5 59.925781 17.5 C 61.339844 17.5 62.5 16.9375 62.5 16.25 C 62.5 15.5625 61.691406 15 60.699219 15 C 59.707031 15 58.550781 15.5625 58.125 16.25 M 11.53125 44.6875 L 11.875 65.625 L 63.125 65.625 L 63.75 57.5 C 64.277344 50.640625 64.714844 49.433594 66.5625 49.742188 C 67.859375 49.960938 68.75 49.324219 68.75 48.179688 C 68.75 47.082031 67.671875 46.25 66.25 46.25 C 64.78125 46.25 63.75 45.417969 63.75 44.230469 C 63.75 42.824219 64.511719 42.40625 66.25 42.863281 C 68.117188 43.351562 68.75 42.898438 68.75 41.078125 C 68.75 39.449219 68.023438 38.761719 66.5625 39.007812 C 65.289062 39.222656 64.375 38.59375 64.375 37.5 C 64.375 36.40625 65.289062 35.777344 66.5625 35.992188 C 68.023438 36.238281 68.75 35.550781 68.75 33.921875 C 68.75 32.101562 68.117188 31.648438 66.25 32.136719 C 64.089844 32.703125 63.75 32.175781 63.75 28.269531 L 63.75 23.75 L 11.191406 23.75 L 11.53125 44.6875 M 16.5625 30.3125 C 16.847656 31.171875 17.832031 31.875 18.75 31.875 C 19.667969 31.875 20.652344 31.171875 20.9375 30.3125 C 21.246094 29.382812 20.359375 28.75 18.75 28.75 C 17.140625 28.75 16.253906 29.382812 16.5625 30.3125 M 26.25 30.625 C 26.25 31.65625 27.09375 32.5 28.125 32.5 C 29.15625 32.5 30 31.65625 30 30.625 C 30 29.59375 29.15625 28.75 28.125 28.75 C 27.09375 28.75 26.25 29.59375 26.25 30.625 M 35.3125 30.3125 C 35.597656 31.171875 36.582031 31.875 37.5 31.875 C 38.417969 31.875 39.402344 31.171875 39.6875 30.3125 C 39.996094 29.382812 39.109375 28.75 37.5 28.75 C 35.890625 28.75 35.003906 29.382812 35.3125 30.3125 M 45 30.625 C 45 31.65625 45.84375 32.5 46.875 32.5 C 47.90625 32.5 48.75 31.65625 48.75 30.625 C 48.75 29.59375 47.90625 28.75 46.875 28.75 C 45.84375 28.75 45 29.59375 45 30.625 M 54.0625 30.3125 C 54.347656 31.171875 55.332031 31.875 56.25 31.875 C 57.167969 31.875 58.152344 31.171875 58.4375 30.3125 C 58.746094 29.382812 57.859375 28.75 56.25 28.75 C 54.640625 28.75 53.753906 29.382812 54.0625 30.3125 M 16.808594 38.859375 C 15.519531 40.945312 18.417969 43.332031 20.140625 41.609375 C 21.582031 40.167969 20.679688 37.5 18.75 37.5 C 18.144531 37.5 17.269531 38.109375 16.808594 38.859375 M 26.472656 39.441406 C 27.035156 42.15625 29.253906 42.324219 29.761719 39.6875 C 30.023438 38.320312 29.414062 37.5 28.125 37.5 C 26.921875 37.5 26.234375 38.308594 26.472656 39.441406 M 35.558594 38.859375 C 34.269531 40.945312 37.167969 43.332031 38.890625 41.609375 C 40.332031 40.167969 39.429688 37.5 37.5 37.5 C 36.894531 37.5 36.019531 38.109375 35.558594 38.859375 M 45.222656 39.441406 C 45.785156 42.15625 48.003906 42.324219 48.511719 39.6875 C 48.773438 38.320312 48.164062 37.5 46.875 37.5 C 45.671875 37.5 44.984375 38.308594 45.222656 39.441406 M 54.308594 38.859375 C 53.019531 40.945312 55.917969 43.332031 57.640625 41.609375 C 59.082031 40.167969 58.179688 37.5 56.25 37.5 C 55.644531 37.5 54.769531 38.109375 54.308594 38.859375 M 16.5625 49.0625 C 16.847656 49.921875 17.832031 50.625 18.75 50.625 C 19.667969 50.625 20.652344 49.921875 20.9375 49.0625 C 21.246094 48.132812 20.359375 47.5 18.75 47.5 C 17.140625 47.5 16.253906 48.132812 16.5625 49.0625 M 26.496094 54.0625 L 26.875 60.625 L 39.375 60.625 L 40.132812 47.5 L 26.117188 47.5 L 26.496094 54.0625 M 45.246094 54.0625 L 45.625 60.625 L 58.125 60.625 L 58.882812 47.5 L 44.867188 47.5 L 45.246094 54.0625 M 30 53.75 C 30 55.417969 30.832031 56.25 32.5 56.25 C 34.167969 56.25 35 55.417969 35 53.75 C 35 52.082031 34.167969 51.25 32.5 51.25 C 30.832031 51.25 30 52.082031 30 53.75 M 48.75 53.75 C 48.75 55.417969 49.582031 56.25 51.25 56.25 C 52.917969 56.25 53.75 55.417969 53.75 53.75 C 53.75 52.082031 52.917969 51.25 51.25 51.25 C 49.582031 51.25 48.75 52.082031 48.75 53.75 M 16.808594 57.609375 C 15.519531 59.695312 18.417969 62.082031 20.140625 60.359375 C 21.582031 58.917969 20.679688 56.25 18.75 56.25 C 18.144531 56.25 17.269531 56.859375 16.808594 57.609375 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@ -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" width="90px" height="90px" viewBox="0 0 90 90" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(20.784314%,37.64706%,46.666667%);fill-opacity:1;" d="M 19.957031 7.417969 C 19.410156 9.515625 17.652344 10.464844 13.722656 10.792969 L 8.25 11.25 L 8.25 84.75 L 81.75 84.75 L 82.183594 72.375 C 82.460938 64.527344 82.050781 60 81.058594 60 C 80.203125 60 78.996094 59.988281 78.375 59.972656 C 77.753906 59.960938 76.914062 64.179688 76.5 69.347656 L 75.75 78.75 L 14.25 78.75 L 13.429688 28.5 L 76.5 28.5 L 76.5 33.859375 C 76.5 38.15625 77.019531 39.121094 79.125 38.714844 C 81.394531 38.277344 81.75 36.375 81.75 24.730469 L 81.75 11.25 L 76.277344 10.792969 C 72.347656 10.464844 70.589844 9.515625 70.042969 7.417969 C 69.050781 3.617188 65.9375 3.664062 64.933594 7.5 C 64.203125 10.300781 62.890625 10.5 45 10.5 C 27.109375 10.5 25.796875 10.300781 25.066406 7.5 C 24.0625 3.664062 20.949219 3.617188 19.957031 7.417969 M 16.5 19.5 C 16.5 20.324219 17.554688 21 18.839844 21 C 20.125 21 20.761719 20.324219 20.25 19.5 C 19.738281 18.675781 18.6875 18 17.910156 18 C 17.132812 18 16.5 18.675781 16.5 19.5 M 24.75 19.5 C 24.148438 20.472656 31.265625 21 45 21 C 58.734375 21 65.851562 20.472656 65.25 19.5 C 64.019531 17.507812 25.980469 17.507812 24.75 19.5 M 69.75 19.5 C 69.238281 20.324219 70.214844 21 71.910156 21 C 73.609375 21 75 20.324219 75 19.5 C 75 18.675781 74.027344 18 72.839844 18 C 71.648438 18 70.261719 18.675781 69.75 19.5 M 19.875 36.375 C 20.21875 37.40625 21.402344 38.25 22.5 38.25 C 23.597656 38.25 24.78125 37.40625 25.125 36.375 C 25.496094 35.257812 24.433594 34.5 22.5 34.5 C 20.566406 34.5 19.503906 35.257812 19.875 36.375 M 31.5 36.75 C 31.5 37.988281 32.511719 39 33.75 39 C 34.988281 39 36 37.988281 36 36.75 C 36 35.511719 34.988281 34.5 33.75 34.5 C 32.511719 34.5 31.5 35.511719 31.5 36.75 M 42.375 36.375 C 42.71875 37.40625 43.902344 38.25 45 38.25 C 46.097656 38.25 47.28125 37.40625 47.625 36.375 C 47.996094 35.257812 46.933594 34.5 45 34.5 C 43.066406 34.5 42.003906 35.257812 42.375 36.375 M 54 36.75 C 54 37.988281 55.011719 39 56.25 39 C 57.488281 39 58.5 37.988281 58.5 36.75 C 58.5 35.511719 57.488281 34.5 56.25 34.5 C 55.011719 34.5 54 35.511719 54 36.75 M 64.875 36.375 C 65.21875 37.40625 66.402344 38.25 67.5 38.25 C 68.597656 38.25 69.78125 37.40625 70.125 36.375 C 70.496094 35.257812 69.433594 34.5 67.5 34.5 C 65.566406 34.5 64.503906 35.257812 64.875 36.375 M 77.210938 43.566406 C 75.851562 45.761719 77.824219 47.972656 80.296875 47.023438 C 81.507812 46.558594 82.5 45.648438 82.5 45 C 82.5 43.140625 78.195312 41.972656 77.210938 43.566406 M 20.167969 46.628906 C 18.625 49.132812 22.097656 52 24.167969 49.929688 C 25.902344 48.199219 24.816406 45 22.5 45 C 21.773438 45 20.722656 45.734375 20.167969 46.628906 M 31.765625 47.328125 C 32.445312 50.585938 35.105469 50.785156 35.714844 47.625 C 36.03125 45.984375 35.296875 45 33.75 45 C 32.308594 45 31.480469 45.96875 31.765625 47.328125 M 42.667969 46.628906 C 41.125 49.132812 44.597656 52 46.667969 49.929688 C 48.402344 48.199219 47.316406 45 45 45 C 44.273438 45 43.222656 45.734375 42.667969 46.628906 M 54.265625 47.328125 C 54.945312 50.585938 57.605469 50.785156 58.214844 47.625 C 58.53125 45.984375 57.796875 45 56.25 45 C 54.808594 45 53.980469 45.96875 54.265625 47.328125 M 65.167969 46.628906 C 63.625 49.132812 67.097656 52 69.167969 49.929688 C 70.902344 48.199219 69.816406 45 67.5 45 C 66.773438 45 65.722656 45.734375 65.167969 46.628906 M 76.5 53.140625 C 76.5 54.53125 77.78125 55.5 79.625 55.5 C 83.28125 55.5 82.765625 51.996094 79 51.265625 C 77.519531 50.976562 76.5 51.742188 76.5 53.140625 M 19.875 58.875 C 20.21875 59.90625 21.402344 60.75 22.5 60.75 C 23.597656 60.75 24.78125 59.90625 25.125 58.875 C 25.496094 57.757812 24.433594 57 22.5 57 C 20.566406 57 19.503906 57.757812 19.875 58.875 M 31.796875 64.875 L 32.25 72.75 L 47.25 72.75 L 48.15625 57 L 31.34375 57 L 31.796875 64.875 M 54.296875 64.875 L 54.75 72.75 L 69.75 72.75 L 70.65625 57 L 53.84375 57 L 54.296875 64.875 M 36 64.5 C 36 66.5 37 67.5 39 67.5 C 41 67.5 42 66.5 42 64.5 C 42 62.5 41 61.5 39 61.5 C 37 61.5 36 62.5 36 64.5 M 58.5 64.5 C 58.5 66.5 59.5 67.5 61.5 67.5 C 63.5 67.5 64.5 66.5 64.5 64.5 C 64.5 62.5 63.5 61.5 61.5 61.5 C 59.5 61.5 58.5 62.5 58.5 64.5 M 20.167969 69.128906 C 18.625 71.632812 22.097656 74.5 24.167969 72.429688 C 25.902344 70.699219 24.816406 67.5 22.5 67.5 C 21.773438 67.5 20.722656 68.234375 20.167969 69.128906 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(91.37255%,83.529413%,51.764709%);fill-opacity:1;" d="M 16.5 19.5 C 16.5 20.324219 17.554688 21 18.839844 21 C 20.125 21 20.761719 20.324219 20.25 19.5 C 19.738281 18.675781 18.6875 18 17.910156 18 C 17.132812 18 16.5 18.675781 16.5 19.5 M 24.75 19.5 C 24.148438 20.472656 31.265625 21 45 21 C 58.734375 21 65.851562 20.472656 65.25 19.5 C 64.019531 17.507812 25.980469 17.507812 24.75 19.5 M 69.75 19.5 C 69.238281 20.324219 70.214844 21 71.910156 21 C 73.609375 21 75 20.324219 75 19.5 C 75 18.675781 74.027344 18 72.839844 18 C 71.648438 18 70.261719 18.675781 69.75 19.5 M 13.839844 53.625 L 14.25 78.75 L 75.75 78.75 L 76.5 69 C 77.132812 60.769531 77.660156 59.320312 79.875 59.691406 C 81.433594 59.953125 82.5 59.1875 82.5 57.816406 C 82.5 56.5 81.203125 55.5 79.5 55.5 C 77.738281 55.5 76.5 54.5 76.5 53.074219 C 76.5 51.386719 77.414062 50.890625 79.5 51.433594 C 81.742188 52.023438 82.5 51.480469 82.5 49.292969 C 82.5 47.339844 81.628906 46.515625 79.875 46.808594 C 78.347656 47.066406 77.25 46.3125 77.25 45 C 77.25 43.6875 78.347656 42.933594 79.875 43.191406 C 81.628906 43.484375 82.5 42.660156 82.5 40.707031 C 82.5 38.519531 81.742188 37.976562 79.5 38.566406 C 76.90625 39.242188 76.5 38.613281 76.5 33.925781 L 76.5 28.5 L 13.429688 28.5 L 13.839844 53.625 M 19.875 36.375 C 20.21875 37.40625 21.402344 38.25 22.5 38.25 C 23.597656 38.25 24.78125 37.40625 25.125 36.375 C 25.496094 35.257812 24.433594 34.5 22.5 34.5 C 20.566406 34.5 19.503906 35.257812 19.875 36.375 M 31.5 36.75 C 31.5 37.988281 32.511719 39 33.75 39 C 34.988281 39 36 37.988281 36 36.75 C 36 35.511719 34.988281 34.5 33.75 34.5 C 32.511719 34.5 31.5 35.511719 31.5 36.75 M 42.375 36.375 C 42.71875 37.40625 43.902344 38.25 45 38.25 C 46.097656 38.25 47.28125 37.40625 47.625 36.375 C 47.996094 35.257812 46.933594 34.5 45 34.5 C 43.066406 34.5 42.003906 35.257812 42.375 36.375 M 54 36.75 C 54 37.988281 55.011719 39 56.25 39 C 57.488281 39 58.5 37.988281 58.5 36.75 C 58.5 35.511719 57.488281 34.5 56.25 34.5 C 55.011719 34.5 54 35.511719 54 36.75 M 64.875 36.375 C 65.21875 37.40625 66.402344 38.25 67.5 38.25 C 68.597656 38.25 69.78125 37.40625 70.125 36.375 C 70.496094 35.257812 69.433594 34.5 67.5 34.5 C 65.566406 34.5 64.503906 35.257812 64.875 36.375 M 20.167969 46.628906 C 18.625 49.132812 22.097656 52 24.167969 49.929688 C 25.902344 48.199219 24.816406 45 22.5 45 C 21.773438 45 20.722656 45.734375 20.167969 46.628906 M 31.765625 47.328125 C 32.445312 50.585938 35.105469 50.785156 35.714844 47.625 C 36.03125 45.984375 35.296875 45 33.75 45 C 32.308594 45 31.480469 45.96875 31.765625 47.328125 M 42.667969 46.628906 C 41.125 49.132812 44.597656 52 46.667969 49.929688 C 48.402344 48.199219 47.316406 45 45 45 C 44.273438 45 43.222656 45.734375 42.667969 46.628906 M 54.265625 47.328125 C 54.945312 50.585938 57.605469 50.785156 58.214844 47.625 C 58.53125 45.984375 57.796875 45 56.25 45 C 54.808594 45 53.980469 45.96875 54.265625 47.328125 M 65.167969 46.628906 C 63.625 49.132812 67.097656 52 69.167969 49.929688 C 70.902344 48.199219 69.816406 45 67.5 45 C 66.773438 45 65.722656 45.734375 65.167969 46.628906 M 19.875 58.875 C 20.21875 59.90625 21.402344 60.75 22.5 60.75 C 23.597656 60.75 24.78125 59.90625 25.125 58.875 C 25.496094 57.757812 24.433594 57 22.5 57 C 20.566406 57 19.503906 57.757812 19.875 58.875 M 31.796875 64.875 L 32.25 72.75 L 47.25 72.75 L 48.15625 57 L 31.34375 57 L 31.796875 64.875 M 54.296875 64.875 L 54.75 72.75 L 69.75 72.75 L 70.65625 57 L 53.84375 57 L 54.296875 64.875 M 36 64.5 C 36 66.5 37 67.5 39 67.5 C 41 67.5 42 66.5 42 64.5 C 42 62.5 41 61.5 39 61.5 C 37 61.5 36 62.5 36 64.5 M 58.5 64.5 C 58.5 66.5 59.5 67.5 61.5 67.5 C 63.5 67.5 64.5 66.5 64.5 64.5 C 64.5 62.5 63.5 61.5 61.5 61.5 C 59.5 61.5 58.5 62.5 58.5 64.5 M 20.167969 69.128906 C 18.625 71.632812 22.097656 74.5 24.167969 72.429688 C 25.902344 70.699219 24.816406 67.5 22.5 67.5 C 21.773438 67.5 20.722656 68.234375 20.167969 69.128906 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.4 KiB

View File

@ -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" width="105px" height="105px" viewBox="0 0 105 105" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(20.784314%,37.64706%,46.666667%);fill-opacity:1;" d="M 23.28125 8.65625 C 22.644531 11.101562 20.59375 12.210938 16.007812 12.59375 L 9.625 13.125 L 9.625 98.875 L 95.375 98.875 L 95.882812 84.4375 C 96.207031 75.28125 95.726562 70 94.570312 70 C 93.570312 70 92.160156 69.984375 91.4375 69.96875 C 90.714844 69.953125 89.730469 74.875 89.25 80.90625 L 88.375 91.875 L 16.625 91.875 L 15.664062 33.25 L 89.25 33.25 L 89.25 39.503906 C 89.25 44.515625 89.855469 45.640625 92.3125 45.167969 C 94.957031 44.65625 95.375 42.4375 95.375 28.851562 L 95.375 13.125 L 88.992188 12.59375 C 84.40625 12.210938 82.355469 11.101562 81.71875 8.65625 C 80.558594 4.21875 76.925781 4.277344 75.757812 8.75 C 74.902344 12.019531 73.371094 12.25 52.5 12.25 C 31.628906 12.25 30.097656 12.019531 29.242188 8.75 C 28.074219 4.277344 24.441406 4.21875 23.28125 8.65625 M 19.25 22.75 C 19.25 23.710938 20.476562 24.5 21.976562 24.5 C 23.476562 24.5 24.21875 23.710938 23.625 22.75 C 23.03125 21.789062 21.804688 21 20.898438 21 C 19.992188 21 19.25 21.789062 19.25 22.75 M 28.875 22.75 C 28.171875 23.886719 36.476562 24.5 52.5 24.5 C 68.523438 24.5 76.828125 23.886719 76.125 22.75 C 74.6875 20.425781 30.3125 20.425781 28.875 22.75 M 81.375 22.75 C 80.78125 23.710938 81.914062 24.5 83.898438 24.5 C 85.878906 24.5 87.5 23.710938 87.5 22.75 C 87.5 21.789062 86.367188 21 84.976562 21 C 83.589844 21 81.96875 21.789062 81.375 22.75 M 23.1875 42.4375 C 23.589844 43.640625 24.96875 44.625 26.25 44.625 C 27.53125 44.625 28.910156 43.640625 29.3125 42.4375 C 29.746094 41.136719 28.503906 40.25 26.25 40.25 C 23.996094 40.25 22.753906 41.136719 23.1875 42.4375 M 36.75 42.875 C 36.75 44.320312 37.929688 45.5 39.375 45.5 C 40.820312 45.5 42 44.320312 42 42.875 C 42 41.429688 40.820312 40.25 39.375 40.25 C 37.929688 40.25 36.75 41.429688 36.75 42.875 M 49.4375 42.4375 C 49.839844 43.640625 51.21875 44.625 52.5 44.625 C 53.78125 44.625 55.160156 43.640625 55.5625 42.4375 C 55.996094 41.136719 54.753906 40.25 52.5 40.25 C 50.246094 40.25 49.003906 41.136719 49.4375 42.4375 M 63 42.875 C 63 44.320312 64.179688 45.5 65.625 45.5 C 67.070312 45.5 68.25 44.320312 68.25 42.875 C 68.25 41.429688 67.070312 40.25 65.625 40.25 C 64.179688 40.25 63 41.429688 63 42.875 M 75.6875 42.4375 C 76.089844 43.640625 77.46875 44.625 78.75 44.625 C 80.03125 44.625 81.410156 43.640625 81.8125 42.4375 C 82.246094 41.136719 81.003906 40.25 78.75 40.25 C 76.496094 40.25 75.253906 41.136719 75.6875 42.4375 M 90.078125 50.828125 C 88.492188 53.390625 90.796875 55.96875 93.679688 54.859375 C 95.09375 54.320312 96.25 53.257812 96.25 52.5 C 96.25 50.332031 91.226562 48.96875 90.078125 50.828125 M 23.53125 54.402344 C 21.726562 57.320312 25.78125 60.667969 28.199219 58.253906 C 30.21875 56.234375 28.953125 52.5 26.25 52.5 C 25.402344 52.5 24.179688 53.355469 23.53125 54.402344 M 37.058594 55.21875 C 37.851562 59.019531 40.957031 59.25 41.667969 55.5625 C 42.035156 53.644531 41.175781 52.5 39.375 52.5 C 37.691406 52.5 36.730469 53.632812 37.058594 55.21875 M 49.78125 54.402344 C 47.976562 57.320312 52.03125 60.667969 54.449219 58.253906 C 56.46875 56.234375 55.203125 52.5 52.5 52.5 C 51.652344 52.5 50.429688 53.355469 49.78125 54.402344 M 63.308594 55.21875 C 64.101562 59.019531 67.207031 59.25 67.917969 55.5625 C 68.285156 53.644531 67.425781 52.5 65.625 52.5 C 63.941406 52.5 62.980469 53.632812 63.308594 55.21875 M 76.03125 54.402344 C 74.226562 57.320312 78.28125 60.667969 80.699219 58.253906 C 82.71875 56.234375 81.453125 52.5 78.75 52.5 C 77.902344 52.5 76.679688 53.355469 76.03125 54.402344 M 89.25 61.996094 C 89.25 63.621094 90.746094 64.75 92.894531 64.75 C 97.160156 64.75 96.558594 60.660156 92.167969 59.808594 C 90.441406 59.472656 89.25 60.367188 89.25 61.996094 M 23.1875 68.6875 C 23.589844 69.890625 24.96875 70.875 26.25 70.875 C 27.53125 70.875 28.910156 69.890625 29.3125 68.6875 C 29.746094 67.386719 28.503906 66.5 26.25 66.5 C 23.996094 66.5 22.753906 67.386719 23.1875 68.6875 M 37.097656 75.6875 L 37.625 84.875 L 55.125 84.875 L 55.652344 75.6875 L 56.183594 66.5 L 36.566406 66.5 L 37.097656 75.6875 M 63.347656 75.6875 L 63.875 84.875 L 81.375 84.875 L 81.902344 75.6875 L 82.433594 66.5 L 62.816406 66.5 L 63.347656 75.6875 M 42 75.25 C 42 77.582031 43.167969 78.75 45.5 78.75 C 47.832031 78.75 49 77.582031 49 75.25 C 49 72.917969 47.832031 71.75 45.5 71.75 C 43.167969 71.75 42 72.917969 42 75.25 M 68.25 75.25 C 68.25 77.582031 69.417969 78.75 71.75 78.75 C 74.082031 78.75 75.25 77.582031 75.25 75.25 C 75.25 72.917969 74.082031 71.75 71.75 71.75 C 69.417969 71.75 68.25 72.917969 68.25 75.25 M 23.53125 80.652344 C 21.726562 83.570312 25.78125 86.917969 28.199219 84.503906 C 30.21875 82.484375 28.953125 78.75 26.25 78.75 C 25.402344 78.75 24.179688 79.605469 23.53125 80.652344 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(91.37255%,83.529413%,51.764709%);fill-opacity:1;" d="M 19.25 22.75 C 19.25 23.710938 20.476562 24.5 21.976562 24.5 C 23.476562 24.5 24.21875 23.710938 23.625 22.75 C 23.03125 21.789062 21.804688 21 20.898438 21 C 19.992188 21 19.25 21.789062 19.25 22.75 M 28.875 22.75 C 28.171875 23.886719 36.476562 24.5 52.5 24.5 C 68.523438 24.5 76.828125 23.886719 76.125 22.75 C 74.6875 20.425781 30.3125 20.425781 28.875 22.75 M 81.375 22.75 C 80.78125 23.710938 81.914062 24.5 83.898438 24.5 C 85.878906 24.5 87.5 23.710938 87.5 22.75 C 87.5 21.789062 86.367188 21 84.976562 21 C 83.589844 21 81.96875 21.789062 81.375 22.75 M 16.144531 62.5625 L 16.625 91.875 L 88.375 91.875 L 89.25 80.5 C 89.988281 70.898438 90.601562 69.207031 93.1875 69.640625 C 95.003906 69.945312 96.25 69.054688 96.25 67.453125 C 96.25 65.917969 94.738281 64.75 92.75 64.75 C 90.695312 64.75 89.25 63.582031 89.25 61.921875 C 89.25 59.953125 90.316406 59.371094 92.75 60.007812 C 95.367188 60.691406 96.25 60.058594 96.25 57.511719 C 96.25 55.230469 95.234375 54.265625 93.1875 54.609375 C 91.402344 54.910156 90.125 54.03125 90.125 52.5 C 90.125 50.96875 91.402344 50.089844 93.1875 50.390625 C 95.234375 50.734375 96.25 49.769531 96.25 47.488281 C 96.25 44.941406 95.367188 44.308594 92.75 44.992188 C 89.726562 45.785156 89.25 45.046875 89.25 39.578125 L 89.25 33.25 L 15.664062 33.25 L 16.144531 62.5625 M 23.1875 42.4375 C 23.589844 43.640625 24.96875 44.625 26.25 44.625 C 27.53125 44.625 28.910156 43.640625 29.3125 42.4375 C 29.746094 41.136719 28.503906 40.25 26.25 40.25 C 23.996094 40.25 22.753906 41.136719 23.1875 42.4375 M 36.75 42.875 C 36.75 44.320312 37.929688 45.5 39.375 45.5 C 40.820312 45.5 42 44.320312 42 42.875 C 42 41.429688 40.820312 40.25 39.375 40.25 C 37.929688 40.25 36.75 41.429688 36.75 42.875 M 49.4375 42.4375 C 49.839844 43.640625 51.21875 44.625 52.5 44.625 C 53.78125 44.625 55.160156 43.640625 55.5625 42.4375 C 55.996094 41.136719 54.753906 40.25 52.5 40.25 C 50.246094 40.25 49.003906 41.136719 49.4375 42.4375 M 63 42.875 C 63 44.320312 64.179688 45.5 65.625 45.5 C 67.070312 45.5 68.25 44.320312 68.25 42.875 C 68.25 41.429688 67.070312 40.25 65.625 40.25 C 64.179688 40.25 63 41.429688 63 42.875 M 75.6875 42.4375 C 76.089844 43.640625 77.46875 44.625 78.75 44.625 C 80.03125 44.625 81.410156 43.640625 81.8125 42.4375 C 82.246094 41.136719 81.003906 40.25 78.75 40.25 C 76.496094 40.25 75.253906 41.136719 75.6875 42.4375 M 23.53125 54.402344 C 21.726562 57.320312 25.78125 60.667969 28.199219 58.253906 C 30.21875 56.234375 28.953125 52.5 26.25 52.5 C 25.402344 52.5 24.179688 53.355469 23.53125 54.402344 M 37.058594 55.21875 C 37.851562 59.019531 40.957031 59.25 41.667969 55.5625 C 42.035156 53.644531 41.175781 52.5 39.375 52.5 C 37.691406 52.5 36.730469 53.632812 37.058594 55.21875 M 49.78125 54.402344 C 47.976562 57.320312 52.03125 60.667969 54.449219 58.253906 C 56.46875 56.234375 55.203125 52.5 52.5 52.5 C 51.652344 52.5 50.429688 53.355469 49.78125 54.402344 M 63.308594 55.21875 C 64.101562 59.019531 67.207031 59.25 67.917969 55.5625 C 68.285156 53.644531 67.425781 52.5 65.625 52.5 C 63.941406 52.5 62.980469 53.632812 63.308594 55.21875 M 76.03125 54.402344 C 74.226562 57.320312 78.28125 60.667969 80.699219 58.253906 C 82.71875 56.234375 81.453125 52.5 78.75 52.5 C 77.902344 52.5 76.679688 53.355469 76.03125 54.402344 M 23.1875 68.6875 C 23.589844 69.890625 24.96875 70.875 26.25 70.875 C 27.53125 70.875 28.910156 69.890625 29.3125 68.6875 C 29.746094 67.386719 28.503906 66.5 26.25 66.5 C 23.996094 66.5 22.753906 67.386719 23.1875 68.6875 M 37.097656 75.6875 L 37.625 84.875 L 55.125 84.875 L 55.652344 75.6875 L 56.183594 66.5 L 36.566406 66.5 L 37.097656 75.6875 M 63.347656 75.6875 L 63.875 84.875 L 81.375 84.875 L 81.902344 75.6875 L 82.433594 66.5 L 62.816406 66.5 L 63.347656 75.6875 M 42 75.25 C 42 77.582031 43.167969 78.75 45.5 78.75 C 47.832031 78.75 49 77.582031 49 75.25 C 49 72.917969 47.832031 71.75 45.5 71.75 C 43.167969 71.75 42 72.917969 42 75.25 M 68.25 75.25 C 68.25 77.582031 69.417969 78.75 71.75 78.75 C 74.082031 78.75 75.25 77.582031 75.25 75.25 C 75.25 72.917969 74.082031 71.75 71.75 71.75 C 69.417969 71.75 68.25 72.917969 68.25 75.25 M 23.53125 80.652344 C 21.726562 83.570312 25.78125 86.917969 28.199219 84.503906 C 30.21875 82.484375 28.953125 78.75 26.25 78.75 C 25.402344 78.75 24.179688 79.605469 23.53125 80.652344 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

View File

@ -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" width="120px" height="120px" viewBox="0 0 120 120" version="1.1">
<g id="surface1">
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(20.784314%,37.64706%,46.666667%);fill-opacity:1;" d="M 26.609375 9.890625 C 25.878906 12.6875 23.535156 13.953125 18.296875 14.390625 L 11 15 L 11 113 L 109 113 L 109.578125 96.5 C 109.949219 86.035156 109.398438 80 108.078125 80 C 106.9375 80 105.324219 79.984375 104.5 79.964844 C 103.675781 79.949219 102.550781 85.570312 102 92.464844 L 101 105 L 19 105 L 18.453125 71.5 L 17.902344 38 L 102 38 L 102 45.144531 C 102 50.875 102.695312 52.160156 105.5 51.621094 C 108.523438 51.035156 109 48.5 109 32.972656 L 109 15 L 101.703125 14.390625 C 96.464844 13.953125 94.121094 12.6875 93.390625 9.890625 C 92.066406 4.820312 87.914062 4.886719 86.578125 10 C 85.601562 13.734375 83.851562 14 60 14 C 36.148438 14 34.398438 13.734375 33.421875 10 C 32.085938 4.886719 27.933594 4.820312 26.609375 9.890625 M 22 26 C 22 27.101562 23.402344 28 25.117188 28 C 26.832031 28 27.679688 27.101562 27 26 C 26.320312 24.898438 24.917969 24 23.882812 24 C 22.847656 24 22 24.898438 22 26 M 33 26 C 32.199219 27.296875 41.6875 28 60 28 C 78.3125 28 87.800781 27.296875 87 26 C 85.359375 23.34375 34.640625 23.34375 33 26 M 93 26 C 92.320312 27.101562 93.617188 28 95.882812 28 C 98.144531 28 100 27.101562 100 26 C 100 24.898438 98.703125 24 97.117188 24 C 95.53125 24 93.679688 24.898438 93 26 M 26.5 48.5 C 26.957031 49.875 28.535156 51 30 51 C 31.464844 51 33.042969 49.875 33.5 48.5 C 33.996094 47.011719 32.578125 46 30 46 C 27.421875 46 26.003906 47.011719 26.5 48.5 M 42 49 C 42 50.648438 43.351562 52 45 52 C 46.648438 52 48 50.648438 48 49 C 48 47.351562 46.648438 46 45 46 C 43.351562 46 42 47.351562 42 49 M 56.5 48.5 C 56.957031 49.875 58.535156 51 60 51 C 61.464844 51 63.042969 49.875 63.5 48.5 C 63.996094 47.011719 62.578125 46 60 46 C 57.421875 46 56.003906 47.011719 56.5 48.5 M 72 49 C 72 50.648438 73.351562 52 75 52 C 76.648438 52 78 50.648438 78 49 C 78 47.351562 76.648438 46 75 46 C 73.351562 46 72 47.351562 72 49 M 86.5 48.5 C 86.957031 49.875 88.535156 51 90 51 C 91.464844 51 93.042969 49.875 93.5 48.5 C 93.996094 47.011719 92.578125 46 90 46 C 87.421875 46 86.003906 47.011719 86.5 48.5 M 102.945312 58.089844 C 101.136719 61.015625 103.769531 63.964844 107.0625 62.699219 C 108.679688 62.078125 110 60.863281 110 60 C 110 57.523438 104.257812 55.964844 102.945312 58.089844 M 26.890625 62.175781 C 24.832031 65.511719 29.464844 69.335938 32.226562 66.574219 C 34.535156 64.265625 33.089844 60 30 60 C 29.03125 60 27.632812 60.976562 26.890625 62.175781 M 42.355469 63.105469 C 43.257812 67.449219 46.808594 67.714844 47.621094 63.5 C 48.039062 61.308594 47.058594 60 45 60 C 43.078125 60 41.976562 61.292969 42.355469 63.105469 M 56.890625 62.175781 C 54.832031 65.511719 59.464844 69.335938 62.226562 66.574219 C 64.535156 64.265625 63.089844 60 60 60 C 59.03125 60 57.632812 60.976562 56.890625 62.175781 M 72.355469 63.105469 C 73.257812 67.449219 76.808594 67.714844 77.621094 63.5 C 78.039062 61.308594 77.058594 60 75 60 C 73.078125 60 71.976562 61.292969 72.355469 63.105469 M 86.890625 62.175781 C 84.832031 65.511719 89.464844 69.335938 92.226562 66.574219 C 94.535156 64.265625 93.089844 60 90 60 C 89.03125 60 87.632812 60.976562 86.890625 62.175781 M 102 70.855469 C 102 72.707031 103.710938 74 106.164062 74 C 111.039062 74 110.351562 69.324219 105.335938 68.355469 C 103.359375 67.96875 102 68.988281 102 70.855469 M 26.5 78.5 C 26.957031 79.875 28.535156 81 30 81 C 31.464844 81 33.042969 79.875 33.5 78.5 C 33.996094 77.011719 32.578125 76 30 76 C 27.421875 76 26.003906 77.011719 26.5 78.5 M 42.394531 86.5 L 43 97 L 63 97 L 64.210938 76 L 41.789062 76 L 42.394531 86.5 M 72.394531 86.5 L 73 97 L 93 97 L 94.210938 76 L 71.789062 76 L 72.394531 86.5 M 48 86 C 48 88.664062 49.335938 90 52 90 C 54.664062 90 56 88.664062 56 86 C 56 83.335938 54.664062 82 52 82 C 49.335938 82 48 83.335938 48 86 M 78 86 C 78 88.664062 79.335938 90 82 90 C 84.664062 90 86 88.664062 86 86 C 86 83.335938 84.664062 82 82 82 C 79.335938 82 78 83.335938 78 86 M 26.890625 92.175781 C 24.832031 95.511719 29.464844 99.335938 32.226562 96.574219 C 34.535156 94.265625 33.089844 90 30 90 C 29.03125 90 27.632812 90.976562 26.890625 92.175781 "/>
<path style=" stroke:none;fill-rule:evenodd;fill:rgb(91.37255%,83.529413%,51.764709%);fill-opacity:1;" d="M 22 26 C 22 27.101562 23.402344 28 25.117188 28 C 26.832031 28 27.679688 27.101562 27 26 C 26.320312 24.898438 24.917969 24 23.882812 24 C 22.847656 24 22 24.898438 22 26 M 33 26 C 32.199219 27.296875 41.6875 28 60 28 C 78.3125 28 87.800781 27.296875 87 26 C 85.359375 23.34375 34.640625 23.34375 33 26 M 93 26 C 92.320312 27.101562 93.617188 28 95.882812 28 C 98.144531 28 100 27.101562 100 26 C 100 24.898438 98.703125 24 97.117188 24 C 95.53125 24 93.679688 24.898438 93 26 M 18.453125 71.5 L 19 105 L 101 105 L 102 92 C 102.84375 81.027344 103.546875 79.09375 106.5 79.589844 C 108.574219 79.9375 110 78.917969 110 77.089844 C 110 75.335938 108.273438 74 106 74 C 103.648438 74 102 72.664062 102 70.765625 C 102 68.519531 103.21875 67.851562 106 68.578125 C 108.988281 69.363281 110 68.640625 110 65.726562 C 110 63.121094 108.839844 62.019531 106.5 62.410156 C 104.460938 62.753906 103 61.746094 103 60 C 103 58.253906 104.460938 57.246094 106.5 57.589844 C 108.839844 57.980469 110 56.878906 110 54.273438 C 110 51.359375 108.988281 50.636719 106 51.421875 C 102.542969 52.324219 102 51.480469 102 45.234375 L 102 38 L 17.902344 38 L 18.453125 71.5 M 26.5 48.5 C 26.957031 49.875 28.535156 51 30 51 C 31.464844 51 33.042969 49.875 33.5 48.5 C 33.996094 47.011719 32.578125 46 30 46 C 27.421875 46 26.003906 47.011719 26.5 48.5 M 42 49 C 42 50.648438 43.351562 52 45 52 C 46.648438 52 48 50.648438 48 49 C 48 47.351562 46.648438 46 45 46 C 43.351562 46 42 47.351562 42 49 M 56.5 48.5 C 56.957031 49.875 58.535156 51 60 51 C 61.464844 51 63.042969 49.875 63.5 48.5 C 63.996094 47.011719 62.578125 46 60 46 C 57.421875 46 56.003906 47.011719 56.5 48.5 M 72 49 C 72 50.648438 73.351562 52 75 52 C 76.648438 52 78 50.648438 78 49 C 78 47.351562 76.648438 46 75 46 C 73.351562 46 72 47.351562 72 49 M 86.5 48.5 C 86.957031 49.875 88.535156 51 90 51 C 91.464844 51 93.042969 49.875 93.5 48.5 C 93.996094 47.011719 92.578125 46 90 46 C 87.421875 46 86.003906 47.011719 86.5 48.5 M 26.890625 62.175781 C 24.832031 65.511719 29.464844 69.335938 32.226562 66.574219 C 34.535156 64.265625 33.089844 60 30 60 C 29.03125 60 27.632812 60.976562 26.890625 62.175781 M 42.355469 63.105469 C 43.257812 67.449219 46.808594 67.714844 47.621094 63.5 C 48.039062 61.308594 47.058594 60 45 60 C 43.078125 60 41.976562 61.292969 42.355469 63.105469 M 56.890625 62.175781 C 54.832031 65.511719 59.464844 69.335938 62.226562 66.574219 C 64.535156 64.265625 63.089844 60 60 60 C 59.03125 60 57.632812 60.976562 56.890625 62.175781 M 72.355469 63.105469 C 73.257812 67.449219 76.808594 67.714844 77.621094 63.5 C 78.039062 61.308594 77.058594 60 75 60 C 73.078125 60 71.976562 61.292969 72.355469 63.105469 M 86.890625 62.175781 C 84.832031 65.511719 89.464844 69.335938 92.226562 66.574219 C 94.535156 64.265625 93.089844 60 90 60 C 89.03125 60 87.632812 60.976562 86.890625 62.175781 M 26.5 78.5 C 26.957031 79.875 28.535156 81 30 81 C 31.464844 81 33.042969 79.875 33.5 78.5 C 33.996094 77.011719 32.578125 76 30 76 C 27.421875 76 26.003906 77.011719 26.5 78.5 M 42.394531 86.5 L 43 97 L 63 97 L 64.210938 76 L 41.789062 76 L 42.394531 86.5 M 72.394531 86.5 L 73 97 L 93 97 L 94.210938 76 L 71.789062 76 L 72.394531 86.5 M 48 86 C 48 88.664062 49.335938 90 52 90 C 54.664062 90 56 88.664062 56 86 C 56 83.335938 54.664062 82 52 82 C 49.335938 82 48 83.335938 48 86 M 78 86 C 78 88.664062 79.335938 90 82 90 C 84.664062 90 86 88.664062 86 86 C 86 83.335938 84.664062 82 82 82 C 79.335938 82 78 83.335938 78 86 M 26.890625 92.175781 C 24.832031 95.511719 29.464844 99.335938 32.226562 96.574219 C 34.535156 94.265625 33.089844 90 30 90 C 29.03125 90 27.632812 90.976562 26.890625 92.175781 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,43 @@
{
"Select the <strong>date and format</strong>, then click the <strong>Insert date</strong> button. The date will be displayed in the selected cell.": "Vyberte <strong>datum a formát</strong>, poté klikněte na tlačítko <strong>Vložit datum</strong>. Datum se zobrazí ve vybrané buňce.",
"Select date": "Vybrat datum",
"Select a date": "Vyberte datum",
"Select date format": "Vybrat formát data",
"Insert date": "Vložit datum",
"Loading...": "Načítání...",
"Loading plugin...": "Načítání pluginu...",
"Initializing plugin...": "Inicializace pluginu...",
"Inserting date...": "Vkládání data...",
"Please <strong>do not close</strong> the plugin panel.": "Prosím <strong>nezavírejte</strong> panel pluginu.",
"January": "Leden",
"February": "Únor",
"March": "Březen",
"April": "Duben",
"May (full)": "Květen",
"June": "Červen",
"July": "Červenec",
"August": "Srpen",
"September": "Září",
"October": "Říjen",
"November": "Listopad",
"December": "Prosinec",
"Sunday": "Neděle",
"Monday": "Pondělí",
"Tuesday": "Úterý",
"Wednesday": "Středa",
"Thursday": "Čtvrtek",
"Friday": "Pátek",
"Saturday": "Sobota",
"Jan": "Led",
"Feb": "Úno",
"Mar": "Bře",
"Apr": "Dub",
"May (short)": "Kvě",
"Jun": "Čer",
"Jul": "Čvc",
"Aug": "Srp",
"Sep": "Zář",
"Oct": "Říj",
"Nov": "Lis",
"Dec": "Pro"
}

View File

@ -0,0 +1,43 @@
{
"Select the <strong>date and format</strong>, then click the <strong>Insert date</strong> button. The date will be displayed in the selected cell.": "Wählen Sie das <strong>Datum und Format</strong>, dann klicken Sie auf die Schaltfläche <strong>Datum einfügen</strong>. Das Datum wird in der ausgewählten Zelle angezeigt.",
"Select date": "Datum auswählen",
"Select a date": "Datum auswählen",
"Select date format": "Datumsformat auswählen",
"Insert date": "Datum einfügen",
"Loading...": "Wird geladen...",
"Loading plugin...": "Plugin wird geladen...",
"Initializing plugin...": "Plugin wird initialisiert...",
"Inserting date...": "Datum wird eingefügt...",
"Please <strong>do not close</strong> the plugin panel.": "Bitte <strong>schließen Sie nicht</strong> das Plugin-Panel.",
"January": "Januar",
"February": "Februar",
"March": "März",
"April": "April",
"May (full)": "Mai",
"June": "Juni",
"July": "Juli",
"August": "August",
"September": "September",
"October": "Oktober",
"November": "November",
"December": "Dezember",
"Sunday": "Sonntag",
"Monday": "Montag",
"Tuesday": "Dienstag",
"Wednesday": "Mittwoch",
"Thursday": "Donnerstag",
"Friday": "Freitag",
"Saturday": "Samstag",
"Jan": "Jan",
"Feb": "Feb",
"Mar": "Mär",
"Apr": "Apr",
"May (short)": "Mai",
"Jun": "Jun",
"Jul": "Jul",
"Aug": "Aug",
"Sep": "Sep",
"Oct": "Okt",
"Nov": "Nov",
"Dec": "Dez"
}

View File

@ -0,0 +1,43 @@
{
"Select the <strong>date and format</strong>, then click the <strong>Insert date</strong> button. The date will be displayed in the selected cell.": "Seleccione la <strong>fecha y formato</strong>, luego haga clic en el botón <strong>Insertar fecha</strong>. La fecha se mostrará en la celda seleccionada.",
"Select date": "Seleccionar fecha",
"Select a date": "Seleccione una fecha",
"Select date format": "Seleccionar formato de fecha",
"Insert date": "Insertar fecha",
"Loading...": "Cargando...",
"Loading plugin...": "Cargando plugin...",
"Initializing plugin...": "Inicializando plugin...",
"Inserting date...": "Insertando fecha...",
"Please <strong>do not close</strong> the plugin panel.": "Por favor <strong>no cierre</strong> el panel del plugin.",
"January": "Enero",
"February": "Febrero",
"March": "Marzo",
"April": "Abril",
"May (full)": "Mayo",
"June": "Junio",
"July": "Julio",
"August": "Agosto",
"September": "Septiembre",
"October": "Octubre",
"November": "Noviembre",
"December": "Diciembre",
"Sunday": "Domingo",
"Monday": "Lunes",
"Tuesday": "Martes",
"Wednesday": "Miércoles",
"Thursday": "Jueves",
"Friday": "Viernes",
"Saturday": "Sábado",
"Jan": "Ene",
"Feb": "Feb",
"Mar": "Mar",
"Apr": "Abr",
"May (short)": "May",
"Jun": "Jun",
"Jul": "Jul",
"Aug": "Ago",
"Sep": "Sep",
"Oct": "Oct",
"Nov": "Nov",
"Dec": "Dic"
}

View File

@ -0,0 +1,43 @@
{
"Select the <strong>date and format</strong>, then click the <strong>Insert date</strong> button. The date will be displayed in the selected cell.": "Sélectionnez la <strong>date et le format</strong>, puis cliquez sur le bouton <strong>Insérer la date</strong>. La date sera affichée dans la cellule sélectionnée.",
"Select date": "Sélectionner la date",
"Select a date": "Sélectionnez une date",
"Select date format": "Sélectionner le format de date",
"Insert date": "Insérer la date",
"Loading...": "Chargement...",
"Loading plugin...": "Chargement du plugin...",
"Initializing plugin...": "Initialisation du plugin...",
"Inserting date...": "Insertion de la date...",
"Please <strong>do not close</strong> the plugin panel.": "Veuillez <strong>ne pas fermer</strong> le panneau du plugin.",
"January": "Janvier",
"February": "Février",
"March": "Mars",
"April": "Avril",
"May (full)": "Mai",
"June": "Juin",
"July": "Juillet",
"August": "Août",
"September": "Septembre",
"October": "Octobre",
"November": "Novembre",
"December": "Décembre",
"Sunday": "Dimanche",
"Monday": "Lundi",
"Tuesday": "Mardi",
"Wednesday": "Mercredi",
"Thursday": "Jeudi",
"Friday": "Vendredi",
"Saturday": "Samedi",
"Jan": "Jan",
"Feb": "Fév",
"Mar": "Mar",
"Apr": "Avr",
"May (short)": "Mai",
"Jun": "Jun",
"Jul": "Jul",
"Aug": "Aoû",
"Sep": "Sep",
"Oct": "Oct",
"Nov": "Nov",
"Dec": "Déc"
}

View File

@ -0,0 +1,43 @@
{
"Select the <strong>date and format</strong>, then click the <strong>Insert date</strong> button. The date will be displayed in the selected cell.": "Seleziona la <strong>data e il formato</strong>, poi clicca sul pulsante <strong>Inserisci data</strong>. La data verrà visualizzata nella cella selezionata.",
"Select date": "Seleziona data",
"Select a date": "Seleziona una data",
"Select date format": "Seleziona formato data",
"Insert date": "Inserisci data",
"Loading...": "Caricamento...",
"Loading plugin...": "Caricamento plugin...",
"Initializing plugin...": "Inizializzazione plugin...",
"Inserting date...": "Inserimento data...",
"Please <strong>do not close</strong> the plugin panel.": "Si prega di <strong>non chiudere</strong> il pannello del plugin.",
"January": "Gennaio",
"February": "Febbraio",
"March": "Marzo",
"April": "Aprile",
"May (full)": "Maggio",
"June": "Giugno",
"July": "Luglio",
"August": "Agosto",
"September": "Settembre",
"October": "Ottobre",
"November": "Novembre",
"December": "Dicembre",
"Sunday": "Domenica",
"Monday": "Lunedì",
"Tuesday": "Martedì",
"Wednesday": "Mercoledì",
"Thursday": "Giovedì",
"Friday": "Venerdì",
"Saturday": "Sabato",
"Jan": "Gen",
"Feb": "Feb",
"Mar": "Mar",
"Apr": "Apr",
"May (short)": "Mag",
"Jun": "Giu",
"Jul": "Lug",
"Aug": "Ago",
"Sep": "Set",
"Oct": "Ott",
"Nov": "Nov",
"Dec": "Dic"
}

View File

@ -0,0 +1,43 @@
{
"Select the <strong>date and format</strong>, then click the <strong>Insert date</strong> button. The date will be displayed in the selected cell.": "<strong>日付と形式</strong>を選択し、<strong>日付を挿入</strong>ボタンをクリックしてください。選択したセルに日付が表示されます。",
"Select date": "日付を選択",
"Select a date": "日付を選択してください",
"Select date format": "日付形式を選択",
"Insert date": "日付を挿入",
"Loading...": "読み込み中...",
"Loading plugin...": "プラグインを読み込み中...",
"Initializing plugin...": "プラグインを初期化中...",
"Inserting date...": "日付を挿入中...",
"Please <strong>do not close</strong> the plugin panel.": "プラグインパネルを<strong>閉じないで</strong>ください。",
"January": "1月",
"February": "2月",
"March": "3月",
"April": "4月",
"May (full)": "5月",
"June": "6月",
"July": "7月",
"August": "8月",
"September": "9月",
"October": "10月",
"November": "11月",
"December": "12月",
"Sunday": "日曜日",
"Monday": "月曜日",
"Tuesday": "火曜日",
"Wednesday": "水曜日",
"Thursday": "木曜日",
"Friday": "金曜日",
"Saturday": "土曜日",
"Jan": "1月",
"Feb": "2月",
"Mar": "3月",
"Apr": "4月",
"May (short)": "5月",
"Jun": "6月",
"Jul": "7月",
"Aug": "8月",
"Sep": "9月",
"Oct": "10月",
"Nov": "11月",
"Dec": "12月"
}

View File

@ -0,0 +1,14 @@
[
"ru-RU",
"de-DE",
"fr-FR",
"es-ES",
"pt-BR",
"it-IT",
"ja-JA",
"zh-ZH",
"cs-CS",
"sq-AL",
"sr-RS",
"sr-Latn-RS"
]

View File

@ -0,0 +1,43 @@
{
"Select the <strong>date and format</strong>, then click the <strong>Insert date</strong> button. The date will be displayed in the selected cell.": "Selecione a <strong>data e formato</strong>, depois clique no botão <strong>Inserir data</strong>. A data será exibida na célula selecionada.",
"Select date": "Selecionar data",
"Select a date": "Selecione uma data",
"Select date format": "Selecionar formato de data",
"Insert date": "Inserir data",
"Loading...": "Carregando...",
"Loading plugin...": "Carregando plugin...",
"Initializing plugin...": "Inicializando plugin...",
"Inserting date...": "Inserindo data...",
"Please <strong>do not close</strong> the plugin panel.": "Por favor <strong>não feche</strong> o painel do plugin.",
"January": "Janeiro",
"February": "Fevereiro",
"March": "Março",
"April": "Abril",
"May (full)": "Maio",
"June": "Junho",
"July": "Julho",
"August": "Agosto",
"September": "Setembro",
"October": "Outubro",
"November": "Novembro",
"December": "Dezembro",
"Sunday": "Domingo",
"Monday": "Segunda-feira",
"Tuesday": "Terça-feira",
"Wednesday": "Quarta-feira",
"Thursday": "Quinta-feira",
"Friday": "Sexta-feira",
"Saturday": "Sábado",
"Jan": "Jan",
"Feb": "Fev",
"Mar": "Mar",
"Apr": "Abr",
"May (short)": "Mai",
"Jun": "Jun",
"Jul": "Jul",
"Aug": "Ago",
"Sep": "Set",
"Oct": "Out",
"Nov": "Nov",
"Dec": "Dez"
}

View File

@ -0,0 +1,43 @@
{
"Select the <strong>date and format</strong>, then click the <strong>Insert date</strong> button. The date will be displayed in the selected cell.": "Выберите <strong>дату и формат</strong>, затем нажмите кнопку <strong>Вставить дату</strong>. Дата будет отображена в выбранной ячейке.",
"Select date": "Выбрать дату",
"Select a date": "Выберите дату",
"Select date format": "Выбрать формат даты",
"Insert date": "Вставить дату",
"Loading...": "Загрузка...",
"Loading plugin...": "Загрузка плагина...",
"Initializing plugin...": "Инициализация плагина...",
"Inserting date...": "Вставка даты...",
"Please <strong>do not close</strong> the plugin panel.": "Пожалуйста, <strong>не закрывайте</strong> панель плагина.",
"January": "Январь",
"February": "Февраль",
"March": "Март",
"April": "Апрель",
"May (full)": "Май",
"June": "Июнь",
"July": "Июль",
"August": "Август",
"September": "Сентябрь",
"October": "Октябрь",
"November": "Ноябрь",
"December": "Декабрь",
"Sunday": "Воскресенье",
"Monday": "Понедельник",
"Tuesday": "Вторник",
"Wednesday": "Среда",
"Thursday": "Четверг",
"Friday": "Пятница",
"Saturday": "Суббота",
"Jan": "Янв",
"Feb": "Фев",
"Mar": "Мар",
"Apr": "Апр",
"May (short)": "Май",
"Jun": "Июн",
"Jul": "Июл",
"Aug": "Авг",
"Sep": "Сен",
"Oct": "Окт",
"Nov": "Ноя",
"Dec": "Дек"
}

View File

@ -0,0 +1,43 @@
{
"Select the <strong>date and format</strong>, then click the <strong>Insert date</strong> button. The date will be displayed in the selected cell.": "Zgjidhni <strong>datën dhe formatin</strong>, pastaj klikoni butonin <strong>Fut datën</strong>. Data do të shfaqet në qelizën e zgjedhur.",
"Select date": "Zgjidhni datën",
"Select a date": "Zgjidhni një datë",
"Select date format": "Zgjidhni formatin e datës",
"Insert date": "Fut datën",
"Loading...": "Duke ngarkuar...",
"Loading plugin...": "Duke ngarkuar plugin-in...",
"Initializing plugin...": "Duke inicializuar plugin-in...",
"Inserting date...": "Duke futur datën...",
"Please <strong>do not close</strong> the plugin panel.": "Ju lutem <strong>mos e mbyllni</strong> panelin e plugin-it.",
"January": "Janar",
"February": "Shkurt",
"March": "Mars",
"April": "Prill",
"May (full)": "Maj",
"June": "Qershor",
"July": "Korrik",
"August": "Gusht",
"September": "Shtator",
"October": "Tetor",
"November": "Nëntor",
"December": "Dhjetor",
"Sunday": "E diel",
"Monday": "E hënë",
"Tuesday": "E martë",
"Wednesday": "E mërkurë",
"Thursday": "E enjte",
"Friday": "E premte",
"Saturday": "E shtunë",
"Jan": "Jan",
"Feb": "Shk",
"Mar": "Mar",
"Apr": "Pri",
"May (short)": "Maj",
"Jun": "Qer",
"Jul": "Kor",
"Aug": "Gus",
"Sep": "Sht",
"Oct": "Tet",
"Nov": "Nën",
"Dec": "Dhj"
}

View File

@ -0,0 +1,43 @@
{
"Select the <strong>date and format</strong>, then click the <strong>Insert date</strong> button. The date will be displayed in the selected cell.": "Izaberite <strong>datum i format</strong>, zatim kliknite na dugme <strong>Ubaci datum</strong>. Datum će biti prikazan u izabranoj ćeliji.",
"Select date": "Izaberi datum",
"Select a date": "Izaberite datum",
"Select date format": "Izaberi format datuma",
"Insert date": "Ubaci datum",
"Loading...": "Učitavanje...",
"Loading plugin...": "Učitavanje dodatka...",
"Initializing plugin...": "Inicijalizacija dodatka...",
"Inserting date...": "Ubacivanje datuma...",
"Please <strong>do not close</strong> the plugin panel.": "Molimo <strong>ne zatvarajte</strong> panel dodatka.",
"January": "Januar",
"February": "Februar",
"March": "Mart",
"April": "April",
"May (full)": "Maj",
"June": "Jun",
"July": "Jul",
"August": "Avgust",
"September": "Septembar",
"October": "Oktobar",
"November": "Novembar",
"December": "Decembar",
"Sunday": "Nedelja",
"Monday": "Ponedeljak",
"Tuesday": "Utorak",
"Wednesday": "Sreda",
"Thursday": "Četvrtak",
"Friday": "Petak",
"Saturday": "Subota",
"Jan": "Jan",
"Feb": "Feb",
"Mar": "Mar",
"Apr": "Apr",
"May (short)": "Maj",
"Jun": "Jun",
"Jul": "Jul",
"Aug": "Avg",
"Sep": "Sep",
"Oct": "Okt",
"Nov": "Nov",
"Dec": "Dec"
}

View File

@ -0,0 +1,43 @@
{
"Select the <strong>date and format</strong>, then click the <strong>Insert date</strong> button. The date will be displayed in the selected cell.": "Изаберите <strong>датум и формат</strong>, затим кликните на дугме <strong>Убаци датум</strong>. Датум ће бити приказан у изабраној ћелији.",
"Select date": "Изабери датум",
"Select a date": "Изаберите датум",
"Select date format": "Изабери формат датума",
"Insert date": "Убаци датум",
"Loading...": "Учитавање...",
"Loading plugin...": "Учитавање додатка...",
"Initializing plugin...": "Иницијализација додатка...",
"Inserting date...": "Убацивање датума...",
"Please <strong>do not close</strong> the plugin panel.": "Молимо <strong>не затварајте</strong> панел додатка.",
"January": "Јануар",
"February": "Фебруар",
"March": "Март",
"April": "Април",
"May (full)": "Мај",
"June": "Јун",
"July": "Јул",
"August": "Август",
"September": "Септембар",
"October": "Октобар",
"November": "Новембар",
"December": "Децембар",
"Sunday": "Недеља",
"Monday": "Понедељак",
"Tuesday": "Уторак",
"Wednesday": "Среда",
"Thursday": "Четвртак",
"Friday": "Петак",
"Saturday": "Субота",
"Jan": "Јан",
"Feb": "Феб",
"Mar": "Мар",
"Apr": "Апр",
"May (short)": "Мај",
"Jun": "Јун",
"Jul": "Јул",
"Aug": "Авг",
"Sep": "Сеп",
"Oct": "Окт",
"Nov": "Нов",
"Dec": "Дец"
}

View File

@ -0,0 +1,43 @@
{
"Select the <strong>date and format</strong>, then click the <strong>Insert date</strong> button. The date will be displayed in the selected cell.": "选择<strong>日期和格式</strong>,然后点击<strong>插入日期</strong>按钮。日期将显示在选定的单元格中。",
"Select date": "选择日期",
"Select a date": "选择一个日期",
"Select date format": "选择日期格式",
"Insert date": "插入日期",
"Loading...": "加载中...",
"Loading plugin...": "加载插件中...",
"Initializing plugin...": "初始化插件中...",
"Inserting date...": "插入日期中...",
"Please <strong>do not close</strong> the plugin panel.": "请<strong>不要关闭</strong>插件面板。",
"January": "一月",
"February": "二月",
"March": "三月",
"April": "四月",
"May (full)": "五月",
"June": "六月",
"July": "七月",
"August": "八月",
"September": "九月",
"October": "十月",
"November": "十一月",
"December": "十二月",
"Sunday": "星期日",
"Monday": "星期一",
"Tuesday": "星期二",
"Wednesday": "星期三",
"Thursday": "星期四",
"Friday": "星期五",
"Saturday": "星期六",
"Jan": "1月",
"Feb": "2月",
"Mar": "3月",
"Apr": "4月",
"May (short)": "5月",
"Jun": "6月",
"Jul": "7月",
"Aug": "8月",
"Sep": "9月",
"Oct": "10月",
"Nov": "11月",
"Dec": "12月"
}