refactor: add website code
@@ -0,0 +1,68 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
|
||||
#include <Sched/Scheduler.hpp>
|
||||
#include <Memory/Paging.hpp>
|
||||
|
||||
namespace Montauk::UserMemory {
|
||||
|
||||
static constexpr uint64_t USER_SPACE_END = 0x0000800000000000ULL;
|
||||
|
||||
inline bool IsUserPtr(uint64_t addr) {
|
||||
return addr == 0 || addr < USER_SPACE_END;
|
||||
}
|
||||
|
||||
inline bool ValidUserPtr(uint64_t addr) {
|
||||
return addr != 0 && addr < USER_SPACE_END;
|
||||
}
|
||||
|
||||
inline uint64_t CurrentPml4() {
|
||||
auto* proc = Sched::GetCurrentProcessPtr();
|
||||
return proc ? proc->pml4Phys : 0;
|
||||
}
|
||||
|
||||
inline bool Range(uint64_t addr, uint64_t size, bool requireWrite = false) {
|
||||
if (size == 0) return true;
|
||||
if (!ValidUserPtr(addr)) return false;
|
||||
if (addr + size < addr) return false;
|
||||
if (addr + size > USER_SPACE_END) return false;
|
||||
|
||||
uint64_t pml4Phys = CurrentPml4();
|
||||
if (pml4Phys == 0) return false;
|
||||
|
||||
return Memory::VMM::Paging::IsUserRangeAccessible(pml4Phys, addr, size, requireWrite);
|
||||
}
|
||||
|
||||
inline bool OptionalRange(uint64_t addr, uint64_t size, bool requireWrite = false) {
|
||||
return addr == 0 || Range(addr, size, requireWrite);
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
inline bool Readable(uint64_t addr) {
|
||||
return Range(addr, sizeof(T), false);
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
inline bool Writable(uint64_t addr) {
|
||||
return Range(addr, sizeof(T), true);
|
||||
}
|
||||
|
||||
inline bool String(uint64_t addr, uint64_t maxLen) {
|
||||
if (!ValidUserPtr(addr) || maxLen == 0) return false;
|
||||
|
||||
uint64_t pml4Phys = CurrentPml4();
|
||||
if (pml4Phys == 0) return false;
|
||||
|
||||
const char* str = (const char*)addr;
|
||||
for (uint64_t i = 0; i < maxLen; i++) {
|
||||
if (!Memory::VMM::Paging::IsUserRangeAccessible(pml4Phys, addr + i, 1, false)) {
|
||||
return false;
|
||||
}
|
||||
if (str[i] == '\0') return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,147 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="MontaukOS Documentation">
|
||||
<title>Documentation - MontaukOS</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
body {
|
||||
font-family: 'Open Sans', Arial, sans-serif;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 1em;
|
||||
line-height: 1.5;
|
||||
display: flex;
|
||||
gap: 2em;
|
||||
}
|
||||
p { margin: 0 0 0.5em; }
|
||||
h2 { margin: 0.5em 0; }
|
||||
.sidebar {
|
||||
width: 160px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.sidebar ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
.sidebar li {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
.sidebar a {
|
||||
color: #0066CC;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
}
|
||||
.sidebar a:hover {
|
||||
color: #004499;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.sidebar .current {
|
||||
color: #004499;
|
||||
}
|
||||
.sidebar hr {
|
||||
border: none;
|
||||
border-top: 1px solid #999;
|
||||
margin: 0.75em 0;
|
||||
}
|
||||
.main {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
a { color: #0000EE; }
|
||||
a:visited { color: #0066CC; }
|
||||
hr { border-style: solid; border-width: 1px 0 0 0; border-color: #999; }
|
||||
.box {
|
||||
border: 1px solid #999;
|
||||
padding: 0.5em;
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
.doc-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
.doc-list li {
|
||||
margin: 0.75em 0;
|
||||
}
|
||||
.doc-list a {
|
||||
font-weight: 600;
|
||||
}
|
||||
.doc-list p {
|
||||
margin: 0.25em 0 0 1.5em;
|
||||
color: #555;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="sidebar">
|
||||
<ul>
|
||||
<li><a href="../index.html">Home</a></li>
|
||||
<li><a href="index.html" class="current">Documentation</a></li>
|
||||
</ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li><a href="introduction.html">Introduction</a></li>
|
||||
<li><a href="#">Kernel</a></li>
|
||||
<li><a href="#">Userspace</a></li>
|
||||
<li><a href="#">Applications</a></li>
|
||||
<li><a href="#">Building</a></li>
|
||||
<li><a href="#">Contributing</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
<div class="center">
|
||||
<h1>Documentation</h1>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
||||
<h2>Welcome</h2>
|
||||
<p>
|
||||
Welcome to the MontaukOS documentation. Here you will find information about the
|
||||
operating system, its components, and how to use and develop for it.
|
||||
</p>
|
||||
|
||||
<h2>Documentation Index</h2>
|
||||
<ul class="doc-list">
|
||||
<li>
|
||||
<a href="introduction.html">Introduction</a>
|
||||
<p>Installation, running on emulator, and your first steps with MontaukOS.</p>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Kernel Architecture</a>
|
||||
<p>Overview of the preemptive multitasking kernel and its subsystems.</p>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Userspace Environment</a>
|
||||
<p>The desktop environment, window manager, and system services.</p>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Applications</a>
|
||||
<p>Documentation for the applications included with MontaukOS.</p>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Building from Source</a>
|
||||
<p>How to compile and build MontaukOS yourself.</p>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">Contributing</a>
|
||||
<p>Guidelines for contributing to the project.</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
|
||||
<div class="center">
|
||||
<a href="../index.html">Back to Home</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,105 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="Introduction to MontaukOS">
|
||||
<title>Introduction - MontaukOS</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
body {
|
||||
font-family: 'Open Sans', Arial, sans-serif;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 1em;
|
||||
line-height: 1.5;
|
||||
display: flex;
|
||||
gap: 2em;
|
||||
}
|
||||
p { margin: 0 0 0.5em; }
|
||||
h2 { margin: 0.5em 0; }
|
||||
.sidebar {
|
||||
width: 160px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.sidebar ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
.sidebar li {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
.sidebar a {
|
||||
color: #0066CC;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
}
|
||||
.sidebar a:hover {
|
||||
color: #004499;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.sidebar .current {
|
||||
color: #004499;
|
||||
}
|
||||
.sidebar hr {
|
||||
border: none;
|
||||
border-top: 1px solid #999;
|
||||
margin: 0.75em 0;
|
||||
}
|
||||
.main {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
a { color: #0000EE; }
|
||||
a:visited { color: #0066CC; }
|
||||
hr { border-style: solid; border-width: 1px 0 0 0; border-color: #999; }
|
||||
pre { background: #f0f0f0; padding: 0.5em; overflow-x: auto; }
|
||||
.box {
|
||||
border: 1px solid #999;
|
||||
padding: 0.5em;
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="sidebar">
|
||||
<ul>
|
||||
<li><a href="../index.html">Home</a></li>
|
||||
<li><a href="index.html">Documentation</a></li>
|
||||
</ul>
|
||||
<hr>
|
||||
<ul>
|
||||
<li><a href="introduction.html" class="current">Introduction</a></li>
|
||||
<li><a href="#">Kernel</a></li>
|
||||
<li><a href="#">Userspace</a></li>
|
||||
<li><a href="#">Applications</a></li>
|
||||
<li><a href="#">Building</a></li>
|
||||
<li><a href="#">Contributing</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
<div class="center">
|
||||
<h1>Introduction</h1>
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
||||
<h2>Welcome to MontaukOS</h2>
|
||||
<p>
|
||||
MontaukOS is a modern operating system
|
||||
</p>
|
||||
|
||||
<br>
|
||||
<hr>
|
||||
|
||||
<div class="center">
|
||||
<a href="index.html">Back to Documentation Index</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 2,1 C 2,1 0,1 0,3 V 14 C 0,14 0,16 2,16 H 13 C 13,16 15,16 15,14 V 3 C 15,1 13,1 13,1 Z M 2,3 H 2.84 7 V 8 H 2 V 4.41 4 Z M 8,3 H 13 V 8 H 8 Z M 9.44,4 C 9.1,4.08 8.9,4.58 9.16,4.84 L 9.81,5.5 9.16,6.16 C 8.9,6.31 8.85,6.72 9.06,6.94 9.28,7.15 9.69,7.1 9.84,6.84 L 10.5,6.19 11.16,6.84 C 11.31,7.1 11.72,7.15 11.94,6.94 12.15,6.72 12.1,6.31 11.84,6.16 L 11.19,5.5 11.84,4.84 C 12.1,4.61 11.99,4.11 11.66,4 11.64,4 11.61,4 11.59,4 11.43,3.98 11.27,4.04 11.16,4.16 L 10.5,4.81 9.84,4.16 C 9.78,4.08 9.69,4.03 9.59,4 9.54,3.99 9.49,3.99 9.44,4 Z M 3,5 V 6 H 4 5 6 V 5 H 5 4 Z M 2,9 H 7 V 14 H 2.84 2 V 13 Z M 8,9 H 13 V 13 14 H 8 Z M 4,10 V 11 H 3 V 12 H 4 V 13 H 5 V 12 H 6 V 11 H 5 V 10 Z M 9,10 V 11 H 12 V 10 Z M 9,12 V 13 H 12 V 12 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><defs><clipPath><rect width="384" height="384"/></clipPath><clipPath><rect width="384" height="384"/></clipPath><clipPath><rect width="384" height="384"/></clipPath><clipPath><rect width="384" height="384"/></clipPath></defs><path d="m192.02 23.25v168.75h-0.0156v-168.73h-141.43c-14.059 0.078125-25.547 10.5-27.328 24.074v144.68h0.03125v140.95c0 15.375 12.379 27.754 27.754 27.754h140.96v0.0312h141.18c15.156-0.082 27.34-12.184 27.582-27.297v-141.46h-0.0859v-141.04c-4e-5 -15.059-11.875-27.211-26.805-27.711z" fill="#5e616e"/><path d="m191.99 192v168.75h141.18c15.152-0.082 27.336-12.184 27.578-27.297v-141.46z" fill="#4a4c5c"/><path d="m23.281 192.01v140.95c0 15.375 12.379 27.754 27.754 27.754h140.97v-168.71z" fill="#73757f"/><path d="m23.25 184.52v7.5h0.03125v-7.5zm0.03125 140.95v7.5c0 15.375 12.379 27.754 27.754 27.754h140.96v0.0312h141.18c15.156-0.082 27.34-12.184 27.582-27.297v-7.5c-0.24219 15.113-12.426 27.215-27.582 27.297h-141.18v-0.0312h-140.96c-15.375 0-27.754-12.379-27.754-27.754z" fill="#4a4c5c"/><path d="m368.43 282.53c0 51.016-41.359 92.375-92.379 92.375s-92.379-41.359-92.379-92.375c0-51.02 41.359-92.379 92.379-92.379s92.379 41.359 92.379 92.379z" opacity=".3"/><path d="m368.43 275.03c0 51.016-41.359 92.375-92.379 92.375s-92.379-41.359-92.379-92.375c0-51.02 41.359-92.379 92.379-92.379s92.379 41.359 92.379 92.379z" fill="#b8174a"/><path d="m50.578 23.266c-14.059 0.078125-25.547 10.5-27.328 24.074v144.68h168.76v-168.75z" fill="#b3b3b3"/><path d="m114.32 79.055v29.453h29.344v13.266h-29.344v29.457h-13.375v-29.457h-29.344v-13.266h29.344v-29.453z" opacity=".3"/><path d="m114.32 71.555v29.453h29.344v13.266h-29.344v29.457h-13.375v-29.457h-29.344v-13.266h29.344v-29.453z" fill="#fff"/><path d="m250.49 112.43h70.375v14.5h-70.375z" opacity=".3"/><path d="m250.49 104.93h70.375v14.5h-70.375z" fill="#fff"/><path d="m141.48 259.53-24.398 24.395 24.398 24.281-9.4453 9.4453-24.395-24.285-24.395 24.285-9.4453-9.4453 24.395-24.281-24.395-24.395 9.4453-9.4453 24.395 24.395 24.395-24.395z" opacity=".3"/><path d="m141.48 252.03-24.398 24.395 24.398 24.281-9.4453 9.4453-24.395-24.285-24.395 24.285-9.4453-9.4453 24.395-24.281-24.395-24.395 9.4453-9.4453 24.395 24.395 24.395-24.395z" fill="#fff"/><path d="m240.02 263.08h72.062v13.207h-72.062zm0 25.574h72.062v13.324h-72.062z" opacity=".3"/><path d="m240.02 255.58h72.062v13.207h-72.062zm0 25.574h72.062v13.324h-72.062z" fill="#fff"/><path transform="scale(.75)" d="m256.03 31v10h189.12c19.906 0.66667 35.738 16.869 35.738 36.947v-10c-6e-5 -20.078-15.832-36.281-35.738-36.947h-189.12zm-188.59 0.021484c-18.745 0.10417-34.062 13.999-36.438 32.098v10c2.375-18.099 17.693-31.994 36.438-32.098h188.57v-10h-188.57zm188.57 224.97v10h0.02148v-10h-0.02148zm224.88 0v10h0.11523v-10h-0.11523z" fill="#fff" opacity=".3" stroke-width="1.3333"/></svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1,11.88 V 15 H 4.12 L 12,7.1195 8.88,4 Z M 14.76,4.3695 C 15.065,4.0647 15.09,3.5195 14.76,3.1895 L 12.81,1.2395 C 12.48,0.90947 11.934,0.93377 11.63,1.2395 L 10,2.8795 13.12,6 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 626 B |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><path d="m230.23 19.492-155.63 0.007812c-9.9132 0-18.428 8.5142-18.428 18.428v304.36c0 4.8868 2.422 9.3146 5.7676 12.66s7.7733 5.7676 12.66 5.7676h234.8c4.8867 0 9.3146-2.422 12.66-5.7676 3.3456-3.3455 5.7676-7.7733 5.7676-12.66v-225.19z" color="#000000" color-rendering="auto" dominant-baseline="auto" image-rendering="auto" opacity=".2" shape-rendering="auto" solid-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/><path d="m74.6 23.25c-7.5586 0-14.678 7.1191-14.678 14.678v308.14c0 7.1192 7.5586 14.678 14.678 14.678h234.8c7.1191 0 14.678-7.5586 14.678-14.678v-227.42l-95.405-95.405z" fill="#fff"/><path d="m59.923 338.57v7.5c0 7.1192 7.5586 14.678 14.678 14.678h234.8c7.1191 0 14.678-7.5586 14.678-14.678v-7.5c0 7.1192-7.5586 14.678-14.678 14.678h-234.8c-7.1191 0-14.678-7.5586-14.678-14.678z" opacity=".3"/><path d="m276.33 70.906-43.002 43.002 90.75 93.548 2.4e-4 -88.808z" fill="#ccc" stroke-width=".75"/><path d="m228.67 23.243 95.405 95.405h-80.728c-7.1191 0-14.678-7.5586-14.678-14.678z" fill="#f4f4f4"/><g transform="translate(12,4.5)" stroke-width=".9375"><path d="m372 289.5c0 49.706-40.294 90-90 90s-90-40.294-90-90 40.294-90 90-90 90 40.294 90 90z" fill-rule="evenodd" opacity=".3"/><path d="m372 282c0 49.706-40.294 90-90 90s-90-40.294-90-90 40.294-90 90-90 90 40.294 90 90z" fill="#d41717" fill-rule="evenodd"/><path d="m237 314.45v20.047h20.047l50.629-50.629-20.047-20.047zm88.411-48.252c2.1203-2.1203 2.1203-5.4638 0-7.5842l-12.532-12.528c-2.1203-2.1203-5.4602-2.1203-7.5805 0l-10.474 10.539 20.047 20.05z" opacity=".3"/><path d="m237 306.95v20.047h20.047l50.629-50.629-20.047-20.047zm88.411-48.252c2.1203-2.1203 2.1203-5.4638 0-7.5842l-12.532-12.528c-2.1203-2.1203-5.4602-2.1203-7.5805 0l-10.474 10.539 20.047 20.05z" fill="#fff"/></g></svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><defs><clipPath><rect width="384" height="384"/></clipPath></defs><path d="m59.23 23.25h265.54c19.871 0 35.98 16.109 35.98 35.98v265.54c0 19.871-16.109 35.98-35.98 35.98h-265.54c-19.871 0-35.98-16.109-35.98-35.98v-265.54c0-19.871 16.109-35.98 35.98-35.98z" fill="#d41717" fill-rule="evenodd"/><path d="m144.56 68.145c-12.84-0.22266-23.922 12.547-21.207 25.305 1.8281 19.496 14.398 35.32 24.207 51.418 1.1055 5.9961-2.0586 11.832-2.2695 17.781-6.3945 34.945-16.152 69.699-31.164 101.76-18.578 8.5508-39.613 16.996-50.477 35.426-6.8945 12.789 2.8164 30.047 17.066 31.395 13.223 1.8086 23.035-9.5195 30.266-19.016 7.5469-10.211 12.512-22.371 18.789-33.344 38-15.305 77.98-26 118.79-30.062 16.5 11.812 33.98 25.742 55.141 26.586 12.301-0.18359 22.25-12.121 20.902-24.25-0.78906-11.039-10.598-18.781-20.762-20.852-16.387-4.9375-33.941-2.2344-50.609-2.1133-32.082-25.633-61.695-55.125-85.023-88.871 1.7344-20.516 5.2109-43.207-5.4727-61.871-4.0586-5.8867-10.934-9.9219-18.176-9.2891m0.60937 18.633c3.6133 0.69531 3.8516 6.0781 4.8633 8.9531 0.95312 5.8633 0.84765 11.848 0.78125 17.77-4.3047-8.0391-9.8906-16.441-8.8945-25.969 1.1328-0.04687 2.1367-0.62109 3.25-0.75m19.906 80.004c19.117 23.773 40.355 45.668 63.531 65.512-30.559 4.6602-60.922 12.469-89.996 23 11.152-29.145 19.641-59.254 25.234-89.984 0.41015 0.48828 0.8164 0.98046 1.2266 1.4726m119.26 79.918c7.414 0.71484 15.969 0.28516 21.906 5.3945 0.5547 4.6094-5.0859 5.2812-8.0898 3.6133-6.2656-2.0938-12.465-4.7226-17.785-8.7305 1.3242-0.082 2.6445-0.2539 3.9766-0.27734m-185.25 48.492c-3.5234 6.5586-8.6562 12.738-14.008 17.383-1.7812 2.8828-6.668-2.4492-4.418-4.6992 4.6406-7.2695 12.75-11.121 19.926-15.461-0.5039 0.92579-1 1.8516-1.5039 2.7812" opacity=".3"/><path d="m144.56 60.645c-12.84-0.22266-23.922 12.547-21.207 25.305 1.8281 19.496 14.398 35.32 24.207 51.418 1.1055 5.9961-2.0586 11.832-2.2695 17.781-6.3945 34.945-16.152 69.699-31.164 101.76-18.578 8.5508-39.613 16.996-50.477 35.426-6.8945 12.789 2.8164 30.047 17.066 31.395 13.223 1.8086 23.035-9.5195 30.266-19.016 7.5469-10.211 12.512-22.371 18.789-33.344 38-15.305 77.98-26 118.79-30.062 16.5 11.812 33.98 25.742 55.141 26.586 12.301-0.18359 22.25-12.121 20.902-24.25-0.78906-11.039-10.598-18.781-20.762-20.852-16.387-4.9375-33.941-2.2344-50.609-2.1133-32.082-25.633-61.695-55.125-85.023-88.871 1.7344-20.516 5.2109-43.207-5.4727-61.871-4.0586-5.8867-10.934-9.9219-18.176-9.2891m0.60937 18.633c3.6133 0.69531 3.8516 6.0781 4.8633 8.9531 0.95312 5.8633 0.84765 11.848 0.78125 17.77-4.3047-8.0391-9.8906-16.441-8.8945-25.969 1.1328-0.04687 2.1367-0.62109 3.25-0.75m19.906 80.004c19.117 23.773 40.355 45.668 63.531 65.512-30.559 4.6602-60.922 12.469-89.996 23 11.152-29.145 19.641-59.254 25.234-89.984 0.41015 0.48828 0.8164 0.98046 1.2266 1.4726m119.26 79.918c7.4141 0.71484 15.969 0.28516 21.906 5.3945 0.55469 4.6094-5.0859 5.2812-8.0898 3.6133-6.2656-2.0938-12.465-4.7226-17.785-8.7305 1.3242-0.082 2.6445-0.2539 3.9766-0.27734m-185.25 48.492c-3.5234 6.5586-8.6562 12.738-14.008 17.383-1.7812 2.8828-6.668-2.4492-4.418-4.6992 4.6406-7.2695 12.75-11.121 19.926-15.461-0.5039 0.92579-1 1.8516-1.5039 2.7812" fill="#fff"/><path transform="scale(.75)" d="m78.975 31c-26.495 0-47.975 21.48-47.975 47.975v10c0-26.495 21.48-47.975 47.975-47.975h354.05c26.495 0 47.975 21.48 47.975 47.975v-10c0-26.495-21.48-47.975-47.975-47.975z" fill="#fff" fill-rule="evenodd" opacity=".3"/><path transform="scale(.75)" d="m31 423.03v10c0 26.495 21.48 47.975 47.975 47.975h354.05c26.495 0 47.975-21.48 47.975-47.975v-10c0 26.495-21.48 47.975-47.975 47.975h-354.05c-26.495 0-47.975-21.48-47.975-47.975z" fill-rule="evenodd" opacity=".3"/></svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3,1 C 1,1 1,3 1,3 V 13 C 1,15 3,15 3,15 H 6.07 L 6.06,14.99 V 14.98 L 5.94,14.77 7.57,13.82 C 7.53,13.55 7.5,13.28 7.5,13 7.5,12.72 7.53,12.45 7.57,12.18 L 5.94,11.23 7.94,7.77 9.57,8.71 C 10.01,8.37 10.49,8.09 11,7.89 V 6 H 15 V 3 C 15,3 15,1 13,1 Z M 13,11 C 11.9,11 11,11.9 11,13 11,14.1 11.9,15 13,15 14.1,15 15,14.1 15,13 15,11.9 14.1,11 13,11 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 798 B |
|
After Width: | Height: | Size: 8.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><defs><clipPath><rect width="384" height="384"/></clipPath><clipPath><rect width="384" height="384"/></clipPath></defs><path d="m198 79.5c-9.9414 0-18 8.0586-18 18 0 9.9414 8.0586 18 18 18 9.9414 0 18-8.0586 18-18 0-9.9414-8.0586-18-18-18z"/><path transform="scale(.75)" d="m236.8 32c-24.745 0-44.803 20.058-44.803 44.803v134.39c0 2.902 0.28556 5.7361 0.8125 8.4844-0.86529 1.0644-1.7006 2.15-2.4902 3.2656l-58.082 82.105-58.09 82.104c-13.542 19.156-13.536 42.745 0.015625 61.896 13.547 19.151 38.578 30.947 65.672 30.947h232.32c27.094 0 52.125-11.796 65.672-30.947 13.552-19.151 13.557-42.74 0.01563-61.896l-58.09-82.104-58.072-82.105c-0.79289-1.1206-1.626-2.2154-2.4961-3.2852 0.5245-2.7422 0.80859-5.5697 0.80859-8.4648v-134.39c0-24.745-20.058-44.803-44.803-44.803h-38.395z" fill="#2b2e3a" stroke-width="1.3333"/><path transform="scale(.75)" d="m264 106c-13.255 0-24 10.745-24 24 0 13.255 10.745 24 24 24s24-10.745 24-24c0-13.255-10.745-24-24-24zm-32 64c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm48 48c-13.255 0-24 10.745-24 24s10.745 24 24 24c13.255 0 24-10.745 24-24s-10.745-24-24-24zm-48 64c-13.255 0-24 10.745-24 24 0 13.255 10.745 24 24 24s24-10.745 24-24c0-13.255-10.745-24-24-24zm-60.906 80.006-21.109 31.828c-17.01 25.677 4.2663 48.166 38.303 48.166h135.43c34.036 0 55.313-22.489 38.303-48.166l-21.109-31.828h-169.81z" fill="#000307" opacity=".3" stroke-width="1.3333"/><g fill="#357af0"><path d="m198 72c-9.9414 0-18 8.0586-18 18s8.0586 18 18 18 18-8.0586 18-18-8.0586-18-18-18z"/><path d="m174 120c-9.9414 0-18 8.0586-18 18s8.0586 18 18 18 18-8.0586 18-18-8.0586-18-18-18z"/><path d="m210 156c-9.9414 0-18 8.0586-18 18s8.0586 18 18 18 18-8.0586 18-18-8.0586-18-18-18z"/><path d="m174 204c-9.9414 0-18 8.0586-18 18s8.0586 18 18 18 18-8.0586 18-18-8.0586-18-18-18z"/><path d="m128.32 264-15.832 23.871c-12.758 19.258 3.1992 36.125 28.727 36.125h101.57c25.527 0 41.484-16.867 28.727-36.125l-15.832-23.871z"/></g><path transform="scale(.75)" d="m236.8 32c-24.745 0-44.803 20.058-44.803 44.803v10c0-24.745 20.058-44.803 44.803-44.803h38.395c24.745 0 44.803 20.058 44.803 44.803v-10c0-24.745-20.058-44.803-44.803-44.803h-38.395zm83.197 188.69v0.50782c0 2.8951-0.2841 5.7227-0.80859 8.4648 0.87006 1.0698 1.7032 2.1646 2.4961 3.2852l58.072 82.105 58.09 82.104c5.7106 8.0783 9.0022 16.946 9.8945 25.936 1.2216-12.318-2.0697-24.866-9.8945-35.936l-58.09-82.104-58.072-82.105c-0.54195-0.76594-1.109-1.5158-1.6875-2.2578zm-128 0.02149c-0.57514 0.73466-1.14 1.4766-1.6777 2.2363l-58.082 82.105-58.09 82.104c-7.8248 11.069-11.116 23.618-9.8945 35.936 0.89235-8.9897 4.1839-17.857 9.8945-25.936l58.09-82.104 58.082-82.105c0.78964-1.1156 1.625-2.2012 2.4902-3.2656-0.52693-2.7482-0.8125-5.5824-0.8125-8.4844v-0.48633z" fill="#fff" opacity=".1" stroke-width="1.3333"/><path transform="scale(.75)" d="m192 201.2v9.5137c0.26942-0.34416 0.53647-0.68973 0.8125-1.0293-0.52693-2.7482-0.8125-5.5824-0.8125-8.4844zm128 0c0 2.8951-0.2841 5.7227-0.80859 8.4648 0.27537 0.33859 0.54072 0.68373 0.80859 1.0273v-9.4922zm-255.74 211.89c-1.2237 12.328 2.0731 24.886 9.9102 35.961 13.547 19.151 38.578 30.947 65.672 30.947h232.32c27.094 0 52.125-11.796 65.672-30.947 7.8371-11.075 11.134-23.633 9.9102-35.961-0.89248 8.9994-4.1889 17.876-9.9102 25.961-13.547 19.151-38.578 30.947-65.672 30.947h-232.32c-27.094 0-52.125-11.796-65.672-30.947-5.7212-8.0849-9.0177-16.962-9.9102-25.961z" opacity=".3" stroke-width="1.3333"/></svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><path d="m335.23 23.932-194.9 44.933c-27.47 3.4612-26.423 31.592-26.423 31.592v119.93c-6.3463-1.8302-12.917-2.7707-19.522-2.7961-39.531 0-71.581 32.049-71.581 71.581 0 39.531 32.049 71.581 71.581 71.581 36.998-0.0173 67.886-28.228 71.25-65.073h0.33045v-180.15l143.16-34.049v99.86c-6.3464-1.8302-12.917-2.7707-19.522-2.7961-39.531 0-71.581 32.049-71.581 71.581s32.049 71.581 71.581 71.581c36.998-0.0174 67.886-28.228 71.25-65.073h0.33044v-208.23s0.33893-30.003-25.957-24.466z" fill="#357af0" stroke-width="1.0846"/><path transform="scale(.75)" d="m412.18 98.641-190.88 45.4v10l190.88-45.4v-10zm-121.34 229.86c-0.08552 1.6563-0.13086 3.3224-0.13086 5 0 52.708 42.733 95.441 95.441 95.441 49.33-0.0232 90.515-37.637 95-86.764h0.44141v-10h-0.44141c-4.4851 49.127-45.67 86.741-95 86.764-51.031 0-92.71-40.057-95.311-90.441zm-260.29 52.059c-0.085519 1.6563-0.13086 3.3224-0.13086 5 0 52.708 42.733 95.441 95.441 95.441 49.33-0.02307 90.515-37.637 95-86.764h0.4414v-10h-0.4414c-4.4851 49.127-45.67 86.74-95 86.764-51.031 0-92.71-40.057-95.311-90.441z" opacity=".3" stroke-width="1.4461"/><path transform="scale(.75)" d="m454.56 31.004c-2.3228 0.040003-4.8448 0.32946-7.584 0.90625l-259.87 59.91c-36.626 4.615-35.23 42.121-35.23 42.121v10s-1.3959-37.506 35.23-42.121l259.87-59.91c35.062-7.3829 34.609 32.621 34.609 32.621v-10s0.38395-33.999-27.025-33.527zm-68.416 207.05c-52.708 0-95.441 42.733-95.441 95.441 0 1.6769 0.04541 3.3443 0.13086 5 2.6014-50.384 44.28-90.441 95.311-90.441 8.8064 0.03384 17.568 1.2883 26.029 3.7285v-10c-8.4618-2.4402-17.223-3.6946-26.029-3.7285zm-260.29 52.059c-52.708 0-95.441 42.733-95.441 95.441 0 1.6769 0.045408 3.3443 0.13086 5 2.6014-50.384 44.28-90.439 95.311-90.439 8.8063 0.03384 17.568 1.2863 26.029 3.7266v-10c-8.4618-2.4402-17.223-3.6945-26.029-3.7285z" fill="#fff" opacity=".1" stroke-width="1.4461"/></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#dfdfdf; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 8,1 4,5 H 1 V 11 H 4 L 8,15 Z M 10,1 V 2.5 C 12.32,3.24 14,5.43 14,8 14,10.57 12.32,12.76 10,13.5 V 15 C 13.15,14.22 15.5,11.4 15.5,8 15.5,4.6 13.15,1.78 10,1 Z M 10,5 V 11 C 11.06,10.42 11.789,9.3 11.789,8 11.789,6.7 11.07,5.58 10,5 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 683 B |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><defs><clipPath><rect width="384" height="384"/></clipPath><clipPath><rect width="384" height="384"/></clipPath><clipPath><rect width="384" height="384"/></clipPath></defs><path d="m192 23.25c93.199 0 168.75 75.551 168.75 168.75 0 93.199-75.551 168.75-168.75 168.75-93.199 0-168.75-75.551-168.75-168.75 0-93.199 75.551-168.75 168.75-168.75z" fill="#4aaee6" fill-rule="evenodd"/><path d="m145.59 163.79 34.797 35.188-34.797 35.187 11.066 11.156 28.93-28.613v67.168l52.816-49.801-32.02-35.098 31.934-35.047-52.445-48.805-0.24609 66.852-28.93-29.305zm55.93-15.758 16.039 15.27-16.039 19.785zm0 70.207 16.078 16.414-16.043 15.273z" fill="#000204" opacity=".3"/><path d="m145.59 156.29 34.797 35.188-34.797 35.188 11.066 11.156 28.93-28.613v67.168l52.816-49.801-32.02-35.098 31.934-35.047-52.445-48.805-0.24609 66.852-28.93-29.305zm55.93-15.758 16.039 15.27-16.039 19.785zm0 70.207 16.078 16.414-16.043 15.273z" fill="#fff"/><path transform="scale(.75)" d="m31.064 251c-0.036282 1.6632-0.064453 3.3281-0.064453 5 0 124.27 100.73 225 225 225 124.27 0 225-100.73 225-225 0-1.6719-0.02817-3.3368-0.06445-5-2.6604 121.96-102.34 220-224.94 220-122.59 0-222.28-98.045-224.94-220z" fill-rule="evenodd" opacity=".3" stroke-width="1.3333"/><path transform="scale(.75)" d="m256 31c-124.27 0-225 100.73-225 225 0 1.6719 0.028171 3.3368 0.064453 5 2.6604-121.96 102.34-220 224.94-220 122.59 0 222.28 98.045 224.94 220 0.03628-1.6632 0.06445-3.3281 0.06445-5 0-124.27-100.73-225-225-225z" fill="#fff" fill-rule="evenodd" opacity=".3" stroke-width="1.3333"/></svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 10 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 15,1 C 16,1 16,2 16,2 V 12 C 16,12 16,13 15,13 H 1 C 1,13 0,13 0,12 V 2 C 0,2 0,1 1,1 Z M 14,3 H 2 V 11 H 14 Z M 11,14 V 15 H 5 V 14 C 5,13 6,13 6,13 H 10 C 10,13 11,13 11,14 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 624 B |
@@ -0,0 +1 @@
|
||||
<svg width="384pt" height="384pt" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><clipPath><path d="m111 119h177v23h-177z"/></clipPath><clipPath><path d="m177 130h45v89h-45z"/></clipPath><clipPath><path d="m111 207h177v89h-177z"/></clipPath><clipPath id="d"><rect width="384" height="384"/></clipPath><g clip-path="url(#d)"/><linearGradient id="a" x1="24.161" x2="470.92" y1="255.65" y2="-4.7024" gradientTransform="matrix(.83186 0 0 .83186 32.26 47.328)" gradientUnits="userSpaceOnUse"><stop stop-color="#367bf0" offset="0"/><stop stop-color="#b7164b" stop-opacity=".99608" offset="1"/></linearGradient></defs><rect x="47.428" y="94.902" width="289.14" height="187.8" rx="6.6506" ry="6.2107" fill="#272a34" style="paint-order:normal"/><rect x="47.43" y="263.28" width="289.14" height="20.687" rx="0" ry="0" style="paint-order:normal"/><path d="m19.879 272.02v12.419h0.0903c-0.0258 0.21425-0.0516 0.4285-0.0516 0.64854v0.90913c0 4.731 9e-3 4.8757 7.0749 4.8757h330.05c7.0663 0 7.0706-0.28663 7.0706-5.0176 0 0 9e-3 -0.51247 0-0.76726-9e-3 -0.21714-0.0258-0.43429-0.0473-0.64854l9e-3 -7.2477v-5.171z" fill="#fff" fill-rule="evenodd" opacity=".2" stroke="#000" stroke-width="8.2576"/><path d="m19.879 272.02v12.419h0.0903c-0.0258 0.21425-0.0516 0.4285-0.0516 0.64854v0.90913c0 4.731 9e-3 4.8757 7.0749 4.8757h330.05c7.0663 0 7.0706-0.28663 7.0706-5.0176 0 0 9e-3 -0.51247 0-0.76726-9e-3 -0.21714-0.0258-0.43429-0.0473-0.64854l9e-3 -7.2477v-5.171z" fill="#fff" fill-rule="evenodd" stroke-width=".90337"/><rect x="149.91" y="271.95" width="83.759" height="5.9145" rx="0" ry="0" opacity=".5" style="paint-order:normal"/><rect x="52.359" y="100.57" width="279.28" height="159.42" rx="3.124" ry="3.124" fill="url(#a)" stroke-width=".83186"/><path d="m165 239.49c-2.1254 0-3.8365 1.7111-3.8365 3.8365v8.7171c0 2.1254 1.7111 3.8365 3.8365 3.8365h7.7459c2.1254 0 3.8365-1.7111 3.8365-3.8365v-8.7171c0-2.1254-1.7111-3.8365-3.8365-3.8365zm23.126 0c-2.1254 0-3.8365 1.7111-3.8365 3.8365v8.7171c0 2.1254 1.7111 3.8365 3.8365 3.8365h7.7452c2.1254 0 3.8365-1.7111 3.8365-3.8365v-8.7171c0-2.1254-1.7111-3.8365-3.8365-3.8365zm23.124 0c-2.1254 0-3.8365 1.7111-3.8365 3.8365v8.7171c0 2.1254 1.7111 3.8365 3.8365 3.8365h7.7452c2.1254 0 3.8365-1.7111 3.8365-3.8365v-8.7171c0-2.1254-1.7111-3.8365-3.8365-3.8365z" opacity=".3" stroke-linejoin="round" stroke-width="7.5"/><rect x="161.16" y="234.7" width="15.418" height="16.39" rx="3.8365" ry="3.8365" fill="#fff" stroke-linejoin="round" stroke-width="7.5"/><rect x="184.29" y="234.7" width="15.418" height="16.39" rx="3.8365" ry="3.8365" fill="#fff" stroke-linejoin="round" stroke-width="7.5"/><rect x="207.42" y="234.7" width="15.418" height="16.39" rx="3.8365" ry="3.8365" fill="#fff" stroke-linejoin="round" stroke-width="7.5"/></svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#eeeeec; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(-624 -500)">
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m636 520c-4.4183 0-8-3.5817-8-8s3.5817-8 8-8 8 3.5817 8 8-3.5817 8-8 8zm-1-3h2v-7h-2v7zm0-8h2v-2h-2v2z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 593 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3,1 C 3,1 2,1 2,2 V 14 C 2,15 3,15 3,15 H 13 C 14,15 14,14 14,14 V 9.75 L 12,11 V 13 H 4 V 3 H 12 V 5 L 14,6.25 V 2 C 14,1 13,1 13,1 Z M 10,5 V 7 H 6 V 9 H 10 V 11 L 14.5,8 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 622 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m 14,15 c 0.55,0 1,-0.45 1,-1 V 2.9999998 L 13,0.99999975 H 1.9999999 c -0.55,0 -1,0.45000005 -1,1.00000005 V 14 c 0,0.55 0.45,1 1,1 z M 13,13 H 2.9999999 V 2.9999998 h 1.0000002 v 5 H 12 v -5 h 1 z M 8.0000001,6.9999998 h -2 v -4 h 2 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 682 B |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><path d="m65.469 33.27c0-5.4258 6.457-11.125 11.883-11.125h181.88l77.637 77.18v224.2c0 5.2422-5.832 11.16-11.07 11.16h-260.33z" fill="#1a3e7b"/><path transform="scale(.75)" d="m449.16 421.37c0 6.9896-7.7758 14.879-14.76 14.879h-347.11v10h347.11c6.984 0 14.76-7.8893 14.76-14.879v-10z" style="fill:#071223;opacity:.3;stroke-width:1.3333"/><path d="m65.617 31.82c0-5.3438 7.4336-9.6836 12.777-9.6836h7.5078v312.52h-20.285v-302.84z" fill-opacity=".16863"/><path d="m46.93 61.293c0-5.9805 7.3789-11.977 13.359-11.977h180.41l77.633 77.18s0.085938 149.2 0.085938 221.34c0 5.2773-9.1641 14.012-14.441 14.012h-243.04c-6.0742 0-14.012-5.582-14.012-11.66z" fill="#b7164b"/><path d="m88.453 286.87c-3.3359 0-3.3359-10 0-10h107.2c3.3359 0 3.3359 10 0 10zm0.042969-39.988c-3.3359 0-3.3359-10.004 0-10.004h193.7c3.3359 0 3.3359 10.004 0 10.004zm0-39.992c-3.3359 0-3.3359-10.004 0-10.004h193.7c3.3359 0 3.3359 10.004 0 10.004zm0-40.012c-3.3281 0-3.3281-9.9805 0-9.9805h193.7c3.3281 0 3.3281 9.9805 0 9.9805z" fill="#fff"/><path d="m46.82 60.445c0-5.6367 6.9922-11.254 12.629-11.254 25.684 0 7.7148 0.082032 7.7148 0.082032v312.52h-6.9453c-5.8086 0-13.34-5.4023-13.34-11.211 0-88.199-0.058594-193.35-0.058594-290.15z" fill-opacity=".16863"/><path d="m243.84 122.99 57.316-58.73 35.637 35.352 0.15625 115.59z" fill-opacity=".24706"/><path transform="scale(.75)" d="m80.385 65.754c-7.9735 0-17.811 7.9967-17.811 15.971v10c0-7.974 9.8371-15.971 17.811-15.971h240.55v-10z" style="fill:#fdedf2;opacity:.2;stroke-width:1.3333"/><path d="m240.38 49.332 78.195 77.473s-44.375 0.28906-67.477 0c-5.4023-0.09375-10.539-6.7578-10.719-12.16-0.76953-22.887 0-65.312 0-65.312z" fill="#cc5b80"/><path d="m263.11 97.508 44.953-27.219 28.492 29.078 0.41016 73.539z" fill-opacity=".24706"/><path transform="scale(.75)" d="m103.14 29.527c-7.2347 0-15.844 7.5976-15.844 14.832v10c0-7.2344 8.6091-14.832 15.844-14.832h242.51v-10z" style="fill:#fff;opacity:.1;stroke-width:1.3333"/><path d="m259.21 22.23 77.898 77.406s-44.375 0.28516-67.477 0c-5.4023-0.097657-10.539-6.7617-10.723-12.164-0.76562-22.887 0.30078-65.242 0.30078-65.242z" fill="#435f8e"/><path transform="scale(.75)" d="m424.55 453.84c-0.06633 7.0422-12.233 18.625-19.25 18.625h-324.05c-8.097 0-18.678-7.4393-18.684-15.541v9.9941c0 8.104 10.585 15.547 18.684 15.547h324.05c7.0359 0 19.254-11.647 19.254-18.684 0-2.6037-0.00374-7.1931-0.00391-9.9414z" style="opacity:.3;stroke-width:1.3333"/></svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 4.9 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="f"><rect width="384" height="384"/></clipPath><clipPath id="g"><rect width="384" height="384"/></clipPath><clipPath id="h"><rect width="384" height="384"/></clipPath><clipPath id="i"><rect width="384" height="384"/></clipPath></defs><g transform="translate(.0038 -.45332)"><path d="m69.555 24.285c-8.7146 0-15.781 6.1914-15.781 13.828v2.5576c-0.0018 0.09687-0.0073 0.19275-0.0073 0.29004v303.88c0 8.7146 7.066 15.781 15.781 15.781h244.89c8.7146 0 15.781-7.066 15.781-15.781v-40.132c2e-3 -0.0851 7e-3 -0.16939 7e-3 -0.25488v-266.34c0-7.6366-7.0674-13.828-15.782-13.828z" opacity=".2" stroke="#000" stroke-width="7.5"/><path d="m69.555 24.285h244.89c8.7148 0 15.781 7.0664 15.781 15.777v303.88c0 8.7148-7.0664 15.781-15.781 15.781h-244.89c-8.7148 0-15.781-7.0664-15.781-15.781v-303.88c0-8.7109 7.0664-15.777 15.781-15.777z"/><g fill="#fff"><path d="m74.383 329.47h116.23c2.3945 0 4.3359 1.9414 4.3359 4.3359v8.5664c0 2.3945-1.9414 4.3398-4.3359 4.3398h-116.23c-2.3984 0-4.3398-1.9453-4.3398-4.3398v-8.5664c0-2.3945 1.9414-4.3359 4.3398-4.3359z"/><path d="m69.562 23.387h244.89c8.7148 0 15.781 6.1914 15.781 13.828v266.34c0 7.6406-7.0664 13.832-15.781 13.832h-244.89c-8.7148 0-15.781-6.1914-15.781-13.832v-266.34c0-7.6367 7.0664-13.828 15.781-13.828z"/><path d="m275.97 338.06c0 4.2695-3.4609 7.7305-7.7305 7.7305-4.2734 0-7.7344-3.4609-7.7344-7.7305s3.4609-7.7305 7.7344-7.7305c4.2695 0 7.7305 3.4609 7.7305 7.7305z"/><path d="m299.85 338.06c0 4.2695-3.4648 7.7305-7.7344 7.7305s-7.7305-3.4609-7.7305-7.7305 3.4609-7.7305 7.7305-7.7305 7.7344 3.4609 7.7344 7.7305z"/></g><path transform="scale(.75)" d="m350.6 227.18c0 52.24-42.349 94.589-94.589 94.589s-94.589-42.349-94.589-94.589 42.349-94.589 94.589-94.589 94.589 42.349 94.589 94.589zm0 0" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="21.924"/><path d="m192.01 98.725c-43.623 0-79.162 35.539-79.162 79.162s35.539 79.162 79.162 79.162 79.162-35.539 79.162-79.162-35.539-79.162-79.162-79.162zm0 16.441c34.736 0 62.721 27.984 62.721 62.721s-27.984 62.721-62.721 62.721c-34.736 0-62.721-27.984-62.721-62.721s27.984-62.721 62.721-62.721z" color="#000000" color-rendering="auto" dominant-baseline="auto" image-rendering="auto" opacity=".3" shape-rendering="auto" solid-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/><circle cx="316.31" cy="303.46" r="5.6089" opacity=".3"/><circle cx="67.882" cy="37.11" r="5.6089" opacity=".3"/><circle cx="316.31" cy="37.312" r="5.6089" opacity=".3"/><circle cx="67.711" cy="303.46" r="5.6089" opacity=".3"/></g></svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3,1 C 3,1 2,1 2,2 V 11 C 2,11 2,12 3,12 H 4 V 3 H 12 V 2 C 12,1 11,1 11,1 Z M 6,4 C 6,4 5,4 5,5 V 15 C 5,16 6,16 6,16 H 14 C 14,16 15,16 15,15 V 5 C 15,4 14,4 14,4 Z M 7,6 H 13 V 14 H 7 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 635 B |
@@ -0,0 +1,6 @@
|
||||
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }</style>
|
||||
</defs>
|
||||
<path d="m4 1a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 1.4199219-0.3574219l1.4921875 1.3574219-1.4921875 1.3574219c-0.4365217-0.2345889-0.9243585-0.3573868-1.4199219-0.3574219-1.6568542 0-3 1.343146-3 3s1.3431458 3 3 3 3-1.343146 3-3c-4.7e-5 -0.399103-0.0797275-0.794186-0.234375-1.162109l1.6347656-1.4863285 5.1132814 4.6484375h1.486328v-1.351562l-8.234375-7.4863286a3 3 0 0 0 0.234375-1.1621094 3 3 0 0 0-3-3zm9.513672 1-4.3691408 3.9726562 1.4863278 1.3515626 4.369141-3.9726563v-1.3515625h-1.486328zm-9.513672 1a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1zm0 8c0.5522847 0 1 0.447715 1 1s-0.4477153 1-1 1-1-0.447715-1-1 0.4477153-1 1-1z" style="fill:currentColor" class="ColorScheme-Text"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 8 0 A 2 2 0 0 0 6 2 L 3 2 C 2.446 2 2 2.446 2 3 L 2 14 C 2 14.554 2.446 15 3 15 L 13 15 C 13.554 15 14 14.554 14 14 L 14 3 C 14 2.446 13.554 2 13 2 L 10 2 A 2 2 0 0 0 8 0 z M 8 1 A 1 1 0 0 1 9 2 A 1 1 0 0 1 8 3 A 1 1 0 0 1 7 2 A 1 1 0 0 1 8 1 z M 4 4 L 5 4 L 5 5 L 11 5 L 11 4 L 12 4 L 12 13 L 4 13 L 4 4 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 754 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 9 2 L 9 4 L 6 4 C 3.2473 4 1 6.2473 1 9 C 1 11.7527 3.2473 14 6 14 L 11 14 L 11 12 L 6 12 C 4.3207 12 3 10.6793 3 9 C 3 7.3207 4.3207 6 6 6 L 9 6 L 9 8 L 14 5 L 9 2 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 620 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 12.778,1.2222 C 12.778,1.2222 12.278,0.72224 11.778,1.2222 L 10,3 13,6 14.778,4.2222 C 15.278,3.7222 14.778,3.2222 14.778,3.2222 Z M 9,4 1,12 V 15 H 4 L 12,7 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 607 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 7 2 L 2 5 L 7 8 L 7 6 L 10 6 C 11.6793 6 13 7.3207 13 9 C 13 10.6793 11.6793 12 10 12 L 5 12 L 5 14 L 10 14 C 12.7527 14 15 11.7527 15 9 C 15 6.2473 12.7527 4 10 4 L 7 4 L 7 2 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 631 B |
@@ -0,0 +1 @@
|
||||
<svg width="384pt" height="384pt" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="a" x1="83.088" x2="570.52" y1="923.64" y2="573.61" gradientTransform="matrix(.75 0 0 .75 0 -405.27)" gradientUnits="userSpaceOnUse"><stop stop-color="#357af0" offset="0"/><stop stop-color="#8c42ab" offset="1"/></linearGradient></defs><path d="m30.992 55.805h322.02c8.418 0 15.242 6.8242 15.242 15.242v241.91c0 8.4141-6.8242 15.238-15.242 15.238h-322.02c-8.418 0-15.242-6.8242-15.242-15.238v-241.91c0-8.418 6.8242-15.242 15.242-15.242z" fill="url(#a)"/><path d="m149.77 279.74c-3.324 0-6 2.676-6 6v13.633c0 3.324 2.676 6 6 6h12.114c3.324 0 6-2.676 6-6v-13.633c0-3.324-2.676-6-6-6zm36.168 0c-3.324 0-6 2.676-6 6v13.633c0 3.324 2.676 6 6 6h12.113c3.324 0 6-2.676 6-6v-13.633c0-3.324-2.676-6-6-6zm36.164 0c-3.324 0-6 2.676-6 6v13.633c0 3.324 2.676 6 6 6h12.113c3.324 0 6-2.676 6-6v-13.633c0-3.324-2.676-6-6-6z" opacity=".3" stroke-linejoin="round" stroke-width="7.5"/><path transform="scale(.75)" d="m21 397.27v20c0 11.219 9.0983 20.316 20.322 20.316h429.36c11.224 0 20.322-9.0976 20.322-20.316v-20c0 11.219-9.0983 20.316-20.322 20.316h-429.36c-11.224 0-20.322-9.0976-20.322-20.316z" opacity=".3" stroke-width="1.3333"/><path transform="scale(.75)" d="m41.322 74.406c-11.224 0-20.322 9.0983-20.322 20.322v10c0-11.224 9.0983-20.322 20.322-20.322h429.36c11.224 0 20.322 9.0983 20.322 20.322v-10c0-11.224-9.0983-20.322-20.322-20.322h-429.36z" fill="#fff" opacity=".2" stroke-width="1.3333"/><rect x="143.77" y="272.24" width="24.113" height="25.633" rx="6" ry="6" fill="#fff" stroke-linejoin="round" stroke-width="7.5"/><rect x="179.94" y="272.24" width="24.113" height="25.633" rx="6" ry="6" fill="#fff" stroke-linejoin="round" stroke-width="7.5"/><rect x="216.11" y="272.24" width="24.113" height="25.633" rx="6" ry="6" fill="#fff" stroke-linejoin="round" stroke-width="7.5"/></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 8.8 KiB |
|
After Width: | Height: | Size: 8.7 KiB |
|
After Width: | Height: | Size: 8.9 KiB |
|
After Width: | Height: | Size: 8.4 KiB |
|
After Width: | Height: | Size: 8.8 KiB |
|
After Width: | Height: | Size: 8.5 KiB |
|
After Width: | Height: | Size: 8.4 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3,1 C 2.446,1 2,1.446 2,2 V 15 C 2,15.554 2.446,16 3,16 H 13 C 13.554,16 14,15.554 14,15 V 5 L 10,1 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 549 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1,3 V 14 C 1,14 1,15 2,15 H 14 C 14,15 15,15 15,14 V 5 C 15,4 14,4 14,4 H 9 L 7,2 H 2 C 2,2 1,2 1,3 Z M 7,6 H 9 V 8 H 11 V 10 H 9 V 12 H 7 V 10 H 5 V 8 H 7 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 605 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1,2 V 13 C 1,13 1,14 2,14 H 14 C 14,14 15,14 15,13 V 4 C 15,3 14,3 14,3 H 9 L 7,1 H 2 C 2,1 1,1 1,2 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 549 B |
|
After Width: | Height: | Size: 8.2 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1,1 V 3 H 15 V 1 Z M 1,5 V 7 H 9 V 5 Z M 15,5 10,8 15,11 Z M 1,9 V 11 H 9 V 9 Z M 1,13 V 15 H 15 V 13 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 551 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1,1 V 3 H 15 V 1 Z M 1,5 V 11 L 6,8 Z M 7,5 V 7 H 15 V 5 Z M 15,9 H 7 V 11 H 15 Z M 1,13 V 15 H 15 V 13 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 553 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1,1 V 3 H 15 V 1 Z M 4,5 V 7 H 12 V 5 Z M 4,9 V 11 H 12 V 9 Z M 1,13 V 15 H 15 V 13 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 533 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1,1 V 3 H 15 V 1 Z M 1,5 V 7 H 9 V 5 Z M 1,9 V 11 H 9 V 9 Z M 1,13 V 15 H 15 V 13 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 531 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1,1 V 3 H 15 V 1 Z M 7,5 V 7 H 15 V 5 Z M 7,9 V 11 H 15 V 9 Z M 1,13 V 15 H 15 V 13 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 533 B |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><path d="m360 192c0 92.785-75.215 168-168 168s-168-75.215-168-168 75.215-168 168-168 168 75.215 168 168z" fill="#367bf0"/><path d="m192 91.5c59.648 0 108 48.352 108 108s-48.352 108-108 108-108-48.352-108-108 48.352-108 108-108zm0 24c-46.391 0-84 37.609-84 84s37.609 84 84 84 84-37.609 84-84-37.609-84-84-84zm0 48 23.789 18.469 24.215 17.531-24.203 17.531-23.797 18.469 0.28907-24h-36.289c-6.6484 0-12-5.3516-12-12s5.3516-12 12-12h36.281l-0.28125-24z" fill="#000205" opacity=".31"/><path d="m192 84c59.648 0 108 48.352 108 108s-48.352 108-108 108-108-48.352-108-108 48.352-108 108-108zm0 24c-46.391 0-84 37.609-84 84s37.609 84 84 84 84-37.609 84-84-37.609-84-84-84zm0 48 23.789 18.469 24.215 17.531-24.203 17.531-23.797 18.469 0.28906-24h-36.289c-6.6484 0-12-5.3516-12-12s5.3516-12 12-12h36.281l-0.28125-24z" fill="#fff"/><path transform="scale(.75)" d="m32.062 251c-0.036438 1.6631-0.0625 3.3282-0.0625 5 0 123.71 100.29 224 224 224s224-100.29 224-224c0-1.6718-0.02606-3.3369-0.0625-5-2.66 121.4-101.9 219-223.94 219s-221.28-97.597-223.94-219z" fill="#000b1d" opacity=".3" stroke-width="1.3333"/><path transform="scale(.75)" d="m256 32c-123.71 0-224 100.29-224 224 0 1.6718 0.026062 3.3369 0.0625 5 2.66-121.4 101.9-219 223.94-219s221.28 97.597 223.94 219c0.03644-1.6631 0.0625-3.3282 0.0625-5 0-123.71-100.29-224-224-224z" fill="#fff" opacity=".1" stroke-width="1.3333"/></svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 8,1 0.5,9 H 3 v 6 h 3 v -4 h 4 v 4 h 3 V 9 h 2.5 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 518 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 2,9 H 10 L 6.5,12.5 8,14 14,8 8,2 6.5,3.5 10,7 H 2 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 500 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 14,7 H 6 L 9.5,3.5 8,2 2,8 8,14 9.5,12.5 6,9 H 14 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 499 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 7,14 V 6 L 3.5,9.5 2,8 8,2 14,8 12.5,9.5 9,6 V 14 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 499 B |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><path d="m192 85.75c-58.68 0-106.25 47.57-106.25 106.25s47.57 106.25 106.25 106.25 106.25-47.57 106.25-106.25-47.57-106.25-106.25-106.25zm0 12.5c51.777 0 93.75 41.973 93.75 93.75s-41.973 93.75-93.75 93.75-93.75-41.973-93.75-93.75 41.973-93.75 93.75-93.75z" fill="#e6e6e6"/><path d="m104.5 23.25c-45.012 0-81.25 36.238-81.25 81.25v175c0 45.012 36.238 81.25 81.25 81.25h175c45.012 0 81.25-36.238 81.25-81.25v-175c0-45.012-36.238-81.25-81.25-81.25zm3.2461 6.25h168.51c43.344 0 78.246 34.891 78.246 78.234v168.52c0 43.344-34.902 78.246-78.246 78.246h-168.51c-43.344 0-78.246-34.902-78.246-78.246v-168.52c0-43.344 34.902-78.234 78.246-78.234z" fill="#e15e5e"/><path d="m192 23.25c-93.199 0-168.75 75.551-168.75 168.75 0 93.199 75.551 168.75 168.75 168.75 93.199 0 168.75-75.551 168.75-168.75 0-93.199-75.551-168.75-168.75-168.75zm0 68.75c55.23 0 100 44.773 100 100s-44.77 100-100 100-100-44.773-100-100 44.77-100 100-100z" fill="#e6e6e6"/><path d="m192 60.75c-72.488 0-131.25 58.762-131.25 131.25s58.762 131.25 131.25 131.25 131.25-58.762 131.25-131.25-58.762-131.25-131.25-131.25zm0 31.25c55.227 0 100 44.773 100 100s-44.773 100-100 100-100-44.773-100-100 44.773-100 100-100z" fill="#fff"/><g fill="#bd9775"><path d="m29.5 173.25c3.4531 0 6.25 2.7969 6.25 6.25v25c0 3.4531-2.7969 6.25-6.25 6.25s-6.25-2.7969-6.25-6.25v-25c0-3.4531 2.7969-6.25 6.25-6.25z"/><path d="m354.5 173.25c3.4531 0 6.25 2.7969 6.25 6.25v25c0 3.4531-2.7969 6.25-6.25 6.25-3.4492 0-6.25-2.7969-6.25-6.25v-25c0-3.4531 2.8008-6.25 6.25-6.25z"/><path d="m179.5 23.25c-3.4609 0-6.25 2.7891-6.25 6.25s2.7891 6.25 6.25 6.25h25c3.4609 0 6.25-2.7891 6.25-6.25s-2.7891-6.25-6.25-6.25zm0 325c-3.4609 0-6.25 2.7891-6.25 6.25s2.7891 6.25 6.25 6.25h25c3.4609 0 6.25-2.7891 6.25-6.25s-2.7891-6.25-6.25-6.25z"/></g><path d="m185.75 23.25v6.25h12.5v-6.25zm-162.5 162.5v12.5h6.25v-12.5zm331.25 0v12.5h6.25v-12.5zm-168.75 168.75v6.25h12.5v-6.25z" fill="#a1683a"/><path transform="scale(.75)" d="m256 112.67c-73.641 0-133.33 59.699-133.33 133.33 0 1.6749 0.0423 3.3401 0.10351 5 2.6306-71.318 61.265-128.33 133.23-128.33 71.966 0 130.6 57.016 133.23 128.33 0.0612-1.6599 0.10351-3.3251 0.10351-5 0-73.635-59.693-133.33-133.33-133.33zm-224.94 138.33c-0.036282 1.6632-0.064453 3.3281-0.064453 5 0 124.27 100.73 225 225 225 124.27 0 225-100.73 225-225 0-1.6719-0.0282-3.3368-0.0645-5-2.6603 121.96-102.34 220-224.94 220s-222.28-98.045-224.94-220z" opacity=".3"/><path transform="scale(.75)" d="m256 31c-124.27 0-225 100.73-225 225 0 1.6719 0.02817 3.3368 0.06445 5 2.6604-121.96 102.34-220 224.94-220 122.59 0 222.28 98.045 224.94 220 0.03628-1.6632 0.06445-3.3281 0.06445-5 0-124.27-100.73-225-225-225zm-133.23 230c-0.0612 1.6599-0.10351 3.3251-0.10351 5 0 73.635 59.693 133.33 133.33 133.33 73.641 0 133.33-59.699 133.33-133.33 0-1.6749-0.0423-3.3401-0.10351-5-2.6306 71.318-61.265 128.33-133.23 128.33-71.966 0-130.6-57.016-133.23-128.33z" fill="#fff" opacity=".3"/><path d="m86.164 54.5c-6.1484 0-12.293 2.3555-17.004 7.0664l-1.3438 1.332c-9.4219 9.4219-9.4219 24.598 0 34.02l25.516 25.516c9.4219 9.4219 24.598 9.4219 34.02 0l1.3438-1.3438c9.4219-9.4219 9.4219-24.586 0-34.008l-25.516-25.516c-4.7109-4.7109-10.867-7.0664-17.016-7.0664zm211.67 0c-6.1484 0-12.293 2.3555-17.004 7.0664l-25.516 25.516c-9.4219 9.4219-9.4219 24.586 0 34.008l1.3438 1.3438c9.4219 9.4219 24.586 9.4219 34.008 0l25.516-25.516c9.4219-9.4219 9.4219-24.598 0-34.02l-1.332-1.332c-4.7109-4.7109-10.867-7.0664-17.016-7.0664zm-187.49 193.75c-6.1484 0-12.305 2.3555-17.016 7.0664l-25.516 25.516c-9.4219 9.4219-9.4219 24.586 0 34.008l1.3438 1.3438c9.4219 9.4219 24.598 9.4219 34.02 0l25.516-25.516c9.4219-9.4219 9.4219-24.598 0-34.02l-1.3438-1.332c-4.7109-4.7109-10.855-7.0664-17.004-7.0664zm163.32 0c-6.1484 0-12.293 2.3555-17.004 7.0664l-1.3438 1.332c-9.4219 9.4219-9.4219 24.598 0 34.02l25.516 25.516c9.4219 9.4219 24.598 9.4219 34.02 0l1.332-1.3438c9.4219-9.4219 9.4219-24.586 0-34.008l-25.516-25.516c-4.7109-4.7109-10.855-7.0664-17.004-7.0664z" fill="#fd4747"/></svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="linear0" x1="58.283" x2="-7.88" y1="-179.14" y2="-10.216" gradientTransform="matrix(1.3456 0 0 1.3456 158.09 324.56)" gradientUnits="userSpaceOnUse"><stop stop-color="#fc4848" stop-opacity=".99608" offset="0"/><stop stop-color="#357aef" offset="1"/></linearGradient><linearGradient id="linear1" x1="102.97" x2="15.139" y1="-26.337" y2="-96.771" gradientTransform="matrix(1.3456 0 0 1.3456 158.09 324.56)" gradientUnits="userSpaceOnUse"><stop stop-color="#22b9c1" offset="0"/><stop stop-color="#357aef" stop-opacity="0" offset="1"/></linearGradient><radialGradient id="radial0" cx="76.652" cy="-264.59" r="101.85" gradientTransform="matrix(1.6254 -.72018 .5357 1.209 390.44 547.21)" gradientUnits="userSpaceOnUse"><stop stop-color="#ffc62f" offset="0"/><stop stop-color="#fff" stop-opacity="0" offset="1"/></radialGradient><radialGradient id="radial1" cx="76.652" cy="-264.59" r="101.85" gradientTransform="matrix(1.6254 -.72018 .5357 1.209 390.44 547.21)" gradientUnits="userSpaceOnUse"><stop stop-color="#ffc62f" offset="0"/><stop stop-color="#fff" stop-opacity="0" offset="1"/></radialGradient><radialGradient id="radial2" cx="-3.376" cy="-248.22" r="101.85" gradientTransform="matrix(.53227 -.60559 .87342 .76767 450.97 438.24)" gradientUnits="userSpaceOnUse"><stop stop-color="#b7164b" offset="0"/><stop stop-color="#fff" stop-opacity="0" offset="1"/></radialGradient></defs><path d="m363.54 234.41c0 79.341-64.318 143.65-143.66 143.65-79.341 0-143.65-64.314-143.65-143.65 0-79.341 64.314-143.66 143.65-143.66 79.341 0 143.66 64.318 143.66 143.66z" opacity=".3" stroke="#353a4a" stroke-opacity=".95413" stroke-width="1.0482"/><path d="m363.54 226.91c0 79.341-64.318 143.65-143.66 143.65-79.341 0-143.65-64.314-143.65-143.65 0-79.341 64.314-143.66 143.65-143.66 79.341 0 143.66 64.318 143.66 143.66z" fill="#2b2b2b" stroke="#353a4a" stroke-opacity=".95413" stroke-width="1.0482"/><g transform="matrix(1.0201 0 0 1.0201 -1.776 -.46789)"><g transform="matrix(.93734 0 0 .93734 9.4788 16.953)"><path d="m358.75 219.7c0 75.691-61.359 137.05-137.05 137.05-75.691 0-137.05-61.355-137.05-137.05s61.355-137.05 137.05-137.05c75.691 0 137.05 61.359 137.05 137.05z" fill="url(#linear0)"/><path d="m358.75 219.7c0 75.691-61.359 137.05-137.05 137.05-75.691 0-137.05-61.355-137.05-137.05s61.355-137.05 137.05-137.05c75.691 0 137.05 61.359 137.05 137.05z" fill="url(#linear1)"/><path d="m358.75 219.7c0 75.691-61.359 137.05-137.05 137.05-75.691 0-137.05-61.355-137.05-137.05s61.355-137.05 137.05-137.05c75.691 0 137.05 61.359 137.05 137.05z" fill="url(#radial0)"/><path d="m358.75 219.7c0 75.691-61.359 137.05-137.05 137.05-75.691 0-137.05-61.355-137.05-137.05s61.355-137.05 137.05-137.05c75.691 0 137.05 61.359 137.05 137.05z" fill="url(#radial1)"/><path d="m358.75 219.7c0 75.691-61.359 137.05-137.05 137.05-75.691 0-137.05-61.355-137.05-137.05s61.355-137.05 137.05-137.05c75.691 0 137.05 61.359 137.05 137.05z" fill="url(#radial2)"/><path d="m24.913 12.722c-1.1999 0.09772-1.9214 1.5933-1.248 2.5767 38.22 55.63 159.48 165.62 159.48 165.62l34.081 33.084c-4.6596 32.031 19.627 46.302 29.978 51.004 7.7282 4.0614 11.728 5.3227 19.359 16.542 7.744 11.411-13.238 23.922-13.238 23.922s22.413 7.6897 33.643-31.811c11.224-39.495-41.041-61.15-43.51-62.016-2.4693-0.87119-17.834-5.5034-17.834-5.5034l-0.93164 0.83642-31.542-35.464c-53.767-54.292-108.18-114.73-166.91-158.36-0.47224-0.34891-0.92572-0.47203-1.3257-0.43946z" fill-rule="evenodd" opacity=".3"/><g fill-rule="evenodd"><path d="m25.164 9.2996c38.22 55.63 159.48 165.62 159.48 165.62l10.005-9.405c-53.767-54.292-108.18-114.73-166.91-158.36-1.889-1.3956-3.4713 0.82671-2.5735 2.1379z"/><path d="m184.64 174.92 46.34 44.985 6.2359-6.5248-42.571-47.865z" fill="#fff"/><path d="m218.78 207.63c-4.9055 32.295 19.535 46.658 29.926 51.379 7.7282 4.0614 11.729 5.3218 19.361 16.542 7.744 11.411-13.238 23.923-13.238 23.923s22.412 7.689 33.642-31.811c11.224-39.495-41.041-61.15-43.511-62.016-2.4693-0.87119-17.834-5.5037-17.834-5.5037z"/></g></g></g><path transform="scale(.75)" d="m118.52 297.54c-0.0467 1.6615-0.0781 3.3272-0.0781 5 0 96.502 78.225 174.73 174.73 174.73 96.502 0 174.73-78.225 174.73-174.73 0-1.6728-0.0314-3.3385-0.0781-5-2.6473 94.189-79.825 169.73-174.65 169.73-94.829 0-172-75.538-174.65-169.73z" fill="#0c0c0c" opacity=".3"/></svg>
|
||||
|
After Width: | Height: | Size: 4.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><path d="m360 189c0 92.785-75.215 168-168 168s-168-75.215-168-168 75.215-168 168-168 168 75.215 168 168z" fill="#b8174a"/><path d="m192 87.75c-40.385 7.91e-4 -72.901 32.51-72.901 72.895v31.941h-12.981c-3.2654 0-5.915 2.7397-5.915 6.1143v98.288c0 3.7322 3.0281 6.7544 6.7603 6.7544h12.136v7e-3h16.201v-7e-3h113.4v7e-3h16.2v-7e-3h12.142c3.7322 0 6.7544-3.0222 6.7544-6.7544v-98.288c0-3.3745-2.6438-6.1143-5.9092-6.1143h-12.987v-31.941c0-40.386-32.514-72.894-72.899-72.895zm1e-3 18.841h1e-3c27.485 8.2e-4 49.608 22.863 49.608 51.261v34.734h-99.218v-34.734c0-28.397 22.123-51.26 49.608-51.261zm0 109.36c7.4574 0 13.5 6.0426 13.5 13.5-7e-3 5.3673-1.6839 10.215-6.5962 12.362v38.936h-13.808v-38.936c-4.9123-2.1469-6.5891-6.9943-6.5962-12.362 0-7.4574 6.0427-13.5 13.5-13.5z" opacity=".3"/><path d="m192 80.25c-40.385 7.91e-4 -72.901 32.51-72.901 72.895v31.941h-12.981c-3.2654 0-5.915 2.7397-5.915 6.1143v98.288c0 3.7322 3.0281 6.7544 6.7603 6.7544h12.136v7e-3h16.201v-7e-3h113.4v7e-3h16.2v-7e-3h12.142c3.7322 0 6.7544-3.0222 6.7544-6.7544v-98.288c0-3.3745-2.6438-6.1143-5.9092-6.1143h-12.987v-31.941c0-40.386-32.514-72.894-72.899-72.895zm1e-3 18.841h1e-3c27.485 8.21e-4 49.608 22.863 49.608 51.261v34.734h-99.218v-34.734c0-28.397 22.123-51.26 49.608-51.261zm0 109.36c7.4574 0 13.5 6.0426 13.5 13.5-7e-3 5.3673-1.6839 10.215-6.5962 12.362v38.936h-13.808v-38.936c-4.9123-2.1469-6.5891-6.9943-6.5962-12.362 0-7.4574 6.0427-13.5 13.5-13.5z" fill="#fff"/><path transform="scale(.75)" d="m32.062 247c-0.036438 1.6631-0.0625 3.3282-0.0625 5 0 123.71 100.29 224 224 224s224-100.29 224-224c0-1.6718-0.02606-3.3369-0.0625-5-2.66 121.4-101.9 219-223.94 219s-221.28-97.597-223.94-219z" opacity=".3" stroke-width="1.3333"/><path transform="scale(.75)" d="m256 28c-123.71 0-224 100.29-224 224 0 1.6718 0.026062 3.3369 0.0625 5 2.66-121.4 101.9-219 223.94-219s221.28 97.597 223.94 219c0.03644-1.6631 0.0625-3.3282 0.0625-5 0-123.71-100.29-224-224-224z" fill="#fafafa" opacity=".3" stroke-width="1.3333"/></svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 8,4 V 12 L 15,8 Z M 1,4 V 12 L 8,8 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 484 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 2 2 L 2 14 L 6 14 L 6 2 L 2 2 z M 10 2 L 10 14 L 14 14 L 14 2 L 10 2 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 524 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3,2 V 14 L 14,8 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 465 B |
@@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#eeeeec; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 15.5,12 C 13.57,12 12,13.57 12,15.5 12,17.43 13.57,19 15.5,19 17.43,19 19,17.43 19,15.5 19,13.57 17.43,12 15.5,12 Z M 15,13 h 1 v 5 H 15 V 14.5 H 14 V 14 c 1,0 1,-1 1,-1 z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 10,5 V 7 H 8 C 6.338,7 5,8.338 5,10 v 4 c 0,1.662 1.338,3 3,3 h 3.2637 A 4.5,4.5 0 0 1 11,15.5 4.5,4.5 0 0 1 11.0312,15 H 8 C 7.446,15 7,14.554 7,14 V 10 C 7,9.446 7.446,9 8,9 h 2 v 2 l 4,-3 z m 5,2 v 2 h 1 c 0.554,0 1,0.446 1,1 v 1.2637 a 4.5,4.5 0 0 1 2,1.4101 V 10 C 19,8.338 17.662,7 16,7 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 980 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 5,2 V 4 H 3 C 1,4 1,6 1,6 V 12 C 1,12 1,14 3,14 H 13 C 15,14 15,12 15,12 V 6 C 15,6 15,4 13,4 H 11 V 6 H 13 V 12 H 3 V 6 H 5 V 8 L 9,5 Z M 10,7 H 11 V 11 H 10 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 608 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#eeeeec; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 10,5 V 7 H 8 C 6.338,7 5,8.338 5,10 v 4 c 0,1.662 1.338,3 3,3 h 8 c 1.662,0 3,-1.338 3,-3 V 10 C 19,8.338 17.662,7 16,7 h -1 v 2 h 1 c 0.554,0 1,0.446 1,1 v 4 c 0,0.554 -0.446,1 -1,1 H 8 C 7.446,15 7,14.554 7,14 V 10 C 7,9.446 7.446,9 8,9 h 2 v 2 l 4,-3 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 703 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 5,2 V 4 H 3 C 1,4 1,6 1,6 V 12 C 1,12 1,14 3,14 H 13 C 15,14 15,12 15,12 V 6 C 15,6 15,4 13,4 H 11 V 6 H 13 V 12 H 3 V 6 H 5 V 8 L 9,5 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 584 B |
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#eeeeec; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m 17,17 v -2 h -4 c -0.554,0 -1,-0.45 -1,-1 V 10 C 12,8.34 10.662,7 9,7 H 5 v 2 h 4 c 0.554,0 1,0.45 1,1 v 4 c 0,1.66 1.338,3 3,3 z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 17,7 V 9 H 13.377 C 13.208,8.2702 12.8538,7.6156 12.375,7.0664 12.5769,7.0238 12.7851,7 13,7 Z m -8.377,8 c 0.169,0.73 0.523,1.384 1.002,1.934 C 9.423,16.976 9.215,17 9,17 H 5 v -2 z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m 16,5 v 6 l 4,-3 z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="m 16,13 v 6 l 4,-3 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 995 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1,3 V 5 H 5.5 L 6.5,7 7.5,5 6.5,3 Z M 11,9 V 11 H 10.5 L 9.5,9 8.5,11 9.5,13 H 11 V 15 L 15,12 Z M 11,1 V 3 H 9.5 L 5.5,11 H 1 V 13 H 6.5 L 10.5,5 H 11 V 7 L 15,4 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 612 B |
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(4,4)">
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 5,2 V 4 H 3 C 1,4 1,6 1,6 V 12 C 1,12 1,14 3,14 H 13 C 15,14 15,12 15,12 V 6 C 15,6 15,4 13,4 H 11 V 6 H 13 V 12 H 3 V 6 H 5 V 8 L 9,5 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 623 B |
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(4,4)">
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 5,2 V 4 H 3 C 1,4 1,6 1,6 V 12 C 1,12 1,14 3,14 H 13 C 15,14 15,12 15,12 V 6 C 15,6 15,4 13,4 H 11 V 6 H 13 V 12 H 3 V 6 H 5 V 8 L 9,5 Z M 10,7 H 11 V 11 H 10 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 647 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 8 4 L 1 8 L 8 12 L 8 8 L 8 4 z M 8 8 L 15 12 L 15 4 L 8 8 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 513 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 2 2 L 2 14 L 14 14 L 14 2 L 2 2 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 487 B |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="a" x1="165.12" x2="267.84" y1="53.815" y2="394.13" gradientTransform="matrix(.073351 0 0 .067962 -.77369 -.25759)" gradientUnits="userSpaceOnUse"><stop stop-color="#262933" offset="0"/><stop stop-color="#4b4b4b" offset="1"/></linearGradient></defs><g transform="matrix(10.682 0 0 10.682 -.27252 -.2722)"><rect x="1.5" y="4.8586" width="33" height="11.309" rx="2.475" ry="2.6936" fill="#fff" stroke-width=".86066"/><rect x="1.5" y="4.8586" width="33" height="11.309" rx="2.475" ry="2.6936" fill="#999" opacity=".3" stroke-width=".86066"/><path d="m3.975 4.859c-1.161 0-2.123 0.86515-2.3928 2.0351h32.836c-0.26985-1.17-1.2318-2.0351-2.3928-2.0351z" fill="#999" opacity=".3" stroke-width=".86066"/><path d="m5.3801 4.859c0.091247 0.11381 0.40005 0.44232 0.91685 0.95552l1.0925 1.0796-0.00967 1.1763-0.00967 1.1698-5.862 0.019335v2.7586c-0.00266 0.0075-0.00578 0.01297-0.00805 0.02095v16.864c0 0.62325 0.25073 1.1853 0.65742 1.592 0.39956 0.39956 0.9544 0.63753 1.5646 0.64614h28.556c0.6102-0.0086 1.165-0.24658 1.5646-0.64614 0.40669-0.40669 0.65742-0.96874 0.65742-1.592v-16.666c0-0.02851-0.0024-0.05804-0.0064-0.0854l-0.01455-4.871c-0.01605-0.6609-0.26867-1.2645-0.70254-1.6983-0.44736-0.44736-1.0659-0.72349-1.7515-0.72349h-1.513c0.03912 0.08219 0.21388 0.2791 0.88623 0.94585 0.5838 0.57886 1.0715 1.0736 1.086 1.0893 0.01482 0.015582-0.50297 0.54775-1.1521 1.1924l-1.1811 1.173h-1.4695c-1.0243 0-1.4746-0.013768-1.4921-0.041894-0.01444-0.023188 0.47202-0.53498 1.1505-1.2085l1.1779-1.115-1.0345-1.0828c-0.50108-0.4984-0.86436-0.8417-0.99741-0.95229h-2.902c0.0733 0.10467 0.35283 0.40739 0.90073 0.95068 0.5819 0.57696 1.0683 1.0689 1.0828 1.0844 0.01482 0.015582-0.50297 0.54775-1.1521 1.1924l-1.1811 1.173h-1.4695c-1.0243 0-1.4746-0.013768-1.4921-0.041894-0.01444-0.023188 0.47202-0.53498 1.1505-1.2085l1.1779-1.115-1.0329-1.0828c-0.50111-0.49843-0.86599-0.84172-0.99902-0.95229h-2.902c0.07331 0.10467 0.35283 0.40739 0.90073 0.95068 0.5819 0.57696 1.0683 1.0689 1.0828 1.0844 0.01482 0.015582-0.50298 0.54775-1.1521 1.1924l-1.1811 1.173h-1.4695c-1.0243 0-1.4746-0.013768-1.4921-0.041894-0.01445-0.023188 0.47364-0.53498 1.1521-1.2085l1.1859-1.115-1.0425-1.0828c-0.50111-0.49843-0.86599-0.84172-0.99902-0.95229h-2.9004c0.07334 0.10469 0.35125 0.40742 0.89912 0.95068 0.5819 0.57696 1.0699 1.0689 1.0844 1.0844 0.01482 0.015582-0.5062 0.54775-1.1553 1.1924l-1.1795 1.173h-1.4679c-1.0243 0-1.4778-0.013768-1.4953-0.041894-0.014443-0.023188 0.47525-0.53498 1.1537-1.2085l1.1779-1.115-1.0345-1.0828c-0.50111-0.49843-0.86599-0.84172-0.99902-0.95229z" fill="url(#a)" stroke-width=".0973"/><path d="m1.5 19.793v9.1099c0 0.62325 0.25103 1.1856 0.65771 1.5923 0.39956 0.39956 0.95425 0.63738 1.5645 0.646h28.556c0.6102-0.0086 1.1649-0.24644 1.5645-0.646 0.40669-0.40669 0.65772-0.96904 0.65772-1.5923v-9.1084z" opacity=".31452" stroke-width=".0973"/><path d="m10.554 16.601c0.16495-0.7594 0.83883-1.3265 1.645-1.3249l8.2292 0.01521c0.92891 0.0018 1.6818 0.75559 1.68 1.6845l-3e-3 3.0881 4.732-3.4591-0.01254 6.8163-4.7236-3.2888-0.0015 2.9053c3e-3 0.93195-0.75483 1.6852-1.6838 1.6834l-8.2296-0.01482c-0.4645-0.0015-0.86093-0.16572-1.189-0.49296-0.32877-0.32952-0.49258-0.72823-0.49144-1.1953l0.0087-5.5001z" opacity=".1" stroke-width=".0973"/><path d="m10.554 16.107c0.16495-0.7594 0.83883-1.3265 1.645-1.3249l8.2292 0.01521c0.92891 0.0018 1.6818 0.75559 1.68 1.6845l-3e-3 3.0881 4.732-3.4591-0.01254 6.8163-4.7236-3.2888-0.0015 2.9053c3e-3 0.93157-0.75483 1.6852-1.6838 1.6834l-8.2296-0.01482c-0.4645-0.0015-0.86093-0.16572-1.189-0.49296-0.32877-0.32991-0.49258-0.72823-0.49144-1.1953l0.0087-5.5001z" fill="#e6e6e6" stroke-width=".0973"/><path d="m1.5 27.961v0.94263c0 0.62325 0.25073 1.1853 0.65742 1.592 0.39956 0.39956 0.9544 0.63753 1.5646 0.64614h28.556c0.6102-0.0086 1.165-0.24658 1.5646-0.64614 0.40669-0.40669 0.65742-0.96874 0.65742-1.592v-0.94263c0 0.62325-0.25073 1.1853-0.65742 1.592-0.39956 0.39956-0.9544 0.63756-1.5646 0.64614h-28.556c-0.6102-0.008612-1.165-0.24658-1.5646-0.64614-0.40669-0.40669-0.65742-0.96874-0.65742-1.592z" opacity=".3" stroke-width=".0973"/></g></svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1,1 C 1,1 0,1 0,2 v 10 c 0,1 1,1 1,1 h 2 l 1,1 h 7 l 1,-1 h 2 c 0,0 1,0.13 1,-1 V 2 C 15,1 14,1 14,1 Z M 2,3 H 3 V 5 H 4 V 3 H 5 V 5 H 6 V 3 H 7 V 5 H 8 V 3 h 1 v 2 h 1 V 3 h 1 v 2 h 1 V 3 h 1 v 8 h -2 l -1,1 H 5 L 4,11 H 2 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 673 B |
|
After Width: | Height: | Size: 5.0 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><path d="m360.75 192c0-93.199-75.551-168.75-168.75-168.75s-168.75 75.551-168.75 168.75 75.551 168.75 168.75 168.75 168.75-75.551 168.75-168.75z" fill="#8c42ab"/><path d="m92.285 166.7v65.594h44.316l55.398 54.664v-174.92l-55.398 54.66zm149.57 32.797c0-19.352-11.301-35.977-27.699-44.062v88.008c16.398-7.9688 27.699-24.594 27.699-43.945zm-27.699-95.879v22.512c32.02 9.3984 55.395 38.703 55.395 73.367s-23.375 63.969-55.395 73.367v22.512c44.426-9.9492 77.555-49.086 77.555-95.879s-33.129-85.93-77.555-95.879z" opacity=".3"/><path d="m92.285 159.2v65.594h44.316l55.398 54.664v-174.92l-55.398 54.66zm149.57 32.797c0-19.352-11.301-35.977-27.699-44.062v88.008c16.398-7.9688 27.699-24.594 27.699-43.945zm-27.699-95.879v22.512c32.02 9.3984 55.395 38.703 55.395 73.367s-23.375 63.969-55.395 73.367v22.512c44.426-9.9492 77.555-49.086 77.555-95.879s-33.129-85.93-77.555-95.879z" fill="#fff"/><path transform="scale(.75)" d="m31.064 251c-0.036282 1.6632-0.064453 3.3281-0.064453 5 0 124.27 100.73 225 225 225s225-100.73 225-225c0-1.6719-0.0282-3.3368-0.0645-5-2.6603 121.96-102.34 220-224.94 220s-222.28-98.045-224.94-220z" opacity=".3" stroke-width="1.3333"/><path transform="scale(.75)" d="m256 31c-124.27 0-225 100.73-225 225 0 1.6719 0.02817 3.3368 0.06445 5 2.6604-121.96 102.34-220 224.94-220 122.59 0 222.28 98.045 224.94 220 0.03628-1.6632 0.06445-3.3281 0.06445-5 1e-5 -124.27-100.73-225-225-225z" fill="#fff" opacity=".3" stroke-width="1.3333"/></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,20 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 8h24l14 14v26c0 3.3-2.7 6-6 6H14c-3.3 0-6-2.7-6-6V14c0-3.3 2.7-6 6-6z" fill="#cfd6df" opacity="0.65"/>
|
||||
<path d="M12 6h24l14 14v26c0 3.3-2.7 6-6 6H12c-3.3 0-6-2.7-6-6V12c0-3.3 2.7-6 6-6z" fill="#f8fafc"/>
|
||||
<path d="M36 6v10c0 2.2 1.8 4 4 4h10z" fill="#dce4ec"/>
|
||||
<rect x="13" y="18" width="18" height="3" rx="1.5" ry="1.5" fill="#5b88b9"/>
|
||||
<rect x="13" y="24" width="24" height="3" rx="1.5" ry="1.5" fill="#cfd7e0"/>
|
||||
<rect x="13" y="30" width="17" height="3" rx="1.5" ry="1.5" fill="#d8e0e8"/>
|
||||
<rect x="10" y="37" width="36" height="12" rx="3" ry="3" fill="#d94f32"/>
|
||||
<rect x="14" y="40" width="3" height="7" fill="#ffffff"/>
|
||||
<rect x="17" y="40" width="4" height="3" fill="#ffffff"/>
|
||||
<rect x="17" y="43" width="4" height="3" fill="#ffffff"/>
|
||||
<rect x="21" y="41" width="2" height="4" fill="#ffffff"/>
|
||||
<rect x="25" y="40" width="3" height="7" fill="#ffffff"/>
|
||||
<rect x="28" y="40" width="4" height="3" fill="#ffffff"/>
|
||||
<rect x="28" y="44" width="4" height="3" fill="#ffffff"/>
|
||||
<rect x="32" y="41" width="2" height="5" fill="#ffffff"/>
|
||||
<rect x="36" y="40" width="3" height="7" fill="#ffffff"/>
|
||||
<rect x="39" y="40" width="5" height="3" fill="#ffffff"/>
|
||||
<rect x="39" y="43" width="4" height="3" fill="#ffffff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1,0 C 0.446,0 0,0.446 0,1 V 6 C 0,6.554 0.446,7 1,7 H 6 C 6.554,7 7,6.554 7,6 V 1 C 7,0.446 6.554,0 6,0 Z M 2,3 H 5 V 5 H 2 Z M 9,0 C 8.446,0 8,0.446 8,1 V 6 C 8,6.554 8.446,7 9,7 H 14 C 14.554,7 15,6.554 15,6 V 1 C 15,0.446 14.554,0 14,0 Z M 10,3 H 13 V 5 H 10 Z M 1,8 C 0.446,8 0,8.446 0,9 V 14 C 0,14.554 0.446,15 1,15 H 6 C 6.554,15 7,14.554 7,14 V 9 C 7,8.446 6.554,8 6,8 Z M 2,11 H 5 V 13 H 2 Z M 9,8 C 8.446,8 8,8.446 8,9 V 14 C 8,14.554 8.446,15 9,15 H 14 C 14.554,15 15,14.554 15,14 V 9 C 15,8.446 14.554,8 14,8 Z M 10,11 H 13 V 13 H 10 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 995 B |
|
After Width: | Height: | Size: 8.6 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 4 1 L 4 3 L 12 3 L 12 1 L 4 1 z M 2 4 C 1.5 4 1 4.5 1 5 L 1 9 C 1 9.5 1.5 10 2 10 L 3 10 L 3 8 L 13 8 L 13 10 L 14 10 C 14.5 10 15 9.5 15 9 L 15 5 C 15 4.5 14.5 4 14 4 L 2 4 z M 4 9 L 4 14 L 12 14 L 12 9 L 4 9 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 659 B |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><path d="m84.15 38.24h216.99c0.99999 0 1.8086 0.98438 1.8086 2.1992v122.73c0 1.2148-0.80859 2.1992-1.8086 2.1992h-216.99c-1 0-1.8086-0.98439-1.8086-2.1992v-122.73c0-1.2148 0.80859-2.1992 1.8086-2.1992z" fill="#fff" fill-rule="evenodd" opacity=".2" stroke="#000" stroke-width="7.5"/><g transform="translate(419.32 323.11)"><path d="m-386.94-182.69h319.23c4.0352 0 7.3047 2.6758 7.3047 5.9766v138.92c0 3.2969-3.2695 5.9727-7.3047 5.9727h-319.23c-4.0352 0-7.3047-2.6758-7.3047-5.9727v-138.92c0-3.3008 3.2695-5.9766 7.3047-5.9766z" fill-rule="evenodd" opacity=".3"/><path d="m-335.17-284.87h216.99c1 0 1.8086 0.98438 1.8086 2.1992v122.73c0 1.2148-0.80859 2.1992-1.8086 2.1992h-216.99c-1 0-1.8086-0.98439-1.8086-2.1992v-122.73c0-1.2148 0.80859-2.1992 1.8086-2.1992z" fill="#fff" fill-rule="evenodd"/><path d="m-294.43-45.681c-0.30859-0.80078-0.40234-2.2695-0.21094-3.2656 0.33204-1.7148 2.7266-1.8125 45.043-1.8125h44.695v6.0078l-44.484 0.26172c-38.129 0.22266-44.562 0.0547-45.043-1.1914z" fill="#b3b3b3"/><path d="m-190.94-45.671c-0.31251-0.80859-0.41016-2.2852-0.21486-3.2812 0.32031-1.6524 1.6953-1.8125 15.906-1.8125h15.559v6.0078l-15.344 0.27735c-12.738 0.23047-15.438 0.0274-15.906-1.1914z" fill="#b3b3b3"/><path d="m-386.94-190.19h319.23c4.0352 0 7.3047 2.6758 7.3047 5.9766v138.92c0 3.2969-3.2695 5.9727-7.3047 5.9727h-319.23c-4.0352 0-7.3047-2.6758-7.3047-5.9727v-138.92c0-3.3008 3.2695-5.9766 7.3047-5.9766z" fill="#e6e6e6" fill-rule="evenodd"/><path d="m-350.6-190.22v19.012h-0.0312v38.234h246.12v-19.125h0.0312v-38.121zm245.85 107.51-123.18 0.69531-123.6-0.34765 0.14844 20.25v22.832l19.598 0.0156 19.449 0.0195 0.28515-12.188 0.20704-8.1289 83.41-0.14062c66.719-0.11328 84.172-0.69141 85.129-0.0312 0.94531 0.64845 0.67578 4.5156 0.77734 8.918l0.25781 11.461 19.535 0.0469 18.793-0.0742-0.54297-21.684z" fill="#333"/><path d="m-310.61-88.941h166.45c0.7656 0 1.3867 0.86718 1.3867 1.9336v107.72c0 1.0664-0.62109 1.9297-1.3867 1.9297h-166.45c-0.76563 0-1.3867-0.86328-1.3867-1.9297v-107.72c0-1.0664 0.62109-1.9336 1.3867-1.9336z" fill-rule="evenodd" opacity=".3"/><g transform="translate(-419.32,-325.68)" fill="#fff"><path d="m108.71 229.24h166.45c0.76562 0 1.3867 0.86719 1.3867 1.9336v107.72c0 1.0664-0.62109 1.9297-1.3867 1.9297h-166.45c-0.76563 0-1.3867-0.86328-1.3867-1.9297v-107.72c0-1.0664 0.62109-1.9336 1.3867-1.9336z" fill-rule="evenodd"/><path d="m108.71 228.65h166.45c0.76562 0 1.3867 0.86328 1.3867 1.9297v36.238c0 1.0664-0.62109 1.9336-1.3867 1.9336h-166.45c-0.76563 0-1.3867-0.86719-1.3867-1.9336v-36.238c0-1.0664 0.62109-1.9297 1.3867-1.9297z" fill-rule="evenodd"/><path d="m300.88 154.44c0 5.3047-4.3008 9.6055-9.6094 9.6055-5.3047 0-9.6055-4.3008-9.6055-9.6055 0-5.3086 4.3008-9.6094 9.6055-9.6094 5.3086 0 9.6094 4.3008 9.6094 9.6094z"/></g></g><path transform="scale(.75)" d="m43.174 177.23c-5.3803 0-9.7402 3.5677-9.7402 7.9688v10c0-4.4011 4.36-7.9688 9.7402-7.9688h425.64c5.3803 0 9.7402 3.5677 9.7402 7.9688v-10c0-4.4011-4.36-7.9688-9.7402-7.9688h-425.64z" fill="#fff" fill-rule="evenodd" opacity=".3" stroke-width="1.3333"/></svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
@@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#eeeeec; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 12,4 C 10.338,4 9,5.338 9,7 v 4.0078 C 7.743,11.9504 7.002,13.429 7,15 c 0,2.761 2.239,5 5,5 2.761,0 5,-2.239 5,-5 -0.002,-1.571 -0.743,-3.0496 -2,-3.9922 V 7 C 15,5.338 13.662,4 12,4 Z m 0,2 c 0.554,0 1,0.446 1,1 v 5.1758 c 1.197,0.4233 1.998,1.5544 2,2.8242 0,1.657 -1.343,3 -3,3 -1.657,0 -3,-1.343 -3,-3 10e-4,-1.2705 0.802,-2.4027 2,-2.8262 V 7 c 0,-0.554 0.446,-1 1,-1 z"/>
|
||||
<path style="opacity:0.35;fill:currentColor" class="ColorScheme-Text" d="m 11,10 v 2.1738 A 3,3 0 0 0 9,15 a 3,3 0 0 0 3,3 3,3 0 0 0 3,-3 3,3 0 0 0 -2,-2.8242 V 10 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 993 B |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><defs><clipPath><rect width="384" height="384"/></clipPath><clipPath><rect width="384" height="384"/></clipPath><clipPath><rect width="384" height="384"/></clipPath></defs><path d="m360 192c0 92.785-75.215 168-168 168-92.785 0-168-75.215-168-168 0-92.785 75.215-168 168-168 92.785 0 168 75.215 168 168z" fill="#4cc7cc"/><path d="m300 199.5c0-59.648-48.352-108-108-108s-108 48.352-108 108 48.352 108 108 108 108-48.352 108-108zm-24 0c0 46.391-37.609 84-84 84-46.391 0-84-37.609-84-84 0-46.391 37.609-84 84-84 46.391 0 84 37.609 84 84zm-36 0c0-6.6484-5.3516-12-12-12h-72c-6.6484 0-12 5.3516-12 12 0 6.6484 5.3516 12 12 12h72c6.6484 0 12-5.3516 12-12z" opacity=".3"/><path d="m300 192c0-59.648-48.352-108-108-108s-108 48.352-108 108 48.352 108 108 108 108-48.352 108-108zm-24 0c0 46.391-37.609 84-84 84-46.391 0-84-37.609-84-84 0-46.391 37.609-84 84-84 46.391 0 84 37.609 84 84zm-36 0c0-6.6484-5.3516-12-12-12h-72c-6.6484 0-12 5.3516-12 12s5.3516 12 12 12h72c6.6484 0 12-5.3516 12-12z" fill="#fff"/><path transform="scale(.75)" d="m32.062 251c-0.036438 1.6631-0.0625 3.3282-0.0625 5 0 123.71 100.29 224 224 224 123.71 0 224-100.29 224-224 0-1.6718-0.02606-3.3369-0.0625-5-2.66 121.4-101.9 219-223.94 219s-221.28-97.597-223.94-219z" opacity=".3" stroke-width="1.3333"/><path transform="scale(.75)" d="m256 32c-123.71 0-224 100.29-224 224 0 1.6718 0.026062 3.3369 0.0625 5 2.66-121.4 101.9-219 223.94-219 122.04 0 221.28 97.597 223.94 219 0.03644-1.6631 0.0625-3.3282 0.0625-5 0-123.71-100.29-224-224-224z" fill="#fff" opacity=".3" stroke-width="1.3333"/></svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 5 0 C 4.446 0 4 0.446 4 1 L 4 2 L 12 2 L 12 1 C 12 0.446 11.554 0 11 0 L 5 0 z M 3 3 C 2.446 3 2 3.446 2 4 L 2 5 L 14 5 L 14 4 C 14 3.446 13.554 3 13 3 L 3 3 z M 1 6 C 0.446 6 0 6.446 0 7 L 0 15 C 0 15.554 0.446 16 1 16 L 15 16 C 15.554 16 16 15.554 16 15 L 16 7 C 16 6.446 15.554 6 15 6 L 1 6 z M 6.25 10 L 9.75 10 C 9.889 10 10 10.111 10 10.25 L 10 10.75 C 10 10.889 9.888 11 9.75 11 L 6.25 11 C 6.111 11 6 10.889 6 10.75 L 6 10.25 C 6 10.111 6.112 10 6.25 10 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 911 B |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="b" x1="46.752" x2="76.655" y1="238" y2="238" gradientTransform="translate(2,-22)" gradientUnits="userSpaceOnUse"><stop stop-color="#b3b3b3" offset="0"/><stop stop-color="#e6e6e6" offset=".16809"/><stop stop-color="#ccc" offset=".26651"/><stop stop-color="#ccc" offset=".74269"/><stop stop-color="#e6e6e6" offset=".86174"/><stop stop-color="#b3b3b3" offset="1"/></linearGradient></defs><path d="m33.293 117.47c-0.60742 0-1.2077 0.0313-1.7988 0.0908-8.572 0.86361-15.284 7.8369-15.722 16.515-0.01521 0.29897-0.02197 0.59961-0.02197 0.90235v193.24c0 0.30213 0.0068 0.60251 0.02197 0.90088 4.9e-5 9.7e-4 -4.9e-5 2e-3 0 3e-3 0.43792 8.6776 7.1501 15.651 15.722 16.515 0.0015 1.5e-4 0.0029-1.5e-4 0.0044 0 0.29417 0.0296 0.59079 0.0524 0.88916 0.0674 0.29994 0.0152 0.60155 0.022 0.90528 0.022h317.41c9.6875 0 17.543-7.8398 17.543-17.508v-193.24c0-2.8024-0.663-5.4477-1.8354-7.7959l0.0132-0.0161c-1.8605-3.7337-5.021-6.6947-8.8931-8.3203-0.4739-0.19896-0.95733-0.37706-1.4517-0.53466-0.0623-0.02-0.12344-0.0422-0.18603-0.0615-0.18825-0.0577-0.3789-0.10962-0.56983-0.16113-0.16744-0.0455-0.33598-0.0883-0.50537-0.12891-0.17039-0.0405-0.34038-0.0816-0.5127-0.11718-0.31773-0.0662-0.63714-0.12554-0.96093-0.17432-0.11448-0.0171-0.23049-0.0291-0.34571-0.0439-0.26852-0.035-0.53932-0.0636-0.81152-0.0864-0.11359-9e-3 -0.2271-0.0192-0.34131-0.0264-0.37823-0.0243-0.7582-0.041-1.1426-0.041z" fill="#f5f5f5" opacity=".2" stroke="#000" stroke-width="7.5"/><path d="m176.08 34.535-122.19 0.19141c-10.027-1.3906-18.23 9.4219-18.23 21.121v59.879c0.61719-0.0664 1.2383-0.10937 1.8711-0.10937h137.36l33.129-39.477z" fill="#357af0"/><path d="m206.63 76.16-33.43 39.457h173.22c1.543 0 3.0391 0.19922 4.4844 0.55859l0.0273-20.918c0.0117-8.4297-4.2656-15.711-10.465-19.098z" fill="#306ed7" fill-rule="evenodd"/><path transform="scale(.75)" d="m467.88 126.2-0.01172 8.6992c-1.9271-0.47916-3.9232-0.74414-5.9805-0.74414h-411.85c-0.84374 0-1.6712 0.05795-2.4941 0.14648v20c0.82292-0.08853 1.6504-0.14648 2.4941-0.14648h411.85c2.0573 0 4.0534 0.26498 5.9805 0.74414l0.03515-27.891c3.8e-4 -0.27205-0.01716-0.5384-0.02343-0.8086z" opacity=".296" stroke-width="1.3333"/><path d="m33.293 113.73h317.41c9.6875 0 17.543 7.8359 17.543 17.508v200.72c0 9.668-7.8555 17.508-17.543 17.508h-317.41c-9.6875 0-17.543-7.8398-17.543-17.508v-200.72c0-9.6719 7.8555-17.508 17.543-17.508z" fill="#fff"/><path d="m15.697 324.6v7.5c0 9.6682 7.8555 17.508 17.543 17.508h317.42c9.6878 0 17.543-7.8398 17.543-17.508v-7.5c0 9.6682-7.8555 17.508-17.543 17.508h-317.42c-9.6878 0-17.543-7.8398-17.543-17.508z" fill="#b3b3b3" stroke-width=".99997"/><path transform="scale(.75)" d="m234.77 45.746-162.92 0.25586c-13.369-1.8541-24.307 12.563-24.307 28.162v10c0-15.599 10.937-30.016 24.307-28.162l162.92-0.25586 42.586 55.475-0.02149 0.02539h176.62c8.1687 4.4629 13.824 14.001 13.941 25.072l0.01172-9.6074c0.0156-11.24-5.6873-20.949-13.953-25.465h-176.62l0.02149-0.02539-42.586-55.475z" fill="#f4f8fe" opacity=".1" stroke-width="1.3333"/><g transform="matrix(6.0339 0 0 6.0339 -194.17 -1020.8)"><path d="m55 197.24h18c1.662 0 3 1 3 3v3.0112h-3.2005l-0.03125-3.2542h-17.537l0.03125 3.2542h-3.2629v-3.0112c0-1.662 1.338-3 3-3z" fill="url(#b)" style="paint-order:normal"/><rect x="52" y="201.01" width="24" height="4" ry="1.5" opacity=".1"/><path d="m55 200c-1.662 0-3 0.59221-3 2.2542v1h3.2317v-1.2542h17.537v1.2542h3.2317v-1c0-1.662-1.338-2.2542-3-2.2542z" fill="#b3b3b3"/><rect x="55.265" y="201.25" width="17.535" height="2" opacity=".1"/></g><path transform="scale(.75)" d="m44.391 151.64c-12.917 0-23.391 10.448-23.391 23.344v10c0-12.896 10.474-23.344 23.391-23.344h423.21c12.917 0 23.391 10.448 23.391 23.344v-10c0-12.896-10.474-23.344-23.391-23.344h-423.21z" fill="#e6e6e6" stroke-width="1.3333"/><path d="m353.9 114.05c0.25955 0.04737 0.51371 0.10842 0.76904 0.16699-0.25617-0.05927-0.5087-0.11906-0.76904-0.16699zm3.3501 0.9668c0.12635 0.05056 0.25892 0.0887 0.38379 0.14209-0.12525-0.05383-0.25706-0.09112-0.38379-0.14209zm3.1816 1.6567c0.0852 0.05666 0.16343 0.12209 0.24756 0.18018-0.08438-0.05839-0.16212-0.12323-0.24756-0.18018zm2.4829 2.0215c0.10189 0.09878 0.20669 0.19468 0.30615 0.2959-0.09993-0.10172-0.20377-0.19663-0.30615-0.2959zm3.4526 4.8032-175.11 218.61h159.4c9.6875 0 17.543-7.8396 17.543-17.508v7.5c0 2.3534-0.48017 4.5915-1.3242 6.6416 0.87975-2.0865 1.3667-4.3783 1.3667-6.7837v-200.72c0-2.7932-0.71567-5.3964-1.8809-7.7388zm0.22705 215.84c-0.29617 0.64719-0.64518 1.2627-1.0151 1.8647 0.37472-0.59874 0.71381-1.2204 1.0151-1.8647zm-2.0669 3.3691c-0.19376 0.25165-0.39955 0.49184-0.60644 0.73242 0.20873-0.23895 0.41076-0.48232 0.60644-0.73242z" opacity=".05"/></svg>
|
||||
|
After Width: | Height: | Size: 4.7 KiB |
|
After Width: | Height: | Size: 7.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><defs><clipPath><rect width="384" height="384"/></clipPath><clipPath><rect width="384" height="384"/></clipPath><clipPath><rect width="384" height="384"/></clipPath></defs><path d="m360 192c0 92.785-75.215 168-168 168-92.785 0-168-75.215-168-168 0-92.785 75.215-168 168-168 92.785 0 168 75.215 168 168z" fill="#ffc72e"/><path d="m168 55.5v38.813c-49.098 11.191-83.945 54.824-84 105.19 0 59.648 48.352 108 108 108 54.953-0.0664 101.1-41.387 107.2-96 0 0 0.79687-12-11.203-12s-12.961 12-12.961 12c-5.9648 41.293-41.316 71.953-83.039 72-46.395 0-84-37.609-84-84 0.0352-37.117 24.43-69.805 60-80.41v32.41l48-48z" opacity=".3"/><path d="m168 48v38.812c-49.098 11.191-83.945 54.824-84 105.19 0 59.648 48.352 108 108 108 54.953-0.0664 101.1-41.387 107.2-96 0 0 0.79688-12-11.203-12s-12.961 12-12.961 12c-5.9648 41.293-41.316 71.953-83.039 72-46.395 0-84-37.609-84-84 0.0352-37.117 24.43-69.805 60-80.41v32.41l48-48z" fill="#fff"/><path transform="scale(.75)" d="m32.07 240.37c-0.35613 5.1655-0.55078 10.375-0.55078 15.631 0 123.71 100.29 224 224 224 121.82 0 220.92-97.237 223.93-218.33-8.0454 116.4-105 208.33-223.45 208.33-123.71 0-224-100.29-224-224 0-1.8827 0.02413-3.7592 0.070312-5.6309z" opacity=".3" stroke-width="1.3333"/><path transform="scale(.75)" d="m256 32c-123.71 0-224 100.29-224 224 0 1.6718 0.026062 3.3369 0.0625 5 2.66-121.4 101.9-219 223.94-219 122.04 0 221.28 97.597 223.94 219 0.03644-1.6631 0.0625-3.3282 0.0625-5 0-123.71-100.29-224-224-224z" fill="#fff" opacity=".3" stroke-width="1.3333"/></svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><defs><clipPath><rect width="384" height="384"/></clipPath><clipPath><rect width="384" height="384"/></clipPath><clipPath><rect width="384" height="384"/></clipPath></defs><path d="m360 192c0 92.785-75.215 168-168 168-92.785 0-168-75.215-168-168 0-92.785 75.215-168 168-168 92.785 0 168 75.215 168 168z" fill="#d41717"/><path d="m192 91.5c-59.648 0-108 48.352-108 108s48.352 108 108 108 108-48.352 108-108-48.352-108-108-108zm0 24c46.391 0 84 37.609 84 84 0 46.391-37.609 84-84 84-46.391 0-84-37.609-84-84 0-46.391 37.609-84 84-84zm0 36c-6.6484 0-12 5.3516-12 12v72c0 6.6484 5.3516 12 12 12 6.6484 0 12-5.3516 12-12v-72c0-6.6484-5.3516-12-12-12z" fill="#100909" opacity=".3"/><path d="m192 84c-59.648 0-108 48.352-108 108s48.352 108 108 108 108-48.352 108-108-48.352-108-108-108zm0 24c46.391 0 84 37.609 84 84 0 46.391-37.609 84-84 84-46.391 0-84-37.609-84-84 0-46.391 37.609-84 84-84zm0 36c-6.6484 0-12 5.3516-12 12v72c0 6.6484 5.3516 12 12 12s12-5.3516 12-12v-72c0-6.6484-5.3516-12-12-12z" fill="#fff"/><path transform="scale(.75)" d="m32.062 251c-0.036438 1.6631-0.0625 3.3282-0.0625 5 0 123.71 100.29 224 224 224 123.71 0 224-100.29 224-224 0-1.6718-0.02606-3.3369-0.0625-5-2.66 121.4-101.9 219-223.94 219-122.04 0-221.28-97.597-223.94-219z" opacity=".3" stroke-width="1.3333"/><path transform="scale(.75)" d="m256 32c-123.71 0-224 100.29-224 224 0 1.6718 0.026062 3.3369 0.0625 5 2.66-121.4 101.9-219 223.94-219 122.04 0 221.28 97.597 223.94 219 0.03644-1.6631 0.0625-3.3282 0.0625-5 0-123.71-100.29-224-224-224z" fill="#fff" opacity=".3" stroke-width="1.3333"/></svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3,1 C 2,1 2,2 2,2 V 15 C 2,16 3,16 3,16 H 13 C 14,16 14,15 14,15 V 5 L 10,1 Z M 4,3 H 9 V 6 H 12 V 14 H 4 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 555 B |
@@ -0,0 +1 @@
|
||||
<svg width="36pt" height="36pt" version="1.1" viewBox="0 0 36 36" xmlns="http://www.w3.org/2000/svg"><defs><filter id="a" x="-.192" y="-.192" width="1.384" height="1.384" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation="0.67843748"/></filter></defs><path d="m7.3477 3.9022c-0.67188 0-1.3047 0.63281-1.3047 1.3047v27.391c0 0.63281 0.67188 1.3047 1.3047 1.3047h20.871c0.63281 0 1.3047-0.67188 1.3047-1.3047v-20.215l-8.4805-8.4805z" opacity=".15"/><path d="m7.3477 3.1523c-0.67188 0-1.3047 0.63281-1.3047 1.3047v27.391c0 0.63281 0.67188 1.3047 1.3047 1.3047h20.871c0.63281 0 1.3047-0.67188 1.3047-1.3047v-20.215l-8.4805-8.4805z" fill="#e5e5e5"/><path d="m20.668 3.5272 8.4805 8.4805h-7.1758c-0.63281 0-1.3047-0.67187-1.3047-1.3047z" filter="url(#a)" opacity=".2"/><path d="m21.043 3.1523 8.4805 8.4805h-7.1758c-0.63281 0-1.3047-0.67187-1.3047-1.3047z" fill="#fff"/><path d="m11.477 14.738v0.65234h13.047v-0.65234z" fill="#949494"/><path d="m11.477 17.348v0.65234h13.047v-0.65234z" fill="#949494"/><path d="m11.477 19.957v0.65234h13.047v-0.65234z" fill="#949494"/><path d="m11.477 22.566v0.65234h13.047v-0.65234z" fill="#949494"/><path d="m11.477 25.176v0.64844h7.707v-0.64844z" fill="#949494"/></svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 12.5 1 L 10 4 L 11 4 L 11 12 L 10 12 L 12.5 15 L 15 12 L 14 12 L 14 4 L 15 4 L 12.5 1 z M 1 2 L 1 4 L 8 4 L 8 2 L 1 2 z M 1 5 L 1 7 L 7 7 L 7 5 L 1 5 z M 1 8 L 1 10 L 9 10 L 9 8 L 1 8 z M 1 11 L 1 13 L 5 13 L 5 11 L 1 11 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 676 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 6,1 C 5,1 5,2 5,2 H 2 C 2,2 1,2 1,3 V 4 H 14 V 3 C 14,2 13,2 13,2 H 10 C 10,2 10,1 9,1 Z M 2,5 V 14 C 2,14.52 2.48,15 3,15 H 12 C 12.52,15 13,14.52 13,14 V 5 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 607 B |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><g fill-rule="evenodd"><path d="m290.3 36.879h30.18v41.418h-30.18z" fill="#ffc72e"/><path d="m63.953 36.531h30.176v41.422h-30.176z" fill="#ffc72e"/><path d="m34.004 47.406h318.57v137.48h-318.57z" fill="#dc4545"/><path d="m49.762 65.242h285.29v123.12h-285.29z" fill="#ca2828"/></g><path d="m105.64 114.72 18.734-29.799c2.808-2.8965 4.5461-2.635 5.5308 0.77029l3.0069 28.822c1.7748 4.7127 4.8399 6.8165 9.4593 6.8165 3.7734 0 6.0848-1.5315 7.7051-6.1834l4.741-27.231c0.68042-2.1085 1.434-3.0479 2.2496-2.7803 0.40808 0.13278 1.0841 0.75277 1.9462 1.7474l17.526 27.874-14.935 25.25c-2.8764 3.6749-5.0276 4.3004-9.0149 4.3129-3.9375 0.0117-17.457 0.62109-17.52 0.61328l-10.16-0.82812z" fill="#fff"/><g fill-rule="evenodd"><path d="m222.07 94.941h23.668v82.91h-23.668z" fill="#fff"/><path d="m125.54 143.89h32.336v41.422h-32.336z" fill="#353a4a"/><path d="m16.273 169.98h353.09v170.85h-353.09z" opacity=".3"/><path d="m16.273 177.48h353.09v170.85h-353.09z" fill="#dc4545"/><path d="m16.32 177.41h353.09v56.949h-353.09z" fill="#fd5c5c"/><path d="m63.27 161.54h15.531v41.418h-15.531z" fill="#ffc72e"/><path d="m78.473 161.57h15.531v41.418h-15.531z" fill="#fd8a17"/><path d="m289.87 161.99h15.531v41.418h-15.531z" fill="#ffc72e"/><path d="m305.07 162.02h15.531v41.418h-15.531z" fill="#fd8a17"/></g><g fill-rule="evenodd"><path d="m222.02 93.996v23.257h0.0234v1.9497c0 8.1328 5.2964 14.726 11.832 14.726 6.5352 0 11.836-6.5933 11.836-14.726v-9.9302c0-0.19383-0.0175-0.38221-0.0235-0.57422v-14.703z" fill="#e6e6e6"/><path transform="scale(.75)" d="m21.697 454.44v10h470.78v-10h-470.78z" fill="#100303" opacity=".3" stroke-width="1.3333"/><path transform="scale(.75)" d="m45.338 63.209v10h424.76v-10h-424.76z" fill="#fff" opacity=".3" stroke-width="1.3333"/></g><path transform="scale(.75)" d="m142.78 149.89-1.9258 3.0625 25.693 39.18 13.547 1.1035c0.084 0.01041 18.109-0.80276 23.359-0.81836 5.3163-0.01665 8.1843-0.85015 12.02-5.75l19.914-33.666-1.8281-2.9082-18.086 30.574c-3.8353 4.8998-6.7032 5.7334-12.02 5.75-5.25 0.0156-23.275 0.82877-23.359 0.81836l-13.547-1.1035-23.768-36.242z" opacity=".1" stroke-width="1.3333"/><path transform="scale(.75)" d="m169.97 110.57c-1.1272 0.07931-2.4928 0.96274-4.1309 2.6524l-24.979 39.73 1.9258 2.9375 23.053-36.668c3.744-3.862 6.0621-3.513 7.375 1.0273l4.0098 38.428c2.3664 6.2836 6.4521 9.0898 12.611 9.0898 5.0313 0 8.113-2.0436 10.273-8.2461l6.3223-36.309c0.90723-2.8113 1.9107-4.0638 2.998-3.707 0.54411 0.17704 1.4462 1.0039 2.5957 2.3301l21.541 34.258 1.8281-3.0918-23.369-37.166c-1.1495-1.3262-2.0516-2.153-2.5957-2.3301-1.0874-0.35676-2.0908 0.8957-2.998 3.707l-6.3223 36.309c-2.1604 6.2025-5.2422 8.2461-10.273 8.2461-6.1592 0-10.245-2.8062-12.611-9.0898l-4.0098-38.428c-0.73849-2.5539-1.7948-3.7817-3.2441-3.6797z" opacity=".1" stroke-width="1.3333"/></svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 1.5,8 H 3 V 14 H 7 V 10 H 10 V 14 H 14 V 8 H 15.5 L 8.5,1 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 507 B |
|
After Width: | Height: | Size: 8.4 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 4.8007812 0 C 2.1415811 0 0 2.1415811 0 4.8007812 L 0 7 L 1.78125 7 L 3.5058594 3.5527344 A 1.0001 1.0001 0 0 1 5.375 3.7773438 L 6.1484375 7.1582031 L 7.8457031 1.703125 A 1.0001 1.0001 0 0 1 8.8613281 1.0019531 A 1.0001 1.0001 0 0 1 9.7832031 1.8203125 L 11.232422 9.7890625 L 12.298828 7.5664062 A 1.0001 1.0001 0 0 1 13.199219 7 L 16 7 L 16 4.8007812 C 16 2.1415811 13.858419 0 11.199219 0 L 4.8007812 0 z M 8.5449219 6.1855469 L 6.9550781 11.296875 A 1.0001 1.0001 0 0 1 5.0253906 11.222656 L 4.046875 6.9433594 L 3.2949219 8.4472656 A 1.0001 1.0001 0 0 1 2.4003906 9 L 0 9 L 0 11.199219 C 0 13.858419 2.1415811 16 4.8007812 16 L 11.199219 16 C 13.858419 16 16 13.858419 16 11.199219 L 16 9 L 13.830078 9 L 11.701172 13.433594 A 1.0001 1.0001 0 0 1 9.8164062 13.179688 L 8.5449219 6.1855469 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 7.3 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 2 1 C 0.892 1 0 1.892 0 3 L 0 13 C 0 14.108 0.892 15 2 15 L 14 15 C 15.108 15 16 14.108 16 13 L 16 3 C 16 1.892 15.108 1 14 1 L 2 1 z M 4 3 L 5 3 L 5 4 L 5.5 4 C 6.154 4 6.7022 4.418 6.9082 5 L 5 5 L 5 6 L 5.5 6 C 6.331 6 7 6.669 7 7.5 C 7 8.331 6.331 9 5.5 9 L 5 9 L 5 10 L 4 10 L 4 9 L 3.5 9 C 2.8458 9 2.2978 8.582 2.0918 8 L 4 8 L 4 7 L 3.5 7 C 2.669 7 2 6.331 2 5.5 C 2 4.669 2.669 4 3.5 4 L 4 4 L 4 3 z M 3.5 5 C 3.223 5 3 5.223 3 5.5 C 3 5.777 3.223 6 3.5 6 L 4 6 L 4 5 L 3.5 5 z M 5 7 L 5 8 L 5.5 8 C 5.7767 8.0129 6 7.777 6 7.5 C 6 7.223 5.777 7 5.5 7 L 5 7 z M 8 9 L 12 9 L 12 10 L 8 10 L 8 9 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 384 384" xmlns="http://www.w3.org/2000/svg"><defs><filter id="b" x="-.14211" y="-.068693" width="1.2842" height="1.1374" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation="3.0262184"/></filter><filter id="a" x="-.15365" y="-.64559" width="1.3073" height="2.2912" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation="3.0262184"/></filter></defs><path d="m37.946 31.293c-12.198 0-22.246 9.9277-22.246 21.989v272.68c0 12.061 10.046 21.994 22.246 21.994h308.11c12.2 0 22.243-9.9338 22.243-21.994v-272.68c0-12.059-10.044-21.989-22.243-21.989zm0 14.383h308.11c4.3378 0 7.6936 3.3178 7.6936 7.6061v272.68c0 4.2884-3.3582 7.6119-7.6936 7.6119h-308.11c-4.3355 0-7.6994-3.3261-7.6994-7.6119v-272.68c0-4.2862 3.3621-7.6061 7.6994-7.6061z" color="#000000" color-rendering="auto" dominant-baseline="auto" fill="#fff" fill-rule="evenodd" image-rendering="auto" opacity=".2" shape-rendering="auto" solid-color="#000000" stroke="#000" stroke-linejoin="round" stroke-width="7.4593" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;isolation:auto;mix-blend-mode:normal;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/><path d="m37.986 39.387c-12.195 0-22.24 10.041-22.24 22.238v275.29c0 12.197 10.043 22.24 22.24 22.24h308.02c12.197 0 22.238-10.045 22.238-22.24v-275.29c0-12.195-10.043-22.238-22.238-22.238z" fill-rule="evenodd" opacity=".3"/><path d="m37.99 39.161h308.02c8.2658 0 14.965 6.6992 14.965 14.965v275.29c0 8.2658-6.6992 14.968-14.965 14.968h-308.02c-8.2658 0-14.968-6.7031-14.968-14.968v-275.29c0-8.2658 6.7031-14.965 14.968-14.965z" fill="#171717" fill-rule="evenodd" stroke="#fff" stroke-linejoin="round" stroke-width="14.544"/><path d="m175.71 177.88v11.25h-47.27v-11.25z" fill="#fff"/><path d="m91.919 83.696h-7.6084v15.689c-12.961 1.3118-19.939 9.3924-19.939 18.89 0 9.8122 6.559 16.056 19.939 20.516v26.288c-6.6639-0.52471-11.859-3.4631-16.371-7.7658l-6.2966 7.0837c4.8799 4.7225 12.541 9.235 22.668 9.9172v15.112h7.6084v-15.427c13.643-1.784 20.831-10.809 20.831-21.461 0-12.698-8.9727-18.523-20.831-22.458v-21.776c4.8799 0.52472 9.4449 2.5711 13.38 6.0867l6.4016-6.6639c-4.6175-4.0928-11.334-7.5559-19.782-8.343zm-7.6084 24.767v18.995c-6.8738-2.9384-8.5004-5.667-8.5004-10.022 0-4.9323 3.3057-8.0806 8.5004-8.9727zm7.6084 33.11c6.9263 3.0434 9.0776 6.6114 9.0776 11.806 0 6.2966-3.0958 10.075-9.0776 11.281z" fill="#fff" stroke-width=".75"/><path d="m175.71 177.88v11.25h-47.27v-11.25z" fill="#fff" filter="url(#a)"/><path d="m91.919 83.696h-7.6084v15.689c-12.961 1.3118-19.939 9.3924-19.939 18.89 0 9.8122 6.559 16.056 19.939 20.516v26.288c-6.6639-0.52471-11.859-3.4631-16.371-7.7658l-6.2966 7.0837c4.8799 4.7225 12.541 9.235 22.668 9.9172v15.112h7.6084v-15.427c13.643-1.784 20.831-10.809 20.831-21.461 0-12.698-8.9727-18.523-20.831-22.458v-21.776c4.8799 0.52472 9.4449 2.5711 13.38 6.0867l6.4016-6.6639c-4.6175-4.0928-11.334-7.5559-19.782-8.343zm-7.6084 24.767v18.995c-6.8738-2.9384-8.5004-5.667-8.5004-10.022 0-4.9323 3.3057-8.0806 8.5004-8.9727zm7.6084 33.11c6.9263 3.0434 9.0776 6.6114 9.0776 11.806 0 6.2966-3.0958 10.075-9.0776 11.281z" fill="#fff" filter="url(#b)" stroke-width=".75"/></svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
@@ -0,0 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3.25,3 H 4.75 C 4.8885,3 5,3.1115 5,3.25 V 4.75 C 5,4.8885 4.8885,5 4.75,5 H 3.25 C 3.1115,5 3,4.8885 3,4.75 V 3.25 C 3,3.1115 3.1115,3 3.25,3 Z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 7.25,3 H 8.75 C 8.8885,3 9,3.1115 9,3.25 V 4.75 C 9,4.8885 8.8885,5 8.75,5 H 7.25 C 7.1115,5 7,4.8885 7,4.75 V 3.25 C 7,3.1115 7.1115,3 7.25,3 Z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 11.25,3 H 12.75 C 12.889,3 13,3.1115 13,3.25 V 4.75 C 13,4.8885 12.889,5 12.75,5 H 11.25 C 11.112,5 11,4.8885 11,4.75 V 3.25 C 11,3.1115 11.112,3 11.25,3 Z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 11.25,7 H 12.75 C 12.889,7 13,7.1115 13,7.25 V 8.75 C 13,8.8885 12.889,9 12.75,9 H 11.25 C 11.112,9 11,8.8885 11,8.75 V 7.25 C 11,7.1115 11.112,7 11.25,7 Z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 7.25,7 H 8.75 C 8.8885,7 9,7.1115 9,7.25 V 8.75 C 9,8.8885 8.8885,9 8.75,9 H 7.25 C 7.1115,9 7,8.8885 7,8.75 V 7.25 C 7,7.1115 7.1115,7 7.25,7 Z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3.25,7 H 4.75 C 4.8885,7 5,7.1115 5,7.25 V 8.75 C 5,8.8885 4.8885,9 4.75,9 H 3.25 C 3.1115,9 3,8.8885 3,8.75 V 7.25 C 3,7.1115 3.1115,7 3.25,7 Z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3.25,11 H 4.75 C 4.8885,11 5,11.112 5,11.25 V 12.75 C 5,12.889 4.8885,13 4.75,13 H 3.25 C 3.1115,13 3,12.889 3,12.75 V 11.25 C 3,11.112 3.1115,11 3.25,11 Z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 7.25,11 H 8.75 C 8.8885,11 9,11.112 9,11.25 V 12.75 C 9,12.889 8.8885,13 8.75,13 H 7.25 C 7.1115,13 7,12.889 7,12.75 V 11.25 C 7,11.112 7.1115,11 7.25,11 Z"/>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 11.25,11 H 12.75 C 12.889,11 13,11.112 13,11.25 V 12.75 C 13,12.889 12.889,13 12.75,13 H 11.25 C 11.112,13 11,12.889 11,12.75 V 11.25 C 11,11.112 11.112,11 11.25,11 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 2,3 V 5 H 4 V 3 Z m 4,0 v 2 h 8 V 3 Z M 2,7 V 9 H 4 V 7 Z m 4,0 v 2 h 8 V 7 Z m -4,4 v 2 h 2 v -2 z m 4,0 v 2 h 8 v -2 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 568 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 3.0019531 3 L 2.0019531 4 L 2 5 L 3 5 L 3 7 L 5 7 L 5 3 L 3.0019531 3 z M 7.5 4 C 7.223 4 7 4.223 7 4.5 L 7 5.5 A 0.499 0.499 0 0 0 7.5 6 L 14.5 6 C 14.777 6 15 5.777 15 5.5 L 15 4.5 C 15 4.223 14.777 4 14.5 4 L 7.5 4 z M 3.9453125 9 C 3.2088109 9.0046667 2.6465529 9.2257482 2.0195312 9.7480469 L 2.515625 10.675781 C 3.4113702 10.127459 4.3461746 9.7012314 4.3730469 10.394531 C 4.3929524 10.892667 2.5165464 11.141441 2 12.099609 L 2 13 L 6 13 L 6 12 L 4.0097656 12 C 5.5026743 11.535321 5.7772912 10.863494 5.8320312 10.40625 C 5.7971312 9.3766551 4.9415802 8.993494 3.9453125 9 z M 7.5 10 C 7.223 10 7 10.223 7 10.5 L 7 11.5 A 0.499 0.499 0 0 0 7.5 12 L 14.5 12 C 14.777 12 15 11.777 15 11.5 L 15 10.5 C 15 10.223 14.777 10 14.5 10 L 7.5 10 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 10 2 L 10 3 L 1 3 L 1 5 L 10 5 L 10 6 L 12 6 L 12 2 L 10 2 z M 13 3 L 13 5 L 15 5 L 15 3 L 13 3 z M 4 6 L 4 7 L 1 7 L 1 9 L 4 9 L 4 10 L 6 10 L 6 6 L 4 6 z M 7 7 L 7 9 L 15 9 L 15 7 L 7 7 z M 8 10 L 8 11 L 1 11 L 1 13 L 8 13 L 8 14 L 10 14 L 10 10 L 8 10 z M 11 11 L 11 13 L 15 13 L 15 11 L 11 11 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 752 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text { color:#5c616c; } .ColorScheme-Highlight { color:#367bf0; } .ColorScheme-NeutralText { color:#ffcc44; } .ColorScheme-PositiveText { color:#3db47e; } .ColorScheme-NegativeText { color:#dd4747; }
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor" class="ColorScheme-Text" d="M 2 2 C 1 2 1 3 1 3 L 1 13 C 1 14 2 14 2 14 L 14 14 C 14 14 15 14 15 13 L 15 3 C 15 2 14 2 14 2 L 2 2 z M 5.5 6.5625 L 8.8125 10.3125 L 10.9375 8.25 L 13 10.3125 L 13 12 L 3 12 L 3 9.5 L 5.5 6.5625 z" transform="translate(4 4)"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 678 B |