Initial commit

This commit is contained in:
Ubuntu
2026-03-01 13:23:48 +00:00
commit b66c738e0b
260 changed files with 58871 additions and 0 deletions

View File

@@ -0,0 +1,95 @@
(function ($) {
"use strict";
/**
* @param $scope The Widget wrapper element as a jQuery element
* @param $ The jQuery alias
*/
function mybe_note_undefined($selector, $data_atts) {
return ($selector.data($data_atts) !== undefined) ? $selector.data($data_atts) : '';
}
/**
* Swiper activation
* @param $scope
* @param $
*/
var WidgetSliderHandler = function($scope, $) {
var slider_el = $scope.find(".tp-demo-active").eq(0);
if (slider_el.length === 0)
return;
var settings = slider_el.data('settings');
var arrows = settings['arrows'];
var dots = settings['dots'];
var autoplay = settings['autoplay'];
var autoplay_speed = parseInt(settings['autoplay_speed']) || 2500;
var infinite = settings['infinite'];
var for_xl_desktop = settings['for_xl_desktop'];
var slidesToShow = settings['slidesToShow'];
var for_laptop = settings['for_laptop'];
var for_tablet = settings['for_tablet'];
var for_mobile = settings['for_mobile'];
var for_xs_mobile = settings['for_xs_mobile'];
var tpslider = new Swiper('.tp-demo-active', {
slidesPerView: for_xl_desktop,
spaceBetween: 30,
// direction: 'vertical',
loop: infinite,
autoplay: {
delay: autoplay_speed,
},
// If we need pagination
pagination: {
el: '.swiper-pagination',
clickable: true,
},
// Navigation arrows
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
// And if we need scrollbar
// scrollbar: {
// el: '.swiper-scrollbar',
// },
breakpoints: {
0: {
slidesPerView: for_xs_mobile,
},
550: {
slidesPerView: for_mobile,
},
768: {
slidesPerView: for_tablet,
},
992: {
slidesPerView: for_laptop,
},
1200: {
slidesPerView: slidesToShow,
},
1599: {
slidesPerView: for_xl_desktop,
},
}
});
if (true !== autoplay) {
tpslider.autoplay.stop();
}
};
// // Make sure you run this code under Elementor.
$( window ).on( 'elementor/frontend/init', function() {
elementorFrontend.hooks.addAction( 'frontend/element_ready/portfolio.default', WidgetSliderHandler );
} );
}(jQuery));

View File

@@ -0,0 +1,403 @@
;(function($){
$(window).on('elementor/frontend/init',function(){
function slickInit() {
if ($.exists('.cs_slider')) {
$('.cs_slider').each(function () {
// Slick Variable
var $ts = $(this).find('.cs_slider_container');
var $slickActive = $(this).find('.cs_slider_wrapper');
// Auto Play
var autoPlayVar = parseInt($ts.attr('data-autoplay'), 10);
// Auto Play Time Out
var autoplaySpdVar = 3000;
if (autoPlayVar > 1) {
autoplaySpdVar = autoPlayVar;
autoPlayVar = 1;
}
// Slide Change Speed
var speedVar = parseInt($ts.attr('data-speed'), 10);
// Slider Loop
var loopVar = Boolean(parseInt($ts.attr('data-loop'), 10));
// Slider Center
var centerVar = Boolean(parseInt($ts.attr('data-center'), 10));
// Variable Width
var variableWidthVar = Boolean(
parseInt($ts.attr('data-variable-width'), 10),
);
// Pagination
var paginaiton = $(this)
.find('.cs_pagination')
.hasClass('cs_pagination');
// Slide Per View
var slidesPerView = $ts.attr('data-slides-per-view');
if (slidesPerView == 1) {
slidesPerView = 1;
}
if (slidesPerView == 'responsive') {
var slidesPerView = parseInt($ts.attr('data-add-slides'), 10);
var lgPoint = parseInt($ts.attr('data-lg-slides'), 10);
var mdPoint = parseInt($ts.attr('data-md-slides'), 10);
var smPoint = parseInt($ts.attr('data-sm-slides'), 10);
var xsPoing = parseInt($ts.attr('data-xs-slides'), 10);
}
// Fade Slider
var fadeVar = parseInt($($ts).attr('data-fade-slide'));
fadeVar === 1 ? (fadeVar = true) : (fadeVar = false);
// Slick Active Code
$slickActive.slick({
autoplay: autoPlayVar,
dots: paginaiton,
centerPadding: '28%',
speed: speedVar,
infinite: loopVar,
autoplaySpeed: autoplaySpdVar,
centerMode: centerVar,
fade: fadeVar,
prevArrow: $(this).find('.cs_left_arrow'),
nextArrow: $(this).find('.cs_right_arrow'),
appendDots: $(this).find('.cs_pagination'),
slidesToShow: slidesPerView,
variableWidth: variableWidthVar,
swipeToSlide: true,
responsive: [
{
breakpoint: 1200,
settings: {
slidesToShow: lgPoint,
},
},
{
breakpoint: 992,
settings: {
slidesToShow: mdPoint,
},
},
{
breakpoint: 768,
settings: {
slidesToShow: smPoint,
},
},
{
breakpoint: 576,
settings: {
slidesToShow: xsPoing,
},
},
],
});
});
}
$('.cs_service_product_thumb').slick({
slidesToShow: 1,
slidesToScroll: 1,
arrows: false,
asNavFor: '.cs_service_product_nav',
appendDots: $('.cs_pagination_2'),
});
$('.cs_service_product_nav').slick({
slidesToShow: 4,
slidesToScroll: 1,
asNavFor: '.cs_service_product_thumb',
focusOnSelect: true,
prevArrow: $('.cs_service_product_nav_left_arrow'),
nextArrow: $('.cs_service_product_nav_right_arrow'),
responsive: [
{
breakpoint: 1400,
settings: {
slidesToShow: 4,
},
},
{
breakpoint: 1199,
settings: {
slidesToShow: 3,
},
},
{
breakpoint: 991,
settings: {
slidesToShow: 2,
},
},
{
breakpoint: 575,
settings: {
slidesToShow: 1,
},
},
],
});
}
var triggerSwiper = [
'hero-banner',
'tg-team',
'testimonial',
'arkdin-portfolio',
'services',
];
$.each(triggerSwiper, function(index, item) {
elementorFrontend.hooks.addAction('frontend/element_ready/' + item + '.default', function($scope, $) {
slickInit();
});
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/hero-banner.default', function(scope,$){
$('[data-src]').each(function () {
var src = $(this).attr('data-src');
$(this).css({
'background-image': 'url(' + src + ')',
});
});
if ($.exists('.cs_video_open')) {
$('body').append(`
<div class="cs_video_popup">
<div class="cs_video_popup-overlay"></div>
<div class="cs_video_popup-content">
<div class="cs_video_popup-layer"></div>
<div class="cs_video_popup-container">
<div class="cs_video_popup-align">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="about:blank"></iframe>
</div>
</div>
<div class="cs_video_popup-close"></div>
</div>
</div>
</div>
`);
$(document).on('click', '.cs_video_open', function (e) {
e.preventDefault();
var video = $(this).attr('href');
$('.cs_video_popup-container iframe').attr('src', `${video}`);
$('.cs_video_popup').addClass('active');
});
$('.cs_video_popup-close, .cs_video_popup-layer').on(
'click',
function (e) {
$('.cs_video_popup').removeClass('active');
$('html').removeClass('overflow-hidden');
$('.cs_video_popup-container iframe').attr('src', 'about:blank');
e.preventDefault();
},
);
}
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/about.default', function(scope,$){
$('.cs_tabs .cs_tab_links a').on('click', function (e) {
var currentAttrValue = $(this).attr('href');
$('.cs_tabs ' + currentAttrValue)
.fadeIn(400)
.siblings()
.hide();
$(this).parents('li').addClass('active').siblings().removeClass('active');
e.preventDefault();
});
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/services.default', function(scope,$){
$('[data-src]').each(function () {
var src = $(this).attr('data-src');
$(this).css({
'background-image': 'url(' + src + ')',
});
});
$('.cs_tabs .cs_tab_links a').on('click', function (e) {
var currentAttrValue = $(this).attr('href');
$('.cs_tabs ' + currentAttrValue)
.fadeIn(400)
.siblings()
.hide();
$(this).parents('li').addClass('active').siblings().removeClass('active');
e.preventDefault();
});
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/features.default', function(scope,$){
$('[data-src]').each(function () {
var src = $(this).attr('data-src');
$(this).css({
'background-image': 'url(' + src + ')',
});
});
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/testimonial.default', function(scope,$){
$('[data-src]').each(function () {
var src = $(this).attr('data-src');
$(this).css({
'background-image': 'url(' + src + ')',
});
});
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/arkdin-cta.default', function(scope,$){
$('[data-src]').each(function () {
var src = $(this).attr('data-src');
$(this).css({
'background-image': 'url(' + src + ')',
});
});
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/brand.default', function(scope,$){
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/tp-faq.default', function(scope,$){
$('.cs_accordian').children('.cs_accordian_body').hide();
$('.cs_accordian.active').children('.cs_accordian_body').show();
$('.cs_accordian_head').on('click', function () {
$(this)
.parent('.cs_accordian')
.siblings()
.children('.cs_accordian_body')
.slideUp(250);
$(this).siblings().slideDown(250);
$(this)
.parent()
.parent()
.siblings()
.find('.cs_accordian_body')
.slideUp(250);
/* Accordian Active Class */
$(this).parents('.cs_accordian').addClass('active');
$(this).parent('.cs_accordian').siblings().removeClass('active');
});
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/service-details.default', function(scope,$){
$('.cs_accordian').children('.cs_accordian_body').hide();
$('.cs_accordian.active').children('.cs_accordian_body').show();
$('.cs_accordian_head').on('click', function () {
$(this)
.parent('.cs_accordian')
.siblings()
.children('.cs_accordian_body')
.slideUp(250);
$(this).siblings().slideDown(250);
$(this)
.parent()
.parent()
.siblings()
.find('.cs_accordian_body')
.slideUp(250);
/* Accordian Active Class */
$(this).parents('.cs_accordian').addClass('active');
$(this).parent('.cs_accordian').siblings().removeClass('active');
});
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/contact-info.default', function(scope,$){
$('[data-src]').each(function () {
var src = $(this).attr('data-src');
$(this).css({
'background-image': 'url(' + src + ')',
});
});
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/tp-award.default', function(scope,$){
$('[data-src]').each(function () {
var src = $(this).attr('data-src');
$(this).css({
'background-image': 'url(' + src + ')',
});
});
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/tp-fact.default', function(scope,$){
$('[data-src]').each(function () {
var src = $(this).attr('data-src');
$(this).css({
'background-image': 'url(' + src + ')',
});
});
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/portfolio-tab.default', function(scope,$){
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/case-study.default', function(scope,$){
$('[data-src]').each(function () {
var src = $(this).attr('data-src');
$(this).css({
'background-image': 'url(' + src + ')',
});
});
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/features.default', function(scope,$){
$('[data-src]').each(function () {
var src = $(this).attr('data-src');
$(this).css({
'background-image': 'url(' + src + ')',
});
});
});
elementorFrontend.hooks.addAction( 'frontend/element_ready/blogpost.default', function(scope,$){
$('[data-src]').each(function () {
var src = $(this).attr('data-src');
$(this).css({
'background-image': 'url(' + src + ')',
});
});
});
});
})(jQuery);

View File

