small improvements

This commit is contained in:
Karol Wypchlo 2021-03-25 02:27:53 +01:00
parent 2cbbeab97b
commit 6dc438b54c
81 changed files with 47365 additions and 247 deletions

45986
packages/webapp/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -10,6 +10,7 @@
"@svgr/webpack": "^5.5.0",
"autoprefixer": "^10.2.5",
"classnames": "^2.2.6",
"framer-motion": "^4.0.3",
"gatsby": "^3.0.1",
"gatsby-background-image": "^1.5.0",
"gatsby-plugin-gatsby-cloud": "^2.0.0",
@ -23,7 +24,9 @@
"gatsby-plugin-sharp": "^3.0.0",
"gatsby-source-filesystem": "^3.0.0",
"gatsby-transformer-sharp": "^3.0.0",
"gbimage-bridge": "^0.1.1",
"normalize.css": "^8.0.1",
"popmotion": "^9.3.4",
"postcss": "^8.2.8",
"preact-svg-loader": "^0.2.1",
"prop-types": "^15.7.2",

View File

@ -0,0 +1,89 @@
import * as React from "react";
import { useState } from "react";
import { motion, AnimatePresence } from "framer-motion";
import { wrap } from "popmotion";
const variants = {
enter: (direction) => {
return {
x: direction > 0 ? 1000 : -1000,
opacity: 0,
};
},
center: {
zIndex: 1,
x: 0,
opacity: 1,
},
exit: (direction) => {
return {
zIndex: 0,
x: direction < 0 ? 1000 : -1000,
opacity: 0,
};
},
};
/**
* Experimenting with distilling swipe offset and velocity into a single variable, so the
* less distance a user has swiped, the more velocity they need to register as a swipe.
* Should accomodate longer swipes and short flicks without having binary checks on
* just distance thresholds and velocity > 0.
*/
const swipeConfidenceThreshold = 10000;
const swipePower = (offset, velocity) => {
return Math.abs(offset) * velocity;
};
export const Carousel = ({ items }) => {
const [[page, direction], setPage] = useState([0, 0]);
// We only have 3 items, but we paginate them absolutely (ie 1, 2, 3, 4, 5...) and
// then wrap that within 0-2 to find our image ID in the array below. By passing an
// absolute page index as the `motion` component's `key` prop, `AnimatePresence` will
// detect it as an entirely new image. So you can infinitely paginate as few as 1 item.
const itemIndex = wrap(0, items.length, page);
const paginate = (newDirection) => {
setPage([page + newDirection, newDirection]);
};
return (
<>
<AnimatePresence initial={false} custom={direction}>
<motion.div
key={page}
custom={direction}
variants={variants}
initial="enter"
animate="center"
exit="exit"
// transition={{
// x: { type: "spring", stiffness: 300, damping: 30 },
// opacity: { duration: 0.2 },
// }}
drag="x"
dragConstraints={{ left: 0, right: 0 }}
dragElastic={1}
onDragEnd={(e, { offset, velocity }) => {
const swipe = swipePower(offset.x, velocity.x);
if (swipe < -swipeConfidenceThreshold) {
paginate(1);
} else if (swipe > swipeConfidenceThreshold) {
paginate(-1);
}
}}
>
{items[itemIndex]}
</motion.div>
</AnimatePresence>
<div className="next" onClick={() => paginate(1)}>
{"‣"}
</div>
<div className="prev" onClick={() => paginate(-1)}>
{"‣"}
</div>
</>
);
};

View File

@ -62,14 +62,20 @@ const CommunitySection = () => {
</div>
<div className="flex items-center mt-4">
<input type="checkbox" id="newsletter-experience" className="sr-only" />
<input
type="checkbox"
id="newsletter-experience"
className="sr-only"
value={experienced}
onChange={() => setExperienced(!experienced)}
/>
<button type="button" onClick={() => setExperienced(!experienced)}>
<CheckActive
className={classnames("bg-palette-600 rounded-full h-6 w-6", { "opacity-20": !experienced })}
/>
</button>
<label htmlFor="newsletter-experience" className="text-xs font-content ml-2">
Do You have a previous experience using Skynet?
<label htmlFor="newsletter-experience" className="text-xs font-content pl-2 leading-6 cursor-pointer">
Do you have previous experience using Skynet?
</label>
</div>
</form>
@ -78,7 +84,7 @@ const CommunitySection = () => {
<div className="desktop:col-span-2">
<SectionHeader>Community</SectionHeader>
<SectionTitle>Join our community</SectionTitle>
<div className="grid grid-cols-2 desktop:grid-cols-6">
<div className="grid grid-cols-2 desktop:grid-cols-6 max-w-column desktop:max-w-full">
{social.map(({ name, Icon, href }) => (
<a
key={name}
@ -87,7 +93,7 @@ const CommunitySection = () => {
target="_blank"
rel="noopener noreferrer"
>
<Icon className="mr-2 fill-current text-red-400" />
<Icon className="mr-2 fill-current" />
<span>{name}</span>
</a>
))}

View File

@ -1,5 +1,6 @@
import * as React from "react";
import classnames from "classnames";
import { motion, AnimatePresence } from "framer-motion";
const sections = [
{
@ -29,7 +30,7 @@ const sections = [
{ title: "Technology Guide", href: "/" },
{ title: "Pricing", href: "/" },
{ title: "Skynet Wiki", href: "/" },
{ title: "Support", href: "/" },
{ title: "Support", href: "https://support.siasky.net", target: "_blank" },
],
},
{
@ -37,20 +38,16 @@ const sections = [
links: [
{ title: "Sia Foundation", href: "/" },
{ title: "Sia Foundation Forum", href: "/" },
{ title: "Sia.tech", href: "/" },
{ title: "SiaStats", href: "/" },
{ title: "Sia.tech", href: "https://sia.tech", target: "_blank" },
{ title: "SiaStats", href: "https://siastats.info", target: "_blank" },
{ title: "Skynet AppStore", href: "/" },
],
},
{
header: "Skynet Webportals",
links: [
{ title: "Skydrain", href: "/" },
{ title: "Sialoop", href: "/" },
{ title: "Skynet.luxor", href: "/" },
{ title: "Skynet.tutemwesi", href: "/" },
{ title: "Siacdn", href: "/" },
{ title: "Valut.lightspeedhosting", href: "/" },
{ title: "Skydrain", href: "https://skydrain.net/", target: "_blank" },
{ title: "SkyPortal", href: "https://skyportal.xyz", target: "_blank" },
],
},
];
@ -68,19 +65,48 @@ const FooterNavigation = () => {
"text-primary": activeSection === section,
"text-palette-300": activeSection !== section,
})}
onClick={() => setActiveSection(section)}
onClick={() => setActiveSection(activeSection === section ? null : section)}
>
{section.header}
</h3>
<ul className={classnames("mt-4 desktop:block", { hidden: activeSection !== section })}>
{/* desktop */}
<ul className="hidden desktop:block">
{section.links.map(({ title, ...rest }) => (
<li key={title}>
<li key={title} className="mt-1 first:mt-4">
<a {...rest} className="text-white font-content">
{title}
</a>
</li>
))}
</ul>
{/* mobile */}
<div className="desktop:hidden">
<AnimatePresence initial={false}>
{activeSection === section && (
<motion.ul
initial="collapsed"
animate="open"
exit="collapsed"
variants={{
open: { opacity: 1, height: "auto" },
collapsed: { opacity: 0, height: 0 },
}}
className="overflow-hidden"
transition={{ duration: 0.8, ease: [0.04, 0.62, 0.23, 0.98] }}
>
{section.links.map(({ title, ...rest }) => (
<li key={title} className="mt-1 first:mt-4">
<a {...rest} className="text-white font-content">
{title}
</a>
</li>
))}
</motion.ul>
)}
</AnimatePresence>
</div>
</div>
))}
</div>

View File

@ -1,21 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<defs>
<filter id="ezpqtkezka">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<g>
<g>
<g>
<g filter="url(#ezpqtkezka)" transform="translate(-729 -2522) translate(0 2342) translate(444 176) translate(285 4)">
<g>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M10 7.005L5.046 12 0 7" transform="rotate(-90 15.5 5.5)"/>
<path fill="#00C65E" d="M4 0H6V12H4z" transform="rotate(-90 15.5 5.5)"/>
</g>
</g>
</g>
</g>
</g>
</g>
<path fill-rule="evenodd" d="M17.4969298,9.4969297 L17.4960469,19.1129297 L20.7869064,15.797325 L22.2069531,17.2056813 L17.2526515,22.2011078 C16.8937661,22.5629722 16.3268563,22.5931492 15.9333017,22.289983 L15.8387453,22.2072458 L10.7930469,17.2072458 L12.2008126,15.7866136 L15.4960469,19.0519297 L15.4969298,9.4969297 L17.4969298,9.4969297 Z" transform="rotate(-90 16.5 15.997)"/>
</svg>

Before

Width:  |  Height:  |  Size: 913 B

After

Width:  |  Height:  |  Size: 478 B

View File

@ -1,17 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<defs>
<filter id="lfe8wb0fla">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.000000 0 0 0 0 0.776471 0 0 0 0 0.368627 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<g>
<g filter="url(#lfe8wb0fla)" transform="translate(-22 -9) translate(22 9)">
<g>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M10 7.005L5.046 12 0 7" transform="rotate(-90 15.5 5.5)"/>
<path fill="#00C65E" d="M4 0H6V12H4z" transform="rotate(-90 15.5 5.5)"/>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 749 B

View File

@ -1,19 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<defs>
<filter id="v1n7nxxhfa">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<g>
<g>
<g filter="url(#v1n7nxxhfa)" transform="translate(-794 -2522) translate(0 2342) translate(794 180)">
<g fill="#000" fill-rule="nonzero">
<path d="M2.293 18.84h12.675l-.605-1.96 1.448 1.244 1.327 1.189 2.418 2.02V2.2C19.496 1.01 18.47 0 17.202 0L2.298.003C1.029.003 0 1.015 0 2.204V16.64c0 1.254 1.028 2.2 2.293 2.2zM4.886 6.18c1.63-1.186 3.14-1.13 3.14-1.13l.122.12C6.154 5.647 5.25 6.538 5.25 6.538s.242-.118.664-.299c2.685-1.056 5.618-.98 8.332.358 0 0-.906-.833-2.777-1.367l.166-.162c.258 0 1.627.049 3.092 1.12 0 0 1.64 2.8 1.64 6.24-.055-.066-1.018 1.48-3.495 1.534 0 0-.42-.475-.718-.889 1.449-.416 1.99-1.248 1.99-1.248-.475.3-.908.477-1.26.655-.542.238-1.084.356-1.625.476-2.564.416-4.003-.28-5.363-.832l-.465-.237s.541.832 1.933 1.248c-.366.417-.728.89-.728.89-2.476-.058-3.38-1.604-3.38-1.604 0-3.446 1.63-6.24 1.63-6.24z" transform="translate(6.208 5.333)"/>
<path d="M11.83 11.352c.631 0 1.146-.533 1.146-1.191 0-.653-.512-1.187-1.147-1.187v.003c-.629 0-1.145.531-1.146 1.19 0 .652.514 1.185 1.146 1.185zM7.724 11.352c.632 0 1.147-.533 1.147-1.191 0-.653-.511-1.187-1.143-1.187l-.004.003c-.632 0-1.146.531-1.146 1.19 0 .652.514 1.185 1.146 1.185z" transform="translate(6.208 5.333)"/>
</g>
</g>
</g>
</g>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<g fill-rule="evenodd">
<path d="M17.558 4c.952 0 1.72.758 1.765 1.65V20l-1.813-1.515-.996-.892-1.086-.932.454 1.47H6.376c-.95 0-1.72-.71-1.72-1.651V5.653c0-.892.772-1.651 1.724-1.651zm-6.882 3.788h-.056c-.241.005-1.236.073-2.3.847 0 0-1.221 2.096-1.221 4.68 0 0 .677 1.16 2.535 1.204 0 0 .27-.356.545-.668-1.043-.312-1.45-.936-1.45-.936l.35.177c1.02.414 2.099.936 4.021.624.406-.09.813-.178 1.219-.357.264-.133.59-.266.946-.491 0 0-.407.624-1.493.936.224.31.538.667.538.667 1.858-.04 2.58-1.2 2.62-1.151 0-2.58-1.228-4.68-1.228-4.68-1.1-.803-2.126-.84-2.32-.84l-.124.122c1.404.4 2.083 1.025 2.083 1.025-2.036-1.003-4.235-1.06-6.25-.268-.316.135-.497.224-.497.224s.678-.668 2.173-1.025l-.091-.09zm2.852 2.943c.476 0 .86.4.86.89 0 .493-.386.893-.86.893s-.86-.4-.86-.89c.002-.493.388-.891.86-.891zm-3.076 0c.474 0 .858.4.858.89 0 .493-.386.893-.86.893s-.86-.4-.86-.89c0-.493.386-.891.86-.891z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1006 B

View File

@ -1,20 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<defs>
<filter id="194qo1kf6a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<g>
<g>
<g>
<g filter="url(#194qo1kf6a)" transform="translate(-1140 -2522) translate(0 2342) translate(794 180) translate(346)">
<g>
<path fill="#000" fill-rule="nonzero" d="M18.567 1.904l1.61-1.54V.025H14.6L10.625 9.92 6.103.026H.255v.337l1.88 2.264c.184.168.28.412.255.659v8.897c.058.32-.046.65-.271.883L0 15.633v.333h6.007v-.337l-2.119-2.563c-.23-.234-.338-.558-.291-.883V4.487L8.87 15.971h.613l4.534-11.484v9.148c0 .241 0 .29-.159.449l-1.63 1.578V16h7.912v-.337l-1.572-1.54c-.138-.104-.21-.279-.18-.448V2.353c-.03-.171.041-.346.18-.45z" transform="translate(5.333 8)"/>
</g>
</g>
</g>
</g>
</g>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<g fill-rule="evenodd">
<path d="M17.926 7.428l1.207-1.155V6.02H14.95l-2.981 7.42-3.392-7.42H4.191v.253l1.41 1.698c.138.125.21.309.192.493v6.673c.043.24-.035.488-.204.662L4 17.725v.25h4.505v-.253l-1.589-1.923c-.172-.175-.253-.418-.219-.662V9.365l3.955 8.613h.46l3.4-8.613v6.861c0 .181 0 .218-.118.337l-1.223 1.184V18h5.934v-.253l-1.179-1.154c-.103-.079-.157-.21-.135-.337V7.764c-.022-.128.031-.259.135-.336z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 523 B

View File

@ -1,20 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<defs>
<filter id="w9594if0ua">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<g>
<g>
<g>
<g filter="url(#w9594if0ua)" transform="translate(-1028 -2522) translate(0 2342) translate(794 180) translate(234)">
<g>
<path fill="#000" fill-rule="nonzero" d="M17.26 7.154c-.613 0-1.153.259-1.55.66-1.461-1.025-3.431-1.686-5.614-1.756L11.23.873l3.61.822c0 .897.72 1.63 1.604 1.63.901 0 1.626-.753 1.626-1.65 0-.898-.72-1.65-1.625-1.65-.63 0-1.174.386-1.445.914L11.012.042c-.2-.054-.398.092-.451.296L9.316 6.054c-2.166.091-4.115.75-5.58 1.778-.398-.42-.959-.678-1.572-.678-2.277 0-3.022 3.1-.938 4.16-.073.327-.107.677-.107 1.025 0 3.482 3.865 6.302 8.61 6.302 4.766 0 8.631-2.82 8.631-6.302 0-.348-.036-.714-.126-1.043 2.042-1.063 1.29-4.14-.974-4.142zm-12.727 4.38c0-.915.72-1.65 1.626-1.65.884 0 1.605.73 1.605 1.65 0 .897-.72 1.629-1.605 1.629-.901.004-1.626-.732-1.626-1.63zm8.773 3.883c-1.49 1.512-5.694 1.512-7.185 0-.165-.146-.165-.403 0-.57.143-.145.397-.145.54 0 1.138 1.185 4.913 1.205 6.1 0 .144-.145.398-.145.541 0 .168.167.168.425.004.57zm-.033-2.251c-.884 0-1.604-.731-1.604-1.628 0-.914.72-1.65 1.604-1.65.901 0 1.626.731 1.626 1.65-.005.893-.725 1.628-1.626 1.628z" transform="translate(6.287 6.667)"/>
</g>
</g>
</g>
</g>
</g>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<g fill-rule="evenodd">
<path d="M17.66 10.366c-.46 0-.864.193-1.162.495-1.096-.77-2.574-1.265-4.21-1.318l.85-3.888 2.708.616c0 .673.54 1.222 1.203 1.222.675 0 1.219-.564 1.219-1.237 0-.673-.54-1.237-1.219-1.237-.472 0-.88.29-1.084.685l-2.99-.672c-.151-.041-.299.068-.339.221l-.933 4.287c-1.625.069-3.087.564-4.186 1.334-.298-.315-.719-.508-1.179-.508-1.707 0-2.266 2.324-.703 3.119-.055.246-.08.508-.08.77 0 2.61 2.899 4.726 6.458 4.726 3.574 0 6.473-2.116 6.473-4.726 0-.262-.028-.536-.095-.783 1.532-.798.968-3.105-.73-3.106zM8.117 13.65c0-.685.54-1.237 1.218-1.237.663 0 1.204.548 1.204 1.237 0 .673-.54 1.222-1.204 1.222-.675.003-1.218-.549-1.218-1.222zm6.58 2.913c-1.118 1.134-4.272 1.134-5.39 0-.123-.11-.123-.303 0-.427.107-.11.298-.11.405 0 .854.888 3.685.903 4.576 0 .107-.11.298-.11.405 0 .126.125.126.318.003.427zm-.026-1.689c-.662 0-1.203-.548-1.203-1.22 0-.686.54-1.238 1.203-1.238.676 0 1.22.549 1.22 1.238-.004.67-.544 1.22-1.22 1.22z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#0D0D0D" d="M17.4969298,9.4969297 L17.4960469,19.1129297 L20.7869064,15.797325 L22.2069531,17.2056813 L17.2526515,22.2011078 C16.8937661,22.5629722 16.3268563,22.5931492 15.9333017,22.289983 L15.8387453,22.2072458 L10.7930469,17.2072458 L12.2008126,15.7866136 L15.4960469,19.0519297 L15.4969298,9.4969297 L17.4969298,9.4969297 Z" transform="rotate(-90 16.5 15.997)"/>
</svg>

After

Width:  |  Height:  |  Size: 473 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#00C65E" d="M21.2678375,11.31887 L22.7321625,12.68113 L15.2897705,20.68113 C14.9224964,21.0759214 14.3157362,21.1041208 13.9142499,20.7657282 L13.8254455,20.68113 L9.26783752,15.7820513 L10.7321625,14.4197913 L14.557,18.531 L21.2678375,11.31887 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 355 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="none" stroke="#D4DDDB" stroke-linecap="square" stroke-width="2" d="M11,16 L21,16 M16,11 L16,21" transform="rotate(45 16 16)"/>
</svg>

After

