update gitignore
@@ -0,0 +1,59 @@
|
||||
#main-frame-error {
|
||||
box-sizing: border-box;
|
||||
padding: 0 10%;
|
||||
font-size: 1em;
|
||||
line-height: 1.55;
|
||||
margin: 0 auto;
|
||||
max-width: 600px;
|
||||
padding-top: 100px;
|
||||
width: 100%;
|
||||
}
|
||||
#main-content {
|
||||
font-size: 1em;
|
||||
line-height: 1.55;
|
||||
margin: 0 auto;
|
||||
max-width: 600px;
|
||||
padding-top: 100px;
|
||||
width: 100%;
|
||||
}
|
||||
#t-rex-icon {
|
||||
font-size: 1em;
|
||||
line-height: 1.55;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100%;
|
||||
height: 72px;
|
||||
margin: 0 0 40px;
|
||||
width: 72px;
|
||||
display: inline-block;
|
||||
content: -webkit-image-set(
|
||||
url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABIAQMAAABvIyEEAAAABlBMVEUAAABTU1OoaSf/AAAAAXRSTlMAQObYZgAAAGxJREFUeF7tyMEJwkAQRuFf5ipMKxYQiJ3Z2nSwrWwBA0+DQZcdxEOueaePp9+dQZFB7GpUcURSVU66yVNFj6LFICatThZB6r/ko/pbRpUgilY0Cbw5sNmb9txGXUKyuH7eV25x39DtJXUNPQGJtWFV+BT/QAAAAABJRU5ErkJggg==)
|
||||
1x,
|
||||
url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQBAMAAAAVaP+LAAAAGFBMVEUAAABTU1NNTU1TU1NPT09SUlJSUlJTU1O8B7DEAAAAB3RSTlMAoArVKvVgBuEdKgAAAJ1JREFUeF7t1TEOwyAMQNG0Q6/UE+RMXD9d/tC6womIFSL9P+MnAYOXeTIzMzMzMzMzaz8J9Ri6HoITmuHXhISE8nEh9yxDh55aCEUoTGbbQwjqHwIkRAEiIaG0+0AA9VBMaE89Rogeoww936MQrWdBr4GN/z0IAdQ6nQ/FIpRXDwHcA+JIJcQowQAlFUA0MfQpXLlVQfkzR4igS6ENjknm/wiaGhsAAAAASUVORK5CYII=)
|
||||
2x
|
||||
);
|
||||
position: relative;
|
||||
visibility: hidden;
|
||||
}
|
||||
#offline-resources {
|
||||
display: none;
|
||||
}
|
||||
#main-frame-error > .runner-container {
|
||||
height: 150px;
|
||||
max-width: 600px;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
top: 35px;
|
||||
width: 44px;
|
||||
}
|
||||
#main-frame-error > .controller {
|
||||
background: rgba(247, 247, 247, 0.1);
|
||||
height: 100vh;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 100vw;
|
||||
z-index: 9;
|
||||
}
|
||||
#main-frame-error .hidden {
|
||||
display: none;
|
||||
}
|
||||
@@ -0,0 +1,593 @@
|
||||
window.flutter_inappwebview = {
|
||||
webViews: {},
|
||||
/**
|
||||
* @param viewId {number | string}
|
||||
* @param iframe {HTMLIFrameElement}
|
||||
* @param iframeContainer {HTMLDivElement}
|
||||
*/
|
||||
createFlutterInAppWebView: function(viewId, iframe, iframeContainer) {
|
||||
const iframeId = iframe.id;
|
||||
var webView = {
|
||||
viewId: viewId,
|
||||
iframeId: iframeId,
|
||||
iframe: null,
|
||||
iframeContainer: null,
|
||||
windowAutoincrementId: 0,
|
||||
windows: {},
|
||||
isFullscreen: false,
|
||||
documentTitle: null,
|
||||
functionMap: {},
|
||||
settings: {},
|
||||
disableContextMenuHandler: function(event) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
return false;
|
||||
},
|
||||
prepare: function(settings) {
|
||||
webView.settings = settings;
|
||||
|
||||
document.addEventListener('fullscreenchange', function(event) {
|
||||
// document.fullscreenElement will point to the element that
|
||||
// is in fullscreen mode if there is one. If there isn't one,
|
||||
// the value of the property is null.
|
||||
if (document.fullscreenElement && document.fullscreenElement.id == iframeId) {
|
||||
webView.isFullscreen = true;
|
||||
window.flutter_inappwebview.nativeCommunication('onEnterFullscreen', viewId);
|
||||
} else if (!document.fullscreenElement && webView.isFullscreen) {
|
||||
webView.isFullscreen = false;
|
||||
window.flutter_inappwebview.nativeCommunication('onExitFullscreen', viewId);
|
||||
} else {
|
||||
webView.isFullscreen = false;
|
||||
}
|
||||
});
|
||||
|
||||
if (iframe != null) {
|
||||
webView.iframe = iframe;
|
||||
webView.iframeContainer = iframeContainer;
|
||||
iframe.addEventListener('load', function (event) {
|
||||
webView.windowAutoincrementId = 0;
|
||||
webView.windows = {};
|
||||
|
||||
var url = iframe.src;
|
||||
try {
|
||||
url = iframe.contentWindow.location.href;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
window.flutter_inappwebview.nativeCommunication('onLoadStart', viewId, [url]);
|
||||
|
||||
try {
|
||||
var oldLogs = {
|
||||
'log': iframe.contentWindow.console.log,
|
||||
'debug': iframe.contentWindow.console.debug,
|
||||
'error': iframe.contentWindow.console.error,
|
||||
'info': iframe.contentWindow.console.info,
|
||||
'warn': iframe.contentWindow.console.warn
|
||||
};
|
||||
for (var k in oldLogs) {
|
||||
(function(oldLog) {
|
||||
iframe.contentWindow.console[oldLog] = function() {
|
||||
var message = '';
|
||||
for (var i in arguments) {
|
||||
if (message == '') {
|
||||
message += arguments[i];
|
||||
} else {
|
||||
message += ' ' + arguments[i];
|
||||
}
|
||||
}
|
||||
oldLogs[oldLog].call(iframe.contentWindow.console, ...arguments);
|
||||
window.flutter_inappwebview.nativeCommunication('onConsoleMessage', viewId, [oldLog, message]);
|
||||
}
|
||||
})(k);
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
|
||||
try {
|
||||
var originalPushState = iframe.contentWindow.history.pushState;
|
||||
iframe.contentWindow.history.pushState = function (state, unused, url) {
|
||||
originalPushState.call(iframe.contentWindow.history, state, unused, url);
|
||||
var iframeUrl = iframe.src;
|
||||
try {
|
||||
iframeUrl = iframe.contentWindow.location.href;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
window.flutter_inappwebview.nativeCommunication('onUpdateVisitedHistory', viewId, [iframeUrl]);
|
||||
};
|
||||
|
||||
var originalReplaceState = iframe.contentWindow.history.replaceState;
|
||||
iframe.contentWindow.history.replaceState = function (state, unused, url) {
|
||||
originalReplaceState.call(iframe.contentWindow.history, state, unused, url);
|
||||
var iframeUrl = iframe.src;
|
||||
try {
|
||||
iframeUrl = iframe.contentWindow.location.href;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
window.flutter_inappwebview.nativeCommunication('onUpdateVisitedHistory', viewId, [iframeUrl]);
|
||||
};
|
||||
|
||||
var originalOpen = iframe.contentWindow.open;
|
||||
iframe.contentWindow.open = function (url, target, windowFeatures) {
|
||||
var newWindow = originalOpen.call(iframe.contentWindow, ...arguments);
|
||||
var windowId = webView.windowAutoincrementId;
|
||||
webView.windowAutoincrementId++;
|
||||
webView.windows[windowId] = newWindow;
|
||||
window.flutter_inappwebview.nativeCommunication('onCreateWindow', viewId, [windowId, url, target, windowFeatures]).then(function(){}, function(handledByClient) {
|
||||
if (handledByClient) {
|
||||
newWindow.close();
|
||||
}
|
||||
});
|
||||
return newWindow;
|
||||
};
|
||||
|
||||
var originalPrint = iframe.contentWindow.print;
|
||||
iframe.contentWindow.print = function() {
|
||||
var iframeUrl = iframe.src;
|
||||
try {
|
||||
iframeUrl = iframe.contentWindow.location.href;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
window.flutter_inappwebview.nativeCommunication('onPrintRequest', viewId, [iframeUrl]);
|
||||
originalPrint.call(iframe.contentWindow);
|
||||
};
|
||||
|
||||
webView.functionMap = {
|
||||
"window.open": iframe.contentWindow.open,
|
||||
"window.print": iframe.contentWindow.print,
|
||||
"window.history.pushState": iframe.contentWindow.history.pushState,
|
||||
"window.history.replaceState": iframe.contentWindow.history.replaceState,
|
||||
}
|
||||
|
||||
var initialTitle = iframe.contentDocument.title;
|
||||
var titleEl = iframe.contentDocument.querySelector('title');
|
||||
webView.documentTitle = initialTitle;
|
||||
window.flutter_inappwebview.nativeCommunication('onTitleChanged', viewId, [initialTitle]);
|
||||
if (titleEl != null) {
|
||||
new MutationObserver(function(mutations) {
|
||||
var title = mutations[0].target.innerText;
|
||||
if (title != webView.documentTitle) {
|
||||
webView.documentTitle = title;
|
||||
window.flutter_inappwebview.nativeCommunication('onTitleChanged', viewId, [title]);
|
||||
}
|
||||
}).observe(
|
||||
titleEl,
|
||||
{ subtree: true, characterData: true, childList: true }
|
||||
);
|
||||
}
|
||||
|
||||
var oldPixelRatio = iframe.contentWindow.devicePixelRatio;
|
||||
iframe.contentWindow.addEventListener('resize', function (e) {
|
||||
var newPixelRatio = iframe.contentWindow.devicePixelRatio;
|
||||
if(newPixelRatio !== oldPixelRatio){
|
||||
window.flutter_inappwebview.nativeCommunication('onZoomScaleChanged', viewId, [oldPixelRatio, newPixelRatio]);
|
||||
oldPixelRatio = newPixelRatio;
|
||||
}
|
||||
});
|
||||
|
||||
iframe.contentWindow.addEventListener('popstate', function (event) {
|
||||
var iframeUrl = iframe.src;
|
||||
try {
|
||||
iframeUrl = iframe.contentWindow.location.href;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
window.flutter_inappwebview.nativeCommunication('onUpdateVisitedHistory', viewId, [iframeUrl]);
|
||||
});
|
||||
|
||||
iframe.contentWindow.addEventListener('scroll', function (event) {
|
||||
var x = 0;
|
||||
var y = 0;
|
||||
try {
|
||||
x = iframe.contentWindow.scrollX;
|
||||
y = iframe.contentWindow.scrollY;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
window.flutter_inappwebview.nativeCommunication('onScrollChanged', viewId, [x, y]);
|
||||
});
|
||||
|
||||
iframe.contentWindow.addEventListener('focus', function (event) {
|
||||
window.flutter_inappwebview.nativeCommunication('onWindowFocus', viewId);
|
||||
});
|
||||
|
||||
iframe.contentWindow.addEventListener('blur', function (event) {
|
||||
window.flutter_inappwebview.nativeCommunication('onWindowBlur', viewId);
|
||||
});
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
|
||||
try {
|
||||
|
||||
if (!webView.settings.javaScriptCanOpenWindowsAutomatically) {
|
||||
iframe.contentWindow.open = function() {
|
||||
throw new Error('JavaScript cannot open windows automatically');
|
||||
};
|
||||
}
|
||||
|
||||
if (!webView.settings.verticalScrollBarEnabled && !webView.settings.horizontalScrollBarEnabled) {
|
||||
var style = iframe.contentDocument.createElement('style');
|
||||
style.id = "settings.verticalScrollBarEnabled-settings.horizontalScrollBarEnabled";
|
||||
style.innerHTML = "body::-webkit-scrollbar { width: 0px; height: 0px; }";
|
||||
iframe.contentDocument.head.append(style);
|
||||
}
|
||||
|
||||
if (webView.settings.disableVerticalScroll) {
|
||||
var style = iframe.contentDocument.createElement('style');
|
||||
style.id = "settings.disableVerticalScroll";
|
||||
style.innerHTML = "body { overflow-y: hidden; }";
|
||||
iframe.contentDocument.head.append(style);
|
||||
}
|
||||
|
||||
if (webView.settings.disableHorizontalScroll) {
|
||||
var style = iframe.contentDocument.createElement('style');
|
||||
style.id = "settings.disableHorizontalScroll";
|
||||
style.innerHTML = "body { overflow-x: hidden; }";
|
||||
iframe.contentDocument.head.append(style);
|
||||
}
|
||||
|
||||
if (webView.settings.disableContextMenu) {
|
||||
iframe.contentWindow.addEventListener('contextmenu', webView.disableContextMenuHandler);
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
|
||||
window.flutter_inappwebview.nativeCommunication('onLoadStop', viewId, [url]);
|
||||
});
|
||||
}
|
||||
},
|
||||
setSettings: function(newSettings) {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
if (webView.settings.javaScriptCanOpenWindowsAutomatically != newSettings.javaScriptCanOpenWindowsAutomatically) {
|
||||
if (!newSettings.javaScriptCanOpenWindowsAutomatically) {
|
||||
iframe.contentWindow.open = function() {
|
||||
throw new Error('JavaScript cannot open windows automatically');
|
||||
};
|
||||
} else {
|
||||
iframe.contentWindow.open = webView.functionMap["window.open"];
|
||||
}
|
||||
}
|
||||
|
||||
if (webView.settings.verticalScrollBarEnabled != newSettings.verticalScrollBarEnabled &&
|
||||
webView.settings.horizontalScrollBarEnabled != newSettings.horizontalScrollBarEnabled) {
|
||||
if (!newSettings.verticalScrollBarEnabled && !newSettings.horizontalScrollBarEnabled) {
|
||||
var style = iframe.contentDocument.createElement('style');
|
||||
style.id = "settings.verticalScrollBarEnabled-settings.horizontalScrollBarEnabled";
|
||||
style.innerHTML = "body::-webkit-scrollbar { width: 0px; height: 0px; }";
|
||||
iframe.contentDocument.head.append(style);
|
||||
} else {
|
||||
var styleElement = iframe.contentDocument.getElementById("settings.verticalScrollBarEnabled-settings.horizontalScrollBarEnabled");
|
||||
if (styleElement) { styleElement.remove() }
|
||||
}
|
||||
}
|
||||
|
||||
if (webView.settings.disableVerticalScroll != newSettings.disableVerticalScroll) {
|
||||
if (newSettings.disableVerticalScroll) {
|
||||
var style = iframe.contentDocument.createElement('style');
|
||||
style.id = "settings.disableVerticalScroll";
|
||||
style.innerHTML = "body { overflow-y: hidden; }";
|
||||
iframe.contentDocument.head.append(style);
|
||||
} else {
|
||||
var styleElement = iframe.contentDocument.getElementById("settings.disableVerticalScroll");
|
||||
if (styleElement) { styleElement.remove() }
|
||||
}
|
||||
}
|
||||
|
||||
if (webView.settings.disableHorizontalScroll != newSettings.disableHorizontalScroll) {
|
||||
if (newSettings.disableHorizontalScroll) {
|
||||
var style = iframe.contentDocument.createElement('style');
|
||||
style.id = "settings.disableHorizontalScroll";
|
||||
style.innerHTML = "body { overflow-x: hidden; }";
|
||||
iframe.contentDocument.head.append(style);
|
||||
} else {
|
||||
var styleElement = iframe.contentDocument.getElementById("settings.disableHorizontalScroll");
|
||||
if (styleElement) { styleElement.remove() }
|
||||
}
|
||||
}
|
||||
|
||||
if (webView.settings.disableContextMenu != newSettings.disableContextMenu) {
|
||||
if (newSettings.disableContextMenu) {
|
||||
iframe.contentWindow.addEventListener('contextmenu', webView.disableContextMenuHandler);
|
||||
} else {
|
||||
iframe.contentWindow.removeEventListener('contextmenu', webView.disableContextMenuHandler);
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
|
||||
webView.settings = newSettings;
|
||||
},
|
||||
reload: function() {
|
||||
var iframe = webView.iframe;
|
||||
if (iframe != null && iframe.contentWindow != null) {
|
||||
try {
|
||||
iframe.contentWindow.location.reload();
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
iframe.contentWindow.location.href = iframe.src;
|
||||
}
|
||||
}
|
||||
},
|
||||
goBack: function() {
|
||||
var iframe = webView.iframe;
|
||||
if (iframe != null) {
|
||||
try {
|
||||
iframe.contentWindow.history.back();
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
}
|
||||
},
|
||||
goForward: function() {
|
||||
var iframe = webView.iframe;
|
||||
if (iframe != null) {
|
||||
try {
|
||||
iframe.contentWindow.history.forward();
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
}
|
||||
},
|
||||
goBackOrForward: function(steps) {
|
||||
var iframe = webView.iframe;
|
||||
if (iframe != null) {
|
||||
try {
|
||||
iframe.contentWindow.history.go(steps);
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
}
|
||||
},
|
||||
evaluateJavascript: function(source) {
|
||||
var iframe = webView.iframe;
|
||||
var result = null;
|
||||
if (iframe != null) {
|
||||
try {
|
||||
result = JSON.stringify(iframe.contentWindow.eval(source));
|
||||
} catch (e) {}
|
||||
}
|
||||
return result;
|
||||
},
|
||||
stopLoading: function(steps) {
|
||||
var iframe = webView.iframe;
|
||||
if (iframe != null) {
|
||||
try {
|
||||
iframe.contentWindow.stop();
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
}
|
||||
},
|
||||
getUrl: function() {
|
||||
var iframe = webView.iframe;
|
||||
var url = iframe.src;
|
||||
try {
|
||||
url = iframe.contentWindow.location.href;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
return url;
|
||||
},
|
||||
getTitle: function() {
|
||||
var iframe = webView.iframe;
|
||||
var title = null;
|
||||
try {
|
||||
title = iframe.contentDocument.title;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
return title;
|
||||
},
|
||||
injectJavascriptFileFromUrl: function(urlFile, scriptHtmlTagAttributes) {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
var d = iframe.contentDocument;
|
||||
var script = d.createElement('script');
|
||||
for (var key of Object.keys(scriptHtmlTagAttributes)) {
|
||||
if (scriptHtmlTagAttributes[key] != null) {
|
||||
script[key] = scriptHtmlTagAttributes[key];
|
||||
}
|
||||
}
|
||||
if (script.id != null) {
|
||||
script.onload = function() {
|
||||
window.flutter_inappwebview.nativeCommunication('onInjectedScriptLoaded', webView.viewId, [script.id]);
|
||||
}
|
||||
script.onerror = function() {
|
||||
window.flutter_inappwebview.nativeCommunication('onInjectedScriptError', webView.viewId, [script.id]);
|
||||
}
|
||||
}
|
||||
script.src = urlFile;
|
||||
if (d.body != null) {
|
||||
d.body.appendChild(script);
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
},
|
||||
injectCSSCode: function(source) {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
var d = iframe.contentDocument;
|
||||
var style = d.createElement('style');
|
||||
style.innerHTML = source;
|
||||
if (d.head != null) {
|
||||
d.head.appendChild(style);
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
},
|
||||
injectCSSFileFromUrl: function(urlFile, cssLinkHtmlTagAttributes) {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
var d = iframe.contentDocument;
|
||||
var link = d.createElement('link');
|
||||
for (var key of Object.keys(cssLinkHtmlTagAttributes)) {
|
||||
if (cssLinkHtmlTagAttributes[key] != null) {
|
||||
link[key] = cssLinkHtmlTagAttributes[key];
|
||||
}
|
||||
}
|
||||
link.type = 'text/css';
|
||||
var alternateStylesheet = "";
|
||||
if (cssLinkHtmlTagAttributes.alternateStylesheet) {
|
||||
alternateStylesheet = "alternate ";
|
||||
}
|
||||
link.rel = alternateStylesheet + "stylesheet";
|
||||
link.href = urlFile;
|
||||
if (d.head != null) {
|
||||
d.head.appendChild(link);
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
},
|
||||
scrollTo: function(x, y, animated) {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
if (animated) {
|
||||
iframe.contentWindow.scrollTo({top: y, left: x, behavior: 'smooth'});
|
||||
} else {
|
||||
iframe.contentWindow.scrollTo(x, y);
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
},
|
||||
scrollBy: function(x, y, animated) {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
if (animated) {
|
||||
iframe.contentWindow.scrollBy({top: y, left: x, behavior: 'smooth'});
|
||||
} else {
|
||||
iframe.contentWindow.scrollBy(x, y);
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
},
|
||||
printCurrentPage: function() {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
iframe.contentWindow.print();
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
},
|
||||
getContentHeight: function() {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
return iframe.contentDocument.documentElement.scrollHeight;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
return null;
|
||||
},
|
||||
getContentWidth: function() {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
return iframe.contentDocument.documentElement.scrollWidth;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
return null;
|
||||
},
|
||||
getSelectedText: function() {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
var txt;
|
||||
var w = iframe.contentWindow;
|
||||
if (w.getSelection) {
|
||||
txt = w.getSelection().toString();
|
||||
} else if (w.document.getSelection) {
|
||||
txt = w.document.getSelection().toString();
|
||||
} else if (w.document.selection) {
|
||||
txt = w.document.selection.createRange().text;
|
||||
}
|
||||
return txt;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
return null;
|
||||
},
|
||||
getScrollX: function() {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
return iframe.contentWindow.scrollX;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
return null;
|
||||
},
|
||||
getScrollY: function() {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
return iframe.contentWindow.scrollY;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
return null;
|
||||
},
|
||||
isSecureContext: function() {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
return iframe.contentWindow.isSecureContext;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
return false;
|
||||
},
|
||||
canScrollVertically: function() {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
return iframe.contentDocument.body.scrollHeight > iframe.contentWindow.innerHeight;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
return false;
|
||||
},
|
||||
canScrollHorizontally: function() {
|
||||
var iframe = webView.iframe;
|
||||
try {
|
||||
return iframe.contentDocument.body.scrollWidth > iframe.contentWindow.innerWidth;
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
return false;
|
||||
},
|
||||
getSize: function() {
|
||||
var iframeContainer = webView.iframeContainer;
|
||||
var width = 0.0;
|
||||
var height = 0.0;
|
||||
if (iframeContainer.style.width != null && iframeContainer.style.width != '' && iframeContainer.style.width.indexOf('px') > 0) {
|
||||
width = parseFloat(iframeContainer.style.width);
|
||||
}
|
||||
if (width == null || width == 0.0) {
|
||||
width = iframeContainer.getBoundingClientRect().width;
|
||||
}
|
||||
if (iframeContainer.style.height != null && iframeContainer.style.height != '' && iframeContainer.style.height.indexOf('px') > 0) {
|
||||
height = parseFloat(iframeContainer.style.height);
|
||||
}
|
||||
if (height == null || height == 0.0) {
|
||||
height = iframeContainer.getBoundingClientRect().height;
|
||||
}
|
||||
|
||||
return {
|
||||
width: width,
|
||||
height: height
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
return webView;
|
||||
},
|
||||
getCookieExpirationDate: function(timestamp) {
|
||||
return (new Date(timestamp)).toUTCString();
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* Minified by jsDelivr using clean-css v4.2.3.
|
||||
* Original file: /npm/toastify-js@1.9.3/src/toastify.css
|
||||
*
|
||||
* Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
|
||||
*/
|
||||
/*!
|
||||
* Toastify js 1.9.3
|
||||
* https://github.com/apvarun/toastify-js
|
||||
* @license MIT licensed
|
||||
*
|
||||
* Copyright (C) 2018 Varun A P
|
||||
*/
|
||||
.toastify{padding:12px 20px;color:#fff;display:inline-block;box-shadow:0 3px 6px -1px rgba(0,0,0,.12),0 10px 36px -4px rgba(77,96,232,.3);background:-webkit-linear-gradient(315deg,#73a5ff,#5477f5);background:linear-gradient(135deg,#73a5ff,#5477f5);position:fixed;opacity:0;transition:all .4s cubic-bezier(.215,.61,.355,1);border-radius:2px;cursor:pointer;text-decoration:none;max-width:calc(50% - 20px);z-index:2147483647}.toastify.on{opacity:1}.toast-close{opacity:.4;padding:0 5px}.toastify-right{right:15px}.toastify-left{left:15px}.toastify-top{top:-150px}.toastify-bottom{bottom:-150px}.toastify-rounded{border-radius:25px}.toastify-avatar{width:1.5em;height:1.5em;margin:-7px 5px;border-radius:2px}.toastify-center{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content;max-width:-moz-fit-content}@media only screen and (max-width:360px){.toastify-left,.toastify-right{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content}}
|
||||
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* Minified by jsDelivr using Terser v5.3.0.
|
||||
* Original file: /npm/toastify-js@1.9.3/src/toastify.js
|
||||
*
|
||||
* Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
|
||||
*/
|
||||
/*!
|
||||
* Toastify js 1.9.3
|
||||
* https://github.com/apvarun/toastify-js
|
||||
* @license MIT licensed
|
||||
*
|
||||
* Copyright (C) 2018 Varun A P
|
||||
*/
|
||||
!function(t,o){"object"==typeof module && module && module.exports?module.exports=o():t.Toastify=o()}(this,(function(t){var o=function(t){return new o.lib.init(t)};function i(t,o){return o.offset[t]?isNaN(o.offset[t])?o.offset[t]:o.offset[t]+"px":"0px"}function s(t,o){return!(!t||"string"!=typeof o)&&!!(t.className&&t.className.trim().split(/\s+/gi).indexOf(o)>-1)}return o.lib=o.prototype={toastify:"1.9.3",constructor:o,init:function(t){return t||(t={}),this.options={},this.toastElement=null,this.options.text=t.text||"Hi there!",this.options.node=t.node,this.options.duration=0===t.duration?0:t.duration||3e3,this.options.selector=t.selector,this.options.callback=t.callback||function(){},this.options.destination=t.destination,this.options.newWindow=t.newWindow||!1,this.options.close=t.close||!1,this.options.gravity="bottom"===t.gravity?"toastify-bottom":"toastify-top",this.options.positionLeft=t.positionLeft||!1,this.options.position=t.position||"",this.options.backgroundColor=t.backgroundColor,this.options.avatar=t.avatar||"",this.options.className=t.className||"",this.options.stopOnFocus=void 0===t.stopOnFocus||t.stopOnFocus,this.options.onClick=t.onClick,this.options.offset=t.offset||{x:0,y:0},this},buildToast:function(){if(!this.options)throw"Toastify is not initialized";var t=document.createElement("div");if(t.className="toastify on "+this.options.className,this.options.position?t.className+=" toastify-"+this.options.position:!0===this.options.positionLeft?(t.className+=" toastify-left",console.warn("Property `positionLeft` will be depreciated in further versions. Please use `position` instead.")):t.className+=" toastify-right",t.className+=" "+this.options.gravity,this.options.backgroundColor&&(t.style.background=this.options.backgroundColor),this.options.node&&this.options.node.nodeType===Node.ELEMENT_NODE)t.appendChild(this.options.node);else if(t.innerHTML=this.options.text,""!==this.options.avatar){var o=document.createElement("img");o.src=this.options.avatar,o.className="toastify-avatar","left"==this.options.position||!0===this.options.positionLeft?t.appendChild(o):t.insertAdjacentElement("afterbegin",o)}if(!0===this.options.close){var s=document.createElement("span");s.innerHTML="✖",s.className="toast-close",s.addEventListener("click",function(t){t.stopPropagation(),this.removeElement(this.toastElement),window.clearTimeout(this.toastElement.timeOutValue)}.bind(this));var n=window.innerWidth>0?window.innerWidth:screen.width;("left"==this.options.position||!0===this.options.positionLeft)&&n>360?t.insertAdjacentElement("afterbegin",s):t.appendChild(s)}if(this.options.stopOnFocus&&this.options.duration>0){var e=this;t.addEventListener("mouseover",(function(o){window.clearTimeout(t.timeOutValue)})),t.addEventListener("mouseleave",(function(){t.timeOutValue=window.setTimeout((function(){e.removeElement(t)}),e.options.duration)}))}if(void 0!==this.options.destination&&t.addEventListener("click",function(t){t.stopPropagation(),!0===this.options.newWindow?window.open(this.options.destination,"_blank"):window.location=this.options.destination}.bind(this)),"function"==typeof this.options.onClick&&void 0===this.options.destination&&t.addEventListener("click",function(t){t.stopPropagation(),this.options.onClick()}.bind(this)),"object"==typeof this.options.offset){var a=i("x",this.options),p=i("y",this.options),r="left"==this.options.position?a:"-"+a,l="toastify-top"==this.options.gravity?p:"-"+p;t.style.transform="translate("+r+","+l+")"}return t},showToast:function(){var t;if(this.toastElement=this.buildToast(),!(t=void 0===this.options.selector?document.body:document.getElementById(this.options.selector)))throw"Root element is not defined";return t.insertBefore(this.toastElement,t.firstChild),o.reposition(),this.options.duration>0&&(this.toastElement.timeOutValue=window.setTimeout(function(){this.removeElement(this.toastElement)}.bind(this),this.options.duration)),this},hideToast:function(){this.toastElement.timeOutValue&&clearTimeout(this.toastElement.timeOutValue),this.removeElement(this.toastElement)},removeElement:function(t){t.className=t.className.replace(" on",""),window.setTimeout(function(){this.options.node&&this.options.node.parentNode&&this.options.node.parentNode.removeChild(this.options.node),t.parentNode&&t.parentNode.removeChild(t),this.options.callback.call(t),o.reposition()}.bind(this),400)}},o.reposition=function(){for(var t,o={top:15,bottom:15},i={top:15,bottom:15},n={top:15,bottom:15},e=document.getElementsByClassName("toastify"),a=0;a<e.length;a++){t=!0===s(e[a],"toastify-top")?"toastify-top":"toastify-bottom";var p=e[a].offsetHeight;t=t.substr(9,t.length-1);(window.innerWidth>0?window.innerWidth:screen.width)<=360?(e[a].style[t]=n[t]+"px",n[t]+=p+15):!0===s(e[a],"toastify-left")?(e[a].style[t]=o[t]+"px",o[t]+=p+15):(e[a].style[t]=i[t]+"px",i[t]+=p+15)}return this},o.lib.init.prototype=o.lib,o}));
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#263238" d="M27.957,2.026c-0.762,0.26-2.948,0.97-4.093,0.97c-0.717,0-1.256-0.24-1.776-0.473C21.509,2.267,20.911,2,19.864,2c-1.939,0.612-12,16.718-12,18.95c0,2.156,1.933,4.047,4.136,4.047l23.864-0.06c2.206,0,4-1.789,4-3.987C39.864,18.308,30.306,2.786,27.957,2.026z"/><path fill="#cfd8dc" d="M28.136,1c-2.188,0-2.813,0.997-4,0.997c-0.042,0-0.09-0.004-0.136-0.006c-0.046,0.002-0.094,0.006-0.136,0.006c-1.188,0-1.813-0.997-4-0.997s-13,17.207-13,19.95S9.25,25.997,12,25.997l12-0.03l12,0.03c2.75,0,5.136-2.304,5.136-5.047S30.323,1,28.136,1z M36,21.997l-12-0.03l-12,0.03c-0.476,0-0.959-0.377-1.097-0.808c1.021-2.724,7.149-13.405,9.805-15.995c0.048,0.021,0.101,0.044,0.158,0.07c0.654,0.292,1.643,0.732,2.998,0.732c0.042,0,0.092-0.008,0.136-0.009c0.044,0.001,0.094,0.009,0.136,0.009c1.355,0,2.343-0.44,2.998-0.732c0.057-0.026,0.11-0.049,0.158-0.07c2.656,2.589,8.784,13.271,9.805,15.995C36.959,21.619,36.476,21.997,36,21.997z"/><path fill="#37474f" d="M11 25.997H37V46.997H11z"/><path fill="#4caf50" d="M24,20.997h-0.014h-13c0,13.75,4.639,22.5,11.014,26h1.986H24h1.986c6.375-3.5,11.014-12.25,11.014-26H24z"/><path fill="#ffeb3b" d="M18.5 22.997A2.5 2 0 1 0 18.5 26.997A2.5 2 0 1 0 18.5 22.997Z"/><path fill="#1b5e20" d="M33,24.997c0,0-2.119,2-3.5,2s-2.5-0.833-2.5-2s1.119-2,2.5-2S33,24.997,33,24.997z"/><path fill="#37474f" d="M24 16.997A11 4 0 1 0 24 24.997A11 4 0 1 0 24 16.997Z"/><path fill="#37474f" d="M19 23.997A1 1 0 1 0 19 25.997A1 1 0 1 0 19 23.997Z"/><path fill="#263238" d="M21.638 39.998L23.999 39.997 23.999 39.997 24 39.997 24.001 39.997 24.001 39.997 26.362 39.998 28.254 41.574 31 36.997 17 36.997 19.746 41.574z"/><path fill="#ff1744" d="M37.017,20.997c-0.409-1.016-1.364-2.875-2.557-5H13.54c-1.193,2.125-2.148,3.984-2.557,5H37.017z"/><path fill="#ffc107" d="M24 14.997A2 2 0 1 0 24 18.997A2 2 0 1 0 24 14.997Z"/><path fill="#2e7d32" d="M29.334,44.473c-0.49,0.478-0.999,0.924-1.532,1.327l-2.164-1.804h-3.275l-2.163,1.803c-0.527-0.403-1.043-0.836-1.537-1.324l2.975-2.479h4.725L29.334,44.473z M32.013,32.705l-5.372-4.478c-0.18-0.149-0.406-0.231-0.641-0.231h-4c-0.234,0-0.46,0.082-0.64,0.231l-5.373,4.479L13,30.315v2.563l2.375,1.9c0.183,0.146,0.404,0.219,0.625,0.219c0.228,0,0.455-0.077,0.64-0.231l5.722-4.77h3.275l5.722,4.769c0.186,0.154,0.413,0.231,0.641,0.231c0.221,0,0.442-0.073,0.625-0.219l2.375-1.9v-2.562L32.013,32.705z M25.65,32.237c-0.181-0.156-0.412-0.241-0.65-0.241h-2c-0.239,0-0.47,0.085-0.651,0.241l-6.358,5.449L13,35.022v2.655l2.36,2.088c0.186,0.154,0.413,0.231,0.64,0.231c0.232,0,0.464-0.08,0.651-0.241l6.719-5.759h1.26l6.72,5.76c0.187,0.161,0.419,0.241,0.65,0.241c0.228,0,0.455-0.077,0.641-0.231L35,37.713v-2.642l-2.991,2.616L25.65,32.237z"/><path fill="#b0bec5" d="M13,20.997v26H9H6c0,0,3-10.75,3-17v-5l1.903-3.808l0.083-0.192H13z M39,29.997v-5l-2-4h-2v26h4h3C42,46.997,39,36.247,39,29.997z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#BF360C" d="M40,22c0-4.6-4-19-4-19c-6.2,0-7.7,16.7-7.9,21h-8.1C19.7,19.7,18.2,3,12,3c0,0-4,14.4-4,19c0,2.3,3,3.1,6.1,3.2c0,0.1-0.1,0.3-0.1,0.4v17.8c0,0.9,0.7,1.6,1.6,1.6h16.8c0.9,0,1.6-0.7,1.6-1.6V25.6c0-0.1,0-0.3-0.1-0.4C37,25.1,40,24.3,40,22z"/><path fill="#F4511E" d="M36 3H24 12c0 0 4.1 12.2-4 19v4.6C8 27.4 8.6 28 9.4 28H19v5h10v-5h9.6c.8 0 1.4-.6 1.4-1.4V22C31.9 15.2 36 3 36 3zM19 35H29V45H19z"/><path fill="#5D4037" d="M36.4,17.3c-0.5-1.1-0.8-2.2-1.1-3.3l-11.6,1l-11.1-0.9c-0.3,1.3-0.7,2.6-1.4,3.9c1.5,3,10.3,3,10.3,3H23h0.5H25C25,21,35.9,21.4,36.4,17.3z"/><path fill="#FFC107" d="M34,17.5c0,0.8-1.6,1.5-3.5,1.5S27,18.3,27,17.5s1.6-1.5,3.5-1.5S34,16.7,34,17.5z M17.5,16c-1.9,0-3.5,0.7-3.5,1.5s1.6,1.5,3.5,1.5s3.5-0.7,3.5-1.5S19.4,16,17.5,16z"/><path fill="#FFECB3" d="M32,17.5c0,0.8-0.7,1.5-1.5,1.5S29,18.3,29,17.5s0.7-1.5,1.5-1.5S32,16.7,32,17.5z M17.5,16c-0.8,0-1.5,0.7-1.5,1.5s0.7,1.5,1.5,1.5s1.5-0.7,1.5-1.5S18.3,16,17.5,16z"/><path fill="#FF8A65" d="M27 29L21 29 22 18 26 18z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#01579b" d="M41,15H24H7c-0.55,0-2,0.875-2,6s1.45,6,2,6h6v6l7,12h8l7-12v-6h6c0.55,0,2-0.875,2-6S41.55,15,41,15z"/><path fill="#0288d1" d="M39,17.5C39,8.94,34,2,24,2S9,8.94,9,17.5S8.716,27,17,27h1c0,0,2,0.083,2,2s0,15.625,0,15.625C20,45.384,20.616,46,21.375,46h5.25C27.384,46,28,45.384,28,44.625V29c0-1.917,2-2,2-2h1C39.284,27,39,26.06,39,17.5z"/><path fill="#29b6f6" d="M24,28L24,28c-1.1,0-2-0.9-2-2v-6c0-1.1,0.9-2,2-2h0c1.1,0,2,0.9,2,2v6C26,27.1,25.1,28,24,28z"/><path fill="#c5cae9" d="M37,13H24H11c-2.761,0-3,2.239-3,5s0.083,3.25,3,4c0,0,4.708,1,10.171,1c0.671,0,1.001-0.259,1.288-0.689l0.502-0.753c0.247-0.371,0.643-0.556,1.038-0.556s0.792,0.185,1.038,0.556l0.502,0.753C25.828,22.741,26.157,23,26.829,23C32.292,23,37,22,37,22c2.917-0.75,3-1.239,3-4S39.761,13,37,13z"/><path fill="#e8eaf6" d="M17.621,13l-8.404,8.403c-1.091-0.542-1.207-1.282-1.216-3.026L13.379,13H17.621z M23.414,13h-2.828l-9.096,9.096c0.495,0.092,1.344,0.24,2.439,0.389L23.414,13z"/><path fill="#212121" d="M30.896 33.354L27.987 30 24 30 19.944 30 17.098 33.343 13 27 13 30.605 16.902 36.657 20 33.019 20 32 20.868 32 24 32 27.075 32 28 32 28 33.066 31.104 36.646 35 30.605 35 27z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#01579B" d="M40,12c-1-2.9-2.9-3-4-3H24H12c-1.1,0-3,0.1-4,3L3.1,24.3C3.1,25.2,24,25,24,25s20.9,0.2,20.9-0.7L40,12z"/><path fill="#0277BD" d="M40,12c-1-2.9-2.9-3-4-3H24h-5c-0.6,2-3.9,3-7,3c-1.7,0-2,2-3,3.6S7.1,16.9,6,17l-2.9,7.3C3.1,25.2,24,25,24,25s20.9,0.2,20.9-0.7L40,12z"/><path fill="#039BE5" d="M43,23H5c-1.1,0-2,0.9-2,2v12c0,1.1,0.9,2,2,2h38c1.1,0,2-0.9,2-2V25C45,23.9,44.1,23,43,23z"/><path fill="#0288D1" d="M10,23c0,0,8.9,9,14,9s14-9,14-9"/><path fill="#FBC02D" d="M43,26v10c0,0.5-0.5,1-1,1H25c5-0.8,17-12,17-12C42.5,25,43,25.5,43,26z M5,26v10c0,0.5,0.5,1,1,1h17C18,36.2,6,25,6,25C5.5,25,5,25.5,5,26z"/><path fill="#FFFDE7" d="M35,32c0-1.1,0.9-2,2-2s2,0.9,2,2c0,1.1-0.9,2-2,2S35,33.1,35,32z M13,32c0-1.1-0.9-2-2-2s-2,0.9-2,2c0,1.1,0.9,2,2,2S13,33.1,13,32z"/><path fill="#01579B" d="M41,28.6V35h-8C36,32.9,39,30.4,41,28.6 M42,25c0,0-12,11.2-17,12h17c0.6,0,1-0.5,1-1V26C43,25.5,42.5,25,42,25L42,25z M7,28.6c2,1.8,5,4.3,8,6.4H7V28.6 M6,25c-0.5,0-1,0.5-1,1v10c0,0.5,0.4,1,1,1h17C18,36.2,6,25,6,25L6,25z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#F4511E" d="M43,26v-9h-3c0,0-1.8-14-16-14S8,17,8,17H5v9h0c0,0-1,17,19,17C44,43,43,26,43,26z"/><path fill="#FF8A65" d="M44,25h-3c-0.5,0-1-0.5-1-1v-7c0-0.5,0.5-1,1-1h3c0.5,0,1,0.5,1,1v7C45,24.5,44.5,25,44,25z M8,24v-7c0-0.5-0.4-1-1-1H4c-0.5,0-1,0.5-1,1v7c0,0.5,0.5,1,1,1h3C7.6,25,8,24.5,8,24z"/><path fill="#9FA8DA" d="M7,25v6H4v-6H7z M41,25v6h3v-6H41z M27,42v-3c0-1.7-1.3-3-3-3s-3,1.3-3,3v3c0,1.7,1.3,3,3,3S27,43.7,27,42z M25,39v3c0,0.6-0.4,1-1,1s-1-0.4-1-1v-3c0-0.6,0.4-1,1-1S25,38.4,25,39z"/><path fill="#C5CAE9" d="M24 31A2 2 0 1 0 24 35A2 2 0 1 0 24 31Z"/><path fill="#C5CAE9" d="M24,39L24,39c-0.6,0-1-0.5-1-1v-4c0-0.5,0.4-1,1-1h0c0.5,0,1,0.5,1,1v4C25,38.5,24.6,39,24,39z"/><path fill="#263238" d="M37,20l2,6h2v4l-2,1l-1-4h-4l-1,6h-4l-3-7h-2h0h-2l-3,7h-4l-1-6h-4l-1,4l-2-1l0-4h2l2-6h3l1,6h4l3-7h2h2l3,7h4l1-6H37z M34,10l-2-1l-3,3h-5h-5l-3-3l-2,1l-1,3l3,2h6l1-2h1h1l1,2h6l3-2L34,10z"/><path fill="#FFF" d="M19,12h1c0,1.1-0.9,2-2,2s-2-0.9-2-2c0-0.8,0.5-1.5,1.2-1.8L19,12z M29,12h-1c0,1.1,0.9,2,2,2s2-0.9,2-2c0-0.8-0.5-1.5-1.2-1.8L29,12z"/><path fill="#FFC107" d="M18,11l1,1c0,0.6-0.4,1-1,1s-1-0.4-1-1S17.4,11,18,11z M30,11l-1,1c0,0.6,0.4,1,1,1s1-0.4,1-1S30.6,11,30,11z"/><path fill="#7986CB" d="M7,27H4v-2h3V27z M44,25h-3v2h3V25z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="none" stroke="#00796b" stroke-linecap="round" stroke-miterlimit="10" stroke-width="3" d="M3.5 34.5C3.5 29.253 7.753 24 13 24M44.5 14.5c0 5.247-4.253 9.5-9.5 9.5M19.5 36.5L19.5 44.5M28.5 36.5L28.5 44.5"/><path fill="#00bfa5" d="M34,37H14c-1.105,0-2-0.895-2-2V5c0-1.105,0.895-2,2-2h20c1.105,0,2,0.895,2,2v30 C36,36.105,35.105,37,34,37z"/><path fill="#e0f2f1" d="M32,19H16c-0.552,0-1-0.448-1-1V7c0-0.552,0.448-1,1-1h16c0.552,0,1,0.448,1,1v11 C33,18.552,32.552,19,32,19z"/><path fill="#212121" d="M18.5 9A1.5 1.5 0 1 0 18.5 12 1.5 1.5 0 1 0 18.5 9zM29.5 9A1.5 1.5 0 1 0 29.5 12 1.5 1.5 0 1 0 29.5 9z"/><path fill="none" stroke="#212121" stroke-miterlimit="10" d="M26.5,13c0,1.381-1.119,2.5-2.5,2.5s-2.5-1.119-2.5-2.5"/><path fill="#212121" d="M15 21H27V23H15zM32 21A1 1 0 1 0 32 23 1 1 0 1 0 32 21z"/><path fill="#76ff03" d="M33 26A1 1 0 1 0 33 28A1 1 0 1 0 33 26Z"/><path fill="#ffea00" d="M17 25H19V31H17z"/><path fill="#ffea00" d="M17 25H19V31H17z" transform="rotate(-90 18 28)"/><path fill="#212121" d="M18 35h-2c-.552 0-1-.448-1-1l0 0c0-.552.448-1 1-1h2c.552 0 1 .448 1 1l0 0C19 34.552 18.552 35 18 35zM24 35h-2c-.552 0-1-.448-1-1l0 0c0-.552.448-1 1-1h2c.552 0 1 .448 1 1l0 0C25 34.552 24.552 35 24 35z"/><path fill="#ff3d00" d="M30.5 30A2.5 2.5 0 1 0 30.5 35A2.5 2.5 0 1 0 30.5 30Z"/><path fill="#84ffff" d="M28 25L26 28 30 28z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#039be5" d="M43 38c0 0 0-7.626 0-9.961C43 26.013 41 25 40.429 25 39.014 25 37 27.381 37 29.053V38H43zM5 38c0 0 0-7.626 0-9.961C5 26.013 7 25 7.571 25 8.986 25 11 27.381 11 29.053V38H5z"/><path fill="#aed581" d="M13 24.54V29H5.63c-.08-.3-.15-.6-.21-.92h.01C5.17 26.78 5 25.31 5 23.65 5 21.88 6.54 21 8.43 21 10.31 21 13 23.08 13 24.54zM35 24.54V29h7.37c.08-.3.15-.6.21-.92h-.01c.26-1.3.43-2.77.43-4.43 0-1.77-1.54-2.65-3.43-2.65C37.69 21 35 23.08 35 24.54z"/><path fill="#e7ebed" d="M39,9.8V29H9V9.8C9,7.112,10.65,5,12.75,5c1.8,0,3.257,1.546,3.654,3.667 c4.846-0.792,10.346-0.792,15.193,0.01C31.982,6.546,33.45,5,35.25,5C37.35,5,39,7.112,39,9.8z"/><path fill="#ffccbc" d="M36 18.5c0 4.21-5.269 7.5-12 7.5s-12-3.29-12-7.5S17.269 11 24 11 36 14.29 36 18.5zM5 38H9V44H5zM39 38H43V44H39z"/><g><path fill="#7cb342" d="M13 29v2.62c0 .96 0 5.31 0 5.31s-1.71.44-3.43-.89C8.96 35.57 6.74 33.36 5.63 29H13zM35 29v2.62c0 .96 0 5.31 0 5.31s1.71.44 3.43-.89c.61-.47 2.83-2.68 3.94-7.04H35z"/></g><g><path fill="#212121" d="M31 15A1 1 0 1 0 31 17 1 1 0 1 0 31 15zM17 15A1 1 0 1 0 17 17 1 1 0 1 0 17 15zM24.001 20c-1.736 0-3.347-.409-4.532-1.153-.468-.293-.609-.91-.316-1.378.295-.468.912-.608 1.379-.316C21.39 17.691 22.655 18 24.001 18c1.345 0 2.608-.309 3.469-.847.467-.293 1.085-.152 1.378.317.293.468.151 1.085-.317 1.378C27.345 19.591 25.735 20 24.001 20z"/></g><path fill="#29b6f6" d="M39,26v18H9V26l1.54,0.604c3.45,1.335,8.36,2.109,13.46,2.109s10.01-0.774,13.46-2.109L39,26z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><path fill="#263238" d="M13.499,31.607c-1.243,4.843-1.83,5.853-3.174,7.335c-1.067,1.176-1.832,0.579-2.153-0.368 c-0.609-1.798-0.278-8.655,3.989-12.699L13.499,31.607z"/><path fill="#263238" d="M38,43H27L16.247,8.081C18.294,6.251,21.213,5,25,5c10,0,13,11.297,13,20.541C38,30.932,38,43,38,43z"/><path fill="#f9fbe7" d="M16.247,8.081C11.923,12.06,11,19.379,11,25.615C11,30.984,11,43,11,43h16c0-7.159,2-16.317,2-23.476 C29,9,23,7.058,16.247,8.081z"/><circle cx="13" cy="16" r="3" fill="#212121"/><ellipse cx="11.885" cy="14.919" fill="#fafafa" rx="1.345" ry=".906" transform="rotate(-35.653 11.885 14.919)"/><path fill="#fdd835" d="M7.354,18.772C9.094,18.315,17,17,17,17c0.518,0.333,0.992,0.73,0.992,1.565 c0,0.777-0.451,1.124-0.992,1.435c0,0-7.918-0.573-9.66-0.912C6.86,18.995,6.943,18.88,7.354,18.772z"/><circle cx="23" cy="16" r="3" fill="#212121"/><ellipse cx="21.885" cy="14.919" fill="#fafafa" rx="1.345" ry=".906" transform="rotate(-35.653 21.885 14.918)"/><path fill="#fbc02d" d="M17,20c0.413-0.238,0.769-0.499,0.917-0.953l-6.708,0.483C13.942,19.779,17,20,17,20z"/><path fill="#263238" d="M31,26c-3,4-7.723,10.347-8.038,12.322C22.712,39.891,23.5,40,24.5,40S33,40,34,30L31,26z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#bbdefb" d="M40,39c-0.128,2.06,0,3.858-3.136,6H9.135C6,42.858,6.128,41.06,6,39c-1.055,0-1.155,0-2.054,0 C6,34.604,6.182,34.06,6.054,32C4.999,32,5.055,32,4,32c2-5,5.841-7.396,7-11.634C12.166,16.104,17.125,14,23,14 c5.875,0,10.872,2.14,12,6.366C36.133,24.612,40,27,42,32c-1.155,0-2.054,0-2.054,0c-0.128,2.06,0.045,2.705,1.321,5.374L42,39 C42,39,41.027,39,40,39z"/><path fill="#1a237e" d="M32.999,32.31c-0.01,0.54-0.229,1-0.6,1.31C32.047,33.89,31.628,34,31.123,34 c-0.79,0-1.79-0.27-3.048-0.6c-1.552-0.42-3.314-0.89-4.924-0.89c-1.8,0-3.752,0.48-5.324,0.86c-2.076,0.51-3.457,0.85-4.286,0.15 C13.19,33.23,13,32.79,13,32.28C13,29.8,17.209,28,23,28c3.409,0,7.705,0.9,9.295,2.61C32.895,31.25,33.009,31.89,32.999,32.31z"/><path fill="#4fc3f7" d="M35 26L30 25 29 27 26 25 23 41 20 25 17 27 16 25 11 26 16 15 30 15z"/><path fill="#bbdefb" d="M27 28L27 31 30 28zM29 34L29 31 26 34zM17 34L17 31 20 34zM30 29L30 32 33 29zM19 28L19 31 16 28zM16 29L16 31 13 29zM30.814 21.635l-5.856-1.308.969-.424c.233-.148.302-.457.154-.69l-.687-.838 5.856 1.308-.969.424c-.233.148-.302.457-.154.69L30.814 21.635zM21.125 20.321l-5.839 1.382.687-.805c.145-.235.072-.543-.163-.688l-.984-.453 5.839-1.382-.687.805c-.145.235-.072.543.163.688L21.125 20.321z"/><g><path fill="#212121" d="M18 22.023A1 .977 0 1 0 18 23.977 1 .977 0 1 0 18 22.023zM28 22.023A1 .977 0 1 0 28 23.977 1 .977 0 1 0 28 22.023z"/></g><path fill="#fbc02d" d="M27,5l-1,6l-2.976-9L20,11l-1-6l-4.513,10.995C14.487,15.995,17,17,23,17s8.51-1.002,8.51-1.002L27,5 z"/><g><path fill="#841717" d="M23 9L21 11 21 14 23 16 25 14 25 11zM29.565 11.272L31.272 12.754 31.101 15 29.416 13.501zM16.423 11.278L16.605 13.507 14.899 14.99 14.753 12.753z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#fbc02d" d="M44,23c0,2,0,7-3,7c-1.5,0-2.5-0.5-3-1v15H10V29c-0.5,0.5-1.5,1-3,1c-2.956,0-3-5-3-7c0-8,7-18,20-18 S44,15,44,23z"/><path fill="#821616" d="M30,24c0,0-0.72,5.06-4.01,6.57c-0.02,0.01-0.04,0.02-0.06,0.03c-0.03,0.01-0.06,0.03-0.09,0.04 C25.94,30.44,26,30.22,26,30c0-1.1-1.34-2-3-2c-1.24,0-2.3,0.5-2.75,1.21c-0.11-0.11-0.2-0.22-0.29-0.34C18.41,26.81,18,24,18,24 s2.69,2,6,2S30,24,30,24z"/><path fill="#e57373" d="M26,30c0,0.22-0.06,0.44-0.16,0.64C25.29,30.86,24.68,31,24,31c-1.55,0-2.72-0.67-3.59-1.6 c-0.06-0.06-0.11-0.12-0.16-0.19C20.7,28.5,21.76,28,23,28C24.66,28,26,28.9,26,30z"/><path fill="#f9a825" d="M41 30v14h-3V29C38.5 29.5 39.5 30 41 30zM10 29v15H7V30C8.5 30 9.5 29.5 10 29z"/><path fill="#ffa000" d="M24,16.01C12.54,16.29,13.553,26.08,14.598,29c0.637,1.77,1.964,3,3.134,3 c3.134,0,3.677-5.08,4.179-8c0.198-1.23,1.16-1.72,2.089-1.84c0.93,0.12,1.891,0.61,2.089,1.84c0.501,2.92,1.045,8,4.179,8 c1.17,0,2.497-1.23,3.134-3C34.447,26.08,35.46,16.29,24,16.01z"/><g><path fill="#212121" d="M16.54 18.55c-1 .94-1.64 2.07-2.03 3.23C12.48 21.14 11 19.24 11 17c0-2.29 1.55-4.23 3.65-4.81C14.23 12.86 14 13.66 14 14.5 14 16.29 15.03 17.83 16.54 18.55zM36.99 17.25c-.1 2.14-1.54 3.92-3.5 4.53-.8-2.38-2.64-4.59-6.44-5.42.22-1.83 1.45-3.35 3.1-4.01C30.05 12.72 30 13.1 30 13.5c0 2.49 2.01 4.5 4.5 4.5C35.42 18 36.28 17.73 36.99 17.25zM24 20A4 2 0 1 0 24 24 4 2 0 1 0 24 20z"/></g><g><path fill="#fafafa" d="M20.95 16.36c-1.94.42-3.37 1.21-4.41 2.19C15.03 17.83 14 16.29 14 14.5c0-.84.23-1.64.65-2.31C15.08 12.06 15.53 12 16 12 18.54 12 20.64 13.9 20.95 16.36zM37 17c0 .08 0 .17-.01.25C36.28 17.73 35.42 18 34.5 18c-2.49 0-4.5-2.01-4.5-4.5 0-.4.05-.78.15-1.15C30.72 12.13 31.35 12 32 12 34.76 12 37 14.24 37 17z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#9575cd" d="M41.8,33.7c1.4,1.3,2.2,3.2,2.2,5.1c0,0.6-0.1,1.1-0.2,1.6c-0.2,0.8-1.4,2.9-1.8,3.5c-5,0-30,0-38,0 c-0.5-0.7-1.6-2.7-1.8-3.5C2.1,39.9,2,39.4,2,38.8c0-2.1,0.9-4,2.5-5.4C3.5,31.8,3,30,3,28c0-5.7,3.3-10.1,8.2-10.6c0-0.3,0-0.7,0-1 C11.1,9,16,5,22.1,5C27.9,5,32.6,8.5,33,15.4c0.2,0,0.3,0,0.5,0c6.1,0,10.5,4.8,10.5,11.5C44,29.3,43.2,31.7,41.8,33.7z"/><path fill="#311b92" d="M31.5 25A1.5 1.5 0 1 0 31.5 28A1.5 1.5 0 1 0 31.5 25Z"/><path fill="#311b92" d="M34.1,26.2l-5-0.2c-0.6,0-1-0.5-1-1c0-0.6,0.5-1,1-1l5,0.2L34.1,26.2z"/><path fill="#311b92" d="M14.5 25A1.5 1.5 0 1 0 14.5 28A1.5 1.5 0 1 0 14.5 25Z" transform="rotate(-13.409 14.5 26.5)"/><path fill="#311b92" d="M11.9 26.6c-.5 0-.9-.4-1-.9-.1-.5.3-1 .9-1.1l5-.6c.5-.1 1 .3 1.1.9.1.5-.3 1-.9 1.1l-5 .6C12 26.6 11.9 26.6 11.9 26.6zM25.3 31.9c.4-.5 1-.9 1.7-.9.5 0 1-.5 1-1s-.5-1-1-1c-1.5 0-2.8.8-3.5 2-.1.1-.1.2-.1.3-.1 0-.2-.1-.3-.1 0 0 0 0 0 0-.9-.2-2-.3-3.3-.1-3 .5-5 2.1-4.7 3.7.2 1.1 1.3 1.9 3 2.1.5-.9 1.4-1.6 2.7-1.9 1.2-.2 2.3.1 3.1.7.1 0 .1-.1.2-.1.1.1.1.2.2.2.4.5.9.8 1.5 1.1.1 0 .3.1.4.1.4 0 .8-.2.9-.6.2-.5 0-1.1-.5-1.3-.7-.3-1.2-1.1-1.4-1.8 0-.1 0-.2 0-.3 0-.1 0-.2 0-.3C25.1 32.4 25.2 32.1 25.3 31.9z"/><path fill="#e57373" d="M23.8,35.8c-0.1,0-0.1,0.1-0.2,0.1c0,0,0,0-0.1,0h0c-0.8,0.5-1.8,0.8-2.9,1c-0.5,0.1-1,0.1-1.5,0.1 c-0.4,0-0.8,0-1.1-0.1h0v0c0.5-0.9,1.4-1.6,2.7-1.9C21.9,34.9,23,35.1,23.8,35.8z"/><path fill="#fdd835" d="M23.5,12H28l-3.5,2.9l1.4,4.5L22,16.6l-3.9,2.8l1.5-4.4L16,12h4.4L22,7.4L23.5,12z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#151a43" d="M42,30.16c0,3.42-0.36,6.75-0.68,9.69c-0.12,1.13-0.23,2.21-0.32,3.24C40.95,43.6,40.52,44,40,44 H9.07c-0.28,0-0.55-0.12-0.74-0.33s-0.28-0.49-0.25-0.77c0.03-0.31,0.04-0.59,0.04-0.85c0-3.02-0.63-6.65-1.18-9.85 C6.45,29.44,6,26.83,6,24.93c0-8.45,4.54-15.61,10.64-16.94C18.34,4.94,21.79,3,25.59,3c4.8,0,8.95,3.1,10.94,6.16 C40,14.53,42,22.19,42,30.16z"/><path fill="#b71c1c" d="M33.58,40H16.42c0.82-3.41,2.58-4,2.58-4h12C31,36,32.76,36.59,33.58,40z"/><path fill="#821616" d="M34,44H16c0-1.64,0.17-2.95,0.42-4h17.16C33.83,41.05,34,42.36,34,44z"/><path fill="#bbdefb" d="M32,24.25c0,3.5-4,4.37-4,7.87c0,2.35,1,2.88,3,3.88l-6,4l-6-4c2-1,3-1.68,3-3.88 c0-3.5-5-3.75-5-8.12c0-2.63,4-8.5,4-12l11,12V24.25z"/><path fill="#212121" d="M21 20A1 1 0 1 0 21 22 1 1 0 1 0 21 20zM27 20A1 1 0 1 0 27 22 1 1 0 1 0 27 20zM26.5 33A.5.5 0 1 0 26.5 34 .5.5 0 1 0 26.5 33zM26.5 35A.5.5 0 1 0 26.5 36 .5.5 0 1 0 26.5 35zM25.998 23.526C25.443 23.767 24.724 24 24 24c-.724 0-1.445-.234-2-.475V24h.001v2l.872-1.309C23.218 24.886 23.601 25 24.001 25c.399 0 .781-.114 1.126-.309L25.999 26v-2h-.001C25.998 24 25.998 23.526 25.998 23.526z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#880e4f" d="M13,25v9.7h22V25H13z M24,28c-0.89,0-1.61-0.14-2.17-0.37C22.37,27.24,23.14,27,24,27 s1.63,0.24,2.17,0.63C25.61,27.86,24.89,28,24,28z"/><path fill="#ffcdd2" d="M13,18c0,5.49,3.38,11.5,8,13.39c0.95,0.39,1.96,0.61,3,0.61s2.05-0.22,3-0.61 c4.62-1.89,8-7.9,8-13.39C35,11.37,13,11.37,13,18z M24,27c0.86,0,1.63,0.24,2.17,0.63C25.61,27.86,24.89,28,24,28 s-1.61-0.14-2.17-0.37C22.37,27.24,23.14,27,24,27z"/><path fill="#ffcdd2" d="M21 30H27V34H21z"/><path fill="#f06292" d="M32 40L32 44 16 44 16 40 21 34 27 34z"/><path fill="#f06292" d="M42,26c0,4,0,18,0,18H32V21c0,0,0-3-8-3s-8,3-8,3v23H6c0,0,0-14,0-18C6,12.28,15,6,24,6 C34,6,42,12.28,42,26z"/><path fill="#ffcdd2" d="M32 41H36V44H32zM12 41H16V44H12z"/><path fill="#6a1b9a" d="M32 41.99V40c2.09 0 2-1 4-1v2C36 41 36.1 41.86 32 41.99zM16 40v1.99C11.9 41.86 12 41 12 41v-2C14 39 14 40 16 40zM27 34h-6l-2.62 3.14C19.09 37.68 20 38 21 38c1.2 0 2.27-.46 3-1.19.73.73 1.8 1.19 3 1.19 1 0 1.91-.32 2.62-.86L27 34z"/><g><path fill="#ec407a" d="M36 39c-2 0-1.91 1-4 1l-4.6-5.52C27.82 33.61 28.92 33 31 33 36 33 36 35 36 39zM20.6 34.48L16 40c-2 0-2-1-4-1 0-4 0-6 5-6C19.08 33 20.18 33.61 20.6 34.48z"/></g><path fill="#fbc02d" d="M9.092,14c0,0,6.793-2,14.908-2c8.014,0,15.157,2,15.157,2s-0.782-2-1.407-2.5 c-1.617-1.294-5.513-0.736-7.75-1.5c-3.995-1.364-6-6-6-6s-2.107,4.636-6,6c-2.226,0.78-6.129,0.204-7.75,1.5 C9.625,12,9.092,14,9.092,14z"/><path fill="#4db6ac" d="M24 2A1.5 1.5 0 1 0 24 5A1.5 1.5 0 1 0 24 2Z"/><g><path fill="#212121" d="M19 22A1 1 0 1 0 19 24 1 1 0 1 0 19 22zM29 22A1 1 0 1 0 29 24 1 1 0 1 0 29 22zM28 25.42c0 .67-.49 1.67-1.83 2.21C25.63 27.24 24.86 27 24 27s-1.63.24-2.17.63C20.49 27.09 20 26.09 20 25.42c0-.92 1.777.002 4 0C26.21 25.418 28 24.5 28 25.42z"/></g><path fill="#e57373" d="M26.17,27.63C25.61,27.86,24.89,28,24,28s-1.61-0.14-2.17-0.37C22.37,27.24,23.14,27,24,27 S25.63,27.24,26.17,27.63z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#ede7f6" d="M26.984,4.635c0,0,6.069-3.793,13.622,3.76s4.158,18.342,4.158,21.579S46,35.368,46,35.368 S45,36,43,36c0.395,3.474,2.763,8,2.763,8H3c0,0,2.201-17.161,8-25S10.125-2.362,26.984,4.635z"/><path fill="#ede7f6" d="M6.703,27c0,0-2.281,7-5.703,8c2.281,1,3.422,2,6.843,1S6.703,27,6.703,27z"/><rect width="10" height="8" x="19" y="36" fill="#9575cd"/><ellipse cx="24" cy="23" fill="#b39ddb" rx="18.133" ry="16"/><path fill="#ede7f6" d="M30.989,5.177c0,0,2.197,9.888-12.085,15.381c-8.267,3.18-5.493,9.888-2.197,10.986 c0,0-8.207,2.263-10.986-3.296C-1.969,12.868,20.003-8.006,30.989,5.177z"/><path fill="#212121" d="M28.098,28.112c-1.55,0-3.08-0.654-4.103-1.458c-1.926,1.436-5.605,1.818-7.335,0.213 c-0.203-0.188-0.215-0.504-0.026-0.706c0.189-0.203,0.506-0.214,0.706-0.026c1.434,1.331,4.885,0.83,6.32-0.5 c0.191-0.178,0.488-0.178,0.68,0c1.384,1.283,4.348,2.33,6.32,0.5c0.201-0.188,0.517-0.177,0.706,0.026 c0.188,0.202,0.177,0.519-0.026,0.706C30.376,27.762,29.231,28.111,28.098,28.112z"/><path fill="#9575cd" d="M21.474,29.728c1.828,0.752,3.456,0.756,5.123,0.011L27,30.096c-0.684,0.605-1.75,1.193-2.973,1.181 c-1.158-0.012-2.229-0.506-2.992-1.157L21.474,29.728z"/><ellipse cx="22.5" cy="21" fill="#212121" rx=".5" ry="1"/><ellipse cx="25.5" cy="21" fill="#212121" rx=".5" ry="1"/><ellipse cx="32.5" cy="17.025" fill="#fff" rx="4.5" ry="2.975"/><circle cx="32.5" cy="17.5" r="1.5" fill="#212121"/><path fill="#9575cd" d="M31,8.265c0,0-0.469,7.031-8.094,10.5c-8.188,3.725-10.688,9.469-6.199,12.779 c-3.27-0.029-8.113-8.779,5.168-14.529C26.594,14.984,29.062,12.015,31,8.265z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#212121" d="M46.5,28.538c0-3.42-1.41-7.078-3.675-9.857c0.629-0.74,1.222-1.572,1.752-2.49 c1.7-2.945,1.315-6.622,0.805-8.919c-0.284-1.28-1.593-2.036-2.844-1.642c-2.244,0.707-5.621,2.213-7.321,5.157 c-0.34,0.589-0.638,1.184-0.894,1.776c0.125-0.405,0.241-0.816,0.339-1.243c0.759-3.314-0.689-6.716-1.852-8.762 c-0.648-1.14-2.122-1.478-3.201-0.734c-1.937,1.336-4.723,3.767-5.482,7.081c-0.326,1.424-0.455,2.811-0.419,4.094h-0.101 c0.036-1.283-0.092-2.67-0.419-4.094c-0.759-3.314-3.545-5.745-5.482-7.081c-1.08-0.745-2.553-0.407-3.201,0.734 c-1.162,2.046-2.611,5.447-1.852,8.762c0.098,0.426,0.214,0.838,0.339,1.243c-0.256-0.592-0.554-1.187-0.894-1.776 c-1.7-2.945-5.077-4.45-7.321-5.157c-1.251-0.394-2.56,0.362-2.844,1.642c-0.51,2.297-0.895,5.974,0.805,8.919 c0.725,1.256,1.568,2.352,2.46,3.264c-1.918,2.666-3.092,5.971-3.092,9.083c0,6.368,4.858,13.871,11.098,14.152 c5.543,0.25,16.653,0.25,22.196,0C41.642,42.408,46.5,34.905,46.5,28.538z"/><path fill="#fff" d="M7.505,20.884C7.505,20.924,7.5,20.959,7.5,21c0,5,2.582,9,7,9c8,0,8-6.41,8-10 c0-0.552-0.094-0.996-0.254-1.368C13.9,19.109,9.457,20.232,7.505,20.884z"/><path fill="#fff" d="M40.495,20.884C40.495,20.924,40.5,20.959,40.5,21c0,5-2.582,9-7,9c-8,0-8-6.41-8-10 c0-0.552,0.094-0.996,0.254-1.368C34.1,19.109,38.543,20.232,40.495,20.884z"/><circle cx="16.5" cy="20" r="2" fill="#212121"/><circle cx="30.5" cy="20" r="2" fill="#212121"/><g><path fill="#ffea00" d="M27.161,33.121l0.844,0.318c0.189,0.071,0.352-0.151,0.228-0.31l-2.568-3.302 c-0.858-1.103-2.525-1.103-3.383,0l-2.58,3.317c-0.124,0.159,0.039,0.381,0.228,0.31l0.909-0.34 C22.878,32.352,25.124,32.355,27.161,33.121z"/><path fill="#ffea00" d="M26.457,34.993c-1.585-0.596-3.331-0.598-4.917-0.005l-2.883,1.077 C19.023,36.631,19.634,37,20.323,37h7.303c0.691,0,1.304-0.37,1.669-0.94L26.457,34.993z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#424242" d="M35 29c-.43 0-.827-.28-.958-.713-.158-.528.14-1.083.666-1.244.148-.046 3.455-1.128 4.313-5.248.112-.541.637-.889 1.183-.775.541.113.888.642.775 1.183-1.109 5.321-5.505 6.698-5.691 6.754C35.191 28.986 35.095 29 35 29zM13 29c-.095 0-.192-.014-.288-.042-.187-.056-4.583-1.433-5.691-6.754-.113-.541.234-1.07.775-1.183.542-.114 1.07.234 1.183.775.869 4.169 4.274 5.236 4.309 5.246.529.159.829.716.67 1.246C13.828 28.721 13.431 29 13 29zM31.5 46c-.18 0-.358-.048-.516-.143-.251-.151-.423-.404-.471-.692l-1-6c-.091-.545.277-1.06.822-1.151.548-.091 1.06.278 1.151.822l.808 4.846 1.89-.63c.525-.175 1.09.109 1.265.632.175.524-.108 1.09-.632 1.265l-3 1C31.713 45.983 31.606 46 31.5 46zM16.5 46c-.081 0-.163-.01-.243-.03l-4-1c-.536-.134-.861-.677-.728-1.213.134-.536.679-.863 1.213-.728l2.949.737.822-4.932c.091-.544.605-.91 1.151-.822.544.091.913.606.822 1.151l-1 6c-.046.275-.205.519-.438.672C16.884 45.944 16.693 46 16.5 46z"/><path fill="#fff176" d="M44 40L4 40 24 7.01z"/><g><path fill="#fff" d="M30,20l-0.158,0.38C29.783,20.53,28.312,24,24,24s-5.783-3.47-5.842-3.62L18,20l0.158-0.38 C18.217,19.47,19.688,16,24,16c4.283,0,5.783,3.46,5.842,3.61L30,20z"/></g><path fill="#fdd835" d="M40.97,35H31v-3h8.15l-1.21-2H10.06l-1.21,2H17v3H7.03l-1.21,2H11v3h2v-3h10v3h2v-3h9v3h2v-3h6.18 L40.97,35z M29,35H19v-3h10V35z"/><g><path fill="#424242" d="M22 2H26V9H22z"/><path fill="#424242" d="M20 7H28V9H20zM25 20c0 1.657-1 3-1 3s-1-1.343-1-3 1-3 1-3S25 18.343 25 20zM25 30L23 30 19 28 19 34 23 32 25 32 29 34 29 28z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#f57c00" d="M24 12A15 15 0 1 0 24 42A15 15 0 1 0 24 12Z"/><path fill="#00695c" d="M32.737,34H32H15h-0.737C11.368,34,9,36.368,9,39.263V40v0.571V44h4.02h1.159h6.243h6.156h6.243h1.159h4.52L38,40.571V40v-0.737C38,36.368,35.632,34,32.737,34z"/><path fill="#004d40" d="M33 42v2h-2v-2c0-.552.448-1 1-1h0C32.552 41 33 41.448 33 42zM17 42v2h-2v-2c0-.552.448-1 1-1h0C16.552 41 17 41.448 17 42z"/><path fill="#ffe0b2" d="M27,29.077v-2.971c-2.382,0.296-4.648,0.296-6,0v2.971c0,1.921-1.606,4.454-4,4.952C18.054,35.073,20,37,24,37s5.946-1.927,7-2.971C28.606,33.531,27,30.997,27,29.077z"/><path fill="#ffcc80" d="M20,32c1-1,2-2,7.046-2.454C27.027,29.388,27,29.228,27,29.077v-1.624C26.075,27.803,25.065,28,24,28s-2.075-0.197-3-0.547v1.624c0,0.991-0.433,2.14-1.176,3.094C19.881,32.115,19.936,32.064,20,32z"/><path fill="#ff8f00" d="M10 35A3 3 0 1 0 10 41A3 3 0 1 0 10 35Z"/><path fill="#ff8f00" d="M9.5 26A5.5 5.5 0 1 0 9.5 37A5.5 5.5 0 1 0 9.5 26Z"/><path fill="#ff8f00" d="M11 14A7 7 0 1 0 11 28A7 7 0 1 0 11 14Z"/><path fill="#ff8f00" d="M15 6A6 6 0 1 0 15 18A6 6 0 1 0 15 6Z"/><path fill="#ff8f00" d="M24 4A6 6 0 1 0 24 16A6 6 0 1 0 24 4Z"/><path fill="#ff8f00" d="M29 5A6 6 0 1 0 29 17A6 6 0 1 0 29 5Z"/><path fill="#ff8f00" d="M34.5 10A6.5 6.5 0 1 0 34.5 23A6.5 6.5 0 1 0 34.5 10Z"/><path fill="#ff8f00" d="M37.5 19A6.5 6.5 0 1 0 37.5 32A6.5 6.5 0 1 0 37.5 19Z"/><path fill="#ff8f00" d="M35.5 26A5.5 5.5 0 1 0 35.5 37A5.5 5.5 0 1 0 35.5 26Z"/><path fill="#ff8f00" d="M39 33A4 4 0 1 0 39 41A4 4 0 1 0 39 33Z"/><path fill="#ff8f00" d="M38.5 39A2.5 2.5 0 1 0 38.5 44A2.5 2.5 0 1 0 38.5 39Z"/><path fill="#ffe0b2" d="M30.924,16.108C29.923,14.169,28.012,13,25.976,13H24c-1.257,0-3.057,0-5,0c-2.057,2-3,4.5-3,7.5c0,4.125,3.543,7.5,8,7.5s8-3.375,8-7.5C32,18.893,31.606,17.429,30.924,16.108z"/><path fill="#00838f" d="M27.5 17A1.5 1.5 0 1 0 27.5 20 1.5 1.5 0 1 0 27.5 17zM20.5 17A1.5 1.5 0 1 0 20.5 20 1.5 1.5 0 1 0 20.5 17z"/><path fill="#ff8a65" d="M27,24c0,0-0.419,0-2,0c-3,0-3,1-3,1s0,1,2,1S27,24,27,24z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#0277BD" d="M31,7c-1.7-1.3-2.9-3-7-3s-5.3,1.8-7,3s-6,1.5-6,5s3,4,3,4h10h10c0,0,3-0.5,3-4S32.7,8.3,31,7z"/><path fill="#FFA726" d="M14,22c0,1.7-1.3,3-3,3s-3-1.3-3-3s1.3-3,3-3S14,20.3,14,22z M37,19c-1.7,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S38.7,19,37,19z"/><path fill="#FFB74D" d="M11,24c0-8.1,5.8-14,13-14h0c8,0,13,5.9,13,14v4H11V24z"/><path fill="#424242" d="M41 31l2-1c0 0-4.3-6-11.1-6h-4.1c-.4 1.7-2 3-3.9 3s-3.4-1.3-3.9-3h-4.4C9.3 24 5 30 5 30l2 1-2 2.5L7 34l-1 3.5L8 38v3h2l2 2 2-1 2 2 2-1 1.9 1 2.1-1 2 1 2-1 1.9 1 2.1-1 1.9 1 2.1-2 2 1 2-2h2v-3h2l-1-4 2-.4L41 31zM24 10c-3.3 0-6.3 1.2-8.5 3.3 1.8 1.6 4.9 2.7 8.5 2.7 3.7 0 7-1.1 8.7-2.8C30.5 11.2 27.6 10 24 10z"/><path fill="#EFEBE9" d="M32.5,38c-1.5,0-4.1-1-8.5-1s-6.9,1-8.5,1S13,36.9,13,35.5v-5c0-1.4,1.1-2.5,2.5-2.5s3.3,1,8.5,1s7.3-1,8.5-1s2.5,1.1,2.5,2.5v5C35,36.9,34,38,32.5,38z"/><path fill="#D7CCC8" d="M19,36h-2v-7.8c0.5,0.1,1.2,0.3,2,0.4V36z M29,28.6V36h2v-7.8C30.5,28.4,29.8,28.5,29,28.6z M25,29c-0.3,0-0.7,0-1,0c-0.3,0-0.7,0-1,0v7h2V29z"/><path fill="#FF8A80" d="M32.5,38c-1.5,0-4.1-1-8.5-1s-6.9,1-8.5,1S13,36.9,13,35.5V34c0,0,0.6,2,2,2s3.8-2,9-2s7.8,2,9,2s2-2,2-2v1.5C35,36.9,34,38,32.5,38z"/><path fill="#784719" d="M27,20.5c0-0.8,0.7-1.5,1.5-1.5s1.5,0.7,1.5,1.5S29.3,22,28.5,22S27,21.3,27,20.5 M18,20.5c0,0.8,0.7,1.5,1.5,1.5s1.5-0.7,1.5-1.5S20.3,19,19.5,19S18,19.7,18,20.5"/><path fill="#FF8F00" d="M26.3,18.4C26,19,25.5,20.1,25,19.8c-0.1-0.3-0.4-0.6-0.9-0.6c0,0,0,0-0.1,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0-0.1,0c-0.5,0-0.8,0.3-0.9,0.6c-0.5,0.3-1.1-0.9-1.3-1.4c-0.3-0.5-0.5-0.9-0.3,0.2c0.1,0.5,0.2,0.2,0.3,0.8c0.1,0.3,0.2,1.4,0.3,1.7c0.1,0.1,0.2,0.3,0.3,0.5c0.1,0.1,0.1,0.2,0.4,0.3C23,22,23,22,23.1,22l0.2,0l0,0l0.1,0c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3-0.1c0.1,0,0.1-0.1,0.2-0.1c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0.1,0.3,0.1c0.1,0,0.1,0,0.2,0l0.1,0l0,0l0.2,0c0.1,0,0.1,0,0.3-0.1c0.2-0.1,0.3-0.2,0.4-0.3c0.1-0.2,0.2-0.3,0.3-0.5c0.1-0.3,0.2-1.4,0.3-1.7c0.1-0.5,0.2-0.2,0.3-0.8C26.8,17.5,26.6,17.9,26.3,18.4z"/><path fill="#3E2723" d="M30.2,17.6C30.2,17.6,30.2,17.6,30.2,17.6c0-0.1-0.1-0.1-0.1-0.2c-0.1-0.1-0.3-0.3-0.5-0.5c-0.1-0.1-0.2-0.1-0.4-0.2c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.3,0.1-0.5,0.2c-0.2,0.1-0.4,0.2-0.6,0.4c-0.7,0.6-1.2,1.5-1.5,2.2c-0.1,0.4-0.2,0.7-0.2,0.9c0,0.2-0.1,0.4-0.1,0.4s0-0.1,0-0.4c0-0.2,0-0.6,0-1c0.1-0.8,0.3-1.9,1-2.9c0.2-0.2,0.4-0.5,0.6-0.7c0.2-0.2,0.5-0.4,0.8-0.5c0.4-0.1,0.7-0.1,1-0.1c0.3,0,0.6,0.1,0.8,0.2c0.5,0.2,0.8,0.4,1.1,0.6c0.1,0.1,0.2,0.2,0.3,0.2c0.1,0.1,0.1,0.1,0.1,0.1c0.4,0.4,0.4,1,0,1.4c-0.4,0.4-1,0.4-1.4,0C30.4,17.8,30.3,17.8,30.2,17.6L30.2,17.6z M16.2,16.4c-0.4,0.4-0.3,1,0.1,1.4c0.4,0.4,1,0.3,1.4-0.1l0.1-0.1c0,0,0,0,0,0c0,0,0.1-0.1,0.1-0.1c0.1-0.1,0.3-0.3,0.5-0.5c0.1-0.1,0.2-0.1,0.4-0.2c0.1-0.1,0.3-0.1,0.4-0.1c0.1,0,0.3,0.1,0.5,0.2c0.2,0.1,0.4,0.2,0.6,0.4c0.7,0.6,1.2,1.5,1.5,2.2c0.1,0.4,0.2,0.7,0.2,0.9c0,0.2,0.1,0.4,0.1,0.4s0-0.1,0-0.4c0-0.2,0-0.6,0-1c-0.1-0.8-0.3-1.9-1-2.9c-0.2-0.2-0.4-0.5-0.6-0.7c-0.2-0.2-0.5-0.4-0.8-0.5c-0.4-0.1-0.7-0.1-1-0.1c-0.3,0-0.6,0.1-0.8,0.2c-0.5,0.2-0.8,0.4-1.1,0.6c-0.1,0.1-0.2,0.2-0.3,0.2C16.3,16.3,16.2,16.4,16.2,16.4C16.2,16.4,16.2,16.4,16.2,16.4z"/></svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#795548" d="M24,41c-3.9,0-7-1.7-7-9s3.1-12,7-12s7,4.7,7,12S27.9,41,24,41z"/><path fill="#ffcc80" d="M24,34c-2.8,0-5-0.5-5-4.5s3.2-6.5,5-6.5s5,2.5,5,6.5S26.8,34,24,34z"/><path fill="#795548" d="M34 42.3c0-.8-1.2-4.3-5-4.3-3 0-4 3-4 4.5 0 1.2 2.2 1.5 5 1.5C33.1 44 34 43.1 34 42.3zM14 42.3c0-.8 1.2-4.3 5-4.3 3 0 4 3 4 4.5 0 1.2-2.2 1.5-5 1.5C14.9 44 14 43.1 14 42.3zM17 15c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8S17 10.6 17 15zM47 15c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8S47 10.6 47 15z"/><path fill="#6d4c41" d="M45 15c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6S45 11.7 45 15zM15 15c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6S15 11.7 15 15z"/><path fill="#795548" d="M36,15c0,5.5-3.3,10-12,10s-12-4.5-12-10S15.3,5,24,5S36,9.5,36,15z"/><path fill="#ffcc80" d="M14,15c0,4.4,2,8,10,8s10-3.6,10-8s-1.9-8-10-8S14,10.6,14,15z"/><path fill="#fff" d="M31 15.5c0 1.4-1.1 2.5-2.5 2.5S26 16.9 26 15.5s1.1-2.5 2.5-2.5S31 14.1 31 15.5zM22 15.5c0 1.4-1.1 2.5-2.5 2.5S17 16.9 17 15.5s1.1-2.5 2.5-2.5S22 14.1 22 15.5z"/><path fill="#263238" d="M30.5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S30.5,14.9,30.5,16z"/><path fill="#fff" d="M30,14.5c0,0.3-0.2,0.5-0.5,0.5S29,14.8,29,14.5s0.2-0.5,0.5-0.5S30,14.2,30,14.5z"/><path fill="#263238" d="M21.5,16c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S21.5,14.9,21.5,16z"/><path fill="#455a64" d="M22.5,19l1.5-1.5l1.5,1.5H22.5z"/><path fill="#ff5722" d="M26,20c0,0-1,1.5-2,1.5S22,20,22,20s1,0.6,2,0.6S26,20,26,20z"/><path fill="#795548" d="M29.3 11c-.1 0-.3 0-.4-.1 0 0-.6-.4-1.5-.2-.4.1-.8-.2-.8-.5s.2-.8.5-.8c1.5-.3 2.5.3 2.6.4.3.2.4.7.2 1C29.7 10.9 29.5 11 29.3 11zM18.7 11c-.2 0-.4-.1-.6-.3-.2-.3-.1-.7.2-1 .1-.1 1.1-.7 2.6-.4.4.1.6.5.5.8-.1.4-.5.6-.8.5-.9-.2-1.5.2-1.5.2C19 11 18.8 11 18.7 11z"/><path fill="#fff" d="M21,14.5c0,0.3-0.2,0.5-0.5,0.5S20,14.8,20,14.5s0.2-0.5,0.5-0.5S21,14.2,21,14.5z"/><path fill="#795548" d="M36 32c0 1.1-.9 2-2 2s-2-.9-2-2c0-4-4.1-7-3-7C30.8 25 36 27.9 36 32zM12 32c0 1.1.9 2 2 2s2-.9 2-2c0-4 4.1-7 3-7C17.2 25 12 27.9 12 32z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><path fill="#00e5ff" d="M31,30c0,0,3-12,15-17c0,12-4,16-9,18c6,1,8,8,8,10C45,41,33,41,31,30z"/><path fill="#00e5ff" d="M17,30c0,0-3-12-15-17c0,12,4,16,9,18c-6,1-8,8-8,10C3,41,15,41,17,30z"/><rect width="20" height="18" x="14" y="13" fill="#ff6f00"/><path fill="#ffcdd2" d="M15,14c0,5.49,2.765,11.5,6.545,13.39C22.323,27.78,23.149,28,24,28s1.677-0.22,2.455-0.61 C30.235,25.5,33,19.49,33,14C33,7.37,15,7.37,15,14z"/><path fill="#ffcdd2" d="M21,26h6v4h-6V26z"/><path fill="#f06292" d="M32,31v13H16V31l5-1h6L32,31z"/><path fill="#ffa000" d="M36,22c0,4,4,13,2,22h-6V17c0,0,0-3-8-3s-8,3-8,3v27h-6c-2-8,1.804-18.233,2-22 C12.713,8.299,17,4,24,4C32,4,36,8.28,36,22z"/><path fill="#ffcdd2" d="M12,36c0-2,1.138-4.483,4-5v13h-4V36z"/><path fill="#ffcdd2" d="M36,44h-4V31c2.862,0.517,4,3,4,5V44z"/><path fill="#e91e63" d="M27,30h-6l-5,1c2,3,4,3,5,3c1.2,0,2.27-0.46,3-1.19c0.73,0.73,1.8,1.19,3,1.19c1,0,4,0,5-3L27,30z"/><circle cx="20" cy="19" r="1" fill="#212121"/><circle cx="28" cy="19" r="1" fill="#212121"/><path fill="#e57373" d="M22,23.412c0.56-0.365,1.61-0.707,2,0c0.436-0.707,1.44-0.365,2,0C25.621,24.263,24.86,25,24,25 S22.27,24.339,22,23.412z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#D50000" d="M24 1A6 4 0 1 0 24 9A6 4 0 1 0 24 1Z"/><path fill="#82B1FF" d="M33,43c-4.7-2.9,0.5-12.7,2.4-15.9c5.1-0.8,7.6-3.4,7.6-6c0-4.3-6.6-8-15.3-8.8c0.2-0.4,0.3-0.8,0.3-1.2c0-1.7-0.8-1.8-1-3.4l0,0c0-0.2,0-0.4,0-0.7c-1.7-1.2-3-4-3-4s-1.3,3-3,4c0,0.3,0,0.7,0.1,1L21,8c0,1.4-1,1.4-1,3c0,0.4,0.1,0.8,0.3,1.2C11.6,13,5,16.7,5,21c0,2.7,2.4,5.1,7.1,6c0.6,4.2,3.8,20,18.9,20c8,0,11-4,11-4S38.4,46.4,33,43z"/><path fill="#82B1FF" d="M33,43c-4.7-2.9,0.5-12.7,2.4-15.9c5.1-0.8,7.6-3.4,7.6-6c0-4.3-6.6-8-15.3-8.8c0.2-0.4,0.3-0.8,0.3-1.2c0-1.7-0.8-1.8-1-3.4l0,0c0-0.2,0-0.4,0-0.7c-1.7-1.2-3-4-3-4s-1.3,3-3,4c0,0.3,0,0.7,0.1,1L21,8c0,1.4-1,1.4-1,3c0,0.4,0.1,0.8,0.3,1.2C11.6,13,5,16.7,5,21c0,2.7,2.4,5.1,7.1,6c0.6,4.2,3.8,20,18.9,20c8,0,11-4,11-4S38.4,46.4,33,43z"/><path fill="#FFC107" d="M24,14.8c0,0,3.5,0,3,4.8c3.6-2.8,6-2.6,6-2.6c0-1.7-1-2-1-2S29.3,14.2,24,14.8z"/><path fill="#D50000" d="M33.8,43.4c-0.2-0.1-0.5-0.3-0.8-0.4c-1.4-0.9-1.9-2.3-1.9-4.1c-2.8,3.7-8.1,4.5-10.7,4.6c2.1,1.7,4.9,2.9,8.1,3.3C30.3,46.1,32.2,45,33.8,43.4z"/><path fill="#263238" d="M27,7c0,0,0.1,0.3,0.3,0.8c0.2,0.5,0.6,1.1,1,2c0.2,0.5,0.3,1,0.3,1.6c0,0.8-0.3,1.4-0.8,2c-0.5,0.5-1.1,1-1.7,1.2c-0.7,0.3-1.3,0.4-2.1,0.4l-0.5,0c-0.2,0-0.4,0-0.6-0.1c-0.3-0.1-0.7-0.2-1-0.3c-0.7-0.3-1.3-0.7-1.7-1.2c-0.5-0.5-0.8-1.2-0.8-1.9l0-0.3l0-0.1l0-0.1c0-0.1,0-0.3,0.1-0.4c0.1-0.3,0.1-0.5,0.2-0.8c0.4-0.9,0.8-1.5,1-2C20.9,7.3,21,7,21,7s0,0.1,0,0.2c0,0.1,0.1,0.4,0.1,0.6c0,0.6-0.2,1.3-0.3,2.2c0,0.2,0,0.4,0,0.6c0,0.1,0,0.2,0,0.3l0,0.1c0,0,0,0,0,0l0,0.1c0.1,0.3,0.3,0.6,0.6,0.9c0.3,0.3,0.7,0.5,1.1,0.6c0.2,0.1,0.4,0.1,0.7,0.2c0.1,0,0.2,0,0.3,0c0.1,0,0.3,0,0.4,0c0.4,0,0.9-0.1,1.4-0.2c0.4-0.1,0.8-0.3,1.1-0.6c0.3-0.3,0.5-0.6,0.6-0.9c0.1-0.4,0.1-0.8,0.1-1.2c-0.1-0.8-0.2-1.6-0.2-2.1C26.9,7.3,27,7,27,7z"/><path fill="#2979FF" d="M35.6,27c0,0-0.1,0-0.1,0c-0.3,0.5-0.6,1.1-1,1.8c-0.2,0-0.5,0-0.8-0.1c-0.5-0.1-1.1-0.2-1.6-0.4c-0.6-0.2-1.2-0.4-1.8-0.7c-0.6-0.3-1.3-0.6-1.9-1c-0.3-0.2-0.6-0.4-0.9-0.6c-0.3-0.2-0.6-0.5-0.9-0.7c-0.6-0.5-1.2-1-1.8-1.5c-0.2-0.2-0.5-0.4-0.7-0.7c-0.2,0.2-0.5,0.4-0.7,0.7c-0.6,0.5-1.2,1-1.8,1.5c-0.3,0.2-0.6,0.5-0.9,0.7c-0.3,0.2-0.6,0.4-0.9,0.6c-0.6,0.4-1.3,0.7-1.9,1c-0.6,0.3-1.2,0.5-1.8,0.7c-0.6,0.2-1.2,0.3-1.6,0.4c-0.5,0.1-0.9,0.1-1.2,0.2c-0.3,0-0.5,0.1-0.7,0.1c-0.2-0.8-0.3-1.5-0.3-2c0.2,0,0.5,0,0.9,0c0.3,0,0.8,0,1.2-0.1c0.4-0.1,0.9-0.1,1.4-0.2c0.5-0.2,1.1-0.3,1.7-0.5c0.6-0.2,1.2-0.4,1.8-0.8c0.3-0.2,0.6-0.3,0.9-0.5c0.3-0.2,0.6-0.4,0.9-0.6c0.6-0.4,1.2-0.8,1.8-1.3c1.2-0.9,2.4-1.9,3.5-2.8c0.6-0.4,1.1-0.9,1.7-1.2c0.5-0.4,1.1-0.7,1.6-1c0.5-0.3,1-0.5,1.4-0.7c0.5-0.1,0.8-0.3,1.2-0.3c0.7-0.1,1-0.1,1-0.1s-0.4,0.1-1,0.2c-0.3,0.1-0.7,0.2-1.1,0.4c-0.4,0.2-0.9,0.4-1.3,0.7c-0.5,0.3-1,0.7-1.4,1.1c-0.5,0.4-1,0.9-1.5,1.4c-0.6,0.6-1.2,1.2-1.9,1.8c0.2,0.2,0.4,0.3,0.7,0.5c0.6,0.4,1.2,0.9,1.8,1.3c0.3,0.2,0.6,0.4,0.9,0.6c0.3,0.2,0.6,0.3,0.9,0.5c0.6,0.3,1.2,0.5,1.8,0.8c0.6,0.2,1.2,0.3,1.7,0.5c0.5,0.1,1,0.2,1.4,0.2c0.4,0.1,0.8,0,1.2,0.1C35.2,27,35.4,27,35.6,27z M32,15c0,0-2.1-1-3.6-2.7c-0.1,0.4-0.3,0.7-0.6,1c-0.5,0.5-1.1,1-1.7,1.2c-0.2,0.1-0.5,0.1-0.7,0.2C28.1,14.5,30.5,14.5,32,15z M23.5,14.9c-0.2,0-0.4,0-0.6-0.1c-0.3-0.1-0.7-0.2-1-0.3c-0.7-0.3-1.3-0.7-1.7-1.2c-0.3-0.3-0.5-0.7-0.6-1.1c-1.6,2-4.5,4-8.6,4.8C11,17,17.5,15.6,23.5,14.9L23.5,14.9z"/></svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#37474f" d="M20,35c-2-2.5-8-7.75-9.75-6.75C9.329,28.776,12,30.75,13,31c-2,1-7.25-1.25-7.5-8 C5.176,14.252,16.961,4.403,27.902,2.117c0.379-0.079,0.779,0.017,1.075,0.268c6.496,5.514,8.235,18.287,8.104,22.453 c-0.018,0.559-0.297,1.068-0.753,1.391C32.839,28.701,28,32,28,32L20,35z"/><path fill="#d50000" d="M21.5,32.5c-2.193-0.731-5.811-3.124-8.307-6.949c-0.126-0.192-0.182-0.421-0.157-0.649 c0.578-5.335,3.373-16.641,13.986-20.247c0.29-0.099,0.621-0.032,0.842,0.181c4.184,4.017,6.986,11.951,7.13,19.55 c0.008,0.415-0.159,0.812-0.463,1.094c-1.913,1.774-6.433,4.357-8.031,5.27C24,31.5,21.5,32.5,21.5,32.5z"/><path fill="#eceff1" d="M34,44H17l4.25-19H16.5l3-1.5c0,0-2.5-2-2.5-6.25s3.75-7.5,4.75-8s4.689-1.132,6.5,0 c2,1.25,4.5,5.75,4.5,8.25c0,1.75-1.75,5-2.75,6c1.75,0.75,3.5,1.25,3.5,1.25L27,25.5c0,0,0,4.75,0.75,5.5 c0.5,0.5,1.5,1.25,2.25,1.25c1-1,2-2.25,2-2.25L34,44z"/><polygon fill="#37474f" points="25.25,22 25.75,25 23.75,25"/><path fill="#37474f" d="M22.25,17c0.75,0,2.125,0.5,2.125,2.375S22.75,22,22,22s-2.25-0.75-2.25-2.5 C19.75,18.25,20.75,17,22.25,17z"/><path fill="#37474f" d="M25.75,17.5c0-1.25,0.75-3.25,2.25-3.25s2.25,1.5,2.25,2.75S29.5,20.5,28,20.5 S25.75,19.25,25.75,17.5z"/><path fill="#37474f" d="M19.5,17c0-1.5,0.5-4,3.25-5.5c0.25,0.25,1,1.25,1,1.25C22.75,13,20.25,14,19.5,17z"/><path fill="#37474f" d="M26.75,10.75L26,12c1,1,2.5,1.75,4.5,1.5C29.5,13.25,27.5,12.5,26.75,10.75z"/><path fill="none" stroke="#37474f" stroke-miterlimit="10" d="M21.75,25c-0.25,1.5-1.25,9.5,3.25,9.5c2.25,0,3.5-1,4.5-2"/><line x1="23.25" x2="21.75" y1="31" y2="34.75" fill="none" stroke="#37474f" stroke-miterlimit="10"/><line x1="24.75" x2="24.5" y1="31.75" y2="37" fill="none" stroke="#37474f" stroke-miterlimit="10"/><line x1="26.5" x2="28.25" y1="31.5" y2="36" fill="none" stroke="#37474f" stroke-miterlimit="10"/><path fill="none" stroke="#37474f" stroke-miterlimit="10" d="M26,21c0.5,0.5,1.75,1.5,3.5,0.5"/><path fill="none" stroke="#37474f" stroke-miterlimit="10" d="M21,23.25c0.5,0,1.75,0,2.75-1"/></svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><ellipse cx="24" cy="26" fill="#7cb342" rx="11" ry="10"/><path fill="#ff3d00" d="M42,13.758c0,0,0.461-6.24-2-7.881c-3-2-6-0.642-8-1.642C27.01,1.741,27,1,25,1 c-3.978,0-10.916,11-10.916,15.973l19.582-0.096c0-2.782-2.667-9-2.667-9c6,0,9.048,6.108,9.048,6.108L42,13.758z"/><path fill="#7cb342" d="M41,32c0,10.09-17,14-17,14S7,42.09,7,32c0-5.744,7.059-4,17-4S41,26.256,41,32z"/><path fill="#7cb342" d="M36.009,26.023c0,0,6-1.023,8.001,7.978c0,0-0.905-0.577-2.01-1.147c0,0,1.247,2.463,1.008,5.144 l-2.174-2.195c0,0,0.201,2.25-0.391,4.193l-1.433-2.364c0,0,0,2.368-2,3.368l0.001-3l-5.456,1.334L36.009,26.023z"/><path fill="#7cb342" d="M12,26.023c0,0-6-1.023-8.001,7.978c0,0,0.905-0.577,2.01-1.147c0,0-1.247,2.463-1.008,5.144 l2.174-2.195c0,0-0.2,2.25,0.391,4.193L9,37.648c0,0,0,2.352,2,3.352l-0.001-3l5.456,1.334L12,26.023z"/><circle cx="36.5" cy="31.5" r="5.5" fill="#7cb342"/><circle cx="11.5" cy="31.5" r="5.5" fill="#7cb342"/><path fill="#cfd8dc" d="M45.471,16.291c0.444-0.304,0.646-0.864,0.46-1.392c0,0.008,0,0.008,0,0.008 c-0.178-0.527-0.694-0.839-1.226-0.807c0.146-0.503-0.073-1.064-0.548-1.344c-0.483-0.287-1.081-0.2-1.458,0.169 c-0.226-0.482-0.75-0.778-1.298-0.682c-0.548,0.089-0.95,0.537-1.007,1.065c-0.476-0.223-1.073-0.104-1.426,0.312 c-0.363,0.423-0.38,1.023-0.074,1.464C38.378,15.219,38,15.684,38,16.235c0,0.528,0.338,0.967,0.806,1.135 c-0.266,0.417-0.25,0.976,0.081,1.384c0.347,0.432,0.935,0.568,1.418,0.36c0.032,0.526,0.419,0.983,0.975,1.095 c0.081,0.016,0.154,0.016,0.234,0.016c0.46,0,0.88-0.256,1.082-0.656c0.37,0.376,0.966,0.481,1.45,0.217 c0.49-0.272,0.717-0.824,0.596-1.336c0.532,0.055,1.048-0.249,1.25-0.768C46.092,17.17,45.907,16.603,45.471,16.291z"/><rect width="21.5" height="6" x="13.5" y="14.5" fill="#cfd8dc"/><circle cx="34.5" cy="14.5" r="1.5" fill="#cfd8dc"/><circle cx="31.5" cy="14.5" r="1.5" fill="#cfd8dc"/><circle cx="28.5" cy="14.5" r="1.5" fill="#cfd8dc"/><circle cx="34.5" cy="17.5" r="1.5" fill="#cfd8dc"/><circle cx="13.5" cy="17.562" r="1.5" fill="#cfd8dc"/><circle cx="13.5" cy="14.562" r="1.5" fill="#cfd8dc"/><circle cx="16.5" cy="14.562" r="1.5" fill="#cfd8dc"/><circle cx="19.5" cy="14.562" r="1.5" fill="#cfd8dc"/><circle cx="22.5" cy="14.562" r="1.5" fill="#cfd8dc"/><circle cx="25.5" cy="14.5" r="1.5" fill="#cfd8dc"/><circle cx="34.5" cy="20.562" r="1.5" fill="#cfd8dc"/><circle cx="31.5" cy="20.562" r="1.5" fill="#cfd8dc"/><circle cx="28.5" cy="20.562" r="1.5" fill="#cfd8dc"/><circle cx="13.5" cy="20.562" r="1.5" fill="#cfd8dc"/><circle cx="16.5" cy="20.562" r="1.5" fill="#cfd8dc"/><circle cx="19.5" cy="20.562" r="1.5" fill="#cfd8dc"/><circle cx="22.5" cy="20.562" r="1.5" fill="#cfd8dc"/><circle cx="25.5" cy="20.562" r="1.5" fill="#cfd8dc"/><path fill="#b71c1c" d="M31,7.878c0,0-5.002,1.124-6.002-0.876c0,0,0.612,3.293,6.836,2.964C31.588,9.279,31,7.878,31,7.878 z"/><ellipse cx="24" cy="32.5" fill="#0b420d" rx="3" ry="1.5"/><circle cx="30" cy="28" r="3" fill="#cfd8dc"/><circle cx="18" cy="28" r="3" fill="#cfd8dc"/><circle cx="29" cy="28" r="1" fill="#0b420d"/><circle cx="19" cy="28" r="1" fill="#0b420d"/><path fill="#0b420d" d="M33,25c-4.558,0-5,5-7,5c-1.614,0-2-2-2-2s1,1,2,0c0.75-0.75,2.067-3.506,3.667-3.86 C32.012,23.621,33,25,33,25z"/><path fill="#0b420d" d="M15,25c4.558,0,5,5,7,5c1.603,0,2-2,2-2s-1,1-2,0c-0.75-0.75-2.067-3.522-3.667-3.876 C15.988,23.605,15,25,15,25z"/><circle cx="34.5" cy="32.5" r="4.5" fill="#7cb342"/><path fill="#0b420d" d="M37,30c-1.105,0-2,0.895-2,2h4C39,30.895,38.105,30,37,30z"/><circle cx="13.5" cy="32.5" r="4.5" fill="#7cb342"/><path fill="#0b420d" d="M11,30c-1.105,0-2,0.895-2,2h4C13,30.895,12.105,30,11,30z"/><path fill="#0b420d" d="M24,43.118l-6.447-3.224c-8.618-4.309-7.571-8.942-7.522-9.137l1.939,0.485 c0,0.009-0.562,3.343,6.478,6.863L24,40.882l5.553-2.776c7.039-3.52,6.478-6.854,6.472-6.887l1.945-0.461 c0.049,0.195,1.096,4.828-7.522,9.137L24,43.118z"/></svg>
|
||||
|
After Width: | Height: | Size: 3.9 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><path fill="none" stroke="#212121" stroke-miterlimit="10" stroke-width="1.4" d="M39.391,17.033 C40.447,8.823,38.466,6.46,37.5,6.25c-3.138-0.684-7.647,2.509-9.451,3.864c-1.464-0.313-2.984-0.497-4.549-0.497 c-2.893,0-5.593,0.584-7.993,1.592c-1.494-0.763-4.96-2.316-7.632-1.841c-0.591,0.105-3.606,3.234-0.85,9.33 c-1.051,1.98-1.65,4.171-1.65,6.479c0,8.525,7.125,13.068,18.625,13.07c11,0.002,18.25-4.546,18.25-13.07 C42.25,22.199,41.186,19.411,39.391,17.033z"/><path fill="none" stroke="#212121" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.4" d="M8.625,27.381 c0,0-2.75-0.131-6.875,0.869"/><path fill="none" stroke="#212121" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.4" d="M3.875,32.5 c0,0,1.75-1.125,5.125-1.75"/><path fill="none" stroke="#212121" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.4" d="M5.75,37.256 c0,0,1.375-1.5,5.625-3.625"/><circle cx="32.375" cy="14.506" r="3.5" fill="#e40f63"/><path fill="#e40f63" d="M32.125,11.381c0,0-1-4.875-4.875-5.375c0,0-2.375-0.375-4.25,4.625c0,0-1.5,4.625,1.5,6 c0,0,2,0.75,5.75-1.125L32.125,11.381z"/><path fill="#e40f63" d="M34.5,12.631c0,0,4.125-2,6-0.375s1.375,4.125,0,6.125c-0.923,1.343-2.25,2.375-3.75,2.25 s-3-1.125-3.875-3.5L34.5,12.631z"/><path fill="none" stroke="#212121" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.4" d="M39.375,24.256 c0,0,3.875-1.25,7.25-0.75"/><path fill="none" stroke="#212121" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.4" d="M40.5,27.631 c0,0,2.875,0,5.125,0.375"/><path fill="none" stroke="#212121" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.4" d="M39,31.131 c0,0,2.875,0.375,5.875,2"/><ellipse cx="14.5" cy="28.011" fill="#212121" rx="1.5" ry="1.989"/><ellipse cx="33.5" cy="26.989" fill="#212121" rx="1.5" ry="1.989"/><ellipse cx="24.595" cy="30.5" fill="#ffd302" stroke="#212121" stroke-miterlimit="10" stroke-width="1.4" rx="2.349" ry="1.749" transform="rotate(-2.987 24.617 30.527)"/><path fill="none" stroke="#212121" stroke-miterlimit="10" stroke-width="1.4" d="M28.875,14.256c-0.966,0-1.75-0.784-1.75-1.75 s0.784-1.75,1.75-1.75c0.637,0,1.194,0.34,1.5,0.848"/><path fill="none" stroke="#212121" stroke-miterlimit="10" stroke-width="1.4" d="M35.937,14.125c0.932,0,1.688,0.728,1.688,1.626 c0,0.898-0.5,1.626-1.688,1.626c-0.245,0-0.727-0.162-0.937-0.252"/><path fill="none" stroke="#212121" stroke-miterlimit="10" stroke-width="1.4" d="M35.875,14.506c0,1.933-1.567,3.5-3.5,3.5 s-3.5-1.567-3.5-3.5s1.567-3.5,3.5-3.5c1.807,0,3.294,1.369,3.48,3.127C35.868,14.256,35.875,14.38,35.875,14.506z"/><path fill="none" stroke="#212121" stroke-miterlimit="10" stroke-width="1.391" d="M31.956,10.758 c-0.413-1.331-1.671-4.363-4.643-4.752c0,0-2.343-0.375-4.193,4.625c0,0-1.48,4.625,1.48,6c0,0,1.58,0.601,4.563-0.617"/><path fill="none" stroke="#212121" stroke-miterlimit="10" stroke-width="1.4" d="M35.25,12.315 c1.278-0.489,3.872-1.253,5.25-0.059c1.875,1.625,1.375,4.125,0,6.125c-0.923,1.343-2.25,2.375-3.75,2.25 c-1.303-0.109-2.607-0.878-3.5-2.636"/><path fill="none" stroke="#212121" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.4" d="M8,17.426 c0,0-0.875,0.875-1.625,2.625"/></svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#f57c00" d="M34,8c-4-4-8,10-8,10l11,2C37,20,38.5,12.5,34,8z"/><path fill="#fb8c00" d="M24,15c3-2,11-3,11-3s-8.539,0.269-10,1c0,0,2-2,2-4c0,0-3,5-8,5c0,0-7.5-8.5-13-3 c-3.5,3.5-2,21,11.703,24.44c1.161,0.292,3.166,4.222,8.443,5.277c3.98,0.796,23.132-2.911,14.968-9.866 c-0.626-0.534-0.852-1.409-0.597-2.192c0.5-1.536,1.271-3.953,0.483-6.659c-0.593-2.037-1-4-6-6C32.205,14.882,24,15,24,15z"/><path fill="#ffcdd2" d="M12,23c0,0,3,4,5,0c2.542-5.083-6.778-14.166-11-11S4,33,17.703,35.44c0,0-3.87-6.274-0.703-9.44 C17,26,14.111,28.277,12,23z"/><path fill="#fff" d="M29.313,31.219c0,0-7.095-11.529-1.774-11.011c1.149,0.112,2.162,0.803,2.783,1.776 c1.095,1.717,2.512,5.005,1.101,9.236H29.313z"/><path fill="#fff" d="M36.7,31.219c0,0-3.045-11.837,1.055-9.499C40,23,38.811,31.219,38.811,31.219H36.7z"/><path fill="#212121" d="M31.922,29.262c0-1.801-0.584-3.262-1.305-3.262c-0.72,0-1.305,1.46-1.305,3.262 c0,0.738,0.102,1.411,0.267,1.957h2.076C31.82,30.672,31.922,29.999,31.922,29.262z"/><path fill="#212121" d="M37.742,28.483c0-1.457-0.473-2.638-1.055-2.638c-0.346,0-0.644,0.436-0.835,1.082 c0.321,2.194,0.835,4.195,0.835,4.195C37.27,31.122,37.742,29.94,37.742,28.483z"/><path fill="#ffe082" d="M28.257,31.219c0,0,3.166-1.055,6.332,1.055c0,0,3.166-3.166,5.277,0c0,0,1.055,2.111-2.111,3.166 c0,0,0.521,3.449-4.756,5.56c0,0-1.5,5.5-7,0c0,0-2-2-3.02-6.615C22.98,34.385,31.423,36.496,28.257,31.219z"/><path fill="#212121" d="M36,36c-0.825,0.3-1.41-0.56-1.41-0.56c-4.118,2.059-6.222-0.895-6.323-1.042 C27.973,34.568,26.404,33.94,26,34c0,0,0.75,2.25,1,3c2,6,4.423,3.717,4.423,3.717C33.598,37.818,34,37,36,36z"/><path fill="#ff5252" d="M28.579,37.442C27.818,36.503,27,37,27,37c2,8,5,3,5,3C31.197,37.591,29.209,37.288,28.579,37.442z"/><path fill="#212121" d="M33.534,32.274L35.06,33.8c0.349,0.349,0.902,0.396,1.297,0.101 c1.187-0.887,3.001-2.682-1.767-2.682C32.479,31.219,33.534,32.274,33.534,32.274z"/><path fill="#fb8c00" d="M28,29c0,0,6,8-4,6l-5-1L28,29z"/><ellipse cx="35.117" cy="31.855" fill="#fff" rx="1" ry=".334"/><path d="M36,19c0.518-0.332,1.118-0.461,1.699-0.509c0.55-0.041,1.097,0.018,1.63,0.126c-0.262-0.276-0.578-0.551-0.949-0.826 c-0.267,0.056-0.532,0.119-0.787,0.212C36.992,18.224,36.412,18.536,36,19z"/><path d="M23.5,21.5c-0.055-0.83,0.121-1.672,0.505-2.45c0.377-0.764,1.091-1.511,2.048-1.706c0.951-0.2,1.838,0.125,2.583,0.516 c0.349,0.239,0.701,0.472,1.012,0.744c0.297,0.292,0.587,0.584,0.852,0.896c-0.38-0.173-0.734-0.364-1.082-0.557 c-0.354-0.181-0.726-0.311-1.069-0.485c-0.725-0.229-1.448-0.42-2.102-0.261c-0.646,0.15-1.19,0.619-1.625,1.226 C24.186,20.033,23.83,20.743,23.5,21.5z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#6d350f" d="M32,18.17c0,0,4,2,1,7l-2-3L32,18.17z"/><path fill="#ffcc80" d="M34,36.17v-9l-0.028-0.001C33.983,27.003,34,26.838,34,26.67c0-4.694-4.253-8.5-9.5-8.5 c-5.059,0-9.182,3.54-9.472,8.001L15,26.17l0.02,0.142c-0.003,0.057,0.219,1.616,0.453,3.233c0.339,2.35,1.43,4.529,3.109,6.208 L19,36.17c-3-1-2,3,0,4s3.543,0.16,3.543,0.16l-0.168,1.939c0,0.512,0.197,1.008,0.546,1.382C25.944,46.884,31,46,31,46 s3-0.83,5-4.83S34,36.17,34,36.17z"/><path fill="#894415" d="M21.394,31.832c0,0,0.828-4.636,3.351-2.585c0.381,0.31,1.221,1.34-1.436,1.34 C23.309,30.588,22.519,30.42,21.394,31.832z"/><path fill="#894415" d="M33.673,28.122c-0.654-0.366-1.316-0.072-1.316-0.072s-0.598-0.957,0.144-1.364 s1.52,0.048,1.64,0.718s-0.132,1.281-0.132,1.281S33.972,28.29,33.673,28.122z"/><path fill="#efad60" d="M20.58,38.191c0,0-1.739-2.553-2.697-0.559c0,0,1.021,2.665,3.104,1.707 C20.987,39.34,19.838,39.101,20.58,38.191z"/><path fill="#894415" d="M21.83,39.606c0,0-1.83-2.435-7.83-7.435c-3.789-3.158-1.995-8.31-0.158-11.678 C15.232,17.945,16,15.109,16,12.207V8.17c0,0,0.774-7.981,9-7c1.241,0.148,4,1,4,3c0,0-4-1-5,2 c-0.879,2.636,2.104,5.273,2.84,5.873c0.093,0.076,0.185,0.139,0.291,0.196C28.009,12.713,33,15.61,33,20.17c0,5-6,6-10,5 c0,0-6-2-6,2c0,1.778,0.593,2.963,1.251,3.731c1.453,1.695,2.376,3.779,2.918,5.944L21.83,39.606z"/><ellipse cx="26.297" cy="35.335" fill="#fff" rx="2.453" ry="2.394"/><ellipse cx="32.233" cy="33.839" fill="#fff" rx="1.089" ry="2.07"/><path fill="#efad60" d="M26.096,42.532c0.116-0.206,0.356-0.373,0.625-0.347c0.273,0.024,0.475,0.177,0.695,0.258 c0.433,0.196,0.874,0.366,1.324,0.494c0.893,0.26,1.833,0.373,2.691,0.174c0.85-0.164,1.649-0.575,2.366-1.168 c0.687-0.565,1.248-1.454,0.98-2.411c0.235,0.423,0.264,0.966,0.115,1.447c-0.14,0.489-1.195,2.638-3.342,2.851 c-1.039,0.123-2.054-0.104-2.954-0.493c-0.452-0.196-0.883-0.428-1.293-0.687c-0.21-0.123-0.39-0.3-0.599-0.349 C26.491,42.242,26.247,42.346,26.096,42.532z"/><path fill="#6d350f" d="M21.872,21.971c0,0-10.42-11.178,2.027-20.88c0,0-10.524-1.024-9.521,14.893 c-2.738,4.062-7.44,12.983,0.201,17.676c5.521,3.391,7.245,5.928,7.245,5.928s-0.391-2.289-0.91-3.447 c-0.927-2.073-6.351-4.676-6.415-8.186C14.448,25.117,15.84,20.63,21.872,21.971z"/><path fill="#efad60" d="M28.407,33.173c0,0-1.987-2.274-4.572,0.335C23.835,33.508,25.87,29.367,28.407,33.173z"/><path fill="#efad60" d="M30.848,32.622c0,0,0.191-3.279,2.106-1.795C32.955,30.827,31.614,30.66,30.848,32.622z"/><path fill="#2196f3" d="M26.862,35.24c0.027,0.099,0.052,0.2,0.052,0.31c0,0.568-0.386,1.029-0.862,1.029 s-0.862-0.461-0.862-1.029c0-0.538,0.349-0.965,0.789-1.012c-0.005-0.039-0.023-0.073-0.023-0.113 c0-0.205,0.082-0.387,0.206-0.531c-0.037-0.002-0.072-0.011-0.11-0.011c-0.934,0-1.692,0.757-1.692,1.692s0.757,1.691,1.692,1.691 c0.934,0,1.691-0.757,1.691-1.691c0-0.291-0.08-0.561-0.21-0.8C27.413,35.034,27.161,35.212,26.862,35.24z"/><path fill="#2196f3" d="M32.548,34.314c0,0.564-0.297,1.021-0.662,1.021c-0.366,0-0.662-0.457-0.662-1.021 c0-0.491,0.229-0.882,0.529-0.98c-0.004-0.031-0.018-0.058-0.018-0.089c0-0.235,0.117-0.435,0.289-0.569 c-0.462,0.03-0.831,0.721-0.831,1.574c0,0.872,0.386,1.58,0.862,1.58s0.862-0.707,0.862-1.58c0-0.145-0.014-0.282-0.034-0.415 c-0.11,0.077-0.236,0.129-0.378,0.136C32.528,34.08,32.548,34.192,32.548,34.314z"/><path fill="#424242" d="M25.98,34.539c-0.44,0.046-0.789,0.474-0.789,1.012c0,0.568,0.386,1.029,0.862,1.029 s0.862-0.461,0.862-1.029c0-0.11-0.026-0.211-0.052-0.31c-0.026,0.002-0.049,0.015-0.075,0.015 C26.369,35.255,26.038,34.941,25.98,34.539z"/><path fill="#424242" d="M31.223,34.314c0,0.564,0.296,1.021,0.662,1.021c0.366,0,0.662-0.457,0.662-1.021 c0-0.121-0.02-0.234-0.045-0.342c-0.012,0.001-0.023,0.007-0.035,0.007c-0.374,0-0.67-0.283-0.716-0.645 C31.453,33.432,31.223,33.823,31.223,34.314z"/><path fill="#efad60" d="M24.434,38.87c0,0-3.208-0.373-2.054,3.547C22.379,42.417,22.71,39.372,24.434,38.87z"/><path fill="#efad60" d="M34,36.17c0,0-0.842-0.281-1.536,0.234c0,0,0.567-1.143,1.537-0.987L34,36.17z"/><g><path fill="#efad60" d="M32.534,38.324c-0.12-0.266-0.38-0.454-0.703-0.551c0.255,0.194,0.402,0.429,0.375,0.669 c-0.057,0.504-0.844,0.828-1.758,0.725c-0.253-0.029-0.485-0.089-0.693-0.169l0.196,0.991c0,0,0.124-0.108,0.325-0.246 c0.311,0.162,0.723,0.217,1.149,0.117c0.497-0.117,0.887-0.411,1.071-0.76c0.1,0.007,0.198,0.005,0.301,0.024L32.534,38.324z"/></g><path fill="#efad60" d="M27.002,38.164c0,0,1.811-0.288,2.123-1.999C29.125,36.165,30.075,38.443,27.002,38.164z"/></svg>
|
||||
|
After Width: | Height: | Size: 4.4 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><defs opacity=".43"><polygon id="sGTYlMj9xheaijBsEHqtKa" points="-18,50.925 -67,50.925 -68,0.075 -19,0.075" opacity=".43"/></defs><path fill="#212121" d="M15,42c0,0,1-1,4-2l-5-8c0,0,0,6-3,7h3C14,39,14,40,15,42z"/><path fill="#212121" d="M35,42c0,0-1-1-4-2l5-8c0,0,0,6,3,7h-3C36,39,36,40,35,42z"/><path fill="#212121" d="M12,33c0,0-3-2-3,2c0,0-1-2,0-4c0,0-2,1-3,3c0,0,0-3,2-4l-5-4c7,0,11-10,11-10L12,33z"/><path fill="#212121" d="M37,35c0,0,4,1,6-1c0,0-4,0-2-2c0,0,1-1,3-1l-2-1c0,0,2,0,4-2c0,0-5,2-5-1s4-1,4-1s-1-5-5-4l-5,1 L37,35z"/><path fill="#ffbca7" d="M36,26h2.012C39.11,26,40,26.89,40,27.988l0,0c0,1.59-0.745,4.703-1.211,5.831 c-0.539,1.306-0.848,2.12-1.453,2.651S35,37,35,37L36,26z"/><path fill="#ffad93" d="M36,32c0-4.375,3-4,3-4s-1,0.5-1,4c0,2-1.125,2-1.125,2S36,34,36,32z"/><path fill="#ffbca7" d="M15,37c0,0-1.731,0.001-2.336-0.53s-0.914-1.345-1.453-2.651C10.745,32.691,10,29.578,10,27.988l0,0 C10,26.89,10.89,26,11.988,26H14L15,37z"/><path fill="#ffad93" d="M13.125,34c0,0-1.125,0-1.125-2c0-3.5-1-4-1-4s3-0.375,3,4C14,34,13.125,34,13.125,34z"/><path fill="#ffdbd0" d="M25,13H13v18.377c0,2.106,0.549,4.171,1.602,5.995C16.322,40.351,19.568,44.586,25,47 c5.432-2.414,8.678-6.649,10.398-9.628C36.451,35.548,37,33.483,37,31.377V13H25z"/><path fill="#212121" d="M11,25l3,8V23l1,2c0,0-1-3,2-8v5c0,0,2-6,6-8c0,0,0,3-2,5c0,0,4-2,4-5c0,0-1,3,3,5l-1-4c0,0,4,3,5,7 c0,0,1-4-1-6c0,0,6,6,5,16l2-7c0,0,6-3,7-5c0,0-4,1-4-2c0,0,4-1,4-3c0,0-5,2-6-2h3l-3-2c0,0,2-1,2-3c0,0-3,2-5,1c0,0,2,0,2-3 c0,0-3.283,2.433-5,1c-1.547-1.291-3-4-8-1c0,0,2-4,5-3c0,0-4-2-7,2c0,0-1-2,2-4c0,0-4,0-5,4c0,0-4-3-7,2c0,0,2-1,4-1c0,0-5,5-7,1 c0,0,0,4,2,4c0,0-4,6-8,5c0,0,1,2,3,2c0,0-3,1-2,6c0,0,0-4,3-4c0,0,0,5-5,6C3,26,9,27,11,25z"/><path fill="#ffbca7" d="M23,35h4c0,0-1,2-2,2S23,35,23,35z"/><rect width="8" height="2" x="21" y="40" fill="#ffbca7"/><path fill="#f5e9e8" d="M15,26c0,0,4-1,7,2C22,28,17,35,15,26z"/><path fill="#f5e9e8" d="M35,26c0,0-4-1-7,2C28,28,33,35,35,26z"/><path fill="#424242" d="M16,23c0.691-0.21,1.327-0.229,1.954-0.216c0.622,0.031,1.224,0.131,1.81,0.29 c0.586,0.157,1.154,0.377,1.698,0.682C22.005,24.066,22.531,24.434,23,25c-0.698,0.233-1.338,0.268-1.962,0.243 c-0.623-0.027-1.222-0.141-1.802-0.318c-0.581-0.175-1.145-0.408-1.69-0.71C17.006,23.896,16.476,23.543,16,23z"/><path fill="#424242" d="M34,23c-0.476,0.543-1.006,0.896-1.546,1.216c-0.545,0.302-1.109,0.535-1.69,0.71 c-0.581,0.176-1.179,0.29-1.802,0.318C28.338,25.268,27.698,25.233,27,25c0.469-0.566,0.995-0.934,1.538-1.243 c0.544-0.306,1.112-0.525,1.698-0.682c0.586-0.159,1.188-0.259,1.81-0.29C32.673,22.771,33.309,22.79,34,23z"/><ellipse cx="19" cy="28.5" fill="#212121" rx="1" ry="1.5"/><ellipse cx="31" cy="28.5" fill="#212121" rx="1" ry="1.5"/><path fill="#212121" d="M15,26c0,0,3,1,7,2C22,28,19,25,15,26z"/><path fill="#212121" d="M35,26c0,0-3,1-7,2C28,28,31,25,35,26z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#689f38" d="M40.074,28.111c0,0-5.889,4.333-5.889,10.111S24.074,44,24.074,44s-10.111,0-10.111-5.778 S8.074,28.111,8.074,28.111H40.074z"/><path fill="#7cb342" d="M43,24.5C43,30.333,28.385,37,24,37S5,30.333,5,24.5S19.615,7,24,7S43,18.667,43,24.5z"/><path fill="#e0e0e0" d="M26,10c0,0,1.778,5.556,9,7c2.889-2.889,2.708-7.167-1.167-9.333C30.463,5.782,26,10,26,10z"/><circle cx="32" cy="12" r="2" fill="#424242"/><path fill="#424242" d="M33.668,15.055c-1.814-2.721-5.029-4.122-5.062-4.136l0.787-1.838 c0.154,0.066,3.798,1.654,5.938,4.864L33.668,15.055z"/><path fill="#e0e0e0" d="M22,10c0,0-1.778,5.556-9,7c-2.889-2.889-2.708-7.167,1.167-9.333C17.537,5.782,22,10,22,10z"/><circle cx="16" cy="12" r="2" fill="#424242"/><path fill="#424242" d="M14.332,15.055l-1.664-1.109c2.141-3.21,5.784-4.798,5.938-4.864l0.789,1.837 C19.363,10.933,16.136,12.35,14.332,15.055z"/><path fill="#558b2f" d="M24,30c-7.204,0-15.193-4.941-15.53-5.152l1.06-1.696C9.607,23.2,17.375,28,24,28 c6.637,0,14.393-4.799,14.47-4.848l1.061,1.696C39.193,25.059,31.204,30,24,30z"/><path fill="#558b2f" d="M39.948,27.316l-1.896-0.633c0.741-2.225-1.514-3.789-1.61-3.854l1.113-1.662 C38.813,22.006,40.931,24.37,39.948,27.316z"/><path fill="#558b2f" d="M8.052,27.316c-0.982-2.946,1.136-5.31,2.394-6.148l1.109,1.664L11,22l0.559,0.83 c-0.097,0.065-2.352,1.629-1.61,3.854L8.052,27.316z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#a7da1c" d="M33.974,38h-20c-6.075,0-11-4.925-11-11l0,0c0-6.075,4.925-11,11-11h20c6.075,0,11,4.925,11,11l0,0 C44.974,33.075,40.049,38,33.974,38z"/><path fill="#212121" d="M33.974,39.012h-20C7.351,39.012,1.962,33.623,1.962,27c0-6.624,5.389-12.012,12.012-12.012h20 c6.623,0,12.012,5.389,12.012,12.012C45.985,33.623,40.597,39.012,33.974,39.012z M13.974,17.012c-5.507,0-9.988,4.48-9.988,9.988 c0,5.508,4.48,9.988,9.988,9.988h20c5.508,0,9.988-4.48,9.988-9.988c0-5.507-4.48-9.988-9.988-9.988H13.974z"/><circle cx="14.974" cy="13" r="9" fill="#fff"/><path fill="#212121" d="M14.974,23c-5.514,0-10-4.486-10-10s4.486-10,10-10s10,4.486,10,10S20.488,23,14.974,23z M14.974,5 c-4.411,0-8,3.589-8,8s3.589,8,8,8s8-3.589,8-8S19.385,5,14.974,5z"/><circle cx="32.974" cy="13" r="9" fill="#fff"/><path fill="#212121" d="M32.974,23c-5.514,0-10-4.486-10-10s4.486-10,10-10s10,4.486,10,10S38.487,23,32.974,23z M32.974,5 c-4.411,0-8,3.589-8,8s3.588,8,8,8s8-3.589,8-8S37.385,5,32.974,5z"/><circle cx="17.974" cy="13" r="3" fill="#212121"/><circle cx="30.974" cy="13" r="3" fill="#212121"/><circle cx="37.474" cy="27.5" r="3.5" fill="#f57c00"/><circle cx="10.474" cy="27.5" r="3.5" fill="#f57c00"/><g><path fill="#212121" d="M24.125,34.625c-0.156,0-0.312-0.036-0.454-0.109l-5.151-2.625c-0.492-0.25-0.688-0.853-0.437-1.345 c0.251-0.492,0.853-0.687,1.345-0.437l4.683,2.386l4.386-2.374c0.485-0.263,1.093-0.083,1.355,0.402 c0.264,0.486,0.083,1.093-0.402,1.355l-4.849,2.625C24.453,34.585,24.289,34.625,24.125,34.625z"/></g><g><path fill="#a7da1c" d="M11.345,44.844c-0.392,0-0.773-0.115-1.102-0.333l-1.695-1.125 c-0.374,0.532-0.972,0.845-1.631,0.845c-0.835,0-1.569-0.503-1.869-1.281l-0.612-1.591C3.295,38.391,4.538,35,7.267,33.64 c0.85-0.424,1.755-0.639,2.69-0.639c2.465,0,4.716,1.546,5.601,3.847l0.689,1.793c0.236,0.614,0.156,1.305-0.215,1.846 c-0.375,0.547-0.99,0.873-1.646,0.873l0,0c-0.157,0-0.313-0.019-0.468-0.056l-0.662,2.133 C12.996,44.278,12.227,44.844,11.345,44.844z"/><path fill="#212121" d="M9.958,34.001c2.009,0,3.903,1.219,4.668,3.206l0.689,1.791c0.262,0.68-0.261,1.361-0.927,1.361 c-0.1,0-0.204-0.016-0.309-0.049l-0.016-0.005c-0.084-0.027-0.169-0.039-0.253-0.039c-0.356,0-0.686,0.23-0.798,0.588 l-0.709,2.285c-0.137,0.44-0.538,0.704-0.957,0.704c-0.188,0-0.379-0.053-0.551-0.167L8.962,42.46 c-0.142-0.094-0.303-0.139-0.461-0.139c-0.286,0-0.566,0.147-0.722,0.414l0,0C7.583,43.069,7.25,43.23,6.917,43.23 c-0.388,0-0.773-0.22-0.936-0.641l-0.611-1.59c-0.938-2.437,0.007-5.299,2.344-6.464C8.443,34.171,9.208,34.001,9.958,34.001 M9.958,32.001c-1.092,0-2.147,0.25-3.136,0.743c-3.186,1.588-4.643,5.529-3.319,8.972l0.612,1.591 c0.449,1.168,1.549,1.923,2.802,1.923c0.647,0,1.254-0.201,1.754-0.563l1.018,0.675c0.494,0.328,1.067,0.501,1.657,0.501 c1.323,0,2.475-0.848,2.867-2.111l0.43-1.384c0.887-0.076,1.702-0.549,2.215-1.296c0.558-0.813,0.68-1.849,0.324-2.772 l-0.689-1.791C15.46,33.805,12.834,32.001,9.958,32.001L9.958,32.001z"/></g><g><path fill="#a7da1c" d="M36.64,44.844c-0.882,0-1.651-0.565-1.913-1.407l-0.663-2.136 c-0.143,0.038-0.305,0.059-0.467,0.059c-0.655,0-1.271-0.326-1.646-0.873c-0.372-0.541-0.452-1.231-0.215-1.847l0.688-1.791 c0.886-2.302,3.136-3.848,5.601-3.848c0.936,0,1.841,0.215,2.69,0.638c2.73,1.361,3.974,4.752,2.832,7.72l-0.612,1.591 c-0.3,0.778-1.033,1.281-1.868,1.281c-0.668,0-1.273-0.321-1.646-0.867l-1.678,1.146C37.414,44.729,37.033,44.844,36.64,44.844z"/><path fill="#212121" d="M38.027,34.001c0.75,0,1.515,0.17,2.244,0.533c2.337,1.165,3.282,4.027,2.344,6.464l-0.612,1.591 c-0.162,0.421-0.548,0.641-0.936,0.641c-0.332,0-0.666-0.161-0.861-0.496l0,0c-0.156-0.267-0.436-0.414-0.722-0.414 c-0.158,0-0.319,0.045-0.461,0.139l-1.833,1.216c-0.172,0.114-0.363,0.167-0.551,0.167c-0.419,0-0.82-0.264-0.957-0.704 l-0.709-2.285c-0.111-0.358-0.442-0.588-0.798-0.588c-0.084,0-0.169,0.013-0.253,0.039l-0.016,0.005 c-0.105,0.033-0.208,0.049-0.309,0.049c-0.666,0-1.189-0.681-0.927-1.361l0.689-1.791C34.124,35.221,36.019,34.002,38.027,34.001 M38.028,32.001L38.028,32.001c-2.876,0-5.502,1.804-6.535,4.488l-0.689,1.791c-0.355,0.923-0.234,1.959,0.324,2.772 c0.513,0.747,1.327,1.219,2.215,1.296l0.43,1.384c0.392,1.263,1.544,2.111,2.867,2.111c0.59,0,1.163-0.173,1.656-0.501 l1.018-0.675c0.5,0.362,1.107,0.563,1.754,0.563c1.253,0,2.353-0.755,2.802-1.923l0.612-1.591 c1.325-3.443-0.133-7.385-3.319-8.972C40.174,32.251,39.119,32.001,38.028,32.001L38.028,32.001z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 4.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#ffcc80" d="M10.923,34.497c0,0-3.893,0.43-2.231,3.347c0,0,1.016,1.869,3.434-0.226l-0.373,1.268 c0,0,15.363,10.256,28.982-1.268c0,0,2.318,0.045,1.683-3.121c0,0-3.778-0.022-3.778-4.213c0,0-1.583,3.143-4.982,0 c0,0-4.763,3.019-7.748-1.11c0,0-0.889,4.252-6.128,1.11c0,0-2.149,5.073-6.312,0.965C13.471,31.25,12.539,34.52,10.923,34.497z"/><path fill="#80d8ff" d="M23.974,4.094c-4.485,0-8.652,1.221-12.131,3.306c-0.244-1.309-1.048-1.735-2.012-1.735 c-1.157,0-2.095,0.594-2.095,2.619c0,0.363,0.031,0.748,0.088,1.135C7.437,9.363,7.052,9.332,6.688,9.332 c-2.025,0-2.619,0.938-2.619,2.095c0,0.863,0.332,1.602,1.339,1.924c-2.164,3.081-3.434,6.727-3.434,10.648 c0,0-0.262,8.643,6.155,11.131l2.226-0.655h1.048c1.734-0.722,1.871-2.399,1.648-3.759c0.655,1,1.781,1.664,3.066,1.664 c2.025,0,3.667-1.642,3.667-3.667v-0.524c0,1.736,1.407,3.143,3.143,3.143s3.143-1.407,3.143-3.143v-1.048 c0,2.314,1.876,4.19,4.19,4.19c1.431,0,2.691-0.72,3.447-1.814c0.502,1.069,1.58,1.814,2.839,1.814c1.192,0,2.217-0.672,2.75-1.65 c-0.27,1.612-0.157,4.018,2.75,4.531c0,0,3.929-2.881,3.929-10.214C45.974,13.006,36.124,4.094,23.974,4.094z"/><path fill="#6d4c41" d="M43.551,33.985c1.268-1.429,3.309-4.564,3.309-9.986c0-11.464-10.267-20.791-22.886-20.791 c-4.121,0-8.127,1.001-11.656,2.903C11.825,5.245,10.972,4.78,9.831,4.78c-0.896,0-2.981,0.342-2.981,3.504 c0,0.054,0.001,0.108,0.002,0.164c-0.055-0.001-0.11-0.002-0.164-0.002c-3.163,0-3.505,2.085-3.505,2.981 c0,0.955,0.332,1.72,0.953,2.233c-1.997,3.152-3.048,6.705-3.048,10.312c-0.011,0.372-0.195,9.006,6.382,11.845 c-0.063,0.24-0.097,0.493-0.097,0.753c0,1.644,1.337,2.98,2.981,2.98c0.057,0,0.293-0.008,0.631-0.09 c0.98,0.736,7.452,5.347,15.454,5.347c4.643,0,9.799-1.557,14.686-6.33c0.584-0.069,1.66-0.319,2.312-1.225 c0.568-0.788,0.647-1.817,0.233-3.059C43.645,34.115,43.596,34.051,43.551,33.985z M2.86,23.999c0-3.583,1.132-7.089,3.273-10.14 c0.162-0.23,0.205-0.524,0.115-0.791c-0.09-0.268-0.302-0.476-0.57-0.562c-0.434-0.139-0.722-0.375-0.722-1.079 c0-0.481,0-1.21,1.733-1.21c0.312,0,0.651,0.026,1.007,0.078c0.279,0.046,0.556-0.052,0.754-0.249C8.647,9.849,8.74,9.569,8.7,9.293 C8.648,8.936,8.622,8.596,8.622,8.284c0-1.732,0.728-1.732,1.209-1.732c0.588,0,0.984,0.169,1.141,1.011 c0.053,0.285,0.243,0.526,0.507,0.646c0.266,0.119,0.572,0.1,0.819-0.048c3.472-2.081,7.509-3.181,11.676-3.181 c11.643,0,21.114,8.532,21.114,19.02c0,5.68-2.431,8.456-3.281,9.254c-0.667-0.186-1.127-0.517-1.401-1.007 c-0.355-0.635-0.37-1.486-0.268-2.234c0.279-0.548,0.436-1.167,0.436-1.822c0-0.425-0.301-0.789-0.718-0.869 c-0.416-0.088-0.832,0.146-0.99,0.54c-0.022,0.057-0.269,0.684-0.424,1.553c-0.403,0.621-1.103,1.033-1.896,1.033 c-0.865,0-1.665-0.512-2.037-1.304c-0.135-0.287-0.413-0.48-0.729-0.507c-0.311-0.027-0.622,0.118-0.802,0.379 c-0.62,0.896-1.636,1.432-2.719,1.432c-1.822,0-3.305-1.482-3.305-3.305c0-0.489-0.396-0.886-0.886-0.886s-0.886,0.396-0.886,0.886 v1.048c0,1.244-1.012,2.257-2.257,2.257s-2.257-1.013-2.257-2.257c0-0.489-0.396-0.886-0.886-0.886s-0.886,0.396-0.886,0.886v0.523 c0,1.533-1.248,2.781-2.781,2.781c-0.904,0-1.708-0.434-2.217-1.104c-0.198-1.065-0.575-1.898-0.648-2.055 c-0.177-0.376-0.591-0.58-0.995-0.487c-0.404,0.091-0.692,0.449-0.692,0.864c0,0.85,0.234,1.646,0.641,2.326 c0.074,0.56,0.065,1.139-0.12,1.616c-0.161,0.415-0.447,0.722-0.873,0.934h-0.857c-0.733,0-1.406,0.267-1.926,0.708 C2.703,32.058,2.857,24.104,2.86,23.999z M42.004,36.214c-0.294,0.413-1.037,0.516-1.269,0.519c-0.235,0-0.46,0.094-0.626,0.26 c-11.372,11.372-24.112,3.825-27.375,1.553c0.113-0.095,0.227-0.188,0.341-0.301c0.346-0.346,0.346-0.906,0-1.252 s-0.907-0.346-1.252,0c-0.75,0.749-1.457,0.786-1.469,0.787c-0.667,0-1.209-0.542-1.209-1.209s0.542-1.21,1.209-1.21h1.048 c0.117,0,0.233-0.023,0.341-0.068c0.953-0.397,1.643-1.09,1.995-2.002c0.075-0.194,0.133-0.393,0.176-0.594 c0.653,0.362,1.404,0.569,2.202,0.569c1.675,0,3.141-0.909,3.932-2.26c0.732,0.747,1.751,1.212,2.878,1.212 c1.428,0,2.685-0.747,3.4-1.87c0.932,1.141,2.349,1.87,3.933,1.87c1.25,0,2.44-0.463,3.358-1.274 c0.75,0.798,1.807,1.274,2.927,1.274c0.667,0,1.296-0.163,1.85-0.45c0.08,0.458,0.225,0.912,0.46,1.336 c0.592,1.064,1.613,1.73,3.036,1.981c0.064,0.011,0.127-0.003,0.191-0.006C42.179,35.479,42.212,35.921,42.004,36.214z"/><path fill="#6d4c41" d="M27.117,40.599c-2.259,0-4.029-1.31-4.029-2.98c0-0.489,0.396-0.886,0.886-0.886 s0.886,0.396,0.886,0.886c0,0.57,0.965,1.209,2.257,1.209s2.257-0.639,2.257-1.209c0-0.489,0.396-0.886,0.886-0.886 s0.886,0.396,0.886,0.886C31.145,39.289,29.376,40.599,27.117,40.599z"/><circle cx="18.212" cy="36.046" r="1.571" fill="#6d4c41"/><circle cx="34.974" cy="36.046" r="1.571" fill="#6d4c41"/></svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#212121" d="M44,14c0,0,1,6-2,9l2,1c0,0,0,5-7,7l-4-7L44,14z"/><path fill="#212121" d="M4,17c0,0,0,7,3,9c0,0-2,1-3,0c0,0,0.689,6.86,6.845,4.93L15,27l-4.5-7.931L4,17z"/><path fill="#ffbca7" d="M36,22h2.012C39.11,22,40,22.89,40,23.988l0,0c0,1.59-0.745,4.703-1.211,5.831 c-0.539,1.306-0.848,2.12-1.453,2.651S35,33,35,33L36,22z"/><path fill="#ffad93" d="M36,28c0-4.375,3-4,3-4s-1,0.5-1,4c0,2-1.125,2-1.125,2S36,30,36,28z" opacity=".5"/><path fill="#ffbca7" d="M13,34c0,0-1.731,0.001-2.336-0.53s-0.914-1.345-1.453-2.651C8.745,29.691,8,26.578,8,24.988l0,0 C8,23.89,8.89,23,9.988,23H12L13,34z"/><path fill="#ffad93" d="M11.125,31c0,0-1.125,0-1.125-2c0-3.5-1-4-1-4s3-0.375,3,4C12,31,11.125,31,11.125,31z" opacity=".5"/><path fill="#ffdbd0" d="M24,13H12v18.377c0,2.106,0.549,4.171,1.602,5.995C15.322,40.351,18.568,44.586,24,47 c5.432-2.414,8.678-6.649,10.398-9.628C35.451,35.548,36,33.483,36,31.377V13H24z"/><path fill="#212121" d="M13,34l2-5l1,5l3-6l2,2l2-6v4l4-10l1,1l1-1l1,1l3-2v3l2,1v2l1,1c0,0,5-4,8-10l-4,2c0,0,0-1,2-3 c0,0-1-2-3-2c0,0,2,0,2-3c0,0-1,2-4,2c0,0,4-2,3-6c0,0-3,4-7,3s3-1,3-1s-5-2-9,1c0,0,1-3,5-4c0,0-4,0-6,3c0,0,0-3,2-4c0,0-5-2-9,5 c0,0,0-4,2-5c0,0-7,2-5,7c0,0-5-1-4-5c0,0-4,3-1,9c0,0-3-1-3-5c0,0-2,5,0,8c0,0-1,1-4,1c0,0,1,5,6,6C12.85,23.57,11,32,13,34z"/><path fill="#ffbca7" d="M22,35h4c0,0-1,2-2,2S22,35,22,35z"/><rect width="8" height="2" x="20" y="40" fill="#ffbca7"/><path fill="#f5e9e8" d="M27,29c0,0,2-3,7-1C34,28,32,32,27,29z"/><path fill="#212121" d="M34,28c0,0-3-1-7,1C27,29,29,25,34,28z"/><circle cx="30.5" cy="28.5" r="1.5" fill="#212121"/><polygon points="27.426,22.992 34,23.992 27.426,24.992"/><path fill="#37474f" d="M14,10c0,0,1,3,2,4c0,0,0-1,1-3c0,0,0,3,1,4c0,0,0-1,1-3c0,0,0,2,1,3c0,0,0-1,1-1.973 c0,0-1,3.973,3,4.973C24,18,13,22,14,10z"/><path fill="#37474f" d="M31,13c0,0,2,0,4-4v4.711c0,0,2,0.225,3.5-1.243c0,0-0.5,3.532-5.5,2.532v-2H31z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 5.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#ffb74d" d="M26.3,43.2C25.8,43.7,25,44,24,44s-1.8-0.3-2.4-0.8C20,42.1,4.9,32,4,26c0-0.3,0-0.5,0.1-0.8 l6.8-16.9C11.6,6.8,18.6,5,24,5s12.4,1.8,13.1,3.5l6.8,16.9c0.1,0.3,0.1,0.5,0.1,0.8C43.1,32,28,42.1,26.3,43.2z"/><path fill="#795548" d="M25.6,40.5C25.2,40.8,24.7,41,24,41s-1.2-0.2-1.7-0.5c-1.1-0.8-11.7-7.8-12.3-11.9 c0-0.2,0-0.4,0.1-0.5l4.4-11.7C15,15.2,20.2,14,24,14s9,1.2,9.5,2.4l4.4,11.7c0.1,0.2,0.1,0.3,0.1,0.5 C37.4,32.7,26.8,39.7,25.6,40.5z"/><path fill="#795548" d="M31,11.3c0.3,1-2,1.8-3.5,2.3c-3.5,1.1-11.2,0.2-10.4-2.3C18,8,20.7,8,24,8S30,8,31,11.3z"/><path fill="#ffe082" d="M19,13c-1-2-3-3-5-3c-1.6,0-1,7,2,7c2,0,4,0,4,0v-1C19.8,15.9,20,15,19,13z"/><path fill="#3e2723" d="M21,18h-5c-1.3,0-2.3-0.8-3.1-2.3c-0.5-1.1-0.8-2.4-0.8-3.7c0-2.8,1.4-3,1.9-3 c2.5,0,4.8,1.4,5.9,3.6c0.7,1.4,0.9,2.3,1,2.8l0.1,0.1V18z M14.2,11c-0.2,0.6-0.2,2.4,0.5,3.9C15,15.4,15.4,16,16,16h2.9 c0-0.1,0-0.1,0-0.2c-0.1-0.4-0.2-1.1-0.8-2.4C17.4,12,15.9,11.1,14.2,11z"/><path fill="#3e2723" d="M19.4,12.1l-4-2c-0.3-0.1-0.6-0.1-0.9,0c-0.3,0.1-0.5,0.4-0.5,0.7c-0.1,0.3-0.3,1.6,0.4,2.5 c0.3,0.3,0.7,0.7,1.6,0.7h3c0.5,0,0.9-0.3,1-0.8C20.1,12.8,19.9,12.3,19.4,12.1z"/><path fill="#ffe082" d="M29.1,13c1-2,3-3,5-3c1.6,0,1,7-2,7c-2,0-4,0-4,0v-1C28.3,15.9,28.1,15,29.1,13z"/><path fill="#3e2723" d="M32.1,18h-5v-2.5l0.1-0.1c0.1-0.5,0.3-1.4,1-2.8c1.1-2.2,3.4-3.6,5.9-3.6c0.4,0,1.9,0.2,1.9,3 c0,1.3-0.3,2.6-0.8,3.7C34.5,17.2,33.4,18,32.1,18z M29.2,16h2.9c0.6,0,1-0.6,1.2-1.1c0.7-1.5,0.7-3.3,0.5-3.9 c-1.7,0.1-3.1,1-3.9,2.4c-0.6,1.2-0.7,2-0.8,2.4C29.2,15.9,29.2,15.9,29.2,16z"/><path fill="#3e2723" d="M34.1,10.8c-0.1-0.3-0.3-0.6-0.5-0.7s-0.6-0.1-0.9,0l-4,2c-0.4,0.2-0.6,0.7-0.5,1.1 c0.1,0.4,0.5,0.8,1,0.8h3c0.8,0,1.3-0.4,1.6-0.7C34.4,12.4,34.2,11,34.1,10.8z"/><path fill="#ffb74d" d="M32,25H16l2.1-13.3c0-0.1,0-0.2,0.1-0.3c0.3-1,1.6-1.4,2.6-0.9C21.2,10.7,23,11,24,11 c1,0,2.8-0.3,3.3-0.5c1.1-0.6,2.5,0,2.7,1.2C29.9,11.7,32,25,32,25z"/><path fill="#ffe082" d="M31,24c0.8,0,1.5,0.4,1.8,1.1c0.2,0.6,0.3,1.3,0.1,1.9c-1,2.7-2.8,8.2-4.2,9.2c-1.6,1-7.8,1-9.4,0 c-1.3-0.9-3.2-6.6-4.2-9.2c-0.2-0.6-0.2-1.3,0.1-1.9c0.3-0.7,1-1.1,1.8-1.1H31z"/><path fill="#ffa726" d="M23,13v5.4c0,0.4-0.1,0.8-0.2,1.1L21,24h6l-1.8-4.5c-0.1-0.4-0.2-0.7-0.2-1.1V13 c0-1,0.5-1.7,0.9-2.2C25.3,10.9,24.5,11,24,11c-0.5,0-1.3-0.1-1.9-0.2C22.5,11.3,23,12,23,13z"/><path fill="#fff" d="M29,18c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S29,16.9,29,18z"/><path fill="#3e2723" d="M27,17c0.6,0,1,0.4,1,1s-0.4,1-1,1s-1-0.4-1-1S26.4,17,27,17"/><path fill="#fff" d="M23,18c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S23,16.9,23,18z"/><path fill="#3e2723" d="M21 17c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1S20.4 17 21 17M18 27c0 0 1 8 6 8s6-8 6-8-1 2-6 2S18 27 18 27z"/><path fill="#fff" d="M26.8,30.8C26.1,32,25.3,33,24,33c-1.2,0-2.1-1-2.8-2.2C22,30.9,23,31,24,31 C25.1,31,26,30.9,26.8,30.8"/><path fill="#3e2723" d="M24,26.4c-0.9-0.6-2-1.4-2.2-1.6c-0.2-0.1-0.4-0.3-0.6-0.3c0,0,0.1,0,0.1,0h5.4c0,0,0.1,0,0.1,0 c-0.2,0.1-0.3,0.2-0.5,0.3C26,25,24.9,25.8,24,26.4z"/><path fill="#3e2723" d="M25.2,25c-0.3,0.2-0.7,0.5-1.2,0.8c-0.4-0.3-0.8-0.6-1.2-0.8H25.2 M26.7,24h-5.4 c-0.7,0-1.2,0.5-1.2,1.2c0-0.1,0.1-0.1,0.1-0.2c0.1-0.1,0.3-0.2,0.4-0.2c0.3,0,0.6,0.1,0.9,0.3C21.8,25.5,24,27,24,27 s2.2-1.5,2.6-1.8c0.3-0.2,0.6-0.3,0.9-0.3c0.2,0,0.3,0,0.4,0.2c0.1,0.1,0.1,0.1,0.1,0.2C27.9,24.5,27.4,24,26.7,24z"/></svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#e53935" d="M25,5h-4c-1.5,0-3,2.125-3,5c0,2-3,2-3,5c0,1.25-1,2-2.5,2c-1.25,0-1.75-1-3.5-1c-5,0-5,5-5,5 c2.875,0,3.649,1.695,5.75,4.625c3.25,4.531,9.609,5.358,14.376,5.358c3.922,0,14.874-2.436,14.874-8.936c0-3.5-2.86-5.692-6-8.047 c-2-1.5-3-3-3-4C30,8,29,5,25,5z"/><path fill="#fbe9e7" d="M27,9.063C27,10.754,25.657,13,24,13s-3-2.246-3-3.938S22.343,6,24,6S27,7.371,27,9.063z"/><path fill="#e53935" d="M27,5.5C27,6.594,26,8,23.5,8c-1.5,0-2,2-3.5,2V9l1-4c0,0,1-1,3-1C26,4,27,5,27,5.5z"/><path fill="#80cbc4" d="M33.875,41H35c1.5,0,2,1,4,1c5,0,5-4.5,5-8c-0.625,2-1,4-5,4c-3,0-4,1-4,1L33.875,41z"/><path fill="#80cbc4" d="M33,40c0-2-1-3-1-4.875C32,32.375,33.5,30,37,30c3,0,4,3,4,3s-0.875-1-2.5-1c-1.875,0-2.5,2-2.5,4 c0,2.375-1,3-1,3l-1.125,2L33,40z"/><path fill="#26a69a" d="M35,39l-2,1c-1,0.75-1.875,1-3,1c-1.625,0-3-1-3-3c0-3,2-4,2-8s-1-5-1-5h-8c0,0-1,2-1,6 c0,5,2,13,10,13c4.5,0,6-3,6-3V39z"/><path fill="#fbe9e7" d="M36.992,23.63c-0.165-0.566-1.242-1.336-2.367-1.13c-0.053-0.003-3.935-2.126-3.935-2.126 L28.734,15.8c-0.002-0.004-0.006-0.007-0.008-0.011C28.299,14.741,27.272,14,26.07,14H26c-0.552,0-1-0.448-1-1v-1h-2v1 c0,0.552-0.448,1-1,1c-1.125,0-2.094,0.627-2.608,1.544C19.361,15.591,17.25,20.5,17.25,20.5L14.125,24 C12.875,24,12,25.125,12,25.75c0,0.133,0.12,0.25,0.375,0.25c0.375,0,0.68-0.352,1.125-0.5c0.75-0.25,1.067-0.484,1.25-0.625 c0,0,2.5-1.75,3.862-3.084c0.117-0.115,0.232-0.231,0.3-0.381L20.875,18H21c0,0,0,2,0,4s-1,3-1,3l4,3l4-3c0,0-1-1-1-4c0-2,0-3,0-3 h0.125l1.963,3.493c0.067,0.149,0.166,0.371,0.537,0.506c0.797,0.29,4.482,1.558,4.482,1.558c0.215,0.084,0.585,0.221,1.375,0.251 c0.469,0.018,0.86,0.271,1.22,0.166C36.946,23.904,37.029,23.757,36.992,23.63z"/><path fill="#80cbc4" d="M20 24c-.304 0-.604.138-.8.4-.332.441-.242 1.068.2 1.399L24 28C24 28 22.5 24 20 24zM28.8 24.4C28.604 24.138 28.304 24 28 24c-1.5 0-4 4-4 4l4.6-2.2C29.042 25.469 29.131 24.842 28.8 24.4z"/><path fill="#9575cd" d="M28 18.5c0 .75-.395 1.5-1.5 1.5C25 20 24 19 24 18.5s1-1.5 2.5-1.5C27.605 17 28 17.75 28 18.5zM24 18.5c0 .5-1 1.5-2.5 1.5-1.105 0-1.5-.75-1.5-1.5s.395-1.5 1.5-1.5C23 17 24 18 24 18.5z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><polygon fill="#212121" points="44,30 38,27 37.13,21.652 41,21 44,26 41,24"/><path fill="#ffbca7" d="M37,27.8l3.012-0.8C41.11,27,42,27.712,42,28.59c0.103,0-0.534,6.412-5,6.41V27.8z"/><polygon fill="#212121" points="4,30 10,27 10.87,21.652 7,21 4,26 7,24"/><path fill="#ffbca7" d="M11,35c-4.466,0.002-5.103-6.41-5-6.41C6,27.712,6.89,27,7.988,27L11,27.8V35z"/><path fill="#ffdbd0" d="M24,13H10v22.377c0,3.876,5.283,8.302,14,11.623c8.805-3.354,14-7.785,14-11.623V13H24z"/><polygon fill="#212121" points="37,22 38,32 40,22"/><path fill="#ffbca7" d="M22,31h4c0,0-1,2-2,2S22,31,22,31z"/><circle cx="17" cy="28" r="4" fill="#fff"/><polygon fill="#212121" points="11,22 10,32 8,22"/><circle cx="17" cy="29" r="1" fill="#212121"/><circle cx="31" cy="28" r="4" fill="#fff"/><circle cx="31" cy="29" r="1" fill="#212121"/><path fill="#fff" d="M14,35c1.314,4.632,5.293,8,10,8s8.686-3.368,10-8H14z"/><path fill="#f5f5f5" d="M16.921,40h14.157c0.596-0.596,1.125-1.269,1.58-2H15.341C15.797,38.731,16.325,39.404,16.921,40z"/><polygon fill="#212121" points="17,20 13,27 12,23 10,32 9,20"/><polygon fill="#212121" points="35,20 38,32 38,20"/><path fill="#ffb300" d="M32.125,1h-16.25C11.526,1,8,4.526,8,8.875V19h32V8.875C40,4.526,36.474,1,32.125,1z"/><rect width="32" height="8" x="8" y="11" fill="#dd2c00"/><polygon fill="#212121" points="20,20 25,29 25,23 27,25 27,20"/><polygon fill="#ffb300" points="48,20 40.016,19 7.973,19 0,20 0,22 48,22"/></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#6d4c41" d="M24,3c11.046,0,20,8.954,20,20s-8.954,20-20,20S4,34.046,4,23c0-6,3-8,3-8C9,6,15.787,3,24,3z"/><path fill="#ffd391" d="M38.5 28A4.5 4.5 0 1 0 38.5 37 4.5 4.5 0 1 0 38.5 28zM9.5 28A4.5 4.5 0 1 0 9.5 37 4.5 4.5 0 1 0 9.5 28z"/><path fill="#ffd391" d="M24 12A17 17 0 1 0 24 46A17 17 0 1 0 24 12Z"/><path fill="#bf360c" d="M27.935,40.426C27.623,39.293,25.987,38,24,38s-3.623,1.293-3.935,2.426 C20.026,40.544,20,40.669,20,40.8c0,0.663,0.537,1.2,1.2,1.2c0.8,0,1.2-1,2.8-1s2,1,2.8,1c0.663,0,1.2-0.537,1.2-1.2 C28,40.669,27.974,40.544,27.935,40.426z"/><path fill="#fcf5ea" d="M25.41,35.41C25.02,35.8,24.51,36,24,36s-1.02-0.2-1.41-0.59l-1.5-1.5l2.82-2.82l1.5,1.5 C26.2,33.37,26.2,34.63,25.41,35.41z"/><g><path fill="#fafafa" d="M32 22A6 6 0 1 0 32 34 6 6 0 1 0 32 22zM16 22A6 6 0 1 0 16 34 6 6 0 1 0 16 22z"/></g><g><path fill="#212121" d="M32 28A1 1 0 1 0 32 30 1 1 0 1 0 32 28zM16 28A1 1 0 1 0 16 30 1 1 0 1 0 16 28z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 4.9 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#8BC34A" d="M43,27.9c0-2.8-1.9-5.2-4.8-7.1C37.6,13.6,31.6,8,24,8S10.4,13.6,9.8,20.8c-3,1.8-4.7,4.4-4.7,7.1c0,4,3.8,7.4,9.3,9.2c2.1,3.1,5.5,4.9,9.7,4.9c4,0,7.6-2,9.7-4.9C39.2,35.3,43,31.9,43,27.9z"/><path fill="#D32F2F" d="M38.9,16.2c0,0-1.1-2.7,0.2-4.9c1.2-2,1.7-3.4,1.7-3.4s2.6,2.3,1.8,5.6c-0.8,3.4-3.8,4.3-4,4.3C38.3,18.1,39.1,17.9,38.9,16.2z"/><path fill="#E53935" d="M37.8,16.2c0,0-2.1-2.1-1.8-4.6C36.3,9.4,36.3,8,36.3,8s3.4,1.1,4,4.4c0.6,3.4-1.7,5.3-2,5.5C38,18.2,38.6,17.6,37.8,16.2z"/><path fill="#F44336" d="M38.6,16.5c-0.6-0.6-3.6-2.4-6.7-2.4s-5.4,1.8-7.9,1.8s-4.8-1.8-7.9-1.8s-4.1,0.3-5.2,1.5c-1.2,1.2-1.4,5.5-1.4,5.5s3,2.2,6.8,2.2c0,0,2.5-3.7,7.6-3.7c5.2,0,8,3.8,8,3.8c3.5-0.2,5.4-1.2,6.9-2.3C39.2,20,39.4,17.2,38.6,16.5z"/><path fill="#EFEBE9" d="M16.5,17.1c2.9,0,5.6,2.2,5.6,2.2C19,20,18.4,21.1,17,21.2c-2.3,0.3-5-1-5-1S13.6,17.1,16.5,17.1z M31.3,17.1c-2.9,0-5.6,2.2-5.6,2.2c3.2,0.7,4,1.8,5.3,1.9c2.3,0.3,4.9-1,4.9-1S34.2,17.1,31.3,17.1z"/><path d="M30.3 18.9c-.8 0-1.4.6-1.4 1.4 0 .1 0 .1 0 .2.8.4 1.4.7 2.1.8.1 0 .2 0 .3 0 .3-.3.5-.6.5-1C31.8 19.5 31.1 18.9 30.3 18.9zM17.7 18.9c-.8 0-1.4.6-1.4 1.4 0 .4.2.8.5 1 .1 0 .2 0 .3 0 .7-.1 1.3-.4 2.1-.8 0-.1 0-.1 0-.2C19.1 19.5 18.5 18.9 17.7 18.9z"/><g><path fill="#33691E" d="M15.6 31.1c0 0 7.1 3.2 15.4 0 3-1.2 3 2 .5 2.5C19.4 35.4 15.6 31.1 15.6 31.1zM24 19c-7 0-9.2 6.7-9.2 6.7 2-2.9 5.5-4.7 9.2-4.7 3.8 0 7.2 1.7 9.2 4.6C33.2 25.6 31 19 24 19z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><path d="M9.84,18.166c0.065-0.033,0.124-0.081,0.171-0.142c0.168-0.219,0.126-0.533-0.093-0.701 c-2.393-1.832-4.948-2.505-6.645-1.803c2.108,0.378,3.479,0.544,6.037,2.597C9.465,18.241,9.673,18.25,9.84,18.166z"/><path d="M9.532,20.526c0.038-0.062,0.064-0.133,0.072-0.211c0.029-0.275-0.17-0.521-0.445-0.55 c-2.57-0.266-4.537,0.405-5.475,1.415c1.996-0.777,3.894-0.625,5.37-0.421C9.251,20.787,9.434,20.684,9.532,20.526z"/><path fill="#7bbed5" d="M15.282,48c6-15-2-21-2-21s-9-5-7-9s7-2,12,0c8-18,17-10,13-1c16-4,13,4,7,11s2,20,2,20H15.282z"/><path fill="#212121" d="M33.388,2.564l-3.523,5.089c-0.567-0.307-1.21-0.466-1.923-0.418l1.297-4.415l-3.622,5.21 c-0.169,0.099-0.335,0.18-0.508,0.299c0.275,0.361,0.494,0.882,0.428,1.64c2.17-1.468,5.585-1.053,3.319,8.266 c1.245-0.734,1.58-0.926,2.426-1.234c1.41-3.173,1.201-6.215-0.007-8.041L33.388,2.564z"/><path fill="#70276e" d="M12.102,26.282l0.005-0.021c10.448,2.465,17.473-0.496,21.527-3.413 c2.104-1.513,1.87-2.783,1.315-3.427l1.464-1.362c4.625,4.897-7.099,11.124-16.787,11.124c-1.55,0-2.952-0.083-4.696-0.348 C13.59,27.015,13.164,26.964,12.102,26.282z"/><ellipse cx="21.062" cy="14.356" fill="#fafafa" rx="3.57" ry="2.55" transform="rotate(-67.418 21.062 14.356)"/><ellipse cx="20.084" cy="14.111" fill="#64dd17" rx="2.195" ry="1.568" transform="rotate(-74.241 20.085 14.112)"/><ellipse cx="19.492" cy="13.543" fill="#212121" rx=".952" ry=".803" transform="rotate(-67.387 19.492 13.544)"/><path fill="#7986cb" d="M23.12,15.803c-0.376-0.456-0.788-0.89-1.235-1.261c-1.084-0.9-2.187-1.283-3.061-1.446 c0.786-1.691,2.364-2.639,3.61-2.121c1.292,0.537,1.73,2.439,0.977,4.248C23.327,15.428,23.227,15.62,23.12,15.803z"/><ellipse cx="24.36" cy="15.581" fill="#fafafa" rx="3.757" ry="2.683" transform="rotate(-65.28 24.358 15.58)"/><ellipse cx="23.318" cy="15.076" fill="#64dd17" rx="2.195" ry="1.568" transform="rotate(-67.387 23.318 15.076)"/><ellipse cx="22.64" cy="14.791" fill="#212121" rx=".952" ry=".813" transform="rotate(-67.387 22.64 14.792)"/><path fill="#7986cb" d="M26.894,16.917c-2.029-2.331-4.164-2.453-5.05-2.382c0.03-0.073,0.049-0.146,0.082-0.218 c0.909-1.974,2.788-3.047,4.198-2.398c1.41,0.649,1.816,2.775,0.907,4.749C26.991,16.756,26.938,16.833,26.894,16.917z"/><path fill="#eee" d="M32.111,23.85l0.415,4.182l-3.268-2.739C30.307,24.851,31.261,24.362,32.111,23.85z"/><path fill="#eee" d="M18.682,27.155l-1.181,3.568l-1.949-3.833C16.637,27.035,17.681,27.123,18.682,27.155z"/><g><circle cx="41.5" cy="19.5" r="1.5" fill="#ffeb3b"/><circle cx="39.5" cy="23.5" r="1.5" fill="#ffeb3b"/><path d="M41.398,19.83c-0.049-0.054-0.088-0.119-0.11-0.193c-0.08-0.265,0.07-0.543,0.334-0.623 c2.885-0.871,4.513-0.601,5.854,0.654c-2.106-0.389-2.448-0.716-5.565,0.303C41.722,20.032,41.524,19.967,41.398,19.83z"/><path d="M39.367,23.525c-0.034-0.064-0.055-0.137-0.058-0.215c-0.011-0.276,0.205-0.509,0.48-0.519 c2.582-0.094,4.5,0.707,5.369,1.777c-1.94-0.908-3.844-0.883-5.33-0.778C39.63,23.804,39.455,23.689,39.367,23.525z"/></g><path fill="#cd2616" d="M19.378,16.83c-2.298-1.293-5.266-2.394-7.037,0c-1.242,1.679,0.096,6.032,5.697,6.654 c5.648,0.628,8.761-1.915,8.378-4.213S21.679,18.124,19.378,16.83z"/></svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#FFB74D" d="M21 5A17 17 0 1 0 21 39A17 17 0 1 0 21 5Z"/><path fill="#37474F" d="M15.3,38c-1.3,0.6-2.8,1-4.3,1C5.5,39,1,34.5,1,29c0-2.8,1.2-5.3,3-7.1c0,0,0,0.1,0,0.1C4,29.4,8.7,35.7,15.3,38z M46.9,12.5C47,12.2,47,12,47,12h0c0-0.1,0-0.2,0-0.2c-0.1-1.7-1.6-2.9-3.2-2.8c-1.6,0.1-2.7,1.4-2.7,3h0c0,1.2-0.2,2.4-0.3,3.4C38.9,9.5,30.5,4.7,19,5c0,0.3,0,0.7,0,1c0,4.2,3.2,7.6,7.2,8c-0.1,0.7-0.2,1.3-0.2,2c0,5.5,4.5,10,10,10c1.6,0,3.6-0.6,4.5-4.4c4.1-1.3,5.6-5.6,6.2-8c0-0.2,0.1-0.4,0.1-0.5C46.9,12.9,46.9,12.7,46.9,12.5z"/><path d="M7.4,17.3c0.7-0.5,1.9-0.2,2.8,0.8c0.9,1,1,2.2,0.3,2.7c-0.7,0.5-1.9,0.2-2.8-0.8S6.7,17.8,7.4,17.3z M14.7,15c0.9,1,2.1,1.3,2.8,0.7c0.7-0.6,0.6-1.8-0.3-2.7c-0.9-1-2.1-1.3-2.8-0.7S13.9,14.1,14.7,15z"/><path fill="#FFD180" d="M15.3,23.2c-1.5-0.4-3.8-0.2-5.2,1c-1.4,1.2-1.6,3.6,0.1,4.6c1.6,0.9,4.8-0.9,4.8-0.9C17.5,26.1,17.7,23.8,15.3,23.2z"/><path fill="#FB8C00" d="M42,34c-1.6,5.8-6,7-9,7c-0.9-1.2-2.5-2.8-3.9-4.1c3.3-1.8,5.9-4.7,7.4-8.1C37.9,30.7,40,33.1,42,34z M17.8,12.1c-0.3-0.5-0.6-0.8-1.1-1.2c-0.4-0.3-0.9-0.6-1.3-0.7c-0.2-0.1-0.5-0.1-0.7-0.1c-0.1,0-0.2,0-0.3,0c-0.1,0-0.1,0-0.2,0c-0.2,0-0.3,0-0.3,0c-0.1,0-0.2,0-0.3,0.1c-0.5,0.2-0.8,0.8-0.6,1.3c0.2,0.5,0.8,0.8,1.3,0.6c0,0,0.1,0,0.3-0.1c0,0,0.1,0,0.2-0.1c0,0,0,0,0.1,0c0.1,0,0.1-0.1,0.2,0c0.2,0,0.6,0.1,0.9,0.2c0.3,0.2,0.7,0.4,1,0.7c0.3,0.3,0.6,0.6,0.8,1c0.1,0.2,0.2,0.4,0.2,0.5c0,0.2,0.1,0.4,0,0.5c0,0.3-0.2,0.6-0.3,0.7c-0.1,0.2-0.2,0.2-0.2,0.2s0.1-0.1,0.3-0.2c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.2-0.3,0.2-0.5c0.1-0.2,0.1-0.4,0.1-0.6c0-0.2,0-0.5-0.1-0.7C18.3,13,18.1,12.5,17.8,12.1z M11.3,18.1c-0.1-0.3-0.2-0.5-0.3-0.8c-0.1-0.3-0.3-0.5-0.5-0.7c-0.2-0.2-0.4-0.4-0.6-0.6c-0.2-0.2-0.4-0.4-0.7-0.5c-0.2-0.1-0.5-0.3-0.7-0.3c-0.1,0-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.4,0c-0.1,0-0.3,0-0.4,0c-0.1,0-0.1,0-0.2,0c-0.2,0-0.3,0.1-0.3,0.1c-0.1,0-0.2,0-0.2,0.1C6,15.4,5.8,16,6,16.5c0.2,0.5,0.8,0.8,1.3,0.5c0,0,0.1,0,0.3-0.1c0,0,0.1-0.1,0.2-0.1c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0c0.1,0,0.3,0,0.4,0.1c0.2,0,0.3,0.1,0.5,0.2c0.2,0.1,0.4,0.2,0.5,0.3c0.2,0.1,0.3,0.3,0.5,0.4c0.2,0.2,0.3,0.3,0.4,0.5c0.1,0.2,0.2,0.4,0.3,0.6c0.1,0.2,0.1,0.4,0.1,0.6c0,0.2,0,0.4-0.1,0.5c0,0.2-0.1,0.3-0.2,0.4c-0.1,0.1-0.2,0.2-0.3,0.3C10.1,20.9,10,21,10,21s0.1,0,0.3-0.1c0.1,0,0.2-0.1,0.4-0.2c0.1-0.1,0.3-0.2,0.4-0.4c0.1-0.2,0.2-0.4,0.3-0.6c0-0.2,0.1-0.5,0-0.8C11.4,18.6,11.3,18.4,11.3,18.1z M25.1,19c0.6,0,1-0.5,0.9-1.1c0-0.6-0.5-1-1.1-0.9c-0.1,0-1,0.1-2.1,0.7c-1.8,1-2.7,2.8-2.7,2.9c-0.2,0.5,0,1.1,0.5,1.3C20.7,22,20.9,22,21,22c0.4,0,0.7-0.2,0.9-0.6c0,0,0.3-0.5,0.7-1.1c0.5,1,1.3,2.7,1.3,4.7c0,3.7-2.7,6.2-2.7,6.3c-0.4,0.4-0.4,1-0.1,1.4c0.2,0.2,0.5,0.3,0.7,0.3c0.2,0,0.5-0.1,0.7-0.3c0.1-0.1,3.3-3.1,3.3-7.7c0-2.5-1-4.7-1.7-5.8C24.8,19,25.1,19,25.1,19z"/><path fill="#FFEA00" d="M35,26.5c0-1.4,1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5S38.9,29,37.5,29S35,27.9,35,26.5z M13.5,37.2c-0.9,0.4-1.5,1.3-1.5,2.3c0,1.4,1.1,2.5,2.5,2.5s2.5-1.1,2.5-2.5c0-0.4-0.1-0.7-0.2-1.1C15.6,38.1,14.5,37.7,13.5,37.2z"/></svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><path fill="#43a047" d="M29,33L29,33H19c0,0-11,1.986-11,13h32C40,35.025,29,33,29,33"/><path fill="#66bb6a" d="M15.109,40c0,0,3-2.38,6-2l-1-8C20.109,30,16.505,31.538,15.109,40z"/><path fill="#66bb6a" d="M33.109,40c0,0-3-2.38-6-2l1-8C28.109,30,31.712,31.538,33.109,40z"/><path fill="#e53935" d="M31.291,8.9C30.109,6.121,32.109,4,32.109,0c0,0,3,4,3,8s-1.505,5-1.505,5l-2.495-3 C31.109,10,31.411,9.184,31.291,8.9z"/><path fill="#ff9800" d="M19.109,27v6c0,0,1.109,5,5,9c4.109-4,5-9,5-9v-6H19.109z"/><path fill="#ffa726" d="M35,21c0,1.105-0.896,2-2,2c-1.105,0-2-0.895-2-2s0.895-2,2-2C34.104,19,35,19.895,35,21"/><path fill="#ffa726" d="M17,21c0-1.105-0.896-2-2-2c-1.106,0-2,0.895-2,2s0.894,2,2,2C16.104,23,17,22.105,17,21"/><path fill="#ffb74d" d="M33,15c0-7.635-18-4.971-18,0v7c0,4.971,4.028,9,9,9c4.971,0,9-4.029,9-9V15z"/><path fill="#e65100" d="M24,6c-6.075,0-10,4.926-10,11v2.286L16,21v-5l8,2.478L32,16v5l2-1.742V17c0-4.025-1.038-8.016-6-9 l-1-2H24z"/><path fill="#784719" d="M27,21c0-0.551,0.448-1,1-1s1,0.449,1,1s-0.448,1-1,1S27,21.551,27,21"/><path fill="#784719" d="M19,21c0,0.551,0.448,1,1,1s1-0.449,1-1s-0.448-1-1-1S19,20.449,19,21"/><path fill="#43a047" d="M24.109,3c0,0-6.804,2.761-9.495,10l9.495,2l9.495-2C30.913,5.761,24.109,3,24.109,3z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#fff" d="M36.974,29.605V24c0-8.284-6.716-15-15-15h-1c-8.284,0-15,6.716-15,15v5.605 c-1.249,1.202-2,2.73-2,4.395c0,3.845,3.987,6.967,8.921,7c4.721,0,12.438,0,17.159,0c4.934-0.033,8.921-3.154,8.921-7 C38.974,32.334,38.223,30.807,36.974,29.605z"/><path fill="#212121" d="M44.974,19c-4.859-4.859-9.712-6.343-12.23-6.797c-1.13-1.032-2.405-1.902-3.795-2.58 C28.791,8.192,27.763,6,25.474,6c-0.725,0-1.31,0.147-1.794,0.374c0.188-0.622,0.294-1.278,0.294-1.874c0-1.933-1.119-2.5-2.5-2.5 c-1.381,0-2.5,0.567-2.5,2.5c0,0.515,0.081,1.075,0.224,1.619C18.968,6.049,18.728,6,18.474,6c-1.381,0-2.5,1.119-2.5,2.5 c0,0.103,0.014,0.202,0.027,0.302c-2.398,0.787-4.551,2.119-6.302,3.86C8.379,11.81,7.974,8.547,7.974,5.5 c0-3.038-1.567-5.5-3.5-5.5s-3.5,2.462-3.5,5.5c0,0.126,0.007,0.25,0.012,0.373L0.974,5.875c0.004,0.034,0.011,0.064,0.015,0.098 C1.027,6.674,1.15,7.335,1.34,7.937c1.249,5.336,4.536,7.149,6.015,7.709c-1.5,2.435-2.381,5.291-2.381,8.355v5.194 c-1.293,1.379-2,3.07-2,4.806c0,4.374,4.447,7.963,9.92,8H30.06c5.467-0.037,9.914-3.626,9.914-8c0-1.735-0.707-3.427-2-4.806V24 c0-1.198-0.143-2.362-0.394-3.486c1.054,0.689,1.858,1.95,2.894,2.986c2.148,2.148,4.896,2.882,6.139,1.639 C47.856,23.896,47.122,21.148,44.974,19z M30.053,40H12.901c-4.371-0.029-7.927-2.721-7.927-6c0-1.338,0.585-2.608,1.693-3.675 c0.196-0.188,0.307-0.449,0.307-0.721V24c0-7.72,6.28-14,14-14h1c7.72,0,14,6.28,14,14v5.604c0,0.271,0.111,0.532,0.307,0.721 c1.108,1.066,1.693,2.337,1.693,3.675C37.974,37.279,34.418,39.971,30.053,40z"/><ellipse cx="14.974" cy="29.5" fill="#212121" rx="2" ry="2.5"/><ellipse cx="27.974" cy="29.5" fill="#212121" rx="2" ry="2.5"/><ellipse cx="21.474" cy="32.75" fill="#212121" rx="2.5" ry="1.75"/><path fill="#ff9800" d="M27.586,39c0,0-3.699,0.57-6.112,2.015C19.061,39.57,15.362,39,15.362,39c-0.873,2.486,0,6,0,6 c2.957-0.363,5.419-1.513,6.112-1.86c0.693,0.347,3.155,1.497,6.112,1.86C27.586,45,28.459,41.486,27.586,39z"/><path fill="#212121" d="M27.586,39c0.873,2.486,0,6,0,6c-2.957-0.363-5.419-1.513-6.112-1.86 c-0.693,0.347-3.155,1.497-6.112,1.86c0,0-0.873-3.514,0-6c0,0,3.699,0.57,6.112,2.015C23.887,39.57,27.586,39,27.586,39 M27.587,36.743c-0.114,0-0.229,0.009-0.345,0.026c-0.366,0.056-3.242,0.525-5.768,1.699c-2.526-1.174-5.403-1.643-5.768-1.699 c-0.116-0.018-0.231-0.026-0.345-0.026c-0.945,0-1.807,0.595-2.128,1.509c-1.066,3.035-0.167,6.865-0.061,7.292 c0.252,1.016,1.165,1.713,2.188,1.713c0.092,0,0.184-0.006,0.277-0.017c2.429-0.298,4.528-1.05,5.837-1.614 c1.309,0.564,3.408,1.316,5.837,1.614c0.093,0.011,0.185,0.017,0.277,0.017c1.024,0,1.936-0.697,2.188-1.713 c0.106-0.427,1.005-4.257-0.061-7.292C29.394,37.338,28.532,36.743,27.587,36.743L27.587,36.743z"/><path fill="#9575cd" d="M21.474,41.015c-0.105-0.063-0.215-0.122-0.325-0.182l-2.461,3.42 c1.36-0.434,2.381-0.911,2.786-1.114c0.089,0.045,0.21,0.104,0.355,0.172l2.546-3.539C23.398,40.081,22.351,40.489,21.474,41.015z"/><path fill="#9575cd" d="M25.841,44.684l2.13-2.96c0.005-0.908-0.087-1.875-0.385-2.724c0,0-0.052,0.008-0.134,0.022 l-3.655,5.08C24.401,44.31,25.093,44.513,25.841,44.684z"/><path fill="#9575cd" d="M17.192,39.384l-2.194,3.049C15.081,43.867,15.362,45,15.362,45 c0.097-0.012,0.188-0.031,0.284-0.045l3.573-4.966C18.504,39.736,17.801,39.536,17.192,39.384z"/></svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#FFD600" d="M44.4,17.2L42.2,14c-1.2-1.5-3-1.1-4.6,0c-1.6,1.2-2.2,2.6-1.1,4.2l2.4,3.2l-5.5,3.7c-0.5,0.3-0.6,0.9-0.3,1.4c0.2,0.3,0.5,0.4,0.8,0.4c0.2,0,0.4-0.1,0.6-0.2l7.1-4.8c0.6-0.1,1.2-0.3,1.7-0.7C45,20.3,45.5,18.7,44.4,17.2z"/><path fill="#CFD8DC" d="M14,7c0,0-0.9-1-5-1s-7,3.3-7,7c0,3.8,2.2,5.2,4,7s23-4,23-4s3-0.5,3-5s-4.4-7-9-7S15.9,5.7,14,7z"/><path fill="#FFA726" d="M8 29A4 4 0 1 0 8 37A4 4 0 1 0 8 29Z"/><path fill="#37474F" d="M24,12c0,0,11,0.8,11,5s-7,5-7,5l-4-8V12z"/><path fill="#B0BEC5" d="M32,11c0-0.1,0-0.2,0-0.3c-2-0.2-5.2-0.1-8,1.3c0,0,4.3,0.3,7.6,1.6C31.8,12.9,32,12.1,32,11z"/><path fill="#FFB74D" d="M34.5,23c-1.3,0-2.6,0.4-3.6,1.1C30,23.6,29.3,22.9,29,22c-0.6-2.2,0.1-3.3-2-6c-2.8-3.6-12-3-12-3S3.8,14.6,5,24c0.6,4.9,2.5,7.9,4.1,9.7C9.1,34.2,9,34.6,9,35c0,5,5.6,9,12.5,9c6.4,0,11.8-3.5,12.4-8c0.2,0,0.4,0,0.6,0c3.6,0,6.5-2.9,6.5-6.5S38.1,23,34.5,23z M28.3,27.5C28.3,27.5,28.3,27.5,28.3,27.5L28.3,27.5C28.3,27.5,28.3,27.5,28.3,27.5z"/><path d="M25.5,20.3c-0.9,0.1-1.6,1.2-1.5,2.5c0.1,1.3,0.8,2.2,1.7,2.1c0.9-0.1,1.6-1.2,1.5-2.5C27.1,21.2,26.4,20.2,25.5,20.3z"/><path fill="#4E342E" d="M38.3,14.7c-1,0.7-1.6,1.6-1.2,2.1c0.4,0.4,1.5,0.2,2.6-0.5c1-0.7,1.6-1.6,1.2-2.1C40.5,13.8,39.4,14,38.3,14.7z"/><path fill="#3E2723" d="M26,30c-2.7,1.8-0.8,9-7,9s-4.4-6.4-7-9C14.7,25.8,22.6,29.9,26,30z"/><path fill="#FFF" d="M24.8,31.8c0.3-0.8,0.6-1.5,1.2-1.8c-3.4-0.1-11.3-4.3-14,0c0.3,0.3,0.6,0.7,0.8,1.1C15.6,28.7,21.3,31.2,24.8,31.8z"/><path fill="#FFD180" d="M34.1,26c-1.9-1.5-6.9-1.6-9.1,1.2c-0.6,0.8-1.1,1.8-0.9,2.7c0.2,1.2,1.4,2,2.5,2.5c1.4,0.5,2.9,0.7,4.3,0.6c0.8-0.1,1.6-0.2,2.2-0.7C34.6,30.8,36,27.5,34.1,26z"/><path fill="#FF1744" d="M19,33.8c0,0.1,0,0.1,0.1,0.2c0.2,0.7,0.3,1.5,0.2,2.1C19.2,36.7,19,37,19,37c0,0,0.1-0.4,0-0.9c-0.1-0.5-0.4-1.1-0.8-1.7c-0.4-0.5-0.9-1-1.3-1.3c-0.1,0-0.1-0.1-0.1-0.1C16.5,33,16.3,33,16,33c-0.9,0-1.7,0.2-2.4,0.5c0.7,2.7,1.3,5.5,5.4,5.5c1.3,0,2.2-0.3,2.9-0.8C21.7,36.3,20.6,34.7,19,33.8z"/><path fill="#263238" d="M6.9,17.2l-1.8-2.4c0.3-0.2,7.5-5.3,18.2-3.3l-0.6,2.9C13.3,12.7,6.9,17.2,6.9,17.2z"/><path fill="#FFEA00" d="M23 11A2 2 0 1 0 23 15A2 2 0 1 0 23 11Z"/><path fill="#FB8C00" d="M26,24.9c0.2,0,0.3,0,0.3,0S26.2,25,26,24.9c-0.1,0.1-0.2,0.1-0.4,0.1c-0.2,0-0.3-0.1-0.5-0.1c-0.2-0.1-0.3-0.2-0.5-0.4c-0.2-0.2-0.3-0.3-0.5-0.5c-0.3-0.4-0.5-0.9-0.6-1.4c-0.1-0.5-0.1-1.1-0.1-1.6c0.1-0.5,0.2-1,0.5-1.4c0.1-0.2,0.3-0.4,0.4-0.6c0.1-0.1,0.2-0.2,0.2-0.2c0,0,0.1-0.1,0.1-0.1c0.2-0.1,0.3-0.2,0.3-0.2c0.4-0.4,1.1-0.3,1.4,0.1s0.3,1.1-0.1,1.4c-0.1,0.1-0.1,0.1-0.2,0.1c0,0-0.1,0-0.3,0.1c0,0-0.1,0-0.2,0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.2,0.1c-0.2,0.1-0.4,0.4-0.5,0.8c-0.1,0.3-0.2,0.7-0.2,1.2c0,0.4,0,0.9,0.2,1.2c0.1,0.2,0.1,0.4,0.2,0.5c0.1,0.1,0.2,0.3,0.3,0.4C25.5,24.8,25.8,24.9,26,24.9z M22,24.9c0,0-0.2-0.1-0.4-0.3c-0.2-0.2-0.5-0.5-0.9-0.9c-0.7-0.8-1.4-2.1-2.5-3.3c-0.3-0.3-0.6-0.6-1-0.8c-0.2-0.1-0.4-0.2-0.6-0.3c-0.1,0-0.3-0.1-0.4-0.1l-0.1,0l0,0l-0.1,0l-0.1,0c-0.8,0-1.7,0.2-2.3,0.6c-0.6,0.4-1,0.8-1.2,1.2c-0.1,0.2-0.2,0.3-0.3,0.4c-0.1,0.1-0.1,0.2-0.1,0.2l0,0c0,0.1,0,0.1-0.1,0.2c-0.1,0.5,0.2,1.1,0.7,1.2c0.5,0.1,1.1-0.2,1.2-0.7c0,0,0,0,0-0.1c0,0,0-0.1,0.1-0.2c0.1-0.2,0.3-0.5,0.6-0.8c0.3-0.3,0.7-0.5,1.3-0.5l0.1,0c0,0,0.1,0,0,0l0,0l0.1,0l0.2,0c0.1,0,0.2,0,0.4,0.1c0.3,0.1,0.5,0.3,0.8,0.5c1.1,0.8,2.1,2,2.9,2.8c0.3,0.3,0.5,0.5,0.8,0.6c-0.3-0.1-0.7-0.2-1.1-0.3c-0.5-0.1-1-0.2-1.5-0.3c-0.2,0-0.4,0-0.5-0.1c-0.1,0-0.2,0-0.2,0c-0.5,0.1-0.9,0.6-0.8,1.2c0.1,0.5,0.6,0.9,1.2,0.8c0,0,0,0,0.1-0.1c0.1,0,0.2-0.1,0.4-0.2c0.3-0.1,0.8-0.3,1.3-0.4c0.7-0.2,1.3-0.3,1.7-0.3c0.2,0.1,0.3,0.1,0.3,0.1l0,0c0.1,0,0.1,0,0.2-0.1C22.2,25,22.1,24.9,22,24.9z"/></svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#81d4fa" d="M47,19l-1.5,0c-0.2,0-0.4,0-0.6,0c-2.8,0-4.5-0.5-5.6-0.8c0.5-1.7,1.9-4.9,3.8-7.4l1-1.3l-1.6-0.3 C41.5,9.1,40.6,9,39.6,9c-2.3,0-4.6,0.2-5.9,0.6C33.6,8.3,33,5.8,33,3V2h-1c-2.5,0-6.3,2.8-7.9,4c-1.7-1.6-5.6-5.1-8-5.1L16,1l-1,0 v1c0,3.1-0.5,5.7-0.8,7c-1.5-0.1-4.5,0-7.8-0.7L5,8l0.2,1.4c0.7,4.3,2.2,7.4,3.2,9c-1.6,0.5-3.6,1.7-6.4,3.8L1,23.1l1.1,0.8 c1.6,1.1,2.7,1.9,3.6,2.5c1,0.6,1,1,1.8,1.7c-2.2,2-4,3.1-4.1,3.1L2.1,32l1.4,0.9L8,35.5c-0.1,0.6-0.4,1.6-0.7,3.9L7,41c0,0,6-1,9-3 h16c0.9,0.4,4,3,6.8,3H40l-0.3-1.2c-0.4-1.7-0.6-2.7-0.7-3.3c1.4-0.9,5.4-3.4,6.4-5.5L46,30l-1.1-0.3c-1.1-0.3-2.6-1-3.4-1.6 c1.4-1.3,3.6-4.1,5-7.6L47,19z"/><path fill="#bcaaa4" d="M35 28A4 4 0 1 0 35 36 4 4 0 1 0 35 28zM13 28A4 4 0 1 0 13 36 4 4 0 1 0 13 28z"/><path fill="#d7ccc8" d="M24,11c-6.1,0-11,5.4-11,13.2v9.5C13,41.6,17.9,47,24,47s11-5.4,11-13.2v-9.5C35,16.4,30.1,11,24,11z"/><path fill="#43a047" d="M25.1,37h-5.3H19v0.9c0,1.2,0.5,2.5,1.6,2.7c0.1,1.2,0.7,2.4,1.9,2.4c1.2,0,1.8-1.2,2-2.4 c0.7-0.2,1.5-0.9,1.5-2.7V37H25.1z"/><path fill="#8d6e63" d="M17,39c-0.4,0-0.8-0.3-0.9-0.7c-0.2-0.5,0.1-1.1,0.6-1.3c0.1,0,3.2-1.1,7.3-1.1c4.1,0,7.2,1,7.3,1.1 c0.5,0.2,0.8,0.7,0.6,1.3c-0.2,0.5-0.7,0.8-1.3,0.6c0,0-2.9-0.9-6.7-0.9c-3.8,0-6.7,0.9-6.7,0.9C17.2,39,17.1,39,17,39z"/><path fill="#efebe9" d="M22,26v4.5c0,1.1,0.1,4.5,2,4.5s2-3.4,2-4.5V26H22z"/><path fill="#fafafa" d="M28.5 21A4.5 4.5 0 1 0 28.5 30A4.5 4.5 0 1 0 28.5 21Z"/><path fill="#fafafa" d="M19.5 21A4.5 4.5 0 1 0 19.5 30A4.5 4.5 0 1 0 19.5 21Z"/><g><path fill="#212121" d="M29 24A1 1 0 1 0 29 26 1 1 0 1 0 29 24zM19 25A1 1 0 1 0 19 27 1 1 0 1 0 19 25z"/></g><g><path fill="#64b5f6" d="M24,22c-1.4,0-2.6-0.3-3.7-0.6c-0.5-0.1-1.1-0.3-1.5-0.3c-1.6-0.2-2.6,0-2.6,0 c-0.5,0.1-1.1-0.2-1.2-0.7c-0.1-0.5,0.2-1,0.7-1.2c0.1,0,1.4-0.3,3.4,0c0.5,0.1,1.1,0.2,1.7,0.4c1,0.3,2,0.5,3.1,0.5 s2.1-0.3,3.1-0.5c0.6-0.2,1.2-0.3,1.7-0.4c2-0.3,3.3,0,3.4,0c0.5,0.1,0.9,0.6,0.7,1.2c-0.1,0.5-0.7,0.8-1.2,0.7c0,0-1-0.2-2.6,0 c-0.4,0.1-0.9,0.2-1.5,0.3C26.6,21.7,25.4,22,24,22z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><path fill="#ab47bc" d="M42,37.75H6c-1.105,0-2-0.895-2-2V11c0-1.105,0.895-2,2-2h9.172c0.53,0,1.039,0.211,1.414,0.586 l2.121,2.121C18.895,11.895,19.149,12,19.414,12H42c1.105,0,2,0.895,2,2v21.75C44,36.855,43.105,37.75,42,37.75z"/><path fill="#ba68c8" d="M42,39.75H6c-1.105,0-2-0.895-2-2V16c0-1.105,0.895-2,2-2h36c1.105,0,2,0.895,2,2v21.75 C44,38.855,43.105,39.75,42,39.75z"/><circle cx="24" cy="27" r="10" fill="#ffca28"/><circle cx="19.5" cy="24.5" r="8.5" fill="#ba68c8"/></svg>
|
||||
|
After Width: | Height: | Size: 590 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><path fill="#0d47a1" d="M40,12H22l-4-4H8c-2.2,0-4,1.8-4,4v8h40v-4C44,13.8,42.2,12,40,12z"/><path fill="#42a5f5" d="M40,12H8c-2.2,0-4,1.8-4,4v20c0,2.2,1.8,4,4,4h32c2.2,0,4-1.8,4-4V16C44,13.8,42.2,12,40,12z"/><circle cx="24" cy="26" r="10" fill="#ffca28"/><circle cx="19.5" cy="23.5" r="8.5" fill="#42a5f5"/></svg>
|
||||
|
After Width: | Height: | Size: 424 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#ffb74d" d="M13.06 31.978c0 0-.97-.978-1.94-.978s-1.94 1.955 0 4.888S15 37.844 15 37.844M34.94 31.978c0 0 .97-.978 1.94-.978.97 0 1.94 1.955 0 4.888S33 37.844 33 37.844"/><path fill="#ffd180" d="M35.99,23.005C33.343,19.885,29.481,15.98,29,16h-5h-5c-1.308,0.472-4.788,4.568-7,7 c-1.701,1.87-1.573,4.787-2.01,6.005l1.394,1.859c1.057,1.41,1.785,3.038,2.131,4.766l0,0c0.31,1.549,1.071,2.971,2.188,4.088l0,0 c1.297,1.297,2.773,2.393,4.37,3.287c0.269,0.167,0.533,0.341,0.809,0.494l2.374,1.314c0.462,0.256,1.005,0.256,1.467,0l2.374-1.314 c0.276-0.153,0.54-0.327,0.809-0.494l0,0c1.598-0.894,3.074-1.99,4.37-3.287l0,0c1.117-1.117,1.878-2.539,2.188-4.088l0,0 c0.346-1.728,1.074-3.356,2.131-4.766l1.394-1.859C38.023,28.338,38.091,25.481,35.99,23.005z"/><path fill="#ffd600" d="M8 10.995L3 27.995 3 44.995 3 44.995 12 17.995 11 10.995z"/><path fill="#ffd600" d="M11.5 3A5.5 5.5 0 1 0 11.5 14A5.5 5.5 0 1 0 11.5 3Z"/><path fill="#fbc02d" d="M24 22L17 17 17 21.995 24 26.995 31 21.995 31 17z"/><path fill="#ffd600" d="M40 10.995L45 27.995 45 44.995 45 44.995 36 17.995 37 10.995z"/><path fill="#ffd600" d="M36.5 3A5.5 5.5 0 1 0 36.5 14A5.5 5.5 0 1 0 36.5 3Z"/><path fill="#f4511e" d="M12 6A3 3 0 1 0 12 12 3 3 0 1 0 12 6zM36 6A3 3 0 1 0 36 12 3 3 0 1 0 36 6z"/><path fill="#37474f" d="M21,30.993l-0.01-0.996c0-0.998-1.154-1.997-2.996-1.997C14.729,28.001,14,29,14,29.999 c0,1.998,2.657,3.996,3.994,3.996c0.415,0,1.008-0.005,1.008-0.005L21,30.993z"/><path fill="#3949ab" d="M21,30.995c0-0.559,0.01-2-1.994-2s-3.006,2-3.006,3c0,1,1.002,4,3.006,4S21,32.576,21,30.995z"/><path fill="#fff" d="M19 30A1 2 0 1 0 19 34A1 2 0 1 0 19 30Z"/><path fill="#8c9eff" d="M16.276,33.313c0.182-0.194,0.437-0.318,0.724-0.318c0.552,0,1,0.448,1,1 c0,0.499-0.372,0.894-0.849,0.97C16.759,34.47,16.467,33.868,16.276,33.313z"/><g><path fill="#37474f" d="M27,30.997l0.01-0.996c0-0.998,1.154-1.997,2.996-1.997c3.265,0,3.994,0.999,3.994,1.998 c0,2-2.657,3.998-3.994,3.998c-0.415,0-1.008-0.005-1.008-0.005L27,30.997z"/><path fill="#3949ab" d="M28.994,29C26.99,29,27,30.441,27,31c0,1.581-0.01,5,1.994,5S32,33,32,32S30.998,29,28.994,29z"/><path fill="#fff" d="M29 30A1 2 0 1 0 29 34A1 2 0 1 0 29 30Z"/><path fill="#8c9eff" d="M31.724,33.318C31.542,33.124,31.287,33,31,33c-0.552,0-1,0.448-1,1c0,0.499,0.372,0.894,0.849,0.97 C31.241,34.475,31.533,33.873,31.724,33.318z"/></g><path fill="#ff7043" d="M23.757,40.858c-0.274-0.351-0.562-0.766-0.837-1.249c-0.425-0.744-0.705-1.445-0.893-2.034 c-0.004-0.008-0.065-0.136,0.012-0.255c0.048-0.073,0.132-0.124,0.235-0.124c0.461-0.107,1.077-0.204,1.805-0.196 c0.655,0.007,1.213,0.096,1.645,0.196c0.008,0,0.155,0.002,0.235,0.124c0.048,0.073,0.058,0.168,0.012,0.255 c-0.171,0.538-0.421,1.178-0.795,1.862c-0.308,0.563-0.634,1.035-0.935,1.421C24.191,40.946,24.099,41,23.999,41 C23.903,41,23.806,40.953,23.757,40.858z"/><path fill="#ffea00" d="M42,16c-1-4-6-5-6-5s-2-5-8-5c-3,0-4,1-4,1s-1-1-4-1c-6,0-8,5-8,5s-5,1-6,5c0,0-2,1-2,4c0,2,1,3,1,3 s0,0.375,0,0.521c0,1,0.75,2.688,2,3.479c0,0,0,3,5,3c-0.226-0.132-0.704-0.453-1.023-1.062c-0.482-0.92-0.245-1.816-0.185-2.021 c0.075,0.179,0.544,1.253,1.724,1.646c0.676,0.225,1.208,0.121,1.484,0.053c-0.239-0.355-0.448-0.849-0.625-1.475 c-0.411-1.454-0.064-2.703,0.125-3.245c0.05,0.22,0.266,1.057,1.072,1.63c1.064,0.756,2.259,0.415,2.407,0.37 c-0.143-0.134-0.504-0.509-0.604-1.104C16.208,23.793,16.927,23.071,17,23c0.101,0.293,0.378,0.966,1.066,1.46 c1.243,0.893,2.713,0.404,2.867,0.35C20.591,24.518,18.974,23.082,19,21c0.006-0.466,0.088-1.565,0.791-2.268 C20.523,18,21.5,18,21.5,18s2.5,0,2.5,2c0-2,2.5-2,2.5-2s0.977,0,1.709,0.732C28.912,19.435,28.994,20.534,29,21 c0.026,2.082-1.591,3.518-1.934,3.81c0.155,0.054,1.624,0.544,2.867-0.35C30.622,23.966,30.899,23.293,31,23 c0.073,0.071,0.793,0.793,0.625,1.792c-0.1,0.595-0.461,0.97-0.604,1.104c0.147,0.045,1.343,0.386,2.407-0.37 c0.806-0.573,1.023-1.41,1.072-1.63c0.189,0.542,0.536,1.791,0.125,3.245c-0.177,0.626-0.387,1.12-0.625,1.475 c0.277,0.068,0.809,0.172,1.484-0.053c1.18-0.393,1.649-1.467,1.724-1.646c0.06,0.205,0.297,1.101-0.185,2.021 C36.704,29.547,36.226,29.868,36,30c5,0,5-3,5-3c1.25-0.792,2-2.479,2-3.479C43,23.375,43,23,43,23s1-1,1-3C44,17,42,16,42,16z"/><path fill="#f4511e" d="M24 23A1 1 0 1 0 24 25A1 1 0 1 0 24 23Z"/></svg>
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#ffa726" d="M33.6 24.9c0 2.7.1 7.1 2.1 7.1s4.3-4.9 4.3-7.6S39.4 20 37.3 20 33.6 22.2 33.6 24.9zM14.4 24.9c0 2.7-.1 7.1-2.1 7.1S8 27.1 8 24.4 8.6 20 10.7 20 14.4 22.2 14.4 24.9z"/><path fill="#ffb74d" d="M24,2c-7.7,0-14,6.7-14,15.1c0,5.4,1.9,16.6,4,19.9c2.1,3.2,7.3,7,10,7s7.9-3.8,10-7 c2.1-3.3,4-14.5,4-19.9C38,8.7,31.7,2,24,2z"/><path fill="#ffe0b2" d="M33,10.1c0-1.9-1.6-3.6-3.7-4C28.9,6,28,5.9,28,6.9c0,1.9,1.6,3.6,3.7,4C32.1,11,33,11.1,33,10.1z"/><path fill="#fff" d="M35,22.2c0-1.3-4.6-1.3-4.6-1.3S27,21,27,23.5c0,1.8,2.8,2.5,4.4,2.5C33.2,26,35,24.7,35,22.2z"/><path fill="#263238" d="M31 22A1 1 0 1 0 31 24A1 1 0 1 0 31 22Z"/><path fill="#ff6d00" d="M27,34c0,0-2.3,0-3.4,0c-0.7,0-1.1,0.5-1.1,1c0,0.5,0.5,1,1.7,1C25.9,36,27,34,27,34z"/><path fill="#ff6d00" d="M22.3,35.5C21.7,35,22,34,22.8,34h1.6c0.7,0,1.1,0.5,1.1,1c0,0.5-0.5,1-1.7,1 C23.3,36,22.8,35.8,22.3,35.5z"/><path fill="#ff9100" d="M21 19h-4c-.6 0-1-.4-1-1s.4-1 1-1h4c.6 0 1 .4 1 1S21.6 19 21 19zM32 19h-4c-.6 0-1-.4-1-1s.4-1 1-1h4c.6 0 1 .4 1 1S32.6 19 32 19zM20.1 21h-1.3v2.2H21V29h2v-5.1C23 22.3 21.7 21 20.1 21z"/><path fill="#fff" d="M14,22.2c0-1.3,4.6-1.3,4.6-1.3s3.4,0,3.4,2.5c0,1.8-2.8,2.5-4.4,2.5C15.8,26,14,24.7,14,22.2z"/><path fill="#263238" d="M18 22A1 1 0 1 0 18 24A1 1 0 1 0 18 22Z"/><path fill="#ff9100" d="M24,32c-1.7,0-3-1.3-3-3c0-0.6,0.4-1,1-1s1,0.4,1,1c0,0.6,0.4,1,1,1c0.6,0,1,0.4,1,1S24.6,32,24,32z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><path fill="#f57c00" d="M43,14c0,0,0.5,4.812,1.5,7.812S44.948,27.949,43,30c-3.436,3.617,5.015,7.843-1.688,12.875 C36.255,46.672,28,42,28,42v-9L43,14z"/><polygon fill="#efad60" points="30,41 20,41 19.338,27.436 30,29"/><path fill="#ffcc80" d="M19,26c0,0,2.553,9.91,9.553,9.91C31.298,35.931,32.775,33.38,35,31 c1.494-1.598,2.917-2.691,3.319-4.298C39.319,22.702,39,21,41,18s-14-8-14-8l-8,5V26z"/><path fill="#eee" d="M28.234,21.628c0,0-0.287-4.277-4.979-3.223C23.255,23.404,28.234,21.628,28.234,21.628z"/><path fill="#efad60" d="M32.144,19.777c-0.718,0.814-1.316,2.465-0.511,4.691c0.381,1.051-0.468,1.449-1.867,1.628 c-0.905,0.116-0.854,1.029-0.231,1.101c0.654,0.112,3.718-0.335,3.184-2.753C32.319,22.641,31.473,21.851,32.144,19.777z"/><path fill="#eee" d="M33,22c0,0,1.074-3.085,5.351-1.457C37.362,23.702,34.255,23.426,33,22z"/><path fill="#e57373" d="M26.362,29.936l2.59-0.489c0.492,0.545,1.047,0.588,1.66,0.191l1.75,1.298c0,0-1,1-3,1 S26.362,29.936,26.362,29.936z"/><path fill="#7cb342" d="M17,46c0,0,8.489,5.085,17-1c0-3,0-6,0-6s-6,1-12,0S17,46,17,46z"/><path fill="#9ccc65" d="M36.309,39.644c2.106,2.666,3.064,5.027,4.596,8.356H31l-0.516-6.872 c-0.074-1.076-1.302-1.572-3.314-1.676l1.489-0.893C29.87,37.832,35.108,38.125,36.309,39.644z"/><path fill="#f57c00" d="M42,10c0,0,2,1,2,4s-3.062,5.688-9.062,4.688s-11.459-6.714-11.459-6.714S23,18,20,20 c-1,5,0.584,8.702,2.584,12.702s1.947,8.915-1.771,12.495C16.933,48.932,4.125,50.312,2,40c1.904,2.181,5.875-0.562,3.875-3.562 S2,28,9,22c1.489-9.404,5.351-18.766,15.053-21.404C32.738-1.766,42,4,42,10z"/><path fill="#b388ff" d="M21,13c0,0,3-6,11-6s11.537,4.782,11.537,4.782L42,8c0,0-3-5-10-5s-13,7-14,12 C19.074,13.745,21,13,21,13z"/><path fill="#212121" d="M23.255,18.404c0,1.222,0.306,2.021,0.755,2.558C24.122,20.986,24.237,21,24.356,21 C25.264,21,26,20.264,26,19.356c0-0.371-0.128-0.71-0.335-0.985C25.03,18.207,24.246,18.182,23.255,18.404z"/><path fill="#212121" d="M33.054,21.877c0.025,0.094,0.057,0.184,0.098,0.27c0.432,0.417,1.023,0.711,1.666,0.818 C35.493,22.819,36,22.219,36,21.5c0-0.573-0.325-1.065-0.797-1.317C33.809,20.507,33.214,21.528,33.054,21.877z"/><path fill="#212121" d="M22.952,16.282c3.879-1.539,3.83,1.245,5.984,1.915C26.303,18.915,26.878,15.803,22.952,16.282z"/><path fill="#ef6c00" d="M22.362,11.191c0,0-0.077,3.14-6.281,6.128c-3.642,1.754-4.749,5.745-5.132,8.808 c-0.23-7.047,2.681-9.191,4.749-10.264S21.366,12.877,22.362,11.191z"/><path fill="#ef6c00" d="M23.479,11.973c0,0-0.606,4.324-5.266,8.09s-3.511,9.702-3.511,9.702s0.511-5.617,3.766-8.106 S23.255,16.266,23.479,11.973z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><polygon fill="#0277bd" points="43,47 39,39 33,45"/><polygon fill="#039be5" points="31.383,39.021 39,39 36.979,47.979 32.833,47.979"/><path fill="#ffeb3b" d="M28,15.213c0,0,11-1.927,11-8.15S31.862-3.872,19.894,4.649C8.309,1.585,3.999,12.944,7.062,20.125 c-3.255,7.66,2.203,14.588,7.278,13.726C14.819,30.596,28,15.213,28,15.213z"/><polygon fill="#efad60" points="32.085,36.723 33.043,44.064 12.936,44.064 14.979,27.979"/><path fill="#ffcc80" d="M15.121,28.706c0.988,3.193,3.74,9.053,10.879,10.232c3.543,0.574,8.83-0.203,9.5-2.118 S37.989,26,37.989,24.851c0-1.149-3.543-4.117-2.681-6.511s-0.479-6.032-0.479-6.032c-4.561,2.895-9.619,3.296-15.128,1.436 c-0.492,2.119-1.553,3.712-4.213,3.83c1.912,2.855,1.497,5.657-0.383,8.426c-0.072-1.523-0.605-2.767-1.915-3.543 c0,0-2.202-0.766-2.872,0.957s0.479,6.223,2.585,6.894C15.011,30.979,14.915,29.543,15.121,28.706z"/><path fill="#eee" d="M21.17,21h4.388c0,0,1.823-3.443-0.912-3.5C21.905,17.443,21.186,20.255,21.17,21z"/><path fill="#efad60" d="M30.043,19.809c0,0,0,3,2.553,4.34c-0.638,1.596-1.404,2.234-1.404,2.234s2.426-0.766,3-2.681 C31.957,23.064,30.043,19.809,30.043,19.809z"/><polygon fill="#ff5722" points="23.021,42.851 30.362,44 32.66,40.745 34.702,40.681 37.104,47.979 26.021,47.958"/><path fill="#efad60" d="M33.936,28.633l0.048,2.16l1.101-0.048l-1.468,3.543l0.016-1.537c0,0-6.878,1.787-9.846-2.761 C26.372,28.984,33.936,28.633,33.936,28.633z"/><path fill="#efad60" d="M35.404,27.819l-2.441,1.963l-9.91,0.335C23.053,30.117,27.888,26.239,35.404,27.819z"/><path fill="#eee" d="M33,29v2c0,0-6,2-8-1C28,29,33,29,33,29z"/><path fill="#212121" d="M22.5,19c-0.287,0-0.552,0.085-0.78,0.224c-0.397,0.712-0.543,1.446-0.55,1.776h2.738 C23.964,20.843,24,20.676,24,20.5C24,19.672,23.328,19,22.5,19z"/><path fill="#eee" d="M31.17,21h3.388c0,0,0.903-2.891-0.398-3.298C32.117,17.064,31.186,20.255,31.17,21z"/><path fill="#212121" d="M32.5,19c-0.287,0-0.552,0.085-0.78,0.224c-0.397,0.712-0.543,1.446-0.55,1.776h2.738 C33.964,20.843,34,20.676,34,20.5C34,19.672,33.328,19,32.5,19z"/><path fill="#212121" d="M26,16c0,0-3-1-6,3C21,16,23,14,26,16z"/><path fill="#212121" d="M32,15c0,0,3.064,0,3.532,2C35,14,33,14,32,15z"/><polygon fill="#efad60" points="31,25 29,26 30,24"/><polygon fill="#0277bd" points="26,48 21.298,39.34 13,45"/><polygon fill="#039be5" points="12,36 7.723,43.447 17,48 21.298,39.34"/></svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><polygon fill="#efad60" points="22,40 21,48 27,48 28,41"/><path fill="#ffcc80" d="M19,22c0,0-5,0-5,7c0,2,1,6,5,5c1,7,4.094,12.22,12,11c6.479-1,7.311-5.326,6.957-8.468 C37.574,33.128,35.947,19.968,38,13c1.788-6.067-9-7-9-7l-9,9L19,22z"/><path fill="#a07416" d="M15,11c0,0-8-2-9,16c2-3,3-3,3-3S6.505,38.777,21.25,40.84c-1.771-4.069-1.58-7.66-1.58-7.66 S15,34,15,28c0-2,1-4,1-4s1,5,4,7c3-5,1-15,1-15s8-2,10-5c0,4-1,5-1,5s4.723-0.362,7.862-2.681C36,17,37,28,37,28s6-7,3-15 c8-6-3-13-9-13S15,4,15,11z"/><path fill="#efad60" d="M23.117,29.973c0,0,2.25,3.207,5.266,2.585c3.016-0.622,4.644-0.431,5.697-0.239 s1.484-0.239,2.106-1.245c0.79,1.891-1.436,2.92-2.202,2.872c-1.29-0.081-3.29,0.302-5.41,0.814 C26.396,35.287,23.309,33.779,23.117,29.973z"/><path fill="#efad60" d="M26.521,27.149C27.043,28.426,28.382,30.221,32,30c2.437-0.149,3.564-2.851,2.734-4.479 c-0.764-1.498-3-2.872-3.096-4.691c-0.083-1.58,0.527-2.824,0.527-2.824s-1.436,1.484-1.484,3.303s1.75,3.428,2.138,4.564 C33.681,28.394,29.277,29.064,26.521,27.149z"/><path d="M28.91,15.851c-0.718-1.005-4.117-2.681-5.601,2.681C25.223,16.043,27.138,15.612,28.91,15.851z"/><path d="M35.755,17.718c0,0-1.053-1.388-3.207-0.574C33.745,14.894,35.66,15.612,35.755,17.718z"/><circle cx="27" cy="21" r="1"/><circle cx="34" cy="21" r="1"/></svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><path fill="#f57c00" d="M13.676,29.447c0,0-3.112,0.573-2.872,5.248s9.144,13.263,17.665,13.263s7.707-6.966,7.707-6.966 s5.84-5.248,0.431-7.443C31.197,31.355,13.676,29.447,13.676,29.447z"/><path fill="#5a2227" d="M19.707,30.548c-5.601,4.979-15.511,4.739-15.511-10.723S18.559,0.005,24.207,0.005 s21.399,3.351,16.995,17.33c4.835,4.309,2.965,11.207-2.441,11.824C35.051,29.584,23.489,30.309,19.707,30.548z"/><path fill="#ffcc80" d="M13.053,25.904c0.426,1.277,1.628,3.686,6.606,3.112c-0.574,1.628-1.819,2.968-3.372,3.747 C19.462,35.661,23.748,38.078,29,38c4.999-0.074,11-5,11-11c0-0.6-0.36-1.56-1.08-2.664c-1.129-1.732-1.592-3.813-1.143-5.832 l0.553-2.893c-1.488,0.541-3.022,0.564-4.596,0.148c-2.514,1.283-4.87,1.316-7.084,0.227c-3.502,1.295-6.661,1.653-9.193,0.295 c-2.25,2.968-3.255,8.043,0.718,9.814C16.476,26.711,14.767,26.544,13.053,25.904z"/><rect width="18" height="2" x="15" y="19" fill="#039be5"/><path fill="#039be5" d="M19,19c-0.283,2.673-0.066,5.071,1,7c2.518,0.403,5.199,0.363,8,0c0.449-2.375,0.416-4.706,0-7 C24.911,18.191,21.909,18.177,19,19z"/><path fill="#039be5" d="M31,19l1,7c2.711,0.059,5.277-0.083,7.383-0.862C39.923,23.244,40.091,21.181,40,19 C37.138,18.132,34.121,18.237,31,19z"/><path fill="#efad60" d="M30.144,23.798c0,0,1.101,0.67,2.011,0.67c0.91,0,1.723,1.58-0.622,3.543 c0.574-1.436,0.527-2.346-0.287-2.633C30.431,25.09,30.144,23.798,30.144,23.798z"/><circle cx="24" cy="22" r="1"/><circle cx="35" cy="22" r="1"/><path fill="#efad60" d="M22.628,29.854l0.796-0.839c0.031,0.031,0.774,1.273,2.554,0.737 c2.534-0.761,4.784-0.441,5.992-0.048c0.974,0.317,1.445-0.53,1.905-1.114l0.817,0.569c-0.479,1.404-1.819,2.992-3.55,2.365 c-0.439-0.159-2.179-0.582-4.588,0.144C23.479,32.592,22.664,29.893,22.628,29.854z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><path fill="#b0720c" d="M40,12c-2-1-4.47-1.265-7,0c-2.615,1.308-4.262-0.847-5-2c-1.558-2.433-3.647-2.958-7-2 c-7,2-9.75,8.875-10.75,15.875S14,48,14,48h20c0,0-0.482-4.809-2.443-12.756c0.667-0.657,1.227-1.469,1.641-2.397 C34.818,32.464,36,31.342,36,30c0-0.097-0.026-0.188-0.038-0.283C38.723,30.321,38.045,26.977,42,25C46,23,42,13,40,12z"/><path fill="#b0720c" d="M13,17c0,0-6.313-5-3-9c-1-4,0.001-7.946,2-8c1.58-0.043,2,5,2,5s5,2,1,8C15,16,13,17,13,17z"/><path fill="#b0720c" d="M25,0c-1,0-2,2-4,3c-1.789,0.894,1,4-1,6c3-1,6,1,6,1s3.452-3.973-0.548-5.973 C27.223,1.872,27,0,25,0z"/><path fill="#6d4408" d="M20,19c0,0-1.354,4.922,1.862,5.245c1.526,0.153,2.202-2.074,3.287-1.883 c1.085,0.191-0.574,6.191,3.574,7.34c4.149,1.149,11.043-2.234,11.234-8.617c-1.021-0.064-1.34-0.064-1.34-0.064 s-0.766,7.297-8.745,7.213c-4.533-0.048-1.915-6.511-4.277-7.053c-2.152-0.494-2.33,1.532-3.638,1.532C19.722,22.713,20,19,20,19z"/><path fill="#6d4408" d="M19.34,26.128C21,36.755,29.266,38.766,31.66,32.702c0.702-0.128,1.213,0.319,1.213,0.319 C32.362,37.713,20.394,43.17,19.34,26.128z"/><path fill="#6d4408" d="M28.085,31.745c0,0,2.809,2.745,5.936,1.851s1.755-5.872,1.755-5.872l-1.564,0.574 c0,0,1.34,3.383-0.766,4.085C31.34,33.085,28.085,31.745,28.085,31.745z"/><path fill="#eee" d="M22.738,10c-1.334,0-3.602,2.05-3.735,4.237c-0.133,2.187,4.341,2.914,4.935-1.23 C24.272,10.683,23.164,9.991,22.738,10z"/><path fill="#eee" d="M26.777,10.473c1.067,0,2.114,1.367,2.221,3.116c0.107,1.749-2.612,2.449-3.088-0.866 C25.643,10.865,26.435,10.466,26.777,10.473z"/><path fill="#ffccbc" d="M12.096,2.064c-0.075,0.86-0.766,8.043,0.144,10.245s3.16,1.676,4.069-0.862 c0.91-2.537,0.287-5.17-2.25-6.559c-0.048-1.053-0.239-1.628-0.431-3.064S12.335-0.665,12.096,2.064z"/><path fill="#ffccbc" d="M25.213,2.351c-2.298,0.527-3.064,2.968-2.059,4.5s2.872-0.191,2.011-1.676 S25.213,2.351,25.213,2.351z"/><circle cx="23" cy="13" r="1"/><circle cx="27" cy="13" r="1"/><path fill="#6d4408" d="M34.524,28.035c0,0,1.029,2.418,2.657,1.699c1.628-0.718,1.819-2.729,3.136-3.566 c-1.963,1.005-2.585,2.106-3.351,2.25c-0.766,0.144-1.101-0.91-1.101-0.91L34.524,28.035z"/><path fill="#212121" d="M40,22c-2.121,0.707-8-2-8-5s3-6,6-6s6,1,6,3S43,21,40,22z"/><path d="M23.154,8.479c0,0-2.649-0.335-4.324,2.394C19.085,6.819,22.245,6.755,23.154,8.479z"/><rect width="26" height="4" x="10" y="44" fill="#26c6da"/></svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><path fill="#7cb342" d="M35.733,14C33.193,9.017,29.891,6,24,6s-9.429,2.917-11.733,8C10.723,17.404,8,26.148,8,31 c0,8.284,7.163,15,16,15s16-6.716,16-15C40,25.298,38.184,18.809,35.733,14z"/><path fill="#7cb342" d="M12.133,16.479L8.851,13.91C7.718,13.037,7.777,9,6,9c-2.771,0-3.92,7-2.005,7.287 c1.263,0.096,2.186-0.415,3.287,0.303l3.75,2.713L12.133,16.479z"/><ellipse cx="23.899" cy="26.968" fill="#9ccc65" rx="5.314" ry="3.543"/><path fill="#689f38" d="M21.99,18.255c0.216,2.34-3.215,5.255-5.973,5.255S12,21.605,12,19.255S14.236,15,16.995,15 S21.782,16,21.99,18.255z"/><path fill="#689f38" d="M25.01,18.255c-0.216,2.34,3.215,5.255,5.973,5.255S35,21.605,35,19.255S32.764,15,30.005,15 S25.218,16,25.01,18.255z"/><path fill="#9ccc65" d="M16.766,28.261C17.033,29.092,18,30,19.83,29.17c1.963-2.777,0.287-3.734-1.245-3.734 C17.053,25.436,16.335,27.207,16.766,28.261z"/><path fill="#9ccc65" d="M31.235,28.261c-0.268,0.832-1.234,1.739-3.064,0.91c-1.963-2.777-0.287-3.734,1.245-3.734 C30.948,25.436,31.666,27.207,31.235,28.261z"/><path fill="#eee" d="M14,20.87c1-1.87,4-2.87,6,0C17.6,22.827,15.2,21.849,14,20.87z"/><circle cx="17" cy="21" r="1" fill="#795548"/><path fill="#eee" d="M27,20.87c1-1.87,4-2.87,6,0C30.6,22.827,28.2,21.849,27,20.87z"/><circle cx="30" cy="21" r="1" fill="#795548"/><path fill="none" stroke="#558b2f" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M14,32c0,0,3,4,10,4 s10-4,10-4"/><path fill="none" stroke="#795548" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M26,16 c0,0,3.437-2.556,8-0.798"/><path fill="none" stroke="#795548" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M21.766,16 c0,0-3.336-2.556-7.766-0.798"/><ellipse cx="5.287" cy="12.723" fill="#689f38" rx="2.075" ry=".83" transform="rotate(-72.95 5.287 12.724)"/><path fill="#7cb342" d="M36.154,16.784l3.282-2.569c1.133-0.872,1.074-4.91,2.851-4.91c2.771,0,3.92,7,2.005,7.287 c-1.263,0.096-2.186-0.415-3.287,0.303l-3.75,2.713L36.154,16.784z"/><ellipse cx="43" cy="13.028" fill="#689f38" rx=".83" ry="2.075" transform="rotate(-17.05 43.006 13.03)"/><path fill="#9ccc65" d="M29.726,41.452C28.962,40.031,26.688,39,24,39s-4.962,1.031-5.726,2.452 C22.936,40.17,25.362,40.457,29.726,41.452z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#e0e0e0" d="M41,31.25V33H7v-1.75c0,0,0-4.25,1.62-8.1c0.96-2.29,3.32-5.72,5.83-11.47 c0.63-1.41,1.26-2.97,1.88-4.68h15.34c0.62,1.71,1.25,3.27,1.88,4.68c2.51,5.75,4.87,9.18,5.83,11.47C41,27,41,31.25,41,31.25z"/><path fill="#bdbdbd" d="M16,9c0,3.5,1.25,9,8,9s8-5.5,8-9H16z"/><path fill="#eee" d="M24 2A8 7 0 1 0 24 16A8 7 0 1 0 24 2Z"/><path fill="#42a5f5" d="M10,33c0,0-0.352-0.516-1-1c-0.689-0.515-1.711-1-3-1c-2,0-4,1.13-4,4c0,3.5,3,8,9.5,8 c2.5,0,3.5-1,3.5-1L10,33z"/><path fill="#1e88e5" d="M10,36c0,0-1.145-2-3-2c-1.399,0-2,1-2,2c0,1.625,1.375,3.125,3,4c0,0-1-0.75-1-2.25 C7,36.375,8.125,36,9.125,36C10,36,10,36,10,36z"/><path fill="#42a5f5" d="M38,33c0,0,0.352-0.516,1-1c0.689-0.515,1.711-1,3-1c2,0,4,1.13,4,4c0,3.5-3,8-9.5,8 C34,43,33,42,33,42L38,33z"/><path fill="#1e88e5" d="M38,36c0,0,1.145-2,3-2c1.399,0,2,1,2,2c0,1.625-1.375,3.125-3,4c0,0,1-0.75,1-2.25 c0-1.375-1.125-1.75-2.125-1.75C38,36,38,36,38,36z"/><path fill="#64b5f6" d="M34.781,41.973c0,0-4.219,4.027-10.781,4.027S9,42,9,32c0,0,2.813-12,15-12 c8.821,0,15,6.084,15,12.519S34.781,41.973,34.781,41.973z"/><path fill="#455a64" d="M24,41c-5.739,0-8-3-8-3s2,5,8,5s8-5,8-5S29.739,41,24,41z"/><path fill="#fff" d="M28.5,26c-2.485,0-4.5,2.015-4.5,4.5c0-2.485-2.015-4.5-4.5-4.5S15,28.015,15,30.5s2.015,4.5,4.5,4.5 c1.328,0,7.672,0,9,0c2.485,0,4.5-2.015,4.5-4.5S30.985,26,28.5,26z"/><path fill="#263238" d="M20 29A2 2 0 1 0 20 33A2 2 0 1 0 20 29Z"/><path fill="#455a64" d="M14 26c0 0 2-4 8-5 0 0-.889-1-2.921-1C14 20 14 26 14 26zM34 26c0 0-2-4-8-5 0 0 .889-1 2.921-1C34 20 34 26 34 26z"/><path fill="#263238" d="M28 29A2 2 0 1 0 28 33A2 2 0 1 0 28 29Z"/><path fill="#90caf9" d="M24 31A5 4 0 1 0 24 39A5 4 0 1 0 24 31Z"/><path fill="#fff" d="M21 28A1 1 0 1 0 21 30 1 1 0 1 0 21 28zM29.125 28A1 1 0 1 0 29.125 30 1 1 0 1 0 29.125 28z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><path fill="#212121" d="M17,37L0,32c0,0,5-3,9-3c-2-2-9-4-9-4s4-4,11-4c0,0-4-3-8-4c2-1,4-2,7-2c0,0-3-6-10-8c6-3,17-2,22,4 c0,0,1-7-3-11c8,1,14,7,13,14c4,0,6,4,6,4l10-3l-5,6l5,2l-9,7l8,2l-9,4l3,3c0,0-5,0-9,2S17,37,17,37z"/><path fill="#ffdbd0" d="M25,22.124V22l-0.808,0.062L23.383,22l0.005,0.124L12,23l3.824,18.165 c0.113,0.537,0.423,1.011,0.87,1.33l5.881,4.201C22.851,46.894,23.183,47,23.522,47h0.861h0.478H25v-0.022 c0.289-0.025,0.57-0.112,0.808-0.282l5.881-4.201c0.446-0.319,0.757-0.794,0.87-1.33L36.383,23L25,22.124z"/><polygon fill="#f5e9e8" points="18,32 17,33 18,37 22,37 22,35"/><circle cx="21" cy="35" r="1" fill="#212121"/><polygon fill="#37474f" points="23,35 22,35 17,32 15,33 16,30 18,31"/><polygon fill="#f5e9e8" points="30,32 31,33 30,37 26,37 26,35"/><circle cx="27" cy="35" r="1" fill="#212121"/><polygon fill="#37474f" points="25,35 26,35 31,32 33,33 32,30 30,31"/><path fill="#ffdbd0" d="M15,33l-2.221-3.495C12.085,28.859,10.96,29.194,11,31v3.892c0,0.687,0.361,1.325,0.95,1.678L16,39 L15,33z"/><polygon fill="#ffad93" points="13,34 13,36 14,37 15.021,36.926 14.16,33.096" opacity=".5"/><polygon fill="#ffad93" points="13,32 12,31 12,33" opacity=".5"/><path fill="#ffdbd0" d="M34,33l2.221-3.495C36.915,28.859,38.04,29.194,38,31v3.892c0,0.687-0.361,1.325-0.95,1.678L33,39 L34,33z"/><polygon fill="#ffad93" points="36,34 36,36 35,37 33.979,36.926 34.84,33.096" opacity=".5"/><polygon fill="#ffad93" points="36,32 37,31 37,33" opacity=".5"/><path fill="#212121" d="M38,28l-4,5c0,0,0-2-1-6c0,0-5,4-8,6c2-4,1-8,1-8s-5,3-6,7c-2-3-1-7-1-7s-3,4-3,9c-3-1-8-12-1-16 s17-3,21,1C38,21,38,28,38,28z"/><path fill="#ffbca7" d="M22.053,39h4c0,0-1,2-2,2S22.053,39,22.053,39z"/><path fill="#ffbca7" d="M26,37h6c0,0-1.5,2-3,2S26,37,26,37z"/><path fill="#ffbca7" d="M16.053,37H22c0,0-1.487,2-2.973,2S16.053,37,16.053,37z"/><rect width="4" height="2" x="22" y="42" fill="#ffbca7"/><path fill="#37474f" d="M23.255,14.681l-3.702,1.213c0,0-5.723-9.681-19.553-8.894C9.723,3.383,19.489,8.426,23.255,14.681z"/><path fill="#37474f" d="M29.176,23.043c0,0-8.106,4.319-9.176,8.957c-1.787-6.181,7.404-11.207,7.404-11.207L29.176,23.043z"/><path fill="#37474f" d="M34.824,25.676c0,0-8.351,6.846-9.824,7.324c5.612-4.452,8.388-9.527,8.388-9.527L34.824,25.676z"/><path fill="#37474f" d="M15.005,21.271l-1.723,3.399c0,0-4.064-1.973-13.282,0.33C3.42,21.702,9.979,20.074,15.005,21.271z"/><path fill="#37474f" d="M28.41,14.33c0,0,1.431-10.995-9.41-14.33c7.59,0.303,14.197,7.112,13,14 C31.09,14.138,28.41,14.33,28.41,14.33z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><rect width="32" height="26.486" x="8" y="3" fill="#ffd54f"/><rect width="32" height="7.843" x="8" y="29" fill="#e0e0e0"/><polygon fill="#bf360c" points="40,36 8,36 8,44 14.4,44 22.4,44 25.6,44 33.6,44 40,44"/><polygon fill="#f44336" points="21,29 27,29 24,32"/><polygon fill="#f44336" points="24,31 21,35 24,41 27,35"/><path fill="#3e2723" d="M32,22.806C32,21.256,30.806,20,29.333,20H18.667C17.194,20,16,21.256,16,22.806 c0,0.234,0.035,0.458,0.087,0.675c0.31,1.714,2.516,3.533,5.247,3.533c1.333,0,1.374,0,2.667,0c1.087,0,1.794,0,2.667,0 c2.667,0,4.919-1.721,5.247-3.533C31.965,23.264,32,23.04,32,22.806z"/><polygon fill="#fff" points="18,29 21,32 24,29"/><polygon fill="#fff" points="24,29 27,32 30,29"/><circle cx="18.5" cy="12.5" r="5.5" fill="#fff"/><circle cx="29.5" cy="12.5" r="5.5" fill="#fff"/><circle cx="18.5" cy="12.5" r="2.5" fill="#0288d1"/><path fill="#ff1744" d="M25.5,24c-0.828,0-1.5,0.675-1.5,1.507C24,24.675,23.328,24,22.5,24S21,24.675,21,25.507v1.507h1.5h3 H27v-1.507C27,24.675,26.328,24,25.5,24z"/><rect width="6" height="2" x="31" y="39" fill="#1a1a1a"/><rect width="6" height="2" x="11" y="39" fill="#1a1a1a"/><path fill="#ffab40" d="M10.98,8.5C10.98,6.416,9.732,4.66,8,4v9C9.732,12.34,10.98,10.584,10.98,8.5z"/><path fill="#ffab40" d="M37.793,24.507c0,1.385,0.988,2.507,2.207,2.507V22C38.781,22,37.793,23.122,37.793,24.507z"/><path fill="#ffab40" d="M24,12L24,12c-1.105,0-2,0.895-2,2v4h4v-4C26,12.895,25.105,12,24,12z"/><circle cx="18.5" cy="12.5" r=".5" fill="#1a1a1a"/><circle cx="29.5" cy="12.5" r="2.5" fill="#0288d1"/><circle cx="29.5" cy="12.5" r=".5" fill="#1a1a1a"/><circle cx="36.5" cy="6.5" r="1.5" fill="#ffab40"/><circle cx="36" cy="20" r="2" fill="#fff59d"/><circle cx="12" cy="20" r="2" fill="#fff59d"/><rect width="2" height="2" x="21" y="20" fill="#fff"/><rect width="2" height="2" x="25" y="20" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px" baseProfile="basic"><path fill="#3a8ad3" d="M23.97,37c3.002-0.007,8.026-0.125,11.466-4.052c2.269-2.59,2.42-9.412-1.911-13.554 c-1.855-1.773-3.44-3.603-9.555-3.765c-4.331-0.114-7.7,2.028-9.555,3.801c-4.331,4.141-4.037,10.849-1.911,13.554 C15.562,36.875,20.971,37.007,23.97,37z"/><path fill="#3a8ad3" d="M35.865,31.75c0,0-0.25-10.75,2.625-12.5L40.25,26l1.625,1.625 C41.875,27.625,40.615,30.875,35.865,31.75z"/><path fill="#fe9acc" d="M41.74,25.75c0,0-0.625,0.125-0.375,0.75c0.111,0.278,0.296,0.654,0.468,0.987 c-2.344,2.028-4.718,2.763-4.718,2.763s2.125-6.25,1.375-11S37.86,6.955,40.615,6.125c1.245-0.375,6,1.875,5.75,11.625 c-0.09,3.513-1.321,6.106-2.853,8H41.74z"/><path fill="#3a8ad3" d="M12.37,31.75c0,0,0.25-10.75-2.625-12.5L8,24.75L6.375,27.5C6.375,27.5,7.62,30.875,12.37,31.75z"/><path fill="#82cdec" d="M19.875,27.875c0-1.488,0.08-2.975,0-4.463c-0.082-1.51-0.5-3.412-2.122-3.729 c-1.017-0.199-1.898-0.038-2.753,0.567c-1.778,1.259-2.404,3.795-2.523,5.817c-0.375,6.375,3.898,6.433,3.898,6.433 S19.875,32.762,19.875,27.875z"/><path fill="#1853b2" d="M26.659,25.084c0,0-1.247-0.496-2.659-0.459c-1.412-0.015-2.659,0.5-2.659,0.5 s0.206-0.258,0.654-0.55c0.441-0.292,1.16-0.593,1.996-0.597c0.836-0.011,1.559,0.282,2.005,0.566 C26.449,24.83,26.659,25.084,26.659,25.084z"/><ellipse cx="24" cy="29.438" fill="#212121" rx="3.625" ry="3.567"/><ellipse cx="16.382" cy="27.75" fill="#212121" rx="2.813" ry="3.75"/><circle cx="16.819" cy="26" r="1" fill="#fff"/><path fill="#fe9acc" d="M6.495,25.75c0,0,0.625,0.125,0.375,0.75c-0.111,0.278-0.296,0.654-0.468,0.987 c2.344,2.028,4.718,2.763,4.718,2.763s-2.125-6.25-1.375-11S10.375,6.955,7.62,6.125C6.375,5.75,1.62,8,1.87,17.75 c0.09,3.513,1.321,6.106,2.853,8H6.495z"/><path fill="#212121" d="M33.25,33.118c0,0,0.125,0.257-0.625,0.757c-0.5,0.375-4.563,1.743-8.563,1.618 c-5.375,0-7.683-1.377-8.036-1.535c-0.341-0.155-0.588-0.365-0.756-0.554c-0.336-0.386-0.396-0.662-0.396-0.662 s0.242,0.23,0.625,0.507c0.19,0.136,0.562,0.303,0.875,0.375C16.675,33.695,21.4,34.5,24,34.5c2.638,0.02,7.822-0.645,8.25-0.875 C33,33.375,33.25,33.118,33.25,33.118z"/><path fill="#1853b2" d="M18.625,19.014c-0.017,0.047-0.724-0.59-1.5-0.639c-0.831-0.053-1.75,0.264-1.75,0.264 s0.132-0.175,0.41-0.391c0.271-0.213,0.726-0.478,1.33-0.455c0.616,0.026,1.066,0.43,1.245,0.72 C18.555,18.81,18.625,19.014,18.625,19.014z"/><path fill="#1853b2" d="M29.625,19.084c0.011,0.005,0.003-0.234,0.192-0.582c0.172-0.34,0.72-0.764,1.373-0.708 c0.639,0.047,1.092,0.394,1.343,0.667c0.256,0.281,0.342,0.498,0.342,0.498s-0.901-0.675-1.625-0.584 c-0.433-0.032-0.902,0.173-1.184,0.354c-0.131,0.095-0.249,0.179-0.319,0.25C29.67,19.045,29.625,19.084,29.625,19.084z"/><rect width="1" height="2.25" x="23.5" y="32.625" fill="#212121"/><path fill="#82cdec" d="M28.204,27.873c0-1.488-0.08-2.975,0-4.463c0.082-1.51,0.5-3.412,2.122-3.729 c1.017-0.199,1.898-0.038,2.753,0.567c1.778,1.259,2.404,3.795,2.523,5.817c0.375,6.375-3.898,6.433-3.898,6.433 S28.204,32.76,28.204,27.873z"/><ellipse cx="31.697" cy="27.747" fill="#212121" rx="2.813" ry="3.75"/><circle cx="31.259" cy="25.997" r="1" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 6.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><polyline fill="#212121" points="7,18 7,27.878 39.972,27.878 39.972,18 7.367,17.92"/><path fill="#ffbca7" d="M37,23h2.012C40.11,23,41,23.89,41,24.988l0,0c0,1.59-0.745,4.703-1.211,5.831 c-0.539,1.306-0.848,2.12-1.453,2.651S36,34,36,34L37,23z"/><path fill="#ffad93" d="M37,29c0-4.375,3-4,3-4s-1,0.5-1,4c0,2-1.125,2-1.125,2S37,31,37,29z" opacity=".5"/><path fill="#ffbca7" d="M11,35c0,0-1.731,0.001-2.336-0.53s-0.914-1.345-1.453-2.651C6.745,30.691,6,27.578,6,25.988l0,0 C6,24.89,6.89,24,7.988,24H10L11,35z"/><path fill="#ffad93" d="M9.125,32C9.125,32,8,32,8,30c0-3.5-1-4-1-4s3-0.375,3,4C10,32,9.125,32,9.125,32z" opacity=".5"/><path fill="#ffdbd0" d="M24,13H10v18.377c0,2.106,0.771,3.799,2,5.623c2.007,2.979,5.663,7.586,12,10 c6.337-2.414,9.993-7.021,12-10c1.229-1.824,2-3.517,2-5.623V13H24z"/><path fill="#ffbca7" d="M22,34h4c0,0-1,2-2,2S22,34,22,34z"/><rect width="6" height="2" x="21" y="39" fill="#ffbca7"/><path fill="#f5e9e8" d="M19.687,27.2L19.687,27.2c-1.051-0.788-2.277-1.313-3.573-1.529L12.087,25c0,0-0.087,4,3.913,4h3.087 C20.048,29,20.456,27.777,19.687,27.2z"/><path fill="#212121" d="M23.5,1.5C14.387,1.5,7,8.887,7,18l3,12c0,0,0-7,2-9l1,3l2.919-7.784l0.017-0.003 C15.678,17.231,15.081,21.84,23,28c0,0,6-4,6-10c0,0,4,2,3,7c0,0,2-1,2-5c0,0,3,2,4,11l2-13C40,8.887,32.613,1.5,23.5,1.5z"/><circle cx="16" cy="27" r="2" fill="#0277bd"/><circle cx="16" cy="27" r="1" fill="#212121"/><path fill="#212121" d="M20.089,27.936c0,0-1.002-1.936-8.002-2.936C12.087,25,20.087,23,20.089,27.936z"/><path fill="#f5e9e8" d="M26.489,27.2L26.489,27.2c1.051-0.788,2.277-1.313,3.573-1.529L34.089,25c0,0,0.087,4-3.913,4h-3.087 C26.128,29,25.72,27.777,26.489,27.2z"/><circle cx="30.176" cy="27" r="2" fill="#0277bd"/><circle cx="30.176" cy="27" r="1" fill="#212121"/><path fill="#212121" d="M26.087,27.936c0,0,1.002-1.936,8.002-2.936C34.089,25,26.089,23,26.087,27.936z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#ffcdd2" d="M10.894,4c0,0,4,4,5,11l4-1C19.894,14,16.894,7,10.894,4z"/><path fill="#ffcdd2" d="M32.894,29c0,0,10.36-1.093,9-11c-0.335-2.441-1.638-8.568,3-10c0,0-13.298,1-14.149,12L32.894,29z"/><path fill="#757575" d="M40.894,10l6-3c0,0-11,0-17,6c0,0-6-3.674-6-6c0,3,2.63,4.361,3,5c-0.257-0.311-1.437-1.205-7-2 c0,0-2.936-4.861-9-6c0,0,6,5,6,9c0,0-3,1-5,4s-1,8-1,8s-4,0-8,8c0,0,1.493,0.167,3.457,0.43c-1.451,0.782-1.457,1.666-1.457,1.666 s2.305-1.157,5-1.096c0.982,0.022,2,0,3,1c-1.984,1.55-4,4-5,7h27c0,0,0-3-3-5c1,0,2.6-0.201,3-1c0,0-2.393-0.337-3.412-1.541 c4.53-0.364,8.425-0.27,9.412,0.541c0,0-2-3-8-8c-0.692-0.577-2-3,2-3c-0.462-0.222-3-2,1-2c0,0-1-1-2-1c0,0,1-1,1-2 c0,0-1.586,2-3,2c-1,0-1-2,2-6C35.591,12.737,35.894,12,40.894,10z M20.894,11c0,0,0,0,4,1h-3C21.894,12,20.54,11,20.894,11z"/><path fill="#cfd8dc" d="M11.894,28c0,0-0.191-9,2.405-9c0,0,0.383,0,0.489,1c0,0,1.593-5.176,2.106-3c0.172,0.73,0,3,0,3 s1-2,2,0l-1,8H11.894z"/><path fill="#fff59d" d="M16.286,27.565c0,0-0.682-7.833,3.919-9.349C23.894,17,21.894,21,20.894,23 c-0.572,1.143-2,4.705-2,4.705L16.286,27.565z"/><path fill="#fff59d" d="M10.247,27.347c0,0-0.354-7.347,2.299-9.528c0.868-0.714,1.691-1.352,0.669,4.445 c-0.238,1.35-0.669,5.441-0.669,5.441L10.247,27.347z"/><path fill="#8bc34a" d="M10.247,27.347c0,0-0.133-5.347,0.867-5.347s0.928,5.952,0.928,5.952L10.247,27.347z"/><path fill="#8bc34a" d="M16.286,27.565c0,0-0.275-4.766,1.192-5.656C19.058,20.951,18.154,28,18.154,28L16.286,27.565z"/><path fill="#212121" d="M10.232,27.251c0,0-0.015-1.247,0.047-2.397c0.061-1.15,0.769-0.875,0.852,0.146 c0.066,0.813,0.147,2.952,0.147,2.952L10.232,27.251z"/><path fill="#212121" d="M16.242,27.604c0,0-0.175-2.277,0.364-3.577c0.104-0.252,0.727-1.27,0.738,0.71 c0.013,2.218-0.227,3.219-0.227,3.219L16.242,27.604z"/><path fill="#fff" d="M20.204,30.227c0,0,3.69-6.227-7.31-2.227c-0.732-0.585-0.72-1-2-1c-2.209,0-3,0.619-3,2c0,2,3,3,5,4 c1.118,0.559,2,3,2,4.4c0,1.326,1.343,2.4,3,2.4c1.046,0,1.832-0.567,2.501-1.078C27.894,33,27.894,30,27.894,30 S22.34,31.83,20.204,30.227z"/><path fill="#212121" d="M12.755,27h2.265c0.637,0,1.135,0.591,0.98,1.209c-0.139,0.554-0.584,1.191-1.751,1.661 C14.02,29.962,13.767,30,13.521,30h0c-0.526,0-1.031-0.201-1.411-0.565C11.206,28.565,9.966,27,12.755,27z"/><ellipse cx="13.394" cy="27.5" fill="#fff" rx="1.5" ry=".5"/><path d="M20.467,14.998c0.647-0.622,1.516-1.033,2.537-1.024c0.257,0.018,0.52,0.022,0.778,0.129l0.391,0.135 c0.121,0.068,0.242,0.143,0.358,0.225c0.254,0.145,0.423,0.366,0.592,0.587c0.185,0.219,0.263,0.467,0.348,0.712 c0.288,0.992,0.218,1.904,0.094,2.764c-0.121,0.865-0.399,1.677-0.672,2.474c-0.017-0.851-0.008-1.683-0.107-2.49 c-0.011-0.408-0.147-0.785-0.215-1.164c-0.047-0.186-0.14-0.348-0.205-0.517l-0.106-0.247l-0.15-0.2 c-0.377-0.522-0.648-0.884-1.296-1.122c-0.635-0.228-1.458-0.255-2.345-0.258L20.467,14.998z"/><path d="M11.894,17c0,0,3-5,3-2c0,0.5-0.218,2.036-0.218,2.036S13.802,14.041,11.894,17z"/><path fill="#757575" d="M19.894,10c0,0-6,1-9-1c0,0,2,3,10,2"/><path fill="#212121" d="M20.894,30c0,3-5,2-5,2s-1.553,0.689-3,0c0,0,0.964,0.9,2.495,1.535 c0.716,0.297,1.079,1.057,0.908,1.814c-0.015,0.066-0.026,0.13-0.031,0.19C16.149,36.776,16.409,38,17.894,38 c3,0,4.695-7.115,4.695-7.115C20.591,30.721,20.894,30,20.894,30z"/><path fill="#ff5252" d="M16.243,36.17c0,0,0.651-2.17,2.651-1.915c0,0,1-1.255,2.72-0.379c0,0-1.456,4.124-3.72,4.124 C17.894,38,16.243,38.17,16.243,36.17z"/><path fill="#757575" d="M21.894,24c0,0-8,12,8,7L21.894,24z"/></svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#616161" d="M36,18c2,2,5,7,5,16c0,3.488-4,3-4,3L36,18z"/><path fill="#616161" d="M12,18c-2,2-5,7-5,16c0,3.488,4,3,4,3L12,18z"/><path fill="#616161" d="M31.467,9c-2.8-2-5.534-2-7.467-2s-4.667,0-7.467,2S10,22,10,30h14h14C38,22,34.267,11,31.467,9z"/><path fill="#616161" d="M33,46h-9v-6c0,0,11.495-12.493,15-10C39,41,33,46,33,46z"/><path fill="#616161" d="M15,46h9v-6c0,0-11.495-12.493-15-10C9,41,15,46,15,46z"/><path fill="#616161" d="M24,46c-8.271,0-15-6.626-15-16s6.729-17,15-17s15,7.626,15,17S32.271,46,24,46z"/><ellipse cx="24" cy="31" fill="#ffe082" rx="13" ry="14"/><circle cx="18.5" cy="11.5" r="1.5" fill="#fafafa"/><circle cx="29.5" cy="11.5" r="1.5" fill="#fafafa"/><polygon fill="#424242" points="32.215,13.107 39.757,12.054 39.843,12.546 32.385,14.093"/><polygon fill="#424242" points="32.975,14.501 40.887,14.35 40.913,14.85 33.025,15.499"/><polygon fill="#424242" points="33.571,16.005 40.535,17.253 40.465,17.747 33.429,16.995"/><polygon fill="#424242" points="15.615,14.093 8.157,12.546 8.243,12.054 15.785,13.107"/><polygon fill="#424242" points="14.975,15.499 7.087,14.85 7.113,14.35 15.025,14.501"/><polygon fill="#424242" points="14.571,16.995 7.535,17.747 7.465,17.253 14.429,16.005"/><path fill="#212121" d="M25.5,12.5c0,0.276-0.672,0.8-1.5,0.8s-1.5-0.524-1.5-0.8S23.172,12,24,12S25.5,12.224,25.5,12.5z"/><circle cx="18.5" cy="11.5" r=".75" fill="#212121"/><circle cx="29.5" cy="11.5" r=".75" fill="#212121"/><path fill="#616161" d="M21.27,7.812l-0.512-1.469C21.761,3.36,18.822-0.091,18,0.1c-0.83,0.193-1.717,5.388,0.312,6.819 l0.297,1.661L21.27,7.812z"/><path fill="#616161" d="M26.73,7.812l0.512-1.469C26.239,3.36,29.178-0.091,30,0.1c0.83,0.193,1.717,5.388-0.313,6.819 L29.391,8.58L26.73,7.812z"/><path fill="#616161" d="M26,21.869c0,0.516-0.895-0.654-2-0.654s-2,1.17-2,0.654S22.895,20,24,20S26,21.353,26,21.869z"/><path fill="#616161" d="M23.2,25.869c0,0.516-0.895-0.654-2-0.654c-1.105,0-2,1.17-2,0.654S20.095,24,21.2,24 C22.305,24,23.2,25.353,23.2,25.869z"/><path fill="#616161" d="M24.8,25.869c0,0.516,0.895-0.654,2-0.654c1.105,0,2,1.17,2,0.654S27.905,24,26.8,24 C25.695,24,24.8,25.353,24.8,25.869z"/><path fill="#616161" d="M30.03,27.088c-0.088,0.508,0.882-0.543,1.97-0.355c1.088,0.188,1.883,1.545,1.971,1.036 c0.088-0.508-0.86-2.045-1.948-2.233C30.935,25.348,30.118,26.58,30.03,27.088z"/><path fill="#616161" d="M17.97,27.088c0.088,0.508-0.882-0.543-1.97-0.355c-1.088,0.188-1.883,1.545-1.971,1.036 c-0.088-0.508,0.86-2.045,1.948-2.233C17.065,25.348,17.882,26.58,17.97,27.088z"/><path fill="#616161" d="M31.935,23.63c-0.139,0.535-0.788-0.927-1.857-1.205s-2.153,0.735-2.015,0.201 c0.139-0.535,0.981-1.812,2.051-1.534C31.183,21.369,32.073,23.096,31.935,23.63z"/><path fill="#616161" d="M16.065,23.63c0.139,0.535,0.788-0.927,1.857-1.205s2.153,0.735,2.015,0.201 c-0.139-0.535-0.981-1.812-2.051-1.534C16.817,21.369,15.927,23.096,16.065,23.63z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 8.4 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 48" width="1600px" height="1600px"><circle cx="33" cy="37" r="3" fill="#eceff1"/><path fill="#fbc02d" d="M36,37h-6v-9c0,0,0.5,0,2,0c0.42,0.27,0.84,0.65,1.23,1.12C34.75,30.9,36,33.95,36,37z"/><circle cx="15" cy="37" r="3" fill="#eceff1"/><path fill="#fbc02d" d="M18,28v9h-6c0-3.05,1.25-6.1,2.77-7.88c0.39-0.47,0.81-0.85,1.23-1.12C17.5,28,18,28,18,28z"/><path fill="#fdd835" d="M33,36.69c0,0.1,0,0.21-0.01,0.31c-0.05,2.21-0.68,4.26-1.7,5.94C30.88,43.6,30.15,44,29.37,44H18.63 c-0.78,0-1.51-0.4-1.92-1.06c-1.02-1.68-1.65-3.73-1.7-5.94C15,36.9,15,36.79,15,36.69c0-2.36,0.65-4.55,1.74-6.32 c0.37-0.6,0.79-1.15,1.26-1.64c1.59-1.7,3.7-2.73,6-2.73s4.41,1.03,6,2.73c0.47,0.49,0.89,1.04,1.26,1.64 C32.35,32.14,33,34.33,33,36.69z"/><ellipse cx="15.03" cy="14.537" fill="#263238" rx="10.466" ry="5.42" transform="rotate(-60 15.03 14.538)"/><ellipse cx="33.03" cy="14.537" fill="#263238" rx="5.42" ry="10.466" transform="rotate(-30 33.028 14.539)"/><g opacity=".39"><defs><rect id="ltnYWj~4F0glwJ1npGml3a" width="48" height="48" x="-35.5" y="112" opacity=".39"/></defs><clipPath id="ltnYWj~4F0glwJ1npGml3b"><use overflow="visible" xlink:href="#ltnYWj~4F0glwJ1npGml3a"/></clipPath></g><path fill="#fff176" d="M24,40.062c0,1.033-0.244,1.991-0.663,2.789C22.956,43.575,22.167,44,21.339,44h-2.678 c-0.828,0-1.617-0.425-1.998-1.149C16.244,42.054,16,41.096,16,40.062C16,37.261,17.794,35,20,35S24,37.261,24,40.062z"/><path fill="#fff176" d="M32,40.062c0,1.033-0.244,1.991-0.663,2.789C30.956,43.575,30.167,44,29.339,44h-2.678 c-0.828,0-1.617-0.425-1.998-1.149C24.244,42.054,24,41.096,24,40.062C24,37.261,25.794,35,28,35S32,37.261,32,40.062z"/><circle cx="26" cy="34" r="1" fill="#f57f17"/><circle cx="22" cy="33" r="1" fill="#f57f17"/><path fill="#f57f17" d="M22.5,28v5c0,0.28-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5v-5c0-0.28,0.22-0.5,0.5-0.5 S22.5,27.72,22.5,28z"/><path fill="#f57f17" d="M26.5,28v6c0,0.28-0.22,0.5-0.5,0.5s-0.5-0.22-0.5-0.5v-6c0-0.28,0.22-0.5,0.5-0.5 S26.5,27.72,26.5,28z"/><path fill="#f9a825" d="M18,28v0.73c-0.47,0.49-0.89,1.04-1.26,1.64c-0.72-0.36-1.39-0.79-1.97-1.25 c0.39-0.47,0.81-0.85,1.23-1.12C17.5,28,18,28,18,28z"/><path fill="#f9a825" d="M33.23,29.12c-0.58,0.46-1.25,0.89-1.97,1.25c-0.37-0.6-0.79-1.15-1.26-1.64V28c0,0,0.5,0,2,0 C32.42,28.27,32.84,28.65,33.23,29.12z"/><path fill="#fbc02d" d="M31.26,30.37c-0.4,0.21-0.82,0.39-1.26,0.56c-1.07,0.41-2.25,0.72-3.5,0.89V28 c0-0.28-0.22-0.5-0.5-0.5s-0.5,0.22-0.5,0.5v3.94C25.01,31.98,24.51,32,24,32s-1.01-0.02-1.5-0.06V28c0-0.28-0.22-0.5-0.5-0.5 s-0.5,0.22-0.5,0.5v3.82c-1.25-0.17-2.43-0.48-3.5-0.89c-0.44-0.17-0.86-0.35-1.26-0.56c0.37-0.6,0.79-1.15,1.26-1.64 c1.59-1.7,3.7-2.73,6-2.73s4.41,1.03,6,2.73C30.47,29.22,30.89,29.77,31.26,30.37z"/><path fill="#e65100" d="M22.5,28v3.94c-0.34-0.03-0.67-0.07-1-0.12V28c0-0.28,0.22-0.5,0.5-0.5S22.5,27.72,22.5,28z"/><path fill="#e65100" d="M26.5,28v3.82c-0.33,0.05-0.66,0.09-1,0.12V28c0-0.28,0.22-0.5,0.5-0.5S26.5,27.72,26.5,28z"/><ellipse cx="24" cy="22" fill="#fdd835" rx="14" ry="8"/><ellipse cx="24" cy="15" fill="#fdd835" rx="13" ry="12"/><path fill="#cfd8dc" d="M34,20c0-4.694-4.477-10-10-10s-10,5.306-10,10s4.477,7,10,7S34,24.694,34,20z"/><path fill="#eceff1" d="M32,20.412C32,15.993,28.418,11,24,11s-8,4.993-8,9.412S19.582,27,24,27S32,24.83,32,20.412z"/><path fill="#263238" d="M23,19.4c0,0.6,0.448,0.6,1,0.6s1,0,1-0.6c0-0.3-0.5-0.9-1-0.9S23,19.1,23,19.4z"/><circle cx="21" cy="18" r="1" fill="#263238"/><circle cx="27" cy="18" r="1" fill="#263238"/><path fill="#e57373" d="M26.99,20.58C26.97,21.92,26.31,23,25.5,23c-0.71,0-1.3-0.82-1.46-1.92L26.99,20.58z"/><path fill="#263238" d="M21.499,22c-0.24,0-0.452-0.174-0.492-0.418c-0.045-0.272,0.14-0.53,0.411-0.575l6.005-1.001 c0.257-0.041,0.528,0.143,0.571,0.417c0.043,0.272-0.144,0.528-0.417,0.571l-5.995,0.999C21.554,21.998,21.526,22,21.499,22z"/></svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#f48fb1" d="M30,5c-5,0-5.5,5-5.5,7.5c1,0,4.5,0.5,4.5,0.5L30,5z"/><circle cx="19" cy="5" r="5" fill="#f8bbd0"/><path fill="#f8bbd0" d="M14,5c0,2,0,8,2,11c1.5-0.5,7-3,7-3c0.75-2,1-5.5,1-8C21.5,5,14,5,14,5z"/><path fill="#fff9c4" d="M22,8.5C22,5.462,21.5,3,19.5,3S17,5.462,17,8.5s1.645,7.5,2.75,7.5S22,11.538,22,8.5z"/><circle cx="31" cy="38" r="3" fill="#fff9c4"/><path fill="#f48fb1" d="M34,38h-6v-7c0,0,0.25,0,0.91,0H30c0.66,0.33,1.32,0.88,1.91,1.58C33.11,33.99,34,35.99,34,38z"/><circle cx="17" cy="38" r="3" fill="#fff9c4"/><path fill="#f48fb1" d="M20,31v7h-6c0-2.01,0.89-4.01,2.09-5.42c0.59-0.7,1.25-1.25,1.91-1.58h1.09C19.75,31,20,31,20,31z"/><path fill="#f8bbd0" d="M32,38.5c0,2.08-0.57,3.99-1.52,5.56C30.12,44.65,29.47,45,28.77,45h-9.54 c-0.7,0-1.35-0.35-1.71-0.94C16.57,42.49,16,40.58,16,38.5c0-0.17,0-0.33,0.01-0.5c0.08-1.7,0.53-3.28,1.26-4.63 c0.49-0.91,1.11-1.71,1.82-2.37c1.36-1.26,3.06-2,4.91-2s3.55,0.74,4.91,2c0.71,0.66,1.33,1.46,1.82,2.37 c0.73,1.35,1.18,2.93,1.26,4.63C32,38.17,32,38.33,32,38.5z"/><path fill="#fce4ec" d="M24,41.5c0,0.918-0.213,1.77-0.58,2.479C23.086,44.622,22.396,45,21.672,45h-2.343 c-0.724,0-1.415-0.378-1.748-1.021C17.213,43.27,17,42.418,17,41.5c0-2.49,1.57-4.5,3.5-4.5S24,39.01,24,41.5z"/><path fill="#fce4ec" d="M31,41.5c0,0.918-0.213,1.77-0.58,2.479C30.086,44.622,29.396,45,28.672,45h-2.343 c-0.724,0-1.415-0.378-1.748-1.021C24.213,43.27,24,42.418,24,41.5c0-2.49,1.57-4.5,3.5-4.5S31,39.01,31,41.5z"/><path fill="#f06292" d="M19.09,31c-0.71,0.66-1.33,1.46-1.82,2.37c-0.42-0.24-0.82-0.51-1.18-0.79 c0.59-0.7,1.25-1.25,1.91-1.58H19.09z"/><path fill="#f06292" d="M31.91,32.58c-0.36,0.28-0.76,0.55-1.18,0.79c-0.49-0.91-1.11-1.71-1.82-2.37H30 C30.66,31.33,31.32,31.88,31.91,32.58z"/><path fill="#f48fb1" d="M30.73,33.37c-0.82,0.48-1.74,0.85-2.73,1.11C26.76,34.83,25.41,35,24,35s-2.76-0.17-4-0.52 c-0.99-0.26-1.91-0.63-2.73-1.11c0.49-0.91,1.11-1.71,1.82-2.37c1.36-1.26,3.06-2,4.91-2s3.55,0.74,4.91,2 C29.62,31.66,30.24,32.46,30.73,33.37z"/><path fill="#f8bbd0" d="M37,24c0,5.8-5.82,9-13,9s-13-3.2-13-9s5.82-12,13-12c0.68,0,1.35,0.06,2.01,0.16 c3.05,0.5,5.74,2.09,7.69,4.19C35.75,18.55,37,21.32,37,24z"/><circle cx="21" cy="23" r="1" fill="#263238"/><circle cx="27" cy="23" r="1" fill="#263238"/><path fill="#263238" d="M25,25.1c0-0.6-0.448-0.6-1-0.6s-1,0-1,0.6c0,0.3,0.5,0.9,1,0.9S25,25.4,25,25.1z"/><path fill="#263238" d="M27.5,21h-1c-0.276,0-0.5-0.224-0.5-0.5s0.224-0.5,0.5-0.5h1c0.276,0,0.5,0.224,0.5,0.5 S27.776,21,27.5,21z"/><polygon fill="#263238" points="18,19 20,17.5 22.5,21.5"/><path fill="#263238" d="M22.803,27.827c-0.195,0-0.396-0.024-0.597-0.085c-0.496-0.15-0.895-0.503-1.153-1.019 c-0.124-0.247-0.023-0.547,0.224-0.671c0.248-0.124,0.547-0.022,0.671,0.224c0.135,0.271,0.313,0.437,0.545,0.508 c0.331,0.1,0.733,0.001,1.008-0.104V25.5c0-0.276,0.224-0.5,0.5-0.5s0.5,0.224,0.5,0.5V27c0,0.18-0.096,0.345-0.252,0.435 C24.163,27.483,23.534,27.827,22.803,27.827z"/><path fill="#263238" d="M25.197,27.827c-0.731,0-1.36-0.344-1.445-0.393C23.596,27.345,23.5,27.18,23.5,27v-1.5 c0-0.276,0.224-0.5,0.5-0.5s0.5,0.224,0.5,0.5v1.181c0.273,0.104,0.677,0.203,1.008,0.104c0.231-0.071,0.41-0.237,0.545-0.508 c0.124-0.246,0.423-0.348,0.671-0.224c0.247,0.124,0.347,0.424,0.224,0.671c-0.258,0.516-0.657,0.868-1.153,1.019 C25.594,27.803,25.392,27.827,25.197,27.827z"/><defs><rect id="eHUa0UQNJrReABhngWgjia" width="221.5" height="76.75" x="-81.25" y="84"/></defs><clipPath id="eHUa0UQNJrReABhngWgjib"><use overflow="visible" xlink:href="#eHUa0UQNJrReABhngWgjia"/></clipPath><path fill="#f48fb1" d="M33.7,16.35C32.95,16.76,32.03,17,31,17c-2.95,0-4.93-1.93-4.99-4.84 C29.06,12.66,31.75,14.25,33.7,16.35z"/><path fill="#f8bbd0" d="M36,10.5c0-3-2.5-5.5-6-5.5c-2.761,0-4,1.962-4,5c0,3,2,5,5,5S36,13,36,10.5z"/></svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 48" width="1600px" height="1600px"><circle cx="10" cy="13" r="7" fill="#29b6f6"/><circle cx="38" cy="13" r="7" fill="#29b6f6"/><circle cx="37.5" cy="14.5" r="3.5" fill="#e1f5fe"/><circle cx="10.5" cy="14.5" r="3.5" fill="#e1f5fe"/><circle cx="32" cy="38" r="3" fill="#039be5"/><path fill="#039be5" d="M35,38c0-3-2-6-4-7c-1.5,0-2,0-2,0v7H35z"/><circle cx="16" cy="38" r="3" fill="#039be5"/><path fill="#039be5" d="M13,38c0-3,2-6,4-7c1.5,0,2,0,2,0v7H13z"/><path fill="#29b6f6" d="M32,38.5c0,2.08-0.57,3.99-1.52,5.56C30.12,44.65,29.47,45,28.77,45h-9.54 c-0.7,0-1.35-0.35-1.71-0.94C16.57,42.49,16,40.58,16,38.5c0-1.83,0.44-3.55,1.2-5c1.41-2.7,3.92-4.5,6.8-4.5s5.39,1.8,6.8,4.5 C31.56,34.95,32,36.67,32,38.5z"/><path fill="#e1f5fe" d="M29,35c0,3.31-2.24,6-5,6s-5-2.69-5-6c0-0.25,0.01-0.5,0.05-0.74C19.34,31.3,21.45,29,24,29 s4.66,2.3,4.95,5.26C28.99,34.5,29,34.75,29,35z"/><path fill="#039be5" d="M30.8,33.5c-0.58,0.3-1.2,0.55-1.85,0.76C28.66,31.3,26.55,29,24,29C26.88,29,29.39,30.8,30.8,33.5z"/><path fill="#039be5" d="M24,29c-2.55,0-4.66,2.3-4.95,5.26c-0.65-0.21-1.27-0.46-1.85-0.76C18.61,30.8,21.12,29,24,29z"/><path fill="#81d4fa" d="M28.95,34.26C27.47,34.75,25.81,35,24,35s-3.47-0.25-4.95-0.74C19.34,31.3,21.45,29,24,29 S28.66,31.3,28.95,34.26z"/><path fill="#29b6f6" d="M38,23c0-6.075-4-13-14-13s-14,6.925-14,13s5.716,10,14,10S38,29.075,38,23z"/><path fill="#3949ab" d="M27,25c0-2.209-1.343-5-3-5s-3,2.791-3,5s1.343,3,3,3S27,27.209,27,25z"/><path fill="#263238" d="M16,24.5c-0.245,0-0.459-0.18-0.495-0.43c-0.039-0.273,0.151-0.526,0.424-0.565l3.5-0.5 c0.27-0.037,0.527,0.15,0.566,0.425c0.039,0.273-0.151,0.526-0.424,0.565l-3.5,0.5C16.047,24.498,16.023,24.5,16,24.5z"/><path fill="#263238" d="M32,24.5c-0.023,0-0.047-0.002-0.071-0.005l-3.5-0.5c-0.273-0.039-0.463-0.292-0.424-0.565 s0.292-0.458,0.566-0.425l3.5,0.5c0.273,0.039,0.463,0.292,0.424,0.565C32.459,24.32,32.246,24.5,32,24.5z"/><path fill="#263238" d="M24,30c-1.5,0-2.258-0.551-2.854-1.146c-0.195-0.195-0.195-0.512,0-0.707s0.512-0.195,0.707,0 C22.303,28.597,22.806,29,24,29s1.697-0.403,2.146-0.854c0.195-0.195,0.512-0.195,0.707,0s0.195,0.512,0,0.707 C26.258,29.449,25.5,30,24,30z"/><path fill="#81d4fa" d="M24,41.5c0,0.918-0.213,1.77-0.58,2.479C23.086,44.622,22.396,45,21.672,45h-2.343 c-0.724,0-1.415-0.378-1.748-1.021C17.213,43.27,17,42.418,17,41.5c0-2.49,1.57-4.5,3.5-4.5S24,39.01,24,41.5z"/><path fill="#81d4fa" d="M31,41.5c0,0.918-0.213,1.77-0.58,2.479C30.086,44.622,29.396,45,28.672,45h-2.343 c-0.724,0-1.415-0.378-1.748-1.021C24.213,43.27,24,42.418,24,41.5c0-2.49,1.57-4.5,3.5-4.5S31,39.01,31,41.5z"/><defs><rect id="NOjn~hq3BdUPUd8gGGq0ta" width="221.5" height="76.75" x="44.75" y="84"/></defs><clipPath id="NOjn~hq3BdUPUd8gGGq0tb"><use overflow="visible" xlink:href="#NOjn~hq3BdUPUd8gGGq0ta"/></clipPath></svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 48" width="1600px" height="1600px"><circle cx="33" cy="38" r="3" fill="#ce93d8"/><path fill="#ce93d8" d="M36,38h-6v-7c0,0,0.27,0,1.01,0H32c0.47,0.23,0.93,0.57,1.37,1c0.57,0.54,1.09,1.23,1.52,2 C35.56,35.2,36,36.6,36,38z"/><circle cx="15" cy="38" r="3" fill="#ce93d8"/><path fill="#ce93d8" d="M18,31v7h-6c0-1.4,0.44-2.8,1.11-4c0.43-0.77,0.95-1.46,1.52-2c0.44-0.43,0.9-0.77,1.37-1h0.99 C17.73,31,18,31,18,31z"/><path fill="#e1bee7" d="M33,37.69c0,2.33-0.64,4.49-1.71,6.25C30.88,44.6,30.15,45,29.37,45H18.63 c-0.78,0-1.51-0.4-1.92-1.06C15.64,42.18,15,40.02,15,37.69c0-1.29,0.19-2.54,0.55-3.69c0.22-0.7,0.5-1.37,0.83-2 c1.59-3,4.41-5,7.62-5s6.03,2,7.62,5c0.33,0.63,0.61,1.3,0.83,2C32.81,35.15,33,36.4,33,37.69z"/><path fill="#f3e5f5" d="M24,41.062c0,1.033-0.244,1.991-0.663,2.789C22.956,44.575,22.167,45,21.339,45h-2.678 c-0.828,0-1.617-0.425-1.998-1.149C16.244,43.054,16,42.096,16,41.062C16,38.261,17.794,36,20,36S24,38.261,24,41.062z"/><path fill="#f3e5f5" d="M32,41.062c0,1.033-0.244,1.991-0.663,2.789C30.956,44.575,30.167,45,29.339,45h-2.678 c-0.828,0-1.617-0.425-1.998-1.149C24.244,43.054,24,42.096,24,41.062C24,38.261,25.794,36,28,36S32,38.261,32,41.062z"/><path fill="#29b6f6" d="M37,19c0,0.2-0.01,0.4-0.02,0.59c-0.07,1.6-0.46,2.88-0.93,4.04C35.17,25.78,34,27.5,34,30 c-1.13,1.12-10,1-10,1s-8.5,0-10-1c0-2.5-1.17-4.22-2.05-6.37c-0.47-1.16-0.86-2.44-0.93-4.04C11.01,19.4,11,19.2,11,19h24 C36.25,19,37,19,37,19z"/><path fill="#29b6f6" d="M17.74,12.12c-0.33,0.19-0.7,0.29-1.08,0.31c-1.39,0.09-2.99-0.91-3.97-2.6 c-0.97-1.68-1.03-3.56-0.27-4.72c0.21-0.33,0.48-0.59,0.82-0.79c1.54-0.89,3.8,0.13,5.04,2.29C19.52,8.76,19.28,11.23,17.74,12.12z"/><ellipse cx="32.414" cy="8.218" fill="#29b6f6" rx="4.5" ry="3.224" transform="rotate(-60 32.414 8.22)"/><path fill="#039be5" d="M16.66,12.43c-1.39,0.09-2.99-0.91-3.97-2.6c-0.97-1.68-1.03-3.56-0.27-4.72 c1.38-0.09,2.98,0.91,3.95,2.6C17.34,9.4,17.41,11.28,16.66,12.43z"/><path fill="#039be5" d="M31.24,12.43c1.39,0.09,2.99-0.91,3.97-2.6c0.97-1.68,1.03-3.56,0.27-4.72 c-1.38-0.09-2.98,0.91-3.95,2.6C30.56,9.4,30.49,11.28,31.24,12.43z"/><path fill="#29b6f6" d="M37,19c0,0.2-0.01,0.4-0.02,0.59c-0.04,0.59-0.13,1.15-0.27,1.69c-0.18,0.68-0.45,1.33-0.78,1.94 c-0.01,0.02-0.02,0.03-0.04,0.05c0,0.01,0,0.01,0,0.01C33.88,26.85,29.31,29,24,29s-9.88-2.15-11.89-5.72 c-0.02-0.02-0.03-0.04-0.04-0.06c-0.33-0.61-0.6-1.26-0.78-1.94c-0.14-0.54-0.23-1.1-0.27-1.69C11.01,19.4,11,19.2,11,19 c0-0.78,0.1-1.55,0.27-2.31c0.17-0.7,0.41-1.38,0.71-2.04C13.93,10.38,18.58,7,24,7s10.07,3.38,12.02,7.65 c0.3,0.66,0.54,1.34,0.71,2.04C36.9,17.45,37,18.22,37,19z"/><path fill="#f06292" d="M27.5,13c-2,0-2.75,0.75-3.5,1.5c-0.75-0.75-1.5-1.5-3.5-1.5S17,14.5,17,17.5c0,5,7,7.5,7,7.5 s7-2.5,7-7.5C31,14.5,29.5,13,27.5,13z"/><path fill="#263238" d="M25.5,20c-0.075,0-0.151-0.017-0.223-0.053c-0.247-0.124-0.347-0.424-0.224-0.671l1-2 c0.124-0.247,0.423-0.349,0.671-0.224c0.247,0.124,0.347,0.424,0.224,0.671l-1,2C25.859,19.898,25.683,20,25.5,20z"/><path fill="#263238" d="M22.5,20c-0.184,0-0.36-0.102-0.448-0.276l-1-2c-0.124-0.247-0.023-0.547,0.224-0.671 c0.248-0.125,0.547-0.023,0.671,0.224l1,2c0.124,0.247,0.023,0.547-0.224,0.671C22.652,19.983,22.576,20,22.5,20z"/><path fill="#e1f5fe" d="M13,19c0,1.4-0.43,3.17-0.89,4.28c-0.06,0.13-0.11,0.24-0.16,0.35c-0.47-1.16-0.86-2.44-0.93-4.04 C11.01,19.4,11,19.2,11,19c0-0.78,0.1-1.55,0.27-2.31c0.17-0.7,0.41-1.38,0.71-2.04C12.59,15.51,13,17.14,13,19z"/><path fill="#3949ab" d="M24,2L24,2c-2.209,0-4,1.791-4,4v5h8V6C28,3.791,26.209,2,24,2z"/><path fill="#263238" d="M12,19c0,0.92-0.27,1.74-0.71,2.28C11.1,20.56,11,19.8,11,19c0-0.78,0.1-1.55,0.27-2.31 C11.72,17.23,12,18.07,12,19z"/><path fill="#e1f5fe" d="M37,19c0,0.2-0.01,0.4-0.02,0.59c-0.07,1.6-0.46,2.88-0.93,4.04c-0.05-0.11-0.1-0.22-0.16-0.35 c0,0,0,0,0-0.01C35.43,22.16,35,20.4,35,19c0-1.86,0.41-3.49,1.02-4.35c0.3,0.66,0.54,1.34,0.71,2.04C36.9,17.45,37,18.22,37,19z"/><path fill="#263238" d="M37,19c0,0.8-0.1,1.56-0.29,2.28C36.27,20.74,36,19.92,36,19c0-0.93,0.28-1.77,0.73-2.31 C36.9,17.45,37,18.22,37,19z"/><path fill="#81d4fa" d="M34,32H14c-0.552,0-1-0.448-1-1v0c0-0.552,0.448-1,1-1h20c0.552,0,1,0.448,1,1v0 C35,31.552,34.552,32,34,32z"/><defs><rect id="9JWKzWsVGiAXLHtjN9wSTa" width="221.5" height="76.75" x="-18.25" y="84"/></defs><clipPath id="9JWKzWsVGiAXLHtjN9wSTb"><use overflow="visible" xlink:href="#9JWKzWsVGiAXLHtjN9wSTa"/></clipPath><path fill="#ba68c8" d="M16.38,32c-0.33,0.63-0.61,1.3-0.83,2h-2.44c0.43-0.77,0.95-1.46,1.52-2H16.38z"/><path fill="#ba68c8" d="M34.89,34h-2.44c-0.22-0.7-0.5-1.37-0.83-2h1.75C33.94,32.54,34.46,33.23,34.89,34z"/><path fill="#ce93d8" d="M32.45,34h-16.9c0.22-0.7,0.5-1.37,0.83-2h15.24C31.95,32.63,32.23,33.3,32.45,34z"/></svg>
|
||||
|
After Width: | Height: | Size: 4.7 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#b71c1c" d="M33.36,24.762c-0.089,0.585-0.005,1.2,0.298,1.76c0.738,1.366,2.442,1.875,3.809,1.143 c0.089-0.585,0.005-1.2-0.298-1.76C36.43,24.54,34.727,24.03,33.36,24.762z"/><path fill="#cfd8dc" d="M31.799,44c0.715-1.481-0.179-3.168,0.201-5c0.349-1.688,2-3.499,2-5.385C34,24.439,29.523,17,24,17 s-10,7.439-10,16.615c0,1.886,1.651,3.697,2,5.385c0.379,1.832-0.515,3.519,0.201,5H31.799z"/><g opacity=".39"><defs><rect id="mkpIP6AT161CplVxS893aa" width="48" height="48" x="27.5" y="112" opacity=".39"/></defs><clipPath id="mkpIP6AT161CplVxS893ab"><use overflow="visible" xlink:href="#mkpIP6AT161CplVxS893aa"/></clipPath></g><path fill="#cfd8dc" d="M20.5,37h-4c-1.933,0-3.5,1.567-3.5,3.5v0c0,1.933,1.567,3.5,3.5,3.5h4c1.933,0,3.5-1.567,3.5-3.5v0 C24,38.567,22.433,37,20.5,37z"/><path fill="#cfd8dc" d="M31.5,37h-4c-1.933,0-3.5,1.567-3.5,3.5v0c0,1.933,1.567,3.5,3.5,3.5h4c1.933,0,3.5-1.567,3.5-3.5v0 C35,38.567,33.433,37,31.5,37z"/><circle cx="20.5" cy="41.5" r="2.5" fill="#6d4c41"/><circle cx="27.5" cy="41.5" r="2.5" fill="#6d4c41"/><circle cx="28" cy="35" r="3" fill="#eceff1"/><ellipse cx="31.5" cy="33.5" fill="#eceff1" rx="3.5" ry="4.5"/><circle cx="20" cy="35" r="3" fill="#eceff1"/><ellipse cx="16.5" cy="33.5" fill="#eceff1" rx="3.5" ry="4.5"/><circle cx="22.5" cy="36.5" r="1.5" fill="#6d4c41"/><path fill="#d32f2f" d="M32,23c0,0,0,0.02,0,0.09V25c-0.19,0.13-0.42,0.27-0.69,0.4c-1.64,0.86-4.66,1.86-7.42,2.59 C21.04,28.75,18.47,29.24,18,29c-0.75-0.38-1.94-1.9-2.37-3.06c-0.13-0.37-0.19-0.7-0.13-0.94c0.31-1.24,0.5-2,0.5-2H32z"/><path fill="#d32f2f" d="M34,24.5c0,0.76-0.56,1.39-1.3,1.48C32.64,26,32.57,26,32.5,26c-0.28,0-0.54-0.08-0.76-0.21 c-0.17-0.1-0.32-0.23-0.43-0.39c-0.2-0.25-0.31-0.56-0.31-0.9c0-0.65,0.42-1.21,1-1.41c0.16-0.06,0.32-0.09,0.5-0.09 C33.33,23,34,23.67,34,24.5z"/><path fill="#d32f2f" d="M32.91,25.05c-0.26,0.531-0.365,1.143-0.244,1.768c0.295,1.524,1.766,2.521,3.29,2.233 c0.26-0.531,0.365-1.143,0.244-1.768C35.905,25.759,34.434,24.762,32.91,25.05z"/><defs><rect id="mkpIP6AT161CplVxS893ac" width="221.5" height="76.75" x="-207.25" y="84"/></defs><clipPath id="mkpIP6AT161CplVxS893ad"><use overflow="visible" xlink:href="#mkpIP6AT161CplVxS893ac"/></clipPath><path fill="#b71c1c" d="M34,24.5c0,0.76-0.56,1.39-1.3,1.48c-0.33-0.02-0.65-0.09-0.96-0.19c-0.17-0.1-0.32-0.23-0.43-0.39 c-1.64,0.86-4.66,1.86-7.42,2.59c-1.08-0.03-2.01-0.65-2.51-1.55C20.84,26.79,20.2,27,19.5,27c-1.14,0-2.15-0.55-2.78-1.4 c-0.35,0.16-0.71,0.28-1.09,0.34c-0.13-0.37-0.19-0.7-0.13-0.94c0.31-1.24,0.5-2,0.5-2h16c0,0,0,0.02,0,0.09 c0.16-0.06,0.32-0.09,0.5-0.09C33.33,23,34,23.67,34,24.5z"/><circle cx="24" cy="23" r="3" fill="#cfd8dc"/><circle cx="14.5" cy="5.5" r="2.5" fill="#eceff1"/><circle cx="33.5" cy="5.5" r="2.5" fill="#eceff1"/><circle cx="28.5" cy="21.5" r="3.5" fill="#cfd8dc"/><circle cx="19.5" cy="21.5" r="3.5" fill="#cfd8dc"/><ellipse cx="24" cy="15" fill="#eceff1" rx="10" ry="7"/><circle cx="15" cy="20" r="4" fill="#cfd8dc"/><circle cx="13.5" cy="14.5" r="3.5" fill="#cfd8dc"/><circle cx="15.5" cy="9.5" r="3.5" fill="#cfd8dc"/><circle cx="20.5" cy="6.5" r="4.5" fill="#cfd8dc"/><circle cx="33" cy="20" r="4" fill="#cfd8dc"/><circle cx="34.5" cy="14.5" r="3.5" fill="#cfd8dc"/><circle cx="32.5" cy="9.5" r="3.5" fill="#cfd8dc"/><circle cx="27.5" cy="6.5" r="4.5" fill="#cfd8dc"/><circle cx="25.5" cy="36.5" r="1.5" fill="#6d4c41"/><circle cx="21" cy="15" r="1" fill="#263238"/><circle cx="27" cy="15" r="1" fill="#263238"/><path fill="#263238" d="M22.803,19.827c-0.195,0-0.396-0.024-0.597-0.085c-0.496-0.15-0.895-0.503-1.153-1.019 c-0.124-0.247-0.023-0.547,0.224-0.671c0.248-0.125,0.547-0.022,0.671,0.224c0.135,0.271,0.313,0.437,0.545,0.508 c0.331,0.101,0.734,0.002,1.008-0.104V17.5c0-0.276,0.224-0.5,0.5-0.5s0.5,0.224,0.5,0.5V19c0,0.18-0.096,0.345-0.252,0.435 C24.163,19.483,23.534,19.827,22.803,19.827z"/><path fill="#263238" d="M25.197,19.827c-0.731,0-1.36-0.344-1.445-0.393C23.596,19.345,23.5,19.18,23.5,19v-1.5 c0-0.276,0.224-0.5,0.5-0.5s0.5,0.224,0.5,0.5v1.181c0.274,0.105,0.677,0.204,1.008,0.104c0.231-0.071,0.41-0.237,0.545-0.508 c0.124-0.246,0.423-0.349,0.671-0.224c0.247,0.124,0.347,0.424,0.224,0.671c-0.258,0.516-0.657,0.868-1.153,1.019 C25.594,19.803,25.392,19.827,25.197,19.827z"/><path fill="#263238" d="M20.5,13.5c-0.184,0-0.36-0.102-0.448-0.276c-0.124-0.247-0.023-0.547,0.224-0.671l1-0.5 c0.248-0.124,0.547-0.022,0.671,0.224c0.124,0.247,0.023,0.547-0.224,0.671l-1,0.5C20.652,13.483,20.576,13.5,20.5,13.5z"/><path fill="#263238" d="M27.5,13.5c-0.075,0-0.151-0.017-0.223-0.053l-1-0.5c-0.247-0.124-0.347-0.424-0.224-0.671 c0.124-0.246,0.423-0.348,0.671-0.224l1,0.5c0.247,0.124,0.347,0.424,0.224,0.671C27.859,13.398,27.683,13.5,27.5,13.5z"/><path fill="#263238" d="M25,16.6c0-0.6-0.448-0.6-1-0.6s-1,0-1,0.6c0,0.3,0.5,0.9,1,0.9S25,16.9,25,16.6z"/></svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#7e4d2d" d="M6.002,34.25c-0.872,0-1.737-0.379-2.33-1.108c-1.045-1.286-0.85-3.175,0.437-4.22l4-3.25 c1.283-1.045,3.175-0.85,4.22,0.437s0.85,3.175-0.437,4.22l-4,3.25C7.336,34.03,6.667,34.25,6.002,34.25z"/><path fill="#7e4d2d" d="M41.998,35c-0.657,0-1.319-0.215-1.872-0.657l-5-4c-1.294-1.035-1.504-2.923-0.469-4.217 c1.036-1.293,2.925-1.503,4.217-0.469l5,4c1.294,1.035,1.504,2.923,0.469,4.217C43.75,34.614,42.878,35,41.998,35z"/><path fill="#7e4d2d" d="M14.497,43c-1.284,0-2.236-1.189-1.951-2.441C13.082,38.206,13.842,35,14,35c0.25,0,7,3,7,3 l-2.417,4.029C18.221,42.631,17.57,43,16.868,43H14.497z"/><path fill="#7e4d2d" d="M27,38l2.126,3.543C29.668,42.447,30.645,43,31.699,43h1.65c1.329,0,2.288-1.272,1.923-2.549L34,36 L27,38z"/><g opacity=".39"><defs><rect id="wYN20Wyk2jl~7iIDCFw0Wa" width="48" height="48" x="-98.5" y="112" opacity=".39"/></defs><clipPath id="wYN20Wyk2jl~7iIDCFw0Wb"><use overflow="visible" xlink:href="#wYN20Wyk2jl~7iIDCFw0Wa"/></clipPath></g><path fill="#c88e66" d="M41,27c0-7.732-7.611-16-17-16S7,19.268,7,27s7.611,12,17,12S41,34.732,41,27z"/><circle cx="19" cy="23" r="2" fill="#263238"/><circle cx="29" cy="23" r="2" fill="#263238"/><path fill="#263238" d="M30.75,20H27.5c-0.276,0-0.5-0.224-0.5-0.5s0.224-0.5,0.5-0.5h3.25c0.276,0,0.5,0.224,0.5,0.5 S31.026,20,30.75,20z"/><path fill="#263238" d="M21.999,21c-0.219,0-0.439-0.071-0.624-0.219l-5-4c-0.431-0.346-0.501-0.975-0.156-1.406 c0.346-0.43,0.975-0.502,1.406-0.156l5,4c0.431,0.346,0.501,0.975,0.156,1.406C22.583,20.871,22.293,21,21.999,21z"/><path fill="#593625" d="M14.5,27.5l20,1c0,0-0.5,2.5-2,3.5c-2.791,1.861-14.25,1-16-0.5S14.5,27.5,14.5,27.5z"/><path fill="#eceff1" d="M21,28v1.153c0,0.489,0.353,0.906,0.836,0.986l4,0.667C26.445,30.908,27,30.437,27,29.82v-1.57L21,28 z"/><path fill="#593625" d="M25.93,33.539c-4.1,0-8.586-0.657-9.755-1.659c-1.881-1.612-2.161-4.22-2.172-4.33 c-0.015-0.145,0.034-0.289,0.135-0.395s0.227-0.173,0.388-0.154l20,1c0.145,0.007,0.279,0.077,0.369,0.191 c0.089,0.115,0.124,0.263,0.096,0.405c-0.022,0.11-0.56,2.716-2.213,3.818C31.598,33.202,28.862,33.539,25.93,33.539z M15.104,28.031c0.181,0.775,0.638,2.16,1.722,3.089c1.525,1.308,12.718,2.25,15.397,0.464c0.9-0.601,1.406-1.874,1.636-2.615 L15.104,28.031z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 48" width="1600px" height="1600px"><circle cx="30" cy="39" r="3" fill="#3949ab"/><path fill="#3949ab" d="M33,39h-6v-7c0,0,0.36,0,1.37,0H29c0.67,0.34,1.34,0.9,1.93,1.61C32.12,35.02,33,37.01,33,39z"/><circle cx="18" cy="39" r="3" fill="#3949ab"/><path fill="#3949ab" d="M21,32v7h-6c0-1.82,0.74-3.65,1.77-5.02c0.66-0.89,1.45-1.59,2.23-1.98h0.63C20.64,32,21,32,21,32z"/><path fill="#5c6bc0" d="M30,38.5c0,0.17,0,0.34-0.01,0.5c-0.06,1.89-0.47,3.62-1.13,5.06C28.59,44.65,28.1,45,27.58,45h-7.16 c-0.52,0-1.01-0.35-1.28-0.94c-0.66-1.44-1.07-3.17-1.13-5.06C18,38.84,18,38.67,18,38.5c0-1.22,0.15-2.39,0.41-3.46 c0.28-1.14,0.7-2.17,1.22-3.04c1.09-1.85,2.65-3,4.37-3s3.28,1.15,4.37,3c0.47,0.78,0.85,1.69,1.13,2.69 C29.82,35.86,30,37.15,30,38.5z"/><g opacity=".39"><defs><rect id="FEqv02t1DzqTAwx9hkVN~a" width="48" height="48" x="90.5" y="112" opacity=".39"/></defs><clipPath id="FEqv02t1DzqTAwx9hkVN~b"><use overflow="visible" xlink:href="#FEqv02t1DzqTAwx9hkVN~a"/></clipPath></g><circle cx="22" cy="38" r="1" fill="#ffd54f"/><path fill="#9fa8da" d="M24,41.938c0,0.804-0.183,1.549-0.498,2.169C23.217,44.669,22.625,45,22.004,45h-2.008 c-0.621,0-1.213-0.331-1.498-0.894C18.183,43.486,18,42.741,18,41.938C18,39.759,19.346,38,21,38S24,39.759,24,41.938z"/><path fill="#9fa8da" d="M30,41.938c0,0.804-0.183,1.549-0.498,2.169C29.217,44.669,28.625,45,28.004,45h-2.008 c-0.621,0-1.213-0.331-1.498-0.894C24.183,43.486,24,42.741,24,41.938C24,39.759,25.346,38,27,38S30,39.759,30,41.938z"/><path fill="#303f9f" d="M19.63,32c-0.52,0.87-0.94,1.9-1.22,3.04c-0.54-0.32-1.09-0.67-1.64-1.06 c0.66-0.89,1.45-1.59,2.23-1.98H19.63z"/><path fill="#303f9f" d="M30.93,33.61c-0.48,0.38-0.96,0.74-1.43,1.08c-0.28-1-0.66-1.91-1.13-2.69H29 C29.67,32.34,30.34,32.9,30.93,33.61z"/><path fill="#3949ab" d="M29.5,34.69c-0.53,0.37-1.05,0.7-1.56,0.98c-0.32,0.19-0.63,0.35-0.94,0.5 c-0.29,0.14-0.57,0.26-0.84,0.37C25.36,36.84,24.63,37,24,37c-0.85,0-1.88-0.24-3-0.68c-0.82-0.33-1.69-0.76-2.59-1.28 c0.28-1.14,0.7-2.17,1.22-3.04c1.09-1.85,2.65-3,4.37-3s3.28,1.15,4.37,3C28.84,32.78,29.22,33.69,29.5,34.69z"/><path fill="#d32f2f" d="M23,12c-1-1-4.5-4-8.5-4S6,11,6,17c0,9,12.5,18,18,18s18-11,18-21c0-6.5-4-10-8.75-10 C27.5,4,24.5,9,23,12z"/><ellipse cx="24" cy="27.5" fill="#ffd54f" rx="4" ry="2.5"/><path fill="#263238" d="M25.5,28h-3c-0.276,0-0.5-0.224-0.5-0.5s0.224-0.5,0.5-0.5h3c0.276,0,0.5,0.224,0.5,0.5 S25.776,28,25.5,28z"/><circle cx="21" cy="24" r="1" fill="#263238"/><circle cx="27" cy="24" r="1" fill="#263238"/><circle cx="17" cy="36.25" r="1" fill="#ffb300"/><path fill="#ffd54f" d="M28,36c0,0.55-0.45,1-1,1c-0.35,0-0.66-0.18-0.84-0.46c0.27-0.11,0.55-0.23,0.84-0.37 c0.31-0.15,0.62-0.31,0.94-0.5C27.98,35.77,28,35.88,28,36z"/><path fill="#ffb300" d="M27.94,35.67c-0.32,0.19-0.63,0.35-0.94,0.5c-0.29,0.14-0.57,0.26-0.84,0.37 C26.06,36.38,26,36.2,26,36c0-0.55,0.45-1,1-1C27.43,35,27.81,35.28,27.94,35.67z"/><circle cx="31" cy="38" r="1" fill="#ffb300"/><path fill="#263238" d="M21.5,22h-2c-0.276,0-0.5-0.224-0.5-0.5s0.224-0.5,0.5-0.5h2c0.276,0,0.5,0.224,0.5,0.5 S21.776,22,21.5,22z"/><path fill="#263238" d="M28.5,22h-2c-0.276,0-0.5-0.224-0.5-0.5s0.224-0.5,0.5-0.5h2c0.276,0,0.5,0.224,0.5,0.5 S28.776,22,28.5,22z"/><defs><rect id="FEqv02t1DzqTAwx9hkVN~c" width="221.5" height="76.75" x="-144.25" y="84"/></defs><clipPath id="FEqv02t1DzqTAwx9hkVN~d"><use overflow="visible" xlink:href="#FEqv02t1DzqTAwx9hkVN~c"/></clipPath></svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#FF3D00" d="M41,26.5C41,35.6,33.6,43,24.5,43c-2.4,0-4.6-0.5-6.6-1.4l1.3-2.7c1.6,0.7,3.5,1.1,5.4,1.1C31.9,40,38,33.9,38,26.5c0-4.2-2-8-5-10.5v11.1l-5-5V15l-5.6,12H28v-2l5,5l-5,4v-2h-7.9L15,43H9l15-30c-7.2,0.3-13,6.2-13,13.5c0,2,0.4,3.9,1.2,5.6l-1.6,3.3C9,32.8,8,29.8,8,26.5C8,17.4,15.4,10,24.5,10c0.3,0,0.7,0,1,0L28,5h5v7.4C37.8,15.3,41,20.5,41,26.5z M28.7,36H33v-3.4L28.7,36z"/></svg>
|
||||
|
After Width: | Height: | Size: 488 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#455A64" d="M24,18.2c0.7,0,0.9,0.2,0.9,0.2l0.4-1.7c0,0,0.4,1.5,0.4,2.8c0.2,1.1,2.2,0.4,3.9,0C31.4,19.1,32,16,32,16h16c0,0-9.4,3.5-7,10c0,0-14.8-2-17,7l0,0c-2.2-9-17-7-17-7c2.4-6.5-7-10-7-10h16c0,0,0.6,3.1,2.3,3.5c1.7,0.4,3.9,1.1,3.9,0c0.2-1.1,0.4-2.8,0.4-2.8l0.4,1.7C23.1,18.4,23.4,18.2,24,18.2L24,18.2L24,18.2z"/></svg>
|
||||
|
After Width: | Height: | Size: 424 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="1600px" height="1600px"><path fill="#F44336" d="M30.5,9.8C27.2,5,21.5,5,19.2,5H6l4,2v25l-4,2h13.2c3.2,0,13.6,0,13.8-14c0-0.2,0-0.3,0-0.5C33,15,32,11.9,30.5,9.8z M20,32h-6V7h6c1.9,0,4.5-0.1,6.2,2.9c1,1.8,1.8,4.8,1.8,9.6c0,0,0,0.1,0,0.1C28,32.2,23.1,32,20,32z"/><path fill="#F44336" d="M28.2,14H15l4,2v25l-4,2h13.2C31.4,43,42,43,42,28.5S31.6,14,28.2,14z M29,41h-6V16h6c3.1,0,8-0.2,8,12.5S32.1,41,29,41z"/><path fill="#B71C1C" d="M27.6,14c0.1,0.6,0.2,1.3,0.3,2h-2c-0.1-0.7-0.2-1.4-0.3-2H27.6z M32.8,16.6c0.8,0.4,1.5,0.9,2.1,1.9c0-1.2-0.2-2.4-0.4-3.5c-0.7-0.3-1.5-0.5-2.2-0.6C32.6,15,32.7,15.8,32.8,16.6z M19,32h-2v2h2V32z M25,30.7c-0.6,0.6-1.3,0.9-2,1.1v2c0.6-0.1,1.3-0.3,2-0.5V30.7z"/></svg>
|
||||
|
After Width: | Height: | Size: 757 B |