Initial commit for app version

This commit is contained in:
Magnus Walbeck 2019-11-28 22:13:51 +01:00
parent e01070c6b6
commit a17322cdf8
235 changed files with 473 additions and 3462 deletions

View File

@ -633,8 +633,8 @@ the "copyright" line and a pointer to where the full notice is found.
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,

157
Makefile Normal file
View File

@ -0,0 +1,157 @@
# This file is licensed under the Affero General Public License version 3 or
# later. See the COPYING file.
# @author Bernhard Posselt <dev@bernhard-posselt.com>
# @copyright Bernhard Posselt 2016
# Generic Makefile for building and packaging a Nextcloud app which uses npm and
# Composer.
#
# Dependencies:
# * make
# * which
# * curl: used if phpunit and composer are not installed to fetch them from the web
# * tar: for building the archive
# * npm: for building and testing everything JS
#
# If no composer.json is in the app root directory, the Composer step
# will be skipped. The same goes for the package.json which can be located in
# the app root or the js/ directory.
#
# The npm command by launches the npm build script:
#
# npm run build
#
# The npm test command launches the npm test script:
#
# npm run test
#
# The idea behind this is to be completely testing and build tool agnostic. All
# build tools and additional package managers should be installed locally in
# your project, since this won't pollute people's global namespace.
#
# The following npm scripts in your package.json install and update the bower
# and npm dependencies and use gulp as build system (notice how everything is
# run from the node_modules folder):
#
# "scripts": {
# "test": "node node_modules/gulp-cli/bin/gulp.js karma",
# "prebuild": "npm install && node_modules/bower/bin/bower install && node_modules/bower/bin/bower update",
# "build": "node node_modules/gulp-cli/bin/gulp.js"
# },
app_name=$(notdir $(CURDIR))
build_tools_directory=$(CURDIR)/build/tools
source_build_directory=$(CURDIR)/build/artifacts/source
source_package_name=$(source_build_directory)/$(app_name)
appstore_build_directory=$(CURDIR)/build/artifacts/appstore
appstore_package_name=$(appstore_build_directory)/$(app_name)
npm=$(shell which npm 2> /dev/null)
composer=$(shell which composer 2> /dev/null)
all: build
# Fetches the PHP and JS dependencies and compiles the JS. If no composer.json
# is present, the composer step is skipped, if no package.json or js/package.json
# is present, the npm step is skipped
.PHONY: build
build:
ifneq (,$(wildcard $(CURDIR)/composer.json))
make composer
endif
ifneq (,$(wildcard $(CURDIR)/package.json))
make npm
endif
ifneq (,$(wildcard $(CURDIR)/js/package.json))
make npm
endif
# Installs and updates the composer dependencies. If composer is not installed
# a copy is fetched from the web
.PHONY: composer
composer:
ifeq (, $(composer))
@echo "No composer command available, downloading a copy from the web"
mkdir -p $(build_tools_directory)
curl -sS https://getcomposer.org/installer | php
mv composer.phar $(build_tools_directory)
php $(build_tools_directory)/composer.phar install --prefer-dist
php $(build_tools_directory)/composer.phar update --prefer-dist
else
composer install --prefer-dist
composer update --prefer-dist
endif
# Installs npm dependencies
.PHONY: npm
npm:
ifeq (,$(wildcard $(CURDIR)/package.json))
cd js && $(npm) run build
else
npm run build
endif
# Removes the appstore build
.PHONY: clean
clean:
rm -rf ./build
# Same as clean but also removes dependencies installed by composer, bower and
# npm
.PHONY: distclean
distclean: clean
rm -rf vendor
rm -rf node_modules
rm -rf js/vendor
rm -rf js/node_modules
# Builds the source and appstore package
.PHONY: dist
dist:
make source
make appstore
# Builds the source package
.PHONY: source
source:
rm -rf $(source_build_directory)
mkdir -p $(source_build_directory)
tar cvzf $(source_package_name).tar.gz ../$(app_name) \
--exclude-vcs \
--exclude="../$(app_name)/build" \
--exclude="../$(app_name)/js/node_modules" \
--exclude="../$(app_name)/node_modules" \
--exclude="../$(app_name)/*.log" \
--exclude="../$(app_name)/js/*.log" \
# Builds the source package for the app store, ignores php and js tests
.PHONY: appstore
appstore:
rm -rf $(appstore_build_directory)
mkdir -p $(appstore_build_directory)
tar cvzf $(appstore_package_name).tar.gz ../$(app_name) \
--exclude-vcs \
--exclude="../$(app_name)/build" \
--exclude="../$(app_name)/tests" \
--exclude="../$(app_name)/Makefile" \
--exclude="../$(app_name)/*.log" \
--exclude="../$(app_name)/phpunit*xml" \
--exclude="../$(app_name)/composer.*" \
--exclude="../$(app_name)/js/node_modules" \
--exclude="../$(app_name)/js/tests" \
--exclude="../$(app_name)/js/test" \
--exclude="../$(app_name)/js/*.log" \
--exclude="../$(app_name)/js/package.json" \
--exclude="../$(app_name)/js/bower.json" \
--exclude="../$(app_name)/js/karma.*" \
--exclude="../$(app_name)/js/protractor.*" \
--exclude="../$(app_name)/package.json" \
--exclude="../$(app_name)/bower.json" \
--exclude="../$(app_name)/karma.*" \
--exclude="../$(app_name)/protractor\.*" \
--exclude="../$(app_name)/.*" \
--exclude="../$(app_name)/js/.*" \
.PHONY: test
test: composer
$(CURDIR)/vendor/phpunit/phpunit/phpunit -c phpunit.xml
$(CURDIR)/vendor/phpunit/phpunit/phpunit -c phpunit.integration.xml

View File