Width:  |  Height:  |  Size: 232 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#0D0D0D" d="M16.0282136,6 C21.551061,6 26.0282135,10.4771526 26.0282135,16 C26.0282135,21.5228474 21.551061,26 16.0282136,26 L16.0282136,26 L7.02821361,26 C6.62326982,26.0170498 6.24808191,25.7879877 6.07821361,25.42 C5.92161688,25.0476029 6.00446904,24.6175607 6.28821361,24.33 L6.28821361,24.33 L8.28821361,22.33 C6.81900581,20.5485381 6.01947144,18.3091344 6.02821361,16 C6.02821361,10.4771525 10.5053661,6 16.0282136,6 Z M19.0784296,8.60691339 C15.5515371,7.1487988 11.4857836,8.38498377 9.36744069,11.5595219 C7.24909779,14.7340601 7.66809693,18.9628832 10.3682136,21.66 C10.5566279,21.8446305 10.6644566,22.0962307 10.6682136,22.36 C10.6671042,22.6272459 10.5590693,22.8829286 10.3682136,23.07 L10.3682136,23.07 L9.43821361,24 L16.0282136,24 C19.8446334,23.996999 23.1275213,21.298638 23.8693403,17.5550069 C24.6111593,13.8113758 22.6053222,10.065028 19.0784296,8.60691339 Z M16.0282136,18 C16.5804984,18 17.0282136,18.4477153 17.0282136,19 C17.0282136,19.5522847 16.5804984,20 16.0282136,20 C15.4759289,20 15.0282136,19.5522847 15.0282136,19 C15.0282136,18.4477153 15.4759289,18 16.0282136,18 Z M17,12 L17,17 L15,17 L15,12 L17,12 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#00C65E" d="M15,9 L15,11 L9,11 C8.48716416,11 8.06449284,11.3860402 8.00672773,11.8833789 L8,12 L8,23 C8,23.5128358 8.38604019,23.9355072 8.88337887,23.9932723 L9,24 L20,24 C20.5128358,24 20.9355072,23.6139598 20.9932723,23.1166211 L21,23 L21,17 L23,17 L23,23 C23,24.5976809 21.75108,25.9036609 20.1762728,25.9949073 L20,26 L9,26 C7.40231912,26 6.09633912,24.75108 6.00509269,23.1762728 L6,23 L6,12 C6,10.4023191 7.24891996,9.09633912 8.82372721,9.00509269 L9,9 L15,9 Z M25.1090164,5.97448598 C25.6186634,5.97237947 26.0408675,6.35190694 26.1047818,6.84456297 L26.1131393,6.96992843 L26.1454529,14.0733099 L24.1454736,14.0824079 L24.123,9.28947725 L17.4644661,15.9497475 L16.0502525,14.5355339 L22.599,7.98547725 L18.0817626,8.00354859 L18.0734961,6.00356568 L25.1090164,5.97448598 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 892 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#00C65E" fill-rule="evenodd" d="M30.9705627,7 L32.3847763,8.41421356 L24.606,16.192 L32.3847763,23.9705627 L30.9705627,25.3847763 L23.192,17.606 L15.4142136,25.3847763 L14,23.9705627 L21.778,16.192 L14,8.41421356 L15.4142136,7 L23.192,14.778 L30.9705627,7 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 366 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#00C65E" fill-rule="evenodd" d="M32,23 L32,25 L8,25 L8,23 L32,23 Z M32,15 L32,17 L16,17 L16,15 L32,15 Z M32,7 L32,9 L0,9 L0,7 L32,7 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 242 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#0D0D0D" d="M15,6 C19.9705627,6 24,10.0294373 24,15 C24,17.124779 23.2636898,19.0775836 22.0323074,20.6171757 L25.7071068,24.2928932 C26.0976311,24.6834175 26.0976311,25.3165825 25.7071068,25.7071068 C25.3466228,26.0675907 24.7793918,26.0953203 24.3871006,25.7902954 L24.2928932,25.7071068 L20.6171757,22.0323074 C19.0775836,23.2636898 17.124779,24 15,24 C10.0294373,24 6,19.9705627 6,15 C6,10.0294373 10.0294373,6 15,6 Z M15,8 C11.1340068,8 8,11.1340068 8,15 C8,18.8659932 11.1340068,22 15,22 C16.8904747,22 18.6059153,21.25059 19.8654514,20.0326404 C19.8886352,20.0004394 19.9147502,19.9710363 19.9428932,19.9428932 L20.0326404,19.8654514 C21.25059,18.6059153 22,16.8904747 22,15 C22,11.1340068 18.8659932,8 15,8 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 825 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#D4DDDB" d="M16,9 C18.5445752,9 20.7619877,10.2234 22.6386281,12.2251498 C23.279243,12.9084723 23.8349114,13.6372178 24.3059485,14.3665655 L24.3059485,14.3665655 L24.5032823,14.6799166 L24.6672433,14.9545622 L24.7976765,15.1863101 L24.8944272,15.3709682 C25.0351909,15.6524957 25.0351909,15.9838679 24.8944272,16.2653954 L24.8944272,16.2653954 L24.7976765,16.4500535 L24.6672433,16.6818015 L24.5032823,16.9564471 L24.3059485,17.2697982 C23.8349114,17.9991458 23.279243,18.7278913 22.6386281,19.4112139 C20.7619877,21.4129636 18.5445752,22.6363636 16,22.6363636 C13.4554248,22.6363636 11.2380123,21.4129636 9.36137189,19.4112139 C8.72075699,18.7278913 8.16508856,17.9991458 7.69405153,17.2697982 L7.69405153,17.2697982 L7.49671767,16.9564471 L7.33275674,16.6818015 L7.20232353,16.4500535 L7.10557281,16.2653954 C6.96480906,15.9838679 6.96480906,15.6524957 7.10557281,15.3709682 C7.11888246,15.3443489 7.13360199,15.3155929 7.14972819,15.2847874 L7.14972819,15.2847874 L7.33275674,14.9545622 L7.49671767,14.6799166 L7.69405153,14.3665655 C8.16508856,13.6372178 8.72075699,12.9084723 9.36137189,12.2251498 C11.2380123,10.2234 13.4554248,9 16,9 Z M16,11 C14.0900297,11 12.3528968,11.9584182 10.8204463,13.593032 C10.2678794,14.1824368 9.78377507,14.8173276 9.37413029,15.4516163 C9.30466816,15.5591706 9.24188953,15.6593957 9.1858884,15.7512141 L9.1858884,15.7512141 L9.145,15.818 L9.27496147,16.0290475 L9.37413029,16.1847473 C9.78377507,16.819036 10.2678794,17.4539269 10.8204463,18.0433316 C12.3528968,19.6779455 14.0900297,20.6363636 16,20.6363636 C17.9099703,20.6363636 19.6471032,19.6779455 21.1795537,18.0433316 C21.7321206,17.4539269 22.2162249,16.819036 22.6258697,16.1847473 C22.6953318,16.077193 22.7581105,15.976968 22.8141116,15.8851495 L22.8141116,15.8851495 L22.854,15.818 L22.8141116,15.7512141 L22.6258697,15.4516163 C22.2162249,14.8173276 21.7321206,14.1824368 21.1795537,13.593032 C19.6471032,11.9584182 17.9099703,11 16,11 Z M16,12.6363636 C17.7572697,12.6363636 19.1818182,14.0609122 19.1818182,15.8181818 C19.1818182,17.5754515 17.7572697,19 16,19 C14.2427303,19 12.8181818,17.5754515 12.8181818,15.8181818 C12.8181818,14.0609122 14.2427303,12.6363636 16,12.6363636 Z M16,14.6363636 C15.3472998,14.6363636 14.8181818,15.1654817 14.8181818,15.8181818 C14.8181818,16.470882 15.3472998,17 16,17 C16.6527002,17 17.1818182,16.470882 17.1818182,15.8181818 C17.1818182,15.1654817 16.6527002,14.6363636 16,14.6363636 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#D4DDDB" d="M8.61289944,7.20970461 L8.70710678,7.29289322 L24.7071068,23.2928932 C25.0976311,23.6834175 25.0976311,24.3165825 24.7071068,24.7071068 C24.3466228,25.0675907 23.7793918,25.0953203 23.3871006,24.7902954 L23.2928932,24.7071068 L20.1962019,21.6127732 C18.9385171,22.3752358 17.4943568,22.7938612 15.9999999,22.8181818 C13.4554248,22.8181818 11.2380123,21.5947818 9.36137189,19.593032 C8.72075699,18.9097095 8.16508856,18.180964 7.69405153,17.4516163 L7.49671767,17.1382652 L7.33275674,16.8636196 L7.14972819,16.5333944 C7.13360199,16.5025889 7.11888246,16.4738329 7.10557281,16.4472136 C6.9602612,16.1565904 6.96521048,15.8134847 7.11884433,15.5271737 C7.91118877,14.0505663 8.9534619,12.7259943 10.1966814,11.6109587 L7.29289322,8.70710678 C6.90236893,8.31658249 6.90236893,7.68341751 7.29289322,7.29289322 C7.65337718,6.93240926 8.22060824,6.90467972 8.61289944,7.20970461 Z M9.2902898,15.7670375 L9.148,16.004 L9.27496147,16.2108657 L9.37413029,16.3665655 C9.78377507,17.0008542 10.2678794,17.6357451 10.8204463,18.2251498 C12.3528968,19.8597637 14.0900297,20.8181818 15.9836527,20.8183154 C16.9424007,20.8026404 17.8797167,20.5693259 18.7270555,20.1421436 L17.4456927,18.8604927 C16.7552287,19.2295018 15.9405554,19.3370808 15.1582642,19.1372973 C14.0309105,18.849391 13.150609,17.9690895 12.8627027,16.8417358 C12.6629192,16.0594446 12.7704982,15.2447713 13.1395073,14.5543073 L11.6126573,13.0281811 C10.7100166,13.8237162 9.92767032,14.7463224 9.2902898,15.7670375 Z M16,9.18172188 C18.544576,9.18172188 20.7619888,10.4052039 22.6386292,12.40696 C23.279244,13.0902845 23.8349123,13.8190322 24.3059492,14.548382 L24.5032831,14.861734 L24.6672439,15.1363804 L24.8502724,15.4666065 C24.8663986,15.497412 24.8811181,15.5261682 24.8944278,15.5527875 C25.0394855,15.8429039 25.0348202,16.1853551 24.881913,16.4714122 C24.4076317,17.3586927 23.8420103,18.1940316 23.1942471,18.9638447 C22.8386615,19.3864288 22.2078304,19.4407418 21.7852462,19.0851562 C21.3626621,18.7295706 21.3083491,18.0987395 21.6639347,17.6761553 C22.0360251,17.2339566 22.3766593,16.7666649 22.6834891,16.2777481 L22.853,15.997 L22.7250378,15.7891308 L22.6258689,15.6334305 C22.2162241,14.9991396 21.7321197,14.3642466 21.1795526,13.7748399 C19.6471021,12.1402209 17.9099695,11.1817999 15.9976857,11.1817972 C15.5610307,11.1807866 15.1257602,11.2305357 14.7006405,11.3300451 C14.1628911,11.4559181 13.6249188,11.1220263 13.4990458,10.5842769 C13.3731728,10.0465274 13.7070646,9.50855518 14.2448141,9.38268219 C14.8208665,9.24784346 15.4106594,9.18043326 16,9.18172188 Z M14.8005087,16.3468542 C14.9074453,16.7655855 15.2344145,17.0925547 15.6531458,17.1994913 C15.705941,17.2129742 15.7591332,17.2226882 15.8123736,17.2287355 L14.7712645,16.1876264 C14.7773118,16.2408668 14.7870258,16.294059 14.8005087,16.3468542 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#0D0D0D" d="M14.122,12.673 L10.9276859,13.140257 L10.8436897,13.1596531 C10.4967348,13.2710709 10.3755366,13.7247476 10.6511336,13.9931791 L12.963,16.244 L12.4171957,19.4254783 L12.4096688,19.5057605 C12.404031,19.8732486 12.8003652,20.1325807 13.1427256,19.9525368 L16,18.449 L18.8572744,19.9525368 L18.9312973,19.9845132 C19.279042,20.103479 19.648193,19.8067274 19.5828043,19.4254783 L19.036,16.244 L21.3488664,13.9931791 L21.4054999,13.9281851 C21.6210635,13.6343756 21.4529888,13.1958983 21.0723141,13.140257 L17.877,12.673 L16.4483537,9.77868804 C16.264936,9.40710399 15.735064,9.40710399 15.5516463,9.77868804 L14.122,12.673 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 742 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<path fill="#0D0D0D" d="M14.0834601,6.38295607 C15.9498159,5.60840746 18.0989197,6.03338904 19.53,7.46 C20.160339,8.09493515 20.6121836,8.88480087 20.84,9.75 C20.9293164,10.0965476 20.8269672,10.4644206 20.5715064,10.7150447 C20.3160455,10.9656688 19.9462836,11.0609682 19.6015063,10.9650447 C19.2567291,10.8691211 18.9893164,10.5965476 18.9,10.25 C18.7648544,9.72982559 18.4959483,9.25406854 18.12,8.87 C17.2607657,8.01182697 15.9689164,7.75630901 14.8476815,8.22276026 C13.7264466,8.68921151 12.997017,9.78561306 13,11 L13,11 L13,13 L21,13 C22.6568542,13 24,14.3431458 24,16 L24,16 L24,23 C24,24.6568542 22.6568542,26 21,26 L21,26 L11,26 C9.34314575,26 8,24.6568542 8,23 L8,23 L8,16 C8,14.3431458 9.34314575,13 11,13 L11,13 L11,11 C11.000428,8.9793047 12.2171042,7.15750468 14.0834601,6.38295607 Z M21,15 L11,15 C10.4477153,15 10,15.4477153 10,16 L10,16 L10,23 C10,23.5522847 10.4477153,24 11,24 L11,24 L21,24 C21.5522847,24 22,23.5522847 22,23 L22,23 L22,16 C22,15.4477153 21.5522847,15 21,15 L21,15 Z M17,17.0009146 L17,22.0009146 L15,22.0009146 L15,17.0009146 L17,17.0009146 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill="#FFF" fill-rule="evenodd" d="M21,12 L21,19 L28,19 L28,21 L21,21 L21,28 L19,28 L19,21 L12,21 L12,19 L19,19 L19,12 L21,12 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 230 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill="#0D0D0D" d="M20,4 C28.836,4 36,11.164 36,20 C36,28.836 28.836,36 20,36 C11.164,36 4,28.836 4,20 C4,11.164 11.164,4 20,4 Z M20,6 C12.2685695,6 6,12.2685695 6,20 C6,27.7314305 12.2685695,34 20,34 C27.7314305,34 34,27.7314305 34,20 C34,12.2685695 27.7314305,6 20,6 Z M18.4391607,14.4378889 L19.8475169,15.8579356 L16.679,19 L26,19 L26,21 L16.446,21 L19.8582283,24.4440294 L18.4375962,25.8517951 L13.4375962,20.8060967 L13.354859,20.7115403 C13.0516928,20.3179857 13.0818697,19.7510759 13.4437342,19.3921905 L13.4437342,19.3921905 L18.4391607,14.4378889 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 660 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill="#0D0D0D" d="M20,4 C28.836,4 36,11.164 36,20 C36,28.836 28.836,36 20,36 C11.164,36 4,28.836 4,20 C4,11.164 11.164,4 20,4 Z M20,6 C12.2685695,6 6,12.2685695 6,20 C6,27.7314305 12.2685695,34 20,34 C27.7314305,34 34,27.7314305 34,20 C34,12.2685695 27.7314305,6 20,6 Z M26.0574126,15.2928932 L27.4716262,16.7071068 L18.0464454,26.1322875 L13.2928932,21.3787353 L14.7071068,19.9645218 L18.046,23.303 L26.0574126,15.2928932 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 527 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill="#00C65E" fill-rule="evenodd" d="M20,4 C28.836,4 36,11.164 36,20 C36,28.836 28.836,36 20,36 C11.164,36 4,28.836 4,20 C4,11.164 11.164,4 20,4 Z M20,6 C12.2685695,6 6,12.2685695 6,20 C6,27.7314305 12.2685695,34 20,34 C27.7314305,34 34,27.7314305 34,20 C34,12.2685695 27.7314305,6 20,6 Z M24.9497475,13.636039 L26.363961,15.0502525 L21.4142136,20 L26.363961,24.9497475 L24.9497475,26.363961 L20,21.4142136 L15.0502525,26.363961 L13.636039,24.9497475 L18.5857864,20 L13.636039,15.0502525 L15.0502525,13.636039 L20,18.5857864 L24.9497475,13.636039 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 652 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<path fill="#0D0D0D" d="M20,4 C28.836,4 36,11.164 36,20 C36,28.836 28.836,36 20,36 C11.164,36 4,28.836 4,20 C4,11.164 11.164,4 20,4 Z M20,6 C12.2685695,6 6,12.2685695 6,20 C6,27.7314305 12.2685695,34 20,34 C27.7314305,34 34,27.7314305 34,20 C34,12.2685695 27.7314305,6 20,6 Z M19.4363719,13.4966307 C19.8299265,13.1934645 20.3968364,13.2236414 20.7557217,13.5855059 L20.7557217,13.5855059 L25.7100234,18.5809324 L24.2899766,19.9892886 L21,16.673 L21,26 L19,26 L19,16.733 L15.7038828,20.0000001 L14.2961172,18.5793679 L19.3418155,13.5793679 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 638 B

View File