@@ -0,0 +1,176 @@
.wpcf7 .screen-reader-response {
position: absolute;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
width: 1px;
margin: -1px;
padding: 0;
border: 0;
word-wrap: normal !important;
}
.wpcf7 .hidden-fields-container {
display: none;
}
.wpcf7 form .wpcf7-response-output {
margin: 2em 0.5em 1em;
padding: 0.2em 1em;
border: 2px solid #00a0d2; /* Blue */
}
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
border-color: #46b450; /* Green */
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
border-color: #dc3232; /* Red */
}
.wpcf7 form.spam .wpcf7-response-output {
border-color: #f56e28; /* Orange */
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
border-color: #ffb900; /* Yellow */
}
.wpcf7-form-control-wrap {
position: relative;
}
.wpcf7-not-valid-tip {
color: #dc3232; /* Red */
font-size: 1em;
font-weight: normal;
display: block;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
position: relative;
top: -2ex;
left: 1em;
z-index: 100;
border: 1px solid #dc3232;
background: #fff;
padding: .2em .8em;
width: 24em;
}
.wpcf7-list-item {
display: inline-block;
margin: 0 0 0 1em;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
content: " ";
}
.wpcf7-spinner {
visibility: hidden;
display: inline-block;
background-color: #23282d; /* Dark Gray 800 */
opacity: 0.75;
width: 24px;
height: 24px;
border: none;
border-radius: 100%;
padding: 0;
margin: 0 24px;
position: relative;
}
form.submitting .wpcf7-spinner {
visibility: visible;
}
.wpcf7-spinner::before {
content: '';
position: absolute;
background-color: #fbfbfc; /* Light Gray 100 */
top: 4px;
left: 4px;
width: 6px;
height: 6px;
border: none;
border-radius: 100%;
transform-origin: 8px 8px;
animation-name: spin;
animation-duration: 1000ms;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@media (prefers-reduced-motion: reduce) {
.wpcf7-spinner::before {
animation-name: blink;
animation-duration: 2000ms;
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes blink {
from {
opacity: 0;
}
50% {
opacity: 1;
}
to {
opacity: 0;
}
}
.wpcf7 [inert] {
opacity: 0.5;
}
.wpcf7 input[type="file"] {
cursor: pointer;
}
.wpcf7 input[type="file"]:disabled {
cursor: default;
}
.wpcf7 .wpcf7-submit:disabled {
cursor: not-allowed;
}
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
direction: ltr;
}
.wpcf7-reflection > output {
display: list-item;
list-style: none;
}
.wpcf7-reflection > output[hidden] {
display: none;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,2 @@
/*! elementor - v3.32.0 - 05-10-2025 */
.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}

View File

@@ -0,0 +1,2 @@
/*! elementor - v3.32.0 - 05-10-2025 */
.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{display:inline-block;vertical-align:middle}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
.elementor-animation-grow{transition-duration:.3s;transition-property:transform}.elementor-animation-grow:active,.elementor-animation-grow:focus,.elementor-animation-grow:hover{transform:scale(1.1)}

View File

@@ -0,0 +1 @@
@keyframes fadeInUp{from{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:none}}.fadeInUp{animation-name:fadeInUp}

View File

@@ -0,0 +1 @@
window.Futy={key:data.widget_code,meta:"wp: "+data.plugin_version},function(e,t){var a=e.createElement(t);a.async=!0;var n=window.Promise&&window.fetch?"modern.js":"legacy.js";a.src="https://v1.widget.futy.io/js/futy-widget-"+n;var i=e.getElementsByTagName(t)[0];i.parentNode.insertBefore(a,i)}(document,"script");

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
.slick-slider {position: relative;display: block;box-sizing: border-box;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;-webkit-touch-callout: none;-khtml-user-select: none;-ms-touch-action: pan-y;touch-action: pan-y;-webkit-tap-highlight-color: transparent;}.slick-list {position: relative;display: block;overflow: hidden;margin: 0;padding: 0;}.slick-list:focus {outline: none;}.slick-list.dragging {cursor: pointer;cursor: hand;}.slick-slider .slick-track, .slick-slider .slick-list {-webkit-transform: translate3d(0, 0, 0);-moz-transform: translate3d(0, 0, 0);-ms-transform: translate3d(0, 0, 0);-o-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}.slick-track {position: relative;top: 0;left: 0;display: block;margin-left: auto;margin-right: auto;}.slick-track:before, .slick-track:after {display: table;content: '';}.slick-track:after {clear: both;}.slick-loading .slick-track {visibility: hidden;}.slick-slide {display: none;float: left;height: 100%;min-height: 1px;}[dir='rtl'] .slick-slide {float: right;}.slick-slide img {display: block;}.slick-slide.slick-loading img {display: none;}.slick-slide.dragging img {pointer-events: none;}.slick-initialized .slick-slide {display: block;}.slick-loading .slick-slide {visibility: hidden;}.slick-vertical .slick-slide {display: block;height: auto;border: 1px solid transparent;}.slick-arrow.slick-hidden {display: none;}

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 B

View File

@@ -0,0 +1,12 @@
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6437_2701)">
<path d="M18.3208 16.3516C18.103 16.1331 17.8443 15.9597 17.5594 15.8414C17.2745 15.7231 16.9691 15.6623 16.6606 15.6623C16.3521 15.6623 16.0467 15.7231 15.7618 15.8414C15.4769 15.9597 15.2182 16.1331 15.0005 16.3516L13.8677 17.4844C12.5922 16.6749 11.4105 15.7264 10.3442 14.6563C9.27635 13.588 8.32804 12.4065 7.51609 11.1328L8.6489 10C8.8674 9.78229 9.04077 9.52356 9.15906 9.23867C9.27736 8.95379 9.33825 8.64835 9.33825 8.33988C9.33825 8.03141 9.27736 7.72597 9.15906 7.44109C9.04077 7.1562 8.8674 6.89747 8.6489 6.67972L6.43796 4.4766C6.2233 4.25738 5.96675 4.08355 5.68356 3.96544C5.40038 3.84734 5.09634 3.78737 4.78953 3.7891C4.48053 3.78834 4.17443 3.84869 3.88884 3.96668C3.60326 4.08467 3.34382 4.25797 3.12546 4.4766L2.06296 5.53129C1.55653 6.07579 1.17857 6.72687 0.956841 7.43666C0.735118 8.14644 0.675275 8.89689 0.781713 9.63285C1.03171 12.5625 2.95359 16.086 5.91453 19.0547C8.87546 22.0235 12.438 23.9375 15.3677 24.2188C15.5862 24.2305 15.8053 24.2305 16.0239 24.2188C16.6545 24.2453 17.2841 24.1456 17.8757 23.9256C18.4674 23.7055 19.0091 23.3696 19.4692 22.9375L20.5239 21.875C20.7425 21.6567 20.9158 21.3972 21.0338 21.1117C21.1518 20.8261 21.2122 20.52 21.2114 20.211C21.2131 19.9042 21.1532 19.6001 21.0351 19.3169C20.917 19.0338 20.7431 18.7772 20.5239 18.5625L18.3208 16.3516ZM19.4223 20.7735L18.3598 21.8282C17.967 22.1556 17.5084 22.3948 17.0151 22.5295C16.5217 22.6643 16.0052 22.6916 15.5005 22.6094C12.9614 22.3907 9.72703 20.5938 7.05515 17.9219C4.38327 15.25 2.5864 12.0391 2.34421 9.50004C2.25996 8.99528 2.28618 8.47826 2.42105 7.98462C2.55593 7.49097 2.79626 7.03245 3.12546 6.64066L4.22703 5.57816C4.30003 5.50575 4.3866 5.44847 4.48179 5.40959C4.57697 5.37071 4.6789 5.351 4.78171 5.3516C4.88453 5.351 4.98645 5.37071 5.08164 5.40959C5.17683 5.44847 5.2634 5.50575 5.3364 5.57816L7.54734 7.81254C7.69285 7.95891 7.77452 8.15692 7.77452 8.36332C7.77452 8.56971 7.69285 8.76772 7.54734 8.9141L5.98484 10.4766C5.86257 10.5983 5.784 10.757 5.76139 10.928C5.73878 11.099 5.7734 11.2726 5.85984 11.4219C6.7953 13.0145 7.93229 14.4797 9.24265 15.7813C10.5443 17.0917 12.0095 18.2286 13.602 19.1641C13.7513 19.2505 13.925 19.2852 14.096 19.2625C14.267 19.2399 14.4257 19.1614 14.5473 19.0391L16.1098 17.4766C16.2562 17.3311 16.4542 17.2494 16.6606 17.2494C16.867 17.2494 17.065 17.3311 17.2114 17.4766L19.4223 19.6875C19.4947 19.7605 19.552 19.8471 19.5909 19.9423C19.6298 20.0375 19.6495 20.1394 19.6489 20.2422C19.644 20.4417 19.5629 20.6318 19.4223 20.7735Z" fill="#FF5500"/>
<path d="M20.7813 4.21096C19.6955 3.12109 18.4048 2.25693 16.9835 1.66829C15.5622 1.07965 14.0384 0.778186 12.5 0.781273C12.2928 0.781273 12.0941 0.863583 11.9476 1.0101C11.8011 1.15661 11.7188 1.35532 11.7188 1.56252C11.7188 1.76972 11.8011 1.96844 11.9476 2.11495C12.0941 2.26146 12.2928 2.34377 12.5 2.34377C13.841 2.34373 15.1687 2.60925 16.4066 3.12501C17.6444 3.64077 18.7679 4.39657 19.7121 5.34879C20.6563 6.30101 21.4026 7.43079 21.908 8.67294C22.4133 9.91509 22.6676 11.245 22.6563 12.586C22.6563 12.7932 22.7386 12.9919 22.8851 13.1384C23.0316 13.2849 23.2303 13.3672 23.4375 13.3672C23.6447 13.3672 23.8434 13.2849 23.9899 13.1384C24.1364 12.9919 24.2188 12.7932 24.2188 12.586C24.2337 11.0312 23.9373 9.48922 23.3469 8.05085C22.7565 6.61249 21.8842 5.30687 20.7813 4.21096Z" fill="#FF5500"/>
<path d="M16.3359 8.67969C16.7793 9.12038 17.1301 9.64531 17.3675 10.2236C17.605 10.8018 17.7244 11.4218 17.7188 12.0469C17.7188 12.2541 17.8011 12.4528 17.9476 12.5993C18.0941 12.7458 18.2928 12.8281 18.5 12.8281C18.7072 12.8281 18.9059 12.7458 19.0524 12.5993C19.1989 12.4528 19.2812 12.2541 19.2812 12.0469C19.2916 11.2196 19.1376 10.3984 18.8281 9.6311C18.5187 8.86378 18.0599 8.16553 17.4785 7.57687C16.8971 6.9882 16.2046 6.52083 15.4412 6.20186C14.6778 5.8829 13.8586 5.71869 13.0312 5.71875C12.824 5.71875 12.6253 5.80106 12.4788 5.94757C12.3323 6.09409 12.25 6.2928 12.25 6.5C12.25 6.7072 12.3323 6.90591 12.4788 7.05243C12.6253 7.19894 12.824 7.28125 13.0312 7.28125C13.6469 7.28589 14.2557 7.41178 14.8227 7.65172C15.3897 7.89167 15.9039 8.24098 16.3359 8.67969Z" fill="#FF5500"/>
</g>
<defs>
<clipPath id="clip0_6437_2701">
<rect width="25" height="25" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 B

View File

@@ -0,0 +1,3 @@
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.71429 0.000976562C6.85 0.000976562 7.85714 0.629548 7.85714 1.78669C7.93429 2.57883 7.11929 4.16098 7.14286 5.00241C7.14286 5.23312 7.17 5.47741 7.22357 5.73598C7.34571 5.71669 7.47857 5.71169 7.60357 5.71812C8.37429 3.36669 9.52429 2.14383 11.0714 2.14383C12.9857 2.14383 15 4.02455 15 5.71526C15 6.85098 14.3714 7.85812 13.2143 7.85812C12.3614 7.92241 10.8543 7.12026 9.99857 7.14383C9.75194 7.14569 9.50614 7.17273 9.265 7.22455C9.28429 7.34598 9.28857 7.47955 9.28286 7.60526C11.6336 8.37455 12.8571 9.52455 12.8571 11.0724C12.8571 12.986 10.9764 15.001 9.28571 15.001C8.15 15.001 7.14286 14.3717 7.14286 13.2153C7.08714 12.3174 7.88071 10.8674 7.85714 9.99955C7.85529 9.75291 7.82824 9.50711 7.77643 9.26598C7.65046 9.28481 7.5229 9.29079 7.39571 9.28383C6.62643 11.6353 5.47643 12.8581 3.92857 12.8581C2.015 12.8581 0 10.9774 0 9.28669C0 8.15098 0.629286 7.14383 1.78571 7.14383C2.68357 7.08812 4.13357 7.88169 5.00143 7.85812C5.24806 7.85627 5.49386 7.82922 5.735 7.77741C5.71615 7.65143 5.71017 7.52387 5.71714 7.39669C3.36714 6.62741 2.14286 5.47741 2.14286 3.92955C2.14286 2.01526 4.02357 0.000976562 5.71429 0.000976562ZM9.09857 8.29598C8.95357 8.58883 8.72714 8.83812 8.45143 9.01241C8.53143 9.35669 8.57143 9.68526 8.57143 9.99955C8.64857 10.7924 7.83357 12.3738 7.85714 13.2153C7.85714 13.8888 8.49429 14.2867 9.28571 14.2867C10.5714 14.2867 12.1429 12.6024 12.1429 11.0724C12.1429 9.90812 11.1593 8.97669 9.09857 8.29598ZM1.78571 7.85812C1.11214 7.85812 0.714286 8.49526 0.714286 9.28669C0.714286 10.5717 2.39857 12.1438 3.92857 12.1438C5.09286 12.1438 6.02429 11.1603 6.705 9.09955C6.41089 8.95371 6.16273 8.72953 5.98786 8.45169C5.66527 8.52971 5.33474 8.57022 5.00286 8.5724C4.21 8.64955 2.62714 7.83455 1.78571 7.85812ZM7.50071 6.42955C7.36001 6.42959 7.2207 6.45736 7.09072 6.51124C6.96075 6.56513 6.84266 6.64409 6.7432 6.74361C6.64375 6.84314 6.56486 6.96128 6.51106 7.09129C6.45726 7.2213 6.4296 7.36063 6.42964 7.50133C6.42969 7.64204 6.45745 7.78135 6.51134 7.91132C6.56522 8.0413 6.64418 8.15939 6.74371 8.25884C6.84323 8.3583 6.96137 8.43718 7.09138 8.49098C7.22139 8.54479 7.36073 8.57245 7.50143 8.5724C7.78559 8.5724 8.05811 8.45952 8.25904 8.25859C8.45998 8.05766 8.57286 7.78514 8.57286 7.50098C8.57286 7.21682 8.45998 6.94429 8.25904 6.74336C8.05811 6.54243 7.78559 6.42955 7.50143 6.42955M11.0729 2.85812C9.90857 2.85812 8.97643 3.84169 8.29571 5.90098C8.59 6.04812 8.83857 6.27383 9.01286 6.55026C9.35571 6.46955 9.685 6.42883 9.99929 6.42883C10.7921 6.35241 12.3736 7.16741 13.215 7.14312C13.8879 7.14312 14.2864 6.50669 14.2864 5.71455C14.2864 4.43026 12.6021 2.85741 11.0721 2.85741M5.715 0.714548C4.43 0.714548 2.85786 2.39955 2.85786 3.92883C2.85786 5.09312 3.84143 6.02526 5.90143 6.70598C6.04786 6.41098 6.27357 6.16312 6.55 5.98883C6.47187 5.66578 6.43136 5.33477 6.42929 5.00241C6.35214 4.20955 7.16714 2.62812 7.14357 1.78669C7.14357 1.11312 6.50643 0.715262 5.715 0.715262" fill="#FF5500"/>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,5 @@
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.8394 16.4276C18.6222 16.2111 18.3642 16.0393 18.08 15.922C17.7958 15.8048 17.4911 15.7445 17.1834 15.7445C16.8757 15.7445 16.5711 15.8048 16.2869 15.922C16.0027 16.0393 15.7446 16.2111 15.5274 16.4276L14.3974 17.5502C13.1251 16.748 11.9464 15.808 10.8828 14.7476C9.81755 13.6889 8.87161 12.5182 8.06168 11.256L9.19167 10.1334C9.40963 9.91761 9.58256 9.66122 9.70056 9.3789C9.81856 9.09659 9.8793 8.79391 9.8793 8.48823C9.8793 8.18255 9.81856 7.87987 9.70056 7.59755C9.58256 7.31524 9.40963 7.05884 9.19167 6.84307L6.98624 4.65984C6.77211 4.4426 6.5162 4.27034 6.23372 4.1533C5.95125 4.03626 5.64797 3.97684 5.34191 3.97855C5.03368 3.9778 4.72835 4.03761 4.44347 4.15453C4.1586 4.27145 3.89981 4.44318 3.682 4.65984L2.62214 5.705C2.11698 6.24459 1.73995 6.88979 1.51878 7.59316C1.29761 8.29654 1.23791 9.04021 1.34408 9.76952C1.59346 12.6727 3.51055 16.1644 6.46411 19.1063C9.41767 22.0482 12.9713 23.945 15.8937 24.2237C16.1117 24.2353 16.3302 24.2353 16.5483 24.2237C17.1774 24.25 17.8054 24.1512 18.3955 23.9331C18.9857 23.7151 19.5261 23.3822 19.985 22.954L21.0371 21.9011C21.2552 21.6847 21.428 21.4277 21.5457 21.1446C21.6634 20.8616 21.7236 20.5583 21.7229 20.2521C21.7246 19.9481 21.6648 19.6468 21.547 19.3661C21.4292 19.0855 21.2558 18.8313 21.0371 18.6186L18.8394 16.4276ZM19.9383 20.8095L18.8784 21.8547C18.4865 22.1791 18.0291 22.4162 17.537 22.5497C17.0449 22.6833 16.5297 22.7103 16.0262 22.6289C13.4934 22.4121 10.2671 20.6315 7.60189 17.9837C4.93667 15.336 3.14428 12.154 2.90269 9.63791C2.81865 9.13771 2.8448 8.62536 2.97934 8.13617C3.11388 7.64699 3.35361 7.19261 3.682 6.80436L4.78081 5.75145C4.85363 5.6797 4.93999 5.62293 5.03494 5.58441C5.12989 5.54588 5.23156 5.52635 5.33412 5.52694C5.43668 5.52635 5.53835 5.54588 5.6333 5.58441C5.72825 5.62293 5.81461 5.6797 5.88742 5.75145L8.09285 7.96565C8.238 8.1107 8.31947 8.30692 8.31947 8.51146C8.31947 8.71599 8.238 8.91221 8.09285 9.05726L6.53425 10.6056C6.41228 10.7262 6.33391 10.8835 6.31136 11.0529C6.2888 11.2224 6.32333 11.3945 6.40956 11.5424C7.34269 13.1206 8.47684 14.5726 9.78394 15.8624C11.0823 17.161 12.5439 18.2877 14.1325 19.2147C14.2813 19.3003 14.4546 19.3346 14.6252 19.3122C14.7957 19.2898 14.9541 19.212 15.0754 19.0908L16.634 17.5424C16.78 17.3982 16.9775 17.3173 17.1834 17.3173C17.3893 17.3173 17.5868 17.3982 17.7328 17.5424L19.9383 19.7334C20.0105 19.8057 20.0676 19.8915 20.1064 19.9858C20.1452 20.0802 20.1649 20.1812 20.1643 20.2831C20.1594 20.4808 20.0785 20.6692 19.9383 20.8095Z" fill="#010F34"/>
<path d="M21.2938 4.39678C20.2108 3.31676 18.9233 2.4604 17.5055 1.87708C16.0877 1.29375 14.5678 0.995011 13.0332 0.99807C12.8265 0.99807 12.6283 1.07964 12.4822 1.22483C12.336 1.37002 12.2539 1.56693 12.2539 1.77226C12.2539 1.97759 12.336 2.17451 12.4822 2.3197C12.6283 2.46489 12.8265 2.54646 13.0332 2.54646C14.3709 2.54641 15.6953 2.80953 16.9301 3.32064C18.1648 3.83174 19.2855 4.58072 20.2273 5.52433C21.1692 6.46795 21.9137 7.58752 22.4177 8.81845C22.9218 10.0494 23.1755 11.3673 23.1642 12.6961C23.1642 12.9015 23.2463 13.0984 23.3924 13.2436C23.5386 13.3888 23.7368 13.4703 23.9435 13.4703C24.1501 13.4703 24.3484 13.3888 24.4945 13.2436C24.6407 13.0984 24.7228 12.9015 24.7228 12.6961C24.7377 11.1554 24.442 9.62737 23.8531 8.20199C23.2642 6.77662 22.394 5.48279 21.2938 4.39678Z" fill="#010F34"/>
<path d="M16.8609 8.82677C17.3032 9.26348 17.6531 9.78367 17.8899 10.3567C18.1268 10.9298 18.2459 11.5441 18.2403 12.1635C18.2403 12.3689 18.3224 12.5658 18.4685 12.711C18.6147 12.8562 18.8129 12.9377 19.0196 12.9377C19.2263 12.9377 19.4245 12.8562 19.5706 12.711C19.7168 12.5658 19.7989 12.3689 19.7989 12.1635C19.8092 11.3437 19.6556 10.53 19.3469 9.7696C19.0382 9.0092 18.5806 8.31726 18.0006 7.73391C17.4207 7.15056 16.7299 6.68741 15.9684 6.37133C15.2069 6.05524 14.3898 5.89251 13.5645 5.89258C13.3578 5.89258 13.1596 5.97414 13.0134 6.11933C12.8673 6.26452 12.7852 6.46144 12.7852 6.66677C12.7852 6.8721 12.8673 7.06902 13.0134 7.21421C13.1596 7.3594 13.3578 7.44097 13.5645 7.44097C14.1786 7.44556 14.7858 7.57031 15.3515 7.80809C15.9171 8.04587 16.43 8.39202 16.8609 8.82677Z" fill="#010F34"/>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@@ -0,0 +1,3 @@
<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6.5 6.5C6.16667 6.8125 5.82292 6.8125 5.46875 6.5L2.96875 4C2.67708 3.66667 2.67708 3.32292 2.96875 2.96875C3.32292 2.67708 3.67708 2.67708 4.03125 2.96875L6 4.9375L10.4688 0.46875C10.8229 0.177083 11.1667 0.177083 11.5 0.46875C11.8125 0.822917 11.8125 1.17708 11.5 1.53125L6.5 6.5ZM6.5 13.5C6.16667 13.8125 5.82292 13.8125 5.46875 13.5L1.21875 9.25C0.927083 8.91667 0.927083 8.57292 1.21875 8.21875C1.57292 7.92708 1.92708 7.92708 2.28125 8.21875L6 11.9375L13.7188 4.21875C14.0729 3.92708 14.4167 3.92708 14.75 4.21875C15.0625 4.57292 15.0625 4.91667 14.75 5.25L6.5 13.5Z" fill="#010F34"/>
</svg>

After

Width:  |  Height:  |  Size: 704 B

View File

@@ -0,0 +1,29 @@
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6365_2903)">
<path d="M26.8438 29.5457C30.4083 27.6714 34.552 26.7873 38.6718 26.864C42.7976 26.9347 46.9234 27.9249 50.6491 29.7284C54.3748 31.526 57.7244 34.1665 60.1665 37.4966C61.3905 39.1586 62.3518 41.0034 62.9847 42.9425C63.5937 44.8875 63.8803 46.9268 63.6892 48.919C63.1638 44.9583 61.3666 41.4042 58.8708 38.4985C56.3691 35.581 53.1807 33.2883 49.7177 31.5968C46.2427 29.917 42.4572 28.8384 38.5763 28.4789C34.6953 28.1135 30.7307 28.4789 26.8438 29.5457Z" fill="#FF5500"/>
<path d="M28.1794 91.1566C26.7584 87.4258 26.2031 83.2941 26.6867 79.2273C27.1644 75.1664 28.6451 71.1821 31.0275 67.7813C33.3919 64.3806 36.6519 61.5456 40.4612 59.8364C42.3599 58.9758 44.39 58.4159 46.4439 58.192C48.4979 57.9857 50.5817 58.1036 52.5341 58.6517C48.4859 58.4513 44.5811 59.4415 41.1956 61.2863C37.7983 63.137 34.9502 65.8423 32.759 68.966C30.5677 72.1016 29.0571 75.6969 28.3048 79.4808C27.5525 83.2647 27.6122 87.2077 28.1794 91.1566Z" fill="#FF5500"/>
<path d="M91.3922 26.6885C93.5178 30.0775 94.6881 34.0971 94.8851 38.1639C95.0881 42.2307 94.3597 46.3623 92.7774 50.1521C91.2012 53.936 88.7591 57.4134 85.5528 60.0421C83.9586 61.3565 82.1555 62.4291 80.2329 63.1777C78.3044 63.9085 76.2624 64.3211 74.2383 64.268C78.2088 63.4901 81.6778 61.4861 84.4542 58.8339C87.2366 56.1757 89.3443 52.8869 90.825 49.3623C92.2938 45.8319 93.1297 42.0303 93.2432 38.1816C93.3566 34.3329 92.7237 30.4488 91.3922 26.6885Z" fill="#FF5500"/>
<path d="M91.4788 92.3882C87.7769 93.9914 83.6332 94.7635 79.4895 94.5041C75.3578 94.2507 71.2439 93.0071 67.6734 90.844C64.1089 88.6927 61.0638 85.6397 59.1233 81.9737C58.1501 80.1525 57.4754 78.178 57.1351 76.1623C56.8186 74.1466 56.8246 72.0837 57.2664 70.1328C57.2784 74.1348 58.4964 77.9246 60.5444 81.1662C62.5983 84.4138 65.4881 87.0778 68.7661 89.0699C72.056 91.0562 75.7757 92.3587 79.6388 92.8951C83.5258 93.4314 87.5142 93.1662 91.4788 92.3882Z" fill="#FF5500"/>
<path d="M104.129 33.2182C108.064 55.0787 94.4388 79.4029 73.983 72.731C90.7906 75.9019 101.574 61.12 103.628 44.122C102.505 50.122 99.896 55.9334 95.3702 60.9432C80.0075 77.953 61.6594 63.6249 61.6594 63.6249C58.5009 74.5286 64.5552 83.788 76.9266 87.4009C89.1427 90.9726 104.213 86.9353 113.569 72.0296C131.66 43.2025 107.479 11.788 91.9131 6.1416C98.3197 12.2418 103.204 22.4442 104.129 33.2182Z" fill="#FF5500"/>
<path d="M116.8 91.9221C110.668 98.2935 100.375 103.197 89.472 104.199C67.3564 108.26 42.6077 95.0047 49.1994 74.7591C46.1244 91.374 61.1826 101.901 78.4202 103.792C72.33 102.732 66.425 100.203 61.314 95.7768C43.9571 80.7473 58.3286 62.5174 58.3286 62.5174C47.2589 59.488 37.9266 65.5351 34.368 77.7768C30.8513 89.8652 35.0606 104.706 50.2323 113.824C79.5725 131.453 111.206 107.329 116.8 91.9221Z" fill="#FF5500"/>
<path d="M16.3751 88.0449C13.2046 66.0606 27.6777 42.2197 47.8827 49.5812C31.2005 45.8445 19.9038 60.2433 17.2588 77.1647C18.5902 71.206 21.4025 65.4889 26.1014 60.6323C42.0493 44.1529 59.8899 59.0999 59.8899 59.0999C63.4246 48.314 57.7046 38.8543 45.4646 34.817C33.3798 30.8327 18.1783 34.3572 8.30863 48.9329C-10.7918 77.1293 12.2792 109.351 27.6299 115.522C21.4443 109.204 16.9184 98.8425 16.3751 88.0449Z" fill="#FF5500"/>
<path d="M72.7133 48.7321C76.7316 32.3175 62.3063 20.9659 45.2001 18.1191C51.2186 19.516 56.9744 22.3745 61.8227 27.0778C78.29 43.0503 62.9034 60.4492 62.9034 60.4492C73.7821 64.0916 83.4427 58.569 87.6999 46.5513C91.9033 34.681 88.5477 19.6279 73.9194 9.67903C45.63 -9.57048 12.6655 12.7498 6.19922 27.8205C12.6834 21.8028 23.2457 17.4767 34.1901 17.0936C56.5027 14.2704 80.4514 28.8873 72.7133 48.7321Z" fill="#FF5500"/>
<path d="M103.657 89.7528C103.657 90.8491 102.756 91.7391 101.645 91.7391C100.534 91.7391 99.6328 90.8491 99.6328 89.7528C99.6328 88.6566 100.534 87.7666 101.645 87.7666C102.761 87.7666 103.657 88.6566 103.657 89.7528Z" fill="#FF5500"/>
<path d="M112.829 83.0995C112.829 84.1958 111.927 85.0858 110.817 85.0858C109.706 85.0858 108.805 84.1958 108.805 83.0995C108.805 82.0033 109.706 81.1133 110.817 81.1133C111.927 81.1133 112.829 82.0033 112.829 83.0995Z" fill="#FF5500"/>
<path d="M119.798 74.2411C119.798 75.3374 118.896 76.2274 117.786 76.2274C116.675 76.2274 115.773 75.3374 115.773 74.2411C115.773 73.1449 116.675 72.2549 117.786 72.2549C118.902 72.2549 119.798 73.139 119.798 74.2411Z" fill="#FF5500"/>
<path d="M32.3966 99.8656C32.6893 98.8073 32.0575 97.7152 30.9855 97.4263C29.9134 97.1373 28.8071 97.761 28.5144 98.8192C28.2217 99.8775 28.8534 100.97 29.9255 101.259C30.9975 101.547 32.1039 100.924 32.3966 99.8656Z" fill="#FF5500"/>
<path d="M36.2519 110.888C35.1473 110.8 34.3234 109.839 34.4129 108.743C34.5025 107.652 35.4757 106.839 36.5863 106.927C37.6908 107.016 38.5148 107.977 38.4253 109.073C38.3297 110.169 37.3565 110.982 36.2519 110.888Z" fill="#FF5500"/>
<path d="M46.7083 117.094C47.0359 116.046 46.4406 114.934 45.3787 114.611C44.3168 114.287 43.1903 114.875 42.8627 115.923C42.5351 116.971 43.1304 118.083 44.1923 118.407C45.2543 118.73 46.3807 118.143 46.7083 117.094Z" fill="#FF5500"/>
<path d="M15.6804 33.4482C15.6506 32.352 16.5223 31.4384 17.6329 31.4089C18.7434 31.3795 19.6689 32.24 19.6987 33.3362C19.7286 34.4325 18.8569 35.3461 17.7463 35.3755C16.6417 35.4109 15.7163 34.5445 15.6804 33.4482Z" fill="#FF5500"/>
<path d="M6.71168 40.3623C6.68183 39.266 7.55356 38.3525 8.66412 38.323C9.77467 38.2935 10.7001 39.154 10.73 40.2503C10.7598 41.3466 9.88812 42.2601 8.77756 42.2896C7.667 42.325 6.74154 41.4586 6.71168 40.3623Z" fill="#FF5500"/>
<path d="M0.000744436 49.4209C-0.0291093 48.3246 0.842619 47.4111 1.95318 47.3816C3.06374 47.3521 3.9892 48.2126 4.01906 49.3089C4.04891 50.4052 3.17718 51.3187 2.06662 51.3482C0.962034 51.3777 0.0305982 50.5172 0.000744436 49.4209Z" fill="#FF5500"/>
<path d="M87.4934 13.7165C88.592 13.5692 89.607 14.3295 89.7563 15.414C89.9056 16.4984 89.1353 17.5004 88.0367 17.6477C86.9381 17.7951 85.9231 17.0348 85.7738 15.9503C85.6186 14.8658 86.3888 13.8639 87.4934 13.7165Z" fill="#FF5500"/>
<path d="M79.5701 5.64717C80.6687 5.49982 81.6838 6.26014 81.833 7.34462C81.9823 8.4291 81.2121 9.43106 80.1134 9.57841C79.0148 9.72576 77.9998 8.96544 77.8505 7.88096C77.7013 6.79648 78.4715 5.79452 79.5701 5.64717Z" fill="#FF5500"/>
<path d="M69.7342 0.018265C70.8328 -0.129083 71.8478 0.631232 71.9971 1.71571C72.1464 2.80019 71.3761 3.80215 70.2775 3.9495C69.1789 4.09685 68.1639 3.33654 68.0146 2.25206C67.8653 1.16758 68.6356 0.165613 69.7342 0.018265Z" fill="#FF5500"/>
</g>
<defs>
<clipPath id="clip0_6365_2903">
<rect width="120" height="120" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@@ -0,0 +1,7 @@
<svg width="76" height="72" viewBox="0 0 76 72" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.15">
<path d="M75.7749 40.017C75.5863 39.6447 75.1151 39.4586 74.7381 39.3655C72.5702 39.3655 53.908 38.621 53.908 17.2157C53.908 16.5643 53.3425 16.0059 52.6827 16.0059C52.023 16.0059 51.4574 16.5643 51.4574 17.2157C51.4574 38.621 32.7952 39.3655 30.7216 39.3655C30.4389 39.3655 30.1561 39.4586 29.9676 39.6447C29.7791 39.7378 29.6849 39.9239 29.5906 40.017C29.4021 40.3892 29.4021 40.8546 29.5906 41.2268C29.7791 41.5991 30.2504 41.8783 30.7216 41.8783C30.7216 41.8783 30.7216 41.8783 30.8159 41.8783C32.9837 41.8783 51.5517 42.6228 51.5517 64.0281C51.5517 64.6795 52.1172 65.2379 52.777 65.2379C53.4368 65.2379 54.0023 64.6795 54.0023 64.0281C54.0023 42.7159 72.5702 41.8783 74.7381 41.8783C75.2093 41.8783 75.5863 41.5991 75.8691 41.2268C76.0576 40.8546 76.0576 40.3892 75.7749 40.017ZM52.6827 54.9076C49.9494 46.0663 43.2574 42.2506 37.9792 40.5754C43.2574 38.9002 49.9494 35.0845 52.6827 26.2432C55.4161 35.0845 62.1081 38.9002 67.3863 40.5754C62.1081 42.2506 55.4161 46.0663 52.6827 54.9076Z" fill="#FF5500"/>
<path d="M37.1405 15.8213C37.8003 15.8213 38.3658 15.2629 38.3658 14.5183C38.3658 13.8669 37.8003 13.3085 37.1405 13.3085C36.0095 13.3085 25.8301 12.9362 25.8301 1.20986C25.8301 0.558398 25.2645 0 24.6048 0C23.945 0 23.3795 0.558398 23.3795 1.20986C23.3795 12.9362 13.2001 13.3085 12.069 13.3085C11.9748 13.3085 11.9748 13.3085 11.9748 13.3085C11.315 13.4016 10.8438 13.8669 10.8438 14.5183C10.8438 15.1698 11.4093 15.7282 12.069 15.7282C13.2943 15.7282 23.3795 16.1005 23.3795 27.8268C23.3795 28.4783 23.945 29.0367 24.6048 29.0367C25.1703 29.1298 25.7358 28.5714 25.7358 27.9199C25.7358 16.1935 35.9152 15.8213 37.0462 15.8213H37.1405ZM24.5105 21.1261C23.0025 17.5895 20.2691 15.6351 17.7243 14.5183C20.4576 13.4015 23.0025 11.261 24.5105 7.91064C26.0186 11.4472 28.7519 13.4015 31.2968 14.5183C28.5634 15.6351 26.0186 17.7757 24.5105 21.1261Z" fill="#FF5500"/>
<path d="M26.2967 55.2811C25.1657 55.2811 14.9863 54.9089 14.9863 43.1825C14.9863 42.5311 14.4208 41.9727 13.761 41.9727C13.1012 41.9727 12.5357 42.5311 12.5357 43.1825C12.5357 54.9089 2.35634 55.2811 1.2253 55.2811C1.13104 55.2811 1.13104 55.2811 1.13104 55.2811C0.471268 55.3742 0 55.8395 0 56.491C0 57.1425 0.565521 57.7009 1.2253 57.7009C2.45059 57.7009 12.5357 58.0731 12.5357 69.7995C12.5357 70.451 13.1012 71.0093 13.761 71.0093C14.3265 71.1955 14.8921 70.6371 14.8921 69.8926C14.8921 58.1662 25.0714 57.7939 26.2025 57.7939H26.2967C26.9565 57.7939 27.522 57.2355 27.522 56.491C27.522 55.8395 26.9565 55.2811 26.2967 55.2811ZM13.6668 63.1918C12.0645 59.6553 9.42536 57.7009 6.88051 56.5841C9.61386 55.4673 12.1587 53.3267 13.6668 49.9764C15.1748 53.5129 17.9082 55.4673 20.453 56.5841C17.7197 57.7009 15.1748 59.8414 13.6668 63.1918Z" fill="#FF5500"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 280 KiB

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,374 @@
(function ($) {
'use strict';
/*
|--------------------------------------------------------------------------
| Template Name: Arkdin
| Author: ThemeServices
| Version: 1.0.0
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| TABLE OF CONTENTS:
|--------------------------------------------------------------------------
|
| 1. Preloader
| 2. Mobile Menu
| 3. Sticky Header
| 4. Dynamic Background
| 5. Slick Slider
| 6. Modal Video
| 7. Accordian
| 8. Tabs
| 9. Progress Bar
| 10. Review
|
*/
/*--------------------------------------------------------------
Scripts initialization
--------------------------------------------------------------*/
$.exists = function (selector) {
return $(selector).length > 0;
};
$(window).on('load', function () {
preloader();
});
$(function () {
mainNav();
stickyHeader();
dynamicBackground();
slickInit();
modalVideo();
accordian();
tabs();
progressBar();
review();
if ($.exists('.wow')) {
new WOW().init();
}
if ($.exists('.player')) {
$('.player').YTPlayer();
}
});
/*--------------------------------------------------------------
1. Preloader
--------------------------------------------------------------*/
function preloader() {
$('.cs_preloader').fadeOut();
$('cs_preloader_in').delay(150).fadeOut('slow');
}
/*--------------------------------------------------------------
2. Mobile Menu
--------------------------------------------------------------*/
function mainNav() {
$('.cs_nav').append('<span class="cs_menu_toggle"><span></span></span>');
$('.menu-item-has-children').append(
'<span class="cs_menu_dropdown_toggle"><span></span></span>',
);
$('.cs_menu_toggle').on('click', function () {
$(this)
.toggleClass('cs_toggle_active')
.siblings('.cs_nav_list')
.toggleClass('cs_active');
});
$('.cs_menu_toggle')
.parents('body')
.find('.cs_side_header')
.addClass('cs_has_main_nav');
$('.cs_menu_toggle')
.parents('body')
.find('.cs_toolbox')
.addClass('cs_has_main_nav');
$('.cs_menu_dropdown_toggle').on('click', function () {
$(this).toggleClass('active').siblings('ul').slideToggle();
$(this).parent().toggleClass('active');
});
}
/*--------------------------------------------------------------
3. Sticky Header
--------------------------------------------------------------*/
function stickyHeader() {
var $window = $(window);
var lastScrollTop = 0;
var $header = $('.cs_sticky_header');
var headerHeight = $header.outerHeight() + 20;
$window.scroll(function () {
var windowTop = $window.scrollTop();
if (windowTop >= headerHeight) {
$header.addClass('cs_gescout_sticky');
} else {
$header.removeClass('cs_gescout_sticky');
$header.removeClass('cs_gescout_show');
}
if ($header.hasClass('cs_gescout_sticky')) {
if (windowTop < lastScrollTop) {
$header.addClass('cs_gescout_show');
} else {
$header.removeClass('cs_gescout_show');
}
}
lastScrollTop = windowTop;
});
}
/*--------------------------------------------------------------
4. Dynamic Background
--------------------------------------------------------------*/
function dynamicBackground() {
$('[data-src]').each(function () {
var src = $(this).attr('data-src');
$(this).css({
'background-image': 'url(' + src + ')',
});
});
}
/*--------------------------------------------------------------
5. Slick Slider
--------------------------------------------------------------*/
function slickInit() {
if ($.exists('.cs_slider')) {
$('.cs_slider').each(function () {
// Slick Variable
var $ts = $(this).find('.cs_slider_container');
var $slickActive = $(this).find('.cs_slider_wrapper');
// Auto Play
var autoPlayVar = parseInt($ts.attr('data-autoplay'), 10);
// Auto Play Time Out
var autoplaySpdVar = 3000;
if (autoPlayVar > 1) {
autoplaySpdVar = autoPlayVar;
autoPlayVar = 1;
}
// Slide Change Speed
var speedVar = parseInt($ts.attr('data-speed'), 10);
// Slider Loop
var loopVar = Boolean(parseInt($ts.attr('data-loop'), 10));
// Slider Center
var centerVar = Boolean(parseInt($ts.attr('data-center'), 10));
// Variable Width
var variableWidthVar = Boolean(
parseInt($ts.attr('data-variable-width'), 10),
);
// Pagination
var paginaiton = $(this)
.find('.cs_pagination')
.hasClass('cs_pagination');
// Slide Per View
var slidesPerView = $ts.attr('data-slides-per-view');
if (slidesPerView == 1) {
slidesPerView = 1;
}
if (slidesPerView == 'responsive') {
var slidesPerView = parseInt($ts.attr('data-add-slides'), 10);
var lgPoint = parseInt($ts.attr('data-lg-slides'), 10);
var mdPoint = parseInt($ts.attr('data-md-slides'), 10);
var smPoint = parseInt($ts.attr('data-sm-slides'), 10);
var xsPoing = parseInt($ts.attr('data-xs-slides'), 10);
}
// Fade Slider
var fadeVar = parseInt($($ts).attr('data-fade-slide'));
fadeVar === 1 ? (fadeVar = true) : (fadeVar = false);
// Slick Active Code
$slickActive.slick({
autoplay: autoPlayVar,
dots: paginaiton,
centerPadding: '28%',
speed: speedVar,
infinite: loopVar,
autoplaySpeed: autoplaySpdVar,
centerMode: centerVar,
fade: fadeVar,
prevArrow: $(this).find('.cs_left_arrow'),
nextArrow: $(this).find('.cs_right_arrow'),
appendDots: $(this).find('.cs_pagination'),
slidesToShow: slidesPerView,
variableWidth: variableWidthVar,
swipeToSlide: true,
responsive: [
{
breakpoint: 1200,
settings: {
slidesToShow: lgPoint,
},
},
{
breakpoint: 992,
settings: {
slidesToShow: mdPoint,
},
},
{
breakpoint: 768,
settings: {
slidesToShow: smPoint,
},
},
{
breakpoint: 576,
settings: {
slidesToShow: xsPoing,
},
},
],
});
});
}
/* Service Product */
$('.cs_service_product_thumb').slick({
slidesToShow: 1,
slidesToScroll: 1,
arrows: false,
asNavFor: '.cs_service_product_nav',
appendDots: $('.cs_pagination_2'),
});
$('.cs_service_product_nav').slick({
slidesToShow: 4,
slidesToScroll: 1,
asNavFor: '.cs_service_product_thumb',
focusOnSelect: true,
prevArrow: $('.cs_service_product_nav_left_arrow'),
nextArrow: $('.cs_service_product_nav_right_arrow'),
responsive: [
{
breakpoint: 1400,
settings: {
slidesToShow: 4,
},
},
{
breakpoint: 1199,
settings: {
slidesToShow: 3,
},
},
{
breakpoint: 991,
settings: {
slidesToShow: 2,
},
},
{
breakpoint: 575,
settings: {
slidesToShow: 1,
},
},
],
});
}
/*--------------------------------------------------------------
6. Modal Video
--------------------------------------------------------------*/
function modalVideo() {
if ($.exists('.cs_video_open')) {
$('body').append(`
<div class="cs_video_popup">
<div class="cs_video_popup-overlay"></div>
<div class="cs_video_popup-content">
<div class="cs_video_popup-layer"></div>
<div class="cs_video_popup-container">
<div class="cs_video_popup-align">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="about:blank"></iframe>
</div>
</div>
<div class="cs_video_popup-close"></div>
</div>
</div>
</div>
`);
$(document).on('click', '.cs_video_open', function (e) {
e.preventDefault();
var video = $(this).attr('href');
$('.cs_video_popup-container iframe').attr('src', `${video}`);
$('.cs_video_popup').addClass('active');
});
$('.cs_video_popup-close, .cs_video_popup-layer').on(
'click',
function (e) {
$('.cs_video_popup').removeClass('active');
$('html').removeClass('overflow-hidden');
$('.cs_video_popup-container iframe').attr('src', 'about:blank');
e.preventDefault();
},
);
}
}
/*--------------------------------------------------------------
7. Accordian
--------------------------------------------------------------*/
function accordian() {
$('.cs_accordian').children('.cs_accordian_body').hide();
$('.cs_accordian.active').children('.cs_accordian_body').show();
$('.cs_accordian_head').on('click', function () {
$(this)
.parent('.cs_accordian')
.siblings()
.children('.cs_accordian_body')
.slideUp(250);
$(this).siblings().slideDown(250);
$(this)
.parent()
.parent()
.siblings()
.find('.cs_accordian_body')
.slideUp(250);
/* Accordian Active Class */
$(this).parents('.cs_accordian').addClass('active');
$(this).parent('.cs_accordian').siblings().removeClass('active');
});
}
/*--------------------------------------------------------------
8. Tabs
--------------------------------------------------------------*/
function tabs() {
$('.cs_tabs .cs_tab_links a').on('click', function (e) {
var currentAttrValue = $(this).attr('href');
$('.cs_tabs ' + currentAttrValue)
.fadeIn(400)
.siblings()
.hide();
$(this).parents('li').addClass('active').siblings().removeClass('active');
e.preventDefault();
});
}
/*--------------------------------------------------------------
9. Progress Bar
--------------------------------------------------------------*/
function progressBar() {
$('.cs_progress').each(function () {
var progressPercentage = $(this).data('progress') + '%';
$(this).find('.cs_progress_in').css('width', progressPercentage);
});
}
/*--------------------------------------------------------------
10. Review
--------------------------------------------------------------*/
function review() {
$('.cs_rating').each(function () {
var review = $(this).data('rating');
var reviewVal = review * 20 + '%';
$(this).find('.cs_rating_percentage').css('width', reviewVal);
});
}
})(jQuery); // End of use strict

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,17 @@
/*!
Theme Name: Arkdin
Theme URI: https://arkdin-wp.laralink.com/
Author: Themeservices
Author URI: https://themeforest.net/user/themeservices/
Description: Arkdin - Air Conditioning Services WordPress Theme
Version: 1.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: arkdin
Tested up to: 6.6
Requires PHP: 7.2
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 617 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 568 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

View File

@@ -0,0 +1,3 @@
<svg width="41" height="41" viewBox="0 0 41 41" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M37.8906 26.8594C38.6719 27.224 39.2448 27.7708 39.6094 28.5C39.974 29.2292 40.0781 30.0104 39.9219 30.8438L38.2031 38.2656C37.9948 39.099 37.5781 39.75 36.9531 40.2188C36.3281 40.7396 35.599 41 34.7656 41C28.3073 40.9479 22.474 39.3594 17.2656 36.2344C12.0052 33.1615 7.83854 28.9948 4.76562 23.7344C1.64062 18.526 0.0520833 12.6927 0 6.23438C0 5.40104 0.260417 4.67188 0.78125 4.04688C1.25 3.42188 1.90104 3.00521 2.73438 2.79688L10.1562 1.07812C10.9896 0.921875 11.7708 1.02604 12.5 1.39062C13.2292 1.75521 13.776 2.32812 14.1406 3.10938L17.5781 11.0781C18.151 12.6927 17.8125 14.0729 16.5625 15.2188L13.4375 17.7969C15.7292 22.0156 18.9844 25.2708 23.2031 27.5625L25.7812 24.4375C26.9271 23.1875 28.3073 22.849 29.9219 23.4219L37.8906 26.8594ZM35.7812 37.7188L37.5 30.2969C37.5521 29.776 37.3438 29.3854 36.875 29.125L28.9062 25.6875C28.4375 25.5312 28.0469 25.6354 27.7344 26L24.4531 29.9844C24.0365 30.4531 23.5417 30.5573 22.9688 30.2969C20.3125 28.9948 17.9427 27.276 15.8594 25.1406C13.724 23.0573 12.0052 20.6875 10.7031 18.0312C10.4427 17.4583 10.5469 16.9635 11.0156 16.5469L15 13.2656C15.3646 12.9531 15.4688 12.5625 15.3125 12.0938L11.875 4.125C11.6667 3.70833 11.3542 3.5 10.9375 3.5C10.8333 3.5 10.7552 3.5 10.7031 3.5L3.28125 5.21875C2.8125 5.375 2.55208 5.71354 2.5 6.23438C2.55208 12.224 4.01042 17.6406 6.875 22.4844C9.79167 27.3281 13.6719 31.2083 18.5156 34.125C23.3594 36.9896 28.776 38.4479 34.7656 38.5C35.2865 38.4479 35.625 38.1875 35.7812 37.7188Z" fill="#010F34"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1,3 @@
<svg width="40" height="30" viewBox="0 0 40 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 5C0.0520833 3.59375 0.546875 2.42188 1.48438 1.48438C2.42188 0.546875 3.59375 0.0520833 5 0H35C36.4062 0.0520833 37.5781 0.546875 38.5156 1.48438C39.4531 2.42188 39.9479 3.59375 40 5V25C39.9479 26.4062 39.4531 27.5781 38.5156 28.5156C37.5781 29.4531 36.4062 29.9479 35 30H5C3.59375 29.9479 2.42188 29.4531 1.48438 28.5156C0.546875 27.5781 0.0520833 26.4062 0 25V5ZM2.5 5V8.125L17.8125 19.2969C19.2708 20.2865 20.7292 20.2865 22.1875 19.2969L37.5 8.125V5C37.5 4.27083 37.2656 3.67188 36.7969 3.20312C36.3281 2.73438 35.7292 2.5 35 2.5H4.92188C4.24479 2.5 3.67188 2.73438 3.20312 3.20312C2.73438 3.67188 2.47396 4.27083 2.42188 5H2.5ZM2.5 11.25V25C2.5 25.7292 2.73438 26.3281 3.20312 26.7969C3.67188 27.2656 4.27083 27.5 5 27.5H35C35.7292 27.5 36.3281 27.2656 36.7969 26.7969C37.2656 26.3281 37.5 25.7292 37.5 25V11.25L23.6719 21.3281C22.5781 22.1615 21.3542 22.5781 20 22.5781C18.6458 22.5781 17.4219 22.1615 16.3281 21.3281L2.5 11.25Z" fill="#010F34"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

View File

@@ -0,0 +1,3 @@
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M22.7344 16.5156C23.2031 16.7344 23.5469 17.0625 23.7656 17.5C23.9844 17.9375 24.0469 18.4062 23.9531 18.9062L22.9219 23.3594C22.7969 23.8594 22.5469 24.25 22.1719 24.5312C21.7969 24.8438 21.3594 25 20.8594 25C16.9844 24.9688 13.4844 24.0156 10.3594 22.1406C7.20312 20.2969 4.70312 17.7969 2.85938 14.6406C0.984375 11.5156 0.03125 8.01562 0 4.14062C0 3.64062 0.15625 3.20312 0.46875 2.82812C0.75 2.45312 1.14062 2.20313 1.64062 2.07812L6.09375 1.04688C6.59375 0.953125 7.0625 1.01562 7.5 1.23438C7.9375 1.45313 8.26562 1.79688 8.48438 2.26562L10.5469 7.04688C10.8906 8.01562 10.6875 8.84375 9.9375 9.53125L8.0625 11.0781C9.4375 13.6094 11.3906 15.5625 13.9219 16.9375L15.4688 15.0625C16.1562 14.3125 16.9844 14.1094 17.9531 14.4531L22.7344 16.5156ZM21.4688 23.0312L22.5 18.5781C22.5312 18.2656 22.4062 18.0312 22.125 17.875L17.3438 15.8125C17.0625 15.7188 16.8281 15.7812 16.6406 16L14.6719 18.3906C14.4219 18.6719 14.125 18.7344 13.7812 18.5781C12.1875 17.7969 10.7656 16.7656 9.51562 15.4844C8.23438 14.2344 7.20312 12.8125 6.42188 11.2188C6.26562 10.875 6.32812 10.5781 6.60938 10.3281L9 8.35938C9.21875 8.17188 9.28125 7.9375 9.1875 7.65625L7.125 2.875C7 2.625 6.8125 2.5 6.5625 2.5C6.5 2.5 6.45312 2.5 6.42188 2.5L1.96875 3.53125C1.6875 3.625 1.53125 3.82812 1.5 4.14062C1.53125 7.73438 2.40625 10.9844 4.125 13.8906C5.875 16.7969 8.20312 19.125 11.1094 20.875C14.0156 22.5938 17.2656 23.4688 20.8594 23.5C21.1719 23.4688 21.375 23.3125 21.4688 23.0312Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

View File

@@ -0,0 +1,11 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6143_3162)">
<path d="M25.625 31.2491V37.4991C25.625 37.9964 25.8225 38.4733 26.1742 38.8249C26.5258 39.1765 27.0027 39.3741 27.5 39.3741C27.9973 39.3741 28.4742 39.1765 28.8258 38.8249C29.1775 38.4733 29.375 37.9964 29.375 37.4991V36.2491H28.125V37.4991C28.125 37.6648 28.0592 37.8238 27.9419 37.941C27.8247 38.0582 27.6658 38.1241 27.5 38.1241C27.3342 38.1241 27.1753 38.0582 27.0581 37.941C26.9408 37.8238 26.875 37.6648 26.875 37.4991V31.2491H25.625ZM10.625 36.2491V37.4991C10.625 37.9964 10.8225 38.4733 11.1742 38.8249C11.5258 39.1765 12.0027 39.3741 12.5 39.3741C12.9973 39.3741 13.4742 39.1765 13.8258 38.8249C14.1775 38.4733 14.375 37.9964 14.375 37.4991V31.2491H13.125V37.4991C13.125 37.6648 13.0592 37.8238 12.9419 37.941C12.8247 38.0582 12.6658 38.1241 12.5 38.1241C12.3342 38.1241 12.1753 38.0582 12.0581 37.941C11.9408 37.8238 11.875 37.6648 11.875 37.4991V36.2491H10.625ZM15.625 29.9991H16.875V36.8741H15.625V29.9991ZM23.125 29.9991H24.375V36.8741H23.125V29.9991ZM19.375 31.2491H20.625V38.1241H19.375V31.2491ZM35.625 12.4991H29.0263C29.4174 11.1056 29.4805 9.64041 29.2107 8.21841C28.9409 6.79641 28.3456 5.45618 27.4713 4.30273C26.597 3.14927 25.4675 2.21391 24.1713 1.56992C22.8751 0.92594 21.4474 0.59082 20 0.59082C18.5526 0.59082 17.1249 0.92594 15.8287 1.56992C14.5325 2.21391 13.403 3.14927 12.5287 4.30273C11.6544 5.45618 11.0591 6.79641 10.7893 8.21841C10.5195 9.64041 10.5827 11.1056 10.9738 12.4991H4.375C3.38074 12.5001 2.42749 12.8955 1.72445 13.5985C1.0214 14.3016 0.625993 15.2548 0.625 16.2491V24.9991C0.625993 25.9933 1.0214 26.9466 1.72445 27.6496C2.42749 28.3527 3.38074 28.7481 4.375 28.7491H35.625C36.6193 28.7481 37.5725 28.3527 38.2756 27.6496C38.9786 26.9466 39.374 25.9933 39.375 24.9991V16.2491C39.374 15.2548 38.9786 14.3016 38.2756 13.5985C37.5725 12.8955 36.6193 12.5001 35.625 12.4991ZM20 1.87409C21.607 1.87409 23.1779 2.35061 24.514 3.2434C25.8502 4.13618 26.8916 5.40513 27.5065 6.88978C28.1215 8.37443 28.2824 10.0081 27.9689 11.5842C27.6554 13.1603 26.8815 14.608 25.7452 15.7443C24.6089 16.8806 23.1612 17.6545 21.5851 17.968C20.009 18.2815 18.3753 18.1206 16.8907 17.5056C15.406 16.8906 14.1371 15.8492 13.2443 14.5131C12.3515 13.1769 11.875 11.6061 11.875 9.99909C11.8775 7.84496 12.7343 5.77978 14.2575 4.25658C15.7807 2.73339 17.8459 1.87657 20 1.87409ZM5.625 26.2491H34.375V27.4991H5.625V26.2491ZM5.625 24.9991C5.625 24.6676 5.7567 24.3496 5.99112 24.1152C6.22554 23.8808 6.54348 23.7491 6.875 23.7491H33.125C33.4565 23.7491 33.7745 23.8808 34.0089 24.1152C34.2433 24.3496 34.375 24.6676 34.375 24.9991H5.625ZM38.125 24.9991C38.125 25.6621 37.8616 26.298 37.3928 26.7669C36.9239 27.2357 36.288 27.4991 35.625 27.4991V24.9991C35.625 24.336 35.3616 23.7002 34.8928 23.2313C34.4239 22.7625 33.788 22.4991 33.125 22.4991H6.875C6.21196 22.4991 5.57607 22.7625 5.10723 23.2313C4.63839 23.7002 4.375 24.336 4.375 24.9991V27.4991C3.71196 27.4991 3.07607 27.2357 2.60723 26.7669C2.13839 26.298 1.875 25.6621 1.875 24.9991V16.2491C1.875 15.586 2.13839 14.9502 2.60723 14.4813C3.07607 14.0125 3.71196 13.7491 4.375 13.7491H11.4131C12.1416 15.4207 13.3421 16.8433 14.8675 17.8424C16.3928 18.8416 18.1766 19.3738 20 19.3738C21.8234 19.3738 23.6072 18.8416 25.1325 17.8424C26.6579 16.8433 27.8584 15.4207 28.5869 13.7491H35.625C36.288 13.7491 36.9239 14.0125 37.3928 14.4813C37.8616 14.9502 38.125 15.586 38.125 16.2491V24.9991Z" fill="#010F34"/>
<path d="M34.9998 14.9995C34.629 14.9995 34.2665 15.1095 33.9581 15.3155C33.6498 15.5215 33.4095 15.8143 33.2676 16.157C33.1257 16.4996 33.0885 16.8766 33.1609 17.2403C33.2332 17.604 33.4118 17.9381 33.674 18.2003C33.9362 18.4625 34.2703 18.6411 34.6341 18.7135C34.9978 18.7858 35.3748 18.7487 35.7174 18.6068C36.06 18.4649 36.3528 18.2245 36.5588 17.9162C36.7649 17.6078 36.8748 17.2453 36.8748 16.8745C36.8748 16.3772 36.6773 15.9003 36.3257 15.5487C35.974 15.197 35.4971 14.9995 34.9998 14.9995ZM34.9998 17.4995C34.8762 17.4995 34.7554 17.4628 34.6526 17.3942C34.5498 17.3255 34.4697 17.2279 34.4224 17.1137C34.3751 16.9995 34.3627 16.8738 34.3869 16.7526C34.411 16.6313 34.4705 16.52 34.5579 16.4326C34.6453 16.3451 34.7567 16.2856 34.8779 16.2615C34.9991 16.2374 35.1248 16.2498 35.239 16.2971C35.3532 16.3444 35.4508 16.4245 35.5195 16.5273C35.5882 16.63 35.6248 16.7509 35.6248 16.8745C35.6248 17.0403 35.559 17.1992 35.4418 17.3164C35.3246 17.4336 35.1656 17.4995 34.9998 17.4995ZM16.2286 11.7626L13.8823 11.2932L13.6367 12.5189L15.6242 12.9164L15.2267 14.9039L16.4523 15.1489L16.9217 12.8026L19.3748 11.167V14.1157L17.683 15.8076L18.5667 16.6914L19.9998 15.2582L21.433 16.6914L22.3167 15.8076L20.6248 14.1157V11.167L23.078 12.8026L23.5473 15.1489L24.773 14.9039L24.3755 12.9164L26.363 12.5189L26.1173 11.2932L23.7711 11.7626L21.1267 9.99949L23.7711 8.23637L26.1173 8.70574L26.363 7.48012L24.3755 7.08262L24.773 5.09512L23.5473 4.85012L23.078 7.19637L20.6248 8.83199V5.88324L22.3167 4.19137L21.433 3.30762L19.9998 4.74074L18.5667 3.30762L17.683 4.19137L19.3748 5.88324V8.83199L16.9217 7.19637L16.4523 4.85012L15.2267 5.09512L15.6242 7.08262L13.6367 7.48012L13.8823 8.70574L16.2286 8.23637L18.873 9.99949L16.2286 11.7626Z" fill="#010F34"/>
</g>
<defs>
<clipPath id="clip0_6143_3162">
<rect width="40" height="40" fill="white" transform="translate(0 -0.000976562)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@@ -0,0 +1,15 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6160_1298)">
<path d="M35.1044 27.1537L34.0388 28.7506H30.8831L32.7588 26.875H34.375V25.625H33.125V24.375H31.875V25.9912L30 27.8662V24.7094L31.5963 23.645L30.9025 22.605L30 23.2069V21.875H28.75V23.2069L27.8463 22.605L27.1525 23.645L28.75 24.7088V27.8662L26.875 25.9912V24.375H25.625V25.625H24.375V26.875H25.9912L27.8669 28.7506H24.7094L23.645 27.1544L22.605 27.8481L23.2069 28.7506H21.875V30.0006H23.2069L22.605 30.9044L23.645 31.5981L24.7088 30.0006H27.8656L25.9912 31.875H24.375V33.125H25.625V34.375H26.875V32.7587L28.75 30.8837V34.0412L27.1531 35.1056L27.8469 36.1456L28.75 35.5431V36.8762H30V35.5431L30.9031 36.1456L31.5969 35.1056L30 34.04V30.8837L31.875 32.7587V34.375H33.125V33.125H34.375V31.875H32.7588L30.8844 30.0006H34.04L35.1044 31.5975L36.1444 30.9037L35.5419 30.0006H36.875V28.7506H35.5419L36.1444 27.8475L35.1044 27.1537Z" fill="#010F34"/>
<path d="M29.375 19.376C27.2457 19.3766 25.173 20.0616 23.4625 21.3297L18.125 19.5504V17.9054C18.8896 17.4634 19.5522 16.8649 20.0692 16.1489C20.5862 15.433 20.946 14.6158 21.125 13.751H21.25C21.8577 13.7517 22.4448 13.5307 22.9011 13.1293C23.3573 12.7279 23.6514 12.1738 23.7281 11.5709C23.8049 10.9681 23.6589 10.358 23.3177 9.85513C22.9765 9.35226 22.4635 8.9912 21.875 8.83973V7.50098C21.875 5.67761 21.1507 3.92893 19.8614 2.63962C18.5721 1.35031 16.8234 0.625977 15 0.625977C13.1766 0.625977 11.428 1.35031 10.1386 2.63962C8.84933 3.92893 8.125 5.67761 8.125 7.50098V8.83973C7.53648 8.9912 7.02348 9.35226 6.68228 9.85513C6.34108 10.358 6.19514 10.9681 6.27186 11.5709C6.34857 12.1738 6.64267 12.7279 7.09895 13.1293C7.55522 13.5307 8.1423 13.7517 8.75 13.751H8.875C9.054 14.6158 9.41381 15.433 9.93083 16.1489C10.4479 16.8649 11.1104 17.4634 11.875 17.9054V19.5504L5.79563 21.5772C4.2892 22.0779 2.97883 23.0404 2.05063 24.3282C1.12243 25.616 0.6236 27.1635 0.625003 28.751V38.751C0.625003 38.9167 0.690851 39.0757 0.808061 39.1929C0.925271 39.3101 1.08424 39.376 1.25 39.376H23.75C23.9158 39.376 24.0747 39.3101 24.1919 39.1929C24.3092 39.0757 24.375 38.9167 24.375 38.751V38.0229C25.7026 38.7907 27.189 39.2428 28.7193 39.3441C30.2496 39.4454 31.7827 39.1932 33.1999 38.607C34.6171 38.0208 35.8803 37.1164 36.8919 35.9637C37.9035 34.811 38.6363 33.4409 39.0335 31.9596C39.4307 30.4783 39.4817 28.9254 39.1825 27.4213C38.8833 25.9171 38.242 24.5019 37.3082 23.2853C36.3745 22.0687 35.1732 21.0833 33.7976 20.4054C32.4219 19.7275 30.9086 19.3753 29.375 19.376ZM22.3444 22.2741C21.6665 22.9459 21.0876 23.7106 20.625 24.5454V21.701L22.3444 22.2741ZM22.5 11.251C22.5 11.5825 22.3683 11.9004 22.1339 12.1349C21.8995 12.3693 21.5815 12.501 21.25 12.501V10.001C21.5815 10.001 21.8995 10.1327 22.1339 10.3671C22.3683 10.6015 22.5 10.9195 22.5 11.251ZM15 1.87598C16.4913 1.87763 17.9211 2.47079 18.9757 3.52533C20.0302 4.57986 20.6233 6.00964 20.625 7.50098V7.52035C20.3366 7.12802 19.9601 6.80881 19.526 6.58835C19.0918 6.3679 18.6119 6.25234 18.125 6.25098H11.875C11.3881 6.25234 10.9082 6.3679 10.474 6.58835C10.0399 6.80881 9.66343 7.12802 9.375 7.52035V7.50098C9.37666 6.00964 9.96982 4.57986 11.0244 3.52533C12.0789 2.47079 13.5087 1.87763 15 1.87598ZM19.885 8.75098H10.115C10.2438 8.38666 10.482 8.07103 10.7971 7.84728C11.1121 7.62353 11.4886 7.50258 11.875 7.50098H18.125C18.5114 7.50258 18.8879 7.62353 19.2029 7.84728C19.518 8.07103 19.7562 8.38666 19.885 8.75098ZM7.5 11.251C7.5 10.9195 7.6317 10.6015 7.86612 10.3671C8.10054 10.1327 8.41848 10.001 8.75 10.001V12.501C8.41848 12.501 8.10054 12.3693 7.86612 12.1349C7.6317 11.9004 7.5 11.5825 7.5 11.251ZM10 12.501V10.001H20V12.501C20 13.8271 19.4732 15.0988 18.5355 16.0365C17.5979 16.9742 16.3261 17.501 15 17.501C13.6739 17.501 12.4022 16.9742 11.4645 16.0365C10.5268 15.0988 10 13.8271 10 12.501ZM15 18.751C15.636 18.751 16.2683 18.6539 16.875 18.4629V19.8135L16.4231 20.491C16.267 20.7253 16.0554 20.9175 15.8071 21.0504C15.5589 21.1834 15.2816 21.2529 15 21.2529C14.7184 21.2529 14.4411 21.1834 14.1929 21.0504C13.9446 20.9175 13.733 20.7253 13.5769 20.491L13.125 19.8135V18.4629C13.7317 18.6539 14.364 18.751 15 18.751ZM12.2444 20.7447L12.5369 21.1822C12.8073 21.5877 13.1735 21.9201 13.6032 22.15C14.0329 22.3799 14.5127 22.5002 15 22.5002C15.4873 22.5002 15.9671 22.3799 16.3968 22.15C16.8265 21.9201 17.1927 21.5877 17.4631 21.1822L17.7556 20.7447L19.375 21.2847V29.376C19.375 29.5872 19.3938 29.7935 19.4069 30.001H10.625V21.2847L12.2444 20.7447ZM6.875 22.5347L9.375 21.7016V30.001H6.875V22.5347ZM1.875 28.751C1.87432 27.53 2.22836 26.335 2.89409 25.3115C3.55982 24.2879 4.50857 23.4798 5.625 22.9854V38.126H1.875V28.751ZM18.125 38.126H11.875V35.001H18.125V38.126ZM23.125 38.126H19.375V34.376C19.375 34.2102 19.3092 34.0512 19.1919 33.934C19.0747 33.8168 18.9158 33.751 18.75 33.751H11.25C11.0842 33.751 10.9253 33.8168 10.8081 33.934C10.6909 34.0512 10.625 34.2102 10.625 34.376V38.126H6.875V31.251H19.5575C20.0055 33.5852 21.2702 35.6835 23.125 37.1697V38.126ZM29.375 38.126C27.0551 38.1235 24.831 37.2008 23.1906 35.5604C21.5502 33.92 20.6275 31.6959 20.625 29.376V29.3641C20.6273 27.634 21.1425 25.9435 22.1054 24.5061C23.0683 23.0687 24.4357 21.9491 26.0347 21.2886C27.6338 20.6282 29.3928 20.4566 31.0893 20.7956C32.7859 21.1345 34.3438 21.9688 35.5664 23.193C36.7889 24.4172 37.6211 25.9763 37.9577 27.6733C38.2944 29.3703 38.1204 31.129 37.4578 32.7272C36.7952 34.3254 35.6737 35.6912 34.235 36.6522C32.7963 37.6131 31.1051 38.126 29.375 38.126Z" fill="#010F34"/>
<path d="M36.875 0.625977H26.875C26.212 0.625977 25.5761 0.889369 25.1072 1.35821C24.6384 1.82705 24.375 2.46294 24.375 3.12598V7.50098C24.375 7.66674 24.4408 7.82571 24.5581 7.94292C24.6753 8.06013 24.8342 8.12598 25 8.12598H38.75C38.9158 8.12598 39.0747 8.06013 39.1919 7.94292C39.3092 7.82571 39.375 7.66674 39.375 7.50098V3.12598C39.375 2.46294 39.1116 1.82705 38.6428 1.35821C38.1739 0.889369 37.538 0.625977 36.875 0.625977ZM26.875 1.87598H36.875C37.2065 1.87598 37.5245 2.00767 37.7589 2.24209C37.9933 2.47651 38.125 2.79446 38.125 3.12598V4.37598H25.625V3.12598C25.625 2.79446 25.7567 2.47651 25.9911 2.24209C26.2255 2.00767 26.5435 1.87598 26.875 1.87598ZM25.625 6.87598V5.62598H38.125V6.87598H25.625Z" fill="#010F34"/>
<path d="M31.25 10.001H32.5V13.126H31.25V10.001Z" fill="#010F34"/>
<path d="M26.875 10.001H28.125V13.126H26.875V10.001Z" fill="#010F34"/>
<path d="M35.625 10.001H36.875V13.126H35.625V10.001Z" fill="#010F34"/>
</g>
<defs>
<clipPath id="clip0_6160_1298">
<rect width="40" height="40" fill="white" transform="translate(0 0.000976562)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@@ -0,0 +1,27 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_6160_1244" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="41">
<path d="M0 0.0029335H40V40.0029H0V0.0029335Z" fill="white"/>
</mask>
<g mask="url(#mask0_6160_1244)">
<path d="M30.6893 23.5059H9.23023C8.31781 23.5059 7.57812 22.7662 7.57812 21.8538V19.2048C7.57812 18.2925 8.31781 17.5528 9.23023 17.5528H30.6893C31.6017 17.5528 32.3413 18.2925 32.3413 19.2048V21.8538C32.3413 22.7662 31.6017 23.5059 30.6893 23.5059Z" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.57922 20.5645H4.23438" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M32.3438 20.5645H35.6887" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.6884 27.0527C10.6696 27.0527 9.84375 26.2269 9.84375 25.208V23.5055H13.5331V25.208C13.5331 26.2269 12.7073 27.0527 11.6884 27.0527Z" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.9033 27.0527C18.8845 27.0527 18.0586 26.2269 18.0586 25.208V23.5055H21.748V25.208C21.748 26.2269 20.9221 27.0527 19.9033 27.0527Z" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21.748 17.4121H18.0586V15.9009C18.0586 14.8821 18.8845 14.0562 19.9033 14.0562C20.922 14.0562 21.748 14.8821 21.748 15.9009V17.4121Z" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M27.8525 27.0527C26.8337 27.0527 26.0078 26.2269 26.0078 25.208V23.5055H29.6972V25.208C29.6972 26.2269 28.8713 27.0527 27.8525 27.0527Z" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4.23445 22.9727H2.1407C1.38992 22.9727 0.78125 22.364 0.78125 21.6132V19.516C0.78125 18.7652 1.38992 18.1566 2.1407 18.1566H4.23445V22.9727Z" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M35.6875 18.1566H37.8594C38.6102 18.1566 39.2188 18.7652 39.2188 19.516V21.6132C39.2188 22.364 38.6102 22.9727 37.8594 22.9727H35.6875V18.1566Z" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.6914 14.4066V17.5527" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M27.8516 14.4066V17.5527" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.692 27.0529C11.692 30.5168 10.7283 33.9123 8.90852 36.8597L8.61328 37.3379" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M27.8516 27.0529C27.8516 30.5168 28.8153 33.9123 30.6351 36.8597L30.9303 37.3379" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.9023 27.0529V37.3379" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.38953 3.68266C6.83883 4.73906 5.82031 6.51875 5.82031 8.53656C5.82031 9.40523 6.01055 10.229 6.34914 10.9707H17.0305C17.3692 10.229 17.5595 9.40523 17.5595 8.53656C17.5595 6.50188 16.5238 4.70945 14.9513 3.65641" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M33.7235 8.53656C33.7235 5.29492 31.0956 2.66695 27.854 2.66695C24.6123 2.66695 21.9844 5.29492 21.9844 8.53656C21.9844 9.40523 22.1746 10.229 22.5133 10.9707H33.1947C33.5333 10.229 33.7235 9.40523 33.7235 8.53656Z" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.6884 14.4512C14.0614 14.4512 16.104 13.0422 17.0291 11.0158H6.34766C7.27273 13.0422 9.31531 14.4512 11.6884 14.4512Z" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22.5117 11.0158C23.4368 13.0421 25.4794 14.4512 27.8524 14.4512C30.2254 14.4512 32.268 13.0421 33.1931 11.0158H22.5117Z" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.7317 10.9707L9.64453 7.75969" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M28.0012 10.9707L25.9141 7.75969" stroke="#010F34" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@@ -0,0 +1,15 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6157_1221)">
<path d="M38 19.3348H33.3334V14.5255C35.7271 13.3055 37.2612 10.8731 37.3307 8.18737C37.4002 5.50151 35.9941 2.99307 33.6667 1.65088C33.4605 1.53182 33.2063 1.53182 33.0001 1.65088C32.7938 1.76995 32.6667 1.99002 32.6667 2.22823V8.29088L30 9.89081L27.3334 8.29081V2.22807C27.3334 1.98987 27.2063 1.76979 27 1.65073C26.7938 1.53167 26.5396 1.53167 26.3334 1.65073C24.0059 2.99292 22.5998 5.50143 22.6694 8.18721C22.7389 10.8731 24.273 13.3054 26.6667 14.5253V19.3346H15.3334V9.68276C15.3334 8.2301 15.6387 7.19409 16.2173 6.68807C16.3671 6.55706 16.543 6.4594 16.7334 6.40143C16.9075 6.95502 17.4197 7.33245 18 7.33479H20C20.7364 7.33479 21.3334 6.73784 21.3334 6.00143V2.66807C21.3334 1.93167 20.7364 1.33471 20 1.33471H18C17.5824 1.33573 17.1897 1.53338 16.94 1.86807C14.3837 0.105181 11.1803 -0.441382 8.18398 0.374087C5.4893 0.997056 3.29664 2.94807 2.36469 5.55206C2.19711 6.07612 2.36867 6.64924 2.79656 6.99502C3.22445 7.34088 3.82078 7.38838 4.29805 7.11471C5.38633 6.3751 6.78398 6.26416 7.97539 6.82268C8.86672 7.32932 9.33336 8.31799 9.33336 9.68268V19.3347H2C0.895469 19.3347 0 20.2302 0 21.3347V35.3347C0.00296875 37.9108 2.09055 39.9985 4.66664 40.0014H35.3333C37.9094 39.9984 39.997 37.9108 39.9999 35.3347V21.3347C40 20.2302 39.1046 19.3348 38 19.3348ZM18 2.66807H20V6.00143H18V2.66807ZM24 8.00143C24.0045 6.29659 24.7312 4.67346 26 3.53479V8.66815C26.0001 8.90213 26.1227 9.11901 26.3234 9.23948L29.6567 11.2395C29.868 11.3664 30.1321 11.3664 30.3434 11.2395L33.6767 9.23948C33.8773 9.11901 34 8.90213 34.0001 8.66815V3.53479C36.0556 5.37331 36.5932 8.37627 35.3031 10.8137C34.013 13.2511 31.2277 14.4953 28.5514 13.8295C25.8752 13.1635 23.9975 10.7592 24 8.00143ZM28 15.0508C29.3065 15.4295 30.6936 15.4295 32 15.0508V19.3348H28V15.0508ZM8.63664 5.66479C7.03344 4.86698 5.12695 4.98198 3.63133 5.96682C4.42852 3.79112 6.27602 2.16909 8.53664 1.66018C11.36 0.888618 14.3821 1.51456 16.6666 3.34417V5.04752C16.1892 5.12987 15.7429 5.3394 15.3746 5.65416C14.462 6.42752 13.9999 7.78213 13.9999 9.68284V13.3349H10.6666V9.68284C10.6666 7.83807 9.94531 6.41081 8.63664 5.66479ZM10.6666 14.6681H14V19.3347H10.6666V14.6681ZM10 20.6681H35.3334V26.0014C35.3334 26.7378 34.7364 27.3348 34 27.3348H6C5.26359 27.3348 4.66664 26.7378 4.66664 26.0014V20.6681H10ZM8 38.6681V37.3347C8 36.5983 8.59695 36.0014 9.33336 36.0014H30.6667C31.4031 36.0014 32.0001 36.5983 32.0001 37.3347V38.6681H8ZM38.6666 35.3348C38.6645 37.1748 37.1734 38.6659 35.3333 38.6681H33.3333V37.3348C33.3333 35.8621 32.1394 34.6681 30.6666 34.6681H9.33336C7.86063 34.6681 6.66672 35.8621 6.66672 37.3348V38.6681H4.66672C2.82672 38.666 1.33562 37.1749 1.33336 35.3348V21.3348C1.33336 20.9666 1.63188 20.6681 2 20.6681H3.33336V26.0015C3.33336 27.4742 4.52727 28.6681 6 28.6681H34C35.4727 28.6681 36.6666 27.4742 36.6666 26.0015V20.6681H38C38.3682 20.6681 38.6666 20.9666 38.6666 21.3348V35.3348Z" fill="#010F34"/>
<path d="M23.9987 32.002H15.9987C15.6305 32.002 15.332 32.3004 15.332 32.6686C15.332 33.0368 15.6305 33.3352 15.9987 33.3352H23.9987C24.3669 33.3352 24.6653 33.0368 24.6653 32.6686C24.6653 32.3004 24.3669 32.002 23.9987 32.002Z" fill="#010F34"/>
<path d="M6.66664 26.0013H33.3333C33.7015 26.0013 33.9999 25.7028 33.9999 25.3346C33.9999 24.9664 33.7015 24.668 33.3333 24.668H6.66664C6.29844 24.668 6 24.9664 6 25.3346C6 25.7028 6.29852 26.0013 6.66664 26.0013Z" fill="#010F34"/>
<path d="M6.66664 23.3352H33.3333C33.7015 23.3352 33.9999 23.0368 33.9999 22.6686C33.9999 22.3004 33.7015 22.002 33.3333 22.002H6.66664C6.29844 22.002 6 22.3005 6 22.6686C6 23.0367 6.29852 23.3352 6.66664 23.3352Z" fill="#010F34"/>
<path d="M33.3346 33.3352C33.7028 33.3352 34.0013 33.0368 34.0013 32.6686C34.0013 32.3004 33.7028 32.002 33.3346 32.002C32.9664 32.002 32.668 32.3004 32.668 32.6686C32.668 33.0368 32.9664 33.3352 33.3346 33.3352Z" fill="#010F34"/>
<path d="M35.9987 33.3352C36.3668 33.3352 36.6653 33.0368 36.6653 32.6686C36.6653 32.3004 36.3668 32.002 35.9987 32.002C35.6305 32.002 35.332 32.3004 35.332 32.6686C35.332 33.0368 35.6305 33.3352 35.9987 33.3352Z" fill="#010F34"/>
</g>
<defs>
<clipPath id="clip0_6157_1221">
<rect width="40" height="40" fill="white" transform="translate(0 0.00195312)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1,11 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6157_1240)">
<path d="M13.75 36.877C14.2473 36.877 14.7242 36.6794 15.0758 36.3278C15.4275 35.9761 15.625 35.4992 15.625 35.002C15.625 34.2032 14.6737 32.7388 14.2644 32.147C14.2038 32.0681 14.1259 32.0043 14.0367 31.9603C13.9475 31.9164 13.8494 31.8935 13.75 31.8935C13.6506 31.8935 13.5525 31.9164 13.4633 31.9603C13.3741 32.0043 13.2962 32.0681 13.2356 32.147C12.8263 32.7388 11.875 34.2032 11.875 35.002C11.875 35.4992 12.0725 35.9761 12.4242 36.3278C12.7758 36.6794 13.2527 36.877 13.75 36.877ZM13.75 33.6607C14.0284 34.0717 14.2394 34.5244 14.375 35.002C14.375 35.1677 14.3092 35.3267 14.1919 35.4439C14.0747 35.5611 13.9158 35.627 13.75 35.627C13.5842 35.627 13.4253 35.5611 13.3081 35.4439C13.1908 35.3267 13.125 35.1677 13.125 35.002C13.2606 34.5244 13.4716 34.0717 13.75 33.6607ZM35 0.626953H5C3.84008 0.628276 2.72805 1.08964 1.90787 1.90982C1.08768 2.73001 0.626323 3.84204 0.625 5.00195V17.502C0.625 17.6677 0.690848 17.8267 0.808058 17.9439C0.925268 18.0611 1.08424 18.127 1.25 18.127H4.47062L5.00875 21.3551C5.03315 21.5009 5.10845 21.6334 5.22127 21.7289C5.3341 21.8245 5.47715 21.8769 5.625 21.877H14.1625L16.875 27.0313V29.377C16.875 29.5427 16.9408 29.7017 17.0581 29.8189C17.1753 29.9361 17.3342 30.002 17.5 30.002H18.1569C18.3136 31.5428 19.036 32.9708 20.1846 34.0098C21.3332 35.0488 22.8262 35.625 24.375 35.627C25.3693 35.6279 26.3225 36.0234 27.0256 36.7264C27.7286 37.4294 28.124 38.3827 28.125 39.377H29.375C29.3735 38.0513 28.8462 36.7804 27.9089 35.8431C26.9715 34.9057 25.7006 34.3784 24.375 34.377C23.1581 34.3749 21.9837 33.9297 21.0714 33.1244C20.159 32.3192 19.5713 31.2091 19.4181 30.002H20.6812C20.8295 30.8748 21.2816 31.6671 21.9575 32.239C22.6334 32.8108 23.4897 33.1253 24.375 33.127C26.032 33.1288 27.6207 33.7878 28.7924 34.9595C29.9641 36.1313 30.6232 37.7199 30.625 39.377H31.875C31.8728 37.3885 31.082 35.4821 29.6759 34.076C28.2699 32.67 26.3635 31.8791 24.375 31.877C23.8224 31.8749 23.286 31.6898 22.8497 31.3505C22.4135 31.0113 22.1019 30.537 21.9637 30.002H22.5C22.6658 30.002 22.8247 29.9361 22.9419 29.8189C23.0592 29.7017 23.125 29.5427 23.125 29.377V27.0313L25.8375 21.877H34.375C34.5229 21.8769 34.6659 21.8245 34.7787 21.7289C34.8916 21.6334 34.9669 21.5009 34.9912 21.3551L35.5294 18.127H38.75C38.9158 18.127 39.0747 18.0611 39.1919 17.9439C39.3092 17.8267 39.375 17.6677 39.375 17.502V5.00195C39.3737 3.84204 38.9123 2.73001 38.0921 1.90982C37.2719 1.08964 36.1599 0.628276 35 0.626953ZM28.4694 16.877L29.125 15.627H34.375V16.877H28.4694ZM22.125 26.252H21.395L23.6319 15.627H27.715L22.125 26.252ZM12.285 15.627H16.3681L18.605 26.252H17.875L12.285 15.627ZM19.8819 26.252L17.645 15.627H22.355L20.1181 26.252H19.8819ZM18.125 27.502H21.875V28.752H18.125V27.502ZM34.375 9.37695H5.625V8.12695H34.375V9.37695ZM5.625 10.627H34.375V11.877H5.625V10.627ZM5.625 13.127H34.375V14.377H5.625V13.127ZM5.625 15.627H10.875L11.5331 16.877H5.625V15.627ZM6.15438 20.627L5.7375 18.127H12.1875L13.5031 20.627H6.15438ZM33.8456 20.627H26.4956L27.8081 18.127H34.2625L33.8456 20.627ZM38.125 16.877H35.625V7.50195C35.625 7.33619 35.5592 7.17722 35.4419 7.06001C35.3247 6.9428 35.1658 6.87695 35 6.87695H5C4.83424 6.87695 4.67527 6.9428 4.55806 7.06001C4.44085 7.17722 4.375 7.33619 4.375 7.50195V16.877H1.875V5.00195C1.87599 4.17346 2.20555 3.37918 2.79139 2.79334C3.37722 2.2075 4.1715 1.87795 5 1.87695H35C35.8285 1.87795 36.6228 2.2075 37.2086 2.79334C37.7944 3.37918 38.124 4.17346 38.125 5.00195V16.877ZM6.36063 25.897C5.95125 26.4888 5 27.9532 5 28.752C5 29.2492 5.19754 29.7261 5.54917 30.0778C5.90081 30.4294 6.37772 30.627 6.875 30.627C7.37228 30.627 7.84919 30.4294 8.20083 30.0778C8.55246 29.7261 8.75 29.2492 8.75 28.752C8.75 27.9532 7.79875 26.4888 7.38937 25.897C7.32879 25.8181 7.25089 25.7543 7.1617 25.7103C7.07252 25.6664 6.97442 25.6435 6.875 25.6435C6.77558 25.6435 6.67748 25.6664 6.5883 25.7103C6.49911 25.7543 6.42121 25.8181 6.36063 25.897ZM6.875 29.377C6.70924 29.377 6.55027 29.3111 6.43306 29.1939C6.31585 29.0767 6.25 28.9177 6.25 28.752C6.38552 28.2742 6.59651 27.8212 6.875 27.4101C7.15349 27.8212 7.36448 28.2742 7.5 28.752C7.5 28.9177 7.43415 29.0767 7.31694 29.1939C7.19973 29.3111 7.04076 29.377 6.875 29.377Z" fill="#010F34"/>
<path d="M10.7356 22.771C10.3263 23.3629 9.375 24.8272 9.375 25.626C9.375 26.1233 9.57254 26.6002 9.92417 26.9518C10.2758 27.3034 10.7527 27.501 11.25 27.501C11.7473 27.501 12.2242 27.3034 12.5758 26.9518C12.9275 26.6002 13.125 26.1233 13.125 25.626C13.125 24.8272 12.1737 23.3629 11.7644 22.771C11.7038 22.6922 11.6259 22.6283 11.5367 22.5844C11.4475 22.5404 11.3494 22.5176 11.25 22.5176C11.1506 22.5176 11.0525 22.5404 10.9633 22.5844C10.8741 22.6283 10.7962 22.6922 10.7356 22.771ZM11.25 26.251C11.0842 26.251 10.9253 26.1851 10.8081 26.0679C10.6908 25.9507 10.625 25.7917 10.625 25.626C10.7605 25.1483 10.9715 24.6953 11.25 24.2841C11.5285 24.6953 11.7395 25.1483 11.875 25.626C11.875 25.7917 11.8092 25.9507 11.6919 26.0679C11.5747 26.1851 11.4158 26.251 11.25 26.251ZM28.2356 22.771C27.8262 23.3629 26.875 24.8272 26.875 25.626C26.875 26.1233 27.0725 26.6002 27.4242 26.9518C27.7758 27.3034 28.2527 27.501 28.75 27.501C29.2473 27.501 29.7242 27.3034 30.0758 26.9518C30.4275 26.6002 30.625 26.1233 30.625 25.626C30.625 24.8272 29.6738 23.3629 29.2644 22.771C29.2038 22.6922 29.1259 22.6283 29.0367 22.5844C28.9475 22.5404 28.8494 22.5176 28.75 22.5176C28.6506 22.5176 28.5525 22.5404 28.4633 22.5844C28.3741 22.6283 28.2962 22.6922 28.2356 22.771ZM29.375 25.626C29.375 25.7917 29.3092 25.9507 29.1919 26.0679C29.0747 26.1851 28.9158 26.251 28.75 26.251C28.5842 26.251 28.4253 26.1851 28.3081 26.0679C28.1908 25.9507 28.125 25.7917 28.125 25.626C28.2605 25.1483 28.4715 24.6953 28.75 24.2841C29.0285 24.6953 29.2395 25.1483 29.375 25.626ZM33.6394 25.896C33.5788 25.8172 33.5009 25.7533 33.4117 25.7094C33.3225 25.6654 33.2244 25.6426 33.125 25.6426C33.0256 25.6426 32.9275 25.6654 32.8383 25.7094C32.7491 25.7533 32.6712 25.8172 32.6106 25.896C32.2012 26.4879 31.25 27.9522 31.25 28.751C31.25 29.2483 31.4475 29.7252 31.7992 30.0768C32.1508 30.4284 32.6277 30.626 33.125 30.626C33.6223 30.626 34.0992 30.4284 34.4508 30.0768C34.8025 29.7252 35 29.2483 35 28.751C35 27.9522 34.0488 26.4879 33.6394 25.896ZM33.125 29.376C32.9592 29.376 32.8003 29.3101 32.6831 29.1929C32.5658 29.0757 32.5 28.9167 32.5 28.751C32.6355 28.2733 32.8465 27.8203 33.125 27.4091C33.4035 27.8203 33.6145 28.2733 33.75 28.751C33.75 28.9167 33.6842 29.0757 33.5669 29.1929C33.4497 29.3101 33.2908 29.376 33.125 29.376Z" fill="#010F34"/>
</g>
<defs>
<clipPath id="clip0_6157_1240">
<rect width="40" height="40" fill="white" transform="translate(0 0.00195312)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

@@ -0,0 +1,19 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6157_1201)">
<path d="M38 3.33594H2C0.895469 3.33594 0 4.23141 0 5.33594V17.3359C0 17.7041 0.298516 18.0026 0.666641 18.0026C1.03477 18.0026 1.33328 17.7041 1.33328 17.3359V5.33594C1.33328 4.96773 1.6318 4.6693 1.99992 4.6693H3.33328V10.0026C3.33328 11.4753 4.52719 12.6692 5.99992 12.6692H33.9999C35.4727 12.6692 36.6666 11.4753 36.6666 10.0026V4.66922H38C38.3682 4.66922 38.6666 4.96773 38.6666 5.33586V19.3359C38.6645 21.1759 37.1734 22.667 35.3333 22.6692H33.3333V21.3359C33.3333 19.8631 32.1394 18.6692 30.6666 18.6692H23.24C22.8718 18.6692 22.5734 18.9677 22.5734 19.3359C22.5734 19.7041 22.8718 20.0025 23.24 20.0025H30.6666C31.403 20.0025 32 20.5995 32 21.3359V22.6692H24.52C24.1518 22.6692 23.8534 22.9677 23.8534 23.3359C23.8534 23.7041 24.1519 24.0025 24.52 24.0025H35.3334C37.9095 23.9995 39.9971 21.912 40 19.3359V5.33586C40 4.23133 39.1046 3.33594 38 3.33594ZM35.3334 10.0026C35.3334 10.739 34.7364 11.3359 34 11.3359H6C5.26359 11.3359 4.66664 10.739 4.66664 10.0026V4.66922H35.3333V10.0026H35.3334Z" fill="#010F34"/>
<path d="M6.66664 10.0032H33.3333C33.7015 10.0032 33.9999 9.70477 33.9999 9.33656C33.9999 8.96836 33.7015 8.66992 33.3333 8.66992H6.66664C6.29844 8.66992 6 8.96836 6 9.33656C6 9.70477 6.29852 10.0032 6.66664 10.0032Z" fill="#010F34"/>
<path d="M6.66664 7.33523H33.3333C33.7015 7.33523 33.9999 7.03672 33.9999 6.66859C33.9999 6.30047 33.7015 6.00195 33.3333 6.00195H6.66664C6.29844 6.00195 6 6.30047 6 6.66859C6 7.03672 6.29852 7.33523 6.66664 7.33523Z" fill="#010F34"/>
<path d="M33.3346 17.3352C33.7028 17.3352 34.0013 17.0368 34.0013 16.6686C34.0013 16.3004 33.7028 16.002 33.3346 16.002C32.9664 16.002 32.668 16.3004 32.668 16.6686C32.668 17.0368 32.9664 17.3352 33.3346 17.3352Z" fill="#010F34"/>
<path d="M35.9987 17.3352C36.3668 17.3352 36.6653 17.0368 36.6653 16.6686C36.6653 16.3004 36.3668 16.002 35.9987 16.002C35.6305 16.002 35.332 16.3004 35.332 16.6686C35.332 17.0368 35.6305 17.3352 35.9987 17.3352Z" fill="#010F34"/>
<path d="M24 34.6692C24 35.0374 24.2985 35.3359 24.6666 35.3359C25.0348 35.3359 25.3333 35.0373 25.3333 34.6692C25.3395 34.2816 25.5194 33.9172 25.8233 33.6766C26.3602 33.192 26.6666 32.5027 26.6666 31.7795C26.6666 31.0563 26.3602 30.367 25.8233 29.8825C25.5145 29.6463 25.3334 29.2796 25.3334 28.8909C25.3334 28.5021 25.5145 28.1355 25.8233 27.8992C26.3573 27.4127 26.6631 26.7249 26.6666 26.0026C26.6666 25.6344 26.3682 25.3359 26 25.3359C25.6318 25.3359 25.3334 25.6344 25.3334 26.0026C25.3272 26.3898 25.1473 26.7538 24.8434 26.9939C24.3066 27.4782 24.0002 28.1673 24.0002 28.8902C24.0002 29.6132 24.3066 30.3023 24.8434 30.7866C25.1522 31.0232 25.3333 31.3902 25.3333 31.7792C25.3333 32.1683 25.1522 32.5352 24.8434 32.7719C24.3097 33.2589 24.004 33.9468 24 34.6692Z" fill="#010F34"/>
<path d="M28.668 34.6692C28.668 35.0374 28.9665 35.3359 29.3346 35.3359C29.7028 35.3359 30.0012 35.0373 30.0012 34.6692C30.0075 34.2816 30.1873 33.9172 30.4912 33.6766C31.0281 33.192 31.3345 32.5027 31.3345 31.7795C31.3345 31.0563 31.0281 30.367 30.4912 29.8825C30.1825 29.6463 30.0014 29.2796 30.0014 28.8909C30.0014 28.5021 30.1825 28.1355 30.4912 27.8992C31.0252 27.4127 31.3311 26.7249 31.3346 26.0026C31.3346 25.6344 31.0362 25.3359 30.668 25.3359C30.2998 25.3359 30.0013 25.6344 30.0013 26.0026C29.9952 26.3898 29.8152 26.7538 29.5113 26.9939C28.9745 27.4782 28.6681 28.1673 28.6681 28.8902C28.6681 29.6132 28.9745 30.3023 29.5113 30.7866C29.8202 31.0232 30.0012 31.3902 30.0012 31.7792C30.0012 32.1683 29.8202 32.5352 29.5113 32.7719C28.9777 33.2589 28.672 33.9468 28.668 34.6692Z" fill="#010F34"/>
<path d="M32.668 34.6692C32.668 35.0374 32.9664 35.3359 33.3346 35.3359C33.7028 35.3359 34.0013 35.0373 34.0013 34.6692C34.0075 34.2816 34.1873 33.9172 34.4913 33.6766C35.0281 33.192 35.3345 32.5027 35.3345 31.7795C35.3345 31.0563 35.0281 30.367 34.4913 29.8825C34.1825 29.6463 34.0014 29.2796 34.0014 28.8909C34.0014 28.5021 34.1825 28.1355 34.4913 27.8992C35.0252 27.4127 35.3311 26.7249 35.3346 26.0026C35.3346 25.6344 35.0361 25.3359 34.668 25.3359C34.2998 25.3359 34.0013 25.6344 34.0013 26.0026C33.9952 26.3898 33.8152 26.7538 33.5113 26.9939C32.9745 27.4782 32.6681 28.1673 32.6681 28.8902C32.6681 29.6132 32.9745 30.3023 33.5113 30.7866C33.8202 31.0232 34.0013 31.3902 34.0013 31.7792C34.0013 32.1683 33.8202 32.5352 33.5113 32.7719C32.9777 33.2589 32.672 33.9468 32.668 34.6692Z" fill="#010F34"/>
<path d="M11.3334 36.6686C17.5926 36.6686 22.6667 31.5945 22.6667 25.3352C22.6667 19.076 17.5926 14.002 11.3334 14.002C5.07414 14.002 0 19.0761 0 25.3353C0.00695312 31.5916 5.07703 36.6616 11.3334 36.6686ZM11.3334 15.3353C16.8562 15.3353 21.3334 19.8125 21.3334 25.3353C21.3334 30.8581 16.8562 35.3353 11.3334 35.3353C5.81055 35.3353 1.33336 30.8581 1.33336 25.3353C1.33961 19.815 5.81305 15.3416 11.3334 15.3353Z" fill="#010F34"/>
<path d="M7.83176 24.9645L10.2531 25.7505L8.75778 27.8084L5.11442 28.3858C4.87653 28.4202 4.67551 28.5801 4.58848 28.8041C4.50145 29.0282 4.54176 29.2818 4.69403 29.4678C4.84629 29.6538 5.08692 29.7435 5.32379 29.7024L7.64981 29.3358L6.39848 31.0538C6.182 31.3516 6.24793 31.7686 6.54582 31.9851C6.84371 32.2016 7.26067 32.1356 7.47715 31.8377L8.73184 30.1184L9.09981 32.4437C9.1509 32.7673 9.42957 33.0059 9.75715 33.0064C9.79246 33.0065 9.8277 33.0036 9.86246 32.9977C10.226 32.9404 10.4743 32.5993 10.4172 32.2357L9.83981 28.5923L11.3318 26.5357L12.8272 28.5944L12.2498 32.2377C12.1927 32.6013 12.441 32.9423 12.8045 32.9998C12.8393 33.0056 12.8746 33.0085 12.9098 33.0084C13.2374 33.0079 13.5161 32.7694 13.5672 32.4458L13.9351 30.1205L15.1844 31.8398C15.3248 32.0328 15.5575 32.1363 15.795 32.1112C16.0323 32.0861 16.2383 31.9362 16.3353 31.7182C16.4322 31.5002 16.4055 31.2468 16.2651 31.0538L15.0138 29.3358L17.3398 29.7045C17.5767 29.7455 17.8173 29.6559 17.9696 29.4698C18.1218 29.2838 18.1622 29.0302 18.0751 28.8062C17.9881 28.5821 17.7871 28.4223 17.5492 28.3878L13.9058 27.8105L12.4105 25.7525L14.8318 24.9665L18.1165 26.6405C18.3296 26.7573 18.5893 26.7488 18.7943 26.6187C18.9994 26.4884 19.1175 26.257 19.1024 26.0145C19.0873 25.772 18.9415 25.557 18.7219 25.4532L16.6253 24.3866L18.6486 23.7299C18.8859 23.6654 19.0683 23.4755 19.1233 23.2359C19.1783 22.9962 19.097 22.7458 18.9117 22.5842C18.7264 22.4227 18.4672 22.3762 18.2373 22.4633L16.2107 23.1206L17.2773 21.0206C17.4447 20.6926 17.3143 20.2909 16.9863 20.1236C16.6582 19.9562 16.2566 20.0866 16.0893 20.4146L14.4139 23.7026L11.9986 24.4826V21.9359L14.6066 19.328C14.8397 19.0639 14.8271 18.6642 14.578 18.4152C14.3289 18.1663 13.9292 18.1541 13.6653 18.3873L11.9984 20.0538V17.9245C11.9984 17.5562 11.6999 17.2578 11.3318 17.2578C10.9636 17.2578 10.6651 17.5563 10.6651 17.9245V20.0524L8.9984 18.3858C8.83098 18.2125 8.58317 18.143 8.35004 18.204C8.11692 18.265 7.93496 18.447 7.87395 18.6801C7.81293 18.9132 7.88246 19.161 8.05575 19.3284L10.665 21.9358V24.4824L8.24637 23.6971L6.57106 20.4091C6.40371 20.081 6.00215 19.9507 5.67403 20.118C5.34598 20.2854 5.21567 20.687 5.38301 21.0151L6.45301 23.1151L4.42637 22.4577C4.19645 22.3706 3.93731 22.4171 3.752 22.5787C3.56668 22.7402 3.48535 22.9907 3.54035 23.2303C3.59535 23.4699 3.77778 23.6598 4.01504 23.7244L6.0384 24.381L3.94176 25.4477C3.62567 25.6209 3.50457 26.0141 3.66825 26.3352C3.83192 26.6562 4.22121 26.7891 4.54707 26.6351L7.83176 24.9645Z" fill="#010F34"/>
</g>
<defs>
<clipPath id="clip0_6157_1201">
<rect width="40" height="40" fill="white" transform="translate(0 0.00195312)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 276 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1,185 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="katman_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1920 1080" style="enable-background:new 0 0 1920 1080;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#SVGID_1_);}
.st1{fill:url(#SVGID_2_);}
.st2{fill:url(#SVGID_3_);}
.st3{fill:url(#SVGID_4_);}
.st4{fill:url(#SVGID_5_);}
.st5{fill:url(#SVGID_6_);}
.st6{fill:url(#SVGID_7_);}
.st7{fill:url(#SVGID_8_);}
.st8{fill:url(#SVGID_9_);}
.st9{fill:url(#SVGID_10_);}
.st10{fill:url(#SVGID_11_);}
.st11{fill:url(#SVGID_12_);}
.st12{fill:url(#SVGID_13_);}
.st13{fill:url(#SVGID_14_);}
.st14{fill:url(#SVGID_15_);}
.st15{fill:url(#SVGID_16_);}
.st16{fill:url(#SVGID_17_);}
.st17{fill:url(#SVGID_18_);}
</style>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="557.2548" y1="599.7233" x2="557.2548" y2="463.7014">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st0" d="M610.93,623.58l0.03-0.03v-10.89V599.5l-0.03-0.03v-6.64c0-3.71-1.47-7.26-4.09-9.88l-1.25-1.25l-2.95-2.95
l-18.06-18.06l-4.35-4.35h-0.04l-12.92-12.97c-2.77-2.78-2.77-7.29,0.01-10.07l12.91-12.91h0.04l4.35-4.35l0.7-0.7
c0.49-0.49,0.77-1.16,0.77-1.86V497.7c0-3.22-3.89-4.83-6.16-2.55l-25.24,25.24l-4.3,4.3v0l-8.64,8.64c-2.78,2.78-2.78,7.3,0,10.08
l8.64,8.64v0l4.3,4.3l36.35,36.35l1.27,1.27c0.49,0.49,0.77,1.16,0.77,1.86v3.53c0,2.34-2.83,3.51-4.48,1.86l-22.44-22.44
l-15.55-15.55l-6.87-6.87l-13.46-13.51c-2.48-2.49-2.47-6.51,0.01-8.99l13.45-13.45l6.87-6.87l15.55-15.55l20.44-20.44
c2.39-2.39,6.49-0.7,6.49,2.69V482v19.25c0,2.34,2.83,3.51,4.48,1.86l5.14-5.14l2.95-2.95l2.35-2.35c1.92-1.92,2.99-4.52,2.99-7.23
v-8.2l0.03-0.03v-13.16v-10.89l-0.03-0.03l0,0l0.2,0.2l0-16.28c0-3.45-4.16-5.2-6.62-2.79l-11.44,11.19l-15.48,15.48l-7.04,7.04
l-16.05,16.05l-36.35,36.35l-4.3,4.3v0l-8.2,8.2c-3.03,3.03-3.03,7.93,0,10.96l8.2,8.2v0l4.3,4.3l36.35,36.35l16.05,16.05
l7.04,7.04l15.48,15.48l12.73,12.73c1.91,1.91,5.17,0.57,5.19-2.13l0.14-18.48v0L610.93,623.58L610.93,623.58z"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="672.7885" y1="599.7233" x2="672.7885" y2="463.7014">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st1" d="M716.23,524.68L716.23,524.68l-4.3-4.3l-0.28-0.28l-8.43-8.43c-2.4-2.4-6.28-2.4-8.68,0l-3.74,3.74l-4.69,4.69
l-16.49,16.49c-0.2,0.2-0.31,0.47-0.31,0.74v17.15c0,2.94,3.55,4.41,5.62,2.33l2.29-2.29l7.04-7.04l11.16-11.16
c1.9-1.9,4.99-1.9,6.9,0l0,0c1.11,1.11,1.12,2.89,0.02,4.01l-0.8,0.82l-35.5,35.5l-24.64,24.64c-1.61,1.61-4.37,0.47-4.37-1.81l0,0
v-4.82v-25.54v-53.77v-7.77v-25.54v-3.16v-5.3c0-0.94,1.13-1.41,1.8-0.74l2.8,2.8c1.41,1.41,2.21,3.33,2.21,5.33v7.88v25.54v23.86
v24.05l0.01,0.01l0,0l-0.18-0.18v0v0.36l0.13,18.74c0.02,2.46,2.99,3.68,4.74,1.95l11.27-11.24c1.23-1.23,1.93-2.9,1.93-4.65
l0.04-22.87v-4.46v-1.72v-4.82v-13.05v-12.5v-1.1v-11v-22.35c0-2.05-0.81-4.01-2.26-5.46l0,0l-7.04-7.04l-8.64-8.64l-6.85-6.85
l-12.14-11.87c-2.2-2.15-5.9-0.58-5.89,2.49l0.13,31.72v0.01v9.42V599.5v24.05l0.03,0.03v0l-0.2-0.2v0v16.69
c0,3.3,3.97,4.97,6.33,2.66L637,631.26l15.48-15.48l7.04-7.04l15.86-15.86v0l0.19-0.19l36.35-36.35l4.3-4.3v0l8.1-8.1
c3.08-3.08,3.08-8.07,0-11.15L716.23,524.68z"/>
</g>
<g>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="788.1967" y1="611.0522" x2="788.1967" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st2" d="M784.02,612.94l-21.97-40.2h9.41l16.71,31.61l16.71-31.61h9.47l-22.09,40.2H784.02z"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="822.374" y1="611.0522" x2="822.374" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st3" d="M818.49,612.94v-41.25l7.77-2.63v43.88H818.49z"/>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="850.6227" y1="611.0522" x2="850.6227" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st4" d="M845.36,612.94c-8.47,0-12.09-3.27-12.09-11.1v-9.35c0-7.83,3.62-11.1,12.09-11.1h10.46
c8.53,0,12.15,3.27,12.15,11.1v9.35c0,7.83-3.62,11.1-12.15,11.1H845.36z M860.15,592.49c0-3.21-1.34-4.32-4.32-4.32h-10.46
c-2.92,0-4.32,1.11-4.32,4.32v9.35c0,3.21,1.4,4.32,4.32,4.32h10.46c2.98,0,4.32-1.11,4.32-4.32V592.49z"/>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="892.2206" y1="611.0522" x2="892.2206" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st5" d="M886.96,612.94c-7.6,0-12.1-3.21-12.1-11.1v-9.35c0-7.89,4.5-11.1,12.1-11.1h10.46
c7.65,0,12.15,3.21,12.15,11.1v7.42h-26.94v1.93c0,3.21,1.64,4.32,4.32,4.32h21.97l-0.99,6.78H886.96z M901.74,592.9
c0-3.39-1.23-4.73-4.32-4.73h-10.46c-3.1,0-4.32,1.34-4.32,4.32V595h19.11V592.9z"/>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="926.1655" y1="611.0522" x2="926.1655" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st6" d="M916.29,612.94v-31.55h7.54v4.32c1.4-3.16,4.27-4.56,7.77-4.56c1.69,0,3.27,0.41,4.44,0.94l-1.11,7.01
c-1.05-0.94-2.28-1.23-4.79-1.23c-3.56,0-5.61,1.58-6.02,4.15v20.92H916.29z"/>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="958.2401" y1="611.0522" x2="958.2401" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st7" d="M954.09,612.94l-15.19-31.55h8.41l10.98,24.48l10.93-24.48h8.36l-15.25,31.55H954.09z"/>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="996.7423" y1="611.0522" x2="996.7423" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st8" d="M991.48,612.94c-7.6,0-12.09-3.21-12.09-11.1v-9.35c0-7.89,4.5-11.1,12.09-11.1h10.46
c7.65,0,12.15,3.21,12.15,11.1v7.42h-26.94v1.93c0,3.21,1.64,4.32,4.32,4.32h21.97l-0.99,6.78H991.48z M1006.27,592.9
c0-3.39-1.23-4.73-4.32-4.73h-10.46c-3.1,0-4.32,1.34-4.32,4.32V595h19.11V592.9z"/>
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="1030.6863" y1="611.0522" x2="1030.6863" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st9" d="M1020.81,612.94v-31.55h7.54v4.32c1.4-3.16,4.27-4.56,7.77-4.56c1.69,0,3.27,0.41,4.44,0.94l-1.11,7.01
c-1.05-0.94-2.28-1.23-4.79-1.23c-3.56,0-5.61,1.58-6.02,4.15v20.92H1020.81z"/>
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="1125.6271" y1="611.0522" x2="1125.6271" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st10" d="M1118.67,612.94c-7.42,0-10.17-2.4-10.17-7.71v-3.45c0-5.32,2.98-7.48,10.05-7.48h10.87
c3.1,0,4.5,0.58,5.67,1.23v-3.68c0-2.98-1.64-3.62-5.9-3.62h-18.23l0.76-6.84h18.46c10.28,0,12.56,4.5,12.56,9.93v21.62
c-2.22,0-4.73-1.23-5.32-4.97c-0.93,2.86-3.56,4.97-8.18,4.97H1118.67z M1135.09,600.03c-1.34-0.53-2.86-0.88-5.73-0.88h-9.52
c-2.45,0-3.51,0.82-3.51,3.51c0,2.63,1.05,3.51,3.45,3.51h9.52c2.81,0,5.32-0.76,5.78-3.39V600.03z"/>
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="1159.5129" y1="611.0522" x2="1159.5129" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st11" d="M1149.64,612.94v-31.55h7.54v4.32c1.4-3.16,4.27-4.56,7.77-4.56c1.69,0,3.27,0.41,4.44,0.94l-1.11,7.01
c-1.05-0.94-2.28-1.23-4.79-1.23c-3.56,0-5.61,1.58-6.02,4.15v20.92H1149.64z"/>
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="1199.0674" y1="611.0522" x2="1199.0674" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st12" d="M1216.89,612.94v-18.81c0-3.51-0.53-5.96-4.27-5.96h-5.67c-3.21,0-4.44,1.23-4.44,3.86v20.92h-7.54v-20.92
c0-2.63-1.23-3.86-4.32-3.86h-5.55c-2.22,0-3.39,0.99-3.91,3.04v21.73h-7.6v-31.55h7.3v4.56c1.29-2.69,3.62-4.56,7.77-4.56h2.45
c5.96,0,9.29,1.58,10.58,5.96c1.17-4.15,4.03-5.96,8.88-5.96h2.75c9,0,11.22,4.09,11.22,12.62v18.93H1216.89z"/>
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="1235.5519" y1="611.0522" x2="1235.5519" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st13" d="M1231.61,578.64v-8.35h7.89v8.35H1231.61z M1231.61,612.94v-31.55h7.83v31.55H1231.61z"/>
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="1263.684" y1="611.0522" x2="1263.684" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st14" d="M1272.86,612.94v-19.92c0-3.21-1.05-4.85-4.32-4.85h-10.17c-2.28,0-3.33,0.94-3.91,3.04v21.73h-7.77v-31.55
h7.48v4.56c1.69-3.33,3.8-4.56,7.48-4.56h6.89c9.17,0,12.15,4.09,12.15,12.62v18.93H1272.86z"/>
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="1303.9969" y1="611.0522" x2="1303.9969" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st15" d="M1313.52,604.35c-2.05,3.97-4.27,4.67-9.35,4.67h-5.43c-9.11,0-12.09-3.68-12.09-11.98v-3.04
c0-8.53,2.98-12.62,12.09-12.62h6.78c2.51,0,6.84,0.76,8.3,4.62v-4.62h7.54v26.35c0,7.65-2.45,14.31-14.96,14.31
c-2.81,0-5.67-0.41-8.3-1.29l0.94-6.19c2.51,0.76,4.5,1.05,7.07,1.05c5.78,0,7.42-3.04,7.42-7.89V604.35z M1313.52,591.2
c-0.64-2.16-1.87-2.98-4.38-2.98h-9.87c-3.68,0-4.85,1.29-4.85,6.25v2.1c0,5.43,1.29,6.25,4.79,6.25h9.41
c2.92,0,4.26-0.58,4.91-2.98V591.2z"/>
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="1076.1971" y1="611.0522" x2="1076.1971" y2="581.5665">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<polygon class="st16" points="1090.98,603.65 1083.32,581.73 1069.01,581.73 1061.18,603.59 1053.9,581.73 1045.21,581.73
1056.69,612.94 1065.16,612.94 1076.2,583.02 1086.95,612.94 1095.48,612.94 1107.19,581.73 1098.48,581.73 "/>
</g>
<g>
<path d="M846.12,537.91h-51.93c-9.41,0-11.04-3.95-11.04-11.86v-33.12c0-8.86,2.86-11.86,11.04-11.86h51.25
c7.09,0,10.36,3.54,12,7.23l11.72-12c-2.18-5.18-8.59-13.77-22.49-13.77h-52.61c-22.35,0-29.17,6.95-29.17,30.4v32.98
c0,23.31,6.82,30.4,29.17,30.4h53.16c13.9,0,20.44-8.59,22.49-13.77l-11.72-11.86C856.34,534.23,853.35,537.91,846.12,537.91z"/>
<path d="M998.09,492.79v-10.09H980.5v73.6h18.26v-48.8c0.95-6,5.72-9.68,14.04-9.68c5.86,0,8.72,0.68,11.18,2.86l2.59-16.36
c-2.73-1.23-6.41-2.18-10.36-2.18C1008.04,482.16,1001.36,485.43,998.09,492.79z"/>
<path d="M1053.83,492.79v-10.09h-17.58v73.6h18.27v-48.8c0.95-6,5.72-9.68,14.04-9.68c5.86,0,8.72,0.68,11.18,2.86l2.59-16.36
c-2.73-1.23-6.41-2.18-10.36-2.18C1063.78,482.16,1057.1,485.43,1053.83,492.79z"/>
<path d="M1144.61,482.71h-24.4c-17.72,0-28.21,7.5-28.21,25.9v21.81c0,18.4,10.5,25.9,28.21,25.9h48.93l2.32-15.81h-51.25
c-6.27,0-10.09-2.59-10.09-10.09v-4.5h62.84V508.6C1172.96,490.2,1162.46,482.71,1144.61,482.71z M1154.69,514.47h-44.57v-5.86
c0-6.95,2.86-10.09,10.09-10.09h24.4c7.22,0,10.09,3.14,10.09,11.04V514.47z"/>
<path d="M1246.83,540.5h-29.99c-6.27,0-10.09-3.14-10.09-10.09V508.6c0-6.95,3.82-10.09,10.09-10.09h29.31
c6.13,0,8.59,3,10.22,6.41l9.95-10.36c-1.77-4.5-7.22-11.86-19.22-11.86h-30.26c-17.72,0-28.21,7.5-28.21,25.9v21.81
c0,18.4,10.5,25.9,28.21,25.9h30.94c12.13,0,17.45-7.36,19.35-11.86l-10.09-10.22C1255.55,537.5,1252.96,540.5,1246.83,540.5z"/>
<path d="M1313.2,541.73c-9.13,0-12.95-6.54-12.95-19.49V496.2h13.09l2.18-13.49h-15.27v-22.35l-18.26,6v16.36h-6.13l-2.18,13.49
h8.32v26.03c0,23.31,7.5,35.44,25.9,35.44c4.63,0,9-1.09,10.77-2.18l2.73-15.67C1319.74,541.04,1317.02,541.73,1313.2,541.73z"/>
<path d="M944.02,501.08c1.44,1.6,2.14,4.02,2.14,7.53v21.81c0,7.5-3.14,10.09-10.09,10.09h-16.25c0,0.01-0.01,0.03-0.01,0.04
l-5.5,15.77h21.77c19.9,0,28.35-7.63,28.35-25.9V508.6c0-8.67-1.91-14.94-6.03-19.13C953.22,492.71,948.4,496.61,944.02,501.08z"/>
<path d="M930.84,489.07c2.49-2.3,5.15-4.4,7.92-6.31c-0.88-0.03-1.77-0.06-2.69-0.06h-24.4c-11.68,0-19.41,2.67-23.78,8.62
l10.92,13.35c0.96,1.17,1.88,2.36,2.78,3.54c0.11-7.2,3.38-9.71,10.08-9.71h10.37C924.79,495.06,927.73,491.9,930.84,489.07z"/>
<path d="M901.56,534.62l-0.41-0.97c-1.15-2.75-2.26-5.5-3.33-8.27c-1.08-2.82-2.13-5.57-3.11-8.43c-0.95-2.72-1.95-5.64-2.81-8.64
l-4.62-16.07c-2.59,4.03-3.81,9.43-3.81,16.36v21.81c0,18.11,8.32,25.77,27.73,25.89l-6.53-14.5
C903.6,539.43,902.58,537.03,901.56,534.62z"/>
</g>
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="940.1375" y1="537.0634" x2="937.8768" y2="468.4894">
<stop offset="0" style="stop-color:#EF5057"/>
<stop offset="1" style="stop-color:#E87A47"/>
</linearGradient>
<path class="st17" d="M956.03,478.36c-8.29,2.9-16,7.68-22.5,13.66c-6.56,5.95-11.92,13.09-16.22,20.7
c-2.12,3.83-3.99,7.77-5.56,11.84c-0.45,1.14-0.86,2.3-1.26,3.47c-1.41-2.19-2.84-4.36-4.3-6.53c-1.66-2.43-3.33-4.85-5.07-7.23
c-1.74-2.38-3.49-4.76-5.38-7.06c0.82,2.86,1.78,5.66,2.75,8.44c0.96,2.79,2.01,5.54,3.06,8.28c1.07,2.74,2.16,5.46,3.29,8.16
c1.14,2.7,2.27,5.4,3.47,8.06l4.18,9.27l3.56-10.21c0.58-1.67,1.36-3.62,2.11-5.42c0.76-1.83,1.62-3.64,2.45-5.44
c1.74-3.58,3.58-7.1,5.63-10.49c4.06-6.78,8.71-13.18,14.15-18.8c5.4-5.66,11.55-10.57,18.45-14.53c0.84-0.54,1.73-0.98,2.62-1.43
c0.89-0.45,1.76-0.97,2.68-1.38c1.84-0.81,3.65-1.73,5.57-2.42c3.78-1.6,7.74-2.75,11.82-4.01
C973.1,474.42,964.29,475.4,956.03,478.36z"/>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

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