Merge branch 'develop' into feature/rtl-support

This commit is contained in:
JuliaSvinareva 2022-12-07 16:35:03 +03:00
commit 237fc63077
557 changed files with 18143 additions and 5303 deletions

View file

@ -193,6 +193,9 @@
change: false/true // hide/show feature in de/pe/sse
} / false / true // if false/true - use as init value in de/pe. use instead of customization.spellcheck parameter
},
font: {
name: "Arial",
},
chat: true,
comments: true,
zoom: 100,

View file

@ -102,12 +102,12 @@ define([
var txtPt = Common.Utils.Metric.getMetricName(Common.Utils.Metric.c_MetricUnits.pt),
data = [
{displayValue: '0.5 ' + txtPt, value: 0.5, pxValue: 0.5, offsety: 0},
{displayValue: '1 ' + txtPt, value: 1, pxValue: 1, offsety: 20},
{displayValue: '1 ' + txtPt, value: 1, pxValue: 1, offsety: 20}, //pxValue = 1.34px
{displayValue: '1.5 ' + txtPt, value: 1.5, pxValue: 2, offsety: 40},
{displayValue: '2.25 ' + txtPt, value: 2.25,pxValue: 3, offsety: 60},
{displayValue: '3 ' + txtPt, value: 3, pxValue: 4, offsety: 80},
{displayValue: '4.5 ' + txtPt, value: 4.5, pxValue: 5, offsety: 100},
{displayValue: '6 ' + txtPt, value: 6, pxValue: 6, offsety: 120}
{displayValue: '4.5 ' + txtPt, value: 4.5, pxValue: 6, offsety: 100},
{displayValue: '6 ' + txtPt, value: 6, pxValue: 8, offsety: 120}
];
if (options.allowNoBorders !== false)
data.unshift({displayValue: this.txtNoBorders, value: 0, pxValue: 0 });
@ -216,8 +216,8 @@ define([
{displayValue: '1.5 ' + txtPt, value: 1.5, pxValue: 2, offsety: 40},
{displayValue: '2.25 ' + txtPt, value: 2.25,pxValue: 3, offsety: 60},
{displayValue: '3 ' + txtPt, value: 3, pxValue: 4, offsety: 80},
{displayValue: '4.5 ' + txtPt, value: 4.5, pxValue: 5, offsety: 100},
{displayValue: '6 ' + txtPt, value: 6, pxValue: 6, offsety: 120}
{displayValue: '4.5 ' + txtPt, value: 4.5, pxValue: 6, offsety: 100},
{displayValue: '6 ' + txtPt, value: 6, pxValue: 8, offsety: 120}
];
if (options.allowNoBorders !== false)

View file

@ -1368,12 +1368,30 @@ define([
props = {minScrollbarLength : this.minScrollbarLength};
this.scrollAlwaysVisible && (props.alwaysVisibleY = this.scrollAlwaysVisible);
if (top + menuH > docH ) {
innerEl.css('max-height', (docH - top - paddings - margins) + 'px');
this.scroller.update(props);
} else if ( top + menuH < docH && innerEl.height() < this.options.restoreHeight ) {
innerEl.css('max-height', (Math.min(docH - top - paddings - margins, this.options.restoreHeight)) + 'px');
this.scroller.update(props);
var menuUp = false;
if (this.parentMenu.menuAlign) {
var m = this.parentMenu.menuAlign.match(/^([a-z]+)-([a-z]+)/);
menuUp = (m[1]==='bl' || m[1]==='br');
}
if (menuUp) {
var bottom = top + menuH;
if (top<0) {
innerEl.css('max-height', (bottom - paddings - margins) + 'px');
menuRoot.css('top', 0);
this.scroller.update(props);
} else if (top>0 && innerEl.height() < this.options.restoreHeight) {
innerEl.css('max-height', (Math.min(bottom - paddings - margins, this.options.restoreHeight)) + 'px');
menuRoot.css('top', bottom - menuRoot.outerHeight());
this.scroller.update(props);
}
} else {
if (top + menuH > docH ) {
innerEl.css('max-height', (docH - top - paddings - margins) + 'px');
this.scroller.update(props);
} else if ( top + menuH < docH && innerEl.height() < this.options.restoreHeight ) {
innerEl.css('max-height', (Math.min(docH - top - paddings - margins, this.options.restoreHeight)) + 'px');
this.scroller.update(props);
}
}
},

View file

@ -145,7 +145,7 @@ define([
style : '',
itemTemplate: null,
items : [],
menuAlign : 'tl-bl',
menuAlign : 'tl-bl',//menu - parent
menuAlignEl : null,
offset : [0, 0],
cyclic : true,

View file

@ -399,7 +399,9 @@ define([
_btns = data.buttons,
_flex = data.flex;
var more_section = $active.find('.more-box');
if (more_section.length===0) {
me.setMoreButton($active.attr('data-tab'), $active);
}
if ( !_rightedge ) {
_rightedge = $active.get(0).getBoundingClientRect().right;
}
@ -527,10 +529,30 @@ define([
this.$moreBar = btnsMore[tab].panel;
},
clearMoreButton: function(tab) {
var panel = this.$panels.filter('[data-tab=' + tab + ']');
if ( panel.length ) {
var data = panel.data();
data.buttons = data.flex = data.rightedge = undefined;
panel.find('.more-box').remove();
}
if (btnsMore[tab]) {
var moreContainer = optsFold.$bar.find('.more-container[data-tab="' + tab + '"]');
moreContainer.remove();
btnsMore[tab].remove();
delete btnsMore[tab];
}
},
resizeToolbar: function(reset) {
var $active = this.$panels.filter('.active'),
more_section = $active.find('.more-box'),
more_section_width = parseInt(more_section.css('width')) || 0,
more_section = $active.find('.more-box');
if (more_section.length===0) {
this.setMoreButton($active.attr('data-tab'), $active);
}
var more_section_width = parseInt(more_section.css('width')) || 0,
box_controls_width = $active.parents('.box-controls').width(),
_maxright = box_controls_width,
_rightedge = $active.get(0).getBoundingClientRect().right,

File diff suppressed because it is too large Load diff

View file

@ -74,6 +74,7 @@ define([
subEditStrings : {},
filter : undefined,
hintmode : false,
fullInfoHintMode: false,
viewmode: false,
isSelectedComment : false,
uids : [],
@ -186,7 +187,8 @@ define([
this.currentUserId = data.config.user.id;
this.sdkViewName = data['sdkviewname'] || this.sdkViewName;
this.hintmode = data['hintmode'] || false;
this.viewmode = data['viewmode'] || false;
this.fullInfoHintMode = data['fullInfoHintMode'] || false;
this.viewmode = data['viewmode'] || false;
}
},
setApi: function (api) {
@ -966,11 +968,11 @@ define([
if (!comment) continue;
if (this.subEditStrings[saveTxtId] && !hint) {
if (this.subEditStrings[saveTxtId] && (comment.get('fullInfoInHint') || !hint)) {
comment.set('editTextInPopover', true);
text = this.subEditStrings[saveTxtId];
}
else if (this.subEditStrings[saveTxtReplyId] && !hint) {
else if (this.subEditStrings[saveTxtReplyId] && (comment.get('fullInfoInHint') || !hint)) {
comment.set('showReplyInPopover', true);
text = this.subEditStrings[saveTxtReplyId];
}
@ -978,13 +980,16 @@ define([
comment.set('hint', !_.isUndefined(hint) ? hint : false);
if (!hint && this.hintmode) {
if (same_uids && (this.uids.length === 0))
if (same_uids)
animate = false;
if (this.oldUids.length && (0 === _.difference(this.oldUids, uids).length) && (0 === _.difference(uids, this.oldUids).length)) {
animate = false;
this.oldUids = [];
}
if (same_uids && !apihint && !this.isModeChanged)
this.api.asc_selectComment(comment.get('uid'));
}
if (this.animate) {
@ -1006,7 +1011,7 @@ define([
this.popoverComments.reset(comments);
if (this.popoverComments.findWhere({hide: false})) {
if (popover.isVisible()) {
if (popover.isVisible() && (!same_uids || this.isModeChanged)) {
popover.hide();
}
@ -1355,6 +1360,7 @@ define([
removable : (this.mode.canDeleteComments || (data.asc_getUserId() == this.currentUserId)) && AscCommon.UserInfoParser.canDeleteComment(data.asc_getUserName()),
hide : !AscCommon.UserInfoParser.canViewComment(data.asc_getUserName()),
hint : !this.mode.canComments,
fullInfoInHint : this.fullInfoHintMode,
groupName : (groupname && groupname.length>1) ? groupname[1] : null
});
if (comment) {

View file

@ -47,6 +47,7 @@ define([
titlebuttons: true,
uithemes: true,
btnhome: true,
quickprint: true
};
var native = window.desktop || window.AscDesktopEditor;
@ -165,7 +166,8 @@ define([
action: action,
icon: config.icon || undefined,
hint: config.btn.options.hint,
disabled: config.btn.isDisabled()
disabled: config.btn.isDisabled(),
visible: config.visible,
};
};
@ -200,6 +202,7 @@ define([
if ( !!titlebuttons ) {
info.hints = {};
!!titlebuttons['print'] && (info.hints['print'] = titlebuttons['print'].btn.btnEl.attr('data-hint-title'));
!!titlebuttons['quickprint'] && (info.hints['quickprint'] = titlebuttons['quickprint'].btn.btnEl.attr('data-hint-title'));
!!titlebuttons['undo'] && (info.hints['undo'] = titlebuttons['undo'].btn.btnEl.attr('data-hint-title'));
!!titlebuttons['redo'] && (info.hints['redo'] = titlebuttons['redo'].btn.btnEl.attr('data-hint-title'));
!!titlebuttons['save'] && (info.hints['save'] = titlebuttons['save'].btn.btnEl.attr('data-hint-title'));
@ -215,6 +218,24 @@ define([
}
}
const _onApplySettings = function (menu) {
if ( !!titlebuttons.quickprint ) {
const var_name = window.SSE ? 'sse-settings-quick-print-button' :
window.PE ? 'pe-settings-quick-print-button' : 'de-settings-quick-print-button';
const is_btn_visible = Common.localStorage.getBool(var_name, false);
if ( titlebuttons.quickprint.visible != is_btn_visible ) {
titlebuttons.quickprint.visible = is_btn_visible;
const obj = {
visible: {
quickprint: is_btn_visible,
}
};
native.execCommand('title:button', JSON.stringify(obj));
}
}
}
return {
init: function (opts) {
_.extend(config, opts);
@ -232,9 +253,33 @@ define([
Common.NotificationCenter.on('document:ready', function () {
if ( config.isEdit ) {
var maincontroller = webapp.getController('Main');
if (maincontroller.api.asc_isReadOnly && maincontroller.api.asc_isReadOnly()) {
maincontroller.warningDocumentIsLocked();
function get_locked_message (t) {
switch (t) {
// case Asc.c_oAscLocalRestrictionType.Nosafe:
case Asc.c_oAscLocalRestrictionType.ReadOnly:
return Common.Locale.get("tipFileReadOnly",{name:"Common.Translation", default: "Document is read only. You can make changes and save its local copy later."});
default: return Common.Locale.get("tipFileLocked",{name:"Common.Translation", default: "Document is locked for editing. You can make changes and save its local copy later."});
}
}
const header = webapp.getController('Viewport').getView('Common.Views.Header');
const api = webapp.getController('Main').api;
const locktype = api.asc_getLocalRestrictions ? api.asc_getLocalRestrictions() : Asc.c_oAscLocalRestrictionType.None;
if ( Asc.c_oAscLocalRestrictionType.None !== locktype ) {
features.readonly = true;
header.setDocumentReadOnly(true);
api.asc_setLocalRestrictions(Asc.c_oAscLocalRestrictionType.None);
(new Common.UI.SynchronizeTip({
extCls: 'no-arrow',
placement: 'bottom',
target: $('.toolbar'),
text: get_locked_message(locktype),
showLink: false,
})).on('closeclick', function () {
this.close();
}).show();
}
}
});
@ -261,21 +306,21 @@ define([
})).render($('#box-document-title #slot-btn-dt-home'));
titlebuttons['home'] = {btn: header.btnHome};
header.btnHome.on('click', event => {
header.btnHome.on('click', function (e) {
native.execCommand('title:button', JSON.stringify({click: "home"}));
});
$('#id-box-doc-name').on({
'dblclick': e => {
'dblclick': function (e) {
native.execCommand('title:dblclick', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
},
'mousedown': e => {
'mousedown': function (e) {
native.execCommand('title:mousedown', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
},
'mousemove': e => {
'mousemove': function (e) {
native.execCommand('title:mousemove', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
},
'mouseup': e => {
'mouseup': function (e) {
native.execCommand('title:mouseup', JSON.stringify({x: e.originalEvent.screenX, y: e.originalEvent.screenY}))
}
});
@ -291,6 +336,13 @@ define([
if (!!header.btnPrint)
titlebuttons['print'] = {btn: header.btnPrint};
if (!!header.btnPrintQuick) {
titlebuttons['quickprint'] = {
btn: header.btnPrintQuick,
visible: header.btnPrintQuick.isVisible(),
};
}
if (!!header.btnUndo)
titlebuttons['undo'] = {btn: header.btnUndo};
@ -346,6 +398,7 @@ define([
menu.hide();
}
},
'settings:apply': _onApplySettings.bind(this),
},
}, {id: 'desktop'});
@ -403,7 +456,10 @@ define([
}
return undefined;
}
},
getDefaultPrinterName: function () {
return nativevars ? nativevars.defaultPrinterName : '';
},
};
};

View file

@ -120,7 +120,9 @@ define([
}
externalEditor.attachMouseEvents();
} else {
createExternalEditor.apply(this);
require(['api'], function () {
createExternalEditor.apply(this);
}.bind(this));
}
this.isExternalEditorVisible = true;
this.isHandlerCalled = false;

View file

@ -118,7 +118,9 @@ define([
}
externalEditor.attachMouseEvents();
} else {
createExternalEditor.apply(this);
require(['api'], function () {
createExternalEditor.apply(this);
}.bind(this))
}
this.isExternalEditorVisible = true;
this.isHandlerCalled = false;

View file

@ -120,7 +120,9 @@ define([
}
externalEditor.attachMouseEvents();
} else {
createExternalEditor.apply(this);
require(['api'], function () {
createExternalEditor.apply(this);
}.bind(this));
}
this.isExternalEditorVisible = true;
this.isHandlerCalled = false;

View file

@ -66,7 +66,7 @@ define([
if ( !appOptions.isEditMailMerge && !appOptions.isEditDiagram && !appOptions.isEditOle ) {
var tab = {action: 'plugins', caption: me.panelPlugins.groupCaption, dataHintTitle: 'E', layoutname: 'toolbar-plugins'};
me.$toolbarPanelPlugins = me.panelPlugins.getPanel();
me.toolbar = toolbar;
toolbar.addTab(tab, me.$toolbarPanelPlugins, 10); // TODO: clear plugins list in left panel
}
}
@ -248,6 +248,7 @@ define([
me.appOptions.canPlugins = !collection.isEmpty();
if ( me.$toolbarPanelPlugins ) {
me.$toolbarPanelPlugins.empty();
me.toolbar && me.toolbar.clearMoreButton('plugins');
var _group = $('<div class="group"></div>'),
rank = -1,
@ -274,6 +275,7 @@ define([
rank = new_rank;
});
_group.appendTo(me.$toolbarPanelPlugins);
me.toolbar && me.toolbar.isTabActive('plugins') && me.toolbar.processPanelVisible(null, true, true);
var docProtection = me.panelPlugins._state.docProtection;
Common.Utils.lockControls(Common.enumLock.docLockView, docProtection.isReadOnly, {array: me.panelPlugins.lockedControls});
Common.Utils.lockControls(Common.enumLock.docLockForms, docProtection.isFormsOnly, {array: me.panelPlugins.lockedControls});

View file

@ -401,7 +401,7 @@ define([
if (value.Get_SmallCaps() !== undefined)
proptext += ((value.Get_SmallCaps() ? '' : me.textNot) + me.textSmallCaps + ', ');
if (value.Get_VertAlign() !== undefined)
proptext += (((value.Get_VertAlign()==1) ? me.textSuperScript : ((value.Get_VertAlign()==2) ? me.textSubScript : me.textBaseline)) + ', ');
proptext += (((value.Get_VertAlign()===Asc.vertalign_SuperScript) ? me.textSuperScript : ((value.Get_VertAlign()===Asc.vertalign_SubScript) ? me.textSubScript : me.textBaseline)) + ', ');
if (value.Get_Color() !== undefined)
proptext += (me.textColor + ', ');
if (value.Get_Highlight() !== undefined)

View file

@ -30,7 +30,8 @@
'`': 192, '-': 189, '=': 187,
';': 186, '\'': 222,
'[': 219, ']': 221, '\\': 220,
'ff-': 173, 'ff=': 61
'ff-': 173, 'ff=': 61,
numplus: 107, numminus: 109
},
code = function(x){
return _MAP[x] || x.toUpperCase().charCodeAt(0);

View file

@ -82,6 +82,7 @@ define([
hide : false,
filtered : false,
hint : false,
fullInfoInHint : false,
dummy : undefined,
editable : true,
removable : true

View file

@ -97,13 +97,43 @@
</div>
</div>
</div>
<div id="id-autocorrect-dialog-settings-autocorrect" class="settings-panel">
<div class="inner-content" style="width: 100%;">
<div class="padding-small">
<div id="id-autocorrect-dialog-chk-fl-sentence"></div>
</div>
<div class="padding-small">
<div id="id-autocorrect-dialog-chk-fl-cells"></div>
</div>
<div id="id-autocorrect-dialog-settings-exceptions" class="settings-panel">
<div class="inner-content">
<table cols="1" style="width: 100%;">
<tr>
<td style="padding-bottom: 12px;">
<div id="auto-correct-exceptions-chk-sentence" style="padding-bottom: 8px;"></div>
<div id="auto-correct-exceptions-chk-cells"></div>
</td>
</tr>
<tr>
<td>
<label><%= scope.textForLangFL %></label>
</td>
</tr>
<tr>
<td style="padding-bottom: 12px;">
<div id="auto-correct-exceptions-lang" style="display: inline-block; margin-right: 15px;vertical-align: middle;"></div>
</td>
</tr>
<tr>
<td>
<label><%= scope.textFLDont %></label>
<div id="auto-correct-exceptions-find" style="height:22px;width: 100%;margin-bottom: 4px;"></div>
</td>
</tr>
<tr>
<td style="padding-bottom: 8px;">
<div id="auto-correct-exceptions-list" class="" style="width:100%; height: 139px;"></div>
</td>
</tr>
<tr>
<td style="padding-bottom: 18px;">
<button type="button" class="btn btn-text-default auto" id="auto-correct-btn-exceptions-reset" style="min-width: 86px;"><%= scope.textResetAll %></button>
<button type="button" class="btn btn-text-default auto" id="auto-correct-btn-exceptions-delete" style="min-width: 86px;float: right;"><%= scope.textDelete %></button>
<button type="button" class="btn btn-text-default auto" id="auto-correct-btn-exceptions-edit" style="min-width: 86px;float: right;margin-right:5px;"><%= scope.textAdd %></button>
</td>
</tr>
</table>
</div>
</div>

View file

@ -7,11 +7,11 @@
<div class="color" style="display: inline-block; background-color: <% if (usercolor!==null) { %><%=usercolor%><% } else { %> #cfcfcf <% } %>; " ></div><%= scope.getEncodedName(parsedName) %>
</div>
<div class="user-date"><%=date%></div>
<% if (!editTextInPopover || hint || scope.viewmode) { %>
<% if (!editTextInPopover || (hint && !fullInfoInHint) || scope.viewmode) { %>
<div oo_editor_input="true" tabindex="-1" class="user-message user-select"><%=scope.pickLink(comment)%></div>
<% } else { %>
<div class="inner-edit-ct">
<textarea class="msg-reply user-select" maxlength="maxCommLength" spellcheck="false" <% if (!!dummy) { %> placeholder="textMention"<% } %>><%=comment%></textarea>
<textarea class="msg-reply user-select" maxlength="maxCommLength" spellcheck="false" <% if (!!dummy) { %> placeholder="textMentionComment"<% } %>><%=comment%></textarea>
<% if (hideAddReply) { %>
<button class="btn normal dlg-btn primary btn-inner-edit" id="id-comments-change-popover">textAdd</button>
<% } else { %>
@ -37,7 +37,7 @@
<div class="user-date"><%=item.get("date")%></div>
<% if (!item.get("editTextInPopover")) { %>
<div oo_editor_input="true" tabindex="-1" class="user-message user-select"><%=scope.pickLink(item.get("reply"))%></div>
<% if (!hint && !scope.viewmode) { %>
<% if ((fullInfoInHint || !hint) && !scope.viewmode) { %>
<div class="btns-reply-ct">
<% if (item.get("editable")) { %>
<div class="btn-edit img-commonctrl" data-value="<%=item.get("id")%>"></div>
@ -61,7 +61,7 @@
<!-- add reply button -->
<% if (!showReplyInPopover && !hideAddReply && !hint && !scope.viewmode) { %>
<% if (!showReplyInPopover && !hideAddReply && (fullInfoInHint || !hint) && !scope.viewmode) { %>
<% if (replys.length && !add_arrow) { %>
<label class="user-reply" style="margin-left: 20px; margin-top: 5px;" role="presentation" tabindex="-1">textAddReply</label>
<% } else { %>
@ -73,7 +73,7 @@
<% if (!editTextInPopover && !lock) { %>
<div class="edit-ct">
<% if (!hint && !scope.viewmode) { %>
<% if ((fullInfoInHint || !hint) && !scope.viewmode) { %>
<% if (editable) { %>
<div class="btn-edit img-commonctrl"></div>
<% } %>
@ -81,9 +81,9 @@
<div class="btn-delete img-commonctrl"></div>
<% } %>
<% } %>
<% if (editable && !hint && !scope.viewmode) { %>
<% if (editable && (fullInfoInHint || !hint) && !scope.viewmode) { %>
<div class="btn-resolve <% if (resolved) print('comment-resolved') %>" data-toggle="tooltip"></div>
<% } else if (!hint && (!editable || scope.viewmode) && resolved) { %>
<% } else if ((fullInfoInHint || !hint) && (!editable || scope.viewmode) && resolved) { %>
<div class="icon-resolve i-comment-resolved" data-toggle="tooltip"></div>
<% } %>
</div>
@ -93,7 +93,7 @@
<% if (showReplyInPopover) { %>
<div class="reply-ct">
<textarea class="msg-reply user-select" placeholder="textAddReply" maxlength="maxCommLength" spellcheck="false"></textarea>
<textarea class="msg-reply user-select" placeholder="textMentionReply" maxlength="maxCommLength" spellcheck="false"></textarea>
<button class="btn normal dlg-btn primary btn-reply" id="id-comments-change-popover">textReply</button>
<button class="btn normal dlg-btn btn-close">textClose</button>
</div>

View file

@ -72,6 +72,7 @@ if ( window.desktop ) {
delete params.uitheme;
} else {
localStorage.setItem("ui-theme-id", theme.id);
localStorage.removeItem("ui-theme-use-system");
}
localStorage.removeItem("ui-theme");

View file

@ -979,7 +979,7 @@ Common.Utils.warningDocumentIsLocked = function (opts) {
callback: function(btn){
if (btn == 'edit') {
if ( opts.disablefunc ) opts.disablefunc(false);
app.getController('Main').api.asc_setIsReadOnly(false);
app.getController('Main').api.asc_setLocalRestrictions(Asc.c_oAscLocalRestrictionType.None);
}
}
});

View file

@ -47,6 +47,8 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
], function (contentTemplate) { 'use strict';
var _mathStore = new Common.UI.DataViewStore();
var _functionsStore = new Common.UI.DataViewStore();
var _exciptionsStore = new Common.UI.DataViewStore();
var _exciptionsLangs = [0x0409, 0x0419];
Common.Views.AutoCorrectDialog = Common.Views.AdvancedSettingsWindow.extend(_.extend({
options: {
@ -57,7 +59,8 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
},
initialize : function(options) {
var filter = Common.localStorage.getKeysFilter();
var filter = Common.localStorage.getKeysFilter(),
me = this;
this.appPrefix = (filter && filter.length) ? filter.split(',')[0] : '';
var items = [
@ -66,7 +69,7 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
];
if (this.appPrefix=='de-' || this.appPrefix=='pe-') {
items.push({panelId: 'id-autocorrect-dialog-settings-de-autoformat', panelCaption: this.textAutoFormat});
items.push({panelId: 'id-autocorrect-dialog-settings-autocorrect', panelCaption: this.textAutoCorrect});
items.push({panelId: 'id-autocorrect-dialog-settings-exceptions', panelCaption: this.textAutoCorrect});
} else if (this.appPrefix=='sse-')
items.push({panelId: 'id-autocorrect-dialog-settings-sse-autoformat', panelCaption: this.textAutoFormat});
@ -105,6 +108,19 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
this.arrAddRec = value ? JSON.parse(value) : [];
value = Common.Utils.InternalSettings.get(path + "-rem");
this.arrRemRec = value ? JSON.parse(value) : [];
this.arrAddExceptions = {};
this.arrRemExceptions = {};
_exciptionsLangs.forEach(function(lang) {
path = me.appPrefix + "settings-letter-exception";
value = Common.Utils.InternalSettings.get(path + "-add-" + lang);
me.arrAddExceptions[lang] = value ? JSON.parse(value) : [];
value = Common.Utils.InternalSettings.get(path + "-rem-" + lang);
me.arrRemExceptions[lang] = value ? JSON.parse(value) : [];
});
Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options);
},
@ -335,27 +351,121 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
Common.Utils.InternalSettings.set(me.appPrefix + "settings-autoformat-double-space", checked);
me.api.asc_SetAutoCorrectDoubleSpaceWithPeriod(checked);
});
// AutoCorrect
this.chFLSentence = new Common.UI.CheckBox({
el: $window.find('#id-autocorrect-dialog-chk-fl-sentence'),
var exciptionsActiveLang = Common.Utils.InternalSettings.get('settings-letter-exception-lang');
this.exceptionsLangCmb = new Common.UI.ComboBox({
el : $window.find('#auto-correct-exceptions-lang'),
style : 'width: 145px;',
menuStyle : 'min-width:100%;',
editable : false,
takeFocusOnClose : true,
menuCls : 'menu-aligned',
cls : 'input-group-nr',
dataHintDirection: 'bottom',
data : _exciptionsLangs.map(function(lang){
var langName = Common.util.LanguageInfo.getLocalLanguageName(lang);
return {
displayValue: langName[1],
shortName: langName[0],
value: lang
};
})
}).on('selected', function(combo, record) {
if(exciptionsActiveLang != record.value) {
exciptionsActiveLang = record.value;
Common.Utils.InternalSettings.set('settings-letter-exception-lang', exciptionsActiveLang);
me.onInitExceptionsList(true);
me.onChangeInputException(me.exceptionsFindInput, me.exceptionsFindInput.getValue());
}
});
if(!exciptionsActiveLang) {
var curLangObj = this.exceptionsLangCmb.store.findWhere({value: this.api.asc_getDefaultLanguage()});
if (!curLangObj) {
var nameLang = Common.util.LanguageInfo.getLocalLanguageName(this.api.asc_getDefaultLanguage())[0].split(/[\-\_]/)[0];
curLangObj = this.exceptionsLangCmb.store.find(function(lang){
return lang.get('shortName').indexOf(nameLang)==0;
});
}
if(curLangObj) exciptionsActiveLang = curLangObj.get('value');
}
this.exceptionsLangCmb.setValue(exciptionsActiveLang ? exciptionsActiveLang : _exciptionsLangs[0]);
this.onInitExceptionsList(true);
this.exceptionsList = new Common.UI.ListView({
el: $window.find('#auto-correct-exceptions-list'),
store: new Common.UI.DataViewStore(_exciptionsStore.slice(0, 6)),
simpleAddMode: false,
template: _.template(['<div class="listview inner" style=""></div>'].join('')),
itemTemplate: _.template([
'<div id="<%= id %>" class="list-item" style="width: 340px;text-overflow: ellipsis;overflow: hidden;<% if (defaultDisabled) { %> font-style:italic; opacity: 0.5;<% } %>"><%= value + "."%></div>'
].join('')),
scrollAlwaysVisible: true,
tabindex: 1
});
this.exceptionsList.on('item:select', _.bind(this.onSelectExceptionItem, this));
this.exceptionsFindInput = new Common.UI.InputField({
el : $window.find('#auto-correct-exceptions-find'),
allowBlank : true,
validateOnChange : true,
maxLength : 255,
validation : function () { return true; }
}).on ('changing', _.bind(this.onChangeInputException, this));
this.exceptionsFindInput.cmpEl.find('input').on('keydown', function(event){
if (event.key == 'ArrowDown') {
var _selectedItem = me.exceptionsList.getSelectedRec() || me.exceptionsList.store.at(0);
if (_selectedItem) {
me.exceptionsList.selectRecord(_selectedItem);
me.exceptionsList.scrollToRecord(_selectedItem);
}
_.delay(function(){
me.exceptionsList.focus();
},10);
}
});
this.btnResetExceptions = new Common.UI.Button({
el: $window.find('#auto-correct-btn-exceptions-reset')
});
this.btnResetExceptions.on('click', _.bind(this.onResetExceptionsToDefault, this));
this.btnAddExceptions = new Common.UI.Button({
el: $window.find('#auto-correct-btn-exceptions-edit')
});
this.btnAddExceptions.on('click', _.bind(this.onAddException, this, false));
this.btnDeleteExceptions = new Common.UI.Button({
el: $window.find('#auto-correct-btn-exceptions-delete')
});
this.btnDeleteExceptions.on('click', _.bind(this.onDeleteException, this, false));
this.chkSentenceExceptions = new Common.UI.CheckBox({
el: $window.find('#auto-correct-exceptions-chk-sentence'),
labelText: this.textFLSentence,
value: Common.Utils.InternalSettings.get(this.appPrefix + "settings-autoformat-fl-sentence")
value: Common.Utils.InternalSettings.get(this.appPrefix + "settings-letter-exception-sentence")
}).on('change', function(field, newValue, oldValue, eOpts){
var checked = (field.getValue()==='checked');
Common.localStorage.setBool(me.appPrefix + "settings-autoformat-fl-sentence", checked);
Common.Utils.InternalSettings.set(me.appPrefix + "settings-autoformat-fl-sentence", checked);
Common.localStorage.setBool(me.appPrefix + "settings-letter-exception-sentence", checked);
Common.Utils.InternalSettings.set(me.appPrefix + "settings-letter-exception-sentence", checked);
me.api.asc_SetAutoCorrectFirstLetterOfSentences && me.api.asc_SetAutoCorrectFirstLetterOfSentences(checked);
});
this.chFLCells = new Common.UI.CheckBox({
el: $window.find('#id-autocorrect-dialog-chk-fl-cells'),
this.chkSentenceCells = new Common.UI.CheckBox({
el: $window.find('#auto-correct-exceptions-chk-cells'),
labelText: this.textFLCells,
value: Common.Utils.InternalSettings.get(this.appPrefix + "settings-autoformat-fl-cells")
value: Common.Utils.InternalSettings.get(this.appPrefix + "settings-letter-exception-cells")
}).on('change', function(field, newValue, oldValue, eOpts){
var checked = (field.getValue()==='checked');
Common.localStorage.setBool(me.appPrefix + "settings-autoformat-fl-cells", checked);
Common.Utils.InternalSettings.set(me.appPrefix + "settings-autoformat-fl-cells", checked);
me.api.asc_SetAutoCorrectFirstLetterOfCells && me.api.asc_SetAutoCorrectFirstLetterOfCells(checked);
Common.localStorage.setBool(me.appPrefix + "settings-letter-exception-cells", checked);
Common.Utils.InternalSettings.set(me.appPrefix + "settings-letter-exception-cells", checked);
me.api.asc_SetAutoCorrectFirstLetterOfSentences && me.api.asc_SetAutoCorrectFirstLetterOfSentences(checked);
});
this.btnsCategory[3].on('click', _.bind(this.onAutocorrectCategoryClick, this, false));
@ -392,6 +502,7 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
afterRender: function() {
this.updateControls();
this.updateRecControls();
this.updateExceptionsControls();
if (this.storageName) {
var value = Common.localStorage.getItem(this.storageName);
this.setActiveCategory((value!==null) ? parseInt(value) : 0);
@ -402,10 +513,9 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
var arr = [
this.chReplaceType, this.inputReplace, this.inputBy, this.mathList, this.btnReset, this.btnEdit, this.btnDelete, // 0 tab
this.inputRecFind, this.mathRecList, this.btnResetRec, this.btnAddRec, this.btnDeleteRec, // 1 tab
this.chHyperlink // 2 tab
];
arr = arr.concat(this.chNewRows ? [this.chNewRows] : [this.chQuotes, this.chHyphens, this.chBulleted, this.chNumbered]);
arr = arr.concat(this.chFLSentence ? [this.chFLSentence, this.chFLCells] : []);
arr = arr.concat(this.chNewRows ? [this.chHyperlink, this.chNewRows] : [this.chQuotes, this.chHyphens, this.chHyperlink, this.chDoubleSpaces, this.chBulleted, this.chNumbered]);
arr = arr.concat(this.chkSentenceExceptions ? [this.chkSentenceExceptions, this.chkSentenceCells, this.exceptionsLangCmb, this.exceptionsFindInput, this.exceptionsList, this.btnResetExceptions, this.btnAddExceptions, this.btnDeleteExceptions] : []);
return arr;
},
@ -481,30 +591,45 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
onAutocorrectCategoryClick: function(delay) {
var me = this;
_.delay(function(){
me.chFLSentence.focus();
$('input', me.exceptionsFindInput.cmpEl).select().focus();
},delay ? 50 : 0);
if (me.exceptionsList.store.length < _exciptionsStore.length) {
_.delay(function(){
me.exceptionsList.setStore(_exciptionsStore);
me.exceptionsList.onResetItems();
},delay ? 100 : 10);
}
},
onDelete: function() {
var rec = this.mathList.getSelectedRec();
var path = '';
var val;
if (rec) {
if (rec.get('defaultValue')) {
var path = this.appPrefix + "settings-math-correct-rem";
path = this.appPrefix + "settings-math-correct-rem";
var disabled = !rec.get('defaultDisabled');
rec.set('defaultDisabled', disabled);
if (disabled)
this.arrRem.push(rec.get('replaced'));
else
this.arrRem.splice(this.arrRem.indexOf(rec.get('replaced')), 1);
var val = JSON.stringify(this.arrRem);
val = JSON.stringify(this.arrRem);
Common.Utils.InternalSettings.set(path, val);
Common.localStorage.setItem(path, val);
this.btnDelete.setCaption(disabled ? this.textRestore : this.textDelete);
disabled ? this.api.asc_deleteFromAutoCorrectMathSymbols(rec.get('replaced')) : this.api.asc_AddOrEditFromAutoCorrectMathSymbols(rec.get('replaced'), rec.get('defaultValue'));
} else {
_mathStore.remove(rec);
this.arrAdd.splice(this.arrAdd.indexOf(rec.get('replaced')), 1);
path = this.appPrefix + "settings-math-correct-add";
val = JSON.stringify(this.arrAdd);
Common.Utils.InternalSettings.set(path, val);
Common.localStorage.setItem(path, val);
this.mathList.scroller && this.mathList.scroller.update({});
this.api.asc_deleteFromAutoCorrectMathSymbols(rec.get('replaced'));
this.api.asc_deleteFromAutoCorrectMathSymbols(rec.get('replaced'));
}
this.updateControls();
}
@ -746,22 +871,30 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
onDeleteRec: function() {
var rec = this.mathRecList.getSelectedRec();
var path;
var val;
if (rec) {
if (rec.get('defaultValue')) {
var path = this.appPrefix + "settings-rec-functions-rem";
path = this.appPrefix + "settings-rec-functions-rem";
var disabled = !rec.get('defaultDisabled');
rec.set('defaultDisabled', disabled);
if (disabled)
this.arrRemRec.push(rec.get('value'));
else
this.arrRemRec.splice(this.arrRemRec.indexOf(rec.get('value')), 1);
var val = JSON.stringify(this.arrRemRec);
val = JSON.stringify(this.arrRemRec);
Common.Utils.InternalSettings.set(path, val);
Common.localStorage.setItem(path, val);
this.btnDeleteRec.setCaption(disabled ? this.textRestore : this.textDelete);
disabled ? this.api.asc_deleteFromAutoCorrectMathFunctions(rec.get('value')) : this.api.asc_AddFromAutoCorrectMathFunctions(rec.get('value'));
} else {
_functionsStore.remove(rec);
this.arrAddRec.splice(this.arrAddRec.indexOf(rec.get('value')), 1);
path = this.appPrefix + "settings-rec-functions-add";
val = JSON.stringify(this.arrAddRec);
Common.Utils.InternalSettings.set(path, val);
Common.localStorage.setItem(path, val);
this.mathRecList.scroller && this.mathRecList.scroller.update({});
this.api.asc_deleteFromAutoCorrectMathFunctions(rec.get('value'));
}
@ -822,6 +955,204 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
this.btnAddRec.setDisabled(!!rec || !value);
},
onInitExceptionsList: function(overrideNotEmptyStore) {
if (_exciptionsStore.length>0 && !overrideNotEmptyStore) return;
_exciptionsStore.comparator = function(item1, item2) {
var n1 = item1.get('value').toLowerCase(),
n2 = item2.get('value').toLowerCase();
if (n1==n2) return 0;
return (n1<n2) ? -1 : 1;
};
var activeLang = this.exceptionsLangCmb.getValue(),
arrAdd = this.arrAddExceptions[activeLang] ? this.arrAddExceptions[activeLang] : [],
arrRem = this.arrRemExceptions[activeLang] ? this.arrRemExceptions[activeLang] : [];
var arr = (this.api) ? this.api.asc_GetAutoCorrectSettings().get_FirstLetterExceptionManager()
.get_DefaultExceptions(activeLang) : [],
data = [];
_.each(arr, function(item, index){
data.push({
value: item,
defaultValue: true,
defaultDisabled: arrRem.indexOf(item)>-1
});
});
var dataAdd = [];
_.each(arrAdd, function(item, index){
if (_.findIndex(data, {value: item})<0) {
dataAdd.push({
value: item,
defaultValue: false,
defaultDisabled: false
});
}
});
_exciptionsStore.reset(data.concat(dataAdd));
this.updateExceptionsControls();
},
onResetExceptionsToDefault: function() {
var apiFlManager = this.api.asc_GetAutoCorrectSettings().get_FirstLetterExceptionManager();
var activeLang = this.exceptionsLangCmb.getValue();
Common.UI.warning({
maxwidth: 500,
msg: this.textWarnResetFL,
buttons: ['yes', 'no'],
primary: 'yes',
callback: _.bind(function(btn, dontshow){
if (btn == 'yes') {
apiFlManager.put_Exceptions(apiFlManager.get_DefaultExceptions(activeLang), activeLang);
this.onResetExceptionsList();
}
}, this)
});
},
onResetExceptionsList: function() {
var path = this.appPrefix + "settings-letter-exception";
var activeLang = this.exceptionsLangCmb.getValue();
var val = JSON.stringify([]);
Common.Utils.InternalSettings.set(path + "-add-" + activeLang, val);
Common.localStorage.setItem(path + "-add-" + activeLang, val);
Common.Utils.InternalSettings.set(path + "-rem-" + activeLang, val);
Common.localStorage.setItem(path + "-rem-" + activeLang, val);
this.arrAddExceptions[activeLang] = [];
this.arrRemExceptions[activeLang] = [];
_exciptionsStore.remove(_exciptionsStore.where({defaultValue: false}));
_exciptionsStore.each(function(item, index){
item.set('defaultDisabled', false);
});
this.exceptionsList.deselectAll();
if (this.exceptionsList.scroller) {
this.exceptionsList.scroller.update();
this.exceptionsList.scroller.scrollTop(0);
}
this.updateExceptionsControls();
},
onDeleteException: function() {
var rec = this.exceptionsList.getSelectedRec();
var apiFlManager = this.api.asc_GetAutoCorrectSettings().get_FirstLetterExceptionManager();
var activeLang = this.exceptionsLangCmb.getValue();
if (rec) {
var val;
var path = '';
if (rec.get('defaultValue')) {
var disabled = !rec.get('defaultDisabled');
path = this.appPrefix + "settings-letter-exception-rem-" + activeLang;
rec.set('defaultDisabled', disabled);
if (disabled)
this.arrRemExceptions[activeLang].push(rec.get('value'));
else
this.arrRemExceptions[activeLang].splice(this.arrRemExceptions[activeLang].indexOf(rec.get('value')), 1);
val = JSON.stringify(this.arrRemExceptions[activeLang]);
Common.Utils.InternalSettings.set(path, val);
Common.localStorage.setItem(path, val);
this.btnDeleteExceptions.setCaption(disabled ? this.textRestore : this.textDelete);
disabled ? apiFlManager.remove_Exception(rec.get('value'), activeLang) : apiFlManager.add_Exception(rec.get('value'), activeLang);
} else {
_exciptionsStore.remove(rec);
this.arrAddExceptions[activeLang].splice(this.arrAddExceptions[activeLang].indexOf(rec.get('value')), 1);
path = this.appPrefix + "settings-letter-exception-add-" + activeLang;
val = JSON.stringify(this.arrAddExceptions[activeLang]);
Common.Utils.InternalSettings.set(path, val);
Common.localStorage.setItem(path, val);
this.exceptionsList.scroller && this.exceptionsList.scroller.update({});
apiFlManager.remove_Exception(rec.get('value'), activeLang);
}
this.updateExceptionsControls();
}
},
onAddException: function() {
var rec = this.exceptionsList.getSelectedRec(),
activeLang = this.exceptionsLangCmb.getValue(),
me = this,
value = this.exceptionsFindInput.getValue().trim(),
applySettings = function(record) {
var path = me.appPrefix + "settings-letter-exception-add-" + activeLang;
var val = JSON.stringify(me.arrAddExceptions[activeLang]);
Common.Utils.InternalSettings.set(path, val);
Common.localStorage.setItem(path, val);
me.api.asc_GetAutoCorrectSettings().get_FirstLetterExceptionManager().add_Exception(record.get('value') ,activeLang);
me.exceptionsList.selectRecord(record);
me.exceptionsList.scrollToRecord(record);
};
if (!rec) {
rec = _exciptionsStore.findWhere({value: value})
}
if (!rec) {
if(value[value.length-1] === '.')
value = value.slice(0, -1);
if (/^[^\%/\\&\?\,\.\s\d\'\;:!-+!@#\$\^*)(]{1,20}$/.test(value)) {
rec = _exciptionsStore.add({
value: value,
defaultValue: false,
defaultDisabled: false
});
this.arrAddExceptions[activeLang].push(rec.get('value'));
applySettings(rec);
} else
Common.UI.warning({
maxwidth: 500,
msg: this.textWarnAddFL
});
} else {
me.exceptionsList.selectRecord(rec);
me.exceptionsList.scrollToRecord(rec);
}
},
onSelectExceptionItem: function(lisvView, itemView, record) {
if (record) {
this.exceptionsFindInput.setValue(record.get('value'));
}
this.updateExceptionsControls(record);
},
onChangeInputException: function (input, value) {
var _selectedItem;
value = value.trim();
if (value.length) {
if(value[value.length-1] === '.')
value = value.slice(0, -1);
var store = this.exceptionsList.store;
_selectedItem = store.find(function(item) {
if ( item.get('value').indexOf(value) == 0) {
return true;
}
});
if (_selectedItem) {
this.exceptionsList.scrollToRecord(_selectedItem, true);
if (_selectedItem.get('value') == value)
this.exceptionsList.selectRecord(_selectedItem, true);
else
_selectedItem = null;
}
}
(!_selectedItem) && this.exceptionsList.deselectAll();
this.updateExceptionsControls(_selectedItem);
},
updateExceptionsControls: function(rec) {
if (!this.exceptionsList) return;
rec = rec || this.exceptionsList.getSelectedRec();
var value = this.exceptionsFindInput.getValue();
this.btnDeleteExceptions.setCaption(rec && rec.get('defaultDisabled') ? this.textRestore : this.textDelete);
this.btnDeleteExceptions.setDisabled(!rec);
this.btnAddExceptions.setDisabled(!!rec || !value);
},
textTitle: 'AutoCorrect',
textMathCorrect: 'Math AutoCorrect',
textReplace: 'Replace',
@ -850,8 +1181,12 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
textNewRowCol: 'Include new rows and columns in table',
textAutoCorrect: 'AutoCorrect',
textFLSentence: 'Capitalize first letter of sentences',
textWarnResetFL: 'Any exceptions you added will be removed and the removed ones will be restored. Do you want to continue?',
textWarnAddFL: 'Exceptions must contain only the letters, uppercase or lowercase.',
textForLangFL: 'Exceptions for the language:',
textHyperlink: 'Internet and network paths with hyperlinks',
textFLCells: 'Capitalize first letter of table cells',
textFLDont: 'Don`t capitalize after',
textDoubleSpaces: 'Add period with double-space'
}, Common.Views.AutoCorrectDialog || {}))

View file

@ -336,9 +336,24 @@ define([
// text box setup autosize input text
this.setupAutoSizingTextBox();
this.txtMessage.bind('input propertychange', _.bind(this.updateHeightTextBox, this));
this.disableTextBoxButton($(this.txtMessage));
this.txtMessage.bind('input propertychange', _.bind(this.onTextareaInput, this));
},
onTextareaInput: function(event) {
this.updateHeightTextBox(event);
this.disableTextBoxButton($(event.target));
},
disableTextBoxButton: function(textboxEl) {
var button = $(textboxEl.siblings('#chat-msg-btn-add')[0]);
if(textboxEl.val().trim().length > 0) {
button.removeAttr('disabled');
button.removeClass('disabled');
} else {
button.attr('disabled', true);
button.addClass('disabled');
}
},
updateLayout: function (applyUsersAutoSizig) {
var me = this;
var height = this.panelBox.height();

View file

@ -98,6 +98,17 @@ define([
var text = $(this.el).find('textarea');
return (text && text.length) ? text.val().trim() : '';
},
disableTextBoxButton: function(textboxEl) {
var button = $(textboxEl.siblings('#id-comments-change')[0]);
if(textboxEl.val().trim().length > 0) {
button.removeAttr('disabled');
button.removeClass('disabled');
} else {
button.attr('disabled', true);
button.addClass('disabled');
}
},
autoHeightTextBox: function () {
var view = this,
textBox = $(this.el).find('textarea'),
@ -127,13 +138,19 @@ define([
view.autoScrollToEditButtons();
}
function onTextareaInput(event) {
updateTextBoxHeight();
view.disableTextBoxButton($(event.target));
}
if (textBox && textBox.length) {
domTextBox = textBox.get(0);
view.disableTextBoxButton(textBox);
if (domTextBox) {
lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25;
updateTextBoxHeight();
textBox.bind('input propertychange', updateTextBoxHeight)
textBox.bind('input propertychange', onTextareaInput)
}
}
@ -171,7 +188,7 @@ define([
addCommentHeight: 45,
newCommentHeight: 110,
textBoxAutoSizeLocked: undefined, // disable autosize textbox
textBoxAutoSizeLocked: undefined, // disable autoHeightTextBoxsize textbox
viewmode: false,
_commentsViewOnItemClick: function (picker, item, record, e) {
@ -694,7 +711,17 @@ define([
this.layout.setResizeValue(0, container.height() - this.addCommentHeight);
}
},
disableTextBoxButton: function(textboxEl) {
var button = $(textboxEl.parent().siblings('.add')[0]);
if(textboxEl.val().trim().length > 0) {
button.removeAttr('disabled');
button.removeClass('disabled');
} else {
button.attr('disabled', true);
button.addClass('disabled');
}
},
autoHeightTextBox: function () {
var me = this, domTextBox = null, lineHeight = 0, minHeight = 44;
var textBox = $('#comment-msg-new', this.el);
@ -736,9 +763,15 @@ define([
Math.min(height - contentHeight - textBoxMinHeightIndent, height - me.newCommentHeight)));
}
function onTextareaInput(event) {
updateTextBoxHeight();
me.disableTextBoxButton($(event.target));
}
me.disableTextBoxButton(textBox);
lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25;
updateTextBoxHeight();
textBox.bind('input propertychange', updateTextBoxHeight);
textBox.bind('input propertychange', onTextareaInput);
this.textBox = textBox;
},

View file

@ -46,6 +46,7 @@ define([
initialize : function(options) {
var _options = {};
_.extend(_options, {
id: 'id-external-diagram-editor',
title: this.textTitle,
storageName: 'diagram-editor',
sdkplaceholder: 'id-diagram-editor-placeholder',

View file

@ -46,6 +46,7 @@ define([
initialize : function(options) {
var _options = {};
_.extend(_options, {
id: 'id-external-merge-editor',
title: this.textTitle,
storageName: 'merge-editor',
sdkplaceholder: 'id-merge-editor-placeholder',

View file

@ -46,6 +46,7 @@ define([
initialize : function(options) {
var _options = {};
_.extend(_options, {
id: 'id-external-ole-editor',
title: this.textTitle,
storageName: 'ole-editor',
sdkplaceholder: 'id-ole-editor-placeholder',

View file

@ -81,6 +81,7 @@ define([
'<div class="hedset">' +
'<div class="btn-slot" id="slot-hbtn-edit"></div>' +
'<div class="btn-slot" id="slot-hbtn-print"></div>' +
'<div class="btn-slot" id="slot-hbtn-print-quick"></div>' +
'<div class="btn-slot" id="slot-hbtn-download"></div>' +
'</div>' +
'<div class="hedset" data-layout-name="header-users">' +
@ -129,6 +130,7 @@ define([
'<div class="btn-slot" id="slot-btn-dt-home"></div>' +
'<div class="btn-slot" id="slot-btn-dt-save" data-layout-name="header-save"></div>' +
'<div class="btn-slot" id="slot-btn-dt-print"></div>' +
'<div class="btn-slot" id="slot-btn-dt-print-quick"></div>' +
'<div class="btn-slot" id="slot-btn-dt-undo"></div>' +
'<div class="btn-slot" id="slot-btn-dt-redo"></div>' +
'</div>' +
@ -333,6 +335,13 @@ define([
});
}
if ( me.btnPrintQuick ) {
me.btnPrintQuick.updateHint(me.tipPrintQuick);
me.btnPrintQuick.on('click', function (e) {
me.fireEvent('print-quick', me);
});
}
if ( me.btnSave ) {
me.btnSave.updateHint(me.tipSave + Common.Utils.String.platformKey('Ctrl+S'));
me.btnSave.on('click', function (e) {
@ -573,6 +582,9 @@ define([
if ( config.canPrint )
this.btnPrint = createTitleButton('toolbar__icon icon--inverse btn-print', $html.findById('#slot-hbtn-print'), undefined, 'bottom', 'big', 'P');
if ( config.canQuickPrint )
this.btnPrintQuick = createTitleButton('toolbar__icon icon--inverse btn-quick-print', $html.findById('#slot-hbtn-print-quick'), undefined, 'bottom', 'big', 'Q');
if ( config.canEdit && config.canRequestEditRights )
this.btnEdit = createTitleButton('toolbar__icon icon--inverse btn-edit', $html.findById('#slot-hbtn-edit'), undefined, 'bottom', 'big');
}
@ -647,6 +659,8 @@ define([
if ( config.canPrint && config.isEdit ) {
me.btnPrint = createTitleButton('toolbar__icon icon--inverse btn-print', $html.findById('#slot-btn-dt-print'), true, undefined, undefined, 'P');
}
if ( config.canQuickPrint && config.isEdit )
me.btnPrintQuick = createTitleButton('toolbar__icon icon--inverse btn-quick-print', $html.findById('#slot-btn-dt-print-quick'), true, undefined, undefined, 'Q');
me.btnSave = createTitleButton('toolbar__icon icon--inverse btn-save', $html.findById('#slot-btn-dt-save'), true, undefined, undefined, 'S');
me.btnUndo = createTitleButton('toolbar__icon icon--inverse btn-undo', $html.findById('#slot-btn-dt-undo'), true, undefined, undefined, 'Z');
@ -696,6 +710,7 @@ define([
if (idx>0)
this.fileExtention = this.documentCaption.substring(idx);
this.isModified && (value += '*');
this.readOnly && (value += ' (' + this.textReadOnly + ')');
if ( $labelDocName ) {
this.setDocTitle( value );
}
@ -888,6 +903,11 @@ define([
return initials;
},
setDocumentReadOnly: function (readonly) {
this.readOnly = readonly;
this.setDocumentCaption(this.documentCaption);
},
textBack: 'Go to Documents',
txtRename: 'Rename',
txtAccessRights: 'Change access rights',
@ -911,7 +931,9 @@ define([
textAddFavorite: 'Mark as favorite',
textHideNotes: 'Hide Notes',
tipSearch: 'Search',
textShare: 'Share'
textShare: 'Share',
tipPrintQuick: 'Quick print',
textReadOnly: 'Read only'
}
}(), Common.Views.Header || {}))
});

View file

@ -101,7 +101,10 @@ define([
this.checkedIndex = i;
}
}
(this.checkedIndex>=0) && this.radio[this.checkedIndex].setValue(true);
if (this.checkedIndex>=0) {
this.radio[this.checkedIndex].setValue(true);
this.currentCell = this.radio[this.checkedIndex].options.value;
}
}
$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this));
},

View file

@ -239,8 +239,7 @@ define([
var me = this;
if ( type == 'signature' ) {
var button = new Common.UI.Button({
cls: 'btn-text-default',
style: 'width: 100%;',
cls: 'btn-text-default auto',
caption: this.txtInvisibleSignature,
disabled: this._state.invisibleSignDisabled,
dataHint: '2',
@ -256,8 +255,7 @@ define([
return button;
} else if ( type == 'add-password' ) {
var button = new Common.UI.Button({
cls: 'btn-text-default',
style: 'width: 100%;',
cls: 'btn-text-default auto',
caption: this.txtAddPwd,
disabled: this._state.disabled || this._state.disabledPassword,
visible: !this._state.hasPassword,
@ -274,8 +272,7 @@ define([
return button;
} else if ( type == 'del-password' ) {
var button = new Common.UI.Button({
cls: 'btn-text-default',
style: 'width: 100%;',
cls: 'btn-text-default auto',
caption: this.txtDeletePwd,
disabled: this._state.disabled || this._state.disabledPassword,
visible: this._state.hasPassword,
@ -292,8 +289,7 @@ define([
return button;
} else if ( type == 'change-password' ) {
var button = new Common.UI.Button({
cls: 'btn-text-default',
style: 'width: 100%;',
cls: 'btn-text-default auto',
caption: this.txtChangePwd,
disabled: this._state.disabled || this._state.disabledPassword,
visible: this._state.hasPassword,

View file

@ -173,6 +173,17 @@ define([
var text = $(this.el).find('textarea');
return (text && text.length) ? text.val().trim() : '';
},
disableTextBoxButton: function(textboxEl) {
var button = $(textboxEl.siblings('#id-comments-change-popover')[0]);
if(textboxEl.val().trim().length > 0) {
button.removeAttr('disabled');
button.removeClass('disabled');
} else {
button.attr('disabled', true);
button.addClass('disabled');
}
},
autoHeightTextBox: function () {
var view = this,
textBox = this.$el.find('textarea'),
@ -183,6 +194,7 @@ define([
oldHeight = 0,
newHeight = 0;
function updateTextBoxHeight() {
scrollPos = parentView.scroller.getScrollTop();
if (domTextBox.scrollHeight > domTextBox.clientHeight) {
@ -211,13 +223,20 @@ define([
parentView.autoScrollToEditButtons();
}
function onTextareaInput(event) {
updateTextBoxHeight();
view.disableTextBoxButton($(event.target));
}
if (textBox && textBox.length && parentView.scroller) {
domTextBox = textBox.get(0);
view.disableTextBoxButton(textBox);
if (domTextBox) {
lineHeight = parseInt(textBox.css('lineHeight'), 10) * 0.25;
updateTextBoxHeight();
textBox.bind('input propertychange', updateTextBoxHeight)
textBox.bind('input propertychange', onTextareaInput)
}
}
@ -240,13 +259,14 @@ define([
el: $('#id-comments-popover'),
itemTemplate: _.template(replaceWords(commentsTemplate, {
textAddReply: me.textAddReply,
textMentionReply: me.canRequestSendNotify ? (me.mentionShare ? me.textMention : me.textMentionNotify) : me.textAddReply,
textAdd: me.textAdd,
textCancel: me.textCancel,
textEdit: me.textEdit,
textReply: me.textReply,
textClose: me.textClose,
maxCommLength: Asc.c_oAscMaxCellOrCommentLength,
textMention: me.canRequestSendNotify ? (me.mentionShare ? me.textMention : me.textMentionNotify) : ''
textMentionComment: me.canRequestSendNotify ? (me.mentionShare ? me.textMention : me.textMentionNotify) : me.textEnterComment
})
)
});
@ -321,7 +341,9 @@ define([
if (record.get('hint')) {
me.fireEvent('comment:disableHint', [record]);
return;
if(!record.get('fullInfoInHint'))
return;
}
if (btn.hasClass('btn-edit')) {
@ -516,8 +538,10 @@ define([
},
'animate:before': function () {
var text = me.$window.find('textarea');
if (text && text.length)
if (text && text.length){
text.focus();
me.commentsView.disableTextBoxButton(text);
}
}
});
}
@ -1292,6 +1316,7 @@ define([
textFollowMove : 'Follow Move',
textMention : '+mention will provide access to the document and send an email',
textMentionNotify : '+mention will notify the user via email',
textEnterComment : 'Enter your comment here',
textViewResolved : 'You have not permission for reopen comment',
txtAccept: 'Accept',
txtReject: 'Reject',

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 B

View file

@ -1,32 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#646464"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M43.6868 106.822C43.0032 106.822 42.4739 107.08 42.0989 107.596C41.7239 108.107 41.5364 108.822 41.5364 109.74C41.5364 111.65 42.2532 112.605 43.6868 112.605C44.2883 112.605 45.0168 112.455 45.8723 112.154V113.678C45.1692 113.971 44.384 114.117 43.5168 114.117C42.2708 114.117 41.3176 113.74 40.6575 112.986C39.9973 112.229 39.6672 111.143 39.6672 109.729C39.6672 108.838 39.8293 108.059 40.1536 107.391C40.4778 106.719 40.9426 106.205 41.5481 105.85C42.1575 105.49 42.8704 105.311 43.6868 105.311C44.5188 105.311 45.3547 105.512 46.1946 105.914L45.6086 107.391C45.2883 107.238 44.9661 107.105 44.6418 106.992C44.3176 106.879 43.9993 106.822 43.6868 106.822ZM52.7571 111.621C52.7571 112.395 52.4778 113.004 51.9192 113.449C51.3645 113.895 50.5911 114.117 49.5989 114.117C48.6848 114.117 47.8762 113.945 47.1731 113.602V111.914C47.7512 112.172 48.2395 112.354 48.6379 112.459C49.0403 112.564 49.4075 112.617 49.7395 112.617C50.1379 112.617 50.4426 112.541 50.6536 112.389C50.8684 112.236 50.9758 112.01 50.9758 111.709C50.9758 111.541 50.929 111.393 50.8352 111.264C50.7415 111.131 50.6028 111.004 50.4192 110.883C50.2395 110.762 49.8704 110.568 49.3118 110.303C48.7883 110.057 48.3958 109.82 48.134 109.594C47.8723 109.367 47.6633 109.104 47.5071 108.803C47.3508 108.502 47.2727 108.15 47.2727 107.748C47.2727 106.99 47.5286 106.395 48.0403 105.961C48.5559 105.527 49.2668 105.311 50.1731 105.311C50.6184 105.311 51.0422 105.363 51.4446 105.469C51.8508 105.574 52.2747 105.723 52.7161 105.914L52.1301 107.326C51.6731 107.139 51.2942 107.008 50.9934 106.934C50.6965 106.859 50.4036 106.822 50.1145 106.822C49.7708 106.822 49.5071 106.902 49.3235 107.062C49.1399 107.223 49.0481 107.432 49.0481 107.689C49.0481 107.85 49.0852 107.99 49.1594 108.111C49.2336 108.229 49.3508 108.344 49.511 108.457C49.675 108.566 50.0598 108.766 50.6653 109.055C51.4661 109.438 52.0149 109.822 52.3118 110.209C52.6086 110.592 52.7571 111.062 52.7571 111.621ZM59.1965 105.434H61.0305L58.1184 114H56.1379L53.2317 105.434H55.0657L56.677 110.531C56.7668 110.832 56.8586 111.184 56.9524 111.586C57.05 111.984 57.1106 112.262 57.134 112.418C57.177 112.059 57.3235 111.43 57.5735 110.531L59.1965 105.434Z" fill="white"/>
<path d="M38 90H21V92H38V90Z" fill="white"/>
<path d="M38 83H21V85H38V83Z" fill="white"/>
<path d="M38 76H21V78H38V76Z" fill="white"/>
<path d="M38 69H21V71H38V69Z" fill="white"/>
<path d="M38 62H21V64H38V62Z" fill="white"/>
<path d="M38 55H21V57H38V55Z" fill="white"/>
<path d="M38 48H21V50H38V48Z" fill="white"/>
<path d="M38 41H21V43H38V41Z" fill="white"/>
<path d="M38 34H21V36H38V34Z" fill="white"/>
<path d="M59 90H42V92H59V90Z" fill="white"/>
<path d="M59 83H42V85H59V83Z" fill="white"/>
<path d="M59 76H42V78H59V76Z" fill="white"/>
<path d="M59 69H42V71H59V69Z" fill="white"/>
<path d="M59 62H42V64H59V62Z" fill="white"/>
<path d="M59 55H42V57H59V55Z" fill="white"/>
<path d="M59 48H42V50H59V48Z" fill="white"/>
<path d="M59 41H42V43H59V41Z" fill="white"/>
<path d="M59 34H42V36H59V34Z" fill="white"/>
<path d="M80 90H63V92H80V90Z" fill="white"/>
<path d="M80 83H63V85H80V83Z" fill="white"/>
<path d="M80 76H63V78H80V76Z" fill="white"/>
<path d="M80 69H63V71H80V69Z" fill="white"/>
<path d="M80 62H63V64H80V62Z" fill="white"/>
<path d="M80 55H63V57H80V55Z" fill="white"/>
<path d="M80 48H63V50H80V48Z" fill="white"/>
<path d="M80 41H63V43H80V41Z" fill="white"/>
<path d="M80 34H63V36H80V34Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22039)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#646464"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M31 33H21V35H31V33ZM31 38H21V40H31V38ZM21 43H31V45H21V43ZM31 48H21V50H31V48ZM21 53H31V55H21V53ZM31 58H21V60H31V58ZM21 63H31V65H21V63ZM45 33H35V35H45V33ZM45 38H35V40H45V38ZM35 43H45V45H35V43ZM45 48H35V50H45V48ZM35 53H45V55H35V53ZM45 58H35V60H45V58ZM35 63H45V65H35V63ZM49 33H59V35H49V33ZM49 38H59V40H49V38ZM59 43H49V45H59V43ZM49 48H59V50H49V48ZM59 53H49V55H59V53ZM49 58H59V60H49V58ZM59 63H49V65H59V63Z" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M33.6836 79.8223C33.3359 79.8223 33.0273 79.8906 32.7578 80.0273C32.4922 80.1602 32.2676 80.3535 32.084 80.6074C31.9043 80.8613 31.7676 81.168 31.6738 81.5273C31.5801 81.8867 31.5332 82.291 31.5332 82.7402C31.5332 83.3457 31.6074 83.8633 31.7559 84.293C31.9082 84.7188 32.1426 85.0449 32.459 85.2715C32.7754 85.4941 33.1836 85.6055 33.6836 85.6055C34.0312 85.6055 34.3789 85.5664 34.7266 85.4883C35.0781 85.4102 35.459 85.2988 35.8691 85.1543V86.6777C35.4902 86.834 35.1172 86.9453 34.75 87.0117C34.3828 87.082 33.9707 87.1172 33.5137 87.1172C32.6309 87.1172 31.9043 86.9355 31.334 86.5723C30.7676 86.2051 30.3477 85.6934 30.0742 85.0371C29.8008 84.377 29.6641 83.6074 29.6641 82.7285C29.6641 82.0801 29.752 81.4863 29.9277 80.9473C30.1035 80.4082 30.3613 79.9414 30.7012 79.5469C31.041 79.1523 31.4609 78.8477 31.9609 78.6328C32.4609 78.418 33.0352 78.3105 33.6836 78.3105C34.1094 78.3105 34.5352 78.3652 34.9609 78.4746C35.3906 78.5801 35.8008 78.7266 36.1914 78.9141L35.6055 80.3906C35.2852 80.2383 34.9629 80.1055 34.6387 79.9922C34.3145 79.8789 33.9961 79.8223 33.6836 79.8223ZM42.7539 84.6211C42.7539 85.1289 42.6309 85.5703 42.3848 85.9453C42.1387 86.3203 41.7793 86.6094 41.3066 86.8125C40.8379 87.0156 40.2676 87.1172 39.5957 87.1172C39.2988 87.1172 39.0078 87.0977 38.7227 87.0586C38.4414 87.0195 38.1699 86.9629 37.9082 86.8887C37.6504 86.8105 37.4043 86.7148 37.1699 86.6016V84.9141C37.5762 85.0938 37.998 85.2559 38.4355 85.4004C38.873 85.5449 39.3066 85.6172 39.7363 85.6172C40.0332 85.6172 40.2715 85.5781 40.4512 85.5C40.6348 85.4219 40.7676 85.3145 40.8496 85.1777C40.9316 85.041 40.9727 84.8848 40.9727 84.709C40.9727 84.4941 40.9004 84.3105 40.7559 84.1582C40.6113 84.0059 40.4121 83.8633 40.1582 83.7305C39.9082 83.5977 39.625 83.4551 39.3086 83.3027C39.1094 83.209 38.8926 83.0957 38.6582 82.9629C38.4238 82.8262 38.2012 82.6602 37.9902 82.4648C37.7793 82.2695 37.6055 82.0332 37.4688 81.7559C37.3359 81.4746 37.2695 81.1387 37.2695 80.748C37.2695 80.2363 37.3867 79.7988 37.6211 79.4355C37.8555 79.0723 38.1895 78.7949 38.623 78.6035C39.0605 78.4082 39.5762 78.3105 40.1699 78.3105C40.6152 78.3105 41.0391 78.3633 41.4414 78.4688C41.8477 78.5703 42.2715 78.7188 42.7129 78.9141L42.127 80.3262C41.7324 80.166 41.3789 80.043 41.0664 79.957C40.7539 79.8672 40.4355 79.8223 40.1113 79.8223C39.8848 79.8223 39.6914 79.8594 39.5312 79.9336C39.3711 80.0039 39.25 80.1055 39.168 80.2383C39.0859 80.3672 39.0449 80.5176 39.0449 80.6895C39.0449 80.8926 39.1035 81.0645 39.2207 81.2051C39.3418 81.3418 39.5215 81.4746 39.7598 81.6035C40.002 81.7324 40.3027 81.8828 40.6621 82.0547C41.0996 82.2617 41.4727 82.4785 41.7812 82.7051C42.0938 82.9277 42.334 83.1914 42.502 83.4961C42.6699 83.7969 42.7539 84.1719 42.7539 84.6211ZM51.0273 78.4336L48.1152 87H46.1348L43.2285 78.4336H45.0625L46.6738 83.5312C46.7012 83.6172 46.7461 83.7793 46.8086 84.0176C46.8711 84.252 46.9336 84.502 46.9961 84.7676C47.0625 85.0293 47.1074 85.2461 47.1309 85.418C47.1543 85.2461 47.1953 85.0293 47.2539 84.7676C47.3164 84.5059 47.377 84.2578 47.4355 84.0234C47.498 83.7852 47.543 83.6211 47.5703 83.5312L49.1934 78.4336H51.0273Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22039">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -1,18 +1,13 @@
<svg style="position: absolute; width: 0; height: 0; overflow: hidden;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<symbol id="svg-format-djvu">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#BC8C18"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M44.5845 109.635C44.5845 111.045 44.1821 112.125 43.3774 112.875C42.5767 113.625 41.4185 114 39.9028 114H37.4771V105.434H40.1665C41.5649 105.434 42.6509 105.803 43.4243 106.541C44.1978 107.279 44.5845 108.311 44.5845 109.635ZM42.6978 109.682C42.6978 107.842 41.8853 106.922 40.2603 106.922H39.2935V112.5H40.0728C41.8228 112.5 42.6978 111.561 42.6978 109.682ZM45.6919 116.883C45.2349 116.883 44.8423 116.834 44.5142 116.736V115.33C44.7876 115.404 45.0669 115.441 45.3521 115.441C45.6528 115.441 45.8716 115.357 46.0083 115.189C46.1489 115.021 46.2192 114.773 46.2192 114.445V107.449H48.0063V114.709C48.0063 115.404 47.8052 115.939 47.4028 116.314C47.0005 116.693 46.4302 116.883 45.6919 116.883ZM46.1431 105.756C46.1431 105.174 46.4673 104.883 47.1157 104.883C47.7642 104.883 48.0884 105.174 48.0884 105.756C48.0884 106.033 48.0063 106.25 47.8423 106.406C47.6821 106.559 47.4399 106.635 47.1157 106.635C46.4673 106.635 46.1431 106.342 46.1431 105.756ZM54.9146 105.434H56.7485L53.8364 114H51.856L48.9497 105.434H50.7837L52.395 110.531C52.4849 110.832 52.5767 111.184 52.6704 111.586C52.7681 111.984 52.8286 112.262 52.8521 112.418C52.895 112.059 53.0415 111.43 53.2915 110.531L54.9146 105.434ZM62.3325 114L62.0923 113.162H61.9985C61.8071 113.467 61.5356 113.703 61.1841 113.871C60.8325 114.035 60.4321 114.117 59.9829 114.117C59.2134 114.117 58.6333 113.912 58.2427 113.502C57.8521 113.088 57.6567 112.494 57.6567 111.721V107.449H59.4438V111.275C59.4438 111.748 59.5278 112.104 59.6958 112.342C59.8638 112.576 60.1313 112.693 60.4985 112.693C60.9985 112.693 61.3599 112.527 61.5825 112.195C61.8052 111.859 61.9165 111.305 61.9165 110.531V107.449H63.7036V114H62.3325Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27 58V52V50H29H35H44H50H52V52V58H50V52H44V74H49V76H44H35H30V74H35V52H29V58H27Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M27 58V52V50H29H35H44H50H52V52V58H50V52H44V74H49V76H44H35H30V74H35V52H29V58H27Z" fill="white"/>
<rect x="55" y="50" width="19" height="2" fill="white"/>
<rect x="55" y="50" width="19" height="2" fill="white"/>
<rect x="55" y="58" width="19" height="2" fill="white"/>
<rect x="55" y="58" width="19" height="2" fill="white"/>
<rect x="55" y="66" width="19" height="2" fill="white"/>
<rect x="55" y="66" width="19" height="2" fill="white"/>
<rect x="55" y="74" width="19" height="2" fill="white"/>
<rect x="55" y="74" width="19" height="2" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M80 43.4348H21V82.5653H80V43.4348ZM19 41.4348V84.5653H82V41.4348H19Z" fill="white"/>
</symbol>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2966_22077)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#BC8C18"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M33.3203 82.6348C33.3203 83.5996 33.1348 84.4062 32.7637 85.0547C32.3965 85.6992 31.8633 86.1855 31.1641 86.5137C30.4648 86.8379 29.623 87 28.6387 87H26.2129V78.4336H28.9023C29.8008 78.4336 30.5801 78.5938 31.2402 78.9141C31.9004 79.2305 32.4121 79.7012 32.7754 80.3262C33.1387 80.9473 33.3203 81.7168 33.3203 82.6348ZM31.4336 82.6816C31.4336 82.0488 31.3398 81.5293 31.1523 81.123C30.9688 80.7129 30.6953 80.4102 30.332 80.2148C29.9727 80.0195 29.5273 79.9219 28.9961 79.9219H28.0293V85.5H28.8086C29.6953 85.5 30.3535 85.2637 30.7832 84.791C31.2168 84.3184 31.4336 83.6152 31.4336 82.6816ZM34.1992 89.5195C33.9648 89.5195 33.7598 89.5059 33.584 89.4785C33.4043 89.4551 33.252 89.4258 33.127 89.3906V87.8789C33.252 87.9062 33.3867 87.9316 33.5312 87.9551C33.6719 87.9824 33.8223 87.9961 33.9824 87.9961C34.1934 87.9961 34.3828 87.9551 34.5508 87.873C34.7188 87.7949 34.8516 87.6445 34.9492 87.4219C35.0469 87.1992 35.0957 86.8789 35.0957 86.4609V78.4336H36.9121V86.4492C36.9121 87.1836 36.7969 87.7754 36.5664 88.2246C36.3398 88.6777 36.0215 89.0059 35.6113 89.209C35.2051 89.416 34.7344 89.5195 34.1992 89.5195ZM45.7891 78.4336L42.877 87H40.8965L37.9902 78.4336H39.8242L41.4355 83.5312C41.4629 83.6172 41.5078 83.7793 41.5703 84.0176C41.6328 84.252 41.6953 84.502 41.7578 84.7676C41.8242 85.0293 41.8691 85.2461 41.8926 85.418C41.916 85.2461 41.957 85.0293 42.0156 84.7676C42.0781 84.5059 42.1387 84.2578 42.1973 84.0234C42.2598 83.7852 42.3047 83.6211 42.332 83.5312L43.9551 78.4336H45.7891ZM53.8457 78.4336V83.9766C53.8457 84.5664 53.7148 85.0996 53.4531 85.5762C53.1953 86.0488 52.8027 86.4238 52.2754 86.7012C51.752 86.9785 51.0918 87.1172 50.2949 87.1172C49.1621 87.1172 48.2988 86.8281 47.7051 86.25C47.1113 85.6719 46.8145 84.9062 46.8145 83.9531V78.4336H48.625V83.6777C48.625 84.3848 48.7695 84.8809 49.0586 85.166C49.3477 85.4512 49.7754 85.5938 50.3418 85.5938C50.7402 85.5938 51.0625 85.5254 51.3086 85.3887C51.5586 85.252 51.7422 85.041 51.8594 84.7559C51.9766 84.4707 52.0352 84.1074 52.0352 83.666V78.4336H53.8457Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M39 60V37.5C39 37.5 33.375 33.6429 24 33V54.2143C24 54.2143 34.625 54.8571 39 60ZM56 54.2143V33C46.625 33.6429 41 37.5 41 37.5V60C45.375 54.8571 56 54.2143 56 54.2143ZM57.1 57.2927V37H59V59.1951C59 59.1951 50.7667 57.9268 40 63C29.2333 57.9268 21 59.1951 21 59.1951V37H22.9V57.2927C22.9 57.2927 32.4 57.2927 40 62.5561C47.6 57.2927 57.1 57.2927 57.1 57.2927Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2966_22077">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -1,10 +1,14 @@
<svg style="position: absolute; width: 0; height: 0; overflow: hidden;" width="100" height="127" viewBox="0 0 100 127" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#214479"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M39.4824 109.635C39.4824 111.045 39.0801 112.125 38.2754 112.875C37.4746 113.625 36.3164 114 34.8008 114H32.375V105.434H35.0645C36.4629 105.434 37.5488 105.803 38.3223 106.541C39.0957 107.279 39.4824 108.311 39.4824 109.635ZM37.5957 109.682C37.5957 107.842 36.7832 106.922 35.1582 106.922H34.1914V112.5H34.9707C36.7207 112.5 37.5957 111.561 37.5957 109.682ZM49.0332 109.705C49.0332 111.123 48.6816 112.213 47.9785 112.975C47.2754 113.736 46.2676 114.117 44.9551 114.117C43.6426 114.117 42.6348 113.736 41.9316 112.975C41.2285 112.213 40.877 111.119 40.877 109.693C40.877 108.268 41.2285 107.18 41.9316 106.43C42.6387 105.676 43.6504 105.299 44.9668 105.299C46.2832 105.299 47.2891 105.678 47.9844 106.436C48.6836 107.193 49.0332 108.283 49.0332 109.705ZM42.7812 109.705C42.7812 110.662 42.9629 111.383 43.3262 111.867C43.6895 112.352 44.2324 112.594 44.9551 112.594C46.4043 112.594 47.1289 111.631 47.1289 109.705C47.1289 107.775 46.4082 106.811 44.9668 106.811C44.2441 106.811 43.6992 107.055 43.332 107.543C42.9648 108.027 42.7812 108.748 42.7812 109.705ZM54.4473 106.822C53.7637 106.822 53.2344 107.08 52.8594 107.596C52.4844 108.107 52.2969 108.822 52.2969 109.74C52.2969 111.65 53.0137 112.605 54.4473 112.605C55.0488 112.605 55.7773 112.455 56.6328 112.154V113.678C55.9297 113.971 55.1445 114.117 54.2773 114.117C53.0312 114.117 52.0781 113.74 51.418 112.986C50.7578 112.229 50.4277 111.143 50.4277 109.729C50.4277 108.838 50.5898 108.059 50.9141 107.391C51.2383 106.719 51.7031 106.205 52.3086 105.85C52.918 105.49 53.6309 105.311 54.4473 105.311C55.2793 105.311 56.1152 105.512 56.9551 105.914L56.3691 107.391C56.0488 107.238 55.7266 107.105 55.4023 106.992C55.0781 106.879 54.7598 106.822 54.4473 106.822ZM62.0879 114L60.0254 107.279H59.9727C60.0469 108.646 60.084 109.559 60.084 110.016V114H58.4609V105.434H60.9336L62.9609 111.984H62.9961L65.1465 105.434H67.6191V114H65.9258V109.945C65.9258 109.754 65.9277 109.533 65.9316 109.283C65.9395 109.033 65.9668 108.369 66.0137 107.291H65.9609L63.752 114H62.0879Z" fill="white"/>
<path d="M67.8 48L61.5 75L54.5 48H51.5H48.5L41.5 75L35.2 48H29.4L37.9 82H44.3L51.5 54.1L58.7 82H65.1L73.6 48H67.8Z" fill="white"/>
<path d="M15 17C15 15.8954 15.8954 15 17 15H29C30.1046 15 31 15.8954 31 17V26C31 27.1046 30.1046 28 29 28H17C15.8954 28 15 27.1046 15 26V17Z" fill="white"/>
<path d="M22.2969 26L19.8125 18.8457H19.7656C19.832 19.9082 19.8652 20.9043 19.8652 21.834V26H18.5938V17.4336H20.5684L22.9473 24.248H22.9824L25.4316 17.4336H27.4121V26H26.0645V21.7637C26.0645 21.3379 26.0742 20.7832 26.0938 20.0996C26.1172 19.416 26.1367 19.002 26.1523 18.8574H26.1055L23.5332 26H22.2969Z" fill="#214479"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22032)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#214479"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M29.4824 82.6348C29.4824 83.5996 29.2969 84.4062 28.9258 85.0547C28.5586 85.6992 28.0254 86.1855 27.3262 86.5137C26.627 86.8379 25.7852 87 24.8008 87H22.375V78.4336H25.0645C25.9629 78.4336 26.7422 78.5938 27.4023 78.9141C28.0625 79.2305 28.5742 79.7012 28.9375 80.3262C29.3008 80.9473 29.4824 81.7168 29.4824 82.6348ZM27.5957 82.6816C27.5957 82.0488 27.502 81.5293 27.3145 81.123C27.1309 80.7129 26.8574 80.4102 26.4941 80.2148C26.1348 80.0195 25.6895 79.9219 25.1582 79.9219H24.1914V85.5H24.9707C25.8574 85.5 26.5156 85.2637 26.9453 84.791C27.3789 84.3184 27.5957 83.6152 27.5957 82.6816ZM39.0332 82.7051C39.0332 83.3652 38.9512 83.9668 38.7871 84.5098C38.623 85.0488 38.373 85.5137 38.0371 85.9043C37.7051 86.2949 37.2832 86.5957 36.7715 86.8066C36.2598 87.0137 35.6543 87.1172 34.9551 87.1172C34.2559 87.1172 33.6504 87.0137 33.1387 86.8066C32.627 86.5957 32.2031 86.2949 31.8672 85.9043C31.5352 85.5137 31.2871 85.0469 31.123 84.5039C30.959 83.9609 30.877 83.3574 30.877 82.6934C30.877 81.8066 31.0215 81.0352 31.3105 80.3789C31.6035 79.7188 32.0527 79.207 32.6582 78.8438C33.2637 78.4805 34.0332 78.2988 34.9668 78.2988C35.8965 78.2988 36.6602 78.4805 37.2578 78.8438C37.8594 79.207 38.3047 79.7188 38.5938 80.3789C38.8867 81.0391 39.0332 81.8145 39.0332 82.7051ZM32.7812 82.7051C32.7812 83.3027 32.8555 83.8184 33.0039 84.252C33.1562 84.6816 33.3926 85.0137 33.7129 85.248C34.0332 85.4785 34.4473 85.5938 34.9551 85.5938C35.4707 85.5938 35.8887 85.4785 36.209 85.248C36.5293 85.0137 36.7617 84.6816 36.9062 84.252C37.0547 83.8184 37.1289 83.3027 37.1289 82.7051C37.1289 81.8066 36.9609 81.0996 36.625 80.584C36.2891 80.0684 35.7363 79.8105 34.9668 79.8105C34.4551 79.8105 34.0371 79.9277 33.7129 80.1621C33.3926 80.3926 33.1562 80.7246 33.0039 81.1582C32.8555 81.5879 32.7812 82.1035 32.7812 82.7051ZM44.4473 79.8223C44.0996 79.8223 43.791 79.8906 43.5215 80.0273C43.2559 80.1602 43.0312 80.3535 42.8477 80.6074C42.668 80.8613 42.5312 81.168 42.4375 81.5273C42.3438 81.8867 42.2969 82.291 42.2969 82.7402C42.2969 83.3457 42.3711 83.8633 42.5195 84.293C42.6719 84.7188 42.9062 85.0449 43.2227 85.2715C43.5391 85.4941 43.9473 85.6055 44.4473 85.6055C44.7949 85.6055 45.1426 85.5664 45.4902 85.4883C45.8418 85.4102 46.2227 85.2988 46.6328 85.1543V86.6777C46.2539 86.834 45.8809 86.9453 45.5137 87.0117C45.1465 87.082 44.7344 87.1172 44.2773 87.1172C43.3945 87.1172 42.668 86.9355 42.0977 86.5723C41.5312 86.2051 41.1113 85.6934 40.8379 85.0371C40.5645 84.377 40.4277 83.6074 40.4277 82.7285C40.4277 82.0801 40.5156 81.4863 40.6914 80.9473C40.8672 80.4082 41.125 79.9414 41.4648 79.5469C41.8047 79.1523 42.2246 78.8477 42.7246 78.6328C43.2246 78.418 43.7988 78.3105 44.4473 78.3105C44.873 78.3105 45.2988 78.3652 45.7246 78.4746C46.1543 78.5801 46.5645 78.7266 46.9551 78.9141L46.3691 80.3906C46.0488 80.2383 45.7266 80.1055 45.4023 79.9922C45.0781 79.8789 44.7598 79.8223 44.4473 79.8223ZM52.0879 87L50.0254 80.2793H49.9727C49.9805 80.4395 49.9922 80.6816 50.0078 81.0059C50.0273 81.3262 50.0449 81.668 50.0605 82.0312C50.0762 82.3945 50.084 82.7227 50.084 83.0156V87H48.4609V78.4336H50.9336L52.9609 84.9844H52.9961L55.1465 78.4336H57.6191V87H55.9258V82.9453C55.9258 82.6758 55.9297 82.3652 55.9375 82.0137C55.9492 81.6621 55.9629 81.3281 55.9785 81.0117C55.9941 80.6914 56.0059 80.4512 56.0137 80.291H55.9609L53.752 87H52.0879Z" fill="white"/>
<path d="M51.8009 36L47.2398 56.6471L42.1719 36H40H37.8281L32.7602 56.6471L28.1991 36H24L30.1538 62H34.7873L40 40.6647L45.2127 62H49.8462L56 36H51.8009Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 10C10.8954 10 10 10.8954 10 12V21C10 22.1046 10.8954 23 12 23H21C22.1046 23 23 22.1046 23 21V12C23 10.8954 22.1046 10 21 10H12ZM14.6641 12.8906H13.9902H13.4238H12.7549V20H14.2148V17.9785L14.0691 14.6767L15.9922 20H16.9883L18.9114 14.6767L18.7656 17.9785V20H20.2305V12.8906H19.5566H18.9902H18.3164L16.4902 18.1104L14.6641 12.8906Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22032">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View file

@ -1,6 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#214479"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M41.6406 109.635C41.6406 111.045 41.2383 112.125 40.4336 112.875C39.6328 113.625 38.4746 114 36.959 114H34.5332V105.434H37.2227C38.6211 105.434 39.707 105.803 40.4805 106.541C41.2539 107.279 41.6406 108.311 41.6406 109.635ZM39.7539 109.682C39.7539 107.842 38.9414 106.922 37.3164 106.922H36.3496V112.5H37.1289C38.8789 112.5 39.7539 111.561 39.7539 109.682ZM51.1914 109.705C51.1914 111.123 50.8398 112.213 50.1367 112.975C49.4336 113.736 48.4258 114.117 47.1133 114.117C45.8008 114.117 44.793 113.736 44.0898 112.975C43.3867 112.213 43.0352 111.119 43.0352 109.693C43.0352 108.268 43.3867 107.18 44.0898 106.43C44.7969 105.676 45.8086 105.299 47.125 105.299C48.4414 105.299 49.4473 105.678 50.1426 106.436C50.8418 107.193 51.1914 108.283 51.1914 109.705ZM44.9395 109.705C44.9395 110.662 45.1211 111.383 45.4844 111.867C45.8477 112.352 46.3906 112.594 47.1133 112.594C48.5625 112.594 49.2871 111.631 49.2871 109.705C49.2871 107.775 48.5664 106.811 47.125 106.811C46.4023 106.811 45.8574 107.055 45.4902 107.543C45.123 108.027 44.9395 108.748 44.9395 109.705ZM56.6055 106.822C55.9219 106.822 55.3926 107.08 55.0176 107.596C54.6426 108.107 54.4551 108.822 54.4551 109.74C54.4551 111.65 55.1719 112.605 56.6055 112.605C57.207 112.605 57.9355 112.455 58.791 112.154V113.678C58.0879 113.971 57.3027 114.117 56.4355 114.117C55.1895 114.117 54.2363 113.74 53.5762 112.986C52.916 112.229 52.5859 111.143 52.5859 109.729C52.5859 108.838 52.748 108.059 53.0723 107.391C53.3965 106.719 53.8613 106.205 54.4668 105.85C55.0762 105.49 55.7891 105.311 56.6055 105.311C57.4375 105.311 58.2734 105.512 59.1133 105.914L58.5273 107.391C58.207 107.238 57.8848 107.105 57.5605 106.992C57.2363 106.879 56.918 106.822 56.6055 106.822ZM67.5449 114H65.4707L63.4785 110.76L61.4863 114H59.541L62.3828 109.582L59.7227 105.434H61.7266L63.5723 108.516L65.3828 105.434H67.3398L64.6504 109.682L67.5449 114Z" fill="white"/>
<path d="M67.8 48L61.5 75L54.5 48H51.5H48.5L41.5 75L35.2 48H29.4L37.9 82H44.3L51.5 54.1L58.7 82H65.1L73.6 48H67.8Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22056)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#214479"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M31.1406 82.6348C31.1406 83.5996 30.9551 84.4062 30.584 85.0547C30.2168 85.6992 29.6836 86.1855 28.9844 86.5137C28.2852 86.8379 27.4434 87 26.459 87H24.0332V78.4336H26.7227C27.6211 78.4336 28.4004 78.5938 29.0605 78.9141C29.7207 79.2305 30.2324 79.7012 30.5957 80.3262C30.959 80.9473 31.1406 81.7168 31.1406 82.6348ZM29.2539 82.6816C29.2539 82.0488 29.1602 81.5293 28.9727 81.123C28.7891 80.7129 28.5156 80.4102 28.1523 80.2148C27.793 80.0195 27.3477 79.9219 26.8164 79.9219H25.8496V85.5H26.6289C27.5156 85.5 28.1738 85.2637 28.6035 84.791C29.0371 84.3184 29.2539 83.6152 29.2539 82.6816ZM40.6914 82.7051C40.6914 83.3652 40.6094 83.9668 40.4453 84.5098C40.2812 85.0488 40.0312 85.5137 39.6953 85.9043C39.3633 86.2949 38.9414 86.5957 38.4297 86.8066C37.918 87.0137 37.3125 87.1172 36.6133 87.1172C35.9141 87.1172 35.3086 87.0137 34.7969 86.8066C34.2852 86.5957 33.8613 86.2949 33.5254 85.9043C33.1934 85.5137 32.9453 85.0469 32.7812 84.5039C32.6172 83.9609 32.5352 83.3574 32.5352 82.6934C32.5352 81.8066 32.6797 81.0352 32.9688 80.3789C33.2617 79.7188 33.7109 79.207 34.3164 78.8438C34.9219 78.4805 35.6914 78.2988 36.625 78.2988C37.5547 78.2988 38.3184 78.4805 38.916 78.8438C39.5176 79.207 39.9629 79.7188 40.252 80.3789C40.5449 81.0391 40.6914 81.8145 40.6914 82.7051ZM34.4395 82.7051C34.4395 83.3027 34.5137 83.8184 34.6621 84.252C34.8145 84.6816 35.0508 85.0137 35.3711 85.248C35.6914 85.4785 36.1055 85.5938 36.6133 85.5938C37.1289 85.5938 37.5469 85.4785 37.8672 85.248C38.1875 85.0137 38.4199 84.6816 38.5645 84.252C38.7129 83.8184 38.7871 83.3027 38.7871 82.7051C38.7871 81.8066 38.6191 81.0996 38.2832 80.584C37.9473 80.0684 37.3945 79.8105 36.625 79.8105C36.1133 79.8105 35.6953 79.9277 35.3711 80.1621C35.0508 80.3926 34.8145 80.7246 34.6621 81.1582C34.5137 81.5879 34.4395 82.1035 34.4395 82.7051ZM46.1055 79.8223C45.7578 79.8223 45.4492 79.8906 45.1797 80.0273C44.9141 80.1602 44.6895 80.3535 44.5059 80.6074C44.3262 80.8613 44.1895 81.168 44.0957 81.5273C44.002 81.8867 43.9551 82.291 43.9551 82.7402C43.9551 83.3457 44.0293 83.8633 44.1777 84.293C44.3301 84.7188 44.5645 85.0449 44.8809 85.2715C45.1973 85.4941 45.6055 85.6055 46.1055 85.6055C46.4531 85.6055 46.8008 85.5664 47.1484 85.4883C47.5 85.4102 47.8809 85.2988 48.291 85.1543V86.6777C47.9121 86.834 47.5391 86.9453 47.1719 87.0117C46.8047 87.082 46.3926 87.1172 45.9355 87.1172C45.0527 87.1172 44.3262 86.9355 43.7559 86.5723C43.1895 86.2051 42.7695 85.6934 42.4961 85.0371C42.2227 84.377 42.0859 83.6074 42.0859 82.7285C42.0859 82.0801 42.1738 81.4863 42.3496 80.9473C42.5254 80.4082 42.7832 79.9414 43.123 79.5469C43.4629 79.1523 43.8828 78.8477 44.3828 78.6328C44.8828 78.418 45.457 78.3105 46.1055 78.3105C46.5312 78.3105 46.957 78.3652 47.3828 78.4746C47.8125 78.5801 48.2227 78.7266 48.6133 78.9141L48.0273 80.3906C47.707 80.2383 47.3848 80.1055 47.0605 79.9922C46.7363 79.8789 46.418 79.8223 46.1055 79.8223ZM57.0449 87H54.9707L52.9785 83.7598L50.9863 87H49.041L51.8828 82.582L49.2227 78.4336H51.2266L53.0723 81.5156L54.8828 78.4336H56.8398L54.1504 82.6816L57.0449 87Z" fill="white"/>
<path d="M51.8009 36L47.2398 56.6471L42.1719 36H40H37.8281L32.7602 56.6471L28.1991 36H24L30.1538 62H34.7873L40 40.6647L45.2127 62H49.8462L56 36H51.8009Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22056">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,14 +1,14 @@
<svg width="100" height="127" viewBox="0 0 100 127" fill="none" xmlns="http://www.w3.org/2000/svg">
<g> <path id="Vector" d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#27ABA3"/>
<path id="Vector_2" opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<g id="DOCXF">
<path d="M38.3176 109.635C38.3176 111.045 37.9153 112.125 37.1106 112.875C36.3098 113.625 35.1516 114 33.636 114H31.2102V105.434H33.8997C35.2981 105.434 36.384 105.803 37.1575 106.541C37.9309 107.279 38.3176 108.311 38.3176 109.635ZM36.4309 109.682C36.4309 107.842 35.6184 106.922 33.9934 106.922H33.0266V112.5H33.8059C35.5559 112.5 36.4309 111.561 36.4309 109.682Z" fill="white"/>
<path d="M47.8684 109.705C47.8684 111.123 47.5168 112.213 46.8137 112.975C46.1106 113.736 45.1028 114.117 43.7903 114.117C42.4778 114.117 41.47 113.736 40.7668 112.975C40.0637 112.213 39.7122 111.119 39.7122 109.693C39.7122 108.268 40.0637 107.18 40.7668 106.43C41.4739 105.676 42.4856 105.299 43.802 105.299C45.1184 105.299 46.1243 105.678 46.8196 106.436C47.5188 107.193 47.8684 108.283 47.8684 109.705ZM41.6165 109.705C41.6165 110.662 41.7981 111.383 42.1614 111.867C42.5247 112.352 43.0676 112.594 43.7903 112.594C45.2395 112.594 45.9641 111.631 45.9641 109.705C45.9641 107.775 45.2434 106.811 43.802 106.811C43.0793 106.811 42.5344 107.055 42.1672 107.543C41.8 108.027 41.6165 108.748 41.6165 109.705Z" fill="white"/>
<path d="M53.2825 106.822C52.5989 106.822 52.0696 107.08 51.6946 107.596C51.3196 108.107 51.1321 108.822 51.1321 109.74C51.1321 111.65 51.8489 112.605 53.2825 112.605C53.884 112.605 54.6125 112.455 55.468 112.154V113.678C54.7649 113.971 53.9797 114.117 53.1125 114.117C51.8665 114.117 50.9133 113.74 50.2532 112.986C49.593 112.229 49.2629 111.143 49.2629 109.729C49.2629 108.838 49.425 108.059 49.7493 107.391C50.0735 106.719 50.5383 106.205 51.1438 105.85C51.7532 105.49 52.4661 105.311 53.2825 105.311C54.1145 105.311 54.9504 105.512 55.7903 105.914L55.2043 107.391C54.884 107.238 54.5618 107.105 54.2375 106.992C53.9133 106.879 53.595 106.822 53.2825 106.822Z" fill="white"/>
<path d="M64.2219 114H62.1477L60.1555 110.76L58.1633 114H56.218L59.0598 109.582L56.3997 105.434H58.4036L60.2493 108.516L62.0598 105.434H64.0168L61.3274 109.682L64.2219 114Z" fill="white"/>
<path d="M67.0872 114H65.3V105.434H70.2102V106.922H67.0872V109.131H69.9934V110.613H67.0872V114Z" fill="white"/>
</g>
<path id="Rectangle 381 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M22 58H78V44H22V58ZM20 42V60H80V42H20Z" fill="white"/>
<path id="Rectangle 387 (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M22 82H78V68H22V82ZM20 66V84H80V66H20Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22050)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#27ABA3"/>
<path d="M18 34H54.1761H62V35.625V46H18V34Z" stroke="white" stroke-width="2"/>
<path d="M18 52H54.1761H62V53.625V64H18V52Z" stroke="white" stroke-width="2"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M27.8477 82.6348C27.8477 83.5996 27.6621 84.4062 27.291 85.0547C26.9238 85.6992 26.3906 86.1855 25.6914 86.5137C24.9922 86.8379 24.1504 87 23.166 87H20.7402V78.4336H23.4297C24.3281 78.4336 25.1074 78.5938 25.7676 78.9141C26.4277 79.2305 26.9395 79.7012 27.3027 80.3262C27.666 80.9473 27.8477 81.7168 27.8477 82.6348ZM25.9609 82.6816C25.9609 82.0488 25.8672 81.5293 25.6797 81.123C25.4961 80.7129 25.2227 80.4102 24.8594 80.2148C24.5 80.0195 24.0547 79.9219 23.5234 79.9219H22.5566V85.5H23.3359C24.2227 85.5 24.8809 85.2637 25.3105 84.791C25.7441 84.3184 25.9609 83.6152 25.9609 82.6816ZM37.3984 82.7051C37.3984 83.3652 37.3164 83.9668 37.1523 84.5098C36.9883 85.0488 36.7383 85.5137 36.4023 85.9043C36.0703 86.2949 35.6484 86.5957 35.1367 86.8066C34.625 87.0137 34.0195 87.1172 33.3203 87.1172C32.6211 87.1172 32.0156 87.0137 31.5039 86.8066C30.9922 86.5957 30.5684 86.2949 30.2324 85.9043C29.9004 85.5137 29.6523 85.0469 29.4883 84.5039C29.3242 83.9609 29.2422 83.3574 29.2422 82.6934C29.2422 81.8066 29.3867 81.0352 29.6758 80.3789C29.9688 79.7188 30.418 79.207 31.0234 78.8438C31.6289 78.4805 32.3984 78.2988 33.332 78.2988C34.2617 78.2988 35.0254 78.4805 35.623 78.8438C36.2246 79.207 36.6699 79.7188 36.959 80.3789C37.252 81.0391 37.3984 81.8145 37.3984 82.7051ZM31.1465 82.7051C31.1465 83.3027 31.2207 83.8184 31.3691 84.252C31.5215 84.6816 31.7578 85.0137 32.0781 85.248C32.3984 85.4785 32.8125 85.5938 33.3203 85.5938C33.8359 85.5938 34.2539 85.4785 34.5742 85.248C34.8945 85.0137 35.127 84.6816 35.2715 84.252C35.4199 83.8184 35.4941 83.3027 35.4941 82.7051C35.4941 81.8066 35.3262 81.0996 34.9902 80.584C34.6543 80.0684 34.1016 79.8105 33.332 79.8105C32.8203 79.8105 32.4023 79.9277 32.0781 80.1621C31.7578 80.3926 31.5215 80.7246 31.3691 81.1582C31.2207 81.5879 31.1465 82.1035 31.1465 82.7051ZM42.8125 79.8223C42.4648 79.8223 42.1562 79.8906 41.8867 80.0273C41.6211 80.1602 41.3965 80.3535 41.2129 80.6074C41.0332 80.8613 40.8965 81.168 40.8027 81.5273C40.709 81.8867 40.6621 82.291 40.6621 82.7402C40.6621 83.3457 40.7363 83.8633 40.8848 84.293C41.0371 84.7188 41.2715 85.0449 41.5879 85.2715C41.9043 85.4941 42.3125 85.6055 42.8125 85.6055C43.1602 85.6055 43.5078 85.5664 43.8555 85.4883C44.207 85.4102 44.5879 85.2988 44.998 85.1543V86.6777C44.6191 86.834 44.2461 86.9453 43.8789 87.0117C43.5117 87.082 43.0996 87.1172 42.6426 87.1172C41.7598 87.1172 41.0332 86.9355 40.4629 86.5723C39.8965 86.2051 39.4766 85.6934 39.2031 85.0371C38.9297 84.377 38.793 83.6074 38.793 82.7285C38.793 82.0801 38.8809 81.4863 39.0566 80.9473C39.2324 80.4082 39.4902 79.9414 39.8301 79.5469C40.1699 79.1523 40.5898 78.8477 41.0898 78.6328C41.5898 78.418 42.1641 78.3105 42.8125 78.3105C43.2383 78.3105 43.6641 78.3652 44.0898 78.4746C44.5195 78.5801 44.9297 78.7266 45.3203 78.9141L44.7344 80.3906C44.4141 80.2383 44.0918 80.1055 43.7676 79.9922C43.4434 79.8789 43.125 79.8223 42.8125 79.8223ZM53.752 87H51.6777L49.6855 83.7598L47.6934 87H45.748L48.5898 82.582L45.9297 78.4336H47.9336L49.7793 81.5156L51.5898 78.4336H53.5469L50.8574 82.6816L53.752 87ZM56.6172 87H54.8301V78.4336H59.7402V79.9219H56.6172V82.1309H59.5234V83.6133H56.6172V87Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22050">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View file

@ -1,8 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#214479"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M41.1855 109.635C41.1855 111.045 40.7832 112.125 39.9785 112.875C39.1777 113.625 38.0195 114 36.5039 114H34.0781V105.434H36.7676C38.166 105.434 39.252 105.803 40.0254 106.541C40.7988 107.279 41.1855 108.311 41.1855 109.635ZM39.2988 109.682C39.2988 107.842 38.4863 106.922 36.8613 106.922H35.8945V112.5H36.6738C38.4238 112.5 39.2988 111.561 39.2988 109.682ZM50.7363 109.705C50.7363 111.123 50.3848 112.213 49.6816 112.975C48.9785 113.736 47.9707 114.117 46.6582 114.117C45.3457 114.117 44.3379 113.736 43.6348 112.975C42.9316 112.213 42.5801 111.119 42.5801 109.693C42.5801 108.268 42.9316 107.18 43.6348 106.43C44.3418 105.676 45.3535 105.299 46.6699 105.299C47.9863 105.299 48.9922 105.678 49.6875 106.436C50.3867 107.193 50.7363 108.283 50.7363 109.705ZM44.4844 109.705C44.4844 110.662 44.666 111.383 45.0293 111.867C45.3926 112.352 45.9355 112.594 46.6582 112.594C48.1074 112.594 48.832 111.631 48.832 109.705C48.832 107.775 48.1113 106.811 46.6699 106.811C45.9473 106.811 45.4023 107.055 45.0352 107.543C44.668 108.027 44.4844 108.748 44.4844 109.705ZM55.8164 114H54V106.945H51.6738V105.434H58.1426V106.945H55.8164V114ZM66.3867 114H64.3125L62.3203 110.76L60.3281 114H58.3828L61.2246 109.582L58.5645 105.434H60.5684L62.4141 108.516L64.2246 105.434H66.1816L63.4922 109.682L66.3867 114Z" fill="white"/>
<path d="M67.8 48L61.5 75L54.5 48H51.5H48.5L41.5 75L35.2 48H29.4L37.9 82H44.3L51.5 54.1L58.7 82H65.1L73.6 48H67.8Z" fill="white"/>
<rect x="15" y="15" width="16" height="14" rx="2" fill="white"/>
<path d="M23.0898 26H21.6895V18.6348H19.1699V17.4336H25.6094V18.6348H23.0898V26Z" fill="#214479"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22035)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#214479"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M31.4922 82.6348C31.4922 83.5996 31.3066 84.4062 30.9355 85.0547C30.5684 85.6992 30.0352 86.1855 29.3359 86.5137C28.6367 86.8379 27.7949 87 26.8105 87H24.3848V78.4336H27.0742C27.9727 78.4336 28.752 78.5938 29.4121 78.9141C30.0723 79.2305 30.584 79.7012 30.9473 80.3262C31.3105 80.9473 31.4922 81.7168 31.4922 82.6348ZM29.6055 82.6816C29.6055 82.0488 29.5117 81.5293 29.3242 81.123C29.1406 80.7129 28.8672 80.4102 28.5039 80.2148C28.1445 80.0195 27.6992 79.9219 27.168 79.9219H26.2012V85.5H26.9805C27.8672 85.5 28.5254 85.2637 28.9551 84.791C29.3887 84.3184 29.6055 83.6152 29.6055 82.6816ZM41.043 82.7051C41.043 83.3652 40.9609 83.9668 40.7969 84.5098C40.6328 85.0488 40.3828 85.5137 40.0469 85.9043C39.7148 86.2949 39.293 86.5957 38.7812 86.8066C38.2695 87.0137 37.6641 87.1172 36.9648 87.1172C36.2656 87.1172 35.6602 87.0137 35.1484 86.8066C34.6367 86.5957 34.2129 86.2949 33.877 85.9043C33.5449 85.5137 33.2969 85.0469 33.1328 84.5039C32.9688 83.9609 32.8867 83.3574 32.8867 82.6934C32.8867 81.8066 33.0312 81.0352 33.3203 80.3789C33.6133 79.7188 34.0625 79.207 34.668 78.8438C35.2734 78.4805 36.043 78.2988 36.9766 78.2988C37.9062 78.2988 38.6699 78.4805 39.2676 78.8438C39.8691 79.207 40.3145 79.7188 40.6035 80.3789C40.8965 81.0391 41.043 81.8145 41.043 82.7051ZM34.791 82.7051C34.791 83.3027 34.8652 83.8184 35.0137 84.252C35.166 84.6816 35.4023 85.0137 35.7227 85.248C36.043 85.4785 36.457 85.5938 36.9648 85.5938C37.4805 85.5938 37.8984 85.4785 38.2188 85.248C38.5391 85.0137 38.7715 84.6816 38.916 84.252C39.0645 83.8184 39.1387 83.3027 39.1387 82.7051C39.1387 81.8066 38.9707 81.0996 38.6348 80.584C38.2988 80.0684 37.7461 79.8105 36.9766 79.8105C36.4648 79.8105 36.0469 79.9277 35.7227 80.1621C35.4023 80.3926 35.166 80.7246 35.0137 81.1582C34.8652 81.5879 34.791 82.1035 34.791 82.7051ZM46.123 87H44.3066V79.9453H41.9805V78.4336H48.4492V79.9453H46.123V87ZM56.6934 87H54.6191L52.627 83.7598L50.6348 87H48.6895L51.5312 82.582L48.8711 78.4336H50.875L52.7207 81.5156L54.5312 78.4336H56.4883L53.7988 82.6816L56.6934 87Z" fill="white"/>
<path d="M51.8009 36L47.2398 56.6471L42.1719 36H40H37.8281L32.7602 56.6471L28.1991 36H24L30.1538 62H34.7873L40 40.6647L45.2127 62H49.8462L56 36H51.8009Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 10C10.8954 10 10 10.8954 10 12V21C10 22.1046 10.8954 23 12 23H21C22.1046 23 23 22.1046 23 21V12C23 10.8954 22.1046 10 21 10H12ZM17.2129 20V14.0381H19.4004V12.8906H17.2129H15.7529H13.5996V14.0381H15.7529V20H17.2129Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22035">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -1,8 +1,13 @@
<svg width="100" height="127" viewBox="0 0 100 127" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#5892B6"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M40.3217 114H35.3881V105.434H40.3217V106.922H37.2045V108.803H40.1049V110.291H37.2045V112.5H40.3217V114ZM43.9311 109.465H44.5287C45.0873 109.465 45.5053 109.355 45.7827 109.137C46.06 108.914 46.1987 108.592 46.1987 108.17C46.1987 107.744 46.0815 107.43 45.8471 107.227C45.6166 107.023 45.2534 106.922 44.7573 106.922H43.9311V109.465ZM48.0327 108.105C48.0327 109.027 47.7436 109.732 47.1655 110.221C46.5912 110.709 45.7729 110.953 44.7104 110.953H43.9311V114H42.1147V105.434H44.851C45.8901 105.434 46.6791 105.658 47.2182 106.107C47.7612 106.553 48.0327 107.219 48.0327 108.105ZM56.6225 105.434V110.977C56.6225 111.609 56.4799 112.164 56.1948 112.641C55.9135 113.117 55.5053 113.482 54.9702 113.736C54.435 113.99 53.8022 114.117 53.0717 114.117C51.9702 114.117 51.1147 113.836 50.5053 113.273C49.8959 112.707 49.5912 111.934 49.5912 110.953V105.434H51.4018V110.678C51.4018 111.338 51.5346 111.822 51.8002 112.131C52.0659 112.439 52.5053 112.594 53.1186 112.594C53.7123 112.594 54.142 112.439 54.4077 112.131C54.6772 111.818 54.812 111.33 54.812 110.666V105.434H56.6225ZM58.7202 105.434H61.3862C62.601 105.434 63.4819 105.607 64.0287 105.955C64.5795 106.299 64.8549 106.848 64.8549 107.602C64.8549 108.113 64.7338 108.533 64.4916 108.861C64.2534 109.189 63.935 109.387 63.5366 109.453V109.512C64.0795 109.633 64.4702 109.859 64.7084 110.191C64.9506 110.523 65.0717 110.965 65.0717 111.516C65.0717 112.297 64.7885 112.906 64.2221 113.344C63.6596 113.781 62.894 114 61.9252 114H58.7202V105.434ZM60.5366 108.826H61.5912C62.0834 108.826 62.4389 108.75 62.6577 108.598C62.8803 108.445 62.9916 108.193 62.9916 107.842C62.9916 107.514 62.8705 107.279 62.6284 107.139C62.3901 106.994 62.0112 106.922 61.4916 106.922H60.5366V108.826ZM60.5366 110.268V112.5H61.7202C62.2202 112.5 62.5893 112.404 62.8276 112.213C63.0659 112.021 63.185 111.729 63.185 111.334C63.185 110.623 62.6772 110.268 61.6616 110.268H60.5366Z" fill="white"/>
<path d="M49 84V49C49 49 40 43 25 42V75C25 75 42 76 49 84Z" fill="white"/>
<path d="M75 75V42C60 43 51 49 51 49V84C58 76 75 75 75 75Z" fill="white"/>
<path d="M77 47V79C77 79 62 79 50 87.3C38 79 23 79 23 79V47H20V82C20 82 33 80 50 88C67 80 80 82 80 82V47H77Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22051)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#5892B6"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M30.3145 87H25.3809V78.4336H30.3145V79.9219H27.1973V81.8027H30.0977V83.291H27.1973V85.5H30.3145V87ZM34.8438 78.4336C35.9492 78.4336 36.7559 78.6719 37.2637 79.1484C37.7715 79.6211 38.0254 80.2734 38.0254 81.1055C38.0254 81.4805 37.9688 81.8398 37.8555 82.1836C37.7422 82.5234 37.5566 82.8262 37.2988 83.0918C37.0449 83.3574 36.7051 83.5684 36.2793 83.7246C35.8535 83.877 35.3281 83.9531 34.7031 83.9531H33.9238V87H32.1074V78.4336H34.8438ZM34.75 79.9219H33.9238V82.4648H34.5215C34.8613 82.4648 35.1562 82.4199 35.4062 82.3301C35.6562 82.2402 35.8496 82.0996 35.9863 81.9082C36.123 81.7168 36.1914 81.4707 36.1914 81.1699C36.1914 80.748 36.0742 80.4355 35.8398 80.2324C35.6055 80.0254 35.2422 79.9219 34.75 79.9219ZM46.6152 78.4336V83.9766C46.6152 84.5664 46.4844 85.0996 46.2227 85.5762C45.9648 86.0488 45.5723 86.4238 45.0449 86.7012C44.5215 86.9785 43.8613 87.1172 43.0645 87.1172C41.9316 87.1172 41.0684 86.8281 40.4746 86.25C39.8809 85.6719 39.584 84.9062 39.584 83.9531V78.4336H41.3945V83.6777C41.3945 84.3848 41.5391 84.8809 41.8281 85.166C42.1172 85.4512 42.5449 85.5938 43.1113 85.5938C43.5098 85.5938 43.832 85.5254 44.0781 85.3887C44.3281 85.252 44.5117 85.041 44.6289 84.7559C44.7461 84.4707 44.8047 84.1074 44.8047 83.666V78.4336H46.6152ZM48.7129 78.4336H51.3789C52.5195 78.4336 53.3828 78.5938 53.9688 78.9141C54.5547 79.2344 54.8477 79.7969 54.8477 80.6016C54.8477 80.9258 54.7949 81.2188 54.6895 81.4805C54.5879 81.7422 54.4395 81.957 54.2441 82.125C54.0488 82.293 53.8105 82.4023 53.5293 82.4531V82.5117C53.8145 82.5703 54.0723 82.6719 54.3027 82.8164C54.5332 82.957 54.7168 83.1641 54.8535 83.4375C54.9941 83.707 55.0645 84.0664 55.0645 84.5156C55.0645 85.0352 54.9375 85.4805 54.6836 85.8516C54.4297 86.2227 54.0664 86.5078 53.5938 86.707C53.125 86.9023 52.5664 87 51.918 87H48.7129V78.4336ZM50.5293 81.8262H51.584C52.1113 81.8262 52.4766 81.7441 52.6797 81.5801C52.8828 81.4121 52.9844 81.166 52.9844 80.8418C52.9844 80.5137 52.8633 80.2793 52.6211 80.1387C52.3828 79.9941 52.0039 79.9219 51.4844 79.9219H50.5293V81.8262ZM50.5293 83.2676V85.5H51.7129C52.2598 85.5 52.6406 85.3945 52.8555 85.1836C53.0703 84.9727 53.1777 84.6895 53.1777 84.334C53.1777 84.123 53.1309 83.9375 53.0371 83.7773C52.9434 83.6172 52.7852 83.4922 52.5625 83.4023C52.3438 83.3125 52.041 83.2676 51.6543 83.2676H50.5293Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M39 60V37.5C39 37.5 33.375 33.6429 24 33V54.2143C24 54.2143 34.625 54.8571 39 60ZM56 54.2143V33C46.625 33.6429 41 37.5 41 37.5V60C45.375 54.8571 56 54.2143 56 54.2143ZM57.1 57.2927V37H59V59.1951C59 59.1951 50.7667 57.9268 40 63C29.2333 57.9268 21 59.1951 21 59.1951V37H22.9V57.2927C22.9 57.2927 32.4 57.2927 40 62.5561C47.6 57.2927 57.1 57.2927 57.1 57.2927Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22051">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -1,8 +1,13 @@
<svg width="100" height="127" viewBox="0 0 100 127" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#B07408"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M41.8652 114H40.0781V105.434H44.9883V106.922H41.8652V109.131H44.7715V110.613H41.8652V114ZM46.6641 105.434H49.3301C50.5449 105.434 51.4258 105.607 51.9727 105.955C52.5234 106.299 52.7988 106.848 52.7988 107.602C52.7988 108.113 52.6777 108.533 52.4355 108.861C52.1973 109.189 51.8789 109.387 51.4805 109.453V109.512C52.0234 109.633 52.4141 109.859 52.6523 110.191C52.8945 110.523 53.0156 110.965 53.0156 111.516C53.0156 112.297 52.7324 112.906 52.166 113.344C51.6035 113.781 50.8379 114 49.8691 114H46.6641V105.434ZM48.4805 108.826H49.5352C50.0273 108.826 50.3828 108.75 50.6016 108.598C50.8242 108.445 50.9355 108.193 50.9355 107.842C50.9355 107.514 50.8145 107.279 50.5723 107.139C50.334 106.994 49.9551 106.922 49.4355 106.922H48.4805V108.826ZM48.4805 110.268V112.5H49.6641C50.1641 112.5 50.5332 112.404 50.7715 112.213C51.0098 112.021 51.1289 111.729 51.1289 111.334C51.1289 110.623 50.6211 110.268 49.6055 110.268H48.4805ZM60.1172 114H54.1289V112.74L56.2793 110.566C56.916 109.914 57.332 109.463 57.5273 109.213C57.7227 108.959 57.8633 108.725 57.9492 108.51C58.0352 108.295 58.0781 108.072 58.0781 107.842C58.0781 107.498 57.9824 107.242 57.791 107.074C57.6035 106.906 57.3516 106.822 57.0352 106.822C56.7031 106.822 56.3809 106.898 56.0684 107.051C55.7559 107.203 55.4297 107.42 55.0898 107.701L54.1055 106.535C54.5273 106.176 54.877 105.922 55.1543 105.773C55.4316 105.625 55.7344 105.512 56.0625 105.434C56.3906 105.352 56.7578 105.311 57.1641 105.311C57.6992 105.311 58.1719 105.408 58.582 105.604C58.9922 105.799 59.3105 106.072 59.5371 106.424C59.7637 106.775 59.877 107.178 59.877 107.631C59.877 108.025 59.8066 108.396 59.666 108.744C59.5293 109.088 59.3145 109.441 59.0215 109.805C58.7324 110.168 58.2207 110.686 57.4863 111.357L56.3848 112.395V112.477H60.1172V114Z" fill="white"/>
<path d="M49 84V49C49 49 40 43 25 42V75C25 75 42 76 49 84Z" fill="white"/>
<path d="M75 75V42C60 43 51 49 51 49V84C58 76 75 75 75 75Z" fill="white"/>
<path d="M77 47V79C77 79 62 79 50 87.3C38 79 23 79 23 79V47H20V82C20 82 33 80 50 88C67 80 80 82 80 82V47H77Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22049)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#B07408"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M32.1074 87H30.3203V78.4336H35.2305V79.9219H32.1074V82.1309H35.0137V83.6133H32.1074V87ZM36.9062 78.4336H39.5723C40.7129 78.4336 41.5762 78.5938 42.1621 78.9141C42.748 79.2344 43.041 79.7969 43.041 80.6016C43.041 80.9258 42.9883 81.2188 42.8828 81.4805C42.7812 81.7422 42.6328 81.957 42.4375 82.125C42.2422 82.293 42.0039 82.4023 41.7227 82.4531V82.5117C42.0078 82.5703 42.2656 82.6719 42.4961 82.8164C42.7266 82.957 42.9102 83.1641 43.0469 83.4375C43.1875 83.707 43.2578 84.0664 43.2578 84.5156C43.2578 85.0352 43.1309 85.4805 42.877 85.8516C42.623 86.2227 42.2598 86.5078 41.7871 86.707C41.3184 86.9023 40.7598 87 40.1113 87H36.9062V78.4336ZM38.7227 81.8262H39.7773C40.3047 81.8262 40.6699 81.7441 40.873 81.5801C41.0762 81.4121 41.1777 81.166 41.1777 80.8418C41.1777 80.5137 41.0566 80.2793 40.8145 80.1387C40.5762 79.9941 40.1973 79.9219 39.6777 79.9219H38.7227V81.8262ZM38.7227 83.2676V85.5H39.9062C40.4531 85.5 40.834 85.3945 41.0488 85.1836C41.2637 84.9727 41.3711 84.6895 41.3711 84.334C41.3711 84.123 41.3242 83.9375 41.2305 83.7773C41.1367 83.6172 40.9785 83.4922 40.7559 83.4023C40.5371 83.3125 40.2344 83.2676 39.8477 83.2676H38.7227ZM50.3594 87H44.3711V85.7402L46.5215 83.5664C46.9551 83.1211 47.3027 82.75 47.5645 82.4531C47.8301 82.1523 48.0215 81.8789 48.1387 81.6328C48.2598 81.3867 48.3203 81.123 48.3203 80.8418C48.3203 80.502 48.2246 80.248 48.0332 80.0801C47.8457 79.9082 47.5938 79.8223 47.2773 79.8223C46.9453 79.8223 46.623 79.8984 46.3105 80.0508C45.998 80.2031 45.6719 80.4199 45.332 80.7012L44.3477 79.5352C44.5938 79.3242 44.8535 79.125 45.127 78.9375C45.4043 78.75 45.7246 78.5996 46.0879 78.4863C46.4551 78.3691 46.8945 78.3105 47.4062 78.3105C47.9688 78.3105 48.4512 78.4121 48.8535 78.6152C49.2598 78.8184 49.5723 79.0957 49.791 79.4473C50.0098 79.7949 50.1191 80.1895 50.1191 80.6309C50.1191 81.1035 50.0254 81.5352 49.8379 81.9258C49.6504 82.3164 49.377 82.7031 49.0176 83.0859C48.6621 83.4688 48.2324 83.8926 47.7285 84.3574L46.627 85.3945V85.4766H50.3594V87Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M39 60V37.5C39 37.5 33.375 33.6429 24 33V54.2143C24 54.2143 34.625 54.8571 39 60ZM56 54.2143V33C46.625 33.6429 41 37.5 41 37.5V60C45.375 54.8571 56 54.2143 56 54.2143ZM57.1 57.2927V37H59V59.1951C59 59.1951 50.7667 57.9268 40 63C29.2333 57.9268 21 59.1951 21 59.1951V37H22.9V57.2927C22.9 57.2927 32.4 57.2927 40 62.5561C47.6 57.2927 57.1 57.2927 57.1 57.2927Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22049">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -1,8 +1,15 @@
<svg width="100" height="127" viewBox="0 0 100 127" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#7C9A34"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M40.9877 114H39.1771V110.303H35.7845V114H33.9681V105.434H35.7845V108.791H39.1771V105.434H40.9877V114ZM46.4603 114H44.6439V106.945H42.3177V105.434H48.7865V106.945H46.4603V114ZM53.7318 114L51.6693 107.279H51.6166C51.6908 108.646 51.7279 109.559 51.7279 110.016V114H50.1049V105.434H52.5775L54.6049 111.984H54.64L56.7904 105.434H59.2631V114H57.5697V109.945C57.5697 109.754 57.5717 109.533 57.5756 109.283C57.5834 109.033 57.6107 108.369 57.6576 107.291H57.6049L55.3959 114H53.7318ZM61.4252 114V105.434H63.2416V112.5H66.7162V114H61.4252Z" fill="white"/>
<path d="M62 53V57.8L75.5 62.5L62 67.2V72L80 64.2V60.8L62 53Z" fill="white"/>
<path d="M40 75H45.5L59.5 50H54L40 75Z" fill="white"/>
<path d="M19 64.2L37 72V67.2L23.5 62.5L37 57.8V53L19 60.8V64.2Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22059)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#7C9A34"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M30.9766 87H29.166V83.3027H25.7734V87H23.957V78.4336H25.7734V81.791H29.166V78.4336H30.9766V87ZM36.4492 87H34.6328V79.9453H32.3066V78.4336H38.7754V79.9453H36.4492V87ZM43.7207 87L41.6582 80.2793H41.6055C41.6133 80.4395 41.625 80.6816 41.6406 81.0059C41.6602 81.3262 41.6777 81.668 41.6934 82.0312C41.709 82.3945 41.7168 82.7227 41.7168 83.0156V87H40.0938V78.4336H42.5664L44.5938 84.9844H44.6289L46.7793 78.4336H49.252V87H47.5586V82.9453C47.5586 82.6758 47.5625 82.3652 47.5703 82.0137C47.582 81.6621 47.5957 81.3281 47.6113 81.0117C47.627 80.6914 47.6387 80.4512 47.6465 80.291H47.5938L45.3848 87H43.7207ZM51.4141 87V78.4336H53.2305V85.5H56.7051V87H51.4141Z" fill="white"/>
<path d="M30 42V45.7895L19.5 49.5L30 53.2105V57L16 50.8421V48.1579L30 42Z" fill="white"/>
<path d="M50 42V45.7895L60.5 49.5L50 53.2105V57L64 50.8421V48.1579L50 42Z" fill="white"/>
<path d="M32 59H36.2308L47 40H42.7692L32 59Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22059">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,12 +1,17 @@
<svg width="100" height="127" viewBox="0 0 100 127" fill="none" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M95 22V118C95 118.796 94.6839 119.559 94.1213 120.121C93.5587 120.684 92.7956 121 92 121H8C7.20435 121 6.44129 120.684 5.87868 120.121C5.31607 119.559 5 118.796 5 118V7C5 6.20435 5.31607 5.44129 5.87868 4.87868C6.44129 4.31607 7.20435 4 8 4H77L95 22Z" fill="#7371D8"/>
<g>
<path d="M39.5801 115.52C39.1699 115.52 38.8125 115.477 38.5078 115.391V113.879C38.8203 113.957 39.1055 113.996 39.3633 113.996C39.7617 113.996 40.0469 113.871 40.2188 113.621C40.3906 113.375 40.4766 112.988 40.4766 112.461V104.434H42.293V112.449C42.293 113.449 42.0645 114.211 41.6074 114.734C41.1504 115.258 40.4746 115.52 39.5801 115.52Z" fill="white"/>
<path d="M46.2656 108.465H46.8633C47.4219 108.465 47.8398 108.355 48.1172 108.137C48.3945 107.914 48.5332 107.592 48.5332 107.17C48.5332 106.744 48.416 106.43 48.1816 106.227C47.9512 106.023 47.5879 105.922 47.0918 105.922H46.2656V108.465ZM50.3672 107.105C50.3672 108.027 50.0781 108.732 49.5 109.221C48.9258 109.709 48.1074 109.953 47.0449 109.953H46.2656V113H44.4492V104.434H47.1855C48.2246 104.434 49.0137 104.658 49.5527 105.107C50.0957 105.553 50.3672 106.219 50.3672 107.105Z" fill="white"/>
<path d="M55.2363 108.189H58.6348V112.631C58.084 112.811 57.5645 112.936 57.0762 113.006C56.5918 113.08 56.0957 113.117 55.5879 113.117C54.2949 113.117 53.3066 112.738 52.623 111.98C51.9434 111.219 51.6035 110.127 51.6035 108.705C51.6035 107.322 51.998 106.244 52.7871 105.471C53.5801 104.697 54.6777 104.311 56.0801 104.311C56.959 104.311 57.8066 104.486 58.623 104.838L58.0195 106.291C57.3945 105.979 56.7441 105.822 56.0684 105.822C55.2832 105.822 54.6543 106.086 54.1816 106.613C53.709 107.141 53.4727 107.85 53.4727 108.74C53.4727 109.67 53.6621 110.381 54.041 110.873C54.4238 111.361 54.9785 111.605 55.7051 111.605C56.084 111.605 56.4688 111.566 56.8594 111.488V109.701H55.2363V108.189Z" fill="white"/>
</g>
<path d="M56 51.869L73.183 79H27.7869L39.5 59.912L44.274 67.6919L45.113 69.059L45.9712 67.7039L56 51.869ZM36 51.5C36 53.9853 33.9853 56 31.5 56C29.0147 56 27 53.9853 27 51.5C27 49.0147 29.0147 47 31.5 47C33.9853 47 36 49.0147 36 51.5Z" fill="white" stroke="white" stroke-width="2"/>
<path opacity="0.2" d="M95 22H80C79.2044 22 78.4413 21.6839 77.8787 21.1213C77.3161 20.5587 77 19.7956 77 19V4L95 22Z" fill="black"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22040)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#7371D8"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M30.0801 89.5195C29.8457 89.5195 29.6406 89.5059 29.4648 89.4785C29.2852 89.4551 29.1328 89.4258 29.0078 89.3906V87.8789C29.1328 87.9062 29.2676 87.9316 29.4121 87.9551C29.5527 87.9824 29.7031 87.9961 29.8633 87.9961C30.0742 87.9961 30.2637 87.9551 30.4316 87.873C30.5996 87.7949 30.7324 87.6445 30.8301 87.4219C30.9277 87.1992 30.9766 86.8789 30.9766 86.4609V78.4336H32.793V86.4492C32.793 87.1836 32.6777 87.7754 32.4473 88.2246C32.2207 88.6777 31.9023 89.0059 31.4922 89.209C31.0859 89.416 30.6152 89.5195 30.0801 89.5195ZM37.6855 78.4336C38.791 78.4336 39.5977 78.6719 40.1055 79.1484C40.6133 79.6211 40.8672 80.2734 40.8672 81.1055C40.8672 81.4805 40.8105 81.8398 40.6973 82.1836C40.584 82.5234 40.3984 82.8262 40.1406 83.0918C39.8867 83.3574 39.5469 83.5684 39.1211 83.7246C38.6953 83.877 38.1699 83.9531 37.5449 83.9531H36.7656V87H34.9492V78.4336H37.6855ZM37.5918 79.9219H36.7656V82.4648H37.3633C37.7031 82.4648 37.998 82.4199 38.248 82.3301C38.498 82.2402 38.6914 82.0996 38.8281 81.9082C38.9648 81.7168 39.0332 81.4707 39.0332 81.1699C39.0332 80.748 38.916 80.4355 38.6816 80.2324C38.4473 80.0254 38.084 79.9219 37.5918 79.9219ZM45.7363 82.1895H49.1348V86.6309C48.6855 86.7793 48.2188 86.8984 47.7344 86.9883C47.25 87.0742 46.7012 87.1172 46.0879 87.1172C45.2363 87.1172 44.5137 86.9492 43.9199 86.6133C43.3262 86.2773 42.875 85.7812 42.5664 85.125C42.2578 84.4688 42.1035 83.6621 42.1035 82.7051C42.1035 81.8066 42.2754 81.0293 42.6191 80.373C42.9668 79.7168 43.4727 79.209 44.1367 78.8496C44.8047 78.4902 45.6191 78.3105 46.5801 78.3105C47.0332 78.3105 47.4805 78.3594 47.9219 78.457C48.3633 78.5547 48.7637 78.6816 49.123 78.8379L48.5195 80.291C48.2578 80.1582 47.959 80.0469 47.623 79.957C47.2871 79.8672 46.9355 79.8223 46.5684 79.8223C46.041 79.8223 45.582 79.9434 45.1914 80.1855C44.8047 80.4277 44.5039 80.7676 44.2891 81.2051C44.0781 81.6387 43.9727 82.1504 43.9727 82.7402C43.9727 83.2988 44.0488 83.7949 44.2012 84.2285C44.3535 84.6582 44.5938 84.9961 44.9219 85.2422C45.25 85.4844 45.6777 85.6055 46.2051 85.6055C46.4629 85.6055 46.6797 85.5938 46.8555 85.5703C47.0352 85.543 47.2031 85.5156 47.3594 85.4883V83.7012H45.7363V82.1895Z" fill="white"/>
<mask id="path-4-inside-1_2964_22040" fill="white">
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.3677 44.4118C27.6906 44.4118 29.5736 42.5287 29.5736 40.2059C29.5736 37.883 27.6906 36 25.3677 36C23.0449 36 21.1619 37.883 21.1619 40.2059C21.1619 42.5287 23.0449 44.4118 25.3677 44.4118ZM44.103 39.0588L58.6325 62H21.1619L31.4854 45.1765L35.7879 52.188L44.103 39.0588Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.3677 44.4118C27.6906 44.4118 29.5736 42.5287 29.5736 40.2059C29.5736 37.883 27.6906 36 25.3677 36C23.0449 36 21.1619 37.883 21.1619 40.2059C21.1619 42.5287 23.0449 44.4118 25.3677 44.4118ZM44.103 39.0588L58.6325 62H21.1619L31.4854 45.1765L35.7879 52.188L44.103 39.0588Z" fill="white"/>
<path d="M58.6325 62V64H62.2665L60.3221 60.9299L58.6325 62ZM44.103 39.0588L45.7927 37.9887L44.103 35.3208L42.4134 37.9887L44.103 39.0588ZM21.1619 62L19.4572 60.9539L17.5881 64H21.1619V62ZM31.4854 45.1765L33.19 44.1304L31.4854 41.3525L29.7807 44.1304L31.4854 45.1765ZM35.7879 52.188L34.0833 53.234L35.7611 55.9682L37.4775 53.2581L35.7879 52.188ZM27.5736 40.2059C27.5736 41.4242 26.586 42.4118 25.3677 42.4118V46.4118C28.7952 46.4118 31.5736 43.6333 31.5736 40.2059H27.5736ZM25.3677 38C26.586 38 27.5736 38.9876 27.5736 40.2059H31.5736C31.5736 36.7785 28.7952 34 25.3677 34V38ZM23.1619 40.2059C23.1619 38.9876 24.1495 38 25.3677 38V34C21.9403 34 19.1619 36.7785 19.1619 40.2059H23.1619ZM25.3677 42.4118C24.1495 42.4118 23.1619 41.4242 23.1619 40.2059H19.1619C19.1619 43.6333 21.9403 46.4118 25.3677 46.4118V42.4118ZM60.3221 60.9299L45.7927 37.9887L42.4134 40.1289L56.9428 63.0701L60.3221 60.9299ZM21.1619 64H58.6325V60H21.1619V64ZM29.7807 44.1304L19.4572 60.9539L22.8665 63.046L33.19 46.2225L29.7807 44.1304ZM37.4926 51.1419L33.19 44.1304L29.7807 46.2225L34.0833 53.234L37.4926 51.1419ZM42.4134 37.9887L34.0983 51.1179L37.4775 53.2581L45.7927 40.1289L42.4134 37.9887Z" fill="white" mask="url(#path-4-inside-1_2964_22040)"/>
</g>
<defs>
<clipPath id="clip0_2964_22040">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View file

@ -1,7 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#DD9426"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M45.8735 109.705C45.8735 111.123 45.522 112.213 44.8188 112.975C44.1157 113.736 43.1079 114.117 41.7954 114.117C40.4829 114.117 39.4751 113.736 38.772 112.975C38.0688 112.213 37.7173 111.119 37.7173 109.693C37.7173 108.268 38.0688 107.18 38.772 106.43C39.479 105.676 40.4907 105.299 41.8071 105.299C43.1235 105.299 44.1294 105.678 44.8247 106.436C45.5239 107.193 45.8735 108.283 45.8735 109.705ZM39.6216 109.705C39.6216 110.662 39.8032 111.383 40.1665 111.867C40.5298 112.352 41.0728 112.594 41.7954 112.594C43.2446 112.594 43.9692 111.631 43.9692 109.705C43.9692 107.775 43.2485 106.811 41.8071 106.811C41.0845 106.811 40.5396 107.055 40.1724 107.543C39.8052 108.027 39.6216 108.748 39.6216 109.705ZM54.7563 109.635C54.7563 111.045 54.354 112.125 53.5493 112.875C52.7485 113.625 51.5903 114 50.0747 114H47.6489V105.434H50.3384C51.7368 105.434 52.8228 105.803 53.5962 106.541C54.3696 107.279 54.7563 108.311 54.7563 109.635ZM52.8696 109.682C52.8696 107.842 52.0571 106.922 50.4321 106.922H49.4653V112.5H50.2446C51.9946 112.5 52.8696 111.561 52.8696 109.682ZM58.3481 109.465H58.9458C59.5044 109.465 59.9224 109.355 60.1997 109.137C60.4771 108.914 60.6157 108.592 60.6157 108.17C60.6157 107.744 60.4985 107.43 60.2642 107.227C60.0337 107.023 59.6704 106.922 59.1743 106.922H58.3481V109.465ZM62.4497 108.105C62.4497 109.027 62.1606 109.732 61.5825 110.221C61.0083 110.709 60.1899 110.953 59.1274 110.953H58.3481V114H56.5317V105.434H59.2681C60.3071 105.434 61.0962 105.658 61.6353 106.107C62.1782 106.553 62.4497 107.219 62.4497 108.105Z" fill="white"/>
<path d="M78 52.74L77.71 52.59C75.5095 51.5323 73.0841 51.0277 70.6443 51.1201C68.2046 51.2125 65.8242 51.899 63.71 53.12C61.5369 51.8865 59.089 51.2182 56.5906 51.1763C54.0922 51.1344 51.6232 51.7202 49.41 52.88H49.33C49.2989 52.9033 49.2737 52.9335 49.2564 52.9682C49.239 53.0029 49.23 53.0412 49.23 53.08C49.23 53.149 49.2574 53.2151 49.3061 53.2639C49.3549 53.3126 49.421 53.34 49.49 53.34H49.55C50.9144 53.0837 52.3084 53.0231 53.69 53.16C57.69 53.53 61.12 54.76 63.55 57.52C63.68 57.65 63.79 57.64 63.92 57.52C67 54 71.68 52.6 76.72 53.07C77 53.07 77.28 53.13 77.55 53.18H77.88C77.9144 53.1847 77.9494 53.1815 77.9823 53.1708C78.0153 53.16 78.0455 53.142 78.0705 53.1179C78.0955 53.0939 78.1147 53.0645 78.1268 53.0319C78.1388 52.9994 78.1433 52.9645 78.14 52.93C78.1341 52.8893 78.1182 52.8506 78.0938 52.8174C78.0694 52.7843 78.0372 52.7577 78 52.74Z" fill="white"/>
<path d="M72.16 65.21C68.1013 63.5273 63.6822 62.9007 59.3156 63.3886C54.9491 63.8765 50.7773 65.463 47.19 68C43.1649 66.2095 38.7509 65.4712 34.3622 65.8543C29.9735 66.2373 25.7541 67.7293 22.1 70.19H22.05C22.0071 70.2275 21.9725 70.2736 21.9484 70.3252C21.9243 70.3769 21.9112 70.433 21.91 70.49C21.91 70.5917 21.9497 70.6894 22.0207 70.7623C22.0917 70.8352 22.1883 70.8774 22.29 70.88H22.37C24.7999 70.1511 27.3232 69.7806 29.86 69.78C36.79 69.78 42.96 71.42 47.6 75.78C47.6698 75.8391 47.7586 75.8711 47.85 75.87C47.9075 75.8716 47.9645 75.8597 48.0166 75.8354C48.0686 75.8111 48.1143 75.775 48.15 75.73L48.37 75.42C53.09 68.97 60.87 65.79 69.53 65.79C70.15 65.79 70.76 65.79 71.37 65.85H71.92C72.0227 65.8475 72.1204 65.8056 72.193 65.733C72.2656 65.6604 72.3075 65.5626 72.31 65.46C72.3027 65.4105 72.2857 65.3629 72.26 65.32C72.2342 65.2771 72.2003 65.2397 72.16 65.21Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22030)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#DD9426"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M64.6167 38.8763L64.8745 39.0096C64.9076 39.0254 64.9362 39.049 64.958 39.0785C64.9797 39.108 64.9938 39.1424 64.999 39.1786C65.002 39.2093 64.998 39.2403 64.9873 39.2692C64.9766 39.2982 64.9594 39.3243 64.9372 39.3457C64.915 39.3671 64.8882 39.3831 64.8588 39.3927C64.8295 39.4023 64.7984 39.4051 64.7678 39.4009H64.4744C64.4458 39.3956 64.4171 39.3902 64.3882 39.3847C64.175 39.3445 63.9557 39.3031 63.7364 39.3031C59.2548 38.8852 55.0934 40.13 52.3547 43.26C52.2391 43.3667 52.1413 43.3756 52.0257 43.26C49.865 40.8058 46.8151 39.7121 43.2583 39.3831C42.0298 39.2614 40.7903 39.3153 39.577 39.5432H39.5237C39.4624 39.5432 39.4036 39.5188 39.3602 39.4754C39.3169 39.4321 39.2925 39.3733 39.2925 39.312C39.2925 39.2775 39.3005 39.2434 39.316 39.2126C39.3314 39.1817 39.3538 39.1548 39.3814 39.1341H39.4526C41.4206 38.1028 43.6159 37.5819 45.8375 37.6192C48.059 37.6565 50.2357 38.2508 52.168 39.3475C54.0479 38.2618 56.1645 37.6514 58.3339 37.5692C60.5033 37.4871 62.66 37.9358 64.6167 38.8763ZM48.2607 48.4782C52.1435 48.0444 56.0728 48.6016 59.6819 50.0979C59.7176 50.1243 59.7478 50.1576 59.7707 50.1957C59.7936 50.2339 59.8087 50.2761 59.8152 50.3202C59.813 50.4114 59.7757 50.4983 59.7112 50.5629C59.6466 50.6274 59.5597 50.6647 59.4684 50.6669H58.9794C58.437 50.6136 57.8946 50.6136 57.3433 50.6136H57.3433C49.6429 50.6136 42.725 53.4412 38.528 59.1765L38.3324 59.4521C38.3006 59.4922 38.26 59.5243 38.2137 59.5459C38.1674 59.5675 38.1167 59.578 38.0656 59.5766C37.9843 59.5776 37.9054 59.5492 37.8433 59.4966C33.7175 55.6197 28.2312 54.1615 22.0691 54.1615C19.8133 54.162 17.5697 54.4915 15.409 55.1396H15.3379C15.2475 55.1372 15.1615 55.0997 15.0984 55.0349C15.0353 54.9701 15 54.8832 15 54.7928C15.0011 54.7421 15.0127 54.6922 15.0341 54.6463C15.0556 54.6004 15.0863 54.5594 15.1245 54.526H15.1689C18.4181 52.338 22.1699 51.0114 26.0723 50.6707C29.9747 50.3301 33.8996 50.9866 37.4787 52.5787C40.6685 50.3228 44.378 48.9121 48.2607 48.4782Z" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M35.8691 82.7051C35.8691 83.3652 35.7871 83.9668 35.623 84.5098C35.459 85.0488 35.209 85.5137 34.873 85.9043C34.541 86.2949 34.1191 86.5957 33.6074 86.8066C33.0957 87.0137 32.4902 87.1172 31.791 87.1172C31.0918 87.1172 30.4863 87.0137 29.9746 86.8066C29.4629 86.5957 29.0391 86.2949 28.7031 85.9043C28.3711 85.5137 28.123 85.0469 27.959 84.5039C27.7949 83.9609 27.7129 83.3574 27.7129 82.6934C27.7129 81.8066 27.8574 81.0352 28.1465 80.3789C28.4395 79.7188 28.8887 79.207 29.4941 78.8438C30.0996 78.4805 30.8691 78.2988 31.8027 78.2988C32.7324 78.2988 33.4961 78.4805 34.0938 78.8438C34.6953 79.207 35.1406 79.7188 35.4297 80.3789C35.7227 81.0391 35.8691 81.8145 35.8691 82.7051ZM29.6172 82.7051C29.6172 83.3027 29.6914 83.8184 29.8398 84.252C29.9922 84.6816 30.2285 85.0137 30.5488 85.248C30.8691 85.4785 31.2832 85.5938 31.791 85.5938C32.3066 85.5938 32.7246 85.4785 33.0449 85.248C33.3652 85.0137 33.5977 84.6816 33.7422 84.252C33.8906 83.8184 33.9648 83.3027 33.9648 82.7051C33.9648 81.8066 33.7969 81.0996 33.4609 80.584C33.125 80.0684 32.5723 79.8105 31.8027 79.8105C31.291 79.8105 30.873 79.9277 30.5488 80.1621C30.2285 80.3926 29.9922 80.7246 29.8398 81.1582C29.6914 81.5879 29.6172 82.1035 29.6172 82.7051ZM44.752 82.6348C44.752 83.5996 44.5664 84.4062 44.1953 85.0547C43.8281 85.6992 43.2949 86.1855 42.5957 86.5137C41.8965 86.8379 41.0547 87 40.0703 87H37.6445V78.4336H40.334C41.2324 78.4336 42.0117 78.5938 42.6719 78.9141C43.332 79.2305 43.8438 79.7012 44.207 80.3262C44.5703 80.9473 44.752 81.7168 44.752 82.6348ZM42.8652 82.6816C42.8652 82.0488 42.7715 81.5293 42.584 81.123C42.4004 80.7129 42.127 80.4102 41.7637 80.2148C41.4043 80.0195 40.959 79.9219 40.4277 79.9219H39.4609V85.5H40.2402C41.127 85.5 41.7852 85.2637 42.2148 84.791C42.6484 84.3184 42.8652 83.6152 42.8652 82.6816ZM49.2637 78.4336C50.3691 78.4336 51.1758 78.6719 51.6836 79.1484C52.1914 79.6211 52.4453 80.2734 52.4453 81.1055C52.4453 81.4805 52.3887 81.8398 52.2754 82.1836C52.1621 82.5234 51.9766 82.8262 51.7188 83.0918C51.4648 83.3574 51.125 83.5684 50.6992 83.7246C50.2734 83.877 49.748 83.9531 49.123 83.9531H48.3438V87H46.5273V78.4336H49.2637ZM49.1699 79.9219H48.3438V82.4648H48.9414C49.2812 82.4648 49.5762 82.4199 49.8262 82.3301C50.0762 82.2402 50.2695 82.0996 50.4062 81.9082C50.543 81.7168 50.6113 81.4707 50.6113 81.1699C50.6113 80.748 50.4941 80.4355 50.2598 80.2324C50.0254 80.0254 49.6621 79.9219 49.1699 79.9219Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22030">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 5 KiB

View file

@ -1,7 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#237453"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M46.3335 109.705C46.3335 111.123 45.9819 112.213 45.2788 112.975C44.5757 113.736 43.5679 114.117 42.2554 114.117C40.9429 114.117 39.9351 113.736 39.2319 112.975C38.5288 112.213 38.1772 111.119 38.1772 109.693C38.1772 108.268 38.5288 107.18 39.2319 106.43C39.939 105.676 40.9507 105.299 42.2671 105.299C43.5835 105.299 44.5894 105.678 45.2847 106.436C45.9839 107.193 46.3335 108.283 46.3335 109.705ZM40.0815 109.705C40.0815 110.662 40.2632 111.383 40.6265 111.867C40.9897 112.352 41.5327 112.594 42.2554 112.594C43.7046 112.594 44.4292 111.631 44.4292 109.705C44.4292 107.775 43.7085 106.811 42.2671 106.811C41.5444 106.811 40.9995 107.055 40.6323 107.543C40.2651 108.027 40.0815 108.748 40.0815 109.705ZM55.2163 109.635C55.2163 111.045 54.814 112.125 54.0093 112.875C53.2085 113.625 52.0503 114 50.5347 114H48.1089V105.434H50.7983C52.1968 105.434 53.2827 105.803 54.0562 106.541C54.8296 107.279 55.2163 108.311 55.2163 109.635ZM53.3296 109.682C53.3296 107.842 52.5171 106.922 50.8921 106.922H49.9253V112.5H50.7046C52.4546 112.5 53.3296 111.561 53.3296 109.682ZM62.0483 111.621C62.0483 112.395 61.769 113.004 61.2104 113.449C60.6558 113.895 59.8823 114.117 58.8901 114.117C57.9761 114.117 57.1675 113.945 56.4644 113.602V111.914C57.0425 112.172 57.5308 112.354 57.9292 112.459C58.3315 112.564 58.6987 112.617 59.0308 112.617C59.4292 112.617 59.7339 112.541 59.9448 112.389C60.1597 112.236 60.2671 112.01 60.2671 111.709C60.2671 111.541 60.2202 111.393 60.1265 111.264C60.0327 111.131 59.894 111.004 59.7104 110.883C59.5308 110.762 59.1616 110.568 58.603 110.303C58.0796 110.057 57.687 109.82 57.4253 109.594C57.1636 109.367 56.9546 109.104 56.7983 108.803C56.6421 108.502 56.564 108.15 56.564 107.748C56.564 106.99 56.8198 106.395 57.3315 105.961C57.8472 105.527 58.5581 105.311 59.4644 105.311C59.9097 105.311 60.3335 105.363 60.7358 105.469C61.1421 105.574 61.5659 105.723 62.0073 105.914L61.4214 107.326C60.9644 107.139 60.5854 107.008 60.2847 106.934C59.9878 106.859 59.6948 106.822 59.4058 106.822C59.062 106.822 58.7983 106.902 58.6147 107.062C58.4312 107.223 58.3394 107.432 58.3394 107.689C58.3394 107.85 58.3765 107.99 58.4507 108.111C58.5249 108.229 58.6421 108.344 58.8022 108.457C58.9663 108.566 59.3511 108.766 59.9565 109.055C60.7573 109.438 61.3062 109.822 61.603 110.209C61.8999 110.592 62.0483 111.062 62.0483 111.621Z" fill="white"/>
<path d="M78 52.74L77.71 52.59C75.5095 51.5323 73.0841 51.0277 70.6443 51.1201C68.2046 51.2125 65.8242 51.899 63.71 53.12C61.5369 51.8865 59.089 51.2182 56.5906 51.1763C54.0922 51.1344 51.6232 51.7202 49.41 52.88H49.33C49.2989 52.9033 49.2737 52.9335 49.2564 52.9682C49.239 53.0029 49.23 53.0412 49.23 53.08C49.23 53.149 49.2574 53.2151 49.3061 53.2639C49.3549 53.3126 49.421 53.34 49.49 53.34H49.55C50.9144 53.0837 52.3084 53.0231 53.69 53.16C57.69 53.53 61.12 54.76 63.55 57.52C63.68 57.65 63.79 57.64 63.92 57.52C67 54 71.68 52.6 76.72 53.07C77 53.07 77.28 53.13 77.55 53.18H77.88C77.9144 53.1847 77.9494 53.1815 77.9823 53.1708C78.0153 53.16 78.0455 53.142 78.0705 53.1179C78.0955 53.0939 78.1147 53.0645 78.1268 53.0319C78.1388 52.9994 78.1433 52.9645 78.14 52.93C78.1341 52.8893 78.1182 52.8506 78.0938 52.8174C78.0694 52.7843 78.0372 52.7577 78 52.74Z" fill="white"/>
<path d="M72.16 65.21C68.1013 63.5273 63.6822 62.9007 59.3156 63.3886C54.9491 63.8765 50.7773 65.463 47.19 68C43.1649 66.2095 38.7509 65.4712 34.3622 65.8543C29.9735 66.2373 25.7541 67.7293 22.1 70.19H22.05C22.0071 70.2275 21.9725 70.2736 21.9484 70.3252C21.9243 70.3769 21.9112 70.433 21.91 70.49C21.91 70.5917 21.9497 70.6894 22.0207 70.7623C22.0917 70.8352 22.1883 70.8774 22.29 70.88H22.37C24.7999 70.1511 27.3232 69.7806 29.86 69.78C36.79 69.78 42.96 71.42 47.6 75.78C47.6698 75.8391 47.7586 75.8711 47.85 75.87C47.9075 75.8716 47.9645 75.8597 48.0166 75.8354C48.0686 75.8111 48.1143 75.775 48.15 75.73L48.37 75.42C53.09 68.97 60.87 65.79 69.53 65.79C70.15 65.79 70.76 65.79 71.37 65.85H71.92C72.0227 65.8475 72.1204 65.8056 72.193 65.733C72.2656 65.6604 72.3075 65.5626 72.31 65.46C72.3027 65.4105 72.2857 65.3629 72.26 65.32C72.2342 65.2771 72.2003 65.2397 72.16 65.21Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22043)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#237453"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M64.6167 38.8762L64.8745 39.0096C64.9076 39.0253 64.9362 39.049 64.958 39.0785C64.9797 39.1079 64.9938 39.1423 64.999 39.1786C65.002 39.2093 64.998 39.2403 64.9873 39.2692C64.9766 39.2981 64.9594 39.3243 64.9372 39.3456C64.915 39.367 64.8882 39.3831 64.8588 39.3927C64.8295 39.4022 64.7984 39.405 64.7678 39.4009H64.4744C64.4458 39.3956 64.4171 39.3901 64.3882 39.3847C64.175 39.3444 63.9557 39.303 63.7364 39.303C59.2548 38.8851 55.0934 40.13 52.3547 43.2599C52.2391 43.3667 52.1413 43.3755 52.0257 43.2599C49.865 40.8058 46.8151 39.7121 43.2583 39.3831C42.0298 39.2614 40.7903 39.3153 39.577 39.5431H39.5237C39.4624 39.5431 39.4036 39.5188 39.3602 39.4754C39.3169 39.4321 39.2925 39.3733 39.2925 39.3119C39.2925 39.2774 39.3005 39.2434 39.316 39.2125C39.3314 39.1817 39.3538 39.1548 39.3814 39.1341H39.4526C41.4206 38.1028 43.6159 37.5819 45.8375 37.6192C48.059 37.6565 50.2357 38.2507 52.168 39.3475C54.0479 38.2618 56.1645 37.6513 58.3339 37.5692C60.5033 37.4871 62.66 37.9357 64.6167 38.8762ZM48.2607 48.4782C52.1435 48.0444 56.0728 48.6016 59.6819 50.0978C59.7176 50.1243 59.7478 50.1575 59.7707 50.1957C59.7936 50.2338 59.8087 50.2761 59.8152 50.3201C59.813 50.4114 59.7757 50.4983 59.7112 50.5628C59.6466 50.6274 59.5597 50.6647 59.4684 50.6669H58.9794C58.437 50.6136 57.8946 50.6136 57.3433 50.6136H57.3433C49.6429 50.6136 42.725 53.4412 38.528 59.1765L38.3324 59.4521C38.3006 59.4922 38.26 59.5243 38.2137 59.5459C38.1674 59.5675 38.1167 59.578 38.0656 59.5766C37.9843 59.5775 37.9054 59.5491 37.8433 59.4966C33.7175 55.6197 28.2312 54.1614 22.0691 54.1614C19.8133 54.1619 17.5697 54.4914 15.409 55.1395H15.3379C15.2475 55.1372 15.1615 55.0997 15.0984 55.0349C15.0353 54.9701 15 54.8832 15 54.7928C15.0011 54.7421 15.0127 54.6922 15.0341 54.6463C15.0556 54.6003 15.0863 54.5594 15.1245 54.526H15.1689C18.4181 52.3379 22.1699 51.0113 26.0723 50.6707C29.9747 50.3301 33.8996 50.9866 37.4787 52.5787C40.6685 50.3228 44.378 48.912 48.2607 48.4782Z" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M36.332 82.7051C36.332 83.3652 36.25 83.9668 36.0859 84.5098C35.9219 85.0488 35.6719 85.5137 35.3359 85.9043C35.0039 86.2949 34.582 86.5957 34.0703 86.8066C33.5586 87.0137 32.9531 87.1172 32.2539 87.1172C31.5547 87.1172 30.9492 87.0137 30.4375 86.8066C29.9258 86.5957 29.502 86.2949 29.166 85.9043C28.834 85.5137 28.5859 85.0469 28.4219 84.5039C28.2578 83.9609 28.1758 83.3574 28.1758 82.6934C28.1758 81.8066 28.3203 81.0352 28.6094 80.3789C28.9023 79.7188 29.3516 79.207 29.957 78.8438C30.5625 78.4805 31.332 78.2988 32.2656 78.2988C33.1953 78.2988 33.959 78.4805 34.5566 78.8438C35.1582 79.207 35.6035 79.7188 35.8926 80.3789C36.1855 81.0391 36.332 81.8145 36.332 82.7051ZM30.0801 82.7051C30.0801 83.3027 30.1543 83.8184 30.3027 84.252C30.4551 84.6816 30.6914 85.0137 31.0117 85.248C31.332 85.4785 31.7461 85.5938 32.2539 85.5938C32.7695 85.5938 33.1875 85.4785 33.5078 85.248C33.8281 85.0137 34.0605 84.6816 34.2051 84.252C34.3535 83.8184 34.4277 83.3027 34.4277 82.7051C34.4277 81.8066 34.2598 81.0996 33.9238 80.584C33.5879 80.0684 33.0352 79.8105 32.2656 79.8105C31.7539 79.8105 31.3359 79.9277 31.0117 80.1621C30.6914 80.3926 30.4551 80.7246 30.3027 81.1582C30.1543 81.5879 30.0801 82.1035 30.0801 82.7051ZM45.2148 82.6348C45.2148 83.5996 45.0293 84.4062 44.6582 85.0547C44.291 85.6992 43.7578 86.1855 43.0586 86.5137C42.3594 86.8379 41.5176 87 40.5332 87H38.1074V78.4336H40.7969C41.6953 78.4336 42.4746 78.5938 43.1348 78.9141C43.7949 79.2305 44.3066 79.7012 44.6699 80.3262C45.0332 80.9473 45.2148 81.7168 45.2148 82.6348ZM43.3281 82.6816C43.3281 82.0488 43.2344 81.5293 43.0469 81.123C42.8633 80.7129 42.5898 80.4102 42.2266 80.2148C41.8672 80.0195 41.4219 79.9219 40.8906 79.9219H39.9238V85.5H40.7031C41.5898 85.5 42.248 85.2637 42.6777 84.791C43.1113 84.3184 43.3281 83.6152 43.3281 82.6816ZM52.0469 84.6211C52.0469 85.1289 51.9238 85.5703 51.6777 85.9453C51.4316 86.3203 51.0723 86.6094 50.5996 86.8125C50.1309 87.0156 49.5605 87.1172 48.8887 87.1172C48.5918 87.1172 48.3008 87.0977 48.0156 87.0586C47.7344 87.0195 47.4629 86.9629 47.2012 86.8887C46.9434 86.8105 46.6973 86.7148 46.4629 86.6016V84.9141C46.8691 85.0938 47.291 85.2559 47.7285 85.4004C48.166 85.5449 48.5996 85.6172 49.0293 85.6172C49.3262 85.6172 49.5645 85.5781 49.7441 85.5C49.9277 85.4219 50.0605 85.3145 50.1426 85.1777C50.2246 85.041 50.2656 84.8848 50.2656 84.709C50.2656 84.4941 50.1934 84.3105 50.0488 84.1582C49.9043 84.0059 49.7051 83.8633 49.4512 83.7305C49.2012 83.5977 48.918 83.4551 48.6016 83.3027C48.4023 83.209 48.1855 83.0957 47.9512 82.9629C47.7168 82.8262 47.4941 82.6602 47.2832 82.4648C47.0723 82.2695 46.8984 82.0332 46.7617 81.7559C46.6289 81.4746 46.5625 81.1387 46.5625 80.748C46.5625 80.2363 46.6797 79.7988 46.9141 79.4355C47.1484 79.0723 47.4824 78.7949 47.916 78.6035C48.3535 78.4082 48.8691 78.3105 49.4629 78.3105C49.9082 78.3105 50.332 78.3633 50.7344 78.4688C51.1406 78.5703 51.5645 78.7188 52.0059 78.9141L51.4199 80.3262C51.0254 80.166 50.6719 80.043 50.3594 79.957C50.0469 79.8672 49.7285 79.8223 49.4043 79.8223C49.1777 79.8223 48.9844 79.8594 48.8242 79.9336C48.6641 80.0039 48.543 80.1055 48.4609 80.2383C48.3789 80.3672 48.3379 80.5176 48.3379 80.6895C48.3379 80.8926 48.3965 81.0645 48.5137 81.2051C48.6348 81.3418 48.8145 81.4746 49.0527 81.6035C49.2949 81.7324 49.5957 81.8828 49.9551 82.0547C50.3926 82.2617 50.7656 82.4785 51.0742 82.7051C51.3867 82.9277 51.627 83.1914 51.7949 83.4961C51.9629 83.7969 52.0469 84.1719 52.0469 84.6211Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22043">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

View file

@ -1,7 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#3C6D88"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M46.1636 109.705C46.1636 111.123 45.812 112.213 45.1089 112.975C44.4058 113.736 43.3979 114.117 42.0854 114.117C40.7729 114.117 39.7651 113.736 39.062 112.975C38.3589 112.213 38.0073 111.119 38.0073 109.693C38.0073 108.268 38.3589 107.18 39.062 106.43C39.769 105.676 40.7808 105.299 42.0972 105.299C43.4136 105.299 44.4194 105.678 45.1147 106.436C45.814 107.193 46.1636 108.283 46.1636 109.705ZM39.9116 109.705C39.9116 110.662 40.0933 111.383 40.4565 111.867C40.8198 112.352 41.3628 112.594 42.0854 112.594C43.5347 112.594 44.2593 111.631 44.2593 109.705C44.2593 107.775 43.5386 106.811 42.0972 106.811C41.3745 106.811 40.8296 107.055 40.4624 107.543C40.0952 108.027 39.9116 108.748 39.9116 109.705ZM55.0464 109.635C55.0464 111.045 54.644 112.125 53.8394 112.875C53.0386 113.625 51.8804 114 50.3647 114H47.939V105.434H50.6284C52.0269 105.434 53.1128 105.803 53.8862 106.541C54.6597 107.279 55.0464 108.311 55.0464 109.635ZM53.1597 109.682C53.1597 107.842 52.3472 106.922 50.7222 106.922H49.7554V112.5H50.5347C52.2847 112.5 53.1597 111.561 53.1597 109.682ZM60.1265 114H58.3101V106.945H55.9839V105.434H62.4526V106.945H60.1265V114Z" fill="white"/>
<path d="M78 52.74L77.71 52.59C75.5095 51.5323 73.0841 51.0277 70.6443 51.1201C68.2046 51.2125 65.8242 51.899 63.71 53.12C61.5369 51.8865 59.089 51.2182 56.5906 51.1763C54.0922 51.1344 51.6232 51.7202 49.41 52.88H49.33C49.2989 52.9033 49.2737 52.9335 49.2564 52.9682C49.239 53.0029 49.23 53.0412 49.23 53.08C49.23 53.149 49.2574 53.2151 49.3061 53.2639C49.3549 53.3126 49.421 53.34 49.49 53.34H49.55C50.9144 53.0837 52.3084 53.0231 53.69 53.16C57.69 53.53 61.12 54.76 63.55 57.52C63.68 57.65 63.79 57.64 63.92 57.52C67 54 71.68 52.6 76.72 53.07C77 53.07 77.28 53.13 77.55 53.18H77.88C77.9144 53.1847 77.9494 53.1815 77.9823 53.1708C78.0153 53.16 78.0455 53.142 78.0705 53.1179C78.0955 53.0939 78.1147 53.0645 78.1268 53.0319C78.1388 52.9994 78.1433 52.9645 78.14 52.93C78.1341 52.8893 78.1182 52.8506 78.0938 52.8174C78.0694 52.7843 78.0372 52.7577 78 52.74Z" fill="white"/>
<path d="M72.1599 65.21C68.1011 63.5273 63.6821 62.9007 59.3155 63.3886C54.9489 63.8765 50.7772 65.463 47.1899 68C43.1648 66.2095 38.7507 65.4712 34.362 65.8543C29.9734 66.2373 25.754 67.7293 22.0999 70.19H22.0499C22.007 70.2275 21.9724 70.2736 21.9483 70.3252C21.9242 70.3769 21.9111 70.433 21.9099 70.49C21.9099 70.5917 21.9496 70.6894 22.0206 70.7623C22.0916 70.8352 22.1882 70.8774 22.2899 70.88H22.3699C24.7998 70.1511 27.323 69.7806 29.8599 69.78C36.7899 69.78 42.9599 71.42 47.5999 75.78C47.6697 75.8391 47.7585 75.8711 47.8499 75.87C47.9074 75.8716 47.9644 75.8597 48.0164 75.8354C48.0685 75.8111 48.1142 75.775 48.1499 75.73L48.3699 75.42C53.0899 68.97 60.8699 65.79 69.5299 65.79C70.1499 65.79 70.7599 65.79 71.3699 65.85H71.9199C72.0225 65.8475 72.1203 65.8056 72.1929 65.733C72.2655 65.6604 72.3074 65.5626 72.3099 65.46C72.3026 65.4105 72.2856 65.3629 72.2598 65.32C72.2341 65.2771 72.2001 65.2397 72.1599 65.21Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22031)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#3C6D88"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M64.6167 38.8762L64.8745 39.0096C64.9076 39.0254 64.9362 39.049 64.958 39.0785C64.9797 39.1079 64.9938 39.1423 64.999 39.1786C65.002 39.2093 64.998 39.2403 64.9873 39.2692C64.9766 39.2981 64.9594 39.3243 64.9372 39.3456C64.915 39.367 64.8882 39.3831 64.8588 39.3927C64.8295 39.4022 64.7984 39.405 64.7678 39.4009H64.4744C64.4458 39.3956 64.4171 39.3901 64.3882 39.3847C64.175 39.3444 63.9557 39.303 63.7364 39.303C59.2548 38.8851 55.0934 40.13 52.3547 43.2599C52.2391 43.3667 52.1413 43.3755 52.0257 43.2599C49.865 40.8058 46.8151 39.7121 43.2583 39.3831C42.0298 39.2614 40.7903 39.3153 39.577 39.5431H39.5237C39.4624 39.5431 39.4036 39.5188 39.3602 39.4754C39.3169 39.4321 39.2925 39.3733 39.2925 39.3119C39.2925 39.2774 39.3005 39.2434 39.316 39.2125C39.3314 39.1817 39.3538 39.1548 39.3814 39.1341H39.4526C41.4206 38.1028 43.6159 37.5819 45.8375 37.6192C48.059 37.6565 50.2357 38.2507 52.168 39.3475C54.0479 38.2618 56.1645 37.6513 58.3339 37.5692C60.5033 37.4871 62.66 37.9357 64.6167 38.8762ZM48.2607 48.4782C52.1435 48.0444 56.0728 48.6016 59.6819 50.0978C59.7176 50.1243 59.7478 50.1575 59.7707 50.1957C59.7936 50.2338 59.8087 50.2761 59.8152 50.3201C59.813 50.4114 59.7757 50.4983 59.7112 50.5628C59.6466 50.6274 59.5597 50.6647 59.4684 50.6669H58.9794C58.437 50.6136 57.8946 50.6136 57.3433 50.6136H57.3433C49.6429 50.6136 42.725 53.4412 38.528 59.1765L38.3324 59.4521C38.3006 59.4922 38.26 59.5243 38.2137 59.5459C38.1674 59.5675 38.1167 59.578 38.0656 59.5766C37.9843 59.5775 37.9054 59.5491 37.8433 59.4966C33.7175 55.6197 28.2312 54.1614 22.0691 54.1614C19.8133 54.1619 17.5697 54.4914 15.409 55.1395H15.3379C15.2475 55.1372 15.1615 55.0997 15.0984 55.0349C15.0353 54.9701 15 54.8832 15 54.7928C15.0011 54.7421 15.0127 54.6922 15.0341 54.6463C15.0556 54.6003 15.0863 54.5594 15.1245 54.526H15.1689C18.4181 52.3379 22.1699 51.0113 26.0723 50.6707C29.9747 50.3301 33.8996 50.9866 37.4787 52.5787C40.6685 50.3228 44.378 48.912 48.2607 48.4782Z" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M36.1621 82.7051C36.1621 83.3652 36.0801 83.9668 35.916 84.5098C35.752 85.0488 35.502 85.5137 35.166 85.9043C34.834 86.2949 34.4121 86.5957 33.9004 86.8066C33.3887 87.0137 32.7832 87.1172 32.084 87.1172C31.3848 87.1172 30.7793 87.0137 30.2676 86.8066C29.7559 86.5957 29.332 86.2949 28.9961 85.9043C28.6641 85.5137 28.416 85.0469 28.252 84.5039C28.0879 83.9609 28.0059 83.3574 28.0059 82.6934C28.0059 81.8066 28.1504 81.0352 28.4395 80.3789C28.7324 79.7188 29.1816 79.207 29.7871 78.8438C30.3926 78.4805 31.1621 78.2988 32.0957 78.2988C33.0254 78.2988 33.7891 78.4805 34.3867 78.8438C34.9883 79.207 35.4336 79.7188 35.7227 80.3789C36.0156 81.0391 36.1621 81.8145 36.1621 82.7051ZM29.9102 82.7051C29.9102 83.3027 29.9844 83.8184 30.1328 84.252C30.2852 84.6816 30.5215 85.0137 30.8418 85.248C31.1621 85.4785 31.5762 85.5938 32.084 85.5938C32.5996 85.5938 33.0176 85.4785 33.3379 85.248C33.6582 85.0137 33.8906 84.6816 34.0352 84.252C34.1836 83.8184 34.2578 83.3027 34.2578 82.7051C34.2578 81.8066 34.0898 81.0996 33.7539 80.584C33.418 80.0684 32.8652 79.8105 32.0957 79.8105C31.584 79.8105 31.166 79.9277 30.8418 80.1621C30.5215 80.3926 30.2852 80.7246 30.1328 81.1582C29.9844 81.5879 29.9102 82.1035 29.9102 82.7051ZM45.0449 82.6348C45.0449 83.5996 44.8594 84.4062 44.4883 85.0547C44.1211 85.6992 43.5879 86.1855 42.8887 86.5137C42.1895 86.8379 41.3477 87 40.3633 87H37.9375V78.4336H40.627C41.5254 78.4336 42.3047 78.5938 42.9648 78.9141C43.625 79.2305 44.1367 79.7012 44.5 80.3262C44.8633 80.9473 45.0449 81.7168 45.0449 82.6348ZM43.1582 82.6816C43.1582 82.0488 43.0645 81.5293 42.877 81.123C42.6934 80.7129 42.4199 80.4102 42.0566 80.2148C41.6973 80.0195 41.252 79.9219 40.7207 79.9219H39.7539V85.5H40.5332C41.4199 85.5 42.0781 85.2637 42.5078 84.791C42.9414 84.3184 43.1582 83.6152 43.1582 82.6816ZM50.125 87H48.3086V79.9453H45.9824V78.4336H52.4512V79.9453H50.125V87Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22031">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View file

@ -1,16 +1,18 @@
<svg width="100" height="127" viewBox="0 0 100 127" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#2CA498"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M36.8535 109.705C36.8535 111.123 36.502 112.213 35.7988 112.975C35.0957 113.736 34.0879 114.117 32.7754 114.117C31.4629 114.117 30.4551 113.736 29.752 112.975C29.0488 112.213 28.6973 111.119 28.6973 109.693C28.6973 108.268 29.0488 107.18 29.752 106.43C30.459 105.676 31.4707 105.299 32.7871 105.299C34.1035 105.299 35.1094 105.678 35.8047 106.436C36.5039 107.193 36.8535 108.283 36.8535 109.705ZM30.6016 109.705C30.6016 110.662 30.7832 111.383 31.1465 111.867C31.5098 112.352 32.0527 112.594 32.7754 112.594C34.2246 112.594 34.9492 111.631 34.9492 109.705C34.9492 107.775 34.2285 106.811 32.7871 106.811C32.0645 106.811 31.5195 107.055 31.1523 107.543C30.7852 108.027 30.6016 108.748 30.6016 109.705Z" fill="white"/>
<path d="M40.416 114H38.6289V105.434H43.5391V106.922H40.416V109.131H43.3223V110.613H40.416V114Z" fill="white"/>
<path d="M52.9902 109.705C52.9902 111.123 52.6387 112.213 51.9355 112.975C51.2324 113.736 50.2246 114.117 48.9121 114.117C47.5996 114.117 46.5918 113.736 45.8887 112.975C45.1855 112.213 44.834 111.119 44.834 109.693C44.834 108.268 45.1855 107.18 45.8887 106.43C46.5957 105.676 47.6074 105.299 48.9238 105.299C50.2402 105.299 51.2461 105.678 51.9414 106.436C52.6406 107.193 52.9902 108.283 52.9902 109.705ZM46.7383 109.705C46.7383 110.662 46.9199 111.383 47.2832 111.867C47.6465 112.352 48.1895 112.594 48.9121 112.594C50.3613 112.594 51.0859 111.631 51.0859 109.705C51.0859 107.775 50.3652 106.811 48.9238 106.811C48.2012 106.811 47.6562 107.055 47.2891 107.543C46.9219 108.027 46.7383 108.748 46.7383 109.705Z" fill="white"/>
<path d="M56.582 109.236H57.168C57.7422 109.236 58.166 109.141 58.4395 108.949C58.7129 108.758 58.8496 108.457 58.8496 108.047C58.8496 107.641 58.709 107.352 58.4277 107.18C58.1504 107.008 57.7188 106.922 57.1328 106.922H56.582V109.236ZM56.582 110.713V114H54.7656V105.434H57.2617C58.4258 105.434 59.2871 105.646 59.8457 106.072C60.4043 106.494 60.6836 107.137 60.6836 108C60.6836 108.504 60.5449 108.953 60.2676 109.348C59.9902 109.738 59.5977 110.045 59.0898 110.268C60.3789 112.193 61.2188 113.438 61.6094 114H59.5938L57.5488 110.713H56.582Z" fill="white"/>
<path d="M66.3145 114L64.252 107.279H64.1992C64.2734 108.646 64.3105 109.559 64.3105 110.016V114H62.6875V105.434H65.1602L67.1875 111.984H67.2227L69.373 105.434H71.8457V114H70.1523V109.945C70.1523 109.754 70.1543 109.533 70.1582 109.283C70.166 109.033 70.1934 108.369 70.2402 107.291H70.1875L67.9785 114H66.3145Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19 85H81V41H19V85ZM17 39V87H83V39H17Z" fill="white"/>
<rect x="19" y="41" width="62" height="44" fill="#41ADA2"/>
<rect x="29" y="50" width="5" height="2" fill="white"/>
<rect x="36" y="50" width="5" height="2" fill="white"/>
<rect x="29" y="74" width="5" height="2" fill="white"/>
<rect x="36" y="74" width="5" height="2" fill="white"/>
<rect width="22" height="2" transform="matrix(-4.37114e-08 1 1 4.37114e-08 34 52)" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22044)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#188079"/>
<path d="M18 39H54.1761H62V42.7143V59H18V39Z" stroke="white" stroke-width="2"/>
<rect x="21" y="42" width="3" height="2" fill="white"/>
<rect x="26" y="42" width="3" height="2" fill="white"/>
<rect x="21" y="54" width="3" height="2" fill="white"/>
<rect x="26" y="54" width="3" height="2" fill="white"/>
<rect width="10" height="2" transform="matrix(-7.10309e-08 1 1 2.68993e-08 24 44)" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M26.3887 82.7051C26.3887 83.3652 26.3066 83.9668 26.1426 84.5098C25.9785 85.0488 25.7285 85.5137 25.3926 85.9043C25.0605 86.2949 24.6387 86.5957 24.127 86.8066C23.6152 87.0137 23.0098 87.1172 22.3105 87.1172C21.6113 87.1172 21.0059 87.0137 20.4941 86.8066C19.9824 86.5957 19.5586 86.2949 19.2227 85.9043C18.8906 85.5137 18.6426 85.0469 18.4785 84.5039C18.3145 83.9609 18.2324 83.3574 18.2324 82.6934C18.2324 81.8066 18.377 81.0352 18.666 80.3789C18.959 79.7188 19.4082 79.207 20.0137 78.8438C20.6191 78.4805 21.3887 78.2988 22.3223 78.2988C23.252 78.2988 24.0156 78.4805 24.6133 78.8438C25.2148 79.207 25.6602 79.7188 25.9492 80.3789C26.2422 81.0391 26.3887 81.8145 26.3887 82.7051ZM20.1367 82.7051C20.1367 83.3027 20.2109 83.8184 20.3594 84.252C20.5117 84.6816 20.748 85.0137 21.0684 85.248C21.3887 85.4785 21.8027 85.5938 22.3105 85.5938C22.8262 85.5938 23.2441 85.4785 23.5645 85.248C23.8848 85.0137 24.1172 84.6816 24.2617 84.252C24.4102 83.8184 24.4844 83.3027 24.4844 82.7051C24.4844 81.8066 24.3164 81.0996 23.9805 80.584C23.6445 80.0684 23.0918 79.8105 22.3223 79.8105C21.8105 79.8105 21.3926 79.9277 21.0684 80.1621C20.748 80.3926 20.5117 80.7246 20.3594 81.1582C20.2109 81.5879 20.1367 82.1035 20.1367 82.7051ZM29.9512 87H28.1641V78.4336H33.0742V79.9219H29.9512V82.1309H32.8574V83.6133H29.9512V87ZM42.5254 82.7051C42.5254 83.3652 42.4434 83.9668 42.2793 84.5098C42.1152 85.0488 41.8652 85.5137 41.5293 85.9043C41.1973 86.2949 40.7754 86.5957 40.2637 86.8066C39.752 87.0137 39.1465 87.1172 38.4473 87.1172C37.748 87.1172 37.1426 87.0137 36.6309 86.8066C36.1191 86.5957 35.6953 86.2949 35.3594 85.9043C35.0273 85.5137 34.7793 85.0469 34.6152 84.5039C34.4512 83.9609 34.3691 83.3574 34.3691 82.6934C34.3691 81.8066 34.5137 81.0352 34.8027 80.3789C35.0957 79.7188 35.5449 79.207 36.1504 78.8438C36.7559 78.4805 37.5254 78.2988 38.459 78.2988C39.3887 78.2988 40.1523 78.4805 40.75 78.8438C41.3516 79.207 41.7969 79.7188 42.0859 80.3789C42.3789 81.0391 42.5254 81.8145 42.5254 82.7051ZM36.2734 82.7051C36.2734 83.3027 36.3477 83.8184 36.4961 84.252C36.6484 84.6816 36.8848 85.0137 37.2051 85.248C37.5254 85.4785 37.9395 85.5938 38.4473 85.5938C38.9629 85.5938 39.3809 85.4785 39.7012 85.248C40.0215 85.0137 40.2539 84.6816 40.3984 84.252C40.5469 83.8184 40.6211 83.3027 40.6211 82.7051C40.6211 81.8066 40.4531 81.0996 40.1172 80.584C39.7812 80.0684 39.2285 79.8105 38.459 79.8105C37.9473 79.8105 37.5293 79.9277 37.2051 80.1621C36.8848 80.3926 36.6484 80.7246 36.4961 81.1582C36.3477 81.5879 36.2734 82.1035 36.2734 82.7051ZM46.7969 78.4336C47.5742 78.4336 48.2148 78.5273 48.7188 78.7148C49.2266 78.9023 49.6035 79.1855 49.8496 79.5645C50.0957 79.9434 50.2188 80.4219 50.2188 81C50.2188 81.3906 50.1445 81.7324 49.9961 82.0254C49.8477 82.3184 49.6523 82.5664 49.4102 82.7695C49.168 82.9727 48.9062 83.1387 48.625 83.2676L51.1445 87H49.1289L47.084 83.7129H46.1172V87H44.3008V78.4336H46.7969ZM46.668 79.9219H46.1172V82.2363H46.7031C47.3047 82.2363 47.7344 82.1367 47.9922 81.9375C48.2539 81.7344 48.3848 81.4375 48.3848 81.0469C48.3848 80.6406 48.2441 80.3516 47.9629 80.1797C47.6855 80.0078 47.2539 79.9219 46.668 79.9219ZM55.8496 87L53.7871 80.2793H53.7344C53.7422 80.4395 53.7539 80.6816 53.7695 81.0059C53.7891 81.3262 53.8066 81.668 53.8223 82.0312C53.8379 82.3945 53.8457 82.7227 53.8457 83.0156V87H52.2227V78.4336H54.6953L56.7227 84.9844H56.7578L58.9082 78.4336H61.3809V87H59.6875V82.9453C59.6875 82.6758 59.6914 82.3652 59.6992 82.0137C59.7109 81.6621 59.7246 81.3281 59.7402 81.0117C59.7559 80.6914 59.7676 80.4512 59.7754 80.291H59.7227L57.5137 87H55.8496Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22044">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -1,9 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#DD9426"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M45.8735 109.705C45.8735 111.123 45.522 112.213 44.8188 112.975C44.1157 113.736 43.1079 114.117 41.7954 114.117C40.4829 114.117 39.4751 113.736 38.772 112.975C38.0688 112.213 37.7173 111.119 37.7173 109.693C37.7173 108.268 38.0688 107.18 38.772 106.43C39.479 105.676 40.4907 105.299 41.8071 105.299C43.1235 105.299 44.1294 105.678 44.8247 106.436C45.5239 107.193 45.8735 108.283 45.8735 109.705ZM39.6216 109.705C39.6216 110.662 39.8032 111.383 40.1665 111.867C40.5298 112.352 41.0728 112.594 41.7954 112.594C43.2446 112.594 43.9692 111.631 43.9692 109.705C43.9692 107.775 43.2485 106.811 41.8071 106.811C41.0845 106.811 40.5396 107.055 40.1724 107.543C39.8052 108.027 39.6216 108.748 39.6216 109.705ZM50.9536 114H49.1372V106.945H46.811V105.434H53.2798V106.945H50.9536V114ZM56.4146 109.465H57.0122C57.5708 109.465 57.9888 109.355 58.2661 109.137C58.5435 108.914 58.6821 108.592 58.6821 108.17C58.6821 107.744 58.5649 107.43 58.3306 107.227C58.1001 107.023 57.7368 106.922 57.2407 106.922H56.4146V109.465ZM60.5161 108.105C60.5161 109.027 60.2271 109.732 59.6489 110.221C59.0747 110.709 58.2563 110.953 57.1938 110.953H56.4146V114H54.5981V105.434H57.3345C58.3735 105.434 59.1626 105.658 59.7017 106.107C60.2446 106.553 60.5161 107.219 60.5161 108.105Z" fill="white"/>
<path d="M78 52.74L77.71 52.59C75.5095 51.5323 73.0841 51.0278 70.6443 51.1201C68.2046 51.2125 65.8242 51.899 63.71 53.12C61.5369 51.8866 59.089 51.2182 56.5906 51.1763C54.0922 51.1344 51.6232 51.7202 49.41 52.88H49.33C49.2989 52.9033 49.2737 52.9335 49.2564 52.9682C49.239 53.0029 49.23 53.0412 49.23 53.08C49.23 53.149 49.2574 53.2151 49.3061 53.2639C49.3549 53.3126 49.421 53.34 49.49 53.34H49.55C50.9144 53.0838 52.3084 53.0231 53.69 53.16C57.69 53.53 61.12 54.76 63.55 57.52C63.68 57.65 63.79 57.64 63.92 57.52C67 54 71.68 52.6 76.72 53.07C77 53.07 77.28 53.13 77.55 53.18H77.88C77.9144 53.1847 77.9494 53.1816 77.9823 53.1708C78.0153 53.16 78.0455 53.142 78.0705 53.1179C78.0955 53.0939 78.1147 53.0645 78.1268 53.0319C78.1388 52.9994 78.1433 52.9646 78.14 52.93C78.1341 52.8893 78.1182 52.8506 78.0938 52.8175C78.0694 52.7843 78.0372 52.7577 78 52.74Z" fill="white"/>
<path d="M72.1602 65.21C68.1014 63.5273 63.6824 62.9007 59.3158 63.3886C54.9492 63.8765 50.7775 65.463 47.1902 68C43.165 66.2096 38.751 65.4712 34.3623 65.8543C29.9736 66.2374 25.7542 67.7293 22.1002 70.19H22.0502C22.0072 70.2276 21.9726 70.2736 21.9485 70.3253C21.9244 70.3769 21.9114 70.433 21.9102 70.49C21.9101 70.5918 21.9498 70.6895 22.0208 70.7623C22.0918 70.8352 22.1885 70.8774 22.2902 70.88H22.3702C24.8001 70.1512 27.3233 69.7806 29.8602 69.78C36.7902 69.78 42.9602 71.42 47.6002 75.78C47.6699 75.8391 47.7587 75.8711 47.8502 75.87C47.9076 75.8716 47.9646 75.8598 48.0167 75.8355C48.0688 75.8112 48.1145 75.7751 48.1502 75.73L48.3702 75.42C53.0902 68.97 60.8702 65.79 69.5302 65.79C70.1502 65.79 70.7602 65.79 71.3702 65.85H71.9202C72.0228 65.8475 72.1205 65.8056 72.1931 65.733C72.2657 65.6604 72.3076 65.5627 72.3102 65.46C72.3028 65.4105 72.2858 65.363 72.2601 65.3201C72.2343 65.2772 72.2004 65.2398 72.1602 65.21Z" fill="white"/>
<rect x="15" y="15" width="16" height="14" rx="2" fill="white"/>
<path d="M23.0898 26H21.6895V18.6348H19.1699V17.4336H25.6094V18.6348H23.0898V26Z" fill="#DD9426"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22053)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#DD9426"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M64.6167 37.8763L64.8745 38.0096C64.9076 38.0254 64.9362 38.049 64.958 38.0785C64.9797 38.108 64.9938 38.1424 64.999 38.1786C65.002 38.2093 64.998 38.2403 64.9873 38.2692C64.9766 38.2982 64.9594 38.3243 64.9372 38.3457C64.915 38.3671 64.8882 38.3831 64.8588 38.3927C64.8295 38.4023 64.7984 38.4051 64.7678 38.4009H64.4744C64.4458 38.3956 64.4171 38.3902 64.3882 38.3847C64.175 38.3445 63.9557 38.3031 63.7364 38.3031C59.2548 37.8852 55.0934 39.13 52.3547 42.26C52.2391 42.3667 52.1413 42.3756 52.0257 42.26C49.865 39.8058 46.8151 38.7121 43.2583 38.3831C42.0298 38.2614 40.7903 38.3153 39.577 38.5432H39.5237C39.4624 38.5432 39.4036 38.5188 39.3602 38.4754C39.3169 38.4321 39.2925 38.3733 39.2925 38.312C39.2925 38.2775 39.3005 38.2434 39.316 38.2126C39.3314 38.1817 39.3538 38.1548 39.3814 38.1341H39.4526C41.4206 37.1028 43.6159 36.5819 45.8375 36.6192C48.059 36.6565 50.2357 37.2508 52.168 38.3475C54.0479 37.2618 56.1645 36.6514 58.3339 36.5692C60.5033 36.4871 62.66 36.9358 64.6167 37.8763ZM48.2607 47.4782C52.1435 47.0444 56.0728 47.6016 59.6819 49.0979C59.7176 49.1243 59.7478 49.1576 59.7707 49.1957C59.7936 49.2339 59.8087 49.2761 59.8152 49.3202C59.813 49.4114 59.7757 49.4983 59.7112 49.5629C59.6466 49.6274 59.5597 49.6647 59.4684 49.6669H58.9794C58.437 49.6136 57.8946 49.6136 57.3433 49.6136H57.3433C49.6429 49.6136 42.725 52.4412 38.528 58.1765L38.3324 58.4521C38.3006 58.4922 38.26 58.5243 38.2137 58.5459C38.1674 58.5675 38.1167 58.578 38.0656 58.5766C37.9843 58.5776 37.9054 58.5492 37.8433 58.4966C33.7175 54.6197 28.2312 53.1615 22.0691 53.1615C19.8133 53.162 17.5697 53.4915 15.409 54.1396H15.3379C15.2475 54.1372 15.1615 54.0997 15.0984 54.0349C15.0353 53.9701 15 53.8832 15 53.7928C15.0011 53.7421 15.0127 53.6922 15.0341 53.6463C15.0556 53.6004 15.0863 53.5594 15.1245 53.526H15.1689C18.4181 51.338 22.1699 50.0114 26.0723 49.6707C29.9747 49.3301 33.8996 49.9866 37.4787 51.5787C40.6685 49.3228 44.378 47.9121 48.2607 47.4782Z" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M36.8359 82.7051C36.8359 83.3652 36.7539 83.9668 36.5898 84.5098C36.4258 85.0488 36.1758 85.5137 35.8398 85.9043C35.5078 86.2949 35.0859 86.5957 34.5742 86.8066C34.0625 87.0137 33.457 87.1172 32.7578 87.1172C32.0586 87.1172 31.4531 87.0137 30.9414 86.8066C30.4297 86.5957 30.0059 86.2949 29.6699 85.9043C29.3379 85.5137 29.0898 85.0469 28.9258 84.5039C28.7617 83.9609 28.6797 83.3574 28.6797 82.6934C28.6797 81.8066 28.8242 81.0352 29.1133 80.3789C29.4062 79.7188 29.8555 79.207 30.4609 78.8438C31.0664 78.4805 31.8359 78.2988 32.7695 78.2988C33.6992 78.2988 34.4629 78.4805 35.0605 78.8438C35.6621 79.207 36.1074 79.7188 36.3965 80.3789C36.6895 81.0391 36.8359 81.8145 36.8359 82.7051ZM30.584 82.7051C30.584 83.3027 30.6582 83.8184 30.8066 84.252C30.959 84.6816 31.1953 85.0137 31.5156 85.248C31.8359 85.4785 32.25 85.5938 32.7578 85.5938C33.2734 85.5938 33.6914 85.4785 34.0117 85.248C34.332 85.0137 34.5645 84.6816 34.709 84.252C34.8574 83.8184 34.9316 83.3027 34.9316 82.7051C34.9316 81.8066 34.7637 81.0996 34.4277 80.584C34.0918 80.0684 33.5391 79.8105 32.7695 79.8105C32.2578 79.8105 31.8398 79.9277 31.5156 80.1621C31.1953 80.3926 30.959 80.7246 30.8066 81.1582C30.6582 81.5879 30.584 82.1035 30.584 82.7051ZM41.916 87H40.0996V79.9453H37.7734V78.4336H44.2422V79.9453H41.916V87ZM48.2969 78.4336C49.4023 78.4336 50.209 78.6719 50.7168 79.1484C51.2246 79.6211 51.4785 80.2734 51.4785 81.1055C51.4785 81.4805 51.4219 81.8398 51.3086 82.1836C51.1953 82.5234 51.0098 82.8262 50.752 83.0918C50.498 83.3574 50.1582 83.5684 49.7324 83.7246C49.3066 83.877 48.7812 83.9531 48.1562 83.9531H47.377V87H45.5605V78.4336H48.2969ZM48.2031 79.9219H47.377V82.4648H47.9746C48.3145 82.4648 48.6094 82.4199 48.8594 82.3301C49.1094 82.2402 49.3027 82.0996 49.4395 81.9082C49.5762 81.7168 49.6445 81.4707 49.6445 81.1699C49.6445 80.748 49.5273 80.4355 49.293 80.2324C49.0586 80.0254 48.6953 79.9219 48.2031 79.9219Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 10C10.8954 10 10 10.8954 10 12V21C10 22.1046 10.8954 23 12 23H21C22.1046 23 23 22.1046 23 21V12C23 10.8954 22.1046 10 21 10H12ZM17.2129 20V14.0381H19.4004V12.8906H17.2129H15.7529H13.5996V14.0381H15.7529V20H17.2129Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22053">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -1,9 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#237453"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M46.3335 109.705C46.3335 111.123 45.9819 112.213 45.2788 112.975C44.5757 113.736 43.5679 114.117 42.2554 114.117C40.9429 114.117 39.9351 113.736 39.2319 112.975C38.5288 112.213 38.1772 111.119 38.1772 109.693C38.1772 108.268 38.5288 107.18 39.2319 106.43C39.939 105.676 40.9507 105.299 42.2671 105.299C43.5835 105.299 44.5894 105.678 45.2847 106.436C45.9839 107.193 46.3335 108.283 46.3335 109.705ZM40.0815 109.705C40.0815 110.662 40.2632 111.383 40.6265 111.867C40.9897 112.352 41.5327 112.594 42.2554 112.594C43.7046 112.594 44.4292 111.631 44.4292 109.705C44.4292 107.775 43.7085 106.811 42.2671 106.811C41.5444 106.811 40.9995 107.055 40.6323 107.543C40.2651 108.027 40.0815 108.748 40.0815 109.705ZM51.4136 114H49.5972V106.945H47.271V105.434H53.7397V106.945H51.4136V114ZM60.1147 111.621C60.1147 112.395 59.8354 113.004 59.2769 113.449C58.7222 113.895 57.9487 114.117 56.9565 114.117C56.0425 114.117 55.2339 113.945 54.5308 113.602V111.914C55.1089 112.172 55.5972 112.354 55.9956 112.459C56.3979 112.564 56.7651 112.617 57.0972 112.617C57.4956 112.617 57.8003 112.541 58.0112 112.389C58.2261 112.236 58.3335 112.01 58.3335 111.709C58.3335 111.541 58.2866 111.393 58.1929 111.264C58.0991 111.131 57.9604 111.004 57.7769 110.883C57.5972 110.762 57.228 110.568 56.6694 110.303C56.146 110.057 55.7534 109.82 55.4917 109.594C55.23 109.367 55.021 109.104 54.8647 108.803C54.7085 108.502 54.6304 108.15 54.6304 107.748C54.6304 106.99 54.8862 106.395 55.3979 105.961C55.9136 105.527 56.6245 105.311 57.5308 105.311C57.9761 105.311 58.3999 105.363 58.8022 105.469C59.2085 105.574 59.6323 105.723 60.0737 105.914L59.4878 107.326C59.0308 107.139 58.6519 107.008 58.3511 106.934C58.0542 106.859 57.7612 106.822 57.4722 106.822C57.1284 106.822 56.8647 106.902 56.6812 107.062C56.4976 107.223 56.4058 107.432 56.4058 107.689C56.4058 107.85 56.4429 107.99 56.5171 108.111C56.5913 108.229 56.7085 108.344 56.8687 108.457C57.0327 108.566 57.4175 108.766 58.0229 109.055C58.8237 109.438 59.3726 109.822 59.6694 110.209C59.9663 110.592 60.1147 111.062 60.1147 111.621Z" fill="white"/>
<path d="M78 52.74L77.71 52.59C75.5095 51.5323 73.0841 51.0277 70.6443 51.1201C68.2046 51.2124 65.8242 51.8989 63.71 53.12C61.5369 51.8865 59.089 51.2182 56.5906 51.1763C54.0922 51.1343 51.6232 51.7201 49.41 52.88H49.33C49.2989 52.9033 49.2737 52.9335 49.2564 52.9682C49.239 53.0029 49.23 53.0412 49.23 53.08C49.23 53.1489 49.2574 53.2151 49.3061 53.2638C49.3549 53.3126 49.421 53.34 49.49 53.34H49.55C50.9144 53.0837 52.3084 53.0231 53.69 53.16C57.69 53.53 61.12 54.76 63.55 57.52C63.68 57.65 63.79 57.64 63.92 57.52C67 54 71.68 52.6 76.72 53.07C77 53.07 77.28 53.13 77.55 53.18H77.88C77.9144 53.1847 77.9494 53.1815 77.9823 53.1708C78.0153 53.16 78.0455 53.1419 78.0705 53.1179C78.0955 53.0938 78.1147 53.0644 78.1268 53.0319C78.1388 52.9994 78.1433 52.9645 78.14 52.93C78.1341 52.8892 78.1182 52.8506 78.0938 52.8174C78.0694 52.7843 78.0372 52.7577 78 52.74Z" fill="white"/>
<path d="M72.16 65.21C68.1013 63.5273 63.6822 62.9007 59.3156 63.3886C54.9491 63.8765 50.7773 65.463 47.19 68C43.1649 66.2095 38.7509 65.4712 34.3622 65.8543C29.9735 66.2373 25.7541 67.7293 22.1 70.19H22.05C22.0071 70.2275 21.9725 70.2736 21.9484 70.3252C21.9243 70.3769 21.9112 70.433 21.91 70.49C21.91 70.5917 21.9497 70.6894 22.0207 70.7623C22.0917 70.8352 22.1883 70.8774 22.29 70.88H22.37C24.7999 70.1511 27.3232 69.7806 29.86 69.78C36.79 69.78 42.96 71.42 47.6 75.78C47.6698 75.8391 47.7586 75.8711 47.85 75.87C47.9075 75.8716 47.9645 75.8597 48.0166 75.8354C48.0686 75.8111 48.1143 75.775 48.15 75.73L48.37 75.42C53.09 68.97 60.87 65.79 69.53 65.79C70.15 65.79 70.76 65.79 71.37 65.85H71.92C72.0227 65.8475 72.1204 65.8056 72.193 65.733C72.2656 65.6604 72.3075 65.5626 72.31 65.46C72.3027 65.4105 72.2857 65.3629 72.26 65.32C72.2342 65.2771 72.2003 65.2397 72.16 65.21Z" fill="white"/>
<rect x="15" y="15" width="16" height="14" rx="2" fill="white"/>
<path d="M23.0898 26H21.6895V18.6348H19.1699V17.4336H25.6094V18.6348H23.0898V26Z" fill="#237453"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22033)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#237453"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M64.6167 37.8762L64.8745 38.0096C64.9076 38.0253 64.9362 38.049 64.958 38.0785C64.9797 38.1079 64.9938 38.1423 64.999 38.1786C65.002 38.2093 64.998 38.2403 64.9873 38.2692C64.9766 38.2981 64.9594 38.3243 64.9372 38.3456C64.915 38.367 64.8882 38.3831 64.8588 38.3927C64.8295 38.4022 64.7984 38.405 64.7678 38.4009H64.4744C64.4458 38.3956 64.4171 38.3901 64.3882 38.3847C64.175 38.3444 63.9557 38.303 63.7364 38.303C59.2548 37.8851 55.0934 39.13 52.3547 42.2599C52.2391 42.3667 52.1413 42.3755 52.0257 42.2599C49.865 39.8058 46.8151 38.7121 43.2583 38.3831C42.0298 38.2614 40.7903 38.3153 39.577 38.5431H39.5237C39.4624 38.5431 39.4036 38.5188 39.3602 38.4754C39.3169 38.4321 39.2925 38.3733 39.2925 38.3119C39.2925 38.2774 39.3005 38.2434 39.316 38.2125C39.3314 38.1817 39.3538 38.1548 39.3814 38.1341H39.4526C41.4206 37.1028 43.6159 36.5819 45.8375 36.6192C48.059 36.6565 50.2357 37.2507 52.168 38.3475C54.0479 37.2618 56.1645 36.6513 58.3339 36.5692C60.5033 36.4871 62.66 36.9357 64.6167 37.8762ZM48.2607 47.4782C52.1435 47.0444 56.0728 47.6016 59.6819 49.0978C59.7176 49.1243 59.7478 49.1575 59.7707 49.1957C59.7936 49.2338 59.8087 49.2761 59.8152 49.3201C59.813 49.4114 59.7757 49.4983 59.7112 49.5628C59.6466 49.6274 59.5597 49.6647 59.4684 49.6669H58.9794C58.437 49.6136 57.8946 49.6136 57.3433 49.6136H57.3433C49.6429 49.6136 42.725 52.4412 38.528 58.1765L38.3324 58.4521C38.3006 58.4922 38.26 58.5243 38.2137 58.5459C38.1674 58.5675 38.1167 58.578 38.0656 58.5766C37.9843 58.5775 37.9054 58.5491 37.8433 58.4966C33.7175 54.6197 28.2312 53.1614 22.0691 53.1614C19.8133 53.1619 17.5697 53.4914 15.409 54.1395H15.3379C15.2475 54.1372 15.1615 54.0997 15.0984 54.0349C15.0353 53.9701 15 53.8832 15 53.7928C15.0011 53.7421 15.0127 53.6922 15.0341 53.6463C15.0556 53.6003 15.0863 53.5594 15.1245 53.526H15.1689C18.4181 51.3379 22.1699 50.0113 26.0723 49.6707C29.9747 49.3301 33.8996 49.9866 37.4787 51.5787C40.6685 49.3228 44.378 47.912 48.2607 47.4782Z" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M37.2988 82.7051C37.2988 83.3652 37.2168 83.9668 37.0527 84.5098C36.8887 85.0488 36.6387 85.5137 36.3027 85.9043C35.9707 86.2949 35.5488 86.5957 35.0371 86.8066C34.5254 87.0137 33.9199 87.1172 33.2207 87.1172C32.5215 87.1172 31.916 87.0137 31.4043 86.8066C30.8926 86.5957 30.4688 86.2949 30.1328 85.9043C29.8008 85.5137 29.5527 85.0469 29.3887 84.5039C29.2246 83.9609 29.1426 83.3574 29.1426 82.6934C29.1426 81.8066 29.2871 81.0352 29.5762 80.3789C29.8691 79.7188 30.3184 79.207 30.9238 78.8438C31.5293 78.4805 32.2988 78.2988 33.2324 78.2988C34.1621 78.2988 34.9258 78.4805 35.5234 78.8438C36.125 79.207 36.5703 79.7188 36.8594 80.3789C37.1523 81.0391 37.2988 81.8145 37.2988 82.7051ZM31.0469 82.7051C31.0469 83.3027 31.1211 83.8184 31.2695 84.252C31.4219 84.6816 31.6582 85.0137 31.9785 85.248C32.2988 85.4785 32.7129 85.5938 33.2207 85.5938C33.7363 85.5938 34.1543 85.4785 34.4746 85.248C34.7949 85.0137 35.0273 84.6816 35.1719 84.252C35.3203 83.8184 35.3945 83.3027 35.3945 82.7051C35.3945 81.8066 35.2266 81.0996 34.8906 80.584C34.5547 80.0684 34.002 79.8105 33.2324 79.8105C32.7207 79.8105 32.3027 79.9277 31.9785 80.1621C31.6582 80.3926 31.4219 80.7246 31.2695 81.1582C31.1211 81.5879 31.0469 82.1035 31.0469 82.7051ZM42.3789 87H40.5625V79.9453H38.2363V78.4336H44.7051V79.9453H42.3789V87ZM51.0801 84.6211C51.0801 85.1289 50.957 85.5703 50.7109 85.9453C50.4648 86.3203 50.1055 86.6094 49.6328 86.8125C49.1641 87.0156 48.5938 87.1172 47.9219 87.1172C47.625 87.1172 47.334 87.0977 47.0488 87.0586C46.7676 87.0195 46.4961 86.9629 46.2344 86.8887C45.9766 86.8105 45.7305 86.7148 45.4961 86.6016V84.9141C45.9023 85.0938 46.3242 85.2559 46.7617 85.4004C47.1992 85.5449 47.6328 85.6172 48.0625 85.6172C48.3594 85.6172 48.5977 85.5781 48.7773 85.5C48.9609 85.4219 49.0938 85.3145 49.1758 85.1777C49.2578 85.041 49.2988 84.8848 49.2988 84.709C49.2988 84.4941 49.2266 84.3105 49.082 84.1582C48.9375 84.0059 48.7383 83.8633 48.4844 83.7305C48.2344 83.5977 47.9512 83.4551 47.6348 83.3027C47.4355 83.209 47.2188 83.0957 46.9844 82.9629C46.75 82.8262 46.5273 82.6602 46.3164 82.4648C46.1055 82.2695 45.9316 82.0332 45.7949 81.7559C45.6621 81.4746 45.5957 81.1387 45.5957 80.748C45.5957 80.2363 45.7129 79.7988 45.9473 79.4355C46.1816 79.0723 46.5156 78.7949 46.9492 78.6035C47.3867 78.4082 47.9023 78.3105 48.4961 78.3105C48.9414 78.3105 49.3652 78.3633 49.7676 78.4688C50.1738 78.5703 50.5977 78.7188 51.0391 78.9141L50.4531 80.3262C50.0586 80.166 49.7051 80.043 49.3926 79.957C49.0801 79.8672 48.7617 79.8223 48.4375 79.8223C48.2109 79.8223 48.0176 79.8594 47.8574 79.9336C47.6973 80.0039 47.5762 80.1055 47.4941 80.2383C47.4121 80.3672 47.3711 80.5176 47.3711 80.6895C47.3711 80.8926 47.4297 81.0645 47.5469 81.2051C47.668 81.3418 47.8477 81.4746 48.0859 81.6035C48.3281 81.7324 48.6289 81.8828 48.9883 82.0547C49.4258 82.2617 49.7988 82.4785 50.1074 82.7051C50.4199 82.9277 50.6602 83.1914 50.8281 83.4961C50.9961 83.7969 51.0801 84.1719 51.0801 84.6211Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 10C10.8954 10 10 10.8954 10 12V21C10 22.1046 10.8954 23 12 23H21C22.1046 23 23 22.1046 23 21V12C23 10.8954 22.1046 10 21 10H12ZM17.2129 20V14.0381H19.4004V12.8906H17.2129H15.7529H13.5996V14.0381H15.7529V20H17.2129Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22033">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

View file

@ -1,9 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#3C6D88"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M46.1636 109.705C46.1636 111.123 45.812 112.213 45.1089 112.975C44.4058 113.736 43.3979 114.117 42.0854 114.117C40.7729 114.117 39.7651 113.736 39.062 112.975C38.3589 112.213 38.0073 111.119 38.0073 109.693C38.0073 108.268 38.3589 107.18 39.062 106.43C39.769 105.676 40.7808 105.299 42.0972 105.299C43.4136 105.299 44.4194 105.678 45.1147 106.436C45.814 107.193 46.1636 108.283 46.1636 109.705ZM39.9116 109.705C39.9116 110.662 40.0933 111.383 40.4565 111.867C40.8198 112.352 41.3628 112.594 42.0854 112.594C43.5347 112.594 44.2593 111.631 44.2593 109.705C44.2593 107.775 43.5386 106.811 42.0972 106.811C41.3745 106.811 40.8296 107.055 40.4624 107.543C40.0952 108.027 39.9116 108.748 39.9116 109.705ZM51.2437 114H49.4272V106.945H47.1011V105.434H53.5698V106.945H51.2437V114ZM58.1929 114H56.3765V106.945H54.0503V105.434H60.519V106.945H58.1929V114Z" fill="white"/>
<path d="M78 52.74L77.71 52.59C75.5095 51.5323 73.0841 51.0277 70.6443 51.1201C68.2046 51.2124 65.8242 51.8989 63.71 53.12C61.5369 51.8865 59.089 51.2182 56.5906 51.1763C54.0922 51.1343 51.6232 51.7201 49.41 52.88H49.33C49.2989 52.9033 49.2737 52.9335 49.2564 52.9682C49.239 53.0029 49.23 53.0412 49.23 53.08C49.23 53.1489 49.2574 53.2151 49.3061 53.2638C49.3549 53.3126 49.421 53.34 49.49 53.34H49.55C50.9144 53.0837 52.3084 53.0231 53.69 53.16C57.69 53.53 61.12 54.76 63.55 57.52C63.68 57.65 63.79 57.64 63.92 57.52C67 54 71.68 52.6 76.72 53.07C77 53.07 77.28 53.13 77.55 53.18H77.88C77.9144 53.1847 77.9494 53.1815 77.9823 53.1708C78.0153 53.16 78.0455 53.1419 78.0705 53.1179C78.0955 53.0938 78.1147 53.0644 78.1268 53.0319C78.1388 52.9994 78.1433 52.9645 78.14 52.93C78.1341 52.8892 78.1182 52.8506 78.0938 52.8174C78.0694 52.7843 78.0372 52.7577 78 52.74Z" fill="white"/>
<path d="M72.1602 65.21C68.1014 63.5273 63.6824 62.9007 59.3158 63.3886C54.9492 63.8765 50.7775 65.463 47.1902 68C43.165 66.2095 38.751 65.4712 34.3623 65.8543C29.9736 66.2373 25.7542 67.7293 22.1002 70.19H22.0502C22.0072 70.2275 21.9726 70.2736 21.9485 70.3252C21.9244 70.3769 21.9114 70.433 21.9102 70.49C21.9101 70.5917 21.9498 70.6894 22.0208 70.7623C22.0918 70.8352 22.1885 70.8774 22.2902 70.88H22.3702C24.8001 70.1511 27.3233 69.7806 29.8602 69.78C36.7902 69.78 42.9602 71.42 47.6002 75.78C47.6699 75.8391 47.7587 75.8711 47.8502 75.87C47.9076 75.8716 47.9646 75.8597 48.0167 75.8354C48.0688 75.8111 48.1145 75.775 48.1502 75.73L48.3702 75.42C53.0902 68.97 60.8702 65.79 69.5302 65.79C70.1502 65.79 70.7602 65.79 71.3702 65.85H71.9202C72.0228 65.8475 72.1205 65.8056 72.1931 65.733C72.2657 65.6604 72.3076 65.5626 72.3102 65.46C72.3028 65.4105 72.2858 65.3629 72.2601 65.32C72.2343 65.2771 72.2004 65.2397 72.1602 65.21Z" fill="white"/>
<rect x="15" y="15" width="16" height="14" rx="2" fill="white"/>
<path d="M23.0898 26H21.6895V18.6348H19.1699V17.4336H25.6094V18.6348H23.0898V26Z" fill="#3C6D88"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22029)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#3C6D88"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M64.6167 37.8762L64.8745 38.0096C64.9076 38.0253 64.9362 38.049 64.958 38.0785C64.9797 38.1079 64.9938 38.1423 64.999 38.1786C65.002 38.2093 64.998 38.2403 64.9873 38.2692C64.9766 38.2981 64.9594 38.3243 64.9372 38.3456C64.915 38.367 64.8882 38.3831 64.8588 38.3927C64.8295 38.4022 64.7984 38.405 64.7678 38.4009H64.4744C64.4458 38.3956 64.4171 38.3901 64.3882 38.3847C64.175 38.3444 63.9557 38.303 63.7364 38.303C59.2548 37.8851 55.0934 39.13 52.3547 42.2599C52.2391 42.3667 52.1413 42.3755 52.0257 42.2599C49.865 39.8058 46.8151 38.7121 43.2583 38.3831C42.0298 38.2614 40.7903 38.3153 39.577 38.5431H39.5237C39.4624 38.5431 39.4036 38.5188 39.3602 38.4754C39.3169 38.4321 39.2925 38.3733 39.2925 38.3119C39.2925 38.2774 39.3005 38.2434 39.316 38.2125C39.3314 38.1817 39.3538 38.1548 39.3814 38.1341H39.4526C41.4206 37.1028 43.6159 36.5819 45.8375 36.6192C48.059 36.6565 50.2357 37.2507 52.168 38.3475C54.0479 37.2618 56.1645 36.6513 58.3339 36.5692C60.5033 36.4871 62.66 36.9357 64.6167 37.8762ZM48.2607 47.4782C52.1435 47.0444 56.0728 47.6016 59.6819 49.0978C59.7176 49.1243 59.7478 49.1575 59.7707 49.1957C59.7936 49.2338 59.8087 49.2761 59.8152 49.3201C59.813 49.4114 59.7757 49.4983 59.7112 49.5628C59.6466 49.6274 59.5597 49.6647 59.4684 49.6669H58.9794C58.437 49.6136 57.8946 49.6136 57.3433 49.6136H57.3433C49.6429 49.6136 42.725 52.4412 38.528 58.1765L38.3324 58.4521C38.3006 58.4922 38.26 58.5243 38.2137 58.5459C38.1674 58.5675 38.1167 58.578 38.0656 58.5766C37.9843 58.5775 37.9054 58.5491 37.8433 58.4966C33.7175 54.6197 28.2312 53.1614 22.0691 53.1614C19.8133 53.1619 17.5697 53.4914 15.409 54.1395H15.3379C15.2475 54.1372 15.1615 54.0997 15.0984 54.0349C15.0353 53.9701 15 53.8832 15 53.7928C15.0011 53.7421 15.0127 53.6922 15.0341 53.6463C15.0556 53.6003 15.0863 53.5594 15.1245 53.526H15.1689C18.4181 51.3379 22.1699 50.0113 26.0723 49.6707C29.9747 49.3301 33.8996 49.9866 37.4787 51.5787C40.6685 49.3228 44.378 47.912 48.2607 47.4782Z" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M37.1289 82.7051C37.1289 83.3652 37.0469 83.9668 36.8828 84.5098C36.7188 85.0488 36.4688 85.5137 36.1328 85.9043C35.8008 86.2949 35.3789 86.5957 34.8672 86.8066C34.3555 87.0137 33.75 87.1172 33.0508 87.1172C32.3516 87.1172 31.7461 87.0137 31.2344 86.8066C30.7227 86.5957 30.2988 86.2949 29.9629 85.9043C29.6309 85.5137 29.3828 85.0469 29.2188 84.5039C29.0547 83.9609 28.9727 83.3574 28.9727 82.6934C28.9727 81.8066 29.1172 81.0352 29.4062 80.3789C29.6992 79.7188 30.1484 79.207 30.7539 78.8438C31.3594 78.4805 32.1289 78.2988 33.0625 78.2988C33.9922 78.2988 34.7559 78.4805 35.3535 78.8438C35.9551 79.207 36.4004 79.7188 36.6895 80.3789C36.9824 81.0391 37.1289 81.8145 37.1289 82.7051ZM30.877 82.7051C30.877 83.3027 30.9512 83.8184 31.0996 84.252C31.252 84.6816 31.4883 85.0137 31.8086 85.248C32.1289 85.4785 32.543 85.5938 33.0508 85.5938C33.5664 85.5938 33.9844 85.4785 34.3047 85.248C34.625 85.0137 34.8574 84.6816 35.002 84.252C35.1504 83.8184 35.2246 83.3027 35.2246 82.7051C35.2246 81.8066 35.0566 81.0996 34.7207 80.584C34.3848 80.0684 33.832 79.8105 33.0625 79.8105C32.5508 79.8105 32.1328 79.9277 31.8086 80.1621C31.4883 80.3926 31.252 80.7246 31.0996 81.1582C30.9512 81.5879 30.877 82.1035 30.877 82.7051ZM42.209 87H40.3926V79.9453H38.0664V78.4336H44.5352V79.9453H42.209V87ZM49.1582 87H47.3418V79.9453H45.0156V78.4336H51.4844V79.9453H49.1582V87Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 10C10.8954 10 10 10.8954 10 12V21C10 22.1046 10.8954 23 12 23H21C22.1046 23 23 22.1046 23 21V12C23 10.8954 22.1046 10 21 10H12ZM17.2129 20V14.0381H19.4004V12.8906H17.2129H15.7529H13.5996V14.0381H15.7529V20H17.2129Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22029">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -1,11 +1,13 @@
<svg style="position: absolute; width: 0; height: 0; overflow: hidden;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<symbol id="svg-format-oxps">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#51968F"/>
<circle cx="44.5" cy="62.5" r="2.5" fill="white"/>
<circle cx="54.5" cy="62.5" r="2.5" fill="white"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M42.894 109.705C42.894 111.123 42.5425 112.213 41.8394 112.975C41.1362 113.736 40.1284 114.117 38.8159 114.117C37.5034 114.117 36.4956 113.736 35.7925 112.975C35.0894 112.213 34.7378 111.119 34.7378 109.693C34.7378 108.268 35.0894 107.18 35.7925 106.43C36.4995 105.676 37.5112 105.299 38.8276 105.299C40.144 105.299 41.1499 105.678 41.8452 106.436C42.5444 107.193 42.894 108.283 42.894 109.705ZM36.6421 109.705C36.6421 110.662 36.8237 111.383 37.187 111.867C37.5503 112.352 38.0933 112.594 38.8159 112.594C40.2651 112.594 40.9897 111.631 40.9897 109.705C40.9897 107.775 40.269 106.811 38.8276 106.811C38.105 106.811 37.5601 107.055 37.1929 107.543C36.8257 108.027 36.6421 108.748 36.6421 109.705ZM51.5952 114H49.521L47.5288 110.76L45.5366 114H43.5913L46.4331 109.582L43.7729 105.434H45.7769L47.6226 108.516L49.4331 105.434H51.3901L48.7007 109.682L51.5952 114ZM54.4897 109.465H55.0874C55.646 109.465 56.064 109.355 56.3413 109.137C56.6187 108.914 56.7573 108.592 56.7573 108.17C56.7573 107.744 56.6401 107.43 56.4058 107.227C56.1753 107.023 55.812 106.922 55.3159 106.922H54.4897V109.465ZM58.5913 108.105C58.5913 109.027 58.3022 109.732 57.7241 110.221C57.1499 110.709 56.3315 110.953 55.269 110.953H54.4897V114H52.6733V105.434H55.4097C56.4487 105.434 57.2378 105.658 57.7769 106.107C58.3198 106.553 58.5913 107.219 58.5913 108.105ZM65.2651 111.621C65.2651 112.395 64.9858 113.004 64.4272 113.449C63.8726 113.895 63.0991 114.117 62.1069 114.117C61.1929 114.117 60.3843 113.945 59.6812 113.602V111.914C60.2593 112.172 60.7476 112.354 61.146 112.459C61.5483 112.564 61.9155 112.617 62.2476 112.617C62.646 112.617 62.9507 112.541 63.1616 112.389C63.3765 112.236 63.4839 112.01 63.4839 111.709C63.4839 111.541 63.437 111.393 63.3433 111.264C63.2495 111.131 63.1108 111.004 62.9272 110.883C62.7476 110.762 62.3784 110.568 61.8198 110.303C61.2964 110.057 60.9038 109.82 60.6421 109.594C60.3804 109.367 60.1714 109.104 60.0151 108.803C59.8589 108.502 59.7808 108.15 59.7808 107.748C59.7808 106.99 60.0366 106.395 60.5483 105.961C61.064 105.527 61.7749 105.311 62.6812 105.311C63.1265 105.311 63.5503 105.363 63.9526 105.469C64.3589 105.574 64.7827 105.723 65.2241 105.914L64.6382 107.326C64.1812 107.139 63.8022 107.008 63.5015 106.934C63.2046 106.859 62.9116 106.822 62.6226 106.822C62.2788 106.822 62.0151 106.902 61.8315 107.062C61.6479 107.223 61.5562 107.432 61.5562 107.689C61.5562 107.85 61.5933 107.99 61.6675 108.111C61.7417 108.229 61.8589 108.344 62.019 108.457C62.1831 108.566 62.5679 108.766 63.1733 109.055C63.9741 109.438 64.5229 109.822 64.8198 110.209C65.1167 110.592 65.2651 111.062 65.2651 111.621Z" fill="white"/>
<path d="M62 53V57.8L75.5 62.5L62 67.2V72L80 64.2V60.8L62 53Z" fill="white"/>
<path d="M19 64.2L37 72V67.2L23.5 62.5L37 57.8V53L19 60.8V64.2Z" fill="white"/>
</symbol>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22048)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#51968F"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M33.0039 82.7051C33.0039 83.3652 32.9219 83.9668 32.7578 84.5098C32.5938 85.0488 32.3438 85.5137 32.0078 85.9043C31.6758 86.2949 31.2539 86.5957 30.7422 86.8066C30.2305 87.0137 29.625 87.1172 28.9258 87.1172C28.2266 87.1172 27.6211 87.0137 27.1094 86.8066C26.5977 86.5957 26.1738 86.2949 25.8379 85.9043C25.5059 85.5137 25.2578 85.0469 25.0938 84.5039C24.9297 83.9609 24.8477 83.3574 24.8477 82.6934C24.8477 81.8066 24.9922 81.0352 25.2812 80.3789C25.5742 79.7188 26.0234 79.207 26.6289 78.8438C27.2344 78.4805 28.0039 78.2988 28.9375 78.2988C29.8672 78.2988 30.6309 78.4805 31.2285 78.8438C31.8301 79.207 32.2754 79.7188 32.5645 80.3789C32.8574 81.0391 33.0039 81.8145 33.0039 82.7051ZM26.752 82.7051C26.752 83.3027 26.8262 83.8184 26.9746 84.252C27.127 84.6816 27.3633 85.0137 27.6836 85.248C28.0039 85.4785 28.418 85.5938 28.9258 85.5938C29.4414 85.5938 29.8594 85.4785 30.1797 85.248C30.5 85.0137 30.7324 84.6816 30.877 84.252C31.0254 83.8184 31.0996 83.3027 31.0996 82.7051C31.0996 81.8066 30.9316 81.0996 30.5957 80.584C30.2598 80.0684 29.707 79.8105 28.9375 79.8105C28.4258 79.8105 28.0078 79.9277 27.6836 80.1621C27.3633 80.3926 27.127 80.7246 26.9746 81.1582C26.8262 81.5879 26.752 82.1035 26.752 82.7051ZM41.7051 87H39.6309L37.6387 83.7598L35.6465 87H33.7012L36.543 82.582L33.8828 78.4336H35.8867L37.7324 81.5156L39.543 78.4336H41.5L38.8105 82.6816L41.7051 87ZM45.5195 78.4336C46.625 78.4336 47.4316 78.6719 47.9395 79.1484C48.4473 79.6211 48.7012 80.2734 48.7012 81.1055C48.7012 81.4805 48.6445 81.8398 48.5312 82.1836C48.418 82.5234 48.2324 82.8262 47.9746 83.0918C47.7207 83.3574 47.3809 83.5684 46.9551 83.7246C46.5293 83.877 46.0039 83.9531 45.3789 83.9531H44.5996V87H42.7832V78.4336H45.5195ZM45.4258 79.9219H44.5996V82.4648H45.1973C45.5371 82.4648 45.832 82.4199 46.082 82.3301C46.332 82.2402 46.5254 82.0996 46.6621 81.9082C46.7988 81.7168 46.8672 81.4707 46.8672 81.1699C46.8672 80.748 46.75 80.4355 46.5156 80.2324C46.2812 80.0254 45.918 79.9219 45.4258 79.9219ZM55.375 84.6211C55.375 85.1289 55.252 85.5703 55.0059 85.9453C54.7598 86.3203 54.4004 86.6094 53.9277 86.8125C53.459 87.0156 52.8887 87.1172 52.2168 87.1172C51.9199 87.1172 51.6289 87.0977 51.3438 87.0586C51.0625 87.0195 50.791 86.9629 50.5293 86.8887C50.2715 86.8105 50.0254 86.7148 49.791 86.6016V84.9141C50.1973 85.0938 50.6191 85.2559 51.0566 85.4004C51.4941 85.5449 51.9277 85.6172 52.3574 85.6172C52.6543 85.6172 52.8926 85.5781 53.0723 85.5C53.2559 85.4219 53.3887 85.3145 53.4707 85.1777C53.5527 85.041 53.5938 84.8848 53.5938 84.709C53.5938 84.4941 53.5215 84.3105 53.377 84.1582C53.2324 84.0059 53.0332 83.8633 52.7793 83.7305C52.5293 83.5977 52.2461 83.4551 51.9297 83.3027C51.7305 83.209 51.5137 83.0957 51.2793 82.9629C51.0449 82.8262 50.8223 82.6602 50.6113 82.4648C50.4004 82.2695 50.2266 82.0332 50.0898 81.7559C49.957 81.4746 49.8906 81.1387 49.8906 80.748C49.8906 80.2363 50.0078 79.7988 50.2422 79.4355C50.4766 79.0723 50.8105 78.7949 51.2441 78.6035C51.6816 78.4082 52.1973 78.3105 52.791 78.3105C53.2363 78.3105 53.6602 78.3633 54.0625 78.4688C54.4688 78.5703 54.8926 78.7188 55.334 78.9141L54.748 80.3262C54.3535 80.166 54 80.043 53.6875 79.957C53.375 79.8672 53.0566 79.8223 52.7324 79.8223C52.5059 79.8223 52.3125 79.8594 52.1523 79.9336C51.9922 80.0039 51.8711 80.1055 51.7891 80.2383C51.707 80.3672 51.666 80.5176 51.666 80.6895C51.666 80.8926 51.7246 81.0645 51.8418 81.2051C51.9629 81.3418 52.1426 81.4746 52.3809 81.6035C52.623 81.7324 52.9238 81.8828 53.2832 82.0547C53.7207 82.2617 54.0938 82.4785 54.4023 82.7051C54.7148 82.9277 54.9551 83.1914 55.123 83.4961C55.291 83.7969 55.375 84.1719 55.375 84.6211Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M30 45.7895V42L16 48.1579V50.8421L30 57V53.2105L19.5 49.5L30 45.7895ZM36 51.5C37.1046 51.5 38 50.6046 38 49.5C38 48.3954 37.1046 47.5 36 47.5C34.8954 47.5 34 48.3954 34 49.5C34 50.6046 34.8954 51.5 36 51.5ZM46 49.5C46 50.6046 45.1046 51.5 44 51.5C42.8954 51.5 42 50.6046 42 49.5C42 48.3954 42.8954 47.5 44 47.5C45.1046 47.5 46 48.3954 46 49.5ZM50 45.7895V42L64 48.1579V50.8421L50 57V53.2105L60.5 49.5L50 45.7895Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22048">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View file

@ -1,6 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#BA4C3F"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M41.3945 109.465H41.9922C42.5508 109.465 42.9688 109.355 43.2461 109.137C43.5234 108.914 43.6621 108.592 43.6621 108.17C43.6621 107.744 43.5449 107.43 43.3105 107.227C43.0801 107.023 42.7168 106.922 42.2207 106.922H41.3945V109.465ZM45.4961 108.105C45.4961 109.027 45.207 109.732 44.6289 110.221C44.0547 110.709 43.2363 110.953 42.1738 110.953H41.3945V114H39.5781V105.434H42.3145C43.3535 105.434 44.1426 105.658 44.6816 106.107C45.2246 106.553 45.4961 107.219 45.4961 108.105ZM54.2207 109.635C54.2207 111.045 53.8184 112.125 53.0137 112.875C52.2129 113.625 51.0547 114 49.5391 114H47.1133V105.434H49.8027C51.2012 105.434 52.2871 105.803 53.0605 106.541C53.834 107.279 54.2207 108.311 54.2207 109.635ZM52.334 109.682C52.334 107.842 51.5215 106.922 49.8965 106.922H48.9297V112.5H49.709C51.459 112.5 52.334 111.561 52.334 109.682ZM57.7832 114H55.9961V105.434H60.9062V106.922H57.7832V109.131H60.6895V110.613H57.7832V114Z" fill="white"/>
<path d="M40.42 66.69C42 63.55 43.84 60 45.3 56.46L45.88 55.06C43.98 47.81 42.83 41.99 43.88 38.23C44.0939 37.7244 44.463 37.2999 44.9339 37.0177C45.4048 36.7355 45.9532 36.6102 46.5 36.66H47.38C49.04 36.66 49.82 38.75 49.91 39.57C49.9251 40.8132 49.7635 42.0523 49.43 43.25C49.5084 41.9746 49.3176 40.6969 48.87 39.5C48.16 38 47.5 37.1 46.91 37C46.7002 37.1686 46.5304 37.3816 46.4128 37.6236C46.2952 37.8657 46.2328 38.1309 46.23 38.4C46.0668 39.4553 45.9899 40.5222 46 41.59C46.0646 44.777 46.5522 47.9414 47.45 51C47.63 50.46 47.79 50 47.93 49.46C48.13 48.7 49.42 43.65 49.42 43.65C49.42 43.65 49.09 50.37 48.64 52.41C48.54 52.84 48.43 53.27 48.32 53.7C49.8434 58.0628 52.3675 62.0082 55.69 65.22C57.0163 66.3414 58.4616 67.3138 60 68.12C62.8629 67.6867 65.7544 67.4694 68.65 67.47C71.93 67.47 74.34 68 75.31 68.96C75.7339 69.4112 75.9791 70.0013 76 70.62C75.9819 70.9567 75.935 71.2913 75.86 71.62C75.86 71.44 75.86 70.62 73.26 69.74C71.19 69.08 67.26 69.1 62.65 69.59C68.04 72.23 73.29 73.59 74.95 72.75C75.3001 72.5168 75.605 72.222 75.85 71.88C75.7313 72.4478 75.5606 73.0035 75.34 73.54C75.013 73.9615 74.5617 74.2694 74.05 74.42C71.42 75.13 64.59 73.5 58.63 70.1C51.9034 71.1211 45.2713 72.6896 38.8 74.79C33 84.88 28.71 89.51 25.19 87.75L23.9 87.1C23.6628 86.9099 23.4889 86.6523 23.4014 86.3612C23.3139 86.0701 23.3169 85.7593 23.41 85.47C23.82 83.47 26.34 80.47 31.41 77.41C31.96 77.08 34.41 75.8 34.41 75.8C34.41 75.8 32.62 77.54 32.2 77.88C28.2 81.19 25.2 85.35 25.25 86.97V87.11C28.68 86.62 33.82 79.63 40.44 66.69H40.42ZM42.54 67.76C41.43 69.84 40.35 71.76 39.35 73.55C44.8642 71.3408 50.5959 69.7185 56.45 68.71C55.69 68.18 54.96 67.63 54.26 67.04C51.2254 64.4414 48.7547 61.2492 47 57.66C45.7253 61.1258 44.2151 64.5003 42.48 67.76" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22047)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#BA4C3F"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M32.3125 78.4336C33.418 78.4336 34.2246 78.6719 34.7324 79.1484C35.2402 79.6211 35.4941 80.2734 35.4941 81.1055C35.4941 81.4805 35.4375 81.8398 35.3242 82.1836C35.2109 82.5234 35.0254 82.8262 34.7676 83.0918C34.5137 83.3574 34.1738 83.5684 33.748 83.7246C33.3223 83.877 32.7969 83.9531 32.1719 83.9531H31.3926V87H29.5762V78.4336H32.3125ZM32.2188 79.9219H31.3926V82.4648H31.9902C32.3301 82.4648 32.625 82.4199 32.875 82.3301C33.125 82.2402 33.3184 82.0996 33.4551 81.9082C33.5918 81.7168 33.6602 81.4707 33.6602 81.1699C33.6602 80.748 33.543 80.4355 33.3086 80.2324C33.0742 80.0254 32.7109 79.9219 32.2188 79.9219ZM44.2188 82.6348C44.2188 83.5996 44.0332 84.4062 43.6621 85.0547C43.2949 85.6992 42.7617 86.1855 42.0625 86.5137C41.3633 86.8379 40.5215 87 39.5371 87H37.1113V78.4336H39.8008C40.6992 78.4336 41.4785 78.5938 42.1387 78.9141C42.7988 79.2305 43.3105 79.7012 43.6738 80.3262C44.0371 80.9473 44.2188 81.7168 44.2188 82.6348ZM42.332 82.6816C42.332 82.0488 42.2383 81.5293 42.0508 81.123C41.8672 80.7129 41.5938 80.4102 41.2305 80.2148C40.8711 80.0195 40.4258 79.9219 39.8945 79.9219H38.9277V85.5H39.707C40.5938 85.5 41.252 85.2637 41.6816 84.791C42.1152 84.3184 42.332 83.6152 42.332 82.6816ZM47.7812 87H45.9941V78.4336H50.9043V79.9219H47.7812V82.1309H50.6875V83.6133H47.7812V87Z" fill="white"/>
<path d="M34.0286 52.2618C35.0487 50.2485 36.2367 47.9722 37.1793 45.7024L37.5538 44.8048C36.3271 40.1561 35.5846 36.4244 36.2625 34.0135C36.4006 33.6893 36.6389 33.4171 36.9429 33.2362C37.247 33.0552 37.6011 32.9749 37.954 33.0068H38.5222C39.5939 33.0068 40.0975 34.3469 40.1556 34.8727C40.1654 35.6698 40.0611 36.4643 39.8457 37.2323C39.8963 36.4145 39.7732 35.5953 39.4842 34.8278C39.0258 33.866 38.5997 33.289 38.2187 33.2248C38.0833 33.3329 37.9737 33.4695 37.8977 33.6247C37.8218 33.7799 37.7815 33.95 37.7797 34.1225C37.6744 34.7992 37.6247 35.4832 37.6312 36.1679C37.6729 38.2114 37.9877 40.2403 38.5674 42.2015C38.6836 41.8553 38.7869 41.5603 38.8773 41.2141C39.0064 40.7268 39.8393 37.4888 39.8393 37.4888C39.8393 37.4888 39.6262 41.7976 39.3357 43.1056C39.2711 43.3813 39.2001 43.657 39.1291 43.9327C40.1126 46.7301 41.7422 49.2599 43.8873 51.3193C44.7436 52.0383 45.6768 52.6618 46.67 53.1787C48.5184 52.9009 50.3852 52.7616 52.2547 52.7619C54.3723 52.7619 55.9283 53.1018 56.5545 53.7173C56.8282 54.0066 56.9865 54.385 57 54.7817C56.9883 54.9976 56.9581 55.2121 56.9096 55.4229C56.9096 55.3075 56.9096 54.7817 55.231 54.2174C53.8945 53.7943 51.3572 53.8071 48.3809 54.1213C51.8608 55.814 55.2504 56.686 56.3221 56.1474C56.5481 55.9979 56.745 55.8089 56.9032 55.5896C56.8265 55.9537 56.7163 56.31 56.5739 56.654C56.3628 56.9242 56.0714 57.1217 55.741 57.2182C54.043 57.6735 49.6334 56.6283 45.7855 54.4483C41.4426 55.103 37.1608 56.1087 32.9827 57.4555C29.2381 63.9251 26.4684 66.8938 24.1958 65.7653L23.3629 65.3485C23.2097 65.2267 23.0975 65.0615 23.041 64.8748C22.9845 64.6882 22.9864 64.4889 23.0465 64.3034C23.3112 63.021 24.9382 61.0974 28.2115 59.1354C28.5666 58.9238 30.1484 58.1031 30.1484 58.1031C30.1484 58.1031 28.9928 59.2187 28.7216 59.4367C26.1391 61.5591 24.2022 64.2264 24.2345 65.2652V65.3549C26.449 65.0408 29.7675 60.5588 34.0415 52.2618H34.0286ZM35.3974 52.9479C34.6807 54.2816 33.9834 55.5127 33.3378 56.6604C36.898 55.2439 40.5984 54.2037 44.378 53.557C43.8873 53.2172 43.416 52.8645 42.9641 52.4862C41.0049 50.82 39.4097 48.7732 38.2769 46.4719C37.4539 48.6941 36.4789 50.8578 35.3586 52.9479" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22047">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View file

@ -1,8 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#BA4C3F"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M34.8945 109.465H35.4922C36.0508 109.465 36.4688 109.355 36.7461 109.137C37.0234 108.914 37.1621 108.592 37.1621 108.17C37.1621 107.744 37.0449 107.43 36.8105 107.227C36.5801 107.023 36.2168 106.922 35.7207 106.922H34.8945V109.465ZM38.9961 108.105C38.9961 109.027 38.707 109.732 38.1289 110.221C37.5547 110.709 36.7363 110.953 35.6738 110.953H34.8945V114H33.0781V105.434H35.8145C36.8535 105.434 37.6426 105.658 38.1816 106.107C38.7246 106.553 38.9961 107.219 38.9961 108.105ZM47.7207 109.635C47.7207 111.045 47.3184 112.125 46.5137 112.875C45.7129 113.625 44.5547 114 43.0391 114H40.6133V105.434H43.3027C44.7012 105.434 45.7871 105.803 46.5605 106.541C47.334 107.279 47.7207 108.311 47.7207 109.635ZM45.834 109.682C45.834 107.842 45.0215 106.922 43.3965 106.922H42.4297V112.5H43.209C44.959 112.5 45.834 111.561 45.834 109.682ZM51.2832 114H49.4961V105.434H54.4062V106.922H51.2832V109.131H54.1895V110.613H51.2832V114ZM59.9023 105.434L56.709 114H55.0859L58.2793 105.434H59.9023ZM66.2832 114L65.6621 111.961H62.5391L61.918 114H59.9609L62.9844 105.398H65.2051L68.2402 114H66.2832ZM65.2285 110.438C64.6543 108.59 64.3301 107.545 64.2559 107.303C64.1855 107.061 64.1348 106.869 64.1035 106.729C63.9746 107.229 63.6055 108.465 62.9961 110.438H65.2285Z" fill="white"/>
<path d="M40.42 66.69C42 63.55 43.84 60 45.3 56.46L45.88 55.06C43.98 47.81 42.83 41.99 43.88 38.23C44.0939 37.7244 44.463 37.2999 44.9339 37.0177C45.4048 36.7355 45.9532 36.6102 46.5 36.66H47.38C49.04 36.66 49.82 38.75 49.91 39.57C49.9251 40.8132 49.7635 42.0523 49.43 43.25C49.5084 41.9745 49.3176 40.6969 48.87 39.5C48.16 38 47.5 37.1 46.91 37C46.7002 37.1685 46.5304 37.3815 46.4128 37.6236C46.2952 37.8657 46.2328 38.1309 46.23 38.4C46.0668 39.4553 45.9899 40.5222 46 41.59C46.0646 44.777 46.5522 47.9413 47.45 51C47.63 50.46 47.79 50 47.93 49.46C48.13 48.7 49.42 43.65 49.42 43.65C49.42 43.65 49.09 50.37 48.64 52.41C48.54 52.84 48.43 53.27 48.32 53.7C49.8434 58.0628 52.3675 62.0082 55.69 65.22C57.0163 66.3413 58.4616 67.3138 60 68.12C62.8629 67.6867 65.7544 67.4694 68.65 67.47C71.93 67.47 74.34 68 75.31 68.96C75.7339 69.4112 75.9791 70.0012 76 70.62C75.9819 70.9567 75.935 71.2913 75.86 71.62C75.86 71.44 75.86 70.62 73.26 69.74C71.19 69.08 67.26 69.1 62.65 69.59C68.04 72.23 73.29 73.59 74.95 72.75C75.3001 72.5168 75.605 72.222 75.85 71.88C75.7313 72.4478 75.5606 73.0035 75.34 73.54C75.013 73.9615 74.5617 74.2694 74.05 74.42C71.42 75.13 64.59 73.5 58.63 70.1C51.9034 71.121 45.2713 72.6896 38.8 74.79C33 84.88 28.71 89.51 25.19 87.75L23.9 87.1C23.6628 86.9099 23.4889 86.6523 23.4014 86.3612C23.3139 86.0701 23.3169 85.7593 23.41 85.47C23.82 83.47 26.34 80.47 31.41 77.41C31.96 77.08 34.41 75.8 34.41 75.8C34.41 75.8 32.62 77.54 32.2 77.88C28.2 81.19 25.2 85.35 25.25 86.97V87.11C28.68 86.62 33.82 79.63 40.44 66.69H40.42ZM42.54 67.76C41.43 69.84 40.35 71.76 39.35 73.55C44.8642 71.3408 50.5959 69.7185 56.45 68.71C55.69 68.18 54.96 67.63 54.26 67.04C51.2254 64.4414 48.7547 61.2492 47 57.66C45.7253 61.1257 44.2151 64.5003 42.48 67.76" fill="white"/>
<rect x="15" y="15" width="16" height="14" rx="2" fill="white"/>
<path d="M25.4453 26L24.5898 23.6211H21.3145L20.4766 26H19L22.2051 17.3984H23.7285L26.9336 26H25.4453ZM24.2207 22.4141L23.418 20.082C23.3594 19.9258 23.2773 19.6797 23.1719 19.3438C23.0703 19.0078 23 18.7617 22.9609 18.6055C22.8555 19.0859 22.7012 19.6113 22.498 20.1816L21.7246 22.4141H24.2207Z" fill="#BA4C3F"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22042)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#BA4C3F"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 10C10.8954 10 10 10.8954 10 12V21C10 22.1046 10.8954 23 12 23H21C22.1046 23 23 22.1046 23 21V12C23 10.8954 22.1046 10 21 10H12ZM16.8076 12.8906H17.1787L19.835 20H18.2725L17.7794 18.501H15.2242L14.7324 20H13.1748L15.8164 12.8906H16.1777H16.8076ZM15.6007 17.3535H17.402L16.5002 14.6118L15.6007 17.3535Z" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M25.6914 78.4336C26.7969 78.4336 27.6035 78.6719 28.1113 79.1484C28.6191 79.6211 28.873 80.2734 28.873 81.1055C28.873 81.4805 28.8164 81.8398 28.7031 82.1836C28.5898 82.5234 28.4043 82.8262 28.1465 83.0918C27.8926 83.3574 27.5527 83.5684 27.127 83.7246C26.7012 83.877 26.1758 83.9531 25.5508 83.9531H24.7715V87H22.9551V78.4336H25.6914ZM25.5977 79.9219H24.7715V82.4648H25.3691C25.709 82.4648 26.0039 82.4199 26.2539 82.3301C26.5039 82.2402 26.6973 82.0996 26.834 81.9082C26.9707 81.7168 27.0391 81.4707 27.0391 81.1699C27.0391 80.748 26.9219 80.4355 26.6875 80.2324C26.4531 80.0254 26.0898 79.9219 25.5977 79.9219ZM37.5977 82.6348C37.5977 83.5996 37.4121 84.4062 37.041 85.0547C36.6738 85.6992 36.1406 86.1855 35.4414 86.5137C34.7422 86.8379 33.9004 87 32.916 87H30.4902V78.4336H33.1797C34.0781 78.4336 34.8574 78.5938 35.5176 78.9141C36.1777 79.2305 36.6895 79.7012 37.0527 80.3262C37.416 80.9473 37.5977 81.7168 37.5977 82.6348ZM35.7109 82.6816C35.7109 82.0488 35.6172 81.5293 35.4297 81.123C35.2461 80.7129 34.9727 80.4102 34.6094 80.2148C34.25 80.0195 33.8047 79.9219 33.2734 79.9219H32.3066V85.5H33.0859C33.9727 85.5 34.6309 85.2637 35.0605 84.791C35.4941 84.3184 35.7109 83.6152 35.7109 82.6816ZM41.1602 87H39.373V78.4336H44.2832V79.9219H41.1602V82.1309H44.0664V83.6133H41.1602V87ZM49.7793 78.4336L46.5859 87H44.9629L48.1562 78.4336H49.7793ZM56.1602 87L55.5391 84.9609H52.416L51.7949 87H49.8379L52.8613 78.3984H55.082L58.1172 87H56.1602ZM55.1055 83.4375L54.4844 81.4453C54.4453 81.3125 54.3926 81.1426 54.3262 80.9355C54.2637 80.7246 54.1992 80.5117 54.1328 80.2969C54.0703 80.0781 54.0195 79.8887 53.9805 79.7285C53.9414 79.8887 53.8867 80.0879 53.8164 80.3262C53.75 80.5605 53.6855 80.7832 53.623 80.9941C53.5605 81.2051 53.5156 81.3555 53.4883 81.4453L52.873 83.4375H55.1055Z" fill="white"/>
<path d="M34.0286 52.2618C35.0487 50.2485 36.2367 47.9722 37.1793 45.7024L37.5538 44.8048C36.3271 40.1561 35.5846 36.4244 36.2625 34.0135C36.4006 33.6893 36.6389 33.4171 36.9429 33.2362C37.247 33.0552 37.6011 32.9749 37.954 33.0068H38.5222C39.5939 33.0068 40.0975 34.3469 40.1556 34.8727C40.1654 35.6698 40.0611 36.4643 39.8457 37.2323C39.8963 36.4145 39.7732 35.5953 39.4842 34.8278C39.0258 33.866 38.5997 33.289 38.2187 33.2248C38.0833 33.3329 37.9737 33.4695 37.8977 33.6247C37.8218 33.7799 37.7815 33.95 37.7797 34.1225C37.6744 34.7992 37.6247 35.4832 37.6312 36.1679C37.6729 38.2114 37.9877 40.2403 38.5674 42.2015C38.6836 41.8553 38.7869 41.5603 38.8773 41.2141C39.0064 40.7268 39.8393 37.4888 39.8393 37.4888C39.8393 37.4888 39.6262 41.7976 39.3357 43.1056C39.2711 43.3813 39.2001 43.657 39.1291 43.9327C40.1126 46.7301 41.7422 49.2599 43.8873 51.3193C44.7436 52.0383 45.6768 52.6618 46.67 53.1787C48.5184 52.9009 50.3852 52.7616 52.2547 52.7619C54.3723 52.7619 55.9283 53.1018 56.5545 53.7173C56.8282 54.0066 56.9865 54.385 57 54.7817C56.9883 54.9976 56.9581 55.2121 56.9096 55.4229C56.9096 55.3075 56.9096 54.7817 55.231 54.2174C53.8945 53.7943 51.3572 53.8071 48.3809 54.1213C51.8608 55.814 55.2504 56.686 56.3221 56.1474C56.5481 55.9979 56.745 55.8089 56.9032 55.5896C56.8265 55.9537 56.7163 56.31 56.5739 56.654C56.3628 56.9242 56.0714 57.1217 55.741 57.2182C54.043 57.6735 49.6334 56.6283 45.7855 54.4483C41.4426 55.103 37.1608 56.1087 32.9827 57.4555C29.2381 63.9251 26.4684 66.8938 24.1958 65.7653L23.3629 65.3485C23.2097 65.2267 23.0975 65.0615 23.041 64.8748C22.9845 64.6882 22.9864 64.4889 23.0465 64.3034C23.3112 63.021 24.9382 61.0974 28.2115 59.1354C28.5666 58.9238 30.1484 58.1031 30.1484 58.1031C30.1484 58.1031 28.9928 59.2187 28.7216 59.4367C26.1391 61.5591 24.2022 64.2264 24.2345 65.2652V65.3549C26.449 65.0408 29.7675 60.5588 34.0415 52.2618H34.0286ZM35.3974 52.9479C34.6807 54.2816 33.9834 55.5127 33.3378 56.6604C36.898 55.2439 40.5984 54.2037 44.378 53.557C43.8873 53.2172 43.416 52.8645 42.9641 52.4862C41.0049 50.82 39.4097 48.7732 38.2769 46.4719C37.4539 48.6941 36.4789 50.8578 35.3586 52.9479" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22042">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View file

@ -1,12 +1,17 @@
<svg width="100" height="127" viewBox="0 0 100 127" fill="none" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#D871D6"/>
<g>
<path d="M39.8984 109.465H40.4961C41.0547 109.465 41.4727 109.355 41.75 109.137C42.0273 108.914 42.166 108.592 42.166 108.17C42.166 107.744 42.0488 107.43 41.8145 107.227C41.584 107.023 41.2207 106.922 40.7246 106.922H39.8984V109.465ZM44 108.105C44 109.027 43.7109 109.732 43.1328 110.221C42.5586 110.709 41.7402 110.953 40.6777 110.953H39.8984V114H38.082V105.434H40.8184C41.8574 105.434 42.6465 105.658 43.1855 106.107C43.7285 106.553 44 107.219 44 108.105Z" fill="white"/>
<path d="M53.2168 114H50.9082L47.1816 107.52H47.1289C47.2031 108.664 47.2402 109.48 47.2402 109.969V114H45.6172V105.434H47.9082L51.6289 111.85H51.6699C51.6113 110.736 51.582 109.949 51.582 109.488V105.434H53.2168V114Z" fill="white"/>
<path d="M58.6309 109.189H62.0293V113.631C61.4785 113.811 60.959 113.936 60.4707 114.006C59.9863 114.08 59.4902 114.117 58.9824 114.117C57.6895 114.117 56.7012 113.738 56.0176 112.98C55.3379 112.219 54.998 111.127 54.998 109.705C54.998 108.322 55.3926 107.244 56.1816 106.471C56.9746 105.697 58.0723 105.311 59.4746 105.311C60.3535 105.311 61.2012 105.486 62.0176 105.838L61.4141 107.291C60.7891 106.979 60.1387 106.822 59.4629 106.822C58.6777 106.822 58.0488 107.086 57.5762 107.613C57.1035 108.141 56.8672 108.85 56.8672 109.74C56.8672 110.67 57.0566 111.381 57.4355 111.873C57.8184 112.361 58.373 112.605 59.0996 112.605C59.4785 112.605 59.8633 112.566 60.2539 112.488V110.701H58.6309V109.189Z" fill="white"/>
</g>
<path d="M56 51.869L73.183 79H27.7869L39.5 59.912L44.274 67.6919L45.113 69.059L45.9712 67.7039L56 51.869ZM36 51.5C36 53.9853 33.9853 56 31.5 56C29.0147 56 27 53.9853 27 51.5C27 49.0147 29.0147 47 31.5 47C33.9853 47 36 49.0147 36 51.5Z" fill="white" stroke="white" stroke-width="2"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22057)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#D871D6"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M30.8184 78.4336C31.9238 78.4336 32.7305 78.6719 33.2383 79.1484C33.7461 79.6211 34 80.2734 34 81.1055C34 81.4805 33.9434 81.8398 33.8301 82.1836C33.7168 82.5234 33.5312 82.8262 33.2734 83.0918C33.0195 83.3574 32.6797 83.5684 32.2539 83.7246C31.8281 83.877 31.3027 83.9531 30.6777 83.9531H29.8984V87H28.082V78.4336H30.8184ZM30.7246 79.9219H29.8984V82.4648H30.4961C30.8359 82.4648 31.1309 82.4199 31.3809 82.3301C31.6309 82.2402 31.8242 82.0996 31.9609 81.9082C32.0977 81.7168 32.166 81.4707 32.166 81.1699C32.166 80.748 32.0488 80.4355 31.8145 80.2324C31.5801 80.0254 31.2168 79.9219 30.7246 79.9219ZM43.2168 87H40.9082L37.1816 80.5195H37.1289C37.1445 80.7891 37.1582 81.0605 37.1699 81.334C37.1816 81.6074 37.1934 81.8809 37.2051 82.1543C37.2168 82.4238 37.2285 82.6953 37.2402 82.9688V87H35.6172V78.4336H37.9082L41.6289 84.8496H41.6699C41.6621 84.584 41.6523 84.3203 41.6406 84.0586C41.6289 83.7969 41.6172 83.5352 41.6055 83.2734C41.5977 83.0117 41.5898 82.75 41.582 82.4883V78.4336H43.2168V87ZM48.6309 82.1895H52.0293V86.6309C51.5801 86.7793 51.1133 86.8984 50.6289 86.9883C50.1445 87.0742 49.5957 87.1172 48.9824 87.1172C48.1309 87.1172 47.4082 86.9492 46.8145 86.6133C46.2207 86.2773 45.7695 85.7812 45.4609 85.125C45.1523 84.4688 44.998 83.6621 44.998 82.7051C44.998 81.8066 45.1699 81.0293 45.5137 80.373C45.8613 79.7168 46.3672 79.209 47.0312 78.8496C47.6992 78.4902 48.5137 78.3105 49.4746 78.3105C49.9277 78.3105 50.375 78.3594 50.8164 78.457C51.2578 78.5547 51.6582 78.6816 52.0176 78.8379L51.4141 80.291C51.1523 80.1582 50.8535 80.0469 50.5176 79.957C50.1816 79.8672 49.8301 79.8223 49.4629 79.8223C48.9355 79.8223 48.4766 79.9434 48.0859 80.1855C47.6992 80.4277 47.3984 80.7676 47.1836 81.2051C46.9727 81.6387 46.8672 82.1504 46.8672 82.7402C46.8672 83.2988 46.9434 83.7949 47.0957 84.2285C47.248 84.6582 47.4883 84.9961 47.8164 85.2422C48.1445 85.4844 48.5723 85.6055 49.0996 85.6055C49.3574 85.6055 49.5742 85.5938 49.75 85.5703C49.9297 85.543 50.0977 85.5156 50.2539 85.4883V83.7012H48.6309V82.1895Z" fill="white"/>
<mask id="path-4-inside-1_2964_22057" fill="white">
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.3677 44.4118C27.6906 44.4118 29.5736 42.5287 29.5736 40.2059C29.5736 37.883 27.6906 36 25.3677 36C23.0449 36 21.1619 37.883 21.1619 40.2059C21.1619 42.5287 23.0449 44.4118 25.3677 44.4118ZM44.103 39.0588L58.6325 62H21.1619L31.4854 45.1765L35.7879 52.188L44.103 39.0588Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.3677 44.4118C27.6906 44.4118 29.5736 42.5287 29.5736 40.2059C29.5736 37.883 27.6906 36 25.3677 36C23.0449 36 21.1619 37.883 21.1619 40.2059C21.1619 42.5287 23.0449 44.4118 25.3677 44.4118ZM44.103 39.0588L58.6325 62H21.1619L31.4854 45.1765L35.7879 52.188L44.103 39.0588Z" fill="white"/>
<path d="M58.6325 62V64H62.2665L60.3221 60.9299L58.6325 62ZM44.103 39.0588L45.7927 37.9887L44.103 35.3208L42.4134 37.9887L44.103 39.0588ZM21.1619 62L19.4572 60.9539L17.5881 64H21.1619V62ZM31.4854 45.1765L33.19 44.1304L31.4854 41.3525L29.7807 44.1304L31.4854 45.1765ZM35.7879 52.188L34.0833 53.234L35.7611 55.9682L37.4775 53.2581L35.7879 52.188ZM27.5736 40.2059C27.5736 41.4242 26.586 42.4118 25.3677 42.4118V46.4118C28.7952 46.4118 31.5736 43.6333 31.5736 40.2059H27.5736ZM25.3677 38C26.586 38 27.5736 38.9876 27.5736 40.2059H31.5736C31.5736 36.7785 28.7952 34 25.3677 34V38ZM23.1619 40.2059C23.1619 38.9876 24.1495 38 25.3677 38V34C21.9403 34 19.1619 36.7785 19.1619 40.2059H23.1619ZM25.3677 42.4118C24.1495 42.4118 23.1619 41.4242 23.1619 40.2059H19.1619C19.1619 43.6333 21.9403 46.4118 25.3677 46.4118V42.4118ZM60.3221 60.9299L45.7927 37.9887L42.4134 40.1289L56.9428 63.0701L60.3221 60.9299ZM21.1619 64H58.6325V60H21.1619V64ZM29.7807 44.1304L19.4572 60.9539L22.8665 63.046L33.19 46.2225L29.7807 44.1304ZM37.4926 51.1419L33.19 44.1304L29.7807 46.2225L34.0833 53.234L37.4926 51.1419ZM42.4134 37.9887L34.0983 51.1179L37.4775 53.2581L45.7927 40.1289L42.4134 37.9887Z" fill="white" mask="url(#path-4-inside-1_2964_22057)"/>
</g>
<defs>
<clipPath id="clip0_2964_22057">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -1,12 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#DD682B"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M37.8845 109.465H38.4822C39.0408 109.465 39.4587 109.355 39.7361 109.137C40.0134 108.914 40.1521 108.592 40.1521 108.17C40.1521 107.744 40.0349 107.43 39.8005 107.227C39.5701 107.023 39.2068 106.922 38.7107 106.922H37.8845V109.465ZM41.9861 108.105C41.9861 109.027 41.697 109.732 41.1189 110.221C40.5447 110.709 39.7263 110.953 38.6638 110.953H37.8845V114H36.0681V105.434H38.8044C39.8435 105.434 40.6326 105.658 41.1716 106.107C41.7146 106.553 41.9861 107.219 41.9861 108.105ZM51.3787 109.705C51.3787 111.123 51.0271 112.213 50.324 112.975C49.6208 113.736 48.613 114.117 47.3005 114.117C45.988 114.117 44.9802 113.736 44.2771 112.975C43.574 112.213 43.2224 111.119 43.2224 109.693C43.2224 108.268 43.574 107.18 44.2771 106.43C44.9841 105.676 45.9958 105.299 47.3123 105.299C48.6287 105.299 49.6345 105.678 50.3298 106.436C51.0291 107.193 51.3787 108.283 51.3787 109.705ZM45.1267 109.705C45.1267 110.662 45.3083 111.383 45.6716 111.867C46.0349 112.352 46.5779 112.594 47.3005 112.594C48.7498 112.594 49.4744 111.631 49.4744 109.705C49.4744 107.775 48.7537 106.811 47.3123 106.811C46.5896 106.811 46.0447 107.055 45.6775 107.543C45.3103 108.027 45.1267 108.748 45.1267 109.705ZM56.4587 114H54.6423V106.945H52.3162V105.434H58.7849V106.945H56.4587V114ZM67.0291 114H64.9548L62.9626 110.76L60.9705 114H59.0251L61.8669 109.582L59.2068 105.434H61.2107L63.0564 108.516L64.8669 105.434H66.824L64.1345 109.682L67.0291 114Z" fill="white"/>
<path d="M50 69C54.2435 69 58.3131 67.3143 61.3137 64.3137C64.3143 61.3131 66 57.2435 66 53H50V37C45.7565 37 41.6869 38.6857 38.6863 41.6863C35.6857 44.6869 34 48.7565 34 53C34 57.2435 35.6857 61.3131 38.6863 64.3137C41.6869 67.3143 45.7565 69 50 69Z" fill="white"/>
<path d="M53 34V50H69C69 45.7565 67.3143 41.6869 64.3137 38.6863C61.3131 35.6857 57.2435 34 53 34Z" fill="white"/>
<path d="M75 89H25V91H75V89Z" fill="white"/>
<path d="M75 83H25V85H75V83Z" fill="white"/>
<path d="M75 77H25V79H75V77Z" fill="white"/>
<rect x="15" y="15" width="16" height="14" rx="2" fill="white"/>
<path d="M23.0898 26H21.6895V18.6348H19.1699V17.4336H25.6094V18.6348H23.0898V26Z" fill="#DD682B"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22037)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#DD682B"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M41 46V34C44.1826 34 47.2348 35.2643 49.4853 37.5147C51.7357 39.7652 53 42.8174 53 46H41ZM47.4853 56.4853C45.2348 58.7357 42.1826 60 39 60C35.8174 60 32.7652 58.7357 30.5147 56.4853C28.2643 54.2348 27 51.1826 27 48C27 44.8174 28.2643 41.7652 30.5147 39.5147C32.7652 37.2643 35.8174 36 39 36V48H51C51 51.1826 49.7357 54.2348 47.4853 56.4853Z" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M27.7949 78.4336C28.9004 78.4336 29.707 78.6719 30.2148 79.1484C30.7227 79.6211 30.9766 80.2734 30.9766 81.1055C30.9766 81.4805 30.9199 81.8398 30.8066 82.1836C30.6934 82.5234 30.5078 82.8262 30.25 83.0918C29.9961 83.3574 29.6562 83.5684 29.2305 83.7246C28.8047 83.877 28.2793 83.9531 27.6543 83.9531H26.875V87H25.0586V78.4336H27.7949ZM27.7012 79.9219H26.875V82.4648H27.4727C27.8125 82.4648 28.1074 82.4199 28.3574 82.3301C28.6074 82.2402 28.8008 82.0996 28.9375 81.9082C29.0742 81.7168 29.1426 81.4707 29.1426 81.1699C29.1426 80.748 29.0254 80.4355 28.791 80.2324C28.5566 80.0254 28.1934 79.9219 27.7012 79.9219ZM40.3691 82.7051C40.3691 83.3652 40.2871 83.9668 40.123 84.5098C39.959 85.0488 39.709 85.5137 39.373 85.9043C39.041 86.2949 38.6191 86.5957 38.1074 86.8066C37.5957 87.0137 36.9902 87.1172 36.291 87.1172C35.5918 87.1172 34.9863 87.0137 34.4746 86.8066C33.9629 86.5957 33.5391 86.2949 33.2031 85.9043C32.8711 85.5137 32.623 85.0469 32.459 84.5039C32.2949 83.9609 32.2129 83.3574 32.2129 82.6934C32.2129 81.8066 32.3574 81.0352 32.6465 80.3789C32.9395 79.7188 33.3887 79.207 33.9941 78.8438C34.5996 78.4805 35.3691 78.2988 36.3027 78.2988C37.2324 78.2988 37.9961 78.4805 38.5938 78.8438C39.1953 79.207 39.6406 79.7188 39.9297 80.3789C40.2227 81.0391 40.3691 81.8145 40.3691 82.7051ZM34.1172 82.7051C34.1172 83.3027 34.1914 83.8184 34.3398 84.252C34.4922 84.6816 34.7285 85.0137 35.0488 85.248C35.3691 85.4785 35.7832 85.5938 36.291 85.5938C36.8066 85.5938 37.2246 85.4785 37.5449 85.248C37.8652 85.0137 38.0977 84.6816 38.2422 84.252C38.3906 83.8184 38.4648 83.3027 38.4648 82.7051C38.4648 81.8066 38.2969 81.0996 37.9609 80.584C37.625 80.0684 37.0723 79.8105 36.3027 79.8105C35.791 79.8105 35.373 79.9277 35.0488 80.1621C34.7285 80.3926 34.4922 80.7246 34.3398 81.1582C34.1914 81.5879 34.1172 82.1035 34.1172 82.7051ZM45.4492 87H43.6328V79.9453H41.3066V78.4336H47.7754V79.9453H45.4492V87ZM56.0195 87H53.9453L51.9531 83.7598L49.9609 87H48.0156L50.8574 82.582L48.1973 78.4336H50.2012L52.0469 81.5156L53.8574 78.4336H55.8145L53.125 82.6816L56.0195 87Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 10C10.8954 10 10 10.8954 10 12V21C10 22.1046 10.8954 23 12 23H21C22.1046 23 23 22.1046 23 21V12C23 10.8954 22.1046 10 21 10H12ZM17.2129 20V14.0381H19.4004V12.8906H17.2129H15.7529H13.5996V14.0381H15.7529V20H17.2129Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22037">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -1,17 +1,13 @@
<svg width="100" height="127" viewBox="0 0 100 127" fill="none" xmlns="http://www.w3.org/2000/svg">
<g>
<path id="Vector" d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#E87616"/>
<path id="Vector_2" opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<g>
<path d="M38.0527 109.465H38.6504C39.209 109.465 39.627 109.355 39.9043 109.137C40.1816 108.914 40.3203 108.592 40.3203 108.17C40.3203 107.744 40.2031 107.43 39.9688 107.227C39.7383 107.023 39.375 106.922 38.8789 106.922H38.0527V109.465ZM42.1543 108.105C42.1543 109.027 41.8652 109.732 41.2871 110.221C40.7129 110.709 39.8945 110.953 38.832 110.953H38.0527V114H36.2363V105.434H38.9727C40.0117 105.434 40.8008 105.658 41.3398 106.107C41.8828 106.553 42.1543 107.219 42.1543 108.105Z" fill="white"/>
<path d="M45.5879 109.465H46.1855C46.7441 109.465 47.1621 109.355 47.4395 109.137C47.7168 108.914 47.8555 108.592 47.8555 108.17C47.8555 107.744 47.7383 107.43 47.5039 107.227C47.2734 107.023 46.9102 106.922 46.4141 106.922H45.5879V109.465ZM49.6895 108.105C49.6895 109.027 49.4004 109.732 48.8223 110.221C48.248 110.709 47.4297 110.953 46.3672 110.953H45.5879V114H43.7715V105.434H46.5078C47.5469 105.434 48.3359 105.658 48.875 106.107C49.418 106.553 49.6895 107.219 49.6895 108.105Z" fill="white"/>
<path d="M56.3633 111.621C56.3633 112.395 56.084 113.004 55.5254 113.449C54.9707 113.895 54.1973 114.117 53.2051 114.117C52.291 114.117 51.4824 113.945 50.7793 113.602V111.914C51.3574 112.172 51.8457 112.354 52.2441 112.459C52.6465 112.564 53.0137 112.617 53.3457 112.617C53.7441 112.617 54.0488 112.541 54.2598 112.389C54.4746 112.236 54.582 112.01 54.582 111.709C54.582 111.541 54.5352 111.393 54.4414 111.264C54.3477 111.131 54.209 111.004 54.0254 110.883C53.8457 110.762 53.4766 110.568 52.918 110.303C52.3945 110.057 52.002 109.82 51.7402 109.594C51.4785 109.367 51.2695 109.104 51.1133 108.803C50.957 108.502 50.8789 108.15 50.8789 107.748C50.8789 106.99 51.1348 106.395 51.6465 105.961C52.1621 105.527 52.873 105.311 53.7793 105.311C54.2246 105.311 54.6484 105.363 55.0508 105.469C55.457 105.574 55.8809 105.723 56.3223 105.914L55.7363 107.326C55.2793 107.139 54.9004 107.008 54.5996 106.934C54.3027 106.859 54.0098 106.822 53.7207 106.822C53.377 106.822 53.1133 106.902 52.9297 107.062C52.7461 107.223 52.6543 107.432 52.6543 107.689C52.6543 107.85 52.6914 107.99 52.7656 108.111C52.8398 108.229 52.957 108.344 53.1172 108.457C53.2812 108.566 53.666 108.766 54.2715 109.055C55.0723 109.438 55.6211 109.822 55.918 110.209C56.2148 110.592 56.3633 111.062 56.3633 111.621Z" fill="white"/>
<path d="M64.8418 114H62.7676L60.7754 110.76L58.7832 114H56.8379L59.6797 109.582L57.0195 105.434H59.0234L60.8691 108.516L62.6797 105.434H64.6367L61.9473 109.682L64.8418 114Z" fill="white"/>
</g>
<path id="Vector_3" d="M50 69C54.2435 69 58.3131 67.3143 61.3137 64.3137C64.3143 61.3131 66 57.2435 66 53H50V37C45.7565 37 41.6869 38.6857 38.6863 41.6863C35.6857 44.6869 34 48.7565 34 53C34 57.2435 35.6857 61.3131 38.6863 64.3137C41.6869 67.3143 45.7565 69 50 69Z" fill="white"/>
<path id="Vector_4" d="M53 34V50H69C69 45.7565 67.3143 41.6869 64.3137 38.6863C61.3131 35.6857 57.2435 34 53 34Z" fill="white"/>
<path id="Vector_5" d="M75 89H25V91H75V89Z" fill="white"/>
<path id="Vector_6" d="M75 83H25V85H75V83Z" fill="white"/>
<path id="Vector_7" d="M75 77H25V79H75V77Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22052)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#DD682B"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M41 46V34C44.1826 34 47.2348 35.2643 49.4853 37.5147C51.7357 39.7652 53 42.8174 53 46H41ZM47.4853 56.4853C45.2348 58.7357 42.1826 60 39 60C35.8174 60 32.7652 58.7357 30.5147 56.4853C28.2643 54.2348 27 51.1826 27 48C27 44.8174 28.2643 41.7652 30.5147 39.5147C32.7652 37.2643 35.8174 36 39 36V48H51C51 51.1826 49.7357 54.2348 47.4853 56.4853Z" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M28.9727 78.4336C30.0781 78.4336 30.8848 78.6719 31.3926 79.1484C31.9004 79.6211 32.1543 80.2734 32.1543 81.1055C32.1543 81.4805 32.0977 81.8398 31.9844 82.1836C31.8711 82.5234 31.6855 82.8262 31.4277 83.0918C31.1738 83.3574 30.834 83.5684 30.4082 83.7246C29.9824 83.877 29.457 83.9531 28.832 83.9531H28.0527V87H26.2363V78.4336H28.9727ZM28.8789 79.9219H28.0527V82.4648H28.6504C28.9902 82.4648 29.2852 82.4199 29.5352 82.3301C29.7852 82.2402 29.9785 82.0996 30.1152 81.9082C30.252 81.7168 30.3203 81.4707 30.3203 81.1699C30.3203 80.748 30.2031 80.4355 29.9688 80.2324C29.7344 80.0254 29.3711 79.9219 28.8789 79.9219ZM36.5078 78.4336C37.6133 78.4336 38.4199 78.6719 38.9277 79.1484C39.4355 79.6211 39.6895 80.2734 39.6895 81.1055C39.6895 81.4805 39.6328 81.8398 39.5195 82.1836C39.4062 82.5234 39.2207 82.8262 38.9629 83.0918C38.709 83.3574 38.3691 83.5684 37.9434 83.7246C37.5176 83.877 36.9922 83.9531 36.3672 83.9531H35.5879V87H33.7715V78.4336H36.5078ZM36.4141 79.9219H35.5879V82.4648H36.1855C36.5254 82.4648 36.8203 82.4199 37.0703 82.3301C37.3203 82.2402 37.5137 82.0996 37.6504 81.9082C37.7871 81.7168 37.8555 81.4707 37.8555 81.1699C37.8555 80.748 37.7383 80.4355 37.5039 80.2324C37.2695 80.0254 36.9062 79.9219 36.4141 79.9219ZM46.3633 84.6211C46.3633 85.1289 46.2402 85.5703 45.9941 85.9453C45.748 86.3203 45.3887 86.6094 44.916 86.8125C44.4473 87.0156 43.877 87.1172 43.2051 87.1172C42.9082 87.1172 42.6172 87.0977 42.332 87.0586C42.0508 87.0195 41.7793 86.9629 41.5176 86.8887C41.2598 86.8105 41.0137 86.7148 40.7793 86.6016V84.9141C41.1855 85.0938 41.6074 85.2559 42.0449 85.4004C42.4824 85.5449 42.916 85.6172 43.3457 85.6172C43.6426 85.6172 43.8809 85.5781 44.0605 85.5C44.2441 85.4219 44.377 85.3145 44.459 85.1777C44.541 85.041 44.582 84.8848 44.582 84.709C44.582 84.4941 44.5098 84.3105 44.3652 84.1582C44.2207 84.0059 44.0215 83.8633 43.7676 83.7305C43.5176 83.5977 43.2344 83.4551 42.918 83.3027C42.7188 83.209 42.502 83.0957 42.2676 82.9629C42.0332 82.8262 41.8105 82.6602 41.5996 82.4648C41.3887 82.2695 41.2148 82.0332 41.0781 81.7559C40.9453 81.4746 40.8789 81.1387 40.8789 80.748C40.8789 80.2363 40.9961 79.7988 41.2305 79.4355C41.4648 79.0723 41.7988 78.7949 42.2324 78.6035C42.6699 78.4082 43.1855 78.3105 43.7793 78.3105C44.2246 78.3105 44.6484 78.3633 45.0508 78.4688C45.457 78.5703 45.8809 78.7188 46.3223 78.9141L45.7363 80.3262C45.3418 80.166 44.9883 80.043 44.6758 79.957C44.3633 79.8672 44.0449 79.8223 43.7207 79.8223C43.4941 79.8223 43.3008 79.8594 43.1406 79.9336C42.9805 80.0039 42.8594 80.1055 42.7773 80.2383C42.6953 80.3672 42.6543 80.5176 42.6543 80.6895C42.6543 80.8926 42.7129 81.0645 42.8301 81.2051C42.9512 81.3418 43.1309 81.4746 43.3691 81.6035C43.6113 81.7324 43.9121 81.8828 44.2715 82.0547C44.709 82.2617 45.082 82.4785 45.3906 82.7051C45.7031 82.9277 45.9434 83.1914 46.1113 83.4961C46.2793 83.7969 46.3633 84.1719 46.3633 84.6211ZM54.8418 87H52.7676L50.7754 83.7598L48.7832 87H46.8379L49.6797 82.582L47.0195 78.4336H49.0234L50.8691 81.5156L52.6797 78.4336H54.6367L51.9473 82.6816L54.8418 87Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22052">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View file

@ -1,12 +1,14 @@
<svg width="100" height="127" viewBox="0 0 100 127" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#DD682B"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M37.2146 109.465H37.8123C38.3708 109.465 38.7888 109.355 39.0662 109.137C39.3435 108.914 39.4822 108.592 39.4822 108.17C39.4822 107.744 39.365 107.43 39.1306 107.227C38.9001 107.023 38.5369 106.922 38.0408 106.922H37.2146V109.465ZM41.3162 108.105C41.3162 109.027 41.0271 109.732 40.449 110.221C39.8748 110.709 39.0564 110.953 37.9939 110.953H37.2146V114H35.3982V105.434H38.1345C39.1736 105.434 39.9626 105.658 40.5017 106.107C41.0447 106.553 41.3162 107.219 41.3162 108.105ZM44.7498 109.465H45.3474C45.906 109.465 46.324 109.355 46.6013 109.137C46.8787 108.914 47.0173 108.592 47.0173 108.17C47.0173 107.744 46.9001 107.43 46.6658 107.227C46.4353 107.023 46.072 106.922 45.5759 106.922H44.7498V109.465ZM48.8513 108.105C48.8513 109.027 48.5623 109.732 47.9841 110.221C47.4099 110.709 46.5916 110.953 45.5291 110.953H44.7498V114H42.9333V105.434H45.6697C46.7087 105.434 47.4978 105.658 48.0369 106.107C48.5798 106.553 48.8513 107.219 48.8513 108.105ZM53.7732 114H51.9568V106.945H49.6306V105.434H56.0994V106.945H53.7732V114ZM61.0447 114L58.9822 107.279H58.9294C59.0037 108.646 59.0408 109.559 59.0408 110.016V114H57.4177V105.434H59.8904L61.9177 111.984H61.9529L64.1033 105.434H66.5759V114H64.8826V109.945C64.8826 109.754 64.8845 109.533 64.8884 109.283C64.8962 109.033 64.9236 108.369 64.9705 107.291H64.9177L62.7087 114H61.0447Z" fill="white"/>
<path d="M50 69C54.2435 69 58.3131 67.3143 61.3137 64.3137C64.3143 61.3131 66 57.2435 66 53H50V37C45.7565 37 41.6869 38.6857 38.6863 41.6863C35.6857 44.6869 34 48.7565 34 53C34 57.2435 35.6857 61.3131 38.6863 64.3137C41.6869 67.3143 45.7565 69 50 69Z" fill="white"/>
<path d="M53 34V50H69C69 45.7565 67.3143 41.6869 64.3137 38.6863C61.3131 35.6857 57.2435 34 53 34Z" fill="white"/>
<path d="M75 89H25V91H75V89Z" fill="white"/>
<path d="M75 83H25V85H75V83Z" fill="white"/>
<path d="M75 77H25V79H75V77Z" fill="white"/>
<path d="M15 17C15 15.8954 15.8954 15 17 15H29C30.1046 15 31 15.8954 31 17V26C31 27.1046 30.1046 28 29 28H17C15.8954 28 15 27.1046 15 26V17Z" fill="white"/>
<path d="M22.2969 26L19.8125 18.8457H19.7656C19.832 19.9082 19.8652 20.9043 19.8652 21.834V26H18.5938V17.4336H20.5684L22.9473 24.248H22.9824L25.4316 17.4336H27.4121V26H26.0645V21.7637C26.0645 21.3379 26.0742 20.7832 26.0938 20.0996C26.1172 19.416 26.1367 19.002 26.1523 18.8574H26.1055L23.5332 26H22.2969Z" fill="#DD682B"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22034)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#DD682B"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M42 47V35C45.1826 35 48.2348 36.2643 50.4853 38.5147C52.7357 40.7652 54 43.8174 54 47H42ZM48.4853 57.4853C46.2348 59.7357 43.1826 61 40 61C36.8174 61 33.7652 59.7357 31.5147 57.4853C29.2643 55.2348 28 52.1826 28 49C28 45.8174 29.2643 42.7652 31.5147 40.5147C33.7652 38.2643 36.8174 37 40 37V49H52C52 52.1826 50.7357 55.2348 48.4853 57.4853Z" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M27.1445 78.4336C28.25 78.4336 29.0566 78.6719 29.5645 79.1484C30.0723 79.6211 30.3262 80.2734 30.3262 81.1055C30.3262 81.4805 30.2695 81.8398 30.1562 82.1836C30.043 82.5234 29.8574 82.8262 29.5996 83.0918C29.3457 83.3574 29.0059 83.5684 28.5801 83.7246C28.1543 83.877 27.6289 83.9531 27.0039 83.9531H26.2246V87H24.4082V78.4336H27.1445ZM27.0508 79.9219H26.2246V82.4648H26.8223C27.1621 82.4648 27.457 82.4199 27.707 82.3301C27.957 82.2402 28.1504 82.0996 28.2871 81.9082C28.4238 81.7168 28.4922 81.4707 28.4922 81.1699C28.4922 80.748 28.375 80.4355 28.1406 80.2324C27.9062 80.0254 27.543 79.9219 27.0508 79.9219ZM34.6797 78.4336C35.7852 78.4336 36.5918 78.6719 37.0996 79.1484C37.6074 79.6211 37.8613 80.2734 37.8613 81.1055C37.8613 81.4805 37.8047 81.8398 37.6914 82.1836C37.5781 82.5234 37.3926 82.8262 37.1348 83.0918C36.8809 83.3574 36.541 83.5684 36.1152 83.7246C35.6895 83.877 35.1641 83.9531 34.5391 83.9531H33.7598V87H31.9434V78.4336H34.6797ZM34.5859 79.9219H33.7598V82.4648H34.3574C34.6973 82.4648 34.9922 82.4199 35.2422 82.3301C35.4922 82.2402 35.6855 82.0996 35.8223 81.9082C35.959 81.7168 36.0273 81.4707 36.0273 81.1699C36.0273 80.748 35.9102 80.4355 35.6758 80.2324C35.4414 80.0254 35.0781 79.9219 34.5859 79.9219ZM42.7832 87H40.9668V79.9453H38.6406V78.4336H45.1094V79.9453H42.7832V87ZM50.0547 87L47.9922 80.2793H47.9395C47.9473 80.4395 47.959 80.6816 47.9746 81.0059C47.9941 81.3262 48.0117 81.668 48.0273 82.0312C48.043 82.3945 48.0508 82.7227 48.0508 83.0156V87H46.4277V78.4336H48.9004L50.9277 84.9844H50.9629L53.1133 78.4336H55.5859V87H53.8926V82.9453C53.8926 82.6758 53.8965 82.3652 53.9043 82.0137C53.916 81.6621 53.9297 81.3281 53.9453 81.0117C53.9609 80.6914 53.9727 80.4512 53.9805 80.291H53.9277L51.7188 87H50.0547Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 10C10.8954 10 10 10.8954 10 12V21C10 22.1046 10.8954 23 12 23H21C22.1046 23 23 22.1046 23 21V12C23 10.8954 22.1046 10 21 10H12ZM14.6641 12.8906H13.9902H13.4238H12.7549V20H14.2148V17.9785L14.0691 14.6767L15.9922 20H16.9883L18.9114 14.6767L18.7656 17.9785V20H20.2305V12.8906H19.5566H18.9902H18.3164L16.4902 18.1104L14.6641 12.8906Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22034">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -1,10 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#DD682B"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M37.8845 109.465H38.4822C39.0408 109.465 39.4587 109.355 39.7361 109.137C40.0134 108.914 40.1521 108.592 40.1521 108.17C40.1521 107.744 40.0349 107.43 39.8005 107.227C39.5701 107.023 39.2068 106.922 38.7107 106.922H37.8845V109.465ZM41.9861 108.105C41.9861 109.027 41.697 109.732 41.1189 110.221C40.5447 110.709 39.7263 110.953 38.6638 110.953H37.8845V114H36.0681V105.434H38.8044C39.8435 105.434 40.6326 105.658 41.1716 106.107C41.7146 106.553 41.9861 107.219 41.9861 108.105ZM45.4197 109.465H46.0173C46.5759 109.465 46.9939 109.355 47.2712 109.137C47.5486 108.914 47.6873 108.592 47.6873 108.17C47.6873 107.744 47.5701 107.43 47.3357 107.227C47.1052 107.023 46.7419 106.922 46.2458 106.922H45.4197V109.465ZM49.5212 108.105C49.5212 109.027 49.2322 109.732 48.6541 110.221C48.0798 110.709 47.2615 110.953 46.199 110.953H45.4197V114H43.6033V105.434H46.3396C47.3787 105.434 48.1677 105.658 48.7068 106.107C49.2498 106.553 49.5212 107.219 49.5212 108.105ZM54.4431 114H52.6267V106.945H50.3005V105.434H56.7693V106.945H54.4431V114ZM65.0134 114H62.9392L60.947 110.76L58.9548 114H57.0095L59.8513 109.582L57.1912 105.434H59.1951L61.0408 108.516L62.8513 105.434H64.8083L62.1189 109.682L65.0134 114Z" fill="white"/>
<path d="M50 69C54.2435 69 58.3131 67.3143 61.3137 64.3137C64.3143 61.3131 66 57.2435 66 53H50V37C45.7565 37 41.6869 38.6857 38.6863 41.6863C35.6857 44.6869 34 48.7565 34 53C34 57.2435 35.6857 61.3131 38.6863 64.3137C41.6869 67.3143 45.7565 69 50 69Z" fill="white"/>
<path d="M53 34V50H69C69 45.7565 67.3143 41.6869 64.3137 38.6863C61.3131 35.6857 57.2435 34 53 34Z" fill="white"/>
<path d="M75 89H25V91H75V89Z" fill="white"/>
<path d="M75 83H25V85H75V83Z" fill="white"/>
<path d="M75 77H25V79H75V77Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22038)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#DD682B"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M41 46V34C44.1826 34 47.2348 35.2643 49.4853 37.5147C51.7357 39.7652 53 42.8174 53 46H41ZM47.4853 56.4853C45.2348 58.7357 42.1826 60 39 60C35.8174 60 32.7652 58.7357 30.5147 56.4853C28.2643 54.2348 27 51.1826 27 48C27 44.8174 28.2643 41.7652 30.5147 39.5147C32.7652 37.2643 35.8174 36 39 36V48H51C51 51.1826 49.7357 54.2348 47.4853 56.4853Z" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M28.8027 78.4336C29.9082 78.4336 30.7148 78.6719 31.2227 79.1484C31.7305 79.6211 31.9844 80.2734 31.9844 81.1055C31.9844 81.4805 31.9277 81.8398 31.8145 82.1836C31.7012 82.5234 31.5156 82.8262 31.2578 83.0918C31.0039 83.3574 30.6641 83.5684 30.2383 83.7246C29.8125 83.877 29.2871 83.9531 28.6621 83.9531H27.8828V87H26.0664V78.4336H28.8027ZM28.709 79.9219H27.8828V82.4648H28.4805C28.8203 82.4648 29.1152 82.4199 29.3652 82.3301C29.6152 82.2402 29.8086 82.0996 29.9453 81.9082C30.082 81.7168 30.1504 81.4707 30.1504 81.1699C30.1504 80.748 30.0332 80.4355 29.7988 80.2324C29.5645 80.0254 29.2012 79.9219 28.709 79.9219ZM36.3379 78.4336C37.4434 78.4336 38.25 78.6719 38.7578 79.1484C39.2656 79.6211 39.5195 80.2734 39.5195 81.1055C39.5195 81.4805 39.4629 81.8398 39.3496 82.1836C39.2363 82.5234 39.0508 82.8262 38.793 83.0918C38.5391 83.3574 38.1992 83.5684 37.7734 83.7246C37.3477 83.877 36.8223 83.9531 36.1973 83.9531H35.418V87H33.6016V78.4336H36.3379ZM36.2441 79.9219H35.418V82.4648H36.0156C36.3555 82.4648 36.6504 82.4199 36.9004 82.3301C37.1504 82.2402 37.3438 82.0996 37.4805 81.9082C37.6172 81.7168 37.6855 81.4707 37.6855 81.1699C37.6855 80.748 37.5684 80.4355 37.334 80.2324C37.0996 80.0254 36.7363 79.9219 36.2441 79.9219ZM44.4414 87H42.625V79.9453H40.2988V78.4336H46.7676V79.9453H44.4414V87ZM55.0117 87H52.9375L50.9453 83.7598L48.9531 87H47.0078L49.8496 82.582L47.1895 78.4336H49.1934L51.0391 81.5156L52.8496 78.4336H54.8066L52.1172 82.6816L55.0117 87Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22038">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -1,15 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 120.7 93.7 122 92 122H8C6.3 122 5 120.7 5 119V8C5 6.3 6.3 5 8 5H77L95 23Z" fill="#635E9B"/>
<path opacity="0.2" d="M95 23H80C78.3 23 77 21.7 77 20V5L95 23Z" fill="black"/>
<path d="M75 39H50V41H75V39Z" fill="white"/>
<path d="M75 45H50V47H75V45Z" fill="white"/>
<path d="M75 51H50V53H75V51Z" fill="white"/>
<path d="M75 57H50V59H75V57Z" fill="white"/>
<path d="M75 63H26V65H75V63Z" fill="white"/>
<path d="M75 69H26V71H75V69Z" fill="white"/>
<path d="M75 75H26V77H75V75Z" fill="white"/>
<path d="M75 81H26V83H75V81Z" fill="white"/>
<path d="M75 87H26V89H75V87Z" fill="white"/>
<path d="M46 39H26V59H46V39Z" fill="white"/>
<path d="M41.8945 109.236H42.4805C43.0547 109.236 43.4785 109.141 43.752 108.949C44.0254 108.758 44.1621 108.457 44.1621 108.047C44.1621 107.641 44.0215 107.352 43.7402 107.18C43.4629 107.008 43.0312 106.922 42.4453 106.922H41.8945V109.236ZM41.8945 110.713V114H40.0781V105.434H42.5742C43.7383 105.434 44.5996 105.646 45.1582 106.072C45.7168 106.494 45.9961 107.137 45.9961 108C45.9961 108.504 45.8574 108.953 45.5801 109.348C45.3027 109.738 44.9102 110.045 44.4023 110.268C45.6914 112.193 46.5312 113.438 46.9219 114H44.9062L42.8613 110.713H41.8945ZM51.3047 114H49.4883V106.945H47.1621V105.434H53.6309V106.945H51.3047V114ZM56.7363 114H54.9492V105.434H59.8594V106.922H56.7363V109.131H59.6426V110.613H56.7363V114Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22058)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#635E9B"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21 33H33V45H21V33ZM35 33H59V35H35V33ZM59 38H35V40H59V38ZM35 43H59V45H35V43ZM59 48H21V50H59V48ZM21 53H59V55H21V53ZM59 58H21V60H59V58ZM21 63H59V65H21V63Z" fill="white"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M32.8457 78.4336C33.623 78.4336 34.2637 78.5273 34.7676 78.7148C35.2754 78.9023 35.6523 79.1855 35.8984 79.5645C36.1445 79.9434 36.2676 80.4219 36.2676 81C36.2676 81.3906 36.1934 81.7324 36.0449 82.0254C35.8965 82.3184 35.7012 82.5664 35.459 82.7695C35.2168 82.9727 34.9551 83.1387 34.6738 83.2676L37.1934 87H35.1777L33.1328 83.7129H32.166V87H30.3496V78.4336H32.8457ZM32.7168 79.9219H32.166V82.2363H32.752C33.3535 82.2363 33.7832 82.1367 34.041 81.9375C34.3027 81.7344 34.4336 81.4375 34.4336 81.0469C34.4336 80.6406 34.293 80.3516 34.0117 80.1797C33.7344 80.0078 33.3027 79.9219 32.7168 79.9219ZM41.5762 87H39.7598V79.9453H37.4336V78.4336H43.9023V79.9453H41.5762V87ZM47.0078 87H45.2207V78.4336H50.1309V79.9219H47.0078V82.1309H49.9141V83.6133H47.0078V87Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22058">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -1,14 +1,13 @@
<svg width="100" height="127" viewBox="0 0 100 127" fill="none" xmlns="http://www.w3.org/2000/svg">
<symbol id="svg-format-svg">
<g>
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#507C8B"/>
<g>
<path d="M44.5801 111.621C44.5801 112.395 44.3008 113.004 43.7422 113.449C43.1875 113.895 42.4141 114.117 41.4219 114.117C40.5078 114.117 39.6992 113.945 38.9961 113.602V111.914C39.5742 112.172 40.0625 112.354 40.4609 112.459C40.8633 112.564 41.2305 112.617 41.5625 112.617C41.9609 112.617 42.2656 112.541 42.4766 112.389C42.6914 112.236 42.7988 112.01 42.7988 111.709C42.7988 111.541 42.752 111.393 42.6582 111.264C42.5645 111.131 42.4258 111.004 42.2422 110.883C42.0625 110.762 41.6934 110.568 41.1348 110.303C40.6113 110.057 40.2188 109.82 39.957 109.594C39.6953 109.367 39.4863 109.104 39.3301 108.803C39.1738 108.502 39.0957 108.15 39.0957 107.748C39.0957 106.99 39.3516 106.395 39.8633 105.961C40.3789 105.527 41.0898 105.311 41.9961 105.311C42.4414 105.311 42.8652 105.363 43.2676 105.469C43.6738 105.574 44.0977 105.723 44.5391 105.914L43.9531 107.326C43.4961 107.139 43.1172 107.008 42.8164 106.934C42.5195 106.859 42.2266 106.822 41.9375 106.822C41.5938 106.822 41.3301 106.902 41.1465 107.062C40.9629 107.223 40.8711 107.432 40.8711 107.689C40.8711 107.85 40.9082 107.99 40.9824 108.111C41.0566 108.229 41.1738 108.344 41.334 108.457C41.498 108.566 41.8828 108.766 42.4883 109.055C43.2891 109.438 43.8379 109.822 44.1348 110.209C44.4316 110.592 44.5801 111.062 44.5801 111.621Z" fill="white"/>
<path d="M51.0195 105.434H52.8535L49.9414 114H47.9609L45.0547 105.434H46.8887L48.5 110.531C48.5898 110.832 48.6816 111.184 48.7754 111.586C48.873 111.984 48.9336 112.262 48.957 112.418C49 112.059 49.1465 111.43 49.3965 110.531L51.0195 105.434Z" fill="white"/>
<path d="M57.1895 109.189H60.5879V113.631C60.0371 113.811 59.5176 113.936 59.0293 114.006C58.5449 114.08 58.0488 114.117 57.541 114.117C56.248 114.117 55.2598 113.738 54.5762 112.98C53.8965 112.219 53.5566 111.127 53.5566 109.705C53.5566 108.322 53.9512 107.244 54.7402 106.471C55.5332 105.697 56.6309 105.311 58.0332 105.311C58.9121 105.311 59.7598 105.486 60.5762 105.838L59.9727 107.291C59.3477 106.979 58.6973 106.822 58.0215 106.822C57.2363 106.822 56.6074 107.086 56.1348 107.613C55.6621 108.141 55.4258 108.85 55.4258 109.74C55.4258 110.67 55.6152 111.381 55.9941 111.873C56.377 112.361 56.9316 112.605 57.6582 112.605C58.0371 112.605 58.4219 112.566 58.8125 112.488V110.701H57.1895V109.189Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22054)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#507C8B"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M34.5801 84.6211C34.5801 85.1289 34.457 85.5703 34.2109 85.9453C33.9648 86.3203 33.6055 86.6094 33.1328 86.8125C32.6641 87.0156 32.0938 87.1172 31.4219 87.1172C31.125 87.1172 30.834 87.0977 30.5488 87.0586C30.2676 87.0195 29.9961 86.9629 29.7344 86.8887C29.4766 86.8105 29.2305 86.7148 28.9961 86.6016V84.9141C29.4023 85.0938 29.8242 85.2559 30.2617 85.4004C30.6992 85.5449 31.1328 85.6172 31.5625 85.6172C31.8594 85.6172 32.0977 85.5781 32.2773 85.5C32.4609 85.4219 32.5938 85.3145 32.6758 85.1777C32.7578 85.041 32.7988 84.8848 32.7988 84.709C32.7988 84.4941 32.7266 84.3105 32.582 84.1582C32.4375 84.0059 32.2383 83.8633 31.9844 83.7305C31.7344 83.5977 31.4512 83.4551 31.1348 83.3027C30.9355 83.209 30.7188 83.0957 30.4844 82.9629C30.25 82.8262 30.0273 82.6602 29.8164 82.4648C29.6055 82.2695 29.4316 82.0332 29.2949 81.7559C29.1621 81.4746 29.0957 81.1387 29.0957 80.748C29.0957 80.2363 29.2129 79.7988 29.4473 79.4355C29.6816 79.0723 30.0156 78.7949 30.4492 78.6035C30.8867 78.4082 31.4023 78.3105 31.9961 78.3105C32.4414 78.3105 32.8652 78.3633 33.2676 78.4688C33.6738 78.5703 34.0977 78.7188 34.5391 78.9141L33.9531 80.3262C33.5586 80.166 33.2051 80.043 32.8926 79.957C32.5801 79.8672 32.2617 79.8223 31.9375 79.8223C31.7109 79.8223 31.5176 79.8594 31.3574 79.9336C31.1973 80.0039 31.0762 80.1055 30.9941 80.2383C30.9121 80.3672 30.8711 80.5176 30.8711 80.6895C30.8711 80.8926 30.9297 81.0645 31.0469 81.2051C31.168 81.3418 31.3477 81.4746 31.5859 81.6035C31.8281 81.7324 32.1289 81.8828 32.4883 82.0547C32.9258 82.2617 33.2988 82.4785 33.6074 82.7051C33.9199 82.9277 34.1602 83.1914 34.3281 83.4961C34.4961 83.7969 34.5801 84.1719 34.5801 84.6211ZM42.8535 78.4336L39.9414 87H37.9609L35.0547 78.4336H36.8887L38.5 83.5312C38.5273 83.6172 38.5723 83.7793 38.6348 84.0176C38.6973 84.252 38.7598 84.502 38.8223 84.7676C38.8887 85.0293 38.9336 85.2461 38.957 85.418C38.9805 85.2461 39.0215 85.0293 39.0801 84.7676C39.1426 84.5059 39.2031 84.2578 39.2617 84.0234C39.3242 83.7852 39.3691 83.6211 39.3965 83.5312L41.0195 78.4336H42.8535ZM47.1895 82.1895H50.5879V86.6309C50.1387 86.7793 49.6719 86.8984 49.1875 86.9883C48.7031 87.0742 48.1543 87.1172 47.541 87.1172C46.6895 87.1172 45.9668 86.9492 45.373 86.6133C44.7793 86.2773 44.3281 85.7812 44.0195 85.125C43.7109 84.4688 43.5566 83.6621 43.5566 82.7051C43.5566 81.8066 43.7285 81.0293 44.0723 80.373C44.4199 79.7168 44.9258 79.209 45.5898 78.8496C46.2578 78.4902 47.0723 78.3105 48.0332 78.3105C48.4863 78.3105 48.9336 78.3594 49.375 78.457C49.8164 78.5547 50.2168 78.6816 50.5762 78.8379L49.9727 80.291C49.7109 80.1582 49.4121 80.0469 49.0762 79.957C48.7402 79.8672 48.3887 79.8223 48.0215 79.8223C47.4941 79.8223 47.0352 79.9434 46.6445 80.1855C46.2578 80.4277 45.957 80.7676 45.7422 81.2051C45.5312 81.6387 45.4258 82.1504 45.4258 82.7402C45.4258 83.2988 45.502 83.7949 45.6543 84.2285C45.8066 84.6582 46.0469 84.9961 46.375 85.2422C46.7031 85.4844 47.1309 85.6055 47.6582 85.6055C47.916 85.6055 48.1328 85.5938 48.3086 85.5703C48.4883 85.543 48.6562 85.5156 48.8125 85.4883V83.7012H47.1895V82.1895Z" fill="white"/>
<path d="M40.92 46.0952C43.5307 45.6519 45.52 43.3542 45.52 40.5862C45.52 37.501 43.0486 35 40 35C36.9514 35 34.48 37.501 34.48 40.5862C34.48 43.3542 36.4693 45.6519 39.08 46.0952V57.8902L30.6995 49.4092C31.3421 48.496 31.72 47.3789 31.72 46.1724C31.72 43.0872 29.2486 40.5862 26.2 40.5862C23.1514 40.5862 20.68 43.0872 20.68 46.1724C20.68 49.2576 23.1514 51.7586 26.2 51.7586C27.3922 51.7586 28.4961 51.3762 29.3984 50.7259L38.6989 60.1379H27.9637C27.5257 57.4959 25.2552 55.4828 22.52 55.4828C19.4714 55.4828 17 57.9838 17 61.069C17 61.3862 17.0261 61.6972 17.0763 62H62.9237C62.9739 61.6972 63 61.3862 63 61.069C63 57.9838 60.5286 55.4828 57.48 55.4828C54.7448 55.4828 52.4743 57.4959 52.0363 60.1379H41.4318L50.6785 50.7803C51.5664 51.3975 52.6415 51.7586 53.8 51.7586C56.8486 51.7586 59.32 49.2576 59.32 46.1724C59.32 43.0872 56.8486 40.5862 53.8 40.5862C50.7514 40.5862 48.28 43.0872 48.28 46.1724C48.28 47.4129 48.6795 48.5589 49.3555 49.4859L40.92 58.0225V46.0952Z" fill="white"/>
</g>
<path d="M51 58.917C53.8377 58.441 56 55.973 56 53C56 49.6863 53.3137 47 50 47C46.6863 47 44 49.6863 44 53C44 55.973 46.1623 58.441 49 58.917V71.5858L39.8908 62.4765C40.5892 61.4957 41 60.2958 41 59C41 55.6863 38.3137 53 35 53C31.6863 53 29 55.6863 29 59C29 62.3137 31.6863 65 35 65C36.2958 65 37.4957 64.5892 38.4766 63.8907L48.5858 74H36.917C36.441 71.1623 33.973 69 31 69C27.6863 69 25 71.6863 25 75C25 75.3407 25.0284 75.6748 25.083 76H74.917C74.9716 75.6748 75 75.3407 75 75C75 71.6863 72.3137 69 69 69C66.027 69 63.559 71.1623 63.083 74H51.5563L61.6071 63.9492C62.5721 64.6121 63.7408 65 65 65C68.3137 65 71 62.3137 71 59C71 55.6863 68.3137 53 65 53C61.6863 53 59 55.6863 59 59C59 60.3323 59.4343 61.5633 60.169 62.5589L51 71.7279V58.917Z" fill="white"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
</g>
</symbol>
<defs>
<clipPath id="clip0_2964_22054">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View file

@ -1,14 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#7C7C7D"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M43.4329 114H41.6165V106.945H39.2903V105.434H45.759V106.945H43.4329V114ZM54.0032 114H51.929L49.9368 110.76L47.9446 114H45.9993L48.8411 109.582L46.1809 105.434H48.1848L50.0305 108.516L51.8411 105.434H53.7981L51.1086 109.682L54.0032 114ZM58.386 114H56.5696V106.945H54.2434V105.434H60.7122V106.945H58.386V114Z" fill="white"/>
<path d="M74 38H25V40H74V38Z" fill="white"/>
<path d="M74 44H25V46H74V44Z" fill="white"/>
<path d="M74 50H25V52H74V50Z" fill="white"/>
<path d="M74 56H25V58H74V56Z" fill="white"/>
<path d="M74 62H25V64H74V62Z" fill="white"/>
<path d="M74 68H25V70H74V68Z" fill="white"/>
<path d="M74 74H25V76H74V74Z" fill="white"/>
<path d="M74 80H25V82H74V80Z" fill="white"/>
<path d="M74 86H25V88H74V86Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22055)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#7C7C7D"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M33.4316 87H31.6152V79.9453H29.2891V78.4336H35.7578V79.9453H33.4316V87ZM44.002 87H41.9277L39.9355 83.7598L37.9434 87H35.998L38.8398 82.582L36.1797 78.4336H38.1836L40.0293 81.5156L41.8398 78.4336H43.7969L41.1074 82.6816L44.002 87ZM48.3848 87H46.5684V79.9453H44.2422V78.4336H50.7109V79.9453H48.3848V87Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M59 33H21V35H59V33ZM59 38H21V40H59V38ZM21 43H59V45H21V43ZM59 48H21V50H59V48ZM21 53H59V55H21V53ZM59 58H21V60H59V58ZM21 63H59V65H21V63Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22055">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,8 +1,14 @@
<svg width="100" height="127" viewBox="0 0 100 127" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#1F7244"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M42.4446 114H40.3704L38.3782 110.76L36.386 114H34.4407L37.2825 109.582L34.6223 105.434H36.6262L38.4719 108.516L40.2825 105.434H42.2395L39.55 109.682L42.4446 114ZM43.5227 114V105.434H45.3391V112.5H48.8137V114H43.5227ZM55.3645 111.621C55.3645 112.395 55.0852 113.004 54.5266 113.449C53.9719 113.895 53.1985 114.117 52.2063 114.117C51.2922 114.117 50.4836 113.945 49.7805 113.602V111.914C50.3586 112.172 50.8469 112.354 51.2454 112.459C51.6477 112.564 52.0149 112.617 52.3469 112.617C52.7454 112.617 53.05 112.541 53.261 112.389C53.4758 112.236 53.5833 112.01 53.5833 111.709C53.5833 111.541 53.5364 111.393 53.4426 111.264C53.3489 111.131 53.2102 111.004 53.0266 110.883C52.8469 110.762 52.4778 110.568 51.9192 110.303C51.3958 110.057 51.0032 109.82 50.7415 109.594C50.4797 109.367 50.2708 109.104 50.1145 108.803C49.9583 108.502 49.8801 108.15 49.8801 107.748C49.8801 106.99 50.136 106.395 50.6477 105.961C51.1633 105.527 51.8743 105.311 52.7805 105.311C53.2258 105.311 53.6497 105.363 54.052 105.469C54.4583 105.574 54.8821 105.723 55.3235 105.914L54.7375 107.326C54.2805 107.139 53.9016 107.008 53.6008 106.934C53.304 106.859 53.011 106.822 52.7219 106.822C52.3782 106.822 52.1145 106.902 51.9309 107.062C51.7473 107.223 51.6555 107.432 51.6555 107.689C51.6555 107.85 51.6926 107.99 51.7668 108.111C51.8411 108.229 51.9583 108.344 52.1184 108.457C52.2825 108.566 52.6672 108.766 53.2727 109.055C54.0735 109.438 54.6223 109.822 54.9192 110.209C55.2161 110.592 55.3645 111.062 55.3645 111.621ZM60.5442 114L58.4817 107.279H58.429C58.5032 108.646 58.5403 109.559 58.5403 110.016V114H56.9172V105.434H59.3899L61.4172 111.984H61.4524L63.6028 105.434H66.0754V114H64.3821V109.945C64.3821 109.754 64.384 109.533 64.3879 109.283C64.3958 109.033 64.4231 108.369 64.47 107.291H64.4172L62.2083 114H60.5442Z" fill="white"/>
<path d="M52.75 61.63L64 45H58.5L50 57.56L41.5 45H36L47.25 61.63L35.5 79H41L50 65.7L59 79H64.5L52.75 61.63Z" fill="white"/>
<path d="M15 15C15 13.8954 15.8954 13 17 13H29C30.1046 13 31 13.8954 31 15V24C31 25.1046 30.1046 26 29 26H17C15.8954 26 15 25.1046 15 24V15Z" fill="white"/>
<path d="M22.2969 24L19.8125 16.8457H19.7656C19.832 17.9082 19.8652 18.9043 19.8652 19.834V24H18.5938V15.4336H20.5684L22.9473 22.248H22.9824L25.4316 15.4336H27.4121V24H26.0645V19.7637C26.0645 19.3379 26.0742 18.7832 26.0938 18.0996C26.1172 17.416 26.1367 17.002 26.1523 16.8574H26.1055L23.5332 24H22.2969Z" fill="#1F7244"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22036)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#1F7244"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M31.6445 87H29.5703L27.5781 83.7598L25.5859 87H23.6406L26.4824 82.582L23.8223 78.4336H25.8262L27.6719 81.5156L29.4824 78.4336H31.4395L28.75 82.6816L31.6445 87ZM32.7227 87V78.4336H34.5391V85.5H38.0137V87H32.7227ZM44.5645 84.6211C44.5645 85.1289 44.4414 85.5703 44.1953 85.9453C43.9492 86.3203 43.5898 86.6094 43.1172 86.8125C42.6484 87.0156 42.0781 87.1172 41.4062 87.1172C41.1094 87.1172 40.8184 87.0977 40.5332 87.0586C40.252 87.0195 39.9805 86.9629 39.7188 86.8887C39.4609 86.8105 39.2148 86.7148 38.9805 86.6016V84.9141C39.3867 85.0938 39.8086 85.2559 40.2461 85.4004C40.6836 85.5449 41.1172 85.6172 41.5469 85.6172C41.8438 85.6172 42.082 85.5781 42.2617 85.5C42.4453 85.4219 42.5781 85.3145 42.6602 85.1777C42.7422 85.041 42.7832 84.8848 42.7832 84.709C42.7832 84.4941 42.7109 84.3105 42.5664 84.1582C42.4219 84.0059 42.2227 83.8633 41.9688 83.7305C41.7188 83.5977 41.4355 83.4551 41.1191 83.3027C40.9199 83.209 40.7031 83.0957 40.4688 82.9629C40.2344 82.8262 40.0117 82.6602 39.8008 82.4648C39.5898 82.2695 39.416 82.0332 39.2793 81.7559C39.1465 81.4746 39.0801 81.1387 39.0801 80.748C39.0801 80.2363 39.1973 79.7988 39.4316 79.4355C39.666 79.0723 40 78.7949 40.4336 78.6035C40.8711 78.4082 41.3867 78.3105 41.9805 78.3105C42.4258 78.3105 42.8496 78.3633 43.252 78.4688C43.6582 78.5703 44.082 78.7188 44.5234 78.9141L43.9375 80.3262C43.543 80.166 43.1895 80.043 42.877 79.957C42.5645 79.8672 42.2461 79.8223 41.9219 79.8223C41.6953 79.8223 41.502 79.8594 41.3418 79.9336C41.1816 80.0039 41.0605 80.1055 40.9785 80.2383C40.8965 80.3672 40.8555 80.5176 40.8555 80.6895C40.8555 80.8926 40.9141 81.0645 41.0312 81.2051C41.1523 81.3418 41.332 81.4746 41.5703 81.6035C41.8125 81.7324 42.1133 81.8828 42.4727 82.0547C42.9102 82.2617 43.2832 82.4785 43.5918 82.7051C43.9043 82.9277 44.1445 83.1914 44.3125 83.4961C44.4805 83.7969 44.5645 84.1719 44.5645 84.6211ZM49.7441 87L47.6816 80.2793H47.6289C47.6367 80.4395 47.6484 80.6816 47.6641 81.0059C47.6836 81.3262 47.7012 81.668 47.7168 82.0312C47.7324 82.3945 47.7402 82.7227 47.7402 83.0156V87H46.1172V78.4336H48.5898L50.6172 84.9844H50.6523L52.8027 78.4336H55.2754V87H53.582V82.9453C53.582 82.6758 53.5859 82.3652 53.5938 82.0137C53.6055 81.6621 53.6191 81.3281 53.6348 81.0117C53.6504 80.6914 53.6621 80.4512 53.6699 80.291H53.6172L51.4082 87H49.7441Z" fill="white"/>
<path d="M41.4914 48.7171L49.6379 36H45.6552L39.5 45.6047L33.3448 36H29.3621L37.5086 48.7171L29 62H32.9828L39.5 51.8294L46.0172 62H50L41.4914 48.7171Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 10C10.8954 10 10 10.8954 10 12V21C10 22.1046 10.8954 23 12 23H21C22.1046 23 23 22.1046 23 21V12C23 10.8954 22.1046 10 21 10H12ZM14.6641 12.8906H13.9902H13.4238H12.7549V20H14.2148V17.9785L14.0691 14.6767L15.9922 20H16.9883L18.9114 14.6767L18.7656 17.9785V20H20.2305V12.8906H19.5566H18.9902H18.3164L16.4902 18.1104L14.6641 12.8906Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22036">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -1,6 +1,13 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#1F7244"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M43.304 114H41.2297L39.2375 110.76L37.2454 114H35.3L38.1418 109.582L35.4817 105.434H37.4856L39.3313 108.516L41.1418 105.434H43.0989L40.4094 109.682L43.304 114ZM44.3821 114V105.434H46.1985V112.5H49.6731V114H44.3821ZM56.2239 111.621C56.2239 112.395 55.9446 113.004 55.386 113.449C54.8313 113.895 54.0579 114.117 53.0657 114.117C52.1516 114.117 51.343 113.945 50.6399 113.602V111.914C51.218 112.172 51.7063 112.354 52.1047 112.459C52.5071 112.564 52.8743 112.617 53.2063 112.617C53.6047 112.617 53.9094 112.541 54.1204 112.389C54.3352 112.236 54.4426 112.01 54.4426 111.709C54.4426 111.541 54.3958 111.393 54.302 111.264C54.2083 111.131 54.0696 111.004 53.886 110.883C53.7063 110.762 53.3372 110.568 52.7786 110.303C52.2551 110.057 51.8625 109.82 51.6008 109.594C51.3391 109.367 51.1301 109.104 50.9739 108.803C50.8176 108.502 50.7395 108.15 50.7395 107.748C50.7395 106.99 50.9954 106.395 51.5071 105.961C52.0227 105.527 52.7336 105.311 53.6399 105.311C54.0852 105.311 54.509 105.363 54.9114 105.469C55.3176 105.574 55.7415 105.723 56.1829 105.914L55.5969 107.326C55.1399 107.139 54.761 107.008 54.4602 106.934C54.1633 106.859 53.8704 106.822 53.5813 106.822C53.2375 106.822 52.9739 106.902 52.7903 107.062C52.6067 107.223 52.5149 107.432 52.5149 107.689C52.5149 107.85 52.552 107.99 52.6262 108.111C52.7004 108.229 52.8176 108.344 52.9778 108.457C53.1418 108.566 53.5266 108.766 54.1321 109.055C54.9329 109.438 55.4817 109.822 55.7786 110.209C56.0754 110.592 56.2239 111.062 56.2239 111.621ZM64.7024 114H62.6282L60.636 110.76L58.6438 114H56.6985L59.5403 109.582L56.8801 105.434H58.884L60.7297 108.516L62.5403 105.434H64.4973L61.8079 109.682L64.7024 114Z" fill="white"/>
<path d="M52.75 61.63L64 45H58.5L50 57.56L41.5 45H36L47.25 61.63L35.5 79H41L50 65.7L59 79H64.5L52.75 61.63Z" fill="white"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22045)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#1F7244"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M33.3027 87H31.2285L29.2363 83.7598L27.2441 87H25.2988L28.1406 82.582L25.4805 78.4336H27.4844L29.3301 81.5156L31.1406 78.4336H33.0977L30.4082 82.6816L33.3027 87ZM34.3809 87V78.4336H36.1973V85.5H39.6719V87H34.3809ZM46.2227 84.6211C46.2227 85.1289 46.0996 85.5703 45.8535 85.9453C45.6074 86.3203 45.248 86.6094 44.7754 86.8125C44.3066 87.0156 43.7363 87.1172 43.0645 87.1172C42.7676 87.1172 42.4766 87.0977 42.1914 87.0586C41.9102 87.0195 41.6387 86.9629 41.377 86.8887C41.1191 86.8105 40.873 86.7148 40.6387 86.6016V84.9141C41.0449 85.0938 41.4668 85.2559 41.9043 85.4004C42.3418 85.5449 42.7754 85.6172 43.2051 85.6172C43.502 85.6172 43.7402 85.5781 43.9199 85.5C44.1035 85.4219 44.2363 85.3145 44.3184 85.1777C44.4004 85.041 44.4414 84.8848 44.4414 84.709C44.4414 84.4941 44.3691 84.3105 44.2246 84.1582C44.0801 84.0059 43.8809 83.8633 43.627 83.7305C43.377 83.5977 43.0938 83.4551 42.7773 83.3027C42.5781 83.209 42.3613 83.0957 42.127 82.9629C41.8926 82.8262 41.6699 82.6602 41.459 82.4648C41.248 82.2695 41.0742 82.0332 40.9375 81.7559C40.8047 81.4746 40.7383 81.1387 40.7383 80.748C40.7383 80.2363 40.8555 79.7988 41.0898 79.4355C41.3242 79.0723 41.6582 78.7949 42.0918 78.6035C42.5293 78.4082 43.0449 78.3105 43.6387 78.3105C44.084 78.3105 44.5078 78.3633 44.9102 78.4688C45.3164 78.5703 45.7402 78.7188 46.1816 78.9141L45.5957 80.3262C45.2012 80.166 44.8477 80.043 44.5352 79.957C44.2227 79.8672 43.9043 79.8223 43.5801 79.8223C43.3535 79.8223 43.1602 79.8594 43 79.9336C42.8398 80.0039 42.7188 80.1055 42.6367 80.2383C42.5547 80.3672 42.5137 80.5176 42.5137 80.6895C42.5137 80.8926 42.5723 81.0645 42.6895 81.2051C42.8105 81.3418 42.9902 81.4746 43.2285 81.6035C43.4707 81.7324 43.7715 81.8828 44.1309 82.0547C44.5684 82.2617 44.9414 82.4785 45.25 82.7051C45.5625 82.9277 45.8027 83.1914 45.9707 83.4961C46.1387 83.7969 46.2227 84.1719 46.2227 84.6211ZM54.7012 87H52.627L50.6348 83.7598L48.6426 87H46.6973L49.5391 82.582L46.8789 78.4336H48.8828L50.7285 81.5156L52.5391 78.4336H54.4961L51.8066 82.6816L54.7012 87Z" fill="white"/>
<path d="M41.4914 48.7171L49.6379 36H45.6552L39.5 45.6047L33.3448 36H29.3621L37.5086 48.7171L29 62H32.9828L39.5 51.8294L46.0172 62H50L41.4914 48.7171Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22045">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -1,8 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#1F7244"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M43.304 114H41.2297L39.2375 110.76L37.2454 114H35.3L38.1418 109.582L35.4817 105.434H37.4856L39.3313 108.516L41.1418 105.434H43.0989L40.4094 109.682L43.304 114ZM44.3821 114V105.434H46.1985V112.5H49.6731V114H44.3821ZM54.4719 114H52.6555V106.945H50.3293V105.434H56.7981V106.945H54.4719V114ZM65.0422 114H62.968L60.9758 110.76L58.9836 114H57.0383L59.8801 109.582L57.22 105.434H59.2239L61.0696 108.516L62.8801 105.434H64.8372L62.1477 109.682L65.0422 114Z" fill="white"/>
<path d="M52.75 61.63L64 45H58.5L50 57.56L41.5 45H36L47.25 61.63L35.5 79H41L50 65.7L59 79H64.5L52.75 61.63Z" fill="white"/>
<rect x="15" y="15" width="16" height="14" rx="2" fill="white"/>
<path d="M23.0898 26H21.6895V18.6348H19.1699V17.4336H25.6094V18.6348H23.0898V26Z" fill="#1F7244"/>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22041)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#1F7244"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M33.1328 87H31.0586L29.0664 83.7598L27.0742 87H25.1289L27.9707 82.582L25.3105 78.4336H27.3145L29.1602 81.5156L30.9707 78.4336H32.9277L30.2383 82.6816L33.1328 87ZM34.2109 87V78.4336H36.0273V85.5H39.502V87H34.2109ZM44.3008 87H42.4844V79.9453H40.1582V78.4336H46.627V79.9453H44.3008V87ZM54.8711 87H52.7969L50.8047 83.7598L48.8125 87H46.8672L49.709 82.582L47.0488 78.4336H49.0527L50.8984 81.5156L52.709 78.4336H54.666L51.9766 82.6816L54.8711 87Z" fill="white"/>
<path d="M41.4914 48.7171L49.6379 36H45.6552L39.5 45.6047L33.3448 36H29.3621L37.5086 48.7171L29 62H32.9828L39.5 51.8294L46.0172 62H50L41.4914 48.7171Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 10C10.8954 10 10 10.8954 10 12V21C10 22.1046 10.8954 23 12 23H21C22.1046 23 23 22.1046 23 21V12C23 10.8954 22.1046 10 21 10H12ZM17.2129 20V14.0381H19.4004V12.8906H17.2129H15.7529H13.5996V14.0381H15.7529V20H17.2129Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22041">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,11 +1,13 @@
<svg style="position: absolute; width: 0; height: 0; overflow: hidden;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 127" version="1.1" width="100" height="127">
<symbol id="svg-format-xps">
<path d="M95 23V119C95 119.796 94.6839 120.559 94.1213 121.121C93.5587 121.684 92.7956 122 92 122H8C7.20435 122 6.44129 121.684 5.87868 121.121C5.31607 120.559 5 119.796 5 119V8C5 7.20435 5.31607 6.44129 5.87868 5.87868C6.44129 5.31607 7.20435 5 8 5H77L95 23Z" fill="#51968F"/>
<circle cx="44.5" cy="62.5" r="2.5" fill="white"/>
<circle cx="54.5" cy="62.5" r="2.5" fill="white"/>
<path opacity="0.2" d="M95 23H80C79.2044 23 78.4413 22.6839 77.8787 22.1213C77.3161 21.5587 77 20.7956 77 20V5L95 23Z" fill="black"/>
<path d="M47.3198 114H45.2456L43.2534 110.76L41.2612 114H39.3159L42.1577 109.582L39.4976 105.434H41.5015L43.3472 108.516L45.1577 105.434H47.1147L44.4253 109.682L47.3198 114ZM50.2144 109.465H50.812C51.3706 109.465 51.7886 109.355 52.0659 109.137C52.3433 108.914 52.4819 108.592 52.4819 108.17C52.4819 107.744 52.3647 107.43 52.1304 107.227C51.8999 107.023 51.5366 106.922 51.0405 106.922H50.2144V109.465ZM54.3159 108.105C54.3159 109.027 54.0269 109.732 53.4487 110.221C52.8745 110.709 52.0562 110.953 50.9937 110.953H50.2144V114H48.3979V105.434H51.1343C52.1733 105.434 52.9624 105.658 53.5015 106.107C54.0444 106.553 54.3159 107.219 54.3159 108.105ZM60.9897 111.621C60.9897 112.395 60.7104 113.004 60.1519 113.449C59.5972 113.895 58.8237 114.117 57.8315 114.117C56.9175 114.117 56.1089 113.945 55.4058 113.602V111.914C55.9839 112.172 56.4722 112.354 56.8706 112.459C57.2729 112.564 57.6401 112.617 57.9722 112.617C58.3706 112.617 58.6753 112.541 58.8862 112.389C59.1011 112.236 59.2085 112.01 59.2085 111.709C59.2085 111.541 59.1616 111.393 59.0679 111.264C58.9741 111.131 58.8354 111.004 58.6519 110.883C58.4722 110.762 58.103 110.568 57.5444 110.303C57.021 110.057 56.6284 109.82 56.3667 109.594C56.105 109.367 55.896 109.104 55.7397 108.803C55.5835 108.502 55.5054 108.15 55.5054 107.748C55.5054 106.99 55.7612 106.395 56.2729 105.961C56.7886 105.527 57.4995 105.311 58.4058 105.311C58.8511 105.311 59.2749 105.363 59.6772 105.469C60.0835 105.574 60.5073 105.723 60.9487 105.914L60.3628 107.326C59.9058 107.139 59.5269 107.008 59.2261 106.934C58.9292 106.859 58.6362 106.822 58.3472 106.822C58.0034 106.822 57.7397 106.902 57.5562 107.062C57.3726 107.223 57.2808 107.432 57.2808 107.689C57.2808 107.85 57.3179 107.99 57.3921 108.111C57.4663 108.229 57.5835 108.344 57.7437 108.457C57.9077 108.566 58.2925 108.766 58.8979 109.055C59.6987 109.438 60.2476 109.822 60.5444 110.209C60.8413 110.592 60.9897 111.062 60.9897 111.621Z" fill="white"/>
<path d="M62 53V57.8L75.5 62.5L62 67.2V72L80 64.2V60.8L62 53Z" fill="white"/>
<path d="M19 64.2L37 72V67.2L23.5 62.5L37 57.8V53L19 60.8V64.2Z" fill="white"/>
</symbol>
<svg width="80" height="100" viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2964_22046)">
<path d="M75 19V92.6667C75 93.2855 74.7542 93.879 74.3166 94.3166C73.879 94.7542 73.2855 95 72.6667 95H7.33333C6.71449 95 6.121 94.7542 5.68342 94.3166C5.24583 93.879 5 93.2855 5 92.6667V7.33333C5 6.71449 5.24583 6.121 5.68342 5.68342C6.121 5.24583 6.71449 5 7.33333 5H61L75 19Z" fill="#51968F"/>
<path opacity="0.2" d="M75 19H63.3333C62.7145 19 62.121 18.7542 61.6834 18.3166C61.2458 17.879 61 17.2855 61 16.6667V5L75 19Z" fill="black"/>
<path d="M36.9297 87H34.8555L32.8633 83.7598L30.8711 87H28.9258L31.7676 82.582L29.1074 78.4336H31.1113L32.957 81.5156L34.7676 78.4336H36.7246L34.0352 82.6816L36.9297 87ZM40.7441 78.4336C41.8496 78.4336 42.6562 78.6719 43.1641 79.1484C43.6719 79.6211 43.9258 80.2734 43.9258 81.1055C43.9258 81.4805 43.8691 81.8398 43.7559 82.1836C43.6426 82.5234 43.457 82.8262 43.1992 83.0918C42.9453 83.3574 42.6055 83.5684 42.1797 83.7246C41.7539 83.877 41.2285 83.9531 40.6035 83.9531H39.8242V87H38.0078V78.4336H40.7441ZM40.6504 79.9219H39.8242V82.4648H40.4219C40.7617 82.4648 41.0566 82.4199 41.3066 82.3301C41.5566 82.2402 41.75 82.0996 41.8867 81.9082C42.0234 81.7168 42.0918 81.4707 42.0918 81.1699C42.0918 80.748 41.9746 80.4355 41.7402 80.2324C41.5059 80.0254 41.1426 79.9219 40.6504 79.9219ZM50.5996 84.6211C50.5996 85.1289 50.4766 85.5703 50.2305 85.9453C49.9844 86.3203 49.625 86.6094 49.1523 86.8125C48.6836 87.0156 48.1133 87.1172 47.4414 87.1172C47.1445 87.1172 46.8535 87.0977 46.5684 87.0586C46.2871 87.0195 46.0156 86.9629 45.7539 86.8887C45.4961 86.8105 45.25 86.7148 45.0156 86.6016V84.9141C45.4219 85.0938 45.8438 85.2559 46.2812 85.4004C46.7188 85.5449 47.1523 85.6172 47.582 85.6172C47.8789 85.6172 48.1172 85.5781 48.2969 85.5C48.4805 85.4219 48.6133 85.3145 48.6953 85.1777C48.7773 85.041 48.8184 84.8848 48.8184 84.709C48.8184 84.4941 48.7461 84.3105 48.6016 84.1582C48.457 84.0059 48.2578 83.8633 48.0039 83.7305C47.7539 83.5977 47.4707 83.4551 47.1543 83.3027C46.9551 83.209 46.7383 83.0957 46.5039 82.9629C46.2695 82.8262 46.0469 82.6602 45.8359 82.4648C45.625 82.2695 45.4512 82.0332 45.3145 81.7559C45.1816 81.4746 45.1152 81.1387 45.1152 80.748C45.1152 80.2363 45.2324 79.7988 45.4668 79.4355C45.7012 79.0723 46.0352 78.7949 46.4688 78.6035C46.9062 78.4082 47.4219 78.3105 48.0156 78.3105C48.4609 78.3105 48.8848 78.3633 49.2871 78.4688C49.6934 78.5703 50.1172 78.7188 50.5586 78.9141L49.9727 80.3262C49.5781 80.166 49.2246 80.043 48.9121 79.957C48.5996 79.8672 48.2812 79.8223 47.957 79.8223C47.7305 79.8223 47.5371 79.8594 47.377 79.9336C47.2168 80.0039 47.0957 80.1055 47.0137 80.2383C46.9316 80.3672 46.8906 80.5176 46.8906 80.6895C46.8906 80.8926 46.9492 81.0645 47.0664 81.2051C47.1875 81.3418 47.3672 81.4746 47.6055 81.6035C47.8477 81.7324 48.1484 81.8828 48.5078 82.0547C48.9453 82.2617 49.3184 82.4785 49.627 82.7051C49.9395 82.9277 50.1797 83.1914 50.3477 83.4961C50.5156 83.7969 50.5996 84.1719 50.5996 84.6211Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M30 45.7895V42L16 48.1579V50.8421L30 57V53.2105L19.5 49.5L30 45.7895ZM36 51.5C37.1046 51.5 38 50.6046 38 49.5C38 48.3954 37.1046 47.5 36 47.5C34.8954 47.5 34 48.3954 34 49.5C34 50.6046 34.8954 51.5 36 51.5ZM46 49.5C46 50.6046 45.1046 51.5 44 51.5C42.8954 51.5 42 50.6046 42 49.5C42 48.3954 42.8954 47.5 44 47.5C45.1046 47.5 46 48.3954 46 49.5ZM50 45.7895V42L64 48.1579V50.8421L50 57V53.2105L60.5 49.5L50 45.7895Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0_2964_22046">
<rect width="80" height="100" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

After

Width:  |  Height:  |  Size: 88 KiB

View file

@ -0,0 +1,147 @@
<svg aria-hidden="true" style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="no-arrow-5" viewBox="0 0 44 20">
<rect x="11" y="8" width="22" height="3"/>
</symbol>
<symbol id="arrow-1" viewBox="0 0 44 20">
<path d="M17 7V9H34V12H17V14L9 10.5L17 7Z"/>
</symbol>
<symbol id="arrow-2" viewBox="0 0 44 20">
<path d="M21 7V9H34V12H21V14L9 10.5L21 7Z"/>
</symbol>
<symbol id="arrow-3" viewBox="0 0 44 20">
<path d="M28 7V9H34V12H28V14L9 10.5L28 7Z"/>
</symbol>
<symbol id="arrow-4" viewBox="0 0 44 20">
<path d="M17 5V8H34V11H17V14L9 9.5L17 5Z"/>
</symbol>
<symbol id="arrow-5" viewBox="0 0 44 20">
<path d="M23 5V8H34V11H23V14L9 9.5L23 5Z"/>
</symbol>
<symbol id="arrow-6" viewBox="0 0 44 20">
<path d="M28 6V8H34V11H28V13L9 9.5L28 6Z"/>
</symbol>
<symbol id="arrow-7" viewBox="0 0 44 20">
<path d="M17 3V8H34V11H17V16L9 9.5L17 3Z"/>
</symbol>
<symbol id="arrow-8" viewBox="0 0 44 20">
<path d="M22 3V8H34V11H22V16L9 9.5L22 3Z"/>
</symbol>
<symbol id="arrow-9" viewBox="0 0 44 20">
<path d="M30 3V8H34V11H30V16L9 9.5L30 3Z"/>
</symbol>
<symbol id="dimond-arrow-1" viewBox="0 0 44 20">
<path d="M16.5 5L19.5 8H34V11H19.5L16.5 14L12 9.5L16.5 5Z"/>
</symbol>
<symbol id="dimond-arrow-2" viewBox="0 0 44 20">
<path d="M16.5 5L21.5 8H34V11H21.5L16.5 14L10 9.5L16.5 5Z"/>
</symbol>
<symbol id="dimond-arrow-3" viewBox="0 0 44 20">
<path d="M16.5 5L23.5 8H34V11H23.5L16.5 14L8 9.5L16.5 5Z"/>
</symbol>
<symbol id="dimond-arrow-4" viewBox="0 0 44 20">
<path d="M17.5 4L19.5 8H34V11H19.5L17.5 15L14.5 9.5L17.5 4Z"/>
</symbol>
<symbol id="dimond-arrow-5" viewBox="0 0 44 20">
<path d="M17.5 4L21.5 8H34V11H21.5L17.5 15L12.5 9.5L17.5 4Z"/>
</symbol>
<symbol id="dimond-arrow-6" viewBox="0 0 44 20">
<path d="M17.5 4L23.5 8H34V11H23.5L17.5 15L10 9.5L17.5 4Z"/>
</symbol>
<symbol id="dimond-arrow-7" viewBox="0 0 44 20">
<path d="M17.5 3L20 8H34V11H20L17.5 16L14 9.5L17.5 3Z"/>
</symbol>
<symbol id="dimond-arrow-8" viewBox="0 0 44 20">
<path d="M17.5 3L21 8H34V11H21L17.5 16L13 9.5L17.5 3Z"/>
</symbol>
<symbol id="dimond-arrow-9" viewBox="0 0 44 20">
<path d="M17.5 3L22.5 8H34V11H22.5L17.5 16L11 9.5L17.5 3Z"/>
</symbol>
<symbol id="open-arrow-1" viewBox="0 0 44 20">
<path d="M13.1693 4.78973L8.41882 9.54019L13.1693 14.2906L15.2906 12.1693L14.1213 11H34V8.00002H14.2016L15.2906 6.91105L13.1693 4.78973Z"/>
</symbol>
<symbol id="open-arrow-2" viewBox="0 0 44 20">
<path d="M18.8988 4.62573L7.75769 9.49998L18.8988 14.3742L20.1013 11.6257L18.671 11H34V7.99998H18.6709L20.1013 7.3742L18.8988 4.62573Z"/>
</symbol>
<symbol id="open-arrow-3" viewBox="0 0 44 20">
<path d="M25.0739 4.06183L6.71997 9.50003L25.0739 14.9382L25.9261 12.0618L22.3426 11H34V8.00003H22.3426L25.9261 6.93822L25.0739 4.06183Z"/>
</symbol>
<symbol id="open-arrow-4" viewBox="0 0 44 20">
<path d="M13.997 3.88458L7.80774 9.44993L13.9871 15.1064L16.0128 12.8935L13.9442 11H34V7.99998H13.907L16.0029 6.11536L13.997 3.88458Z"/>
</symbol>
<symbol id="open-arrow-5" viewBox="0 0 44 20">
<path d="M19.3316 3.65717L7.698 9.44792L19.322 15.338L20.678 12.662L17.3981 11H34V7.99998H17.3392L20.6684 6.34285L19.3316 3.65717Z"/>
</symbol>
<symbol id="open-arrow-6" viewBox="0 0 44 20">
<path d="M24.5435 3.57117L6.151 9.44716L24.536 15.4265L25.4639 12.5736L20.6256 11H34V8.00001H20.5386L25.4564 6.42887L24.5435 3.57117Z"/>
</symbol>
<symbol id="open-arrow-7" viewBox="0 0 44 20">
<path d="M14.9864 2.89429L7.78015 9.50002L14.9864 16.1057L17.0136 13.8943L13.8562 11H34V8.00002H13.8562L17.0136 5.10575L14.9864 2.89429Z"/>
</symbol>
<symbol id="open-arrow-8" viewBox="0 0 44 20">
<path d="M18.7178 2.72009L7.62341 9.50002L18.7178 16.2799L20.2822 13.7201L15.8311 11H34V8.00002H15.8311L20.2822 5.27994L18.7178 2.72009Z"/>
</symbol>
<symbol id="open-arrow-9" viewBox="0 0 44 20">
<path d="M25.9837 2.59167L7.14282 9.49999L25.9837 16.4083L27.0164 13.5917L19.9482 11H34V7.99999H19.9482L27.0164 5.4083L25.9837 2.59167Z"/>
</symbol>
<symbol id="oval-arrow-1" viewBox="0 0 44 20">
<path d="M19.6632 11C19.1015 12.1825 17.8962 13 16.5 13C14.567 13 13 11.433 13 9.5C13 7.567 14.567 6 16.5 6C17.8962 6 19.1015 6.81753 19.6632 8H34V11H19.6632Z"/>
</symbol>
<symbol id="oval-arrow-2" viewBox="0 0 44 20">
<path d="M21.4707 11C20.588 12.1825 18.694 13 16.5 13C13.4624 13 11 11.433 11 9.5C11 7.567 13.4624 6 16.5 6C18.694 6 20.588 6.81753 21.4707 8H34V11H21.4707Z"/>
</symbol>
<symbol id="oval-arrow-3" viewBox="0 0 44 20">
<path d="M22.3745 11C21.3313 12.1825 19.0929 13 16.5 13C12.9101 13 10 11.433 10 9.5C10 7.567 12.9101 6 16.5 6C19.0929 6 21.3313 6.81753 22.3745 8H34V11H22.3745Z"/>
</symbol>
<symbol id="oval-arrow-4" viewBox="0 0 44 20">
<path d="M20.8008 11C20.3204 12.7478 19.0239 14 17.5 14C15.567 14 14 11.9853 14 9.5C14 7.01472 15.567 5 17.5 5C19.0239 5 20.3204 6.25221 20.8008 8H34V11H20.8008Z"/>
</symbol>
<symbol id="oval-arrow-5" viewBox="0 0 44 20">
<path d="M21.7439 11C21.1262 12.7478 19.4593 14 17.5 14C15.0147 14 13 11.9853 13 9.5C13 7.01472 15.0147 5 17.5 5C19.4593 5 21.1262 6.25221 21.7439 8H34V11H21.7439Z"/>
</symbol>
<symbol id="oval-arrow-6" viewBox="0 0 44 20">
<path d="M23.5732 11C22.5436 12.7478 19.7655 14 16.5 14C12.3579 14 9 11.9853 9 9.5C9 7.01472 12.3579 5 16.5 5C19.7655 5 22.5436 6.25221 23.5732 8H34V11H23.5732Z"/>
</symbol>
<symbol id="oval-arrow-7" viewBox="0 0 44 20">
<path d="M20.8683 11C20.4528 13.3085 19.1021 15 17.5 15C15.567 15 14 12.5376 14 9.5C14 6.46243 15.567 4 17.5 4C19.1021 4 20.4528 5.69149 20.8683 8H34V11H20.8683Z"/>
</symbol >
<symbol id="oval-arrow-8" viewBox="0 0 44 20">
<path d="M21.8306 11C21.2964 13.3085 19.5598 15 17.5 15C15.0147 15 13 12.5376 13 9.5C13 6.46243 15.0147 4 17.5 4C19.5598 4 21.2964 5.69149 21.8306 8H34V11H21.8306Z"/>
</symbol>
<symbol id="oval-arrow-9" viewBox="0 0 44 20">
<path d="M22.793 11C22.14 13.3085 20.0176 15 17.5 15C14.4624 15 12 12.5376 12 9.5C12 6.46243 14.4624 4 17.5 4C20.0176 4 22.14 5.69149 22.793 8H34V11H22.793Z"/>
</symbol>
<symbol id="stealth-arrow-1" viewBox="0 0 44 20">
<path d="M17 6L16 8H34V11H16L17 13L9 9.5L17 6Z"/>
</symbol>
<symbol id="stealth-arrow-2" viewBox="0 0 44 20">
<path d="M21 6L19 8H34V11H19L21 13L9 9.5L21 6Z"/>
</symbol>
<symbol id="stealth-arrow-3" viewBox="0 0 44 20">
<path d="M29 6L27 8H34V11H27L29 13L9 9.5L29 6Z"/>
</symbol>
<symbol id="stealth-arrow-4" viewBox="0 0 44 20">
<path d="M17 5L15 8H34V11H15L17 14L9 9.5L17 5Z" />
</symbol>
<symbol id="stealth-arrow-5" viewBox="0 0 44 20">
<path d="M20 5L18 8H34V11H18L20 14L9 9.5L20 5Z"/>
</symbol>
<symbol id="stealth-arrow-6" viewBox="0 0 44 20">
<path d="M29 5L27 8H34V11H27L29 14L9 9.5L29 5Z" />
</symbol>
<symbol id="stealth-arrow-7" viewBox="0 0 44 20">
<path d="M17 3L14 8H34V11H14L17 16L9 9.5L17 3Z"/>
</symbol>
<symbol id="stealth-arrow-8" viewBox="0 0 44 20">
<path d="M21 3L18 8H34V11H18L21 16L9 9.5L21 3Z"/>
</symbol>
<symbol id="stealth-arrow-9" viewBox="0 0 44 20">
<path d="M29 3L26 8H34V11H26L29 16L9 9.5L29 3Z" />
</symbol>
</svg>

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 B

After

Width:  |  Height:  |  Size: 135 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 392 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 B

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 439 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 229 B

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 314 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 525 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 198 B

After

Width:  |  Height:  |  Size: 125 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 360 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 147 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 149 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 253 B

After

Width:  |  Height:  |  Size: 145 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 436 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 754 B

View file

@ -0,0 +1,41 @@
<svg aria-hidden="true" style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<symbol id="svg-icon-accent" viewBox="0 0 20 20">
<path d="M8.459 15.146c-.435 0-.816-.105-1.143-.315-.327-.21-.58-.52-.761-.93-.181-.41-.271-.91-.271-1.501 0-.59.06-1.16.183-1.707A7.107 7.107 0 0 1 7 9.17c.23-.469.506-.879.828-1.23a3.676 3.676 0 0 1 1.099-.82 2.98 2.98 0 0 1 1.31-.294c.362 0 .674.069.938.205.269.137.49.318.667.542.18.22.322.454.424.703h.074l.468-1.303h.93L12.04 15h-.974l.22-1.553h-.059c-.22.293-.47.57-.754.828a3.81 3.81 0 0 1-.93.63 2.48 2.48 0 0 1-1.084.242zm.395-1.01c.376 0 .747-.137 1.114-.41a4.08 4.08 0 0 0 .996-1.121 5.731 5.731 0 0 0 .68-1.597 5.74 5.74 0 0 0 .198-1.472c0-.503-.134-.908-.402-1.216-.264-.312-.625-.468-1.084-.468-.327 0-.635.083-.923.249a2.69 2.69 0 0 0-.784.68 4.41 4.41 0 0 0-.593 1.011c-.166.381-.295.796-.388 1.246-.088.449-.132.91-.132 1.384 0 .561.115.989.344 1.282.23.288.554.432.974.432zm3.472-8.628a.606.606 0 0 1-.425-.154c-.112-.103-.168-.249-.168-.44 0-.214.063-.405.19-.57.132-.172.322-.257.572-.257.19 0 .332.051.424.154.093.102.14.239.14.41 0 .264-.076.474-.228.63a.7.7 0 0 1-.505.227zm-2.68 0a.626.626 0 0 1-.44-.154c-.108-.103-.161-.249-.161-.44 0-.214.063-.405.19-.57.127-.172.313-.257.557-.257a.63.63 0 0 1 .322.073c.083.044.144.11.183.198.044.083.066.18.066.293 0 .264-.073.474-.22.63a.677.677 0 0 1-.498.227z"></path>
</symbol>
<symbol id="svg-icon-bracket" viewBox="0 0 20 20">
<path d="m5.847 14 3.494-4.13-1.743-3.897h1.23l1.29 3.032 2.445-3.032h1.414L10.623 9.92l1.86 4.08h-1.245l-1.406-3.193L7.26 14H5.847zM14 18v-1.159c.382-.011.708-.076.977-.193.268-.112.473-.288.612-.53.145-.234.217-.542.217-.923V12.65c0-.588.137-1.058.411-1.41.28-.354.7-.583 1.264-.69v-.1c-.574-.112-.998-.345-1.272-.697-.268-.353-.403-.82-.403-1.403V5.797c0-.387-.07-.7-.21-.94a1.234 1.234 0 0 0-.611-.53c-.27-.118-.597-.18-.985-.185V3c.64.006 1.191.106 1.651.302.46.196.811.493 1.054.89.248.393.373.89.373 1.496V8.24c0 .403.072.728.217.974.144.24.359.417.643.53.29.111.643.167 1.062.167v1.16c-.419 0-.773.055-1.062.167a1.264 1.264 0 0 0-.643.53c-.145.24-.218.556-.218.948v2.604c0 .593-.129 1.089-.387 1.486a2.347 2.347 0 0 1-1.078.89c-.46.202-.997.303-1.612.303z"></path>
<path d="M6 18c-.64-.006-1.194-.11-1.659-.31a2.256 2.256 0 0 1-1.062-.891c-.243-.398-.364-.896-.364-1.495v-2.57c0-.398-.073-.717-.217-.957a1.252 1.252 0 0 0-.644-.538c-.284-.112-.635-.168-1.054-.168V9.912c.419-.006.77-.062 1.054-.168.284-.112.499-.288.644-.529.144-.24.217-.56.217-.957V5.67c0-.6.129-1.095.387-1.487a2.348 2.348 0 0 1 1.078-.89C4.845 3.098 5.385 3 6 3v1.142a2.69 2.69 0 0 0-.984.193 1.32 1.32 0 0 0-.62.538c-.14.24-.21.551-.21.932v2.528c0 .582-.137 1.05-.41 1.403-.275.352-.696.585-1.264.697v.1c.578.107 1.002.337 1.271.69.269.352.403.822.403 1.41v2.579c0 .38.07.688.21.924.139.24.343.417.612.529.274.112.604.17.992.176V18z"></path>
</symbol>
<symbol id="svg-icon-fraction" viewBox="0 0 20 20">
<path d="M3 17 17.142 2.858l-.707-.707L2.293 16.293 3 17zM2.566 9l2.795-3.316-1.37-3.141h1.206l.944 2.309 1.822-2.309h1.365L6.633 5.736 8.109 9H6.885L5.854 6.58 3.926 9h-1.36zM10.9 18.889c-.195 0-.353-.012-.474-.035a2.876 2.876 0 0 1-.352-.088v-.944c.106.024.22.045.346.065.121.023.254.035.398.035.332 0 .614-.104.844-.31.234-.208.457-.5.668-.88l.375-.673-.978-6.516h1.171l.417 3.234c.035.239.062.495.082.768.019.273.033.533.04.78.012.245.018.45.018.615h.035a49.4 49.4 0 0 1 .229-.528c.097-.227.2-.463.31-.709.114-.25.221-.469.323-.656l1.828-3.504h1.26l-4.085 7.523a5.194 5.194 0 0 1-.68 1.014 2.39 2.39 0 0 1-.79.604 2.251 2.251 0 0 1-.985.205z"></path>
</symbol>
<symbol id="svg-icon-function" viewBox="0 0 20 20">
<path d="M3.48 15.146c-.487 0-.917-.048-1.288-.146a4.472 4.472 0 0 1-.96-.366v-1.128c.26.156.586.303.982.44.4.136.81.204 1.23.204.415 0 .76-.056 1.033-.168.278-.112.486-.266.623-.461.141-.2.212-.433.212-.696 0-.21-.046-.39-.14-.542a1.47 1.47 0 0 0-.439-.454 8.426 8.426 0 0 0-.805-.506 6.3 6.3 0 0 1-.953-.637 2.4 2.4 0 0 1-.593-.703 1.959 1.959 0 0 1-.198-.901c0-.459.113-.857.337-1.194.225-.337.54-.598.945-.784.41-.185.889-.278 1.436-.278.483 0 .93.056 1.34.169.41.107.764.232 1.062.373l-.395.974a6.514 6.514 0 0 0-.872-.337 3.801 3.801 0 0 0-1.135-.153c-.46 0-.825.105-1.099.314-.268.21-.403.494-.403.85 0 .186.04.352.117.498.083.147.225.293.425.44.2.141.474.307.82.498.338.195.64.395.909.6.273.2.488.432.644.696.161.259.242.579.242.96 0 .522-.124.966-.373 1.332-.25.362-.606.638-1.07.828-.459.186-1.003.278-1.633.278zM7.444 15 9.15 6.973h1.223L8.668 15H7.444zm2.732-9.434a.73.73 0 0 1-.49-.168c-.128-.117-.191-.28-.191-.49 0-.162.031-.313.095-.455a.79.79 0 0 1 .747-.469c.215 0 .376.057.483.169.108.112.162.268.162.469 0 .288-.084.517-.25.688-.166.171-.351.256-.556.256zM10.586 15l1.722-8.064h1.076l-.19 1.545h.015c.185-.253.407-.51.666-.769.264-.263.569-.483.916-.659.351-.18.75-.27 1.194-.27.43 0 .798.08 1.105.24.308.157.545.387.71.69.167.297.25.659.25 1.083 0 .225-.017.452-.051.682a9.69 9.69 0 0 1-.11.615L16.819 15h-1.296l1.084-5.068c.044-.22.078-.408.103-.564a2.39 2.39 0 0 0 .043-.44c0-.342-.092-.6-.278-.776-.185-.176-.459-.264-.82-.264-.357 0-.732.122-1.128.366-.395.245-.762.63-1.099 1.158-.337.522-.598 1.206-.783 2.05L11.89 15h-1.304z"></path>
</symbol>
<symbol id="svg-icon-integral" viewBox="0 0 20 20">
<path d="M5.86 17a3.094 3.094 0 0 1-.86-.125v-1.018c.089.035.2.069.333.103.134.039.278.059.434.059.449 0 .769-.166.96-.498.19-.328.286-.743.286-1.246V4.717c0-.971.194-1.667.58-2.087.391-.42.911-.63 1.56-.63.151 0 .305.012.46.037.16.02.29.048.387.088v1.003c-.089-.04-.2-.073-.333-.103a1.742 1.742 0 0 0-.434-.05c-.297 0-.533.077-.706.233a1.295 1.295 0 0 0-.36.638 3.436 3.436 0 0 0-.107.893v9.514c0 .992-.204 1.697-.613 2.117-.41.42-.938.63-1.587.63zM9.4 14l3.029-3.58-1.511-3.377h1.066l1.118 2.628 2.12-2.628h1.225l-2.907 3.421L15.152 14h-1.08l-1.218-2.768L10.626 14H9.401z"></path>
</symbol>
<symbol id="svg-icon-largeOperator" viewBox="0 0 20 20">
<path d="M3 16v-1l3.457-4.888L3 6V5h7v1H4.5l3.349 4.098L4.5 15H10v1H3zM10.4 14l3.029-3.58-1.511-3.377h1.066l1.118 2.628 2.12-2.628h1.225l-2.907 3.421L16.152 14h-1.08l-1.218-2.768L11.626 14h-1.225z"></path>
</symbol>
<symbol id="svg-icon-limAndLog" viewBox="0 0 20 20">
<path d="m1.437 15 2.27-10.637h1.135L2.579 15H1.437zM4.292 15l1.593-7.492h1.141L5.434 15H4.292zm2.55-8.805a.682.682 0 0 1-.458-.157c-.119-.11-.178-.262-.178-.458 0-.15.03-.292.089-.424a.738.738 0 0 1 .697-.438c.2 0 .351.053.451.158.1.105.15.25.15.437 0 .27-.077.484-.232.643a.71.71 0 0 1-.52.24zM7.133 15l1.593-7.492h.93l-.178 1.449h.068c.164-.237.362-.476.595-.718.232-.246.501-.45.806-.615.31-.169.661-.253 1.053-.253.529 0 .93.153 1.203.458.274.305.433.722.479 1.251h.048c.182-.278.4-.547.656-.807.255-.264.545-.48.868-.649a2.328 2.328 0 0 1 1.08-.253c.579 0 1.026.157 1.34.472.314.314.472.77.472 1.367 0 .214-.014.417-.041.608-.023.192-.06.388-.11.588L17.025 15h-1.149l1.012-4.717c.04-.205.07-.383.089-.533.023-.15.034-.294.034-.43 0-.306-.082-.548-.246-.725-.164-.178-.417-.267-.759-.267-.242 0-.492.066-.752.198-.26.133-.513.333-.759.602-.241.264-.46.6-.656 1.005a6.403 6.403 0 0 0-.472 1.429L12.636 15H11.5l.998-4.696c.041-.21.07-.39.09-.54a2.79 2.79 0 0 0 .033-.397c0-.323-.075-.576-.225-.759-.15-.186-.397-.28-.739-.28-.241 0-.494.064-.758.192a2.56 2.56 0 0 0-.76.601 4.46 4.46 0 0 0-.676 1.046c-.205.424-.37.934-.492 1.531L8.275 15H7.133z"></path>
</symbol>
<symbol id="svg-icon-matrix" viewBox="0 0 20 20">
<path d="M2 1v18h4v-1H3V2h3V1H2zM18 1h-4v1h3v16h-3v1h4V1z"></path>
<path d="M14.053 10.713v5.567h-.857v-3.593c0-.152.002-.294.007-.425l.012-.393.026-.381c-.09.08-.189.165-.299.254-.11.089-.226.173-.349.254l-.692.488-.419-.596 1.695-1.175h.876zM8.053 3.713V9.28h-.857V5.688c0-.153.002-.295.007-.426l.012-.393.026-.381c-.09.08-.189.165-.299.254-.11.089-.226.173-.349.254l-.692.488-.419-.596 1.695-1.175h.876zM7.247 16.382c-.664 0-1.162-.246-1.492-.737-.33-.495-.495-1.214-.495-2.158 0-.927.159-1.637.476-2.133.318-.499.821-.748 1.511-.748.664 0 1.164.245 1.498.736.339.49.508 1.206.508 2.145 0 .923-.159 1.636-.476 2.14-.318.503-.827.755-1.53.755zm0-.762c.39 0 .675-.173.857-.52.182-.352.273-.89.273-1.613 0-.72-.091-1.252-.273-1.6-.182-.35-.468-.526-.857-.526-.38 0-.662.175-.844.527-.178.347-.267.884-.267 1.612 0 .715.09 1.248.267 1.6.178.347.459.52.844.52zM13.247 9.382c-.664 0-1.162-.246-1.492-.736-.33-.496-.495-1.215-.495-2.159 0-.926.159-1.637.476-2.133.318-.499.821-.749 1.511-.749.665 0 1.164.246 1.498.737.339.49.508 1.206.508 2.145 0 .923-.159 1.636-.476 2.14-.317.503-.827.755-1.53.755zm0-.762c.39 0 .675-.173.857-.52.182-.352.273-.89.273-1.613 0-.72-.091-1.252-.273-1.6-.182-.35-.468-.526-.857-.526-.38 0-.662.175-.844.527-.178.347-.267.884-.267 1.612 0 .715.09 1.248.267 1.6.178.347.459.52.844.52z"></path>
</symbol>
<symbol id="svg-icon-operator" viewBox="0 0 20 20">
<path d="M3 14h14v1H3v-1zM3 16h14v1H3v-1zM5.575 13l.154-.762 5.31-9.939h1.267l1.15 9.954-.154.747H5.575zm1.604-1.106h5.04l-.601-5.61c-.03-.25-.056-.493-.08-.733a47.61 47.61 0 0 1-.089-1.333c-.01-.21-.014-.407-.014-.593-.113.278-.232.557-.36.835-.126.278-.263.566-.41.864-.146.293-.307.606-.483.938L7.18 11.894z"></path>
</symbol>
<symbol id="svg-icon-radical" viewBox="0 0 20 20">
<path d="m9.4 14 3.029-3.58-1.511-3.377h1.066l1.118 2.628 2.12-2.628h1.225l-2.907 3.421L15.152 14h-1.08l-1.218-2.768L10.626 14H9.401z"></path>
<path d="M5.544 16.102 3.5 10.375H2.167v-.96h2.11l1.75 4.981L10.05 3H17v1h-6.34l-4.2 12.102h-.916z"></path>
</symbol>
<symbol id="svg-icon-script" viewBox="0 0 20 20">
<path d="M6.905 15.146c-.6 0-1.118-.12-1.553-.358a2.484 2.484 0 0 1-1.003-1.04c-.23-.454-.345-.996-.345-1.626 0-.65.093-1.287.279-1.912.19-.63.461-1.199.813-1.707A4.19 4.19 0 0 1 6.363 7.28a3.152 3.152 0 0 1 1.67-.454c.737 0 1.296.166 1.677.498.38.327.571.779.571 1.355 0 .405-.095.779-.285 1.12-.186.343-.474.64-.865.894-.385.25-.876.445-1.472.586-.59.137-1.291.205-2.102.205H5.28l-.03.293a6.65 6.65 0 0 0-.007.3c0 .645.156 1.15.469 1.517.312.361.781.542 1.406.542.386 0 .75-.054 1.092-.161a8.72 8.72 0 0 0 1.083-.44v1.047a8.019 8.019 0 0 1-1.09.41 4.842 4.842 0 0 1-1.297.154zm-1.45-4.658h.175c.625 0 1.2-.053 1.722-.16.522-.113.942-.294 1.26-.543a1.23 1.23 0 0 0 .475-1.01.887.887 0 0 0-.278-.674c-.185-.176-.469-.264-.85-.264-.336 0-.668.105-.996.315-.327.205-.625.505-.893.9-.264.396-.469.875-.615 1.436zM11.644 9l2.096-2.487-1.028-2.356h.905l.708 1.732 1.366-1.732h1.024l-2.021 2.395L15.8 9h-.918l-.774-1.815L12.664 9h-1.02z"></path>
</symbol>
<symbol id="svg-icon-symbols" viewBox="0 0 20 20">
<path d="M9.993 5.222c-.806 0-1.475.154-2.007.462a2.81 2.81 0 0 0-1.18 1.303c-.258.567-.388 1.243-.388 2.03 0 .692.086 1.335.257 1.925.176.586.454 1.133.835 1.641.38.503.881.977 1.501 1.42V15H4.72v-1.099h2.747a6.264 6.264 0 0 1-1.201-1.208 5.796 5.796 0 0 1-.85-1.64 6.503 6.503 0 0 1-.315-2.08c0-.987.193-1.842.579-2.564a4.025 4.025 0 0 1 1.67-1.685c.732-.4 1.613-.6 2.644-.6 1.05 0 1.94.197 2.673.593.732.39 1.29.947 1.67 1.67.38.722.571 1.58.571 2.57 0 .767-.105 1.463-.315 2.088a5.747 5.747 0 0 1-.842 1.655 5.833 5.833 0 0 1-1.201 1.201h2.74V15h-4.293v-.996c.63-.44 1.135-.913 1.516-1.421s.657-1.057.828-1.648a6.75 6.75 0 0 0 .264-1.919c0-.79-.132-1.47-.396-2.036a2.83 2.83 0 0 0-1.201-1.304c-.532-.302-1.204-.454-2.014-.454z"></path>
</symbol>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -63,20 +63,31 @@
.form-control {
cursor: pointer;
.image {
.img-arrows {
width: 100%;
height: 100%;
height: 18px;
display: block;
background-color: transparent;
margin: 0 0 0 -3px;
margin: auto;
text-align: center;
overflow: hidden;
padding-right: 4px;
.svg-mirror{
margin-right: 1px;
}
}
}
}
.img-arrows {
.background-ximage-v2('right-panels/Begin-EndStyle.png', 480px);
-webkit-filter: @img-border-type-filter;
filter: @img-border-type-filter;
.img-arrows svg{
width: 44px;
height: 20px;
fill: @icon-normal-ie;
fill: @icon-normal;
&.svg-mirror{
transform: scale(-1,1);
}
}
.item-arrow {

View file

@ -1097,6 +1097,7 @@
width: 52px;
padding: 5px;
fill: @icon-normal-ie;
fill: @icon-normal;
.btn& {

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