@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="1-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M29.031876,20.9098666 L28.9376,20.9996 L26.0006,32.418457 L26.0002217,47.4850772 C15.5253909,39.5307935 9.94339742,30.0594707 13.1535,24.4995 C15.3983377,20.6113901 21.4491262,19.4904168 29.031876,20.9098666 Z"/>
<g filter="url(#1-a)">
<g transform="translate(10 9)">
<path stroke="#222829" stroke-width="2" d="M25.1486,1.9116 C26.6606,0.6766 28.2946,-0.0004 30.0006,-0.0004 C37.7326,-0.0004 44.0006,13.8786 44.0006,30.9996 C44.0006,48.1206 37.7326,61.9996 30.0006,61.9996 C22.2676,61.9996 16.0006,48.1206 16.0006,30.9996 C16.0006,23.8406 17.0956,17.2476 18.9376,11.9996"/>
<path stroke="#222829" stroke-width="2" d="M57.6955,41.9185 C57.8795,43.6185 57.6145,45.1705 56.8465,46.4995 C52.9805,53.1955 37.8275,51.6855 23.0005,43.1245 C8.1735,34.5645 -0.7125,22.1955 3.1535,15.4995 C7.0195,8.8035 22.1735,10.3145 37.0005,18.8745 C43.2405,22.4785 48.4285,26.7565 52.0565,31.0025"/>
<path stroke="#222829" stroke-width="2" d="M2.3049,41.9155 C2.1199,43.6165 2.3859,45.1695 3.1539,46.4995 C7.0199,53.1955 22.1729,51.6855 36.9999,43.1245 C51.8269,34.5645 60.7129,22.1955 56.8469,15.4995 C52.9809,8.8035 37.8269,10.3145 22.9999,18.8745 C16.7599,22.4785 11.5729,26.7545 7.9459,30.9995"/>
<path stroke="#222829" stroke-width="2" d="M6.0002 38.9995C6.0002 40.6565 4.6562 41.9995 3.0002 41.9995 1.3442 41.9995.0002 40.6565.0002 38.9995.0002 37.3435 1.3442 35.9995 3.0002 35.9995 4.6562 35.9995 6.0002 37.3435 6.0002 38.9995zM60.0002 38.9995C60.0002 40.6565 58.6562 41.9995 57.0002 41.9995 55.3442 41.9995 54.0002 40.6565 54.0002 38.9995 54.0002 37.3435 55.3442 35.9995 57.0002 35.9995 58.6562 35.9995 60.0002 37.3435 60.0002 38.9995zM26.0002 3.9995C26.0002 5.6565 24.6562 6.9995 23.0002 6.9995 21.3442 6.9995 20.0002 5.6565 20.0002 3.9995 20.0002 2.3435 21.3442.9995 23.0002.9995 24.6562.9995 26.0002 2.3435 26.0002 3.9995zM21.0002 38.9995C21.0002 32.9995 27.0002 31.9995 27.0002 31.9995M39.0002 38.9995C39.0002 32.9995 33.0002 31.9995 33.0002 31.9995"/>
<path stroke="#222829" stroke-width="2" d="M35.0002,26.4995 C35.0002,29.9995 33.0372,32.9995 30.0002,32.9995 C26.9632,32.9995 25.0002,29.9995 25.0002,26.4995 C25.0002,22.9995 26.0002,20.9995 30.0002,20.9995 C34.0002,20.9995 35.0002,22.9995 35.0002,26.4995 Z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,23 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="2-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M29.9995,22.8085938 C30.1359824,30.4981283 30.6818034,36.1106364 31.6369629,39.6461182 C32.5921224,43.1815999 34.0268555,48.737915 35.9411621,56.3150635 L39.5767822,64.1800537 C41.6760661,62.1558838 42.9145915,60.492391 43.2923584,59.1895752 C43.8590088,57.2353516 48.1157227,43.7679443 48.5151367,40.7745361 C48.7814128,38.7789307 49.2762005,34.81486 49.9995,28.8823242 L49.7983398,22.8085938 C46.3836263,21.8491211 44.3798014,20.931722 43.7868652,20.0563965 C43.193929,19.181071 41.931474,18.023234 39.9995,16.5828857 L37.0494385,19.3743896 L33.2687988,21.4703369 L29.9995,22.8085938 Z"/>
<g stroke-linejoin="round" filter="url(#2-a)">
<g transform="translate(13 9)">
<path stroke="#222829" stroke-width="2" d="M26.9995,-0.0002 L27.9995,-0.0002 C27.9995,-0.0002 33.9995,8.9998 40.9995,8.9998 L53.9995,8.9998 L53.9995,12.9998 C53.9995,50.9998 26.9995,61.9998 26.9995,61.9998 C26.9995,61.9998 -0.0005,50.9998 -0.0005,12.9998 L-0.0005,8.9998 L12.9995,8.9998 C19.9995,8.9998 25.9995,-0.0002 25.9995,-0.0002 L26.9995,-0.0002 Z"/>
<path stroke="#222829" stroke-width="2" d="M26.9995 55.9998C26.9995 55.9998 48.9995 43.9998 48.9995 13.9998L40.9995 13.9998C30.9995 13.9998 26.9995 6.9998 26.9995 6.9998 26.9995 6.9998 22.9995 13.9998 12.9995 13.9998L4.9995 13.9998C4.9995 43.9998 26.9995 55.9998 26.9995 55.9998zM16.9995 13.9998C16.9995 40.9998 26.9995 55.9998 26.9995 55.9998M36.9995 13.9998C36.9995 40.9998 26.9995 55.9998 26.9995 55.9998"/>
<line x1="27" x2="27" y1="17" y2="19" stroke="#222829" stroke-width="2"/>
<line x1="27" x2="27" y1="13" y2="15" stroke="#222829" stroke-width="2"/>
<line x1="27" x2="27" y1="21" y2="23" stroke="#222829" stroke-width="2"/>
<line x1="10.999" x2="10.999" y1="17" y2="19" stroke="#222829" stroke-width="2"/>
<line x1="10.999" x2="10.999" y1="21" y2="23" stroke="#222829" stroke-width="2"/>
<line x1="42.999" x2="42.999" y1="17" y2="19" stroke="#222829" stroke-width="2"/>
<line x1="42.999" x2="42.999" y1="21" y2="23" stroke="#222829" stroke-width="2"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,86 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="3-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
<polygon id="3-b" points="0 .5 64 .5 64 3.5 0 3.5"/>
</defs>
<g fill="none" fill-rule="evenodd">
<rect width="31" height="32" x="9" y="9" fill="#00C65E"/>
<g filter="url(#3-a)">
<g transform="translate(8 9)">
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M29.0002 27C29.0002 25.344 30.3442 24 32.0002 24 33.6562 24 35.0002 25.344 35.0002 27M32.0002 20C35.8662 20 39.0002 23.134 39.0002 27M25.0002 27C25.0002 25.093 25.7632 23.363 27.0002 22.102"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M21.0002 27C21.0002 20.925 25.9252 16 32.0002 16 38.0752 16 43.0002 20.925 43.0002 27M41.9982 15.8184C45.0682 18.5644 47.0002 22.5564 47.0002 27.0004M17.0002 27C17.0002 18.716 23.7162 12 32.0002 12"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M26.0002 8.9668C27.8862 8.3398 29.9022 7.9998 32.0002 7.9998 42.4932 7.9998 51.0002 16.5068 51.0002 26.9998M13.0002 27C13.0002 21.971 14.9532 17.398 18.1452 14M53.1721 17.998C54.3501 20.763 55.0001 23.806 55.0001 27"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M10.0852,20 C13.0472,10.72 21.7382,4 32.0002,4 C39.8782,4 46.8302,7.961 50.9762,13.999"/>
<g transform="translate(0 31)">
<mask id="3-c" fill="#fff">
<use xlink:href="#3-b"/>
</mask>
<line x2="64" y1="2" y2="2" stroke="#222829" stroke-linejoin="round" stroke-width="2" mask="url(#3-c)"/>
</g>
<line x1="9" x2="9" y1="43" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="9" x2="9" y1="37" y2="41" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="17" y1="41" y2="47" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="17" y1="49" y2="55" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="17" y1="35" y2="37" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="39" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="32" y2="37" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="51" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="9" x2="9" y1="51" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="25" y1="51" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="55" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="25" y1="35" y2="39" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="25" y1="41" y2="47" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="39" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="32" y2="37" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="45" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="41" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="51" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="32" y2="39" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="45" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="55" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="37" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="51" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="51" y1="53" y2="57" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="51" y1="35" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="51" y1="45" y2="51" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="47" x2="47" y1="35" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="47" x2="47" y1="47" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="32" y2="39" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="53" y2="55" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="41" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="45" y2="47" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="35" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="49" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="43" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="32" y2="41" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="51" y2="55" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="55" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="51" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="35" x2="35" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="29" x2="29" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="25" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="21" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="9" x2="9" y1="27" y2="35" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="17" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="27" y2="32" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="13" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="32" y2="35" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="63 53 63 62 54 62"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="10 62 1 62 1 53"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="10 0 1 0 1 9"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="54 0 63 0 63 9"/>
<line x1="4" x2="6" y1="4" y2="4" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="58" x2="60" y1="4" y2="4" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="4" x2="6" y1="58" y2="58" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="58" x2="60" y1="58" y2="58" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -0,0 +1,25 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="4-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M70.999,9 L71,29 L67.4160156,29.8366699 L66,31.8007812 L66,36 L68,40 L40,40 C40,22.8791728 53.8791728,9 71,9 L70.999,9 Z" transform="matrix(-1 0 0 1 111 0)"/>
<g filter="url(#4-a)">
<g transform="translate(9 9)">
<path stroke="#222829" stroke-width="2" d="M26,25.5 C26,29 27.963,32 31,32 C34.037,32 36,29 36,25.5 C36,22 35,20 31,20 C27,20 26,22 26,25.5 Z"/>
<path stroke="#222829" stroke-width="2" d="M28,31 L21,35 L21,37 C21,38.656 22,40 23,40 L39,40 C40,40 41,38.656 41,37 L41,35 L34,31"/>
<path stroke="#222829" stroke-width="2" d="M62,31 C62,48.121 48.121,62 31,62 C13.879,62 0,48.121 0,31 C0,13.879 13.879,0 31,0 C48.121,0 62,13.879 62,31 Z"/>
<path stroke="#222829" stroke-width="2" d="M31,15 L31,4 C18.51,4 8,12.482 4.916,24"/>
<polyline stroke="#222829" stroke-width="2" points="35 11 31 15 27 11"/>
<path stroke="#222829" stroke-width="2" d="M31,47 L31,58 C43.49,58 54,49.518 57.084,38"/>
<polyline stroke="#222829" stroke-width="2" points="35 51 31 47 27 51"/>
<path stroke="#222829" stroke-width="2" d="M47,31 L58,31 C58,18.51 49.518,8 38,4.916"/>
<polyline stroke="#222829" stroke-width="2" points="51 35 47 31 51 27"/>
<path stroke="#222829" stroke-width="2" d="M15,31 L4,31 C4,43.49 12.482,54 24,57.084"/>
<polyline stroke="#222829" stroke-width="2" points="11 35 15 31 11 27"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,33 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="5-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
<polygon id="5-b" points="0 58 64 58 64 0 0 0"/>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="13 50 46 50 46 16 13 16"/>
<g filter="url(#5-a)">
<g transform="translate(8 11)">
<polygon stroke="#222829" stroke-linejoin="round" stroke-width="2" points="20 32 11 27 11 17 20 22"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="20 22 29 17 29 27 20 32"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="29 17 20 12 11 17"/>
<line x1="34" x2="54" y1="16" y2="16" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="34" x2="54" y1="22" y2="22" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="34" x2="54" y1="28" y2="28" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="39" x2="39" y1="14" y2="18" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="49" x2="49" y1="20" y2="24" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="43" x2="43" y1="26" y2="30" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M4.0002,1 C2.3442,1 1.0002,2.343 1.0002,4 L1.0002,44 C1.0002,45.657 2.3442,47 4.0002,47 L60.0002,47 C61.6562,47 63.0002,45.657 63.0002,44 L63.0002,4 C63.0002,2.343 61.6562,1 60.0002,1 L4.0002,1 Z"/>
<line x1="38" x2="40" y1="47" y2="57" stroke="#222829" stroke-width="2"/>
<line x1="24" x2="26" y1="57" y2="47" stroke="#222829" stroke-width="2"/>
<line x1="19" x2="45" y1="57" y2="57" stroke="#222829" stroke-width="2"/>
<line x1="31" x2="33" y1="43" y2="43" stroke="#222829" stroke-width="2"/>
<mask id="5-c" fill="#fff">
<use xlink:href="#5-b"/>
</mask>
<polygon stroke="#222829" stroke-width="2" points="5 39 59 39 59 5 5 5" mask="url(#5-c)"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,31 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="6-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="69 17 63 17 63 11 58 9 54 14 50 9 45 11 45 17 39 17 37 22 42 26 37 30 39 35 45 35 45 41 50 43 54 38 58 43 63 41 63 35 69 35 71 30 66 26 71 22"/>
<g filter="url(#6-a)">
<g transform="translate(9 9)">
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M48 17C48 18.656 46.656 20 45 20 43.344 20 42 18.656 42 17 42 15.344 43.344 14 45 14 46.656 14 48 15.344 48 17zM4 33L4 6C4 4.896 4.896 4 6 4L33 4M58 29L58 56C58 57.104 57.104 58 56 58L29 58"/>
<line x1="7" x2="21" y1="8" y2="8" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="7" x2="9" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="11" x2="13" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="15" x2="17" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="32" y1="31" y2="31" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="41" y1="54" y2="54" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="53" y1="50" y2="50" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="51" x2="49" y1="50" y2="50" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="47" x2="45" y1="50" y2="50" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M14,48 C14,49.656 15.344,51 17,51 C18.656,51 20,49.656 20,48 C20,46.344 17,45 17,45 C17,45 14,43.656 14,42 C14,40.344 15.344,39 17,39 C18.656,39 20,40.344 20,42"/>
<line x1="17" x2="17" y1="39" y2="36" stroke="#222829" stroke-width="2"/>
<line x1="17" x2="17" y1="51" y2="54" stroke="#222829" stroke-width="2"/>
<line x1="23" x2="25" y1="45" y2="45" stroke="#222829" stroke-width="2"/>
<line x1="9" x2="11" y1="45" y2="45" stroke="#222829" stroke-width="2"/>
<polygon stroke="#222829" stroke-linejoin="round" stroke-width="2" points="60 8 54 8 54 2 49 0 45 5 41 0 36 2 36 8 30 8 28 13 33 17 28 21 30 26 36 26 36 32 41 34 45 29 49 34 54 32 54 26 60 26 62 21 57 17 62 13"/>
<polygon stroke="#222829" stroke-linejoin="round" stroke-width="2" points="32 36 26 36 26 30 21 28 17 33 13 28 8 30 8 36 2 36 0 41 5 45 0 49 2 54 8 54 8 60 13 62 17 57 21 62 26 60 26 54 32 54 34 49 29 45 34 41"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1,28 @@
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="131" viewBox="0 0 320 131">
<defs>
<filter id="1-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="178 49.889 178 80.111 208 99 238 80.111 238 49.889 208.938 31"/>
<polyline stroke="#0D0D0D" stroke-width="2" points="191.612 88.681 208 99 238 80.111 238 49.889 224.725 41.261"/>
<g filter="url(#1-a)">
<g transform="translate(112 5)">
<polygon stroke="#222829" stroke-width="2" points="32 14 48 4 64 14 64 30 48 40 32 30"/>
<polyline stroke="#222829" stroke-width="2" points="64 14 48 24 32 14"/>
<line x1="48.5" x2="48.5" y1="24" y2="40" stroke="#222829" stroke-width="2"/>
<line x1="68.5" x2="68.5" y1="82" y2="126" stroke="#222829" stroke-width="2"/>
<line x1="46" x2="50" y1="64.5" y2="64.5" stroke="#222829" stroke-width="2"/>
<line x1="38" x2="42" y1="64.5" y2="64.5" stroke="#222829" stroke-width="2"/>
<line x1="54" x2="58" y1="64.5" y2="64.5" stroke="#222829" stroke-width="2"/>
<g stroke="#222829" stroke-width="2">
<path d="M52 126L52 102C52 99.793 50.209 98 48 98 45.791 98 44 99.793 44 102L44 126M25 0L20 0C6.762 8.547 0 21.074 0 38 0 57.43 11.396 74.449 28 82L28 126"/>
<path d="M48,86 C74.51,86 96,64.512 96,38 C96,21.07 89.242,8.547 76,0 L72,0 L72,36 L48,52 L24,36 L24,0"/>
<path d="M72.004,6 C81.719,13.299 88,24.916 88,38 C88,60.094 70.092,78 48,78 C25.908,78 8,60.094 8,38"/>
</g>
</g>
</g>
<path stroke="#0D0D0D" stroke-width="2" d="M81,11.5 L110,11.5 M76,20.5 L95,20.5 M66,0.5 L85,0.5" transform="matrix(-1 0 0 1 176 0)"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,45 @@
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="131" viewBox="0 0 320 131">
<defs>
<filter id="2-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M163.409091,100 C178.094844,100 190,88.1355459 190,73.5 C190,58.8644541 178.094844,47 163.409091,47 C153.618589,47 122.482225,55.8333333 70,73.5 C122.482225,91.1666667 153.618589,100 163.409091,100 Z" transform="rotate(30 130 73.5)"/>
<g filter="url(#2-a)">
<g transform="translate(98 32)">
<line x1="62.5" x2="62.5" y1="51" y2="55" stroke="#222829" stroke-width="2"/>
<line x1="55" x2="66" y1="48.5" y2="48.5" stroke="#222829" stroke-width="2"/>
<line x1="53" x2="71" y1="44.5" y2="44.5" stroke="#222829" stroke-width="2"/>
<g stroke="#222829" stroke-width="2" transform="translate(33)">
<path d="M58,7 L58,15 L50,28 L41,28 C39.344,28 38,29.344 38,31 L38,48 L36,48 L36,55"/>
<polyline points="37 22 46 22 52 13"/>
<polyline points="6 13 12 22 21 22"/>
<path d="M0,7 L0,15 L8,28 L17,28 C18.656,28 20,29.344 20,31 L20,48 L22,48 L22,55"/>
<path d="M6 7C6 8.657 4.656 10 3 10 1.344 10 0 8.657 0 7 0 5.343 1.344 4 3 4 4.656 4 6 5.343 6 7zM58 7C58 8.657 56.656 10 55 10 53.344 10 52 8.657 52 7 52 5.343 53.344 4 55 4 56.656 4 58 5.343 58 7z"/>
<line x1="42.5" x2="42.5" y1="35" y2="37"/>
<line x1="42.5" x2="42.5" y1="39" y2="41"/>
<line x1="42.5" x2="42.5" y1="43" y2="45"/>
<line x1="16.5" x2="16.5" y1="35" y2="37"/>
<line x1="16.5" x2="16.5" y1="39" y2="41"/>
<line x1="16.5" x2="16.5" y1="43" y2="45"/>
<path d="M38,9 C38,13.971 33.971,18 29,18 C24.029,18 20,13.971 20,9 C20,4.029 24.029,0 29,0 C33.971,0 38,4.029 38,9 Z"/>
</g>
<g stroke="#222829" stroke-linejoin="round" stroke-width="2" transform="translate(8 14)">
<path d="M20 0L6 0C2.688 0 0 2.686 0 6L0 66M108 66L108 6C108 2.686 105.312 0 102 0L88 0"/>
<line x1="44" x2="48" y1="60.5" y2="60.5"/>
<line x1="36" x2="40" y1="60.5" y2="60.5"/>
<line x1="52" x2="56" y1="60.5" y2="60.5"/>
<line x1="60" x2="64" y1="60.5" y2="60.5"/>
<line x1="68" x2="72" y1="60.5" y2="60.5"/>
<polyline points="88 8 100 8 100 60 76 60"/>
<polyline points="32 60 8 60 8 8 20 8"/>
</g>
<polygon stroke="#00C65E" stroke-linejoin="round" stroke-width="2" points="116 98 8 98 0 90 0 86 48 86 52 90 72 90 76 86 124 86 124 90"/>
</g>
</g>
<polyline stroke="#0D0D0D" stroke-linejoin="round" stroke-width="2" points="241.6 54.514 250.88 58 243.92 44.054 259 38.243 243.92 33.595 252.04 20.811 235.8 26.622 230 15 224.2 26.622 207.96 20.811 216.08 34.757 201 38.243 216.08 44.054" transform="rotate(45 230 36.5)"/>
<path stroke="#0D0D0D" stroke-linejoin="round" stroke-width="2" d="M232,41 C232,44.314 229.313,47 226,47 C222.688,47 220,44.314 220,41 C220,37.687 222.688,35 226,35 C229.313,35 232,37.687 232,41 Z"/>
<polyline stroke="#0D0D0D" stroke-width="2" points="91.662 58.841 78.038 43.5 95.449 47"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1,42 @@
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="142" viewBox="0 0 320 142">
<defs>
<filter id="3-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
<filter id="3-b">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<circle cx="113" cy="75" r="30" fill="#00C65E"/>
<path stroke="#0D0D0D" stroke-width="2" d="M118.915797,102.769022 C122.76683,97.7236662 125.054043,91.4207079 125.054043,84.5835421 C125.054043,68.0149997 111.622586,54.5835421 95.0540434,54.5835421 C89.869893,54.5835421 84.9928659,55.8984936 80.7383027,58.213056" transform="rotate(-165 102.896 78.676)"/>
<g filter="url(#3-a)">
<g transform="translate(100 21)">
<polyline stroke="#222829" stroke-width="2" points="82 20 82 56.068 80 60.075 80 104"/>
<path stroke="#222829" stroke-width="2" d="M46 6C46 2.687 48.688 0 52 0 55.313 0 58 2.687 58 6M46 14L46 6.0004286C46 2.68619187 43.312 0 40 0 36.687 0 34 2.68619187 34 6.0004286L34 14M58 20C58 23.313 55.3088195 26 51.9929007 26 49.9114408 26 48.0802767 24.944 47 23.34M70 20C70 23.313 67.312 26 64 26 60.687 26 58 23.313 58 20L58 6C58 2.687 60.687 0 64 0 67.312 0 70 2.687 70 6M82 6C82 2.687 79.312 0 76 0 72.687 0 70 2.687 70 6L70 20C70 23.313 72.687 26 76 26 79.312 26 82 23.313 82 20L82 6z"/>
<line x1="80" x2="72" y1="59.5" y2="59.5" stroke="#222829" stroke-width="2"/>
<line x1="42" x2="50" y1="59.5" y2="59.5" stroke="#222829" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M46,34 C54.836,34 62,41.163 62,50"/>
<line x1="80" x2="68" y1="67.5" y2="67.5" stroke="#222829" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M40,36 L40,26.001 C40,26.001 50,24 50,18 C50,15.791 48.209,14 46,14 L34,14 C29.581,14 26,17.583 26,22.001 L26,44.001 L42,60.001 L42,90"/>
<line x1="40" x2="34" y1="25.5" y2="25.5" stroke="#222829" stroke-width="2"/>
<line x1="89.5" x2="89.5" y1="74" y2="78" stroke="#222829" stroke-width="2"/>
<line x1="89.5" x2="89.5" y1="82" y2="86" stroke="#222829" stroke-width="2"/>
<line x1="89.5" x2="89.5" y1="90" y2="94" stroke="#222829" stroke-width="2"/>
<line x1="33.5" x2="33.5" y1="62" y2="66" stroke="#222829" stroke-width="2"/>
<line x1="33.5" x2="33.5" y1="70" y2="74" stroke="#222829" stroke-width="2"/>
<line x1="33.5" x2="33.5" y1="78" y2="82" stroke="#222829" stroke-width="2"/>
<line x1="17" x2="62" y1="89.5" y2="89.5" stroke="#222829" stroke-width="2"/>
<line x2="120" y1="103.5" y2="103.5" stroke="#222829" stroke-width="2"/>
<line x1="36" x2="92" y1="117.5" y2="117.5" stroke="#222829" stroke-width="2"/>
</g>
</g>
<g stroke-linecap="round" stroke-linejoin="round" filter="url(#3-b)">
<g transform="translate(197)">
<circle cx="19.5" cy="19.5" r="19.5" stroke="#000" stroke-width="2"/>
<line x2="39" y1="19.5" y2="19.5" stroke="#000" stroke-width="2"/>
<path stroke="#000" stroke-width="2" d="M19.5,0 C24.3774967,5.33978814 27.1493679,12.269466 27.3,19.5 C27.1493679,26.730534 24.3774967,33.6602119 19.5,39 C14.6225033,33.6602119 11.8506321,26.730534 11.7,19.5 C11.8506321,12.269466 14.6225033,5.33978814 19.5,0 L19.5,0 Z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,14 @@
<svg xmlns="http://www.w3.org/2000/svg" width="66" height="66" viewBox="0 0 66 66">
<defs>
<filter id="add-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd" transform="translate(-.097 .903)">
<circle cx="33.097" cy="33.097" r="32" fill="#00C65E"/>
<path stroke="#0D0D0D" stroke-width="2" d="M59.7279532,50.4620828 C62.9634424,45.4615529 64.8418319,39.5010119 64.8418319,33.1017494 C64.8418319,15.4286374 50.5149439,1.1017494 32.8418319,1.1017494 C15.1687199,1.1017494 0.84183186,15.4286374 0.84183186,33.1017494" transform="rotate(-2 32.842 25.782)"/>
<g filter="url(#add-a)" transform="translate(13.097 13.097)">
<path fill="#FFF" d="M21,12 L21,19 L28,19 L28,21 L21,21 L21,28 L19,28 L19,21 L12,21 L12,19 L19,19 L19,12 L21,12 Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 912 B

View File