@ -1,4 +1,4 @@
# Nextcloud Breeze Dark Theme
# Breeze Dark Theme
This is a Breeze Dark Theme for [Nextcloud](https://nextcloud.com) based on the Breeze Dark theme made by the KDE Project.
The icons are from the default Nextcloud theme and the individual apps, with the colors changed to better fit the theme.

4
appinfo/app.php Normal file
View File

@ -0,0 +1,4 @@
<?php
use OCP\Util;
Util::addStyle('breezedark', 'server');

17
appinfo/info.xml Normal file
View File

@ -0,0 +1,17 @@
<?xml version="1.0"?>
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>breezedark</id>
<name>Breeze Dark</name>
<summary>Breeze Dark theme for Nextcloud, based on the theme by KDE</summary>
<description><![CDATA[This is a breeze dark theme for Nextcloud, based on the theme by the KDE project.]]></description>
<version>0.0.1</version>
<licence>agpl</licence>
<author mail="mw@mwalbeck.org" homepage="https://github.com/mwalbeck/nextcloud-breeze-dark">Magnus Walbeck</author>
<namespace>BreezeDark</namespace>
<category>customization</category>
<bugs>https://github.com/mwalbeck/nextcloud-breeze-dark/issues</bugs>
<dependencies>
<nextcloud min-version="17" max-version="17"/>
</dependencies>
</info>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="128" height="128" rx="20" ry="20" fill="#31363b" stroke-width="4"/><path d="m64 4-40 72h44l-4 48 40-72h-44z" fill="#3daee9" stroke-width="4"/></svg>

Before

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 672 B

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><path d="m16 1-10 18h11l-1 12 10-18h-11z" fill="#3daee9"/></svg>

Before

Width:  |  Height:  |  Size: 301 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-7.6294e-6" width="128" height="128" rx="20" ry="20" fill="#31363b" stroke-width="4"/><path d="m103.17 25.797c-29.042 28.442-43.956 25.984-81.619 28.878v3.5824l-5.5527 1.8509v7.8016l5.5527 1.8509v4.2591c4.6177 0.52366 8.8422 0.84596 12.777 1.0946-5.9347 10.164-8.2585 19.033-6.1498 22.728 0 0 20.294 9.1405 19.265 0.9553-0.69179-5.5066 1.1911-15.012 3.1445-22.848 18.475 1.0757 30.905 3.8543 52.502 26.191 2.0736-10.623 3.1508-21.26 3.4033-31.883l4.1396-0.9354c2.0111-3.5359 1.6193-7.072 0-10.608l-4.2192-0.9553c-0.37272-10.656-1.5038-21.307-3.244-31.963z" fill="#3daee9" stroke-width=".63687"/></svg>

Before

Width:  |  Height:  |  Size: 777 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 834 B

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><path d="m25.793 6.4493c-7.2604 7.1106-10.989 6.496-20.405 7.2195v0.8956l-1.3882 0.46272v1.9504l1.3882 0.46272v1.0648c1.1544 0.13092 2.2106 0.21149 3.1943 0.27366-1.4837 2.5411-2.0646 4.7581-1.5374 5.6821 0 0 5.0734 2.2851 4.8163 0.23882-0.17295-1.3767 0.29777-3.753 0.78614-5.7119 4.6187 0.26892 7.7264 0.96358 13.125 6.5478 0.51839-2.6558 0.78771-5.315 0.85082-7.9708l1.0349-0.23385c0.50276-0.88396 0.40482-1.768 0-2.652l-1.0548-0.23882c-0.09318-2.6641-0.37594-5.3267-0.81101-7.9907z" fill="#3daee9" stroke-width=".15922"/></svg>

Before

Width:  |  Height:  |  Size: 768 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -1,4 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-7.6294e-6" width="128" height="128" rx="20" ry="20" fill="#31363b" stroke-width="4"/><g transform="matrix(1.5045 0 0 1.5045 6.7344 6.4396)" stroke="#fff" stroke-width="5"><polygon points="6 47.699 21.989 47.699 39.389 62.75 39.389 13.769 22.235 28.606 6 28.606" fill="#fff" stroke-linejoin="round"/><g fill="none" stroke-linecap="round"><path d="m48.128 49.03c1.929-3.096 3.062-6.739 3.062-10.653 0-3.978-1.164-7.674-3.147-10.8"/>
<path d="m55.082 20.537c3.695 4.986 5.884 11.157 5.884 17.84 0 6.621-2.151 12.738-5.788 17.699"/>
<path d="m61.71 62.611c5.267-6.666 8.418-15.08 8.418-24.233 0-9.217-3.192-17.682-8.519-24.368"/>
</g></g><g fill="none" stroke-width="0"><path d="m51.701 92.947-13.271-11.505h-12.079c-8.372 0-12.361-0.28248-12.999-0.92044-1.302-1.302-1.302-32.141 0-33.443 0.6395-0.6395 4.6813-0.92044 13.242-0.92044h12.322l12.795-11.122c7.0374-6.1171 13.435-11.122 14.218-11.122 3.2519 0 3.2632 0.14009 3.2632 40.396 0 37.333-0.047 38.58-1.4836 39.349-0.816 0.43671-1.7652 0.79389-2.1093 0.79374-0.34412-1.6e-4 -6.5978-5.1776-13.897-11.505z"/><path d="m51.701 92.947-13.271-11.505h-12.079c-8.372 0-12.361-0.28248-12.999-0.92044-1.302-1.302-1.302-32.141 0-33.443 0.6395-0.6395 4.6813-0.92044 13.242-0.92044h12.322l12.795-11.122c7.0374-6.1171 13.435-11.122 14.218-11.122 3.2519 0 3.2632 0.14009 3.2632 40.396 0 37.333-0.047 38.58-1.4836 39.349-0.816 0.43671-1.7652 0.79389-2.1093 0.79374-0.34412-1.6e-4 -6.5978-5.1776-13.897-11.505z"/><path d="m51.701 92.947-13.271-11.505h-12.079c-8.372 0-12.361-0.28248-12.999-0.92044-1.302-1.302-1.302-32.141 0-33.443 0.6395-0.6395 4.6813-0.92044 13.242-0.92044h12.322l12.795-11.122c7.0374-6.1171 13.435-11.122 14.218-11.122 3.2519 0 3.2632 0.14009 3.2632 40.396 0 37.333-0.047 38.58-1.4836 39.349-0.816 0.43671-1.7652 0.79389-2.1093 0.79374-0.34412-1.6e-4 -6.5978-5.1776-13.897-11.505z"/></g><g fill="#3daee9"><path d="m51.701 92.947-13.271-11.505h-12.079c-8.372 0-12.361-0.28248-12.999-0.92044-1.302-1.302-1.302-32.141 0-33.443 0.6395-0.6395 4.6813-0.92044 13.242-0.92044h12.322l12.795-11.122c7.0374-6.1171 13.435-11.122 14.218-11.122 3.2519 0 3.2632 0.14009 3.2632 40.396 0 37.333-0.047 38.58-1.4836 39.349-0.816 0.43671-1.7652 0.79389-2.1093 0.79374-0.34412-1.6e-4 -6.5978-5.1776-13.897-11.505z" stroke="#3daee9" stroke-width="2.4"/><path d="m87.974 94.929c-0.53217-0.2144-1.7105-1.2531-2.1497-2.0738-0.64173-1.1991-0.2766-3.1207 1.8589-6.6447 4.4722-7.38 7.0566-13.252 7.0566-22.027 0-8.8232-2.5958-14.374-7.0433-21.674-2.8278-4.6411-2.9363-8.5509-0.3578-9.3693 2.243-0.71188 5.6444 1.2462 7.9752 5.0382 7.9165 12.88 9.5496 30.585 4.1989 44.014-2.2337 5.606-5.525 10.847-7.3495 12.288-1.2936 1.0217-2.679 1.0563-4.1894 0.44787z"/><path d="m77.014 82.823c-1.323-1.323-1.1619-2.5743 1.0398-8.0776 1.4843-3.7103 1.9602-6.2779 1.9602-10.577 0-5.3486-0.69745-7.9191-4.3914-16.185-0.52296-1.1702 1.7847-3.3588 3.5417-3.3588 3.5645 0 7.6678 10.467 7.6678 19.559 0 11.709-5.7782 22.679-9.818 18.639z" stroke="#3daee9" stroke-width="2"/><path d="m96.957 102.77c-1.4609-1.4609-1.1207-2.6387 2.1436-7.4209 6.505-9.5298 9.3993-19.125 9.3993-31.161 0-12.076-2.8917-21.627-9.4617-31.252-3.3896-4.9658-3.5942-7.715-0.64379-8.6514 1.9829-0.62936 3.6673 0.83733 7.3731 6.4203 11.211 16.89 12.738 41.576 3.7312 60.298-4.9982 10.39-9.6007 14.708-12.542 11.767z" stroke="#3daee9" stroke-width="2" style="paint-order:normal"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,4 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><g transform="matrix(.37611 0 0 .37612 1.6836 1.6099)" stroke="#fff" stroke-width="5"><polygon points="21.989 47.699 39.389 62.75 39.389 13.769 22.235 28.606 6 28.606 6 47.699" fill="#fff" stroke-linejoin="round"/><g fill="none" stroke-linecap="round"><path d="m48.128 49.03c1.929-3.096 3.062-6.739 3.062-10.653 0-3.978-1.164-7.674-3.147-10.8"/>
<path d="m55.082 20.537c3.695 4.986 5.884 11.157 5.884 17.84 0 6.621-2.151 12.738-5.788 17.699"/>
<path d="m61.71 62.611c5.267-6.666 8.418-15.08 8.418-24.233 0-9.217-3.192-17.682-8.519-24.368"/>
</g></g><g fill="none" stroke-width="0"><path d="m12.925 23.237-3.3179-2.8763h-3.0197c-2.093 0-3.0904-0.07062-3.2498-0.23011-0.3255-0.3255-0.3255-8.0351 0-8.3606 0.15987-0.15988 1.1703-0.23011 3.3105-0.23011h3.0804l3.1988-2.7805c1.7593-1.5293 3.3588-2.7805 3.5544-2.7805 0.81297 0 0.8158 0.035023 0.8158 10.099 0 9.3332-0.01175 9.645-0.37091 9.8372-0.204 0.10918-0.4413 0.19847-0.52733 0.19844-0.08603-3.9e-5 -1.6495-1.2944-3.4743-2.8764z"/><path d="m12.925 23.237-3.3179-2.8763h-3.0197c-2.093 0-3.0904-0.07062-3.2498-0.23011-0.3255-0.3255-0.3255-8.0351 0-8.3606 0.15987-0.15988 1.1703-0.23011 3.3105-0.23011h3.0804l3.1988-2.7805c1.7593-1.5293 3.3588-2.7805 3.5544-2.7805 0.81297 0 0.8158 0.035023 0.8158 10.099 0 9.3332-0.01175 9.645-0.37091 9.8372-0.204 0.10918-0.4413 0.19847-0.52733 0.19844-0.08603-3.9e-5 -1.6495-1.2944-3.4743-2.8764z"/><path d="m12.925 23.237-3.3179-2.8763h-3.0197c-2.093 0-3.0904-0.07062-3.2498-0.23011-0.3255-0.3255-0.3255-8.0351 0-8.3606 0.15987-0.15988 1.1703-0.23011 3.3105-0.23011h3.0804l3.1988-2.7805c1.7593-1.5293 3.3588-2.7805 3.5544-2.7805 0.81297 0 0.8158 0.035023 0.8158 10.099 0 9.3332-0.01175 9.645-0.37091 9.8372-0.204 0.10918-0.4413 0.19847-0.52733 0.19844-0.08603-3.9e-5 -1.6495-1.2944-3.4743-2.8764z"/></g><g fill="#3daee9"><path d="m12.925 23.237-3.3179-2.8763h-3.0197c-2.093 0-3.0904-0.07062-3.2498-0.23011-0.3255-0.3255-0.3255-8.0351 0-8.3606 0.15987-0.15988 1.1703-0.23011 3.3105-0.23011h3.0804l3.1988-2.7805c1.7593-1.5293 3.3588-2.7805 3.5544-2.7805 0.81297 0 0.8158 0.035023 0.8158 10.099 0 9.3332-0.01175 9.645-0.37091 9.8372-0.204 0.10918-0.4413 0.19847-0.52733 0.19844-0.08603-3.9e-5 -1.6495-1.2944-3.4743-2.8764z" stroke="#3daee9" stroke-width=".6"/><path d="m21.994 23.732c-0.13304-0.0536-0.42762-0.31326-0.53742-0.51844-0.16043-0.29977-0.06915-0.78016 0.46473-1.6612 1.118-1.845 1.7641-3.3131 1.7641-5.5068 0-2.2058-0.64895-3.5935-1.7608-5.4184-0.70694-1.1603-0.73406-2.1377-0.08945-2.3423 0.56074-0.17797 1.4111 0.31156 1.9938 1.2596 1.9791 3.2199 2.3874 7.6462 1.0497 11.003-0.55841 1.4015-1.3813 2.7119-1.8374 3.0721-0.32339 0.25543-0.66976 0.26408-1.0473 0.11197z"/><path d="m19.254 20.706c-0.33074-0.33074-0.29048-0.64357 0.25994-2.0194 0.37109-0.92757 0.49005-1.5695 0.49005-2.6442 0-1.3371-0.17436-1.9798-1.0978-4.0462-0.13074-0.29256 0.44619-0.8397 0.88542-0.8397 0.89112 0 1.9169 2.6167 1.9169 4.8898 0 2.9273-1.4446 5.6697-2.4545 4.6597z" stroke="#3daee9" stroke-width=".5"/><path d="m24.239 25.691c-0.36523-0.36523-0.28018-0.65966 0.5359-1.8552 1.6262-2.3824 2.3498-4.7813 2.3498-7.7902 0-3.019-0.72292-5.4068-2.3654-7.8131-0.8474-1.2414-0.89855-1.9288-0.16095-2.1629 0.49574-0.15734 0.91682 0.20933 1.8433 1.6051 2.8027 4.2224 3.1846 10.394 0.93281 15.075-1.2496 2.5974-2.4002 3.6769-3.1354 2.9416z" stroke="#3daee9" stroke-width=".5" style="paint-order:normal"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 876 B

View File

@ -1,6 +0,0 @@
<svg width="32" height="32" version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
<rect x="-3.0712e-7" y=".13559" width="32" height="31.864" ry="4.5521" fill="#31363b" style="paint-order:normal"/>
<g transform="matrix(.85033 0 0 .85033 -18.937 -1.6887)" fill="#3daee9">
<path d="m41.246 5.6864c0.94487 0 3.9911 7.9919 4.7555 8.5752 0.76441 0.5833 8.9427 1.1565 9.2346 2.1003 0.29198 0.9438-6.0036 6.4562-6.2956 7.4-0.29198 0.9438 2.3984 9.2899 1.6339 9.8732-0.764 0.583-8.383-4.002-9.328-4.002-0.94487 0-8.5641 4.585-9.3285 4.0017-0.7644-0.584 1.9259-8.9297 1.6339-9.8735-0.292-0.9438-6.5875-6.4562-6.2956-7.4 0.292-0.9438 8.4702-1.517 9.2342-2.1003 0.765-0.5833 3.811-8.5752 4.756-8.5752z" fill="#3daee9"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 741 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-1.5e-6" width="128" height="128" rx="20" ry="20" fill="#31363b"/><g transform="matrix(3.5714 0 0 3.5714 2080.8 -.77322)" fill="#3daee9"><path d="m-572.71 3.5765c-1.108 0-2 0.892-2 2v4c0 1.108 0.892 2 2 2s2-0.892 2-2v-4c0-1.108-0.892-2-2-2zm16 0c-1.108 0-2 0.892-2 2v4c0 1.108 0.892 2 2 2s2-0.892 2-2v-4c0-1.108-0.892-2-2-2zm-13 4v2c0 1.662-1.338 3-3 3s-3-1.338-3-3v-1.875c-1.728 0.44254-3 2.0052-3 3.875v16c0 2.216 1.784 4 4 4h20c2.216 0 4-1.784 4-4v-16c0-1.8698-1.272-3.4325-3-3.875v1.875c0 1.662-1.338 3-3 3s-3-1.338-3-3v-2h-10zm-5.9062 9h21.812c0.0554 0 0.0937 0.03835 0.0937 0.09375v11.812c0 0.0554-0.0384 0.09375-0.0937 0.09375h-21.812c-0.0554 0-0.0937-0.03835-0.0937-0.09375v-11.812c0-0.0554 0.0384-0.09375 0.0937-0.09375z" fill="#3daee9"/></g></svg>

Before

Width:  |  Height:  |  Size: 933 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 806 B

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><g transform="matrix(.89286 0 0 .89286 520.21 -.19331)" fill="#3daee9"><path d="m-572.71 3.5765c-1.108 0-2 0.892-2 2v4c0 1.108 0.892 2 2 2s2-0.892 2-2v-4c0-1.108-0.892-2-2-2zm16 0c-1.108 0-2 0.892-2 2v4c0 1.108 0.892 2 2 2s2-0.892 2-2v-4c0-1.108-0.892-2-2-2zm-13 4v2c0 1.662-1.338 3-3 3s-3-1.338-3-3v-1.875c-1.728 0.44254-3 2.0052-3 3.875v16c0 2.216 1.784 4 4 4h20c2.216 0 4-1.784 4-4v-16c0-1.8698-1.272-3.4325-3-3.875v1.875c0 1.662-1.338 3-3 3s-3-1.338-3-3v-2h-10zm-5.9062 9h21.812c0.0554 0 0.0937 0.03835 0.0937 0.09375v11.812c0 0.0554-0.0384 0.09375-0.0937 0.09375h-21.812c-0.0554 0-0.0937-0.03835-0.0937-0.09375v-11.812c0-0.0554 0.0384-0.09375 0.0937-0.09375z" fill="#3daee9"/></g></svg>

Before

Width:  |  Height:  |  Size: 928 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-7.6294e-6" width="128" height="128" rx="20" ry="20" fill="#31363b" stroke-width="4"/><g transform="matrix(.5228 0 0 .5228 1.1002 98.281)" stroke="#3daee9"><path d="m34.713-56.536a85.6 85.6 0 0 1 85.6-85.6m42.8 160a85.6 85.6 0 0 1-116.8-32.4m116.8-116a85.6 85.6 0 0 1 31.2 116.8" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="15.998"/><g fill="#3daee9" stroke-width="4"><circle cx="120.31" cy="-142.14" r="26"/><circle transform="rotate(90)" cx="-13.736" cy="-46.313" r="26"/><circle transform="rotate(90)" cx="-13.736" cy="-194.31" r="26"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 758 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><g transform="matrix(.5228 0 0 .5228 1.1002 2.2813)" stroke="#3daee9"><path d="m7.1 28.5a21.4 21.4 0 0 1 21.4-21.4m10.7 40a21.4 21.4 0 0 1-29.2-8.1m29.2-29a21.4 21.4 0 0 1 7.8 29.2" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.9996"/><g fill="#3daee9"><circle cx="28.5" cy="7.1" r="6.5"/><circle transform="rotate(90)" cx="39.2" cy="-10" r="6.5"/><circle transform="rotate(90)" cx="39.2" cy="-47" r="6.5"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 687 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-1.5e-6" width="128" height="128" rx="20" ry="20" fill="#31363b"/><path d="m36.408 24.326c-7.6798 0-14.195 5.6165-14.195 12.864 0.0545 2.2909 0.25939 5.116 1.6265 11.09v0.14797l0.14797 0.14797c0.43885 1.2571 1.0775 1.9762 1.9222 2.9574 0.84469 0.98111 1.8517 2.1359 2.8094 3.1052 0.11279 0.11417 0.18488 0.18454 0.2956 0.29595 0.19006 0.82648 0.41998 1.7159 0.59145 2.5138 0.45624 2.1227 0.40946 3.6259 0.2956 4.1402-3.3001 1.1587-7.4056 2.5387-11.09 4.1402-2.0683 0.89919-3.9398 1.7021-5.4709 2.6616-1.5311 0.95952-3.0538 1.6844-3.5486 3.8446-0.0069 0.0983-0.0069 0.1973 0 0.29595-0.48359 4.4406-1.2151 10.971-1.7743 15.378-0.12072 0.92779 0.36824 1.9058 1.1829 2.3659 6.6888 3.6131 16.964 5.0673 27.206 5.0277 10.243-0.04001 20.436-1.5797 26.911-5.0277 0.81462-0.46006 1.3036-1.4381 1.1829-2.3659-0.17867-1.3777-0.39784-4.4844-0.59145-7.5411-0.1935-3.0568-0.36169-6.0638-0.59145-7.8371-0.08002-0.43958-0.28801-0.85508-0.59145-1.1829-2.0569-2.4563-5.1301-3.9577-8.7239-5.4712-3.281-1.3816-7.1276-2.8163-10.942-4.4361-0.21351-0.47558-0.42554-1.8593 0-3.9925 0.11417-0.57279 0.29319-1.1863 0.44361-1.7744 0.35845-0.4015 0.63784-0.72959 1.035-1.183 0.84714-0.9669 1.7574-1.9812 2.5137-2.9573 0.75629-0.97618 1.375-1.8136 1.7743-2.9574l0.14797-0.14797c1.5455-6.238 1.5463-8.8408 1.6265-11.09v-0.14797c0-7.248-6.515-12.864-14.195-12.864zm40.605-11.805c-11.197 0-20.695 8.1882-20.695 18.755 0.07933 3.3399 0.37818 7.4587 2.3713 16.168v0.21558l0.21558 0.21558c0.63984 1.8327 1.571 2.8811 2.8025 4.3116 1.2315 1.4304 2.6997 3.114 4.096 4.5272 0.16418 0.16626 0.26939 0.26939 0.43112 0.43123 0.27698 1.2049 0.61232 2.5017 0.86232 3.6649 0.66516 3.0947 0.59693 5.2864 0.43119 6.0362-4.8114 1.6894-10.797 3.7011-16.168 6.0362-3.0154 1.3109-5.7441 2.4815-7.9764 3.8804s-4.4523 2.4557-5.1739 5.6051c-0.01035 0.14349-0.01035 0.28767 0 0.43123-0.7051 6.4739-1.7716 15.994-2.5869 22.42-0.17591 1.3526 0.53691 2.7785 1.7246 3.4492 9.7521 5.2677 24.733 7.388 39.667 7.3297 14.933-0.058 29.794-2.3029 39.235-7.3297 1.1877-0.67075 1.9006-2.0966 1.7246-3.4492-0.26042-2.0086-0.58003-6.5378-0.86231-10.995-0.28216-4.4565-0.52733-8.8405-0.86225-11.426-0.11693-0.64081-0.41985-1.2466-0.86232-1.7246-2.9989-3.581-7.4794-5.7699-12.719-7.9764-4.7834-2.0142-10.392-4.106-15.953-6.4674-0.31112-0.69337-0.62046-2.7106 0-5.8206 0.1666-0.83507 0.4275-1.7295 0.64674-2.5869 0.52263-0.58534 0.92996-1.0637 1.5091-1.7246 1.2351-1.4096 2.5622-2.8884 3.6649-4.3116 1.1026-1.4231 2.0048-2.644 2.5869-4.3116l0.21558-0.21558c2.2533-9.0944 2.2545-12.889 2.3714-16.168v-0.21558c0-10.567-9.4986-18.755-20.695-18.755z" color="#000000" fill="#3daee9" style="block-progression:tb;text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><path d="m9.102 6.0816c-1.92 0-3.5487 1.4041-3.5487 3.2161 0.01363 0.57273 0.06485 1.279 0.40663 2.7725v0.03699l0.03699 0.03699c0.10971 0.31427 0.26938 0.49406 0.48055 0.73934s0.46294 0.53398 0.70234 0.7763c0.0282 0.02854 0.04622 0.04613 0.0739 0.07399 0.04751 0.20662 0.105 0.42898 0.14786 0.62844 0.11406 0.53068 0.10236 0.90647 0.0739 1.035-0.82501 0.28969-1.8514 0.63468-2.7724 1.035-0.51706 0.2248-0.98494 0.42554-1.3677 0.66541-0.38277 0.23988-0.76344 0.4211-0.88715 0.96114-0.0017 0.02457-0.0017 0.04932 0 0.07399-0.1209 1.1101-0.30379 2.7427-0.44359 3.8446-0.03018 0.23195 0.09206 0.47645 0.29572 0.59147 1.6722 0.90328 4.241 1.2668 6.8016 1.2569 2.5607-0.01 5.109-0.39492 6.7277-1.2569 0.20365-0.11502 0.3259-0.35953 0.29572-0.59147-0.04467-0.34444-0.09946-1.1211-0.14786-1.8853-0.04838-0.76421-0.09042-1.516-0.14786-1.9593-0.02-0.10989-0.072-0.21377-0.14786-0.29573-0.51423-0.61407-1.2825-0.98942-2.181-1.3678-0.82024-0.34539-1.7819-0.70407-2.7354-1.109-0.05338-0.1189-0.10638-0.46482 0-0.99813 0.02854-0.1432 0.0733-0.29657 0.1109-0.4436 0.08961-0.10037 0.15946-0.1824 0.25876-0.29574 0.21178-0.24172 0.43934-0.4953 0.62841-0.73934s0.34376-0.4534 0.44359-0.73934l0.03699-0.03699c0.38638-1.5595 0.38659-2.2102 0.40663-2.7725v-0.03699c0-1.812-1.6287-3.2161-3.5487-3.2161zm10.151-2.9512c-2.7992 0-5.1738 2.0471-5.1738 4.6888 0.01983 0.83498 0.09454 1.8647 0.59284 4.042v0.05389l0.05389 0.0539c0.15996 0.45818 0.39274 0.72029 0.70062 1.0779 0.30788 0.3576 0.67494 0.77849 1.024 1.1318 0.04105 0.04156 0.06735 0.06735 0.10778 0.10781 0.06925 0.30122 0.15308 0.62541 0.21558 0.91621 0.16629 0.77367 0.14923 1.3216 0.1078 1.5091-1.2028 0.42234-2.6993 0.92527-4.042 1.5091-0.75386 0.32772-1.436 0.62038-1.9941 0.97011-0.55807 0.34971-1.1131 0.61393-1.2935 1.4013-0.0026 0.03587-0.0026 0.07192 0 0.10781-0.17628 1.6185-0.44291 3.9986-0.64673 5.605-0.04398 0.33816 0.13423 0.69462 0.43115 0.86231 2.438 1.3169 6.1832 1.847 9.9167 1.8324 3.7333-0.0145 7.4486-0.57574 9.8089-1.8324 0.29692-0.16769 0.47516-0.52415 0.43115-0.86231-0.0651-0.50214-0.14501-1.6344-0.21558-2.7486-0.07054-1.1141-0.13183-2.2101-0.21556-2.8564-0.02923-0.1602-0.10496-0.31165-0.21558-0.43115-0.74972-0.89526-1.8699-1.4425-3.1798-1.9941-1.1959-0.50355-2.5979-1.0265-3.9881-1.6168-0.07778-0.17334-0.15511-0.67766 0-1.4552 0.04165-0.20877 0.10688-0.43238 0.16168-0.64673 0.13066-0.14634 0.23249-0.26592 0.37726-0.43116 0.30877-0.35241 0.64054-0.7221 0.91621-1.0779 0.27566-0.35578 0.50119-0.661 0.64673-1.0779l0.0539-0.05389c0.565-2.2735 0.565-3.2222 0.594-4.042v-0.05389c0-2.6417-2.3747-4.6888-5.1738-4.6888z" color="#000000" fill="#3daee9" style="block-progression:tb;text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-7.6294e-6" width="128" height="128" rx="20" ry="20" fill="#31363b" stroke-width="4"/><g transform="matrix(6.8571 0 0 6.8571 9.1429 9.1429)" fill="#3daee9"><rect x="1" y="7" width="14" height="8" ry="1"/><rect x="2" y="5" width="12" height="1" ry=".5"/><rect x="3" y="3" width="10" height="1" ry=".5"/><rect x="4" y="1" width="8" height="1" ry=".5"/></g></svg>

Before

Width:  |  Height:  |  Size: 536 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 590 B

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><g transform="matrix(1.7143 0 0 1.7143 2.2857 2.2857)" fill="#3daee9"><rect x="1" y="7" width="14" height="8" ry="1"/><rect x="2" y="5" width="12" height="1" ry=".5"/><rect x="3" y="3" width="10" height="1" ry=".5"/><rect x="4" y="1" width="8" height="1" ry=".5"/></g></svg>

Before

Width:  |  Height:  |  Size: 511 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-7.6294e-6" width="128" height="128" rx="20" ry="20" fill="#31363b" stroke-width="4"/><path d="m19.429 22.856c-1.7143 0-3.4286 1.7143-3.4286 3.4286v75.429c0 1.7828 1.6457 3.4286 3.4286 3.4286h89.143c1.7828 0 3.4286-1.6526 3.4286-3.4286v-61.714c0-1.7143-1.7143-3.4286-3.4286-3.4286h-44.571l-13.714-13.714z" fill="#3daee9" stroke-width="6.8571"/></svg>

Before

Width:  |  Height:  |  Size: 526 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 476 B

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><path d="m4.8571 5.7141c-0.42857 0-0.85714 0.42857-0.85714 0.85714v18.857c0 0.44571 0.41143 0.85714 0.85714 0.85714h22.286c0.44571 0 0.85714-0.41314 0.85714-0.85714v-15.429c0-0.42857-0.42857-0.85714-0.85714-0.85714h-11.143l-3.4286-3.4286z" fill="#3daee9" stroke-width="1.7143"/></svg>

Before

Width:  |  Height:  |  Size: 521 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="128" height="128" rx="20" ry="20" fill="#31363b"/><path d="m20 12a12 12 0 0 0-12 12 12 12 0 0 0 12 12 12 12 0 0 0 12-12 12 12 0 0 0-12-12zm28 4c-2.216 0-4 1.784-4 4v8c0 2.216 1.784 4 4 4h64c2.216 0 4-1.784 4-4v-8c0-2.216-1.784-4-4-4zm-28 36a12 12 0 0 0-12 12 12 12 0 0 0 12 12 12 12 0 0 0 12-12 12 12 0 0 0-12-12zm28 4c-2.216 0-4 1.784-4 4v8c0 2.216 1.784 4 4 4h64c2.216 0 4-1.784 4-4v-8c0-2.216-1.784-4-4-4zm-28 36a12 12 0 0 0-12 12 12 12 0 0 0 12 12 12 12 0 0 0 12-12 12 12 0 0 0-12-12zm28 4c-2.216 0-4 1.784-4 4v8c0 2.216 1.784 4 4 4h64c2.216 0 4-1.784 4-4v-8c0-2.216-1.784-4-4-4z" fill="#3daee9" style="paint-order:markers fill stroke"/></svg>

Before

Width:  |  Height:  |  Size: 827 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 482 B

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="32" height="32" rx="5" ry="5" fill="#31363b"/><path d="m5 3a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3zm7 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h16c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-7 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3zm7 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h16c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-7 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3zm7 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h16c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1z" fill="#3daee9" style="paint-order:markers fill stroke"/></svg>

Before

Width:  |  Height:  |  Size: 762 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-7.6294e-6" width="128" height="128" rx="20" ry="20" fill="#31363b" stroke-width="4"/><path d="m14.554 19.426c-1.4671 0.28413-2.5799 1.7339-2.5536 3.2501v82.644c0 1.7086 1.5749 3.2538 3.25 3.2538h97.5c1.6755-4e-5 3.2499-1.5486 3.25-3.2501v-81.366c-4e-3 -2.5001-1.9648-4.5423-3.8294-4.5278zm4.8746 7.4283 89.142 4.6e-5v37.143l-7.4286-7.4287-22.286 29.715-22.286-22.286-29.714 29.715h-7.4285zm18.572 7.4287c-6.1542 0-11.143 4.9887-11.143 11.143 0 6.1543 4.9886 11.143 11.143 11.143 6.1542 0 11.143-4.9887 11.143-11.143 0-6.1543-4.9886-11.143-11.143-11.143z" color="#000000" fill="#3daee9" stroke-width="3.7143" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 834 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 775 B

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><path d="m3.6385 4.8565c-0.36678 0.071033-0.64498 0.43346-0.63839 0.81251v20.661c0 0.42715 0.39371 0.81344 0.8125 0.81344h24.375c0.41887-8e-6 0.81248-0.38715 0.81249-0.81251v-20.342c-9.22e-4 -0.62503-0.49121-1.1356-0.95735-1.1319zm1.2187 1.8571 22.286 1.16e-5v9.2859l-1.8571-1.8572-5.5714 7.4287-5.5714-5.5715-7.4285 7.4287h-1.8571zm4.643 1.8572c-1.5385 0-2.7857 1.2472-2.7857 2.7858 0 1.5386 1.2472 2.7858 2.7857 2.7858 1.5385 0 2.7857-1.2472 2.7857-2.7858 0-1.5386-1.2472-2.7858-2.7857-2.7858z" color="#000000" fill="#3daee9" stroke-width=".92858" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 836 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><path d="m3.5556 7.4999c-0.8618 0-1.5556 0.6944-1.5556 1.5561v14.39c0 0.86188 0.69378 1.554 1.5556 1.554h24.888c0.862 0 1.556-0.692 1.556-1.554v-14.39c0-0.8621-0.694-1.5565-1.556-1.5565zm1.3125 1.7992 10.646 10.646h0.92366l10.694-10.646 1.0694 1.0694-6.3681 6.4653 4.8125 4.9097-1.0694 1.0694-4.9097-4.9097-3.5487 3.5972h-2.235l-3.548-3.596-4.9101 4.958-1.0695-1.119 4.8616-4.909-6.4171-6.4653z" fill="#3daee9"/><path d="m30 7.0002a5 5 0 0 1-10 0 5 5 0 1 1 10 0z" fill="#da4453"/></g></svg>

Before

Width:  |  Height:  |  Size: 730 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g><rect y="-1.5e-6" width="128" height="128" rx="20" ry="20" fill="#31363b"/><path d="m14.222 29.999c-3.4472 0-6.2223 2.7773-6.2223 6.2244v57.561c0 3.4475 2.7751 6.216 6.2223 6.216h99.555c3.4475 0 6.223-2.7685 6.223-6.216v-57.56c0-3.4472-2.7755-6.2244-6.223-6.2244zm5.25 7.1967 42.585 42.585h3.6946l42.777-42.585 4.2778 4.2777-25.472 25.861 19.25 19.639-4.2777 4.2777-19.639-19.639-14.195 14.389h-8.9446l-14.193-14.385-19.64 19.831-4.2781-4.473 19.445-19.639-25.667-25.86z" fill="#3daee9"/><path d="m120 28.006a20 20 0 0 1-40 0 20 20 0 1 1 40 0z" fill="#da4453"/></g></svg>

Before

Width:  |  Height:  |  Size: 741 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-1.5e-6" width="128" height="128" rx="20" ry="20" fill="#31363b"/><path d="m14.222 29.999c-3.4472 0-6.2223 2.7773-6.2223 6.2244v57.561c0 3.4475 2.7751 6.216 6.2223 6.216h99.555c3.4475 0 6.223-2.7685 6.223-6.216v-57.56c0-3.4472-2.7755-6.2244-6.223-6.2244zm5.25 7.1967 42.585 42.585h3.6946l42.777-42.585 4.2778 4.2777-25.472 25.861 19.25 19.639-4.2777 4.2777-19.639-19.639-14.195 14.389h-8.9446l-14.193-14.385-19.64 19.831-4.2781-4.473 19.445-19.639-25.667-25.86z" fill="#3daee9"/></svg>

Before

Width:  |  Height:  |  Size: 661 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 965 B

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><path d="m3.5556 7.4999c-0.8618 0-1.5556 0.6944-1.5556 1.5561v14.39c0 0.86188 0.69378 1.554 1.5556 1.554h24.888c0.862 0 1.556-0.692 1.556-1.554v-14.39c0-0.8621-0.694-1.5565-1.556-1.5565zm1.3125 1.7992 10.646 10.646h0.92366l10.694-10.646 1.0694 1.0694-6.3681 6.4653 4.8125 4.9097-1.0694 1.0694-4.9097-4.9097-3.5487 3.5972h-2.235l-3.548-3.596-4.9101 4.958-1.0695-1.119 4.8616-4.909-6.4171-6.4653z" fill="#3daee9"/></svg>

Before

Width:  |  Height:  |  Size: 655 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-7.6294e-6" width="128" height="128" rx="20" ry="20" fill="#31363b" stroke-width="4"/><path d="m62.508 117.91c-3.7675-1.9201-12.139-11.528-19.674-23.056-9.4115-14.306-16.11-28.184-18.205-38.431a39.246 39.246 0 0 1-0.41451-11.099 39.966 40.781 0 0 1 39.755-35.871c3.3457 0 5.4403 0.21818 8.1605 0.64004a40.803 41.632 0 0 1 23.231 14.517 39.552 40.352 0 0 1 7.7387 33.733c-2.2984 9.6079-8.5824 22.416-17.157 35.442-9.2078 13.877-18.619 24.765-21.761 24.765zm3.7675-40.352a26.875 27.421 0 1 0-4.393-54.658 26.875 27.421 0 0 0 4.393 54.658z" fill="#3daee9" stroke-width="7.2732"/></svg>

Before

Width:  |  Height:  |  Size: 758 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><path d="m15.627 29.477c-0.94188-0.48003-3.0347-2.882-4.9185-5.764-2.3529-3.5766-4.0275-7.0459-4.5512-9.6079a9.8115 9.8115 0 0 1-0.10363-2.7747 9.9915 10.195 0 0 1 9.9388-8.9678c0.83642 0 1.3601 0.054545 2.0401 0.16001a10.201 10.408 0 0 1 5.8076 3.6293 9.8879 10.088 0 0 1 1.9347 8.4333c-0.57459 2.402-2.1456 5.604-4.2894 8.8605-2.302 3.4693-4.6548 6.1913-5.4403 6.1913zm0.94188-10.088a6.7188 6.8552 0 1 0-1.0983-13.664 6.7188 6.8552 0 0 0 1.0983 13.664z" fill="#3daee9" stroke-width="1.8183"/></svg>

Before

Width:  |  Height:  |  Size: 737 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-7.6294e-6" width="128" height="128" rx="20" ry="20" fill="#31363b" stroke-width="4"/><path d="m99.747 14.007c-15.713 2.5323-36.743 5.139-52.413 7.8127-4.1497 2.0247-3.2167 7.238-3.4003 11.021v50.64c-8.745-1.6441-19.409 5.5817-19.872 17.023-0.755 7.123 5.5613 13.323 12.43 13.49 12.298 0.29852 20.709-7.8607 20.842-18.179-0.134-17.329 0.04-34.667 0-51.997 1.9039-0.141 30.74-5.6433 33.333-6.0097v38.943c-7.6427-1.8309-17.413 3.1915-19.835 13.448-1.0225 5.7493 0.91 12.966 6.7437 15.4 11.388 5.233 27.022-5.367 26.386-17.807-0.17668-23.108 0.14468-46.227 0-69.337-0.3-2.173-1.7733-4.6053-4.2167-4.4487z" fill="#3daee9" stroke-width="3.3333"/></svg>

Before

Width:  |  Height:  |  Size: 823 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 758 B

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><path d="m24.937 3.5016c-3.9283 0.63308-9.1858 1.2847-13.103 1.9532-1.0374 0.50617-0.80417 1.8095-0.85008 2.7552v12.66c-2.1862-0.41102-4.8522 1.3954-4.9679 4.2557-0.18875 1.7807 1.3903 3.3307 3.1075 3.3724 3.0744 0.07463 5.1772-1.9652 5.2105-4.5447-0.0335-4.3323 0.01-8.6667 0-12.999 0.47597-0.03525 7.685-1.4108 8.3333-1.5024v9.7358c-1.9107-0.45772-4.3532 0.79786-4.9587 3.3621-0.25562 1.4373 0.2275 3.2414 1.6859 3.85 2.847 1.3082 6.7554-1.3417 6.5965-4.4517-0.04417-5.7769 0.03617-11.557 0-17.334-0.075-0.54325-0.44333-1.1513-1.0542-1.1122z" fill="#3daee9" stroke-width=".83333"/></svg>

Before

Width:  |  Height:  |  Size: 826 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-7.6294e-6" width="128" height="128" rx="20" ry="20" fill="#31363b" stroke-width="4"/><path d="m15.086 12.661c-2.0419 0-3.6857 1.6438-3.6857 3.6857v7.3714c0 2.0419 1.6438 3.6857 3.6857 3.6857h95.829c2.0419 0 3.6857-1.6438 3.6857-3.6857v-7.3714c0-2.0419-1.6438-3.6857-3.6857-3.6857zm0 29.486c-2.0419 0-3.6857 1.6438-3.6857 3.6857v7.3714c0 2.0419 1.6438 3.6857 3.6857 3.6857h66.343c2.0419 0 3.6857-1.6438 3.6857-3.6857v-7.3714c0-2.0419-1.6438-3.6857-3.6857-3.6857zm0 29.486c-2.0419 0-3.6857 1.6438-3.6857 3.6857v7.3714c0 2.0419 1.6438 3.6857 3.6857 3.6857h88.457c2.0419 0 3.6857-1.6438 3.6857-3.6857v-7.3714c0-2.0419-1.6438-3.6857-3.6857-3.6857zm0 29.486c-2.0419 0-3.6857 1.6438-3.6857 3.6857v7.3714c0 2.0419 1.6438 3.6857 3.6857 3.6857h44.229c2.0419 0 3.6857-1.6438 3.6857-3.6857v-7.3714c0-2.0419-1.6438-3.6857-3.6857-3.6857z" fill="#3daee9" stroke-width="3.6857"/></svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 644 B

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><path d="m3.7714 3.1653c-0.51047 0-0.92143 0.41096-0.92143 0.92143v1.8429c0 0.51047 0.41096 0.92143 0.92143 0.92143h23.957c0.51047 0 0.92143-0.41096 0.92143-0.92143v-1.8429c0-0.51047-0.41096-0.92143-0.92143-0.92143zm0 7.3714c-0.51047 0-0.92143 0.41096-0.92143 0.92143v1.8429c0 0.51047 0.41096 0.92143 0.92143 0.92143h16.586c0.51047 0 0.92143-0.41096 0.92143-0.92143v-1.8429c0-0.51047-0.41096-0.92143-0.92143-0.92143zm0 7.3714c-0.51047 0-0.92143 0.41096-0.92143 0.92143v1.8429c0 0.51047 0.41096 0.92143 0.92143 0.92143h22.114c0.51047 0 0.92143-0.41096 0.92143-0.92143v-1.8429c0-0.51047-0.41096-0.92143-0.92143-0.92143zm0 7.3714c-0.51047 0-0.92143 0.41096-0.92143 0.92143v1.8429c0 0.51047 0.41096 0.92143 0.92143 0.92143h11.057c0.51047 0 0.92143-0.41096 0.92143-0.92143v-1.8429c0-0.51047-0.41096-0.92143-0.92143-0.92143z" fill="#3daee9" stroke-width=".92143"/></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-1.5e-6" width="128" height="128" rx="20" ry="20" fill="#31363b"/><path d="m29.714 16.001c-7.5977 0-13.714 6.1165-13.714 13.714v68.571c0 7.5977 6.1166 13.714 13.714 13.714h68.571c7.5977 0 13.714-6.1165 13.714-13.714v-57.322l-3.1063 3.109-18.11-18.109 9.9669-9.964h-71.037zm54.213 16.821 18.113 18.109-28.505 28.498-30.106 12 12-30.106 28.498-28.501zm-25.392 31.501-9.1063 15.106 6 6 15.106-9.1062-12-12z" fill="#3daee9"/></svg>

Before

Width:  |  Height:  |  Size: 603 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 817 B

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><path d="m7.4286 4.0002c-1.8995 0-3.4286 1.5291-3.4286 3.4285v17.142c0 1.8994 1.5291 3.4285 3.4286 3.4285h17.143c1.899 0 3.428-1.529 3.428-3.429v-14.33l-0.77657 0.77725-4.5274-4.5272 2.4917-2.491h-17.759zm13.553 4.2053 4.5274 4.5272-7.1254 7.1245-7.5266 3 3-7.5265 7.1246-7.1252zm-6.348 7.8752-2.2766 3.7765 1.5 1.5 3.7766-2.2766-3-3z" fill="#3daee9"/></svg>

Before

Width:  |  Height:  |  Size: 595 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-7.6294e-6" width="128" height="128" rx="20" ry="20" fill="#31363b" stroke-width="4"/><g transform="matrix(.1875 0 0 .1875 16 -85.319)" fill="#3daeff"><path d="m51.267 540.49c-28.296 0-51.076 21.64-51.076 48.521v220.38c0 26.881 22.779 48.521 51.076 48.521h58.633l233.82 193.84-75.716-193.84h192.73c28.296 0 51.076-21.64 51.076-48.521v-220.38c0-26.88-22.779-48.521-51.076-48.521zm13.88 41.713h381.7c13.932 0 25.149 8.9754 25.149 20.124v13.092c0 11.148-11.216 20.121-25.149 20.121h-381.7c-13.932 0-25.149-8.9728-25.149-20.121v-13.092c0-11.148 11.216-20.124 25.149-20.124zm0 92.768h381.7c13.932 0 25.149 8.9754 25.149 20.124v13.089c0 11.148-11.216 20.124-25.149 20.124h-381.7c-13.932 0-25.149-8.9754-25.149-20.124v-13.089c0-11.148 11.216-20.124 25.149-20.124zm0 92.005h137.89c13.932 0 25.149 12.246 25.149 23.395v9.8183c0 11.148-11.216 20.124-25.149 20.124h-137.89c-13.932 0-25.149-8.9754-25.149-20.124v-9.8183c0-11.148 11.216-23.395 25.149-23.395z" fill="#3daeff" fill-rule="evenodd" stroke-opacity="0"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 856 B

View File

@ -1 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><g transform="matrix(.046875 0 0 .046875 4 -21.33)" fill="#3daee9"><path d="m51.267 540.49c-28.296 0-51.076 21.64-51.076 48.521v220.38c0 26.881 22.779 48.521 51.076 48.521h58.633l233.82 193.84-75.716-193.84h192.73c28.296 0 51.076-21.64 51.076-48.521v-220.38c0-26.88-22.779-48.521-51.076-48.521zm13.88 41.713h381.7c13.932 0 25.149 8.9754 25.149 20.124v13.092c0 11.148-11.216 20.121-25.149 20.121h-381.7c-13.932 0-25.149-8.9728-25.149-20.121v-13.092c0-11.148 11.216-20.124 25.149-20.124zm0 92.768h381.7c13.932 0 25.149 8.9754 25.149 20.124v13.089c0 11.148-11.216 20.124-25.149 20.124h-381.7c-13.932 0-25.149-8.9754-25.149-20.124v-13.089c0-11.148 11.216-20.124 25.149-20.124zm0 92.005h137.89c13.932 0 25.149 12.246 25.149 23.395v9.8183c0 11.148-11.216 20.124-25.149 20.124h-137.89c-13.932 0-25.149-8.9754-25.149-20.124v-9.8183c0-11.148 11.216-23.395 25.149-23.395z" fill="#3daee9" fill-rule="evenodd" stroke-opacity="0"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -1,3 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-7.6294e-6" width="128" height="128" rx="20" ry="20" fill="#31363b" stroke-width="4"/><g transform="matrix(1.4118 0 0 1.4118 16 16)" fill="#3daee9">
<path d="m0 34c0 21.9 30 34 34 34s34-12.1 34-34v-34h-68zm45.4 16.3h-22.8v-6.5h22.8zm-23.8-34.1s6.5 2.4 9.2 4.1c-0.6-2.6-1.2-10-1.2-10h8.6s-0.6 7.8-1.2 10c1.2-0.6 9.4-4.1 9.4-4.1l2.7 8.3s-7.5 1.8-10.1 1.9c1.8 1.4 6.7 7.4 6.7 7.4l-7 5.3s-3.8-6.3-5-8.9c-1.2 2.9-5 8.9-5 8.9l-7.2-5.3s5.7-6.3 7.1-7.4c-1.4-0.1-9.9-1.9-9.9-1.9z" fill="#3daee9"/>
</g></svg>

Before

Width:  |  Height:  |  Size: 676 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 968 B

View File

@ -1,3 +0,0 @@
<svg width="32" height="32" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-5.2588e-6" width="32" height="32" rx="5" ry="5" fill="#31363b"/><g transform="matrix(.35294 0 0 .35294 4 4)" fill="#3daee9">
<path d="m0 34c0 21.9 30 34 34 34s34-12.1 34-34v-34h-68zm45.4 16.3h-22.8v-6.5h22.8zm-23.8-34.1s6.5 2.4 9.2 4.1c-0.6-2.6-1.2-10-1.2-10h8.6s-0.6 7.8-1.2 10c1.2-0.6 9.4-4.1 9.4-4.1l2.7 8.3s-7.5 1.8-10.1 1.9c1.8 1.4 6.7 7.4 6.7 7.4l-7 5.3s-3.8-6.3-5-8.9c-1.2 2.9-5 8.9-5 8.9l-7.2-5.3s5.7-6.3 7.1-7.4c-1.4-0.1-9.9-1.9-9.9-1.9z" fill="#3daee9"/>
</g></svg>

Before

Width:  |  Height:  |  Size: 649 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -1,3 +0,0 @@
<svg width="128" height="128" enable-background="new 0 0 595.275 311.111" version="1.1" viewBox="0 0 128 128" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect y="-7.6294e-6" width="128" height="128" rx="20" ry="20" fill="#31363b" stroke-width="4"/><g transform="matrix(.11737 0 0 .11737 14.936 14.931)" fill="#3daee9">
<path d="m827.06 263.7c0-35.6-7-70.1-20.7-102.7-13.3-31.4-32.3-59.6-56.5-83.8s-52.4-43.2-83.8-56.5c-32.5-13.8-67.1-20.7-102.7-20.7s-70.1 7-102.7 20.7c-31.399 13.3-59.6 32.3-83.8 56.5s-43.2 52.4-56.5 83.8c-13.8 32.5-20.7 67.1-20.7 102.7 0 44.5 11.2 88.1 32.5 126.9l-315.7 315.4c-7.3 7.3-9.6 18.4-5.1 28.9 0.9 2.2 2.4 4.2 4.1 5.899l70.7 70.7c1.7 1.7 3.7 3.101 5.9 4.101 10.5 4.5 21.6 2.3 28.9-5.101l43.7-43.7 62.9 62.9c1.7 1.7 3.7 3.1 5.899 4.1 10.5 4.5 21.601 2.301 28.9-5.1l69.7-69.7c1.7-1.7 3.1-3.7 4.1-5.899 4.5-10.5 2.3-21.601-5.1-28.9l-61.9-61.9 167.2-167.3c38.7 21.3 82.4 32.5 126.9 32.5 35.6 0 70.1-7 102.7-20.7 31.4-13.3 59.601-32.3 83.801-56.5 24.199-24.199 43.199-52.399 56.5-83.8 13.801-32.7 20.801-67.2 20.801-102.8zm-171.3 92.5c-24.7 24.7-57.601 38.3-92.5 38.3-34.9 0-67.801-13.6-92.5-38.3-24.7-24.7-38.4-57.6-38.4-92.5 0-35 13.6-67.8 38.3-92.5s57.601-38.3 92.5-38.3c34.9 0 67.8 13.6 92.5 38.3s38.3 57.6 38.3 92.5c0.199 34.9-13.401 67.8-38.2 92.5z" fill="#3daee9"/>
</g></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

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