@ -0,0 +1,20 @@
<svg xmlns="http://www.w3.org/2000/svg" width="62" height="54" viewBox="0 0 62 54">
<defs>
<filter id="cloud-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="25.097 46.291 25.097 32 19.354 32 30 21 40.343 32 35 32 35 50"/>
<g filter="url(#cloud-a)">
<path stroke="#222829" stroke-width="2" d="M41 40L50 40C56.627 40 62 34.628 62 28 62 22.053 58 17 52 17 52 12 49 8 43 8L42 8C39.272 3.076 34.028 0 28 0 19.164 0 12 7.164 12 16 5.373 16 0 21.373 0 28 0 34.628 5.373 40 12 40L21 40M18 17C18 10.925 23 6 28 6"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="25 54 25 32 19 32 30 21 41 32 35 32 35 54"/>
<line x1="30" x2="30" y1="31" y2="33" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="35" y2="37" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="39" y2="41" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="43" y2="45" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="47" y2="49" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="30" x2="30" y1="51" y2="53" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,45 @@
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="142" viewBox="0 0 320 142">
<defs>
<filter id="dev-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
<filter id="dev-b">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<rect width="96" height="48" x="158" y="57" fill="#00C65E" rx="4"/>
<g filter="url(#dev-a)">
<g transform="translate(96 13)">
<path stroke="#0D0D0D" stroke-width="2" d="M135.724609,44 L154,44 C156.209139,44 158,45.790861 158,48 L158,88 C158,90.209139 156.209139,92 154,92 L110,92 L110,92"/>
<g stroke="#0D0D0D" stroke-width="2" transform="translate(0 20)">
<rect width="126" height="78" x="1" y="13"/>
<path d="M24.3242188,1 L34.4384766,1 L123,1 C125.209139,1 127,2.790861 127,5 L127,13 L127,13 L1,13" transform="matrix(-1 0 0 1 128 0)"/>
<line x1="14" x2="18" y1="7" y2="7"/>
<line x1="6" x2="10" y1="7" y2="7"/>
<line x1="22" x2="26" y1="7" y2="7"/>
</g>
<line x1="40" x2="96" y1="125" y2="125" stroke="#0D0D0D" stroke-width="2"/>
<rect width="48" height="2" x="18" y="66" fill="#0D0D0D"/>
<rect width="16" height="2" x="70" y="66" fill="#0D0D0D"/>
<rect width="4" height="2" x="90" y="66" fill="#0D0D0D"/>
<rect width="24" height="2" x="18" y="96" fill="#0D0D0D"/>
<rect width="24" height="2" x="46" y="96" fill="#0D0D0D"/>
<rect width="4" height="2" x="74" y="96" fill="#0D0D0D"/>
<rect width="64" height="2" x="10" y="56" fill="#0D0D0D"/>
<rect width="4" height="2" x="10" y="46" fill="#0D0D0D"/>
<rect width="16" height="2" x="10" y="86" fill="#0D0D0D"/>
<rect width="20" height="2" x="78" y="56" fill="#0D0D0D"/>
<rect width="32" height="2" x="18" y="76" fill="#0D0D0D"/>
<rect width="24" height="2" x="54" y="76" fill="#0D0D0D"/>
<g filter="url(#dev-b)">
<g transform="translate(117)">
<polyline stroke="#222829" stroke-width="2" points="5.414 14.486 .414 9.486 5.414 4.486"/>
<polyline stroke="#222829" stroke-width="2" points="19.414 4.486 24.414 9.486 19.414 14.486"/>
<line x1="7.414" x2="17.414" y1="18.486" y2=".486" stroke="#222829" stroke-width="2"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" width="66" height="66" viewBox="0 0 66 66">
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" fill-rule="nonzero" d="M27.0520398 0C27.5753138 0 28 .447682365 28 .999290994L28 30.9960081C28 44.5933606 23.2729963 54.3709234 12.4032103 64.5661897L11.145267 65.746852C10.7826722 66.0871106 10.2352252 66.0841127 9.87642226 65.7393574L.309607581 56.5488781C-.0913795976 56.164151-.104651041 55.5036197.280220814 55.1009054L1.67704022 53.639942C6.94201136 48.2777465 11.8581331 42.1061253 12.0557828 34.0468435L2.2638276 34.0468435C1.74007957 34.0468435 1.31586737 33.5991611 1.31586737 33.0475525L1.31586737.999290994C1.31586737.447682365 1.74007957 0 2.2638276 0L27.0520398 0zM59.0520558 0C59.575795 0 60 .447682365 60 .999290994L60 30.9960081C60 44.5933606 55.2730763 54.3709234 44.4034743 64.5661897L43.1455523 65.746852C42.7829637 66.0871106 42.2355259 66.0841127 41.8767291 65.7393574L32.3096023 56.5488781C31.9086219 56.164151 31.8953507 55.5036197 32.2802161 55.1009054L33.6774858 53.639942C38.9418938 48.2777465 43.8588803 42.1061253 44.0560527 34.0468435L34.3562138 34.0468435C33.8324747 34.0468435 33.4082697 33.5991611 33.4082697 33.0475525L33.4082697.999290994C33.4082697.447682365 33.8324747 0 34.3562138 0L59.0520558 0z" transform="translate(3)"/>
<path stroke="#0D0D0D" stroke-width="2" d="M63,30.9960081 C63,44.5933606 58.2730763,54.3709234 47.4034743,64.5661897 L46.1455523,65.746852 C45.7829637,66.0871106 45.2355259,66.0841127 44.8767291,65.7393574 L35.3096023,56.5488781 C34.9086219,56.164151 34.8953507,55.5036197 35.2802161,55.1009054 L36.6774858,53.639942 C41.9418938,48.2777465 46.8588803,42.1061253 47.0560527,34.0468435 L37.3562138,34.0468435 C36.8324747,34.0468435 36.4082697,33.5991611 36.4082697,33.0475525 C36.4082697,24.4974467 36.4082697,18.0848673 36.4082697,13.8098145"/>
<rect width="14" height="2" x="8" y="4" fill="#0D0D0D"/>
<rect width="6" height="2" x="8" y="8" fill="#0D0D0D"/>
<rect width="15" height="2" x="8" y="12" fill="#0D0D0D"/>
<rect width="13" height="2" x="8" y="16" fill="#0D0D0D"/>
<rect width="8" height="2" x="8" y="20" fill="#0D0D0D"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,21 @@
<svg xmlns="http://www.w3.org/2000/svg" width="320" height="142" viewBox="0 0 320 142">
<g fill="none" fill-rule="evenodd">
<rect width="31" height="50" x="106" y="16" fill="#00C65E" rx="4"/>
<path stroke="#0D0D0D" stroke-width="2" d="M112.462445,16 L133,16 C135.209139,16 137,17.790861 137,20 L137,62 C137,64.209139 135.209139,66 133,66 L130.91626,66 L130.91626,66" transform="matrix(-1 0 0 1 243 0)"/>
<g transform="translate(114 22)">
<path stroke="#0D0D0D" stroke-width="2" d="M40.5780596,1 L41,45.5547391 C41,65.2479944 33.989514,79.3960964 17.9279165,94.1566574 L17.9279165,94.1566574 L16.0410667,95.8918133 L1.14934725,82.3811114 L3.22192035,79.542313 C11.5328346,71.2489249 19.1990748,61.645947 19.0917889,49.0385427 L19.0917889,49.0385427 L3.39574141,49.0385427 L2.97380105,1.46865495 L40.5780596,1 Z"/>
<circle cx="22" cy="31" r="9" stroke="#0D0D0D" stroke-width="2"/>
<circle cx="16.5" cy="14.5" r="3.5" stroke="#0D0D0D" stroke-width="2"/>
<path stroke="#0D0D0D" stroke-width="2" d="M88.5780837,1 L89,45.5547391 C89,65.2479959 81.9896338,79.3961004 65.9283063,94.1566631 L65.9283063,94.1566631 L64.0414885,95.8918191 L49.1493455,82.3811172 L51.2226266,79.5422752 C59.532646,71.248893 67.2002625,61.6459156 67.0921294,49.0385427 L67.0921294,49.0385427 L51.5343208,49.0385427 L51.1124045,1.46865495 L88.5780837,1 Z"/>
<rect width="15" height="2" x="56" y="8" fill="#0D0D0D"/>
<rect width="10" height="2" x="56" y="12" fill="#0D0D0D"/>
<rect width="25" height="2" x="56" y="16" fill="#0D0D0D"/>
<rect width="21" height="2" x="56" y="20" fill="#0D0D0D"/>
<rect width="8" height="2" x="56" y="24" fill="#0D0D0D"/>
<rect width="3" height="2" x="56" y="28" fill="#0D0D0D"/>
<rect width="10" height="2" x="56" y="28" fill="#0D0D0D"/>
<rect width="17" height="2" x="56" y="32" fill="#0D0D0D"/>
<rect width="9" height="2" x="56" y="36" fill="#0D0D0D"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,50 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<g fill="none" fill-rule="evenodd">
<polyline fill="#00C65E" points="46 36 46 59 71 59 71 36"/>
<g stroke="#222829" stroke-width="2" transform="translate(9 13)">
<path d="M53.9997,9 L53.9997,3 C53.9997,1.343 52.6557,0 50.9997,0 L2.9997,0 C1.3437,0 -0.0003,1.343 -0.0003,3 L-0.0003,41 C-0.0003,42.657 1.3437,44 2.9997,44 L34.9997,44"/>
<line x1="32" x2="32" y1="44" y2="54"/>
<line x1="22" x2="22" y1="54" y2="44"/>
<line x1="19" x2="35" y1="54" y2="54"/>
<line x2="35" y1="36" y2="36"/>
<line x1="26" x2="28" y1="40" y2="40"/>
<path d="M37.9997,17 L37.9997,14 C37.9997,12.896 38.8957,12 39.9997,12 L59.9997,12 C61.1037,12 61.9997,12.896 61.9997,14 L61.9997,52 C61.9997,53.104 61.1037,54 59.9997,54 L39.9997,54 C38.8957,54 37.9997,53.104 37.9997,52 L37.9997,27"/>
<line x1="52" x2="48" y1="50" y2="50"/>
<line x1="53" x2="31" y1="24" y2="24"/>
<line x1="43" x2="24" y1="20" y2="20"/>
<polyline stroke-linecap="round" points="27 23 24 20 27 17"/>
<line x1="53" x2="50" y1="24" y2="21" stroke-linecap="round"/>
<line x1="53" x2="50" y1="24" y2="27" stroke-linecap="round"/>
<line x1="38" x2="62" y1="46" y2="46"/>
<polyline points="4 33 4 4 51 4"/>
<line x1="7" x2="9" y1="12" y2="12"/>
<line x1="11" x2="13" y1="12" y2="12"/>
<line x1="15" x2="17" y1="12" y2="12"/>
<line x1="7" x2="9" y1="16" y2="16"/>
<line x1="11" x2="13" y1="16" y2="16"/>
<line x1="15" x2="17" y1="16" y2="16"/>
<line x1="7" x2="9" y1="20" y2="20"/>
<line x1="11" x2="13" y1="20" y2="20"/>
<line x1="19" x2="21" y1="12" y2="12"/>
<line x1="7" x2="9" y1="8" y2="8"/>
<line x1="11" x2="13" y1="8" y2="8"/>
<line x1="15" x2="17" y1="8" y2="8"/>
<line x1="19" x2="21" y1="8" y2="8"/>
<line x1="23" x2="25" y1="12" y2="12"/>
<line x1="23" x2="25" y1="8" y2="8"/>
<line x1="53" x2="55" y1="38" y2="38"/>
<line x1="57" x2="59" y1="38" y2="38"/>
<line x1="53" x2="55" y1="34" y2="34"/>
<line x1="57" x2="59" y1="34" y2="34"/>
<line x1="49" x2="51" y1="34" y2="34"/>
<line x1="41" x2="43" y1="38" y2="38"/>
<line x1="45" x2="47" y1="38" y2="38"/>
<line x1="49" x2="51" y1="38" y2="38"/>
<line x1="53" x2="55" y1="42" y2="42"/>
<line x1="57" x2="59" y1="42" y2="42"/>
<line x1="41" x2="43" y1="42" y2="42"/>
<line x1="45" x2="47" y1="42" y2="42"/>
<line x1="49" x2="51" y1="42" y2="42"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,41 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="21 11 21 37 42 37 42 11"/>
<g stroke="#222829" stroke-linejoin="round" stroke-width="2" transform="translate(13 10)">
<polyline points="29 27 8 27 8 1 46 1 46 16"/>
<line x1="12" x2="12" y1="12" y2="14"/>
<line x1="12" x2="12" y1="8" y2="10"/>
<line x1="16" x2="16" y1="6" y2="14"/>
<line x1="20" x2="20" y1="12" y2="14"/>
<line x1="24" x2="24" y1="6" y2="14"/>
<line x1="30" x2="30" y1="6" y2="14"/>
<line x1="34" x2="34" y1="6" y2="8"/>
<line x1="38" x2="38" y1="6" y2="8"/>
<line x1="34" x2="34" y1="10" y2="12"/>
<line x1="38" x2="38" y1="12" y2="16"/>
<line x1="42" x2="42" y1="6" y2="14"/>
<line x1="34" x2="34" y1="14" y2="20"/>
<line x1="12" x2="12" y1="16" y2="24"/>
<line x1="16" x2="16" y1="22" y2="24"/>
<line x1="26" x2="26" y1="22" y2="24"/>
<line x1="30" x2="30" y1="20" y2="22"/>
<line x1="30" x2="30" y1="16" y2="18"/>
<line x1="16" x2="16" y1="16" y2="18"/>
<line x1="22" x2="22" y1="16" y2="24"/>
<g transform="translate(0 .5)">
<line x1="50" x2="50" y1="3.5" y2=".5"/>
<line x1="4" x2="4" y1="3.5" y2=".5"/>
<path d="M50.4997,29.5 C50.4997,33.918 46.9187,37.5 42.4997,37.5 C38.0817,37.5 34.4997,33.918 34.4997,29.5 C34.4997,25.082 38.0817,21.5 42.4997,21.5 C46.9187,21.5 50.4997,25.082 50.4997,29.5 Z"/>
<line x1="7" x2="21" y1="40.5" y2="40.5"/>
<line x1="7" x2="31" y1="44.5" y2="44.5"/>
<line x1="7" x2="31" y1="48.5" y2="48.5"/>
<polyline points="35 56.5 0 56.5 0 16.5"/>
<line x1="45" x2="51" y1="56.5" y2="56.5"/>
<line x1="45" x2="47.667" y1="52.5" y2="52.5"/>
<line x1="45" x2="49" y1="48.5" y2="48.5"/>
<polyline points="54 17.5 54 .5 0 .5 0 12.5"/>
<polyline points="44.5 38 44.5 60 40.5 60 40.5 38"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,20 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="40 29 23.211 40 40 51 57.229 40"/>
<g stroke="#222829" stroke-linejoin="round" stroke-width="2" transform="translate(9 11)">
<polygon points="31 58 0 38 31 18 62 38"/>
<polygon points="31 49 0 29 31 9 62 29"/>
<polygon points="31 40 0 20 31 0 62 20"/>
<line x1="30" x2="32" y1="27" y2="27"/>
<line x1="30" x2="32" y1="23" y2="23"/>
<line x1="30" x2="32" y1="31" y2="31"/>
<line x1="34" x2="36" y1="27" y2="27"/>
<line x1="38" x2="40" y1="29" y2="29"/>
<line x1="22" x2="24" y1="29" y2="29"/>
<line x1="34" x2="36" y1="31" y2="31"/>
<line x1="26" x2="28" y1="27" y2="27"/>
<line x1="26" x2="28" y1="31" y2="31"/>
<line x1="30" x2="32" y1="35" y2="35"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 915 B

View File

@ -0,0 +1,42 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="4-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="24.5 49.5 18 52.626 17.5 55.378 18 57 22.59 62.588 25 62.588 27 63 28 64.116 29 66 34.999 67 37 68 37.826 65.601 40 64.67 39.515 59.5 39.515 57 37 56 37 54 35.676 53 30.677 49.919 29 49.5 28 50.59 25 50.59"/>
<g filter="url(#4-a)">
<g transform="translate(9 9)">
<line x1="59" x2="57" y1="34" y2="42" stroke="#222829" stroke-width="2"/>
<line x1="31" x2="31" y1="48" y2="56" stroke="#222829" stroke-width="2"/>
<g stroke="#222829" stroke-width="2">
<path d="M34 31C34 32.656 32.656 34 31 34 29.344 34 28 32.656 28 31 28 29.344 29.344 28 31 28 32.656 28 34 29.344 34 31zM34 17C34 18.656 32.656 20 31 20 29.344 20 28 18.656 28 17 28 15.344 29.344 14 31 14 32.656 14 34 15.344 34 17zM34 3C34 4.656 32.656 6 31 6 29.344 6 28 4.656 28 3 28 1.344 29.344 0 31 0 32.656 0 34 1.344 34 3zM34 45C34 46.656 32.656 48 31 48 29.344 48 28 46.656 28 45 28 43.344 29.344 42 31 42 32.656 42 34 43.344 34 45zM34 59C34 60.656 32.656 62 31 62 29.344 62 28 60.656 28 59 28 57.344 29.344 56 31 56 32.656 56 34 57.344 34 59zM21 23C21 24.656 19.656 26 18 26 16.344 26 15 24.656 15 23 15 21.344 16.344 20 18 20 19.656 20 21 21.344 21 23zM47 23C47 24.656 45.656 26 44 26 42.344 26 41 24.656 41 23 41 21.344 42.344 20 44 20 45.656 20 47 21.344 47 23zM59 45C59 43.344 57.656 42 56 42 54.344 42 53 43.344 53 45 53 46.656 54.344 48 56 48 57.656 48 59 46.656 59 45zM49 56C49 54.344 47.656 53 46 53 44.344 53 43 54.344 43 56 43 57.656 44.344 59 46 59 47.656 59 49 57.656 49 56zM21 39C21 40.656 19.656 42 18 42 16.344 42 15 40.656 15 39 15 37.344 16.344 36 18 36 19.656 36 21 37.344 21 39zM47 39C47 40.656 45.656 42 44 42 42.344 42 41 40.656 41 39 41 37.344 42.344 36 44 36 45.656 36 47 37.344 47 39z"/>
<line x1="20" x2="22" y1="14" y2="14"/>
<line x1="20" x2="22" y1="48" y2="48"/>
<line x1="49" x2="51" y1="31" y2="31"/>
<line x1="48" x2="54" y1="54" y2="47"/>
<line x1="43" x2="34" y1="5" y2="3"/>
<path d="M59 17C59 18.656 57.656 20 56 20 54.344 20 53 18.656 53 17 53 15.344 54.344 14 56 14 57.656 14 59 15.344 59 17zM49 6C49 7.656 47.656 9 46 9 44.344 9 43 7.656 43 6 43 4.344 44.344 3 46 3 47.656 3 49 4.344 49 6zM62 31C62 29.344 60.656 28 59 28 57.344 28 56 29.344 56 31 56 32.656 57.344 34 59 34 60.656 34 62 32.656 62 31z"/>
<line x1="48" x2="54" y1="8" y2="15"/>
<line x1="19" x2="28" y1="57" y2="59"/>
<path d="M3 45C3 43.344 4.344 42 6 42 7.656 42 9 43.344 9 45 9 46.656 7.656 48 6 48 4.344 48 3 46.656 3 45zM13 56C13 54.344 14.344 53 16 53 17.656 53 19 54.344 19 56 19 57.656 17.656 59 16 59 14.344 59 13 57.656 13 56z"/>
<line x1="14" x2="8" y1="54" y2="47"/>
<line x1="3" x2="5" y1="28" y2="20"/>
<path d="M3 17C3 18.656 4.344 20 6 20 7.656 20 9 18.656 9 17 9 15.344 7.656 14 6 14 4.344 14 3 15.344 3 17zM13 6C13 7.656 14.344 9 16 9 17.656 9 19 7.656 19 6 19 4.344 17.656 3 16 3 14.344 3 13 4.344 13 6zM0 31C0 29.344 1.344 28 3 28 4.656 28 6 29.344 6 31 6 32.656 4.656 34 3 34 1.344 34 0 32.656 0 31z"/>
<line x1="14" x2="8" y1="8" y2="15"/>
<line x1="28" x2="20.5" y1="45" y2="40.5"/>
<line x1="18" x2="18" y1="36" y2="26"/>
<line x1="20.5" x2="28" y1="24.5" y2="30"/>
<line x1="31" x2="31" y1="14" y2="6"/>
<line x1="34" x2="41.5" y1="18" y2="21"/>
<line x1="34" x2="41.5" y1="45" y2="40.5"/>
<line x1="46.5" x2="53" y1="40.5" y2="44"/>
<line x1="15.5" x2="9" y1="40.5" y2="44"/>
<line x1="44" x2="44" y1="26" y2="36"/>
<line x1="15" x2="8.5" y1="22" y2="18.5"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,61 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="5-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<rect width="23" height="26" x="10" y="34" fill="#00C65E"/>
<g filter="url(#5-a)">
<g transform="translate(9 11)">
<g stroke="#222829" stroke-linejoin="round" stroke-width="2" transform="translate(30)">
<polyline points="12 59 12 8 20 8 20 59"/>
<polygon points="29 8 7 8 0 5 0 3 7 0 29 0"/>
</g>
<line x1="51" x2="41" y1="13" y2="13" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<polyline stroke="#222829" stroke-width="2" points="53 23 63 23 63 49 1 49 1 23 27 23"/>
<line x1="5" x2="7" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="15" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="19" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="23" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="27" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="33" x2="35" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="45" x2="47" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="53" x2="55" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="57" x2="59" y1="29" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="5" x2="9" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="15" x2="17" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="11" x2="13" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="19" x2="21" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="23" x2="25" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="53" x2="59" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="5" x2="11" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="17" x2="19" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="13" x2="15" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="21" x2="23" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="25" x2="27" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="45" x2="47" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="45" x2="47" y1="34" y2="34" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="53" x2="55" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="57" x2="59" y1="38" y2="38" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="20" x2="42" y1="43" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="18" x2="16" y1="43" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="14" x2="10" y1="43" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="55" x2="53" y1="43" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="50" x2="45" y1="43" y2="43" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<g stroke="#222829" stroke-linejoin="round" stroke-width="2" transform="translate(2 7)">
<line x2="8" y1="1" y2="1"/>
<line x2="6" y1="9" y2="9"/>
</g>
<line x1="12" x2="20" y1="8" y2="8" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="22" x2="24" y1="8" y2="8" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="2" x2="6" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="8" x2="14" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="16" x2="18" y1="12" y2="12" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="6" y1="4" y2="4" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<polygon stroke="#222829" stroke-linejoin="round" stroke-width="2" points="38 38 30 38 30 36 32 34 30 32 30 19 32 17 30 15 30 13 38 13 38 15 36 17 38 19 38 32 36 34 38 36"/>
<line x1="34" x2="34" y1="38" y2="59" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,23 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="backup-5-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M50,47 C50,52.523 45.522,57 40,57 C34.478,57 30,52.523 30,47 C30,41.477 34.478,37 40,37 C45.522,37 50,41.477 50,47 Z"/>
<g filter="url(#backup-5-a)">
<g transform="translate(9 11)">
<path stroke="#222829" stroke-width="2" d="M42 10L46 10C49.313 10 52 12.687 52 16L52 35M20 10L16 10C12.687 10 10 12.687 10 16L10 35"/>
<line x1="40" x2="22" y1="58" y2="58" stroke="#222829" stroke-width="2"/>
<line x1="30" x2="32" y1="36" y2="36" stroke="#222829" stroke-width="2"/>
<line x1="26" x2="28" y1="36" y2="36" stroke="#222829" stroke-width="2"/>
<line x1="34" x2="36" y1="36" y2="36" stroke="#222829" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M36,5.5 C36,9 34.037,12 31,12 C27.963,12 26,9 26,5.5 C26,2 27,0 31,0 C35,0 36,2 36,5.5 Z"/>
<path stroke="#222829" stroke-width="2" d="M34 11L41 15 41 17C41 18.656 40 20 39 20L23 20C22 20 21 18.656 21 17L21 15 28 11M15 43.5C15 47 13.037 50 10 50 6.963 50 5 47 5 43.5 5 40 6 38 10 38 14 38 15 40 15 43.5z"/>
<path stroke="#222829" stroke-width="2" d="M13 49L20 53 20 55C20 56.656 19 58 18 58L2 58C1 58 0 56.656 0 55L0 53 7 49M57 43.5C57 47 55.037 50 52 50 48.963 50 47 47 47 43.5 47 40 48 38 52 38 56 38 57 40 57 43.5z"/>
<path stroke="#222829" stroke-width="2" d="M55 49L62 53 62 55C62 56.656 61 58 60 58L44 58C43 58 42 56.656 42 55L42 53 49 49M41 36C41 41.523 36.522 46 31 46 25.478 46 21 41.523 21 36 21 30.477 25.478 26 31 26 36.522 26 41 30.477 41 36z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,33 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="80" height="80" viewBox="0 0 80 80">
<defs>
<polygon id="backup-1-a" points="0 0 18 0 18 7 0 7"/>
<polygon id="backup-1-c" points="0 0 22 0 22 7 0 7"/>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="40 18 28 24 28 37.5 40 44 52 37 52 24"/>
<g transform="translate(9 9)">
<path stroke="#222829" stroke-width="2" d="M48.9997,43.9996 L55.9997,36.9996 L55.9997,35.9996 C55.9997,34.3436 54.6557,32.9996 52.9997,32.9996 L51.9997,32.9996 L41.9997,42.9996 C39.9997,44.9996 39.9997,47.9996 39.9997,47.9996 L39.9997,55.9996 L50.9997,55.9996 L50.9997,53.9996 C50.9997,53.9996 50.9997,51.9996 52.9997,49.9996 L59.9997,42.9996 C61.9997,40.9996 61.9997,38.9996 61.9997,38.9996 L61.9997,22.9996 C61.9997,21.3436 60.6557,19.9996 58.9997,19.9996 C57.3437,19.9996 55.9997,21.3436 55.9997,22.9996 L55.9997,30.9996"/>
<g transform="translate(36 56)">
<mask id="backup-1-b" fill="#fff">
<use xlink:href="#backup-1-a"/>
</mask>
<path stroke="#222829" stroke-width="2" d="M1.9997,7.0001 L1.9997,1.0001 C1.9997,0.4481 2.4467,0.0001 2.9997,0.0001 L15.9997,0.0001 C16.5527,0.0001 16.9997,0.4481 16.9997,1.0001 L16.9997,7.0001" mask="url(#backup-1-b)"/>
</g>
<path stroke="#222829" stroke-width="2" d="M12.9997,43.9996 L5.9997,36.9996 L5.9997,35.9996 C5.9997,34.3436 7.3437,32.9996 8.9997,32.9996 L9.9997,32.9996 L19.9997,42.9996 C21.9997,44.9996 21.9997,47.9996 21.9997,47.9996 L21.9997,55.9996 L10.9997,55.9996 L10.9997,53.9996 C10.9997,53.9996 10.9997,51.9996 8.9997,49.9996 L1.9997,42.9996 C-0.0003,40.9996 -0.0003,38.9996 -0.0003,38.9996 L-0.0003,22.9996 C-0.0003,21.3436 1.3437,19.9996 2.9997,19.9996 C4.6557,19.9996 5.9997,21.3436 5.9997,22.9996 L5.9997,30.9996"/>
<g transform="translate(7 56)">
<mask id="backup-1-d" fill="#fff">
<use xlink:href="#backup-1-c"/>
</mask>
<path stroke="#222829" stroke-width="2" d="M1.9997,7.0001 L1.9997,1.0001 C1.9997,0.4481 2.4467,0.0001 2.9997,0.0001 L15.9997,0.0001 C16.5527,0.0001 16.9997,0.4481 16.9997,1.0001 L16.9997,7.0001" mask="url(#backup-1-d)"/>
</g>
<polygon stroke="#222829" stroke-width="2" points="43 28 31 35 19 28 19 15 31 9 43 15"/>
<polyline stroke="#222829" stroke-width="2" points="43 15 31 22 19 15"/>
<line x1="31" x2="31" y1="22" y2="35" stroke="#222829" stroke-width="2"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M9.9997,20.9996 C9.9997,9.4016 19.4017,-0.0004 30.9997,-0.0004 C42.5977,-0.0004 51.9997,9.4016 51.9997,20.9996"/>
<line x1="10" x2="10" y1="23" y2="25" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="10" x2="10" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="52" x2="52" y1="23" y2="25" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<line x1="52" x2="52" y1="27" y2="29" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,25 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="backup-2-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M56.1504,32.0898 L50.6794,32.2408 L52.5154,27.0798 C51.3034,25.9038 49.9304,24.8978 48.4274,24.0998 L44.0794,27.4448 L42.5334,22.1988 C41.7034,22.0818 40.8624,21.9998 40.0004,21.9998 C39.1374,21.9998 38.2964,22.0818 37.4664,22.1988 L35.9214,27.4448 L31.5724,24.0998 C30.0694,24.8978 28.6964,25.9038 27.4844,27.0798 L29.3204,32.2408 L23.8494,32.0898 C23.1134,33.5908 22.5804,35.2048 22.2844,36.9058 L26.7994,39.9998 L22.2844,43.0938 C22.5804,44.7948 23.1134,46.4088 23.8494,47.9098 L29.3204,47.7588 L27.4844,52.9198 C28.6964,54.0958 30.0694,55.1028 31.5724,55.9008 L35.9214,52.5548 L37.4664,57.8008 C38.2964,57.9178 39.1374,57.9998 40.0004,57.9998 C40.8624,57.9998 41.7034,57.9178 42.5334,57.8008 L44.0794,52.5548 L48.4274,55.9008 C49.9304,55.1028 51.3034,54.0958 52.5154,52.9198 L50.6794,47.7588 L56.1504,47.9098 C56.8864,46.4088 57.4204,44.7948 57.7154,43.0938 L53.2004,39.9998 L57.7154,36.9058 C57.4204,35.2048 56.8864,33.5908 56.1504,32.0898 Z"/>
<g filter="url(#backup-2-a)">
<g transform="translate(9 12)">
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M6 28C6 29.656 4.656 31 3 31 1.344 31 0 29.656 0 28 0 26.344 1.344 25 3 25 4.656 25 6 26.344 6 28zM62 28C62 29.656 60.656 31 59 31 57.344 31 56 29.656 56 28 56 26.344 57.344 25 59 25 60.656 25 62 26.344 62 28z"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="54 6 54 12 48 12"/>
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="8 50 8 44 14 44"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M47.1504,20.0898 L41.6794,20.2408 L43.5154,15.0798 C42.3034,13.9038 40.9304,12.8978 39.4274,12.0998 L35.0794,15.4448 L33.5334,10.1988 C32.7034,10.0818 31.8624,9.9998 31.0004,9.9998 C30.1374,9.9998 29.2964,10.0818 28.4664,10.1988 L26.9214,15.4448 L22.5724,12.0998 C21.0694,12.8978 19.6964,13.9038 18.4844,15.0798 L20.3204,20.2408 L14.8494,20.0898 C14.1134,21.5908 13.5804,23.2048 13.2844,24.9058 L17.7994,27.9998 L13.2844,31.0938 C13.5804,32.7948 14.1134,34.4088 14.8494,35.9098 L20.3204,35.7588 L18.4844,40.9198 C19.6964,42.0958 21.0694,43.1028 22.5724,43.9008 L26.9214,40.5548 L28.4664,45.8008 C29.2964,45.9178 30.1374,45.9998 31.0004,45.9998 C31.8624,45.9998 32.7034,45.9178 33.5334,45.8008 L35.0794,40.5548 L39.4274,43.9008 C40.9304,43.1028 42.3034,42.0958 43.5154,40.9198 L41.6794,35.7588 L47.1504,35.9098 C47.8864,34.4088 48.4204,32.7948 48.7154,31.0938 L44.2004,27.9998 L48.7154,24.9058 C48.4204,23.2048 47.8864,21.5908 47.1504,20.0898 Z"/>
<line x1="4" x2="6" y1="38" y2="38" stroke="#222829" stroke-width="2"/>
<line x1="56" x2="58" y1="18" y2="18" stroke="#222829" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M58.8555 30.8633C57.4215 44.9813 45.4975 56.0003 31.0005 56.0003 21.4865 56.0003 13.0805 51.2553 8.0195 44.0023M3.1582 25.0068C4.6512 10.9508 16.5472-.0002 31.0002-.0002 40.5132-.0002 48.9202 4.7448 53.9802 11.9978M28 31C28 32.656 29.344 34 31 34 32.656 34 34 32.656 34 31 34 29.344 31 28 31 28 31 28 28 26.656 28 25 28 23.344 29.344 22 31 22 32.656 22 34 23.344 34 25"/>
<line x1="31" x2="31" y1="22" y2="19" stroke="#222829" stroke-width="2"/>
<line x1="31" x2="31" y1="34" y2="37" stroke="#222829" stroke-width="2"/>
<line x1="37" x2="39" y1="28" y2="28" stroke="#222829" stroke-width="2"/>
<line x1="23" x2="25" y1="28" y2="28" stroke="#222829" stroke-width="2"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,24 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M62.9997,28 L62.9997,40 C62.9997,43.866 52.7027,47 39.9997,47 C27.2967,47 16.9997,43.866 16.9997,40 L16.9997,28 L17.0037693,28.1330166 C17.2367305,31.9376319 27.4427115,35 39.9997,35 C52.7027,35 62.9997,31.866 62.9997,28 L62.9997,28 Z"/>
<g stroke="#222829" stroke-width="2" transform="translate(8 9)">
<line x1="32" x2="32" y1="50" y2="56"/>
<path d="M34.9997,59 C34.9997,60.657 33.6557,62 31.9997,62 C30.3437,62 28.9997,60.657 28.9997,59 C28.9997,57.343 30.3437,56 31.9997,56 C33.6557,56 34.9997,57.343 34.9997,59 Z"/>
<line x1="29" y1="1" y2="1" transform="translate(0 58)"/>
<line x1="64" x2="35" y1="59" y2="59"/>
<path d="M54.9997,7 C54.9997,10.866 44.7027,14 31.9997,14 C19.2967,14 8.9997,10.866 8.9997,7 C8.9997,3.134 19.2967,0 31.9997,0 C44.7027,0 54.9997,3.134 54.9997,7 Z"/>
<path d="M54.9997,12 L54.9997,19 C54.9997,22.866 44.7027,26 31.9997,26 C19.2967,26 8.9997,22.866 8.9997,19 L8.9997,12"/>
<path d="M54.9997,24 L54.9997,31 C54.9997,34.866 44.7027,38 31.9997,38 C19.2967,38 8.9997,34.866 8.9997,31 L8.9997,24"/>
<path d="M54.9997,36 L54.9997,43 C54.9997,46.866 44.7027,50 31.9997,50 C19.2967,50 8.9997,46.866 8.9997,43 L8.9997,36"/>
<line x1="31" x2="33" y1="44" y2="44"/>
<line x1="27" x2="29" y1="44" y2="44"/>
<line x1="35" x2="37" y1="44" y2="44"/>
<line x1="31" x2="33" y1="32" y2="32"/>
<line x1="27" x2="29" y1="32" y2="32"/>
<line x1="35" x2="37" y1="32" y2="32"/>
<line x1="31" x2="33" y1="20" y2="20"/>
<line x1="27" x2="29" y1="20" y2="20"/>
<line x1="35" x2="37" y1="20" y2="20"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="backup-4-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M40,22 C48.2842712,22 55,28.7157288 55,37 C55,43.2515192 51.1756673,48.6098176 45.7388927,50.8630046 L43.5894775,50.5401611 L41.7318115,49.5251465 L42.2996826,48.6115723 L43.0001,47.2045898 L43.3258057,45.3460693 L42.7926025,43.4189453 L42.2996826,42.0701904 L39.6904297,41.6029053 L38.3757324,41.8286133 L37.0089111,42.765625 L36.2557373,43.9332275 L36.2557373,46.0036621 L37.3513184,47.621582 L38.5844727,49.0001 L37.3513184,49.9698486 L34.4244385,50.5401611 L34.140113,50.8122352 C28.7676784,48.5300934 25,43.2050409 25,37 C25,28.7157288 31.7157288,22 40,22 Z"/>
<path stroke="#0D0D0D" stroke-width="2" d="M45.9631728,50.7679004 C51.2805488,48.4616757 55,43.1652 55,37 C55,28.7157288 48.2842712,22 40,22 C31.7157288,22 25,28.7157288 25,37 C25,43.010677 28.535341,48.1956309 33.6400519,50.5888906"/>
<g stroke-linejoin="round" filter="url(#backup-4-a)">
<g transform="translate(11 9)">
<path stroke="#222829" stroke-width="2" d="M33.0001,36.0001 C33.0001,38.2091 31.2091,40.0001 29.0001,40.0001 C26.7911,40.0001 25.0001,38.2091 25.0001,36.0001 C25.0001,33.7911 26.7911,32.0001 29.0001,32.0001 C31.2091,32.0001 33.0001,33.7911 33.0001,36.0001 Z"/>
<polyline stroke="#222829" stroke-width="2" points="36 48 31 48 29 45 27 48 22 48"/>
<path stroke="#222829" stroke-width="2" d="M23.0001 51.9996L16.0001 58.9996C16.0001 60.6566 17.3441 61.9996 19.0001 61.9996L30.0001 61.9996C31.1041 61.9996 32.0001 61.1036 32.0001 59.9996 32.0001 58.8956 31.1041 57.9996 30.0001 57.9996L22.0001 57.9996M35.0001 61.9996L39.0001 61.9996C40.6561 61.9996 42.0001 60.6566 42.0001 58.9996L41.9981 58.9986 35.0001 51.9996M18.0001 48.9996L22.0001 41.9996 29.0001 39.9996 36.0001 41.9996 40.0001 48.9996C40.0001 50.6566 38.6561 51.9996 37.0001 51.9996L21.0001 51.9996C19.3441 51.9996 18.0001 50.6566 18.0001 48.9996z"/>
<path stroke="#222829" stroke-width="2" d="M15.0001,54.4029 C6.0571,49.4629 0.0001,39.9389 0.0001,28.9999 C0.0001,12.9839 12.9841,-0.0001 29.0001,-0.0001 C45.0161,-0.0001 58.0001,12.9839 58.0001,28.9999 C58.0001,39.9389 51.9431,49.4629 43.0001,54.4029"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,51 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="backed-by-sia-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
<filter id="backed-by-sia-b">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.000000 0 0 0 0 0.776471 0 0 0 0 0.368627 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<polygon fill="#00C65E" points="69 59 54 71 39 59 39 29 47 32 50 29 58 29 61 32 69 29"/>
<g stroke-linejoin="round" filter="url(#backed-by-sia-a)">
<g filter="url(#backed-by-sia-b)" transform="translate(0 -1)">
<g transform="translate(11 9)">
<path stroke="#222829" stroke-width="2" d="M46,7 C46,10.866 35.703,14 23,14 C10.297,14 0,10.866 0,7 C0,3.134 10.297,0 23,0 C35.703,0 46,3.134 46,7 Z"/>
<path stroke="#222829" stroke-width="2" d="M23,26 C10.297,26 0,22.866 0,19 L0,7"/>
<line x1="46" x2="46" y1="7" y2="17" stroke="#222829" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M23 38C10.297 38 0 34.866 0 31L0 24M23 50C10.297 50 0 46.866 0 43L0 36M35 60.9729C31.507 61.6249 27.397 61.9999 23 61.9999 10.297 61.9999 0 58.8659 0 54.9999L0 47.9999"/>
<line x1="23" x2="25" y1="26" y2="26" stroke="#222829" stroke-width="2"/>
<line x1="23" x2="25" y1="38" y2="38" stroke="#222829" stroke-width="2"/>
<line x1="23" x2="25" y1="50" y2="50" stroke="#222829" stroke-width="2"/>
<polygon stroke="#222829" stroke-width="2" points="58 50 43 62 28 50 28 20 36 23 39 20 47 20 50 23 58 20"/>
<line x1="50" x2="50" y1="31" y2="33" stroke="#222829" stroke-width="2"/>
<line x1="50" x2="50" y1="43" y2="45" stroke="#222829" stroke-width="2"/>
<line x1="46" x2="46" y1="31" y2="33" stroke="#222829" stroke-width="2"/>
<line x1="46" x2="46" y1="35" y2="37" stroke="#222829" stroke-width="2"/>
<line x1="46" x2="46" y1="43" y2="45" stroke="#222829" stroke-width="2"/>
<line x1="46" x2="46" y1="47" y2="49" stroke="#222829" stroke-width="2"/>
<line x1="50" x2="50" y1="35" y2="37" stroke="#222829" stroke-width="2"/>
<line x1="36" x2="36" y1="31" y2="33" stroke="#222829" stroke-width="2"/>
<line x1="36" x2="36" y1="43" y2="45" stroke="#222829" stroke-width="2"/>
<line x1="40" x2="40" y1="31" y2="33" stroke="#222829" stroke-width="2"/>
<line x1="40" x2="40" y1="35" y2="37" stroke="#222829" stroke-width="2"/>
<line x1="40" x2="40" y1="43" y2="45" stroke="#222829" stroke-width="2"/>
<line x1="40" x2="40" y1="47" y2="49" stroke="#222829" stroke-width="2"/>
<line x1="36" x2="36" y1="35" y2="37" stroke="#222829" stroke-width="2"/>
<line x1="46" x2="46" y1="39" y2="41" stroke="#222829" stroke-width="2"/>
<line x1="50" x2="50" y1="39" y2="41" stroke="#222829" stroke-width="2"/>
<line x1="40" x2="40" y1="39" y2="41" stroke="#222829" stroke-width="2"/>
<line x1="36" x2="36" y1="39" y2="41" stroke="#222829" stroke-width="2"/>
<line x1="36" x2="36" y1="23" y2="27" stroke="#222829" stroke-width="2"/>
<line x1="50" x2="50" y1="23" y2="27" stroke="#222829" stroke-width="2"/>
<line x1="24" x2="22" y1="20" y2="20" stroke="#222829" stroke-width="2"/>
<line x1="24" x2="22" y1="32" y2="32" stroke="#222829" stroke-width="2"/>
<line x1="24" x2="22" y1="44" y2="44" stroke="#222829" stroke-width="2"/>
<line x1="24" x2="22" y1="56" y2="56" stroke="#222829" stroke-width="2"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1,28 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="easy-to-use-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M39,11 C40.1045695,11 41,11.8954305 41,13 L41,24.0001 L37.8808594,24.5 L34.4633789,26.8000488 L32.9999,31.0001 L34.8979492,35.8710938 L37,36.675293 L37,50 L36.672,50 L34.4633789,46 L31,43 L29.5330956,43.5 L28.6076952,44.5 L28.9998,46.5 L30.4584961,50 L13,50 C11.8954305,50 11,49.1045695 11,48 L11,13 C11,11.8954305 11.8954305,11 13,11 L39,11 Z"/>
<g filter="url(#easy-to-use-a)">
<g transform="translate(11 12)">
<line x1="42" x2="42" y1="34" y2="37" stroke="#222829" stroke-width="2"/>
<line x1="37" x2="37" y1="33" y2="36" stroke="#222829" stroke-width="2"/>
<line x1="32" x2="32" y1="31" y2="35" stroke="#222829" stroke-width="2"/>
<g stroke="#222829" stroke-width="2">
<path d="M26,63 L26,59 C26,58.447 26.447,58 27,58 L46,58 C46.553,58 47,58.447 47,59 L47,63"/>
<path stroke-linejoin="round" d="M44 32C45.656 32 47 33.344 47 35L47 42C47 49 45 53 45 55L45 58M39 30C40.656 30 42 31.344 42 33L42 35M34 28C35.656 28 37 29.344 37 31L37 33"/>
<path stroke-linecap="round" stroke-linejoin="round" d="M26,40 L26,19 C26,17.344 27.344,16 29,16 C30.656,16 32,17.344 32,19 L32,31"/>
<path stroke-linejoin="round" d="M28 58L28 55 22 47C22 47 18.707 34.707 18 34 17 33 18 31 20 31 22 31 23 34 23 34L26 40M26.0039 25.3281C23.6369 24.2051 21.9999 21.7941 21.9999 19.0001 21.9999 15.1341 25.1339 12.0001 28.9999 12.0001 32.8659 12.0001 35.9999 15.1341 35.9999 19.0001 35.9999 21.7931 34.3649 24.2031 31.9999 25.3261"/>
<path stroke-linejoin="round" d="M19.7778,25 C18.6528,23.273 17.9998,21.213 17.9998,19 C17.9998,12.925 22.9248,8 28.9998,8 C35.0748,8 39.9998,12.925 39.9998,19 C39.9998,21.214 39.3458,23.274 38.2208,25"/>
<path stroke-linejoin="round" d="M14,19 C14,10.716 20.716,4 29,4 C37.284,4 44,10.716 44,19"/>
<path stroke-linejoin="round" d="M14,38 L1,38 C0.448,38 0,37.553 0,37 L0,1 C0,0.447 0.448,0 1,0 L57,0 C57.552,0 58,0.447 58,1 L58,37 C58,37.553 57.552,38 57,38 L50,38"/>
<line x1="4" x2="4" y1="38" y2="3" stroke-linejoin="round"/>
<line x1="54" x2="54" y1="35" stroke-linejoin="round"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,31 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="monetization-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 1.000000 0"/>
</filter>
<filter id="monetization-b">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.000000 0 0 0 0 0.776471 0 0 0 0 0.368627 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M57.5,37 C57.5,46.389 49.889,54 40.5,54 C31.111,54 23.5,46.389 23.5,37 C23.5,27.611 31.111,20 40.5,20 C49.889,20 57.5,27.611 57.5,37 Z"/>
<g filter="url(#monetization-a)">
<g filter="url(#monetization-b)">
<g transform="translate(8.5 6)">
<line x1="47" x2="63" y1="58" y2="58" stroke="#222829" stroke-linejoin="round" stroke-width="2"/>
<polyline stroke="#222829" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="59 62 63 58 59 54"/>
<polyline stroke="#222829" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 8 32 4 36 0"/>
<path stroke="#222829" stroke-width="2" d="M32,4 C46.912,4 59,16.088 59,31 C59,45.912 46.912,58 32,58 L0,58"/>
<path stroke="#222829" stroke-linejoin="round" stroke-width="2" d="M18.0039,54.0957 C10.2079,49.3597 4.9999,40.7867 4.9999,30.9997 C4.9999,17.7717 14.5139,6.7637 27.0739,4.4497"/>
<path stroke="#222829" stroke-width="2" d="M49,31 C49,40.389 41.389,48 32,48 C22.611,48 15,40.389 15,31 C15,21.611 22.611,14 32,14 C41.389,14 49,21.611 49,31 Z"/>
<line x1="32" x2="32" y1="39" y2="42" stroke="#222829" stroke-width="2"/>
<line x1="32" x2="32" y1="20" y2="23" stroke="#222829" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M28,35 C28,37.209 29.791,39 32,39 C34.209,39 36,37.209 36,35 C36,32.791 32,31 32,31 C32,31 28,29.209 28,27 C28,24.791 29.791,23 32,23 C34.209,23 36,24.791 36,27"/>
<line x1="23" x2="21" y1="31" y2="31" stroke="#222829" stroke-width="2"/>
<line x1="43" x2="41" y1="31" y2="31" stroke="#222829" stroke-width="2"/>
</g>
</g>
<rect width="42" height="2" x="20" y="71" fill="#D8D8D8"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,19 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="persistence-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M31.0004,9.9997 L8.0004,18.9997 L8.0004,39.9997 C8.0004,57.9997 31.0004,69.9997 31.0004,69.9997 C31.0004,69.9997 31.0004,49.9997 31.0004,9.9997 Z"/>
<g filter="url(#persistence-a)">
<g transform="translate(8 10)">
<polyline stroke="#222829" stroke-linejoin="round" stroke-width="2" points="10.224 40 16.22 40 24.218 26 32.214 38 40.214 26 48.215 38 56.214 24 62.224 24"/>
<rect width="2" height="2" x="6" y="39" fill="#1C1C1C"/>
<rect width="2" height="2" x="64" y="23" fill="#1C1C1C"/>
<path stroke="#000" stroke-linejoin="round" stroke-width="2" d="M48.0004,21.3006677 L48.0004,8.9997 L24.0004,-0.0003 L0.0004,8.9997 L0.0004,29.9997 C0.0004,47.9997 24.0004,59.9997 24.0004,59.9997 C24.0004,59.9997 36.90184,53.5487323 43.786,43.0119581"/>
<rect width="2" height="16" x="22" y="1" fill="#D8D8D8"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,35 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80">
<defs>
<filter id="speed-a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 0 0.050980 0 0 0 1.000000 0"/>
</filter>
<filter id="speed-b">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.000000 0 0 0 0 0.776471 0 0 0 0 0.368627 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<path fill="#00C65E" d="M40,11 C57.121,11 71,24.879 71,42 C71,50.52 67.562,58.396 62,64 L18,64 C12.436,58.396 9,50.521 9,42 C9,24.879 22.879,11 40,11 Z M40,16 C26.1927419,16 15,27.2603208 15,41.1509434 C15,48.0642075 17.7709677,54.4533585 22.2580645,59 L22.2580645,59 L57.7419355,59 C62.2274194,54.4533585 65,48.0633962 65,41.1509434 C65,27.2603208 53.8072581,16 40,16 Z"/>
<g filter="url(#speed-a)">
<g filter="url(#speed-b)">
<g transform="translate(9 11)">
<path stroke="#222829" stroke-width="2" d="M34,31 C34,32.656 32.656,34 31,34 C29.344,34 28,32.656 28,31 C28,29.344 29.344,28 31,28 C32.656,28 34,29.344 34,31 Z"/>
<path stroke="#222829" stroke-width="2" d="M11,46.0029 C7.86,41.8239 6,36.6289 6,30.9999 C6,17.1929 17.193,5.9999 31,5.9999 C44.807,5.9999 56,17.1929 56,30.9999 C56,36.6279 54.141,41.8209 51.002,45.9999"/>
<path stroke="#222829" stroke-width="2" d="M53,53 L9,53 C3.436,47.396 0,39.521 0,31 C0,13.879 13.879,0 31,0 C48.121,0 62,13.879 62,31 C62,39.52 58.562,47.396 53,53 Z"/>
<line x1="31" x2="31" y1="46" y2="48" stroke="#222829" stroke-width="2"/>
<line x1="27" x2="27" y1="46" y2="48" stroke="#222829" stroke-width="2"/>
<line x1="35" x2="35" y1="46" y2="48" stroke="#222829" stroke-width="2"/>
<line x1="39" x2="39" y1="46" y2="48" stroke="#222829" stroke-width="2"/>
<line x1="23" x2="23" y1="46" y2="48" stroke="#222829" stroke-width="2"/>
<line x1="6" x2="9" y1="31" y2="31" stroke="#222829" stroke-width="2"/>
<line x1="31" x2="31" y1="6" y2="9" stroke="#222829" stroke-width="2"/>
<line x1="56" x2="53" y1="31" y2="31" stroke="#222829" stroke-width="2"/>
<line x1="13" x2="16" y1="13" y2="16" stroke="#222829" stroke-width="2"/>
<line x1="46" x2="49" y1="16" y2="13" stroke="#222829" stroke-width="2"/>
<line x1="33" x2="43" y1="29" y2="19" stroke="#222829" stroke-width="2"/>
<path stroke="#222829" stroke-width="2" d="M23,37.0019 C21.744,35.3299 21,33.2519 21,30.9999 C21,25.4779 25.477,20.9999 31,20.9999 C36.523,20.9999 41,25.4779 41,30.9999 C41,33.2509 40.256,35.3279 39.001,36.9999"/>
<line x1="11" x2="51" y1="60.5" y2="60.5" stroke="#222829" stroke-width="2"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill="#0D0D0D" d="M17.5575833,4 C18.5095833,4 19.2775833,4.758 19.3229167,5.65 L19.3229167,5.65 L19.3229167,20 L17.5095833,18.4846667 L16.51425,17.5926667 L15.42825,16.6606667 L15.88225,18.1306667 L6.37625,18.1306667 C5.42691667,18.1306667 4.65625,17.4206667 4.65625,16.48 L4.65625,16.48 L4.65625,5.65333333 C4.65625,4.76133333 5.42825,4.002 6.37958333,4.002 L6.37958333,4.002 Z M10.6755833,7.788 L10.6200876,7.78798521 C10.3785852,7.7927259 9.38352536,7.86133333 8.32091667,8.63466667 C8.32091667,8.63466667 7.09891667,10.7306667 7.09891667,13.3146667 C7.09891667,13.3146667 7.77625,14.4746667 9.63358333,14.5186667 C9.63358333,14.5186667 9.90491667,14.1633333 10.1789167,13.8506667 C9.13558333,13.5386667 8.72958333,12.9146667 8.72958333,12.9146667 L8.72958333,12.9146667 L9.07825,13.092 C10.09825,13.506 11.1775833,14.028 13.10025,13.716 C13.50625,13.626 13.9129167,13.538 14.3189167,13.3593333 C14.5829167,13.226 14.90825,13.0926667 15.2649167,12.868 C15.2649167,12.868 14.85825,13.492 13.7715833,13.804 C13.9955833,14.1146667 14.31025,14.4706667 14.31025,14.4706667 C16.16825,14.4306667 16.89025,13.2706667 16.9309167,13.32 C16.9309167,10.74 15.7015833,8.64 15.7015833,8.64 C14.6029167,7.83666667 13.57625,7.80066667 13.38225,7.8 L13.38225,7.8 L13.25825,7.922 C14.6615833,8.322 15.3409167,8.94666667 15.3409167,8.94666667 C13.3049167,7.944 11.1055833,7.88666667 9.09158333,8.67866667 C8.77491667,8.814 8.59358333,8.90266667 8.59358333,8.90266667 C8.59358333,8.90266667 9.27158333,8.23466667 10.7669167,7.878 L10.7669167,7.878 L10.6755833,7.788 L10.6755833,7.788 Z M13.52825,10.7306667 C14.00425,10.7306667 14.38825,11.1306667 14.38825,11.6206667 C14.38825,12.114 14.00225,12.514 13.52825,12.514 C13.05425,12.514 12.66825,12.114 12.66825,11.6246667 C12.6695833,11.1313333 13.05625,10.7326667 13.52825,10.7326667 L13.52825,10.7326667 Z M10.45225,10.7306667 C10.92625,10.7306667 11.3095833,11.1306667 11.3095833,11.6206667 C11.3095833,12.114 10.9235833,12.514 10.4495833,12.514 C9.97558333,12.514 9.58958333,12.114 9.58958333,11.6246667 C9.58958333,11.1313333 9.97558333,10.7326667 10.4495833,10.7326667 L10.4495833,10.7326667 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill="#0D0D0D" d="M17.25,5 L6.75,5 C5.784875,5 5,5.784875 5,6.75 L5,17.25 C5,18.215125 5.784875,19 6.75,19 L12,19 L12,14.1875 L10.25,14.1875 L10.25,12 L12,12 L12,10.25 C12,8.800125 13.175125,7.625 14.625,7.625 L16.375,7.625 L16.375,9.8125 L15.5,9.8125 C15.017,9.8125 14.625,9.767 14.625,10.25 L14.625,12 L16.8125,12 L15.9375,14.1875 L14.625,14.1875 L14.625,19 L17.25,19 C18.215125,19 19,18.215125 19,17.25 L19,6.75 C19,5.784875 18.215125,5 17.25,5 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 552 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill="#0D0D0D" d="M12,5.0203252 C7.58,5.0203252 4,8.45447154 4,12.6899187 C4,16.079187 6.292,18.9533333 9.47,19.9666667 C9.87,20.0388618 10.0166667,19.8014634 10.0166667,19.5978862 C10.0166667,19.4157724 10.01,18.9331707 10.0066667,18.2938211 C7.78133333,18.7562602 7.312,17.264878 7.312,17.264878 C6.948,16.3796748 6.422,16.1429268 6.422,16.1429268 C5.69733333,15.6674797 6.478,15.6772358 6.478,15.6772358 C7.28133333,15.7305691 7.70333333,16.4674797 7.70333333,16.4674797 C8.41666667,17.6401626 9.576,17.3013008 10.0333333,17.1055285 C10.1053333,16.6092683 10.3113333,16.2717073 10.54,16.0798374 C8.76333333,15.8879675 6.896,15.2284553 6.896,12.2899187 C6.896,11.4528455 7.206,10.7686179 7.71933333,10.2320325 C7.62933333,10.0382114 7.35933333,9.25837398 7.78933333,8.20211382 C7.78933333,8.20211382 8.45933333,7.99658537 9.98933333,8.98845528 C10.6293333,8.81804878 11.3093333,8.73349593 11.9893333,8.7295935 C12.6693333,8.73349593 13.3493333,8.81804878 13.9893333,8.98845528 C15.5093333,7.99658537 16.1793333,8.20211382 16.1793333,8.20211382 C16.6093333,9.25837398 16.3393333,10.0382114 16.2593333,10.2320325 C16.7693333,10.7686179 17.0793333,11.4528455 17.0793333,12.2899187 C17.0793333,15.2362602 15.2093333,15.8847154 13.4293333,16.0733333 C13.7093333,16.3035772 13.9693333,16.7738211 13.9693333,17.4925203 C13.9693333,18.5188618 13.9593333,19.3435772 13.9593333,19.5926829 C13.9593333,19.7936585 14.0993333,20.0336585 14.5093333,19.9569106 C17.71,18.9500813 20,16.0739837 20,12.6899187 C20,8.45447154 16.418,5.0203252 12,5.0203252 L12,5.0203252 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill="#0D0D0D" d="M5.098,10.7753333 C5.098,8.35 7.672,7.196 9.56866667,8.30333333 C10.232,8.30333333 10.884,8.12533333 11.49,7.882 L11.49,7.882 L11.49,9.68533333 C11.2613333,9.764 11.032,9.82866667 10.796,9.882 C11.2993333,11.256 10.5046667,13.2013333 8.55733333,13.5673333 C8.11733333,13.66 7.86333333,13.846 7.86333333,14.328 C7.86333333,15.696 11.424,14.7673333 11.424,17.2853333 C11.424,19.332 10.06,20 8.226,20 C6.72,20 5,19.4893333 5,17.65 C5,16.5826667 5.634,15.9646667 6.59666667,15.644 L6.59666667,15.644 L6.59666667,15.608 C5.71533333,15.0653333 5.89866667,13.5546667 6.56133333,13.258 L6.56133333,13.258 L6.56133333,13.222 C5.66933333,12.9186667 5.09866667,11.6793333 5.09866667,10.7753333 L5.09866667,10.7753333 Z M8.19066667,16.6253333 L8.07905516,16.6275183 C7.47745559,16.6442814 6.79047059,16.8087843 6.78733333,17.5573333 C6.78733333,18.3606667 7.704,18.4573333 8.314,18.4573333 C8.956,18.4573333 9.64333333,18.2966667 9.64333333,17.518 C9.64333333,16.7326667 8.79,16.6253333 8.19066667,16.6253333 L8.19066667,16.6253333 Z M17.918,6.50666667 C17.8473333,7 17.8653333,7.48866667 17.8653333,7.978 L17.8653333,7.978 L19.664,7.978 L19.664,9.67533333 C19.664,9.67533333 18.9833333,9.63933333 17.8653333,9.63933333 L17.8653333,9.63933333 L17.8653333,12.8926667 C17.8653333,13.4213333 17.982,14.0646667 18.634,14.0646667 C18.9793333,14.0646667 19.3846667,13.9646667 19.6666667,13.768 L19.6666667,13.768 L19.6666667,15.518 C19.198,15.7786667 18.5913333,15.868 18.062,15.867337 C16.176,15.867337 15.954,14.36 15.954,12.8066667 L15.954,12.8066667 L15.954,9.67466667 L15.9713333,9.67466667 L15.9713333,9.63866667 C15.7246667,9.63866667 15.714,9.582 15.1253333,9.67466667 L15.1253333,9.67466667 L15.1253333,7.978 L15.9713333,7.978 L15.9713333,7.978 L15.9714936,7.27606361 C15.9693058,6.94861157 15.9589697,6.73830303 15.9186667,6.50666667 L15.9186667,6.50666667 Z M14.3013333,7.97133333 C14.2733922,8.20133333 14.2590755,9.61744925 14.2566661,11.1834698 L14.2566356,12.1327809 C14.2590727,13.8229504 14.2746667,15.4478824 14.3013333,15.75 L14.3013333,15.75 L12.344,15.75 C12.374,15.408 12.3899862,13.3959239 12.3889908,11.4995966 L12.3880261,10.8742242 C12.3842884,9.43645675 12.3700784,8.1887451 12.344,7.97133333 L12.344,7.97133333 Z M9.12533333,10.7766667 C9.12533333,9.05133333 6.97466667,9.03333333 6.97466667,10.794 C6.97466667,11.5366667 7.30266667,12.0006667 8.078,12.0006667 L8.078,12.0006667 C8.84266667,12.0013333 9.12466667,11.5013333 9.12533333,10.7766667 Z M13.328,4 C14.0253333,4 14.5193333,4.64333333 14.5193333,5.31066667 C14.5193333,5.97933333 14.008,6.604 13.328,6.604 C12.63,6.604 12.112,5.98933333 12.112,5.31066667 C12.112,4.62066667 12.6233333,4 13.328,4 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill="#0D0D0D" d="M15.0195,8.787 C17.5365,8.787 18,10.4455 18,12.5985 L18,12.5985 L18,16.9995 L17.997,16.9995 L17.997,17 L15.5145,17 L15.5143116,12.9820505 C15.510737,12.0727361 15.4423958,10.978 14.221,10.978 C12.9275,10.978 12.7295,11.988 12.7295,13.0325 L12.7295,13.0325 L12.7295,16.9995 L10.2445,16.9995 L10.2445,8.988 L12.631,8.988 L12.631,10.0805 L12.666,10.0805 C12.9975,9.451 13.8095,8.787 15.0195,8.787 Z M8.686,8.9885 L8.686,17 L6.198,17 L6.198,8.9885 L8.686,8.9885 Z M7.441,5 C8.236,5 8.8815,5.6455 8.882,6.441 C8.882,7.2365 8.2365,7.8955 7.441,7.8955 C6.6455,7.8955 6,7.2365 6,6.441 C6,5.6455 6.6455,5 7.441,5 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 726 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill="#0D0D0D" d="M17.9255172,7.42770443 L19.1330049,6.27255172 L19.1330049,6.01970443 L14.9499901,6.01970443 L11.9687882,13.4399212 L8.57710345,6.01970443 L4.19105419,6.01970443 L4.19105419,6.27255172 L5.60157635,7.97060099 C5.73903448,8.09607882 5.81091626,8.2795665 5.79263054,8.46431527 L5.79263054,15.1373399 C5.83613793,15.3775764 5.75795074,15.6247488 5.58896552,15.7994089 L4,17.7250837 L4,17.9747783 L8.50522167,17.9747783 L8.50522167,17.721931 L6.91625616,15.7994089 C6.74411823,15.6241182 6.66277833,15.3813596 6.69745813,15.1373399 L6.69745813,9.36535961 L10.6522167,17.977931 L11.1118818,17.977931 L14.5123941,9.36535961 L14.5123941,16.2262857 C14.5123941,16.4072512 14.5123941,16.4444532 14.3938522,16.5629951 L13.170601,17.7465222 L13.170601,18 L19.1052611,18 L19.1052611,17.7471527 L17.9261478,16.5926305 C17.8227389,16.5144433 17.7691429,16.3832906 17.7912118,16.2559212 L17.7912118,7.76441379 C17.7691429,7.63641379 17.8221084,7.50526108 17.9255172,7.42770443 L17.9255172,7.42770443 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill="#0D0D0D" d="M17.6607046,10.365832 C17.2005637,10.365832 16.795664,10.5594797 16.4976043,10.8611816 C15.4018862,10.0914472 13.924336,9.59609756 12.2871328,9.54328455 L13.1376043,5.65454743 L15.8456369,6.27130623 C15.8456369,6.94391328 16.3859079,7.49328997 17.0488022,7.49328997 C17.7244444,7.49328997 18.2677507,6.92934417 18.2677507,6.25613008 C18.2677507,5.58291599 17.7280867,5.01897019 17.0494092,5.01897019 C16.5765203,5.01897019 16.1685854,5.30853117 15.9652249,5.7043252 L12.9743089,5.03171816 C12.8237615,4.99104607 12.6762493,5.10031436 12.6361843,5.25328997 L11.7025474,9.54024932 C10.0780921,9.60884553 8.6163252,10.1035881 7.51696477,10.8739295 C7.21890515,10.5594797 6.79822222,10.365832 6.3380813,10.365832 C4.63106775,10.365832 4.07197832,12.6902114 5.63512195,13.4848347 C5.57988076,13.7306883 5.55499187,13.9929322 5.55499187,14.2545691 C5.55499187,16.8654743 8.45363686,18.9810298 12.012748,18.9810298 C15.5870352,18.9810298 18.4856802,16.8654743 18.4856802,14.2545691 C18.4856802,13.9929322 18.4583631,13.7185474 18.390981,13.4720867 C19.9225583,12.6744282 19.3586125,10.3670461 17.6607046,10.365832 Z M8.1155122,13.6499512 C8.1155122,12.9645962 8.6557832,12.4127913 9.3344607,12.4127913 C9.99735501,12.4127913 10.5382331,12.9609539 10.5382331,13.6499512 C10.5382331,14.3231653 9.99796206,14.8719474 9.3344607,14.8719474 C8.65881843,14.8749702 8.1155122,14.3231653 8.1155122,13.6499512 L8.1155122,13.6499512 Z M14.6952846,16.5625583 C13.5777127,17.6965203 10.4241084,17.6965203 9.30592954,16.5625583 C9.18269919,16.45329 9.18269919,16.2602493 9.30592954,16.1358049 C9.41337669,16.0265366 9.60398916,16.0265366 9.71143631,16.1358049 C10.5649431,17.0239133 13.396206,17.0390894 14.2867425,16.1358049 C14.3941897,16.0265366 14.5848022,16.0265366 14.6922493,16.1358049 C14.8179079,16.2608564 14.8179079,16.453897 14.6952846,16.5625583 Z M14.6703957,14.8743631 C14.0075014,14.8743631 13.4672304,14.3262005 13.4672304,13.6535935 C13.4672304,12.9682385 14.0075014,12.4164336 14.6703957,12.4164336 C15.3460379,12.4164336 15.8893442,12.9645962 15.8893442,13.6535935 C15.8863089,14.3231653 15.3460379,14.8743631 14.6703957,14.8743631 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill="#0D0D0D" d="M19.04125,8.0121875 C18.128125,8.0121875 17.285625,7.7096875 16.6090625,7.199375 C15.833125,6.614375 15.275625,5.75625 15.07875,4.7671875 C15.03,4.5228125 15.00375,4.270625 15.00125,4.0121875 L12.3928125,4.0121875 L12.3928125,11.1396875 L12.3896875,15.04375 C12.3896875,16.0875 11.71,16.9725 10.7678125,17.28375 C10.494375,17.3740625 10.1990625,17.416875 9.8915625,17.4 C9.4990625,17.3784375 9.13125,17.26 8.8115625,17.06875 C8.13125,16.661875 7.67,15.92375 7.6575,15.079375 C7.6378125,13.7596875 8.7046875,12.68375 10.0234375,12.68375 C10.28375,12.68375 10.53375,12.72625 10.7678125,12.8034375 L10.7678125,10.8553125 L10.7678125,10.155 C10.5209375,10.1184375 10.2696875,10.099375 10.015625,10.099375 C8.5721875,10.099375 7.2221875,10.699375 6.2571875,11.7803125 C5.5278125,12.5971875 5.0903125,13.639375 5.0228125,14.7321875 C4.934375,16.1678125 5.4596875,17.5325 6.4784375,18.539375 C6.628125,18.6871875 6.7853125,18.824375 6.9496875,18.9509375 C7.823125,19.623125 8.8909375,19.9875 10.015625,19.9875 C10.2696875,19.9875 10.5209375,19.96875 10.7678125,19.9321875 C11.8184375,19.7765625 12.7878125,19.295625 13.5528125,18.539375 C14.4928125,17.6103125 15.0121875,16.376875 15.0178125,15.0640625 L15.004375,9.2340625 C15.4528125,9.58 15.943125,9.86625 16.469375,10.0884375 C17.2878125,10.43375 18.155625,10.60875 19.048787,10.6084375 L19.048787,8.714375 L19.048787,8.0115625 C19.049375,8.0121875 19.041875,8.0121875 19.04125,8.0121875 L19.04125,8.0121875 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill="#0D0D0D" d="M18.2199137,8.99503118 C18.8190887,8.56959233 19.3231079,8.03856115 19.7338129,7.42710791 L19.7338129,7.426494 C19.1855923,7.66653237 18.6023789,7.82614868 17.9933813,7.9035012 C18.6195683,7.5296307 19.0978034,6.9421199 19.322494,6.23428297 C18.7386667,6.5823693 18.0940624,6.82793285 17.4070983,6.96544844 C16.8527386,6.37486811 16.0626379,6.00959233 15.2007098,6.00959233 C13.5284221,6.00959233 12.1821199,7.36694484 12.1821199,9.03063789 C12.1821199,9.27006235 12.2023789,9.50027818 12.2521055,9.71944365 C9.74121823,9.59666187 7.51886811,8.39340048 6.02584173,6.55965468 C5.76554436,7.01210552 5.61206715,7.5296307 5.61206715,8.08644604 C5.61206715,9.13254676 6.15046523,10.0595492 6.95407194,10.5967194 C6.46847002,10.5875108 5.99269065,10.4463118 5.58935252,10.2246906 L5.58935252,10.2578417 C5.58935252,11.7256978 6.63606715,12.9449209 8.00938129,13.2260911 C7.76320384,13.2936211 7.49553957,13.3255444 7.21743885,13.3255444 C7.02405755,13.3255444 6.82883453,13.314494 6.64588969,13.273976 C7.03694964,14.4698705 8.1481247,15.3496019 9.46802878,15.3784556 C8.44034532,16.1820624 7.13517506,16.6664365 5.72257074,16.6664365 C5.47516547,16.6664365 5.23758273,16.6553861 5,16.6253046 C6.33832134,17.4878465 7.92343405,17.9808153 9.63378417,17.9808153 C14.9643549,17.9808153 18.4384652,13.5336595 18.2199137,8.99503118 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill="#0D0D0D" d="M20.0386374,7.73028571 L20.0597363,7.86813187 C19.8557802,7.14443956 19.3050989,6.58602198 18.6053187,6.38276923 L18.5905495,6.37925275 C17.2746813,6.0219683 11.9795604,6.0219683 11.9795604,6.0219683 C11.9795604,6.0219683 6.6978022,6.01494505 5.36857143,6.37925275 C4.65542857,6.58602198 4.10404396,7.14443956 3.9036044,7.85336264 L3.90008791,7.86813187 C3.40848352,10.4358681 3.40496703,13.5212308 3.92189011,16.2704176 L3.90008791,16.1311648 C4.10404396,16.8548571 4.65472527,17.4132747 5.35450549,17.6165275 L5.36927473,17.620044 C6.68373626,17.978022 11.9802637,17.978022 11.9802637,17.978022 C11.9802637,17.978022 17.2613187,17.978022 18.5912527,17.620044 C19.3050989,17.4132747 19.8564835,16.8548571 20.0569231,16.1459341 L20.0604396,16.1311648 C20.2840879,14.936967 20.4120879,13.5627253 20.4120879,12.1589451 C20.4120879,12.1076044 20.4120879,12.0555604 20.4113846,12.0035165 C20.4120879,11.9556923 20.4120879,11.8987253 20.4120879,11.8417582 C20.4120879,10.4372747 20.2840879,9.06303297 20.0386374,7.73028571 L20.0386374,7.73028571 Z M10.2902418,14.5677363 L10.2902418,9.43859341 L14.6970989,12.007033 L10.2902418,14.5677363 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@ -1,20 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<defs>
<filter id="ezb37sca8a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<g>
<g>
<g>
<g filter="url(#ezb37sca8a)" transform="translate(-1386 -2522) translate(0 2342) translate(794 180) translate(592)">
<g>
<path fill="#000" fill-rule="nonzero" d="M18.722 5.35c-1.218 0-2.341-.404-3.243-1.084-1.035-.78-1.778-1.924-2.04-3.243-.066-.326-.1-.662-.104-1.007H9.857V9.52l-.004 5.205c0 1.392-.906 2.572-2.163 2.987-.364.12-.758.177-1.168.155-.523-.03-1.014-.187-1.44-.442-.907-.543-1.522-1.527-1.539-2.652-.026-1.76 1.397-3.195 3.155-3.195.347 0 .68.057.992.16V8.207c-.329-.05-.664-.075-1.003-.075-1.924 0-3.724.8-5.01 2.242C.703 11.463.12 12.852.03 14.31c-.117 1.914.583 3.733 1.941 5.076.2.197.41.38.629.549 1.164.896 2.588 1.382 4.088 1.382.338 0 .673-.025 1.002-.074 1.401-.208 2.694-.849 3.714-1.857 1.253-1.239 1.946-2.883 1.953-4.634L13.34 6.98c.598.461 1.252.843 1.954 1.139 1.09.46 2.248.694 3.439.693V5.35h-.01z" transform="translate(6.667 5.333)"/>
</g>
</g>
</g>
</g>
</g>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<g fill-rule="evenodd">
<path d="M19.041 8.012c-.913 0-1.755-.302-2.432-.813-.776-.585-1.333-1.443-1.53-2.432-.049-.244-.075-.496-.078-.755h-2.608v7.128l-.003 3.904c0 1.043-.68 1.928-1.622 2.24-.274.09-.569.133-.876.116-.393-.022-.76-.14-1.08-.331-.68-.407-1.142-1.145-1.154-1.99-.02-1.32 1.047-2.395 2.365-2.395.26 0 .51.042.745.12v-2.649c-.247-.037-.498-.056-.752-.056-1.444 0-2.794.6-3.759 1.681-.73.817-1.167 1.86-1.234 2.952-.089 1.436.437 2.8 1.455 3.807.15.148.307.285.472.412.873.672 1.94 1.037 3.066 1.037.254 0 .505-.02.752-.056 1.05-.155 2.02-.636 2.785-1.393.94-.929 1.46-2.162 1.465-3.475l-.014-5.83c.449.346.94.632 1.465.854.819.346 1.687.52 2.58.52V8.012h-.008z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 792 B

View File

@ -1,20 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<defs>
<filter id="sfiklfri1a">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<g>
<g>
<g>
<g filter="url(#sfiklfri1a)" transform="translate(-914 -2522) translate(0 2342) translate(794 180) translate(120)">
<g>
<path fill="#000" fill-rule="nonzero" d="M17.627 3.993c.798-.567 1.47-1.275 2.018-2.09v-.001c-.73.32-1.508.533-2.32.636.834-.498 1.472-1.282 1.772-2.226-.779.464-1.638.792-2.554.975C15.803.5 14.75.013 13.6.013c-2.23 0-4.025 1.81-4.025 4.028 0 .32.027.626.093.918C6.322 4.796 3.36 3.191 1.368.746 1.02 1.35.816 2.04.816 2.782c0 1.395.718 2.63 1.79 3.347-.648-.012-1.282-.2-1.82-.496v.044c0 1.957 1.395 3.583 3.227 3.958-.329.09-.686.132-1.056.132-.258 0-.519-.014-.762-.068.52 1.594 2.002 2.767 3.762 2.806-1.37 1.071-3.11 1.717-4.994 1.717-.33 0-.646-.015-.963-.055 1.784 1.15 3.898 1.807 6.178 1.807 7.108 0 11.74-5.93 11.449-11.98z" transform="translate(6.667 8)"/>
</g>
</g>
</g>
</g>
</g>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<g fill-rule="evenodd">
<path d="M18.22 8.995c.6-.425 1.103-.956 1.514-1.568-.548.24-1.132.4-1.74.477.626-.374 1.104-.962 1.328-1.67-.583.348-1.228.594-1.915.731-.554-.59-1.344-.955-2.206-.955-1.673 0-3.019 1.357-3.019 3.02 0 .24.02.47.07.69-2.51-.123-4.733-1.327-6.226-3.16-.26.452-.414.97-.414 1.526 0 1.047.538 1.974 1.342 2.51-.486-.008-.961-.15-1.365-.371v.033c0 1.468 1.047 2.687 2.42 2.968-.246.068-.513.1-.792.1-.193 0-.388-.012-.571-.052.39 1.196 1.502 2.076 2.822 2.104-1.028.804-2.333 1.288-3.745 1.288-.248 0-.485-.01-.723-.04 1.338.862 2.923 1.355 4.634 1.355 5.33 0 8.804-4.447 8.586-8.986z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 720 B

View File

@ -1,20 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<defs>
<filter id="28rlgib7da">
<feColorMatrix in="SourceGraphic" values="0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 0 0.109804 0 0 0 1.000000 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<g>
<g>
<g>
<g filter="url(#28rlgib7da)" transform="translate(-1262 -2522) translate(0 2342) translate(794 180) translate(468)">
<g>
<path fill="#1C1C1C" fill-rule="nonzero" d="M22.052 2.307l.028.184c-.272-.965-1.007-1.71-1.94-1.98l-.02-.005C18.367.029 11.307.029 11.307.029S4.264.02 2.491.506C1.541.78.805 1.526.538 2.47l-.005.02c-.655 3.423-.66 7.537.03 11.203l-.03-.186c.272.965 1.007 1.71 1.94 1.98l.02.005c1.752.478 8.814.478 8.814.478s7.041 0 8.815-.478c.951-.275 1.687-1.02 1.954-1.965l.005-.02c.298-1.592.468-3.424.468-5.296v-.207-.216c0-1.873-.17-3.705-.497-5.482zM9.054 11.424v-6.84l5.875 3.425-5.875 3.415z" transform="translate(4.667 8)"/>
</g>
</g>
</g>
</g>
</g>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<g fill-rule="evenodd">
<path d="M20.039 7.73l.02.138c-.203-.724-.754-1.282-1.454-1.485l-.014-.004c-1.316-.357-6.611-.357-6.611-.357s-5.282-.007-6.611.357c-.714.207-1.265.765-1.465 1.474l-.004.015c-.492 2.568-.495 5.653.022 8.402l-.022-.139c.204.724.755 1.282 1.455 1.486l.014.003c1.315.358 6.611.358 6.611.358s5.281 0 6.611-.358c.714-.207 1.265-.765 1.466-1.474l.003-.015c.224-1.194.352-2.568.352-3.972v-.155-.162c0-1.405-.128-2.779-.373-4.112zm-9.749 6.838v-5.13l4.407 2.569-4.407 2.56z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 604 B

View File

@ -1,5 +1,4 @@
export { default as ArrowRight } from "./ArrowRight.svg";
export { default as ArrowRightPrimary } from "./ArrowRightPrimary.svg";
export { default as CheckActive } from "./CheckActive.svg";
export { default as DiscordSmall } from "./DiscordSmall.svg";
export { default as DiscordSmallWhite } from "./DiscordSmallWhite.svg";

View File

@ -8,6 +8,8 @@
import * as React from "react";
import PropTypes from "prop-types";
import { useStaticQuery, graphql } from "gatsby";
import { getImage } from "gatsby-plugin-image";
import { convertToBgImage } from "gbimage-bridge";
import BackgroundImage from "gatsby-background-image";
import Navigation from "../Navigation/Navigation";
import NewsHeader from "../NewsHeader/NewsHeader";
@ -25,24 +27,26 @@ const Layout = ({ children }) => {
// }
// `);
const data = useStaticQuery(graphql`
const { ripple } = useStaticQuery(graphql`
query {
ripple: file(relativePath: { eq: "ripple.png" }) {
childImageSharp {
fluid(maxWidth: 1440) {
...GatsbyImageSharpFluid
}
gatsbyImageData(layout: FULL_WIDTH)
}
}
}
`);
const background = convertToBgImage(getImage(ripple));
return (
<>
<NewsHeader />
<BackgroundImage fluid={data.ripple.childImageSharp.fluid} className="bg-palette-600">
<BackgroundImage
{...background}
className="bg-palette-600"
style={{ backgroundPosition: "center top", backgroundSize: "contain" }}
>
<Navigation mode="dark" />
<main>{children}</main>
</BackgroundImage>
<FooterNavigation />

View File

@ -51,7 +51,7 @@ const Navigation = ({ mode }) => {
const [open, setOpen] = React.useState(false);
return (
<nav className={classnames("p-8", { "bg-palette-600": open }, "desktop:bg-transparent")}>
<nav className={classnames("relative px-8 py-12", { "bg-palette-600": open }, "desktop:bg-transparent")}>
<div className="max-w-layout mx-auto">
<div className="flex justify-between">
<Link to="/" className={classnames("flex flex-shrink-0 items-center", { hidden: open }, "desktop:flex")}>
@ -89,14 +89,22 @@ const Navigation = ({ mode }) => {
</div>
</div>
</div>
<div className={classnames("desktop:hidden", { block: open, hidden: !open })} id="mobile-menu">
<div className="pt-4 pb-10 flex flex-col space-y-2">
<div
className={classnames("absolute bg-palette-600 inset-x-0 px-8 pb-12 desktop:hidden", {
block: open,
hidden: !open,
})}
id="mobile-menu"
>
<ul className="pt-4 pb-10 space-y-2">
{routes.map(({ title, route }) => (
<Link key={route} to={route} className="text-xl leading-7 font-semibold text-white">
{title}
</Link>
<li>
<Link key={route} to={route} className="text-xl leading-7 font-semibold text-white">
{title}
</Link>
</li>
))}
</div>
</ul>
<div className="border-t border-palette-500 py-7">
<a
href="https://discordapp.com/invite/sia"
@ -104,7 +112,7 @@ const Navigation = ({ mode }) => {
target="_blank"
rel="noopener noreferrer"
>
<DiscordSmall className="mr-2" />
<DiscordSmall className="mr-2 fill-current text-white" />
<span>Join our Discord</span>
</a>
</div>

View File

@ -1,6 +1,6 @@
import * as React from "react";
import { Link } from "gatsby";
import { ArrowRightPrimary, DiscordSmallWhite } from "../Icons";
import { ArrowRight, DiscordSmallWhite } from "../Icons";
const NewsHeader = () => {
return (
@ -9,11 +9,11 @@ const NewsHeader = () => {
<div className="flex justify-between">
<Link
to="/news"
className="text-palette-300 font-content leading-8 flex items-center overflow-hidden"
className="text-palette-300 font-content leading-8 flex items-center overflow-hidden text-base"
target="_blank"
rel="noopener noreferrer"
>
<ArrowRightPrimary className="mr-2 flex-shrink-0" />
<ArrowRight className="mr-2 flex-shrink-0 fill-current text-primary" />
<span className="truncate">Skynet Announces SkyDB, Unlocking Fully Decentralized Internet</span>
</Link>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 974 KiB

After

Width:  |  Height:  |  Size: 896 KiB

View File

@ -38,6 +38,21 @@ const SmallIconCard = ({ Icon, title, text }) => (
</div>
);
const LearnMoreButton = () => (
<a
href="https://secure.siasky.net"
className="inline-block border-2 border-palette-600 text-palette-600 px-10 leading-10 rounded-full text-xs uppercase text-center mt-7"
>
Learn more
</a>
);
const SectionTitle = ({ children, className, ...props }) => (
<h2 className={classnames("text-4xl font-semibold text-palette-600", className)} {...props}>
{children}
</h2>
);
const IndexPage = () => (
<Layout>
<SEO title="Home" />
@ -47,13 +62,9 @@ const IndexPage = () => (
</Section>
<Section className="bg-white py-32">
<h2 className="text-4xl font-semibold text-palette-600 text-center mb-11">
The new decentralized
<br />
internet is here
</h2>
<SectionTitle className="text-center mb-11">The new decentralized internet is here</SectionTitle>
<div class="grid grid-cols-1 gap-8 desktop:grid-cols-3">
<div className="grid grid-cols-1 gap-8 desktop:grid-cols-3">
<BigIcon Icon={SkynetToolBig} text="Build a freer future" />
<BigIcon Icon={SkynetUserBig} text="Fight corporate control of user data" />
<BigIcon Icon={SkynetPowerBig} text="Empower global citizens" />
@ -72,15 +83,13 @@ const IndexPage = () => (
</Section>
<Section className="bg-palette-100 py-32">
<div class="grid grid-cols-1 gap-x-8 gap-y-16 desktop:grid-cols-3 desktop:grid-rows-2">
<div>
<h3 className="text-4xl font-semibold text-palette-600">Ready to build your application?</h3>
<a
href="https://secure.siasky.net"
className="inline-block border-2 border-palette-600 text-palette-600 px-10 leading-10 rounded-full text-xs uppercase text-center mt-7"
>
Learn more
</a>
<SectionTitle className="mb-7 desktop:hidden">Ready to build your application?</SectionTitle>
<div className="grid grid-cols-1 gap-x-8 gap-y-16 desktop:grid-cols-3 desktop:grid-rows-2">
<div className="hidden desktop:inline-block">
<SectionTitle>Ready to build your application?</SectionTitle>
<LearnMoreButton />
</div>
<SmallIconCard
@ -109,6 +118,10 @@ const IndexPage = () => (
text="Your skapp and data stay live, even if corporations pull your access to their resources. You can also use Skynet as a failover site for when centralized providers go down."
/>
</div>
<div className="desktop:hidden mt-12 text-center">
<LearnMoreButton />
</div>
</Section>
<Section className="py-24 bg-primary">

View File

@ -38,6 +38,7 @@ module.exports = {
},
},
maxWidth: {
column: "320px",
tablet: "640px",
desktop: "1024px",
content: "992px",
@ -52,6 +53,7 @@ module.exports = {
extend: {
backgroundColor: ["disabled"],
textColor: ["disabled"],
margin: ["first"],
},
},
plugins: [],

136
yarn.lock
View File

@ -1342,25 +1342,25 @@
querystring "^0.2.0"
strip-ansi "^6.0.0"
"@graphql-tools/batch-execute@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-7.0.0.tgz#e79d11bd5b39f29172f6ec2eafa71103c6a6c85b"
integrity sha512-+ywPfK6N2Ddna6oOa5Qb1Mv7EA8LOwRNOAPP9dL37FEhksJM9pYqPSceUcqMqg7S9b0+Cgr78s408rgvurV3/Q==
"@graphql-tools/batch-execute@^7.1.0":
version "7.1.0"
resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-7.1.0.tgz#89fde91ae27c717a5f9f2fff9de8cb6efb7df956"
integrity sha512-Yb4QRpHZqDk24+T4K3ARk/KFU26Dyl30XcbYeVvIrgIKcmeON/p3DfSeiB0+MaxYlsv+liQKvlxNbeC2hD31pA==
dependencies:
"@graphql-tools/utils" "^7.0.0"
"@graphql-tools/utils" "^7.7.0"
dataloader "2.0.0"
is-promise "4.0.0"
tslib "~2.0.1"
tslib "~2.1.0"
"@graphql-tools/delegate@^7.0.1", "@graphql-tools/delegate@^7.0.7":
version "7.0.10"
resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-7.0.10.tgz#f87ac85a2dbd03b5b3aabf347f4479fabe8ceac3"
integrity sha512-6Di9ia5ohoDvrHuhj2cak1nJGhIefJmUsd3WKZcJ2nu2yZAFawWMxGvQImqv3N7iyaWKiVhrrK8Roi/JrYhdKg==
version "7.1.0"
resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-7.1.0.tgz#ee419f4cc75f01d7660325cca17b3d3b3e55cb61"
integrity sha512-WcJk7DHAJKzimo8FQCcIhVweDWyDQfpy0fQZAz1cht0+MzxwG+3785r+iWdQ8sNY5j9p32Q/xrEO/Ql0m4VoPQ==
dependencies:
"@ardatan/aggregate-error" "0.0.6"
"@graphql-tools/batch-execute" "^7.0.0"
"@graphql-tools/batch-execute" "^7.1.0"
"@graphql-tools/schema" "^7.0.0"
"@graphql-tools/utils" "^7.1.6"
"@graphql-tools/utils" "^7.7.0"
dataloader "2.0.0"
is-promise "4.0.0"
tslib "~2.1.0"
@ -1406,12 +1406,12 @@
valid-url "1.0.9"
"@graphql-tools/merge@^6.0.0", "@graphql-tools/merge@^6.2.9":
version "6.2.10"
resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-6.2.10.tgz#cadb37b1bed786cba1b3c6f728c5476a164e153d"
integrity sha512-dM3n37PcslvhOAkCz7Cwk0BfoiSVKXGmCX+VMZkATbXk/0vlxUfNEpVfA5yF4IkP27F04SzFQSaNrbD0W2Rszw==
version "6.2.11"
resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-6.2.11.tgz#398f6c5fb6498fe0b5f062c65cf648c0e4a57e9c"
integrity sha512-temQABWkDTZb/qJwcIdrEbyJ5WkhaWZQeYxiuxGqZWlIOoFkYfqzfAP2qKl2Ry+ZkN+Q/Yozr1/ap//xjpwAlA==
dependencies:
"@graphql-tools/schema" "^7.0.0"
"@graphql-tools/utils" "^7.5.0"
"@graphql-tools/utils" "^7.7.0"
tslib "~2.1.0"
"@graphql-tools/schema@^7.0.0", "@graphql-tools/schema@^7.1.2":
@ -1454,10 +1454,10 @@
camel-case "4.1.1"
tslib "~2.0.1"
"@graphql-tools/utils@^7.0.0", "@graphql-tools/utils@^7.0.2", "@graphql-tools/utils@^7.1.2", "@graphql-tools/utils@^7.1.5", "@graphql-tools/utils@^7.1.6", "@graphql-tools/utils@^7.2.1", "@graphql-tools/utils@^7.5.0":
version "7.6.0"
resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-7.6.0.tgz#ac570a2b5a9bcd5d6446995f58ba22609e01ca7d"
integrity sha512-YCZDDdhfb4Yhie0IH031eGdvQG8C73apDuNg6lqBNbauNw45OG/b8wi3+vuMiDnJTJN32GQUb1Gt9gxDKoRDKw==
"@graphql-tools/utils@^7.0.0", "@graphql-tools/utils@^7.0.2", "@graphql-tools/utils@^7.1.2", "@graphql-tools/utils@^7.1.5", "@graphql-tools/utils@^7.2.1", "@graphql-tools/utils@^7.5.0", "@graphql-tools/utils@^7.7.0":
version "7.7.0"
resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-7.7.0.tgz#71e575320720775c183009ed13f818b2952c7fbf"
integrity sha512-gOfUzSkjUXG5c2xSAay9rdKEK5qxXn9pUcQuf25fXErWmUVJhtyB+gkwt+4h9p2EqBpwDyfhqhvzmSHcXLloJw==
dependencies:
"@ardatan/aggregate-error" "0.0.6"
camel-case "4.1.2"
@ -3828,11 +3828,11 @@ ansi-escapes@^3.0.0, ansi-escapes@^3.1.0:
integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
ansi-escapes@^4.2.1, ansi-escapes@^4.3.0:
version "4.3.1"
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61"
integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==
version "4.3.2"
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
dependencies:
type-fest "^0.11.0"
type-fest "^0.21.3"
ansi-html@0.0.7, ansi-html@^0.0.7:
version "0.0.7"
@ -5807,9 +5807,9 @@ content-type@^1.0.4, content-type@~1.0.4:
integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
contentful-management@^7.5.1:
version "7.11.0"
resolved "https://registry.yarnpkg.com/contentful-management/-/contentful-management-7.11.0.tgz#3202c68c603e781fbcdd9286bebc3bd0c847c9d7"
integrity sha512-ewRMdKe1BpJ3ySAVBaIjOPsaVi9tP9cWd6h04foS+1u4HrAG23IKZsD3ZPl4jrArKerLDetvXAX0S446/DVd1g==
version "7.13.0"
resolved "https://registry.yarnpkg.com/contentful-management/-/contentful-management-7.13.0.tgz#b44286d01b48e705eedbb767878ecf41cf8b2f10"
integrity sha512-Bn4okEcfDws0/nMnKWKk6TXWbJtR0qSq1lnaQIAxcXQvkKnqq+ydsHhebkijmrVw84DI4lZO5Q9n41lsaLLDog==
dependencies:
axios "^0.21.0"
contentful-sdk-core "^6.7.0"
@ -6152,9 +6152,9 @@ css-loader@^3.6.0:
semver "^6.3.0"
css-loader@^5.0.1:
version "5.1.3"
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-5.1.3.tgz#87f6fc96816b20debe3cf682f85c7e56a963d0d1"
integrity sha512-CoPZvyh8sLiGARK3gqczpfdedbM74klGWurF2CsNZ2lhNaXdLIUks+3Mfax3WBeRuHoglU+m7KG/+7gY6G4aag==
version "5.1.4"
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-5.1.4.tgz#1f6d278f041d512ad410df7168f0bdae97f55950"
integrity sha512-3Fz3B+7nIw6N/rw/sEBxiZsOnYedKvT3w7gicEjAVc73k7gfYN0v2iyBxq4brQvv/Dt6haze4m0BbPd71/OAFw==
dependencies:
camelcase "^6.2.0"
cssesc "^3.0.0"
@ -7095,9 +7095,9 @@ ee-first@1.1.1:
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.649:
version "1.3.695"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.695.tgz#955f419cf99137226180cc4cca2e59015a4e248d"
integrity sha512-lz66RliUqLHU1Ojxx1A4QUxKydjiQ79Y4dZyPobs2Dmxj5aVL2TM3KoQ2Gs7HS703Bfny+ukI3KOxwAB0xceHQ==
version "1.3.698"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.698.tgz#5de813960f23581a268718a0058683dffa15d221"
integrity sha512-VEXDzYblnlT+g8Q3gedwzgKOso1evkeJzV8lih7lV8mL8eAnGVnKyC3KsFT6S+R5PQO4ffdr1PI16/ElibY/kQ==
elegant-spinner@^1.0.1:
version "1.0.1"
@ -7532,7 +7532,7 @@ eslint-plugin-react-hooks@^4.2.0:
resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz#8c229c268d468956334c943bb45fc860280f5556"
integrity sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==
eslint-plugin-react@7.23.0, eslint-plugin-react@^7.22.0:
eslint-plugin-react@7.23.0:
version "7.23.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.23.0.tgz#082512fc3538c7a688b24ea2f407cba1e9a7f463"
integrity sha512-5rfsRiHKIAdhxv3NxrzE+dBC7BFsNhuErL+Fy940oD1cau55JVTnuL25sqXqD7XY0OkYCRsKEqxZVwezE5ol5w==
@ -7550,6 +7550,24 @@ eslint-plugin-react@7.23.0, eslint-plugin-react@^7.22.0:
resolve "^2.0.0-next.3"
string.prototype.matchall "^4.0.4"
eslint-plugin-react@^7.22.0:
version "7.23.1"
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.23.1.tgz#f1a2e844c0d1967c822388204a8bc4dee8415b11"
integrity sha512-MvFGhZjI8Z4HusajmSw0ougGrq3Gs4vT/0WgwksZgf5RrLrRa2oYAw56okU4tZJl8+j7IYNuTM+2RnFEuTSdRQ==
dependencies:
array-includes "^3.1.3"
array.prototype.flatmap "^1.2.4"
doctrine "^2.1.0"
has "^1.0.3"
jsx-ast-utils "^2.4.1 || ^3.0.0"
minimatch "^3.0.4"
object.entries "^1.1.3"
object.fromentries "^2.0.4"
object.values "^1.1.3"
prop-types "^15.7.2"
resolve "^2.0.0-next.3"
string.prototype.matchall "^4.0.4"
eslint-scope@5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.0.tgz#d0f971dfe59c69e0cada684b23d49dbf82600ce5"
@ -7742,9 +7760,9 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
safe-buffer "^5.1.1"
exec-sh@^0.3.2:
version "0.3.5"
resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.5.tgz#1b46bd6bcbf54fdc1e926a4f3d90126d42cec3df"
integrity sha512-0hzpaUazv4mEccxdn3TXC+HWNeVXNKMCJRK6E7Xyg+LwGAYI3yFag6jTkd4injV+kChYDQS1ftqDhnDVWNhU8A==
version "0.3.6"
resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc"
integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==
execa@^0.7.0:
version "0.7.0"
@ -8709,9 +8727,9 @@ gatsby-plugin-gatsby-cloud@^2.0.0:
webpack-assets-manifest "^5.0.1"
gatsby-plugin-image@^1.0.0:
version "1.1.1"
resolved "https://registry.yarnpkg.com/gatsby-plugin-image/-/gatsby-plugin-image-1.1.1.tgz#b23789c105fda88196d846fc55e3fc290f1a99e5"
integrity sha512-8CIldGsS9ZQguVoIMNz3DAfU5GiQc1ez9hJTzlfqUusGbn8UdoVBnlVSVYWG0H0FKFnXuh+6ELksw6vvOGKS4g==
version "1.1.2"
resolved "https://registry.yarnpkg.com/gatsby-plugin-image/-/gatsby-plugin-image-1.1.2.tgz#85fc4f5356bf29c2098c4371e5396e14a0ff632e"
integrity sha512-ijuCa/++l+J3lUuEQyDPu1CoQ9dMdjlmgXQIZZvo+ZK25FlWVvZn/tyyg/cFekqv+Ir1Dr8LnHHlxEKdvYkIrw==
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/parser" "^7.12.5"
@ -8824,9 +8842,9 @@ gatsby-plugin-sass@^4.0.2:
sass-loader "^10.1.1"
gatsby-plugin-sharp@^3.0.0:
version "3.1.1"
resolved "https://registry.yarnpkg.com/gatsby-plugin-sharp/-/gatsby-plugin-sharp-3.1.1.tgz#886f99646fe37870ed549e0763db5a829b343792"
integrity sha512-j/4i0ZII1q2wC8bAD3nsi7FuLQv5m6rtdBy42xZfv3TkXIuPpAN4nbN+5BEfSy1yQuOLGe6jMbsUrtenMk1IwQ==
version "3.1.2"
resolved "https://registry.yarnpkg.com/gatsby-plugin-sharp/-/gatsby-plugin-sharp-3.1.2.tgz#fd14aa7d729c3a8b8770321c91f33ad59f404185"
integrity sha512-YH4vd9u18Z0x/iiPqiyDpd8CQP7N7gN1LvvGydtch34sWijdQcCBP/kiZk+hn1iXCvVG4vxLt2DvkY4LaWGUpA==
dependencies:
"@babel/runtime" "^7.12.5"
async "^3.2.0"
@ -8994,9 +9012,9 @@ gatsby-transformer-sharp@^3.0.0:
sharp "^0.27.0"
gatsby@^3.0.1, gatsby@^3.0.4:
version "3.1.1"
resolved "https://registry.yarnpkg.com/gatsby/-/gatsby-3.1.1.tgz#510f2160decb477f4837c08305f516538c2725a2"
integrity sha512-rn5M+Hc2RlJnwU8rHQ/5ZQ5VVJFRHt1iFq+A2AogSITYL538/FU7+94K3TWYexc5VJgfOptXo3eg4RCOpOTFHg==
version "3.1.2"
resolved "https://registry.yarnpkg.com/gatsby/-/gatsby-3.1.2.tgz#666420ad991e092b1d7e9fb887c2c31f6a8c4118"
integrity sha512-3gF954rAkbZimrJe0K8gXl6Xe1AGyu04k813ut1Dzh98xf6WJoJQOFjQKB9MLmrzY7WRS94Pah1/9GuO+5hEpQ==
dependencies:
"@babel/code-frame" "^7.10.4"
"@babel/core" "^7.12.3"
@ -9171,6 +9189,11 @@ gaze@^1.0.0:
dependencies:
globule "^1.0.0"
gbimage-bridge@^0.1.1:
version "0.1.1"
resolved "https://registry.yarnpkg.com/gbimage-bridge/-/gbimage-bridge-0.1.1.tgz#8feb1b41a357d13bbf80c2ec106e68c9ed15499b"
integrity sha512-kFdv2u1DshZndyO5cO6f8Gd6yv1ZOLly8+02seaVkHDNH27fVWpAghgDQm8NYXhj9QK937YuspKRC2eaWmDpDw==
generate-robotstxt@^8.0.3:
version "8.0.3"
resolved "https://registry.yarnpkg.com/generate-robotstxt/-/generate-robotstxt-8.0.3.tgz#83384090406e760e9d02247412b2b704562c9b58"
@ -15417,9 +15440,9 @@ regjsgen@^0.5.1:
integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
regjsparser@^0.6.4:
version "0.6.8"
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.8.tgz#4532c3da36d75d56e3f394ce2ea6842bde7496bd"
integrity sha512-3weFrFQREJhJ2PW+iCGaG6TenyzNSZgsBKZ/oEf6Trme31COSeIWhHw9O6FPkuXktfx+b6Hf/5e6dKPHaROq2g==
version "0.6.9"
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6"
integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==
dependencies:
jsesc "~0.5.0"
@ -17570,9 +17593,9 @@ trough@^1.0.0:
integrity sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==
ts-dedent@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.0.0.tgz#47c5eb23d9096f3237cc413bc82d387d36dbe690"
integrity sha512-DfxKjSFQfw9+uf7N9Cy8Ebx9fv5fquK4hZ6SD3Rzr+1jKP6AVA6H8+B5457ZpUs0JKsGpGqIevbpZ9DMQJDp1A==
version "2.1.0"
resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.1.0.tgz#2df17a997ee5310a96d2be7adca0ba7c3eabf36a"
integrity sha512-HbmrG+lCgk5W8LQTALxBxQRBDeAhQKRzdqVhHLUkVd5nYT+b6zDzbRMjiA8wqrWDa33X09WdnW4zEsdwQArTaw==
ts-essentials@^2.0.3:
version "2.0.12"
@ -17684,6 +17707,11 @@ type-fest@^0.13.1:
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934"
integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==
type-fest@^0.21.3:
version "0.21.3"
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
type-fest@^0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b"
@ -18467,9 +18495,9 @@ webpack@4:
webpack-sources "^1.4.1"
webpack@^5.16.0:
version "5.27.2"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.27.2.tgz#44442219e1469ebe00292703b848580faae03f07"
integrity sha512-brNF3N/EdvMzkaZ/Xzb8sqPn5Si3iw6meqCnmNFtcnkorZsFZCBFMa2ElpIMjx6sKWYsnUpBO2dnX+7xgj+mjg==
version "5.28.0"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.28.0.tgz#0de8bcd706186b26da09d4d1e8cbd3e4025a7c2f"
integrity sha512-1xllYVmA4dIvRjHzwELgW4KjIU1fW4PEuEnjsylz7k7H5HgPOctIq7W1jrt3sKH9yG5d72//XWzsHhfoWvsQVg==
dependencies:
"@types/eslint-scope" "^3.7.0"
"@types/estree" "^0.0.46"