first commit

This commit is contained in:
ryanwong
2022-11-26 01:23:44 -05:00
commit 02843b95c9
2776 changed files with 102795 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
REACT_APP_BASE_URL="https://rptest.manaknightdigital.com/"
REACT_APP_API_URL="https://rptest.manaknightdigital.com/api/"
REACT_APP_SANCTUM_URL="https://rptest.manaknightdigital.com/sanctum/csrf-cookie"
REACT_VAPOR_URL="https://api-qa-mongoose-br2wu78v1.rocketplantech.com/vapor/signed-storage-url"
REACT_VAPOR_STORAGE_URL="https://storage-qa-mongoose-br2wu78v1.rocketplantech.com"
REACT_GOOGLE_API_KEY="AIzaSyBcqQuMIk9je3UKcjZCKS5sdKqEfIaNHAk"
REACT_GOOGLE_API=//maps.googleapis.com/maps/api/js?key=AIzaSyBcqQuMIk9je3UKcjZCKS5sdKqEfIaNHAk&libraries=places
REACT_INTERCOM_ID=t6huw9xl
REACT_TRANSLOADIT_TEMPLATE_ID=34b580b62cea4964aca081d52e36800a
REACT_TRANSLOADIT_AUTH_ID=b62a748ff0114d87910e454d4aff7f4b
REACT_TRANSLOADIT_LOGO_TEMPLATE_ID=33425f0eff0543778e7cdb2403fa42f6
REACT_TRANSLOADIT_AVATAR_TEMPLATE_ID=5a639725d71e43489deeb3bdcf338aec
REACT_APP_PUSHER_APP_KEY=f17c0735529857c8b4e9
+3
View File
@@ -0,0 +1,3 @@
node_modules/**
.storybook/**
--ignore-pattern '!.storybook/**'"
+81
View File
@@ -0,0 +1,81 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": ["plugin:react/recommended", "airbnb"],
"ignorePatterns": ["!**/*", "**/*.js"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint", "import"],
"rules": {
"no-shadow": "off",
"no-useless-constructor": "off",
"no-use-before-define": [0],
"@typescript-eslint/no-use-before-define": [1],
"@typescript-eslint/no-unused-vars": "error",
"react/jsx-filename-extension": [1, { "extensions": [".tsx", ".jsx"] }],
"max-len": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
"react/jsx-uses-vars": "error",
"react/jsx-uses-react": "error",
"jsx-a11y/anchor-is-valid": 0,
"jsx-a11y/label-has-associated-control": "off",
"indent": "off",
"no-case-declarations": "off",
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"no-restricted-globals": "off",
"implicit-arrow-linebreak": "off",
"import/no-webpack-loader-syntax": "off",
"linebreak-style": "off",
"import/no-unresolved": "off",
"import/prefer-default-export": "off",
"no-param-reassign": "off",
"no-return-await": "off",
"semi-style": "off",
"no-console": "error",
"react/no-unescaped-entities": "off",
"no-alert": "off",
"react/button-has-type": "off",
"brace-style": [2, "stroustrup", { "allowSingleLine": true }],
"prefer-destructuring": "off"
},
"settings": {
"import/resolver": {
"alias": {
"map": [
["Assets", "./shared/assets"],
["Components", "./src/shared/components"],
["Containers", "./src/shared/containers"],
["Context", "./src/shared/context"],
["HOC", "./src/shared/hoc"],
["Utils", "./src/shared/utils"],
["Pages", "./src/pages"],
["Hooks", "./src/shared/hooks"],
["Themes", "./src/shared/themes"]
],
"extensions": [".mjs", ".js", ".jsx", ".ts", ".tsx"]
//"extensions": [".mjs", ".jsx", ".ts", ".tsx"]
}
}
}
}
+45
View File
@@ -0,0 +1,45 @@
name: Deploy Release to AWS Production
on:
push:
tags:
- v*
jobs:
deploy:
name: Deploy to AWS
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Build application
run:
yarn deploy-production
env:
CI: false
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-2
- name: Upload dist folder to S3
run:
aws s3 sync --delete dist s3://app.rocketplantech.com --acl public-read
- name: Invalidate Cloudfront Distribution
run:
aws cloudfront create-invalidation --distribution-id=E16H1FFD3URB32 --paths /*
- name: Upload artifacts
uses: actions/upload-artifact@v2
if: failure()
with:
name: Logs
path: ./storage/logs
+45
View File
@@ -0,0 +1,45 @@
name: Deploy Dev Branch to AWS
on:
push:
branches: [ dev ]
#pull_request:
#branches: [ dev ]
jobs:
deploy:
name: Deploy to AWS
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Build application
run:
CI=FALSE && yarn deploy-qa
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.QA_AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.QA_AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-2
- name: Upload dist folder to S3
run: |
aws s3 sync --delete dist s3://web-qa-mongoose-br2wu78v1.rocketplantech.com --acl public-read
aws s3 cp s3://web-qa-mongoose-br2wu78v1.rocketplantech.com/index.html s3://web-qa-mongoose-br2wu78v1.rocketplantech.com/index.html --cache-control "max-age=0, must-revalidate" --content-type "text/html" --metadata-directive REPLACE --acl public-read
- name: Invalidate Cloudfront Distribution
run:
aws cloudfront create-invalidation --distribution-id=E1WZB3ALA7L1DR --paths /*
- name: Upload artifacts
uses: actions/upload-artifact@v2
if: failure()
with:
name: Logs
path: ./storage/logs
+46
View File
@@ -0,0 +1,46 @@
name: Deploy Master Branch to AWS
on:
push:
branches: [ master ]
#pull_request:
#branches: [ dev ]
jobs:
deploy:
name: Deploy to AWS
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Build application
run:
yarn deploy-staging
env:
CI: false
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.STAGING_AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.STAGING_AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-2
- name: Upload dist folder to S3
run:
aws s3 sync --delete dist s3://web-staging-mongoose-n5tr2spgf.rocketplantech.com --acl public-read
- name: Invalidate Cloudfront Distribution
run:
aws cloudfront create-invalidation --distribution-id=E8LDW9E1E0R8T --paths /*
- name: Upload artifacts
uses: actions/upload-artifact@v2
if: failure()
with:
name: Logs
path: ./storage/logs
+57
View File
@@ -0,0 +1,57 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Archives #
############
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# Logs and databases #
######################
*.log
# OS generated files #
######################
.DS_Store
*.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
.cache
# Packages #
######################
_resources/*
node_modules/*
bower_modules/*
bower_components/*
composer.lock
build/*
dist/*
_lessons/*
storybook-static/*
coverage/*
# Custom #
######################
webroot/api/vendor/*
# local env #
######################
.env.development.local
node_modules
.idea/
+1
View File
@@ -0,0 +1 @@
_
View File
+4
View File
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
npm run lint-staged && git add --all
+3
View File
@@ -0,0 +1,3 @@
node_modules/**
build
coverage
+8
View File
@@ -0,0 +1,8 @@
{
"semi": true,
"trailingComma": "es5",
"printWidth": 120,
"singleQuote": true,
"arrowParens": "always",
"proseWrap": "preserve"
}
+9
View File
@@ -0,0 +1,9 @@
{
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 4,
"printWidth": 80,
"semi": true,
"arrowParens": "always",
"proseWrap": "preserve"
}
+29
View File
@@ -0,0 +1,29 @@
/* eslint-disable */
const path = require('path');
module.exports = {
stories: ['../src/**/*.stories.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
addons: ['@storybook/addon-links', '@storybook/addon-essentials', '@storybook/addon-controls'],
core: {
builder: 'webpack5',
},
webpackFinal: async (config) => {
config.resolve.alias['/'] = path.resolve(__dirname, '../src/shared');
config.resolve.alias['Assets'] = path.resolve(__dirname, '../src/shared/assets');
config.resolve.alias['Components'] = path.resolve(__dirname, '../src/shared/components');
config.resolve.alias['Containers'] = path.resolve(__dirname, '../src/shared/containers');
config.resolve.alias['Context'] = path.resolve(__dirname, '../src/shared/context');
config.resolve.alias['HOC'] = path.resolve(__dirname, '../src/shared/hoc');
config.resolve.alias['Utils'] = path.resolve(__dirname, '../src/shared/utils');
config.resolve.alias['Hooks'] = path.resolve(__dirname, '../src/shared/hooks');
config.resolve.alias['Themes'] = path.resolve(__dirname, '../src/shared/themes');
config.resolve.alias['Routes'] = path.resolve(__dirname, '../src/routes');
//This fixed Storybook crashing all the time
// config.cache = false;
return config;
},
//This handles the error when importing svgs
babel: async (options) => {
options.plugins.push('babel-plugin-inline-react-svg');
return options;
},
};
+1
View File
@@ -0,0 +1 @@
<div id="app"></div>
+15
View File
@@ -0,0 +1,15 @@
<!--Adding Bootstrap-->
<link rel="stylesheet" crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@500&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@600&display=swap" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<style>
#root {
width: 100%;
height: 100vh;
}
</style>
+85
View File
@@ -0,0 +1,85 @@
/*eslint-disable */
import { MINIMAL_VIEWPORTS } from '@storybook/addon-viewport';
import React from 'react';
import { Provider } from 'react-redux';
import { setupStore } from '../src/store';
//Use this to trigger responsive viewports
const customViewports = {
'x-small': {
name: 'x-small',
styles: {
width: '575px', //<576px
height: '100vh',
},
},
small: {
name: 'small',
styles: {
width: '768px', //≥576px
height: '100vh',
},
},
medium: {
name: 'medium',
styles: {
width: '992px', //≥768px
height: '100vh',
},
},
large: {
name: 'large',
styles: {
width: '1199px', //≥992px
height: '100vh',
},
},
'x-large': {
name: 'x-large',
styles: {
width: '1399px', //≥1200px
height: '100vh',
},
},
'xx-large': {
name: 'xx-large',
styles: {
width: '100%', //≥1400px
height: '100vh',
},
},
};
export const parameters = {
actions: { argTypesRegex: '^on[A-Z].*' },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/,
},
},
layout: 'centered',
viewport: {
viewports: {
...MINIMAL_VIEWPORTS,
...customViewports,
},
},
};
export const decorators = [
(Story) => (
<Provider store={setupStore()}>
<div className="container-fluid" style={{ height: 'auto' }}>
<div className="row">
<div className="col">
<div className="d-flex justify-content-center">
<Story />
</div>
</div>
</div>
</div>
</Provider>
),
];
+6
View File
@@ -0,0 +1,6 @@
{
"ExpandedNodes": [
""
],
"PreviewInSolutionExplorer": false
}
BIN
View File
Binary file not shown.
+3
View File
@@ -0,0 +1,3 @@
{
"recommendations": ["entepe85.gitlens"]
}
+2
View File
@@ -0,0 +1,2 @@
{
}
+79
View File
@@ -0,0 +1,79 @@
# Web App
Boilerplate Webpack 5, React and Bootstrap 5 project with global Css and Css modules enabled.
# Hosts File Config
In order to run this application in local, you'll need to modify your hosts file configuration. Then you will be able to access/serve your application at https://test.rocketplantech.com:3000
### Windows
Please include the following line in your hosts file
`127.0.0.1 test.rocketplantech.com`
### Mac
Please do the following steps
`sudo nano /private/etc/hosts`
add `127.0.0.1 test.rocketplantech.com` to the end of the file and save
run `sudo dscacheutil -flushcache` to flush the DNS cache
you might need to run `chmod +x .husky/pre-commit` to have the linter activated on commits
# App Setup
This project is setup to use yarn.
to get started.
`run yarn prep`
This will install husky and then download and install the nodule modules
Husky is used to run the linting.
# Dev Build
`yarn run start`
# Staging Build
`yarn run staging`
# Production Build
`yarn run production`
# Task
- To login go to https://test.rocketplantech.com:3000/
- kevin@rocketplantech.com / Abcdef123
- Create the form page https://test.rocketplantech.com:3000/form as in screenshot_1
- Create delete modal and it can delete the form as well screenshot_2
- When we click on add button, it will open modal popup showing form. need to integrate the ADD FORM api
- Need to integrate API to load the table
## API for getting Contract Forms
```
GET `/companies/${companyId}/contract-forms`
```
## API for Adding Contract Forms
```
Request Body: {
company_id: companyId,
name: formName,
replacement_tags: typeof String,
status: 'active',
template: typeof string,
has_signature: true || false,
}
```
```
POST `/contract-forms`
```
## API for deleting Contract Forms
```
DELETE `/contract-forms/${contractId}`
```
+50
View File
@@ -0,0 +1,50 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": ["plugin:react/recommended", "airbnb"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint", "import"],
"rules": {
"no-shadow": "off",
"no-useless-constructor": "off",
"no-use-before-define": [0],
"@typescript-eslint/no-use-before-define": [1],
"no-unused-vars": 2, //Keep this as the files in this folder don't use TypeScript.
"@typescript-eslint/no-unused-vars": "error",
"react/jsx-filename-extension": [1, { "extensions": [".tsx", ".jsx"] }],
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"max-len": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
"jsx-a11y/anchor-is-valid": 0,
"jsx-a11y/label-has-associated-control": "off",
"indent": "off",
"no-case-declarations": "off",
"no-restricted-globals": "off",
"implicit-arrow-linebreak": "off",
"import/no-webpack-loader-syntax": "off",
"linebreak-style": "off",
"import/no-unresolved": "off"
}
}
+8
View File
@@ -0,0 +1,8 @@
//Determine which env file to use, based on the environment
const root = require('./paths').root;
const envPaths = {
development: `${root}/.env.development`,
staging: `${root}/.env.staging`,
production: `${root}/.env`,
};
module.exports = envPaths[process.env.NODE_ENV] || envPaths['production'];
+17
View File
@@ -0,0 +1,17 @@
const path = require('path');
module.exports = {
//Root of the application
root: path.normalize(path.resolve('./')),
// Source files
src: path.normalize(path.resolve(__dirname, '../src')),
assets: path.normalize(path.resolve(__dirname, '../src/shared/assets')),
// Production build files
build: path.normalize(path.resolve(__dirname, '../dist')),
// Static files that get copied to build folder
public: path.normalize(path.resolve(__dirname, '../public')),
};
+155
View File
@@ -0,0 +1,155 @@
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ESLintPlugin = require('eslint-webpack-plugin');
const Dotenv = require('dotenv-webpack');
const path = require('path');
const paths = require('./paths');
const envPath = require('./envPath');
module.exports = {
// Where webpack looks to start building the bundle
entry: [path.normalize(`${paths.src}/index.tsx`)],
// Where webpack outputs the assets and bundles
output: {
path: path.normalize(paths.build),
filename: '[name].bundle.js',
publicPath: '/',
},
// Customize the webpack build process
plugins: [
// Removes/cleans build folders and unused assets when rebuilding
new CleanWebpackPlugin(),
// Puts variables in .env files into process.env
new Dotenv({
path: path.normalize(envPath),
}),
new CopyWebpackPlugin({
patterns: [
{
from: path.normalize(`${paths.src}/netlify-redirect`),
to: path.normalize(paths.build),
globOptions: {
ignore: ['*.DS_Store'],
},
noErrorOnMissing: true,
},
{
from: './node_modules/@pdftron/webviewer/public',
to: path.normalize(`${paths.build}/public/webviewer`),
globOptions: {
ignore: ['*.DS_Store'],
},
},
],
}),
// Generates an HTML file from a template
new HtmlWebpackPlugin({
title: 'Company',
inject: 'body',
appMountId: 'app',
favicon: paths.src + '/images/favicon.png',
template: `${paths.src}/index.html`, // template file
filename: 'index.html', // output file
// ', //Lets us load the appropriate dev scripts in the html
axios: 'https://cdn.jsdelivr.net/npm/axios@0.21.1/dist/axios.min.js',
bootstrap: 'https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js',
bootStrapCss: 'https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css',
react: 'https://cdnjs.cloudflare.com/ajax/libs/react/17.0.1/umd/react.production.min.js',
reactDom: 'https://cdn.jsdelivr.net/npm/react-dom@17.0.2/index.min.js', // Lets us load the appropriate dev scripts in the html
popper: 'https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/cjs/popper.min.js',
redux: 'https://cdn.jsdelivr.net/npm/redux@4.1.0/lib/redux.min.js',
reactRedux: 'https://cdn.jsdelivr.net/npm/react-redux@7.2.4/lib/index.min.js',
reactRouterDom: 'https://cdn.jsdelivr.net/npm/react-router-dom@5.2.0/index.min.js',
}),
// ESLint configuration
new ESLintPlugin({
files: ['.', 'src', 'config'],
formatter: 'table',
failOnError: false,
emitWarning: true,
}),
// Prettier configuration
// new PrettierPlugin(),
],
resolve: {
alias: {
RocketAssets: `${paths.src}/shared/assets`,
Components: path.normalize(`${paths.src}/shared/components`),
Containers: path.normalize(`${paths.src}/shared/containers`),
Context: path.normalize(`${paths.src}/shared/context`),
HOC: path.normalize(`${paths.src}/shared/hoc`),
Utils: path.normalize(`${paths.src}/shared/utils`),
Hooks: path.normalize(`${paths.src}/shared/hooks`),
Themes: path.normalize(`${paths.src}/shared/themes`),
Routes: path.normalize(`${paths.src}/routes`),
},
symlinks: false,
cacheWithContext: false,
extensions: ['.ts', '.tsx', '.js', '.json', '.jsx', '.mjs', '.css', '.scss', '.sass'],
},
// Determine how modules within the project are treated
module: {
rules: [
// JavaScript: Use Babel to transpile JavaScript files
{
test: /\.(js|jsx|tsx|ts|mjs)$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel-loader',
},
{
test: /\.(ts|tsx)$/,
use: [
{
loader: 'ts-loader',
},
],
},
{
test: /\.svg$/,
use: ['@svgr/webpack'],
},
{
test: /\.(?:ico|png|jpg|gif|jpeg|ttf)$/,
type: 'assets/resource',
},
// Images: Copy image files to build folder
{ test: /\.(?:ico|gif|png|jpg|jpeg)$/i, type: 'assets' },
// Fonts and SVGs: Inline files
// { test: /\.(woff(2)?|eot|ttf|otf|svg|)$/, type: 'assets/inline' },
],
},
// externals: {
// axios: {
// amd: 'axios',
// },
// bootstrap: 'bootstrap',
// react: 'React', // Case matters here
// 'react-dom': 'ReactDOM',
// 'react-router-dom': 'react-router-dom',
// popperCore: {
// root: 'PopperJS',
// commonjs2: 'popper.js',
// commonjs: 'popper.js',
// amd: 'popper.js',
// },
// 'react-router-dom': 'ReactRouter',
// redux: 'redux',
// 'react-redux': 'react-redux',
// },
// externalsPresets: { web: false, webAsync: true },
// optimization: {
// // fix node modules not packaged into zip
// concatenateModules: false,
// },
};
+76
View File
@@ -0,0 +1,76 @@
const webpack = require('webpack');
const { merge } = require('webpack-merge');
const common = require('./webpack.base.js');
const paths = require('./paths');
const path = require('path');
module.exports = merge(common, {
// Set the mode to development or production
mode: 'development',
// Control how source maps are generated
devtool: 'inline-source-map',
output: {
path: path.normalize(paths.build),
publicPath: '/',
filename: 'js/[name].[contenthash].bundle.js',
},
// Spin up a server for quick development
devServer: {
historyApiFallback: true,
contentBase: path.normalize(paths.build),
index: '/',
open: true,
compress: true,
hot: true,
port: 3000,
host: 'test.rocketplantech.com',
https: true,
noInfo: true, //This turns off information regarding the bundle. Set to false if you need to view the messages
},
module: {
rules: [
// Styles: Inject CSS into the head with source maps
{
test: /\.(scss|css)$/i,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
sourceMap: true,
importLoaders: 1,
// modules: true,
modules: {
localIdentName: '[name]__[local]___[hash:base64:5]',
},
},
},
{ loader: 'postcss-loader', options: { sourceMap: true } },
{ loader: 'sass-loader', options: { sourceMap: true } },
],
include: /\.module\.css$/i,
},
{
test: /\.(scss|css)$/i,
use: [
'style-loader',
// 'css-loader',
{
loader: 'css-loader',
options: { sourceMap: true, importLoaders: 1 },
},
{ loader: 'postcss-loader', options: { sourceMap: true } },
{ loader: 'sass-loader', options: { sourceMap: true } },
],
exclude: /\.module\.css$/i,
},
],
},
plugins: [
// Only update what has changed on hot reload
new webpack.HotModuleReplacementPlugin(),
],
});
@@ -0,0 +1,67 @@
/// <reference types="cypress" />
// Welcome to Cypress!
//
// To learn more about how Cypress works and
// what makes it such an awesome testing tool,
// please read our getting started guide:
// https://on.cypress.io/introduction-to-cypress
const newUserEmail = 'aj3@rocketplantech.com';
const existingUserAccount = { email: 'aj@rocketplantech.com', password: 'signon123' };
// Gotta keep updating the line below after every test run
const newUserAccount = { email: 'aj00@rocketplantech.com', password: 'signon123', phone: '236-833-6689' };
describe('rocketplan tech', () => {
beforeEach(() => {
// Cypress starts out with a blank slate for each test
// so we must tell it to visit our website with the `cy.visit()` command.
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('https://test.rocketplantech.com:3000/');
});
it('log in existing user', () => {
// We use the `cy.get()` command to get all elements that match the selector.
// Then, we use `should` to assert that there are two matched items,
// which are the two default items.
cy.wait(4000);
cy.get('input[name=email]')
.should('have.length', 1)
.type(existingUserAccount.email)
.should('have.value', existingUserAccount.email);
cy.wait(2000);
cy.get('input[name=password]')
.should('have.length', 1)
.type(existingUserAccount.password)
.should('have.value', existingUserAccount.password);
cy.get('button[type=submit]').click();
cy.get('#Dashboard').should('have.length', 1);
});
// This reaches the phone verification screen
it('create new user', () => {
cy.wait(4000);
cy.get('input[name=email]')
.should('have.length', 1)
.type(newUserAccount.email)
.should('have.value', newUserAccount.email);
cy.wait(2000);
cy.get('#CreateCompany_Button').click();
cy.get('input[name=password]')
.should('have.length', 1)
.type(newUserAccount.password)
.should('have.value', newUserAccount.password);
cy.get('input[name=confirm_password]')
.should('have.length', 1)
.type(newUserAccount.password)
.should('have.value', newUserAccount.password);
cy.get('#Signup_Next').click();
cy.wait(1000);
cy.get('#Signup_PhoneNumber')
.should('have.length', 1)
.type(newUserAccount.phone)
.should('have.value', newUserAccount.phone);
cy.get('button[type=submit]').click();
});
});
+205
View File
@@ -0,0 +1,205 @@
{
"name": "company-tech",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config config/webpack.dev.js",
"prep": "yarn && yarn prepare-husky && yarn start",
"lint": "eslint --ext 'mjs,js,jsx,ts,tsx' --fix",
"lint-staged": "lint-staged",
"prepare-husky": "husky install",
"storybook": "start-storybook -p 6006",
"test": "npx cypress open"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged && git add --all"
}
},
"lint-staged": {
"*.(js|ts|jsx|tsx)": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@pdftron/webviewer": "^8.1.0",
"@popperjs/core": "^2.9.2",
"@sentry/react": "^6.13.3",
"@sentry/tracing": "^6.13.3",
"@shopify/react-web-worker": "^2.1.6",
"@types/googlemaps": "^3.43.3",
"@uppy/core": "^2.1.6",
"@uppy/robodog": "^2.5.0",
"@uppy/transloadit": "^2.1.2",
"axios": "^0.21.1",
"bootstrap": "^5.0.2",
"buffer": "^6.0.3",
"date-fns": "^2.22.1",
"deep-equal": "^2.0.5",
"email-validator": "^2.0.4",
"google-map-react": "^2.1.10",
"history": "^5.0.0",
"laravel-echo": "^1.11.2",
"lodash": "^4.17.21",
"password-validator": "^5.1.1",
"pusher-js": "^7.0.3",
"qs": "^6.10.1",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-anchorme": "^2.2.1",
"react-copy-to-clipboard": "^5.0.3",
"react-datepicker": "^4.4.0",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.4",
"react-geocode": "^0.2.3",
"react-google-autocomplete": "^2.4.0",
"react-input-mask": "^2.0.4",
"react-paginate": "^7.1.3",
"react-phone-number-input": "^3.1.35",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-textarea-autosize": "^8.3.3",
"react-use-intercom": "^1.4.0",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"screen-size-detector": "^1.0.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-links": "^6.3.4",
"@storybook/addon-viewport": "^6.3.4",
"@storybook/builder-webpack5": "^6.3.4",
"@storybook/manager-webpack5": "^6.3.4",
"@storybook/react": "^6.3.4",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/bootstrap": "^5.0.17",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.18",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"autoprefixer": "^10.3.1",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.1.0",
"core-js": "^3.15.2",
"cross-env": "^7.0.3",
"css-loader": "^6.1.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"cypress": "^8.7.0",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.4",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"lint-staged": "^11.0.1",
"mini-css-extract-plugin": "^2.1.0",
"node-sass": "^6.0.1",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.1.0",
"terser-webpack-plugin": "^5.1.4",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0",
"worker-loader": "^3.0.8"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"debug": true,
"useBuiltIns": "usage",
"corejs": "3.6.5"
}
],
[
"@babel/preset-react"
]
],
"plugins": [
"syntax-dynamic-import",
"transform-class-properties",
"@babel/plugin-transform-modules-commonjs"
]
},
"jest": {
"coverageDirectory": "dist/test-results",
"setupFilesAfterEnv": [
"<rootDir>/stories/setupTests.js"
],
"transform": {
"\\.(js|ts|tsx)": "ts-jest",
"\\.(js|jsx)": "babel-jest",
".svg": "<rootDir>/__mocks__/mockModule.js"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
],
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"moduleNameMapper": {
"RocketAssets/(.*)": "<rootDir>/src/shared/assets/$1",
"Components/(.*)": "<rootDir>/src/shared/components/$1",
"Containers/(.*)": "<rootDir>/src/shared/containers/$1",
"HOC/(.*)": "<rootDir>/src/shared/hoc/$1",
"Hooks/(.*)": "<rootDir>/src/shared/hooks/$1",
"Utils/(.*)": "<rootDir>/src/shared/utils/$1",
"Context/(.*)": "<rootDir>/src/shared/context/$1",
"Routes/(.*)": "<rootDir>/src/routes/$1"
},
"coverageThreshold": {
"global": {
"branches": 4,
"functions": 4,
"lines": 4,
"statements": 4
}
}
}
}
+20
View File
@@ -0,0 +1,20 @@
const postCssPresetEnv = require('postcss-preset-env');
const autoprefixer = require('autoprefixer');
module.exports = {
plugins: [
postCssPresetEnv({
browsers: 'last 1 versions',
}),
autoprefixer,
],
};
// module.exports = {
// plugins: [
// require('postcss-preset-env')({
// browsers: 'last 1 versions',
// }),
// require('autoprefixer'),
// ],
// };
+1
View File
@@ -0,0 +1 @@
/* /index.html 200
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 358 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 273 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 289 KiB

+28
View File
@@ -0,0 +1,28 @@
/* css reset to remove the scrollbar,until it's needed */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
height: 100%;
}
body {
margin: 0;
min-height: 100vh;
background-color: #000;
font-family: sans-serif;
border: unset;
}
.textAlignCenter {
text-align: center;
}
.modal-backdrop {
z-index: 1000000000;
}
.modal {
z-index: 1000000001;
}
+25
View File
@@ -0,0 +1,25 @@
import React from 'react';
import { Provider } from 'react-redux';
import { Routes } from 'Routes/Routes';
import { UserProvider } from 'Context/User';
import { CoreProvider } from 'Context/Core';
// Pull the mock data
import { setupStore } from '../store';
import './App.css';
// Create the store
const store = setupStore();
const App = () => (
<Provider store={store}>
<UserProvider>
<CoreProvider>
<Routes />
</CoreProvider>
</UserProvider>
</Provider>
);
export default App;
+3
View File
@@ -0,0 +1,3 @@
import App from './App';
export default App;
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

+31
View File
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<meta charset="UTF-8">
<link rel="icon" href="favicon.png" />
<title><%= htmlWebpackPlugin.options.title %></title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@500&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@600&display=swap" rel="stylesheet" />
<link rel="stylesheet" crossorigin="anonymous" href="<%= htmlWebpackPlugin.options.bootStrapCss %>" />
</head>
<body>
<div id="app"></div>
<!-- <script crossorigin="anonymous" src="<%= htmlWebpackPlugin.options.popper %>"></script>
<script crossorigin="anonymous" src="<%= htmlWebpackPlugin.options.axios%>"></script>
<script crossorigin="anonymous" src="<%= htmlWebpackPlugin.options.bootstrap%>"></script>
<script crossorigin="anonymous" src="<%= htmlWebpackPlugin.options.redux %>"></script>
<script crossorigin="anonymous" src="<%= htmlWebpackPlugin.options.react%>"></script>
<script crossorigin="anonymous" src="<%= htmlWebpackPlugin.options.reactRedux %>"></script>
<script crossorigin="anonymous" src="<%= htmlWebpackPlugin.options.reactDom %>"></script>
<script crossorigin="anonymous" src="<%= htmlWebpackPlugin.options.reactRouterDom %>"></script>
<script crossorigin="anonymous" src="<%= htmlWebpackPlugin.options.reactBootstrap %>"></script> -->
<!--Webpack needs to place the built files here-->
</body>
</html>
+45
View File
@@ -0,0 +1,45 @@
/*eslint-disable */
// //the linter generates an error about App.default. Imported JSX component default must be in PascalCase or SCREAMING_SNAKE_CASE react/jsx-pascal-case
// //However this is what React needs to render the app.
import React from 'react';
import { render } from 'react-dom';
//import { Api } from 'Utils/api';
//import * as Sentry from '@sentry/react';
//import { Integrations } from '@sentry/tracing';
// Sentry integration on production, staging, and qa
// if (window.location.hostname !== 'test.rocketplantech.com') {
// Sentry.init({
// dsn: 'https://cc9581db4cc94680a8ede2385b796888@o537211.ingest.sentry.io/5662701',
// integrations: [new Integrations.BrowserTracing()],
// environment: process.env.NODE_ENV === 'production' ? 'production' : 'qa',
// // We recommend adjusting this value in production, or using tracesSampler
// // for finer control
// tracesSampleRate: 1.0,
// });
// }
// Need to get the google api loaded
//const script = document.createElement(`script`);
//script.src = process.env.REACT_GOOGLE_API;
//document.body.appendChild(script);
//Add an event listener for the script tag. This will ensure that the Google api is loaded before the app
//Make the callback async so we can use the await keyword, when importing the App component
//script.addEventListener(`load`, async () => {
//We need to dynamically import the App component, after the google maps api has been loaded.
//This prevents the error Uncaught ReferenceError: google is not defined.
//Ie, in the maps.ts file, this error will occur if the api has not be instantiated
//before the App component is rendered.
//Api.csrfHeader().then(async (exists: boolean) => {
//if (exists) {
//Dynamically import the App component
(async() => {
const App = await import('./app');
render(<App.default />, document.getElementById('app'));
return;
}
)();
//}
//Todo we need to create an error page with contact info for support
// alert('Please contact support. The application cannot load.');
//});
//});
+38
View File
@@ -0,0 +1,38 @@
import React, { memo } from 'react';
import { Redirect, Route } from 'react-router-dom';
import { useSelector } from 'react-redux';
import { areEqual } from 'Utils/equalityChecks';
import { userVerificationsSelector } from 'Containers/User/selector';
const PrivateRoute = ({ exact, path, render }: any) => {
const userVerifications = useSelector(userVerificationsSelector, areEqual);
const { authenticated, sms, company, approved } = userVerifications;
// we'll redirect if the user:
// is not authenticated,
// doesn't has a company,
// or company is not approved,
if (!authenticated && !sms && !company && !approved) {
return (
<Route
exact={exact}
path={path}
render={({ location }) => (
<Redirect
to={{
pathname: '/',
state: { from: location },
}}
/>
)}
/>
);
}
return <Route exact={exact} path={path} render={render} />;
};
const PrivateRouteMemo = memo(PrivateRoute, areEqual);
export { PrivateRouteMemo as PrivateRoute };
+112
View File
@@ -0,0 +1,112 @@
import React, { memo } from 'react';
import { Redirect, Route } from 'react-router-dom';
import { useSelector } from 'react-redux';
import { areEqual } from 'Utils/equalityChecks';
import { userVerificationsSelector } from 'Containers/User/selector';
import { getAppRedirectPathLocal } from 'Containers/Core/actions';
// list of URLs of signup flow, unverified users should be able to access these routes
const excludes = ['/phoneverificationcode', '/welcomeaboard', '/welcomeback'];
const PublicRoute = ({ exact, path, render }: any) => {
const userVerifications = useSelector(userVerificationsSelector, areEqual);
const appRedirectPath = getAppRedirectPathLocal();
// if the user is authenticated we'll do the following
if (userVerifications?.authenticated) {
const { sms, company, approved, isNew } = userVerifications;
// verified users with an approved company attached are redirected to the dashboard screen
if (sms && company && approved) {
return (
<Route
exact={exact}
path={path}
render={({ location }) => (
<Redirect
to={{
pathname: appRedirectPath || '/dashboard',
search: `${isNew ? '?ft=1' : ''}`,
state: { from: location },
}}
/>
)}
/>
);
}
// verified users that don't have a company attached are redirected to the signupuserinformation screen
if (sms && !company) {
if (path === '/signupuserinformation') {
return <Route exact={exact} path={path} render={render} />;
}
return (
<Route
exact={exact}
path={path}
render={({ location }) => (
<Redirect
to={{
pathname: '/signupuserinformation',
state: { from: location },
}}
/>
)}
/>
);
}
// verified users that are attached to a company, but aren't approved yet are redirected to the blocked screen
if (sms && company && !approved) {
if (path === '/welcomeback') {
return <Route exact={exact} path={path} render={render} />;
}
return (
<Route
exact={exact}
path={path}
render={({ location }) => (
<Redirect
to={{
pathname: '/welcomeback',
state: { from: location },
}}
/>
)}
/>
);
}
// unverified users will always be redirected to the phone verification page
if (!sms && !excludes.includes(path)) {
// if the path is `phoneverification` we'll return the route otherwise trigger a redirect
// this is to prevent infinite redirection on this path
if (path === '/phoneverification') {
return <Route exact={exact} path={path} render={render} />;
}
return (
<Route
exact={exact}
path={path}
render={({ location }) => (
<Redirect
to={{
pathname: '/phoneverification',
state: { from: location },
}}
/>
)}
/>
);
}
}
// public default route
return <Route exact={exact} path={path} render={render} />;
};
const PublicRouteMemo = memo(PublicRoute, areEqual);
export { PublicRouteMemo as PublicRoute };
+19
View File
@@ -0,0 +1,19 @@
/* eslint-disable */
import { Redirect, Route } from 'react-router-dom';
import React from 'react';
export const RedirectRoute = ({ children, redirect = '/login', ...rest }) => {
return (
<Route
{...rest}
render={({ location }) => (
<Redirect
to={{
pathname: redirect,
state: { from: location },
}}
/>
)}
/>
);
};
+391
View File
@@ -0,0 +1,391 @@
import React from 'react';
import { BrowserRouter, Route, Switch } from 'react-router-dom';
import queryString from 'query-string';
// layout wrappers and dashboard container
import { Dashboard, DashboardWrapper } from 'Containers/Dashboard';
import { GuestWrapper } from 'Containers/Auth';
import { PhotoViewWrapper } from 'Containers/PhotoView/PhotoViewWrapper';
import { SplashPageWrapper } from 'Containers/SplashPageWrapper';
import { PhotoShare, PhotoShareGallery, PhotoShareWrapper } from 'Containers/Public';
import { NotFoundWrapper } from 'Containers/NotFoundWrapper';
// guest components
import {
SignInHow,
SignInEmail,
SignUpEmail,
ForgotPassword,
ForgotPasswordEmailSent,
ResetPassword,
PhoneVerification,
PhoneVerificationCode,
SignUpUserInformation,
WelcomeAboard,
NoCompany,
SelectAccountType,
Blocked,
} from 'Containers/SignIn';
import { PhotoView } from 'Containers/PhotoView';
import { PhotoView as NewPhotoView, RocketScan, MultiUnit, MultiUnitRooms } from 'Containers/RocketScan';
import { PhotoShareSplashView } from 'Containers/Public/PhotoShare/PhotoShareSplashView';
// dashboard components
import { CreateProjectMain, Projects } from 'Containers/Projects';
import { People } from 'Containers/People';
import { Crew } from 'Containers/Crew';
import { Project } from 'Containers/Project';
import { Account, About } from 'Containers/User';
import { ProjectData } from 'Containers/ProjectData';
import { RocketDry } from 'Containers/RocketDry';
// route components
import { PhotoShareProvider } from 'Context/PhotoShare/PhotoShareProvider';
import { ProjectsProvider } from 'Context/Projects';
import { SingleProjectProvider } from 'Context/Project';
import { Notes } from 'Containers/Notes';
import { NotesProvider } from 'Context/Notes';
import { PhotoReport, DryingReport, ReportsAndDocuments } from 'Containers/ReportsAndDocuments';
import { PrivateRoute } from './PrivateRoutes';
import { PublicRoute } from './PublicRoutes';
// Render Props. Create here to prevent a rerender, on a route change, due to arrow functions always being considered new
const signInHowRoute = () => (
<GuestWrapper>
<SignInHow />
</GuestWrapper>
);
const SignInRoute = () => (
<GuestWrapper>
<SignInEmail />
</GuestWrapper>
);
const SignUpRoute = () => (
<GuestWrapper>
<SignUpEmail />
</GuestWrapper>
);
const ForgotPasswordRoute = () => (
<GuestWrapper>
<ForgotPassword />
</GuestWrapper>
);
const ForgotPasswordEmailSentRoute = () => (
<GuestWrapper>
<ForgotPasswordEmailSent />
</GuestWrapper>
);
const PhoneVerificationRoute = () => (
<GuestWrapper>
<PhoneVerification />
</GuestWrapper>
);
const PhoneVerificationCodeRoute = () => (
<GuestWrapper>
<PhoneVerificationCode />
</GuestWrapper>
);
const SignUpUserInformationRoute = () => (
<GuestWrapper>
<SignUpUserInformation />
</GuestWrapper>
);
const WelcomeAboardRoute = () => (
<GuestWrapper>
<WelcomeAboard />
</GuestWrapper>
);
const WelcomeBackRoute = () => (
<GuestWrapper>
<Blocked />
</GuestWrapper>
);
const NoCompanyRoute = () => (
<GuestWrapper>
<NoCompany />
</GuestWrapper>
);
const SelectAccountTypeRoute = () => (
<GuestWrapper>
<SelectAccountType />
</GuestWrapper>
);
// This route is for a user that clicks on an email reset link.
const ResetPasswordRoute = ({ location: { search } }: any) => {
// destructure search from location in props.
const { token, email } = queryString.parse(search.replace('+', '%2B'));
return (
<GuestWrapper>
<ResetPassword token={token} email={email} />
</GuestWrapper>
);
};
// dashboard routes - home screen
const DashboardRoute = ({ location: { search } }: any) => {
// destructure search from location in props.
const { ft } = queryString.parse(search);
return (
<DashboardWrapper isFirstTimer={ft ? Number(ft) === 1 : false}>
<Dashboard />
</DashboardWrapper>
);
};
// Projects related routes
const ProjectsRoute = () => (
<DashboardWrapper>
<ProjectsProvider>
<Projects />
</ProjectsProvider>
</DashboardWrapper>
);
/*
* single project routes: tabs specific
* */
const ProjectRoute = () => (
<DashboardWrapper>
<Project />
</DashboardWrapper>
);
const ProjectPhotoManagementRoute = () => (
<DashboardWrapper>
<Project />
</DashboardWrapper>
);
const CreateProjectRoute = () => (
<DashboardWrapper>
<CreateProjectMain />
</DashboardWrapper>
);
const EditAddressRoute = () => (
<DashboardWrapper>
<CreateProjectMain />
</DashboardWrapper>
);
// people related routes
const PeopleRoute = () => (
<DashboardWrapper>
<People />
</DashboardWrapper>
);
const PhotoViewRoute = () => (
<PhotoViewWrapper>
<PhotoView />
</PhotoViewWrapper>
);
const SignUpFromInviteRoute = () => (
<GuestWrapper>
<SignInHow />
</GuestWrapper>
);
const PhotoShareSplashRoute = () => (
<SplashPageWrapper>
<PhotoShareSplashView />
</SplashPageWrapper>
);
const PhotoShareRoute = () => (
<PhotoShareWrapper>
<PhotoShare />
</PhotoShareWrapper>
);
const PhotoShareGalleryRoute = () => (
<PhotoViewWrapper>
<PhotoShareProvider>
<PhotoShareGallery />
</PhotoShareProvider>
</PhotoViewWrapper>
);
const RocketScanRoute = () => (
<DashboardWrapper>
<RocketScan />
</DashboardWrapper>
);
const RocketScanMultiUnitRoute = () => (
<DashboardWrapper>
<MultiUnit />
</DashboardWrapper>
);
const RocketScanCommercialRoute = () => (
<DashboardWrapper>
<MultiUnit isCommercialProperty />
</DashboardWrapper>
);
const AccountRoute = () => (
<DashboardWrapper>
<Account />
</DashboardWrapper>
);
const AboutRoute = () => (
<DashboardWrapper>
<About />
</DashboardWrapper>
);
const RocketScanMultiUnitContentViewRoute = () => (
<DashboardWrapper>
<MultiUnitRooms />
</DashboardWrapper>
);
const RocketScanCommercialRoomsViewRoute = () => (
<DashboardWrapper>
<MultiUnitRooms />
</DashboardWrapper>
);
const AllNotesRoute = () => (
<DashboardWrapper>
<NotesProvider>
<Notes />
</NotesProvider>
</DashboardWrapper>
);
const CrewRoute = () => (
<DashboardWrapper>
<Crew />
</DashboardWrapper>
);
const RocketScanPhotoViewRoute = () => (
<PhotoViewWrapper>
<SingleProjectProvider>
<NewPhotoView />
</SingleProjectProvider>
</PhotoViewWrapper>
);
const ProjectDataRoute = () => (
<DashboardWrapper>
<ProjectData />
</DashboardWrapper>
);
const RocketReportsRoute = () => (
<DashboardWrapper>
<ReportsAndDocuments />
</DashboardWrapper>
);
const GeneratePhotoReportRoute = () => (
<DashboardWrapper>
<PhotoReport />
</DashboardWrapper>
);
const GenerateDryingReportRoute = () => (
<DashboardWrapper>
<DryingReport />
</DashboardWrapper>
);
const RocketDryRoute = () => (
<DashboardWrapper>
<RocketDry />
</DashboardWrapper>
);
const NotFoundRoute = () => <NotFoundWrapper />;
export const Routes = () => (
<BrowserRouter>
<Switch>
<PublicRoute exact path="/" render={signInHowRoute} />
<PublicRoute exact path="/signinemail" render={SignInRoute} />
<PublicRoute exact path="/signupemail" render={SignUpRoute} />
<PublicRoute exact path="/phoneverification" render={PhoneVerificationRoute} />
<PublicRoute exact path="/phoneverificationcode" render={PhoneVerificationCodeRoute} />
<PublicRoute exact path="/signupuserinformation" render={SignUpUserInformationRoute} />
<PublicRoute exact path="/forgotpassword" render={ForgotPasswordRoute} />
<PublicRoute exact path="/forgotpassword/emailsent" render={ForgotPasswordEmailSentRoute} />
<PublicRoute path="/reset-password" render={ResetPasswordRoute} />
<PublicRoute exact path="/welcomeaboard" render={WelcomeAboardRoute} />
<PublicRoute exact path="/nocompany" render={NoCompanyRoute} />
<PublicRoute exact path="/selectaccounttype" render={SelectAccountTypeRoute} />
<PublicRoute exact path="/invite/:uuid" render={SignUpFromInviteRoute} />
<PrivateRoute exact path="/photoView" render={PhotoViewRoute} />
<PrivateRoute path="/dashboard" render={DashboardRoute} />
<PrivateRoute exact path="/welcomeback" render={WelcomeBackRoute} />
<PrivateRoute exact path="/projects/create" render={CreateProjectRoute} />
<PrivateRoute exact path="/projects/editAddress" render={EditAddressRoute} />
<PrivateRoute exact path="/projects" render={ProjectsRoute} />
<PrivateRoute exact path="/projects/projectDashboard" render={ProjectRoute} />
<PrivateRoute exact path="/projects/photoManagement/addLocations" render={ProjectPhotoManagementRoute} />
<PrivateRoute exact path="/projects/photoManagement/allLocations" render={ProjectPhotoManagementRoute} />
<PrivateRoute exact path="/projects/photoManagement/addLocations/single" render={ProjectPhotoManagementRoute} />
<PrivateRoute
exact
path="/projects/photoManagement/addLocations/multiUnit"
render={ProjectPhotoManagementRoute}
/>
<PrivateRoute
exact
path="/projects/photoManagement/addLocations/multiUnit/add"
render={ProjectPhotoManagementRoute}
/>
<PrivateRoute
exact
path="/projects/photoManagement/allLocations/multiUnitView"
render={ProjectPhotoManagementRoute}
/>
<PrivateRoute exact path="/projects/:projectId/rocketscan" render={RocketScanRoute} />
<PrivateRoute
exact
path="/projects/:projectId/rocketscan/multiunit/:location"
render={RocketScanMultiUnitContentViewRoute}
/>
<PrivateRoute exact path="/projects/:projectId/rocketscan/multiunit" render={RocketScanMultiUnitRoute} />
<PrivateRoute exact path="/projects/:projectId/rocketscan/photo-view" render={RocketScanPhotoViewRoute} />
<PrivateRoute exact path="/projects/:projectId/rocketscan/commercial" render={RocketScanCommercialRoute} />
<PrivateRoute
exact
path="/projects/:projectId/rocketscan/commercial/:location"
render={RocketScanCommercialRoomsViewRoute}
/>
<PrivateRoute exact path="/projects/:projectId/notes" render={AllNotesRoute} />
<PrivateRoute exact path="/projects/:projectId/crew" render={CrewRoute} />
<PrivateRoute exact path="/projects/:projectId/project-data" render={ProjectDataRoute} />
<PrivateRoute exact path="/projects/:projectId/rocketdry" render={RocketDryRoute} />
<PrivateRoute exact path="/projects/:projectId/rocketreports" render={RocketReportsRoute} />
<PrivateRoute exact path="/projects/:projectId/reports/generate/photo" render={GeneratePhotoReportRoute} />
<PrivateRoute exact path="/projects/:projectId/reports/generate/drying" render={GenerateDryingReportRoute} />
<PrivateRoute exact path="/people" render={PeopleRoute} />
<PrivateRoute exact path="/user/account" render={AccountRoute} />
<PrivateRoute exact path="/user/about" render={AboutRoute} />
<Route exact path="/photo-share/:uuid/gallery" render={PhotoShareGalleryRoute} />
<Route exact path="/photo-share/:uuid/view" render={PhotoShareRoute} />
<Route exact path="/photo-share/:uuid" render={PhotoShareSplashRoute} />
<Route render={NotFoundRoute} />
</Switch>
</BrowserRouter>
);
+4
View File
@@ -0,0 +1,4 @@
export { Routes } from './Routes';
export { PrivateRoute } from './PrivateRoutes';
export { PublicRoute } from './PublicRoutes';
export { RedirectRoute } from './RedirectRoute';
+4
View File
@@ -0,0 +1,4 @@
<svg width="31" height="32" viewBox="0 0 31 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<ellipse cx="15.3818" cy="16" rx="15.3818" ry="16" fill="#E8E7ED"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.3836 17.3332C16.0915 17.3332 16.6654 16.7362 16.6654 15.9998C16.6654 15.2635 16.0915 14.6665 15.3836 14.6665C14.6756 14.6665 14.1017 15.2635 14.1017 15.9998C14.1017 16.7362 14.6756 17.3332 15.3836 17.3332ZM24.3563 17.3332C25.0642 17.3332 25.6381 16.7362 25.6381 15.9998C25.6381 15.2635 25.0642 14.6665 24.3563 14.6665C23.6484 14.6665 23.0745 15.2635 23.0745 15.9998C23.0745 16.7362 23.6484 17.3332 24.3563 17.3332ZM7.69255 16.0002C7.69255 16.7366 7.11866 17.3336 6.41073 17.3336C5.7028 17.3336 5.12891 16.7366 5.12891 16.0002C5.12891 15.2639 5.7028 14.6669 6.41073 14.6669C7.11866 14.6669 7.69255 15.2639 7.69255 16.0002Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 871 B

+4
View File
@@ -0,0 +1,4 @@
<svg width="31" height="32" viewBox="0 0 31 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M30.1228 16C30.1228 24.5066 23.4995 31.3591 15.3818 31.3591C7.26422 31.3591 0.64091 24.5066 0.64091 16C0.64091 7.49337 7.26422 0.64091 15.3818 0.64091C23.4995 0.64091 30.1228 7.49337 30.1228 16Z" fill="white" stroke="#9A00FF" stroke-width="1.28182"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.3836 17.3332C16.0915 17.3332 16.6654 16.7362 16.6654 15.9998C16.6654 15.2635 16.0915 14.6665 15.3836 14.6665C14.6756 14.6665 14.1017 15.2635 14.1017 15.9998C14.1017 16.7362 14.6756 17.3332 15.3836 17.3332ZM24.3563 17.3332C25.0642 17.3332 25.6381 16.7362 25.6381 15.9998C25.6381 15.2635 25.0642 14.6665 24.3563 14.6665C23.6484 14.6665 23.0745 15.2635 23.0745 15.9998C23.0745 16.7362 23.6484 17.3332 24.3563 17.3332ZM7.69255 16.0002C7.69255 16.7366 7.11866 17.3336 6.41073 17.3336C5.7028 17.3336 5.12891 16.7366 5.12891 16.0002C5.12891 15.2639 5.7028 14.6669 6.41073 14.6669C7.11866 14.6669 7.69255 15.2639 7.69255 16.0002Z" fill="#9A00FF"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

+4
View File
@@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 32C24.8366 32 32 24.8366 32 16C32 7.16344 24.8366 0 16 0C7.16344 0 0 7.16344 0 16C0 24.8366 7.16344 32 16 32Z" fill="#E8E7ED"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.3936 10.3281C16.3597 10.1415 16.1964 10 16 10C15.7791 10 15.6 10.1791 15.6 10.4V15.6H10.4L10.3281 15.6064C10.1415 15.6403 10 15.8036 10 16C10 16.2209 10.1791 16.4 10.4 16.4H15.6V21.6L15.6064 21.6719C15.6403 21.8585 15.8036 22 16 22C16.2209 22 16.4 21.8209 16.4 21.6V16.4H21.6L21.6719 16.3936C21.8585 16.3597 22 16.1964 22 16C22 15.7791 21.8209 15.6 21.6 15.6H16.4V10.4L16.3936 10.3281Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 741 B

+4
View File
@@ -0,0 +1,4 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z" fill="#E8E7ED"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.2954 7.74583C12.27 7.60588 12.1475 7.49976 12.0002 7.49976C11.8345 7.49976 11.7002 7.63407 11.7002 7.79976V11.7002H7.79976L7.74583 11.705C7.60588 11.7304 7.49976 11.8529 7.49976 12.0002C7.49976 12.1659 7.63407 12.3002 7.79976 12.3002H11.7002V16.1998L11.705 16.2537C11.7304 16.3936 11.8529 16.4998 12.0002 16.4998C12.1659 16.4998 12.3002 16.3654 12.3002 16.1998V12.3002H16.1998L16.2537 12.2954C16.3936 12.27 16.4998 12.1475 16.4998 12.0002C16.4998 11.8345 16.3654 11.7002 16.1998 11.7002H12.3002V7.79976L12.2954 7.74583Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 875 B

+36
View File
@@ -0,0 +1,36 @@
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.0726 1.54844C12.0726 1.47091 12.0418 1.39655 11.987 1.34173C11.9322 1.28691 11.8578 1.25611 11.7803 1.2561H10.6109C10.5334 1.25611 10.4591 1.28691 10.4042 1.34173C10.3494 1.39655 10.3186 1.47091 10.3186 1.54844V3.30246C10.3186 3.37999 10.3494 3.45434 10.4042 3.50917C10.4591 3.56399 10.5334 3.59479 10.6109 3.59479H11.7803C11.8578 3.59479 11.9322 3.56399 11.987 3.50917C12.0418 3.45434 12.0726 3.37999 12.0726 3.30246V1.54844ZM11.4879 3.01012H10.9033V1.84078H11.4879V3.01012Z" fill="#5B476B"/>
<path d="M14.4114 1.54844C14.4114 1.47091 14.3806 1.39655 14.3257 1.34173C14.2709 1.28691 14.1966 1.25611 14.119 1.2561H12.9497C12.8722 1.25611 12.7978 1.28691 12.743 1.34173C12.6882 1.39655 12.6574 1.47091 12.6573 1.54844V3.30246C12.6574 3.37999 12.6882 3.45434 12.743 3.50917C12.7978 3.56399 12.8722 3.59479 12.9497 3.59479H14.119C14.1966 3.59479 14.2709 3.56399 14.3257 3.50917C14.3806 3.45434 14.4114 3.37999 14.4114 3.30246V1.54844ZM13.8267 3.01012H13.242V1.84078H13.8267V3.01012Z" fill="#5B476B"/>
<path d="M12.0726 4.47202C12.0726 4.39449 12.0418 4.32014 11.987 4.26532C11.9322 4.21049 11.8578 4.17969 11.7803 4.17969H10.6109C10.5334 4.17969 10.4591 4.21049 10.4042 4.26532C10.3494 4.32014 10.3186 4.39449 10.3186 4.47202V6.22604C10.3186 6.30357 10.3494 6.37793 10.4042 6.43275C10.4591 6.48757 10.5334 6.51837 10.6109 6.51838H11.7803C11.8578 6.51837 11.9322 6.48757 11.987 6.43275C12.0418 6.37793 12.0726 6.30357 12.0726 6.22604V4.47202ZM11.4879 5.93371H10.9033V4.76436H11.4879V5.93371Z" fill="#5B476B"/>
<path d="M14.4114 4.47202C14.4114 4.39449 14.3806 4.32014 14.3257 4.26532C14.2709 4.21049 14.1966 4.17969 14.119 4.17969H12.9497C12.8722 4.17969 12.7978 4.21049 12.743 4.26532C12.6882 4.32014 12.6574 4.39449 12.6573 4.47202V6.22604C12.6574 6.30357 12.6882 6.37793 12.743 6.43275C12.7978 6.48757 12.8722 6.51837 12.9497 6.51838H14.119C14.1966 6.51837 14.2709 6.48757 14.3257 6.43275C14.3806 6.37793 14.4114 6.30357 14.4114 6.22604V4.47202ZM13.8267 5.93371H13.242V4.76436H13.8267V5.93371Z" fill="#5B476B"/>
<path d="M9.734 1.54844C9.73399 1.47091 9.70319 1.39655 9.64837 1.34173C9.59355 1.28691 9.51919 1.25611 9.44166 1.2561H8.27232C8.19479 1.25611 8.12043 1.28691 8.06561 1.34173C8.01079 1.39655 7.97998 1.47091 7.97998 1.54844V3.30246C7.97998 3.37999 8.01079 3.45434 8.06561 3.50917C8.12043 3.56399 8.19479 3.59479 8.27232 3.59479H9.44166C9.51919 3.59479 9.59355 3.56399 9.64837 3.50917C9.70319 3.45434 9.73399 3.37999 9.734 3.30246V1.54844ZM9.14933 3.01012H8.56465V1.84078H9.14933V3.01012Z" fill="#5B476B"/>
<path d="M9.734 4.47202C9.73399 4.39449 9.70319 4.32014 9.64837 4.26532C9.59355 4.21049 9.51919 4.17969 9.44166 4.17969H8.27232C8.19479 4.17969 8.12043 4.21049 8.06561 4.26532C8.01079 4.32014 7.97998 4.39449 7.97998 4.47202V6.22604C7.97998 6.30357 8.01079 6.37793 8.06561 6.43275C8.12043 6.48757 8.19479 6.51837 8.27232 6.51838H9.44166C9.51919 6.51837 9.59355 6.48757 9.64837 6.43275C9.70319 6.37793 9.73399 6.30357 9.734 6.22604V4.47202ZM9.14933 5.93371H8.56465V4.76436H9.14933V5.93371Z" fill="#5B476B"/>
<path d="M7.39538 1.54844C7.39537 1.47091 7.36457 1.39655 7.30975 1.34173C7.25492 1.28691 7.18057 1.25611 7.10304 1.2561H5.93369C5.85616 1.25611 5.78181 1.28691 5.72698 1.34173C5.67216 1.39655 5.64136 1.47091 5.64136 1.54844V3.30246C5.64136 3.37999 5.67216 3.45434 5.72698 3.50917C5.78181 3.56399 5.85616 3.59479 5.93369 3.59479H7.10304C7.18057 3.59479 7.25492 3.56399 7.30975 3.50917C7.36457 3.45434 7.39537 3.37999 7.39538 3.30246V1.54844ZM6.8107 3.01012H6.22603V1.84078H6.8107V3.01012Z" fill="#5B476B"/>
<path d="M7.39538 4.47202C7.39537 4.39449 7.36457 4.32014 7.30975 4.26532C7.25492 4.21049 7.18057 4.17969 7.10304 4.17969H5.93369C5.85616 4.17969 5.78181 4.21049 5.72698 4.26532C5.67216 4.32014 5.64136 4.39449 5.64136 4.47202V6.22604C5.64136 6.30357 5.67216 6.37793 5.72698 6.43275C5.78181 6.48757 5.85616 6.51837 5.93369 6.51838H7.10304C7.18057 6.51837 7.25492 6.48757 7.30975 6.43275C7.36457 6.37793 7.39537 6.30357 7.39538 6.22604V4.47202ZM6.8107 5.93371H6.22603V4.76436H6.8107V5.93371Z" fill="#5B476B"/>
<path d="M11.7803 7.10303H10.6109C10.5334 7.10303 10.4591 7.13383 10.4042 7.18865C10.3494 7.24348 10.3186 7.31783 10.3186 7.39536V9.14938C10.3186 9.22691 10.3494 9.30127 10.4042 9.35609C10.4591 9.41091 10.5334 9.44171 10.6109 9.44172H11.7803C11.8578 9.44171 11.9322 9.41091 11.987 9.35609C12.0418 9.30127 12.0726 9.22691 12.0726 9.14938V7.39536C12.0726 7.31783 12.0418 7.24348 11.987 7.18865C11.9322 7.13383 11.8578 7.10303 11.7803 7.10303ZM11.4879 8.85705H10.9033V7.6877H11.4879V8.85705Z" fill="#5B476B"/>
<path d="M14.119 7.10303H12.9497C12.8722 7.10303 12.7978 7.13383 12.743 7.18865C12.6882 7.24348 12.6574 7.31783 12.6573 7.39536V9.14938C12.6574 9.22691 12.6882 9.30127 12.743 9.35609C12.7978 9.41091 12.8722 9.44171 12.9497 9.44172H14.119C14.1966 9.44171 14.2709 9.41091 14.3257 9.35609C14.3806 9.30127 14.4114 9.22691 14.4114 9.14938V7.39536C14.4114 7.31783 14.3806 7.24348 14.3257 7.18865C14.2709 7.13383 14.1966 7.10303 14.119 7.10303ZM13.8267 8.85705H13.242V7.6877H13.8267V8.85705Z" fill="#5B476B"/>
<path d="M9.44166 7.10303H8.27232C8.19479 7.10303 8.12043 7.13383 8.06561 7.18865C8.01079 7.24348 7.97998 7.31783 7.97998 7.39536V9.14938C7.97998 9.22691 8.01079 9.30127 8.06561 9.35609C8.12043 9.41091 8.19479 9.44171 8.27232 9.44172H9.44166C9.51919 9.44171 9.59355 9.41091 9.64837 9.35609C9.70319 9.30127 9.73399 9.22691 9.734 9.14938V7.39536C9.73399 7.31783 9.70319 7.24348 9.64837 7.18865C9.59355 7.13383 9.51919 7.10303 9.44166 7.10303ZM9.14933 8.85705H8.56465V7.6877H9.14933V8.85705Z" fill="#5B476B"/>
<path d="M7.10304 7.10303H5.93369C5.85616 7.10303 5.78181 7.13383 5.72698 7.18865C5.67216 7.24348 5.64136 7.31783 5.64136 7.39536V9.14938C5.64136 9.22691 5.67216 9.30127 5.72698 9.35609C5.78181 9.41091 5.85616 9.44171 5.93369 9.44172H7.10304C7.18057 9.44171 7.25492 9.41091 7.30975 9.35609C7.36457 9.30127 7.39537 9.22691 7.39538 9.14938V7.39536C7.39537 7.31783 7.36457 7.24348 7.30975 7.18865C7.25492 7.13383 7.18057 7.10303 7.10304 7.10303ZM6.8107 8.85705H6.22603V7.6877H6.8107V8.85705Z" fill="#5B476B"/>
<path d="M15.5808 9.95327V0.963923C15.5806 0.731407 15.4881 0.508489 15.3237 0.344075C15.1593 0.179661 14.9363 0.0871771 14.7038 0.0869141L5.34905 0.0869141C5.11654 0.0871771 4.89362 0.179661 4.72921 0.344075C4.56479 0.508489 4.47231 0.731407 4.47205 0.963923V10.0994H5.05672V0.963923C5.05672 0.886391 5.08752 0.812034 5.14234 0.75721C5.19717 0.702386 5.27152 0.671587 5.34905 0.671587H14.7038C14.7813 0.671587 14.8557 0.702386 14.9105 0.75721C14.9654 0.812034 14.9962 0.886391 14.9962 0.963923V9.95327H15.5808Z" fill="#5B476B"/>
<path d="M18.2118 10.5381H14.1191C13.964 10.5382 13.8154 10.5999 13.7058 10.7095C13.5962 10.8191 13.5345 10.9677 13.5344 11.1228V11.7074H7.54149V11.2689C7.54134 11.1139 7.47969 10.9653 7.37007 10.8557C7.26046 10.7461 7.11184 10.6844 6.95682 10.6843H0.671587C0.516569 10.6844 0.367946 10.7461 0.258332 10.8557C0.148718 10.9653 0.0870688 11.1139 0.0869141 11.2689L0.0869141 18.285C0.0870688 18.44 0.148718 18.5886 0.258332 18.6983C0.367946 18.8079 0.516569 18.8695 0.671587 18.8697H18.2118C18.3668 18.8695 18.5154 18.8079 18.625 18.6983C18.7346 18.5886 18.7963 18.44 18.7964 18.285V11.1228C18.7963 10.9677 18.7346 10.8191 18.625 10.7095C18.5154 10.5999 18.3668 10.5382 18.2118 10.5381ZM14.1191 11.1228H18.2118V16.9695H14.1191V11.1228ZM7.54149 12.2921H13.5344V12.8768H7.54149V12.2921ZM7.54149 13.4614H13.5344V16.9695H11.9265V15.5078C11.9262 15.1978 11.8029 14.9006 11.5836 14.6813C11.3644 14.4621 11.0672 14.3388 10.7572 14.3385H10.1725C9.8625 14.3388 9.56527 14.4621 9.34606 14.6813C9.12684 14.9006 9.00353 15.1978 9.00317 15.5078V16.9695H7.54149V13.4614ZM11.3419 15.5078V16.9695H9.58784V15.5078C9.588 15.3528 9.64965 15.2042 9.75926 15.0945C9.86888 14.9849 10.0175 14.9233 10.1725 14.9231H10.7572C10.9122 14.9233 11.0608 14.9849 11.1704 15.0945C11.2801 15.2042 11.3417 15.3528 11.3419 15.5078ZM0.671587 11.2689H6.95682V16.9695H0.671587V11.2689ZM0.671587 18.285V17.5542H18.2119L18.2122 18.285H0.671587Z" fill="#5B476B"/>
<path d="M1.76778 12.146H1.47544C1.39791 12.146 1.32355 12.1768 1.26873 12.2316C1.21391 12.2864 1.18311 12.3608 1.18311 12.4383C1.18311 12.5159 1.21391 12.5902 1.26873 12.645C1.32355 12.6999 1.39791 12.7307 1.47544 12.7307H1.76778C1.84531 12.7307 1.91967 12.6999 1.97449 12.645C2.02931 12.5902 2.06011 12.5159 2.06011 12.4383C2.06011 12.3608 2.02931 12.2864 1.97449 12.2316C1.91967 12.1768 1.84531 12.146 1.76778 12.146Z" fill="#5B476B"/>
<path d="M1.76778 13.3154H1.47544C1.39791 13.3154 1.32355 13.3462 1.26873 13.4011C1.21391 13.4559 1.18311 13.5302 1.18311 13.6078C1.18311 13.6853 1.21391 13.7597 1.26873 13.8145C1.32355 13.8693 1.39791 13.9001 1.47544 13.9001H1.76778C1.84531 13.9001 1.91967 13.8693 1.97449 13.8145C2.02931 13.7597 2.06011 13.6853 2.06011 13.6078C2.06011 13.5302 2.02931 13.4559 1.97449 13.4011C1.91967 13.3462 1.84531 13.3154 1.76778 13.3154Z" fill="#5B476B"/>
<path d="M1.76778 14.4846H1.47544C1.39791 14.4846 1.32355 14.5154 1.26873 14.5702C1.21391 14.6251 1.18311 14.6994 1.18311 14.777C1.18311 14.8545 1.21391 14.9288 1.26873 14.9837C1.32355 15.0385 1.39791 15.0693 1.47544 15.0693H1.76778C1.84531 15.0693 1.91967 15.0385 1.97449 14.9837C2.02931 14.9288 2.06011 14.8545 2.06011 14.777C2.06011 14.6994 2.02931 14.6251 1.97449 14.5702C1.91967 14.5154 1.84531 14.4846 1.76778 14.4846Z" fill="#5B476B"/>
<path d="M1.76778 15.6538H1.47544C1.39791 15.6538 1.32355 15.6846 1.26873 15.7394C1.21391 15.7943 1.18311 15.8686 1.18311 15.9461C1.18311 16.0237 1.21391 16.098 1.26873 16.1529C1.32355 16.2077 1.39791 16.2385 1.47544 16.2385H1.76778C1.84531 16.2385 1.91967 16.2077 1.97449 16.1529C2.02931 16.098 2.06011 16.0237 2.06011 15.9461C2.06011 15.8686 2.02931 15.7943 1.97449 15.7394C1.91967 15.6846 1.84531 15.6538 1.76778 15.6538Z" fill="#5B476B"/>
<path d="M3.22957 12.146H2.93723C2.8597 12.146 2.78534 12.1768 2.73052 12.2316C2.6757 12.2864 2.6449 12.3608 2.6449 12.4383C2.6449 12.5159 2.6757 12.5902 2.73052 12.645C2.78534 12.6999 2.8597 12.7307 2.93723 12.7307H3.22957C3.3071 12.7307 3.38146 12.6999 3.43628 12.645C3.49111 12.5902 3.52191 12.5159 3.52191 12.4383C3.52191 12.3608 3.49111 12.2864 3.43628 12.2316C3.38146 12.1768 3.3071 12.146 3.22957 12.146Z" fill="#5B476B"/>
<path d="M3.22957 13.3154H2.93723C2.8597 13.3154 2.78534 13.3462 2.73052 13.4011C2.6757 13.4559 2.6449 13.5302 2.6449 13.6078C2.6449 13.6853 2.6757 13.7597 2.73052 13.8145C2.78534 13.8693 2.8597 13.9001 2.93723 13.9001H3.22957C3.3071 13.9001 3.38146 13.8693 3.43628 13.8145C3.49111 13.7597 3.52191 13.6853 3.52191 13.6078C3.52191 13.5302 3.49111 13.4559 3.43628 13.4011C3.38146 13.3462 3.3071 13.3154 3.22957 13.3154Z" fill="#5B476B"/>
<path d="M3.22957 14.4846H2.93723C2.8597 14.4846 2.78534 14.5154 2.73052 14.5702C2.6757 14.6251 2.6449 14.6994 2.6449 14.777C2.6449 14.8545 2.6757 14.9288 2.73052 14.9837C2.78534 15.0385 2.8597 15.0693 2.93723 15.0693H3.22957C3.3071 15.0693 3.38146 15.0385 3.43628 14.9837C3.49111 14.9288 3.52191 14.8545 3.52191 14.777C3.52191 14.6994 3.49111 14.6251 3.43628 14.5702C3.38146 14.5154 3.3071 14.4846 3.22957 14.4846Z" fill="#5B476B"/>
<path d="M3.22957 15.6538H2.93723C2.8597 15.6538 2.78534 15.6846 2.73052 15.7394C2.6757 15.7943 2.6449 15.8686 2.6449 15.9461C2.6449 16.0237 2.6757 16.098 2.73052 16.1529C2.78534 16.2077 2.8597 16.2385 2.93723 16.2385H3.22957C3.3071 16.2385 3.38146 16.2077 3.43628 16.1529C3.49111 16.098 3.52191 16.0237 3.52191 15.9461C3.52191 15.8686 3.49111 15.7943 3.43628 15.7394C3.38146 15.6846 3.3071 15.6538 3.22957 15.6538Z" fill="#5B476B"/>
<path d="M4.69112 12.146H4.39878C4.32125 12.146 4.24689 12.1768 4.19207 12.2316C4.13724 12.2864 4.10645 12.3608 4.10645 12.4383C4.10645 12.5159 4.13724 12.5902 4.19207 12.645C4.24689 12.6999 4.32125 12.7307 4.39878 12.7307H4.69112C4.76865 12.7307 4.84301 12.6999 4.89783 12.645C4.95265 12.5902 4.98345 12.5159 4.98345 12.4383C4.98345 12.3608 4.95265 12.2864 4.89783 12.2316C4.84301 12.1768 4.76865 12.146 4.69112 12.146Z" fill="#5B476B"/>
<path d="M4.69112 13.3154H4.39878C4.32125 13.3154 4.24689 13.3462 4.19207 13.4011C4.13724 13.4559 4.10645 13.5302 4.10645 13.6078C4.10645 13.6853 4.13724 13.7597 4.19207 13.8145C4.24689 13.8693 4.32125 13.9001 4.39878 13.9001H4.69112C4.76865 13.9001 4.84301 13.8693 4.89783 13.8145C4.95265 13.7597 4.98345 13.6853 4.98345 13.6078C4.98345 13.5302 4.95265 13.4559 4.89783 13.4011C4.84301 13.3462 4.76865 13.3154 4.69112 13.3154Z" fill="#5B476B"/>
<path d="M4.69112 14.4846H4.39878C4.32125 14.4846 4.24689 14.5154 4.19207 14.5702C4.13724 14.6251 4.10645 14.6994 4.10645 14.777C4.10645 14.8545 4.13724 14.9288 4.19207 14.9837C4.24689 15.0385 4.32125 15.0693 4.39878 15.0693H4.69112C4.76865 15.0693 4.84301 15.0385 4.89783 14.9837C4.95265 14.9288 4.98345 14.8545 4.98345 14.777C4.98345 14.6994 4.95265 14.6251 4.89783 14.5702C4.84301 14.5154 4.76865 14.4846 4.69112 14.4846Z" fill="#5B476B"/>
<path d="M4.69112 15.6538H4.39878C4.32125 15.6538 4.24689 15.6846 4.19207 15.7394C4.13724 15.7943 4.10645 15.8686 4.10645 15.9461C4.10645 16.0237 4.13724 16.098 4.19207 16.1529C4.24689 16.2077 4.32125 16.2385 4.39878 16.2385H4.69112C4.76865 16.2385 4.84301 16.2077 4.89783 16.1529C4.95265 16.098 4.98345 16.0237 4.98345 15.9461C4.98345 15.8686 4.95265 15.7943 4.89783 15.7394C4.84301 15.6846 4.76865 15.6538 4.69112 15.6538Z" fill="#5B476B"/>
<path d="M17.3542 12.3796L15.1617 11.6488C15.1253 11.6367 15.0868 11.6318 15.0485 11.6345C15.0102 11.6372 14.9729 11.6475 14.9385 11.6646C14.8692 11.6993 14.8164 11.7601 14.7919 11.8337C14.7797 11.8701 14.7749 11.9085 14.7776 11.9468C14.7803 11.9851 14.7905 12.0225 14.8077 12.0569C14.8249 12.0912 14.8486 12.1218 14.8776 12.147C14.9066 12.1722 14.9403 12.1914 14.9767 12.2035L17.1692 12.9343C17.2057 12.9465 17.2441 12.9513 17.2824 12.9486C17.3207 12.9459 17.3581 12.9357 17.3925 12.9185C17.4268 12.9014 17.4574 12.8776 17.4826 12.8486C17.5077 12.8196 17.5269 12.7859 17.5391 12.7495C17.5512 12.7131 17.5561 12.6746 17.5534 12.6363C17.5507 12.598 17.5404 12.5606 17.5233 12.5263C17.5061 12.4919 17.4823 12.4613 17.4533 12.4362C17.4243 12.411 17.3907 12.3918 17.3542 12.3796H17.3542Z" fill="#5B476B"/>
<path d="M17.3542 13.5491L15.1617 12.8182C15.0882 12.7937 15.0079 12.7994 14.9385 12.8341C14.8692 12.8687 14.8164 12.9295 14.7919 13.0031C14.7673 13.0766 14.773 13.1569 14.8077 13.2263C14.8424 13.2957 14.9032 13.3484 14.9767 13.3729L17.1692 14.1038C17.2428 14.1283 17.3231 14.1226 17.3925 14.088C17.4618 14.0533 17.5146 13.9925 17.5391 13.9189C17.5636 13.8454 17.5579 13.7651 17.5233 13.6957C17.4886 13.6264 17.4278 13.5736 17.3542 13.5491H17.3542Z" fill="#5B476B"/>
<path d="M17.3542 14.7183L15.1617 13.9874C15.0882 13.9629 15.0079 13.9686 14.9385 14.0033C14.8692 14.0379 14.8164 14.0987 14.7919 14.1723C14.7673 14.2458 14.773 14.3261 14.8077 14.3955C14.8424 14.4648 14.9032 14.5176 14.9767 14.5421L17.1692 15.273C17.2057 15.2851 17.2441 15.29 17.2824 15.2873C17.3207 15.2845 17.3581 15.2743 17.3925 15.2571C17.4268 15.24 17.4574 15.2162 17.4826 15.1872C17.5077 15.1582 17.5269 15.1245 17.5391 15.0881C17.5512 15.0517 17.5561 15.0132 17.5534 14.9749C17.5507 14.9366 17.5404 14.8993 17.5233 14.8649C17.5061 14.8306 17.4823 14.7999 17.4533 14.7748C17.4243 14.7496 17.3907 14.7304 17.3542 14.7183H17.3542Z" fill="#5B476B"/>
<path d="M17.3542 15.8879L15.1617 15.1571C15.0882 15.1326 15.0079 15.1383 14.9385 15.1729C14.8692 15.2076 14.8164 15.2684 14.7919 15.342C14.7673 15.4155 14.773 15.4958 14.8077 15.5652C14.8424 15.6345 14.9032 15.6873 14.9767 15.7118L17.1692 16.4426C17.2057 16.4548 17.2441 16.4596 17.2824 16.4569C17.3207 16.4542 17.3581 16.444 17.3925 16.4268C17.4268 16.4097 17.4574 16.3859 17.4826 16.3569C17.5077 16.3279 17.5269 16.2942 17.5391 16.2578C17.5512 16.2214 17.5561 16.1829 17.5534 16.1446C17.5507 16.1063 17.5404 16.0689 17.5233 16.0346C17.5061 16.0002 17.4823 15.9696 17.4533 15.9445C17.4243 15.9193 17.3907 15.9001 17.3542 15.8879H17.3542Z" fill="#5B476B"/>
<path d="M6.15291 12.146H5.86057C5.78304 12.146 5.70868 12.1768 5.65386 12.2316C5.59904 12.2864 5.56824 12.3608 5.56824 12.4383C5.56824 12.5159 5.59904 12.5902 5.65386 12.645C5.70868 12.6999 5.78304 12.7307 5.86057 12.7307H6.15291C6.23044 12.7307 6.3048 12.6999 6.35962 12.645C6.41445 12.5902 6.44525 12.5159 6.44525 12.4383C6.44525 12.3608 6.41445 12.2864 6.35962 12.2316C6.3048 12.1768 6.23044 12.146 6.15291 12.146Z" fill="#5B476B"/>
<path d="M6.15291 13.3154H5.86057C5.78304 13.3154 5.70868 13.3462 5.65386 13.4011C5.59904 13.4559 5.56824 13.5302 5.56824 13.6078C5.56824 13.6853 5.59904 13.7597 5.65386 13.8145C5.70868 13.8693 5.78304 13.9001 5.86057 13.9001H6.15291C6.23044 13.9001 6.3048 13.8693 6.35962 13.8145C6.41445 13.7597 6.44525 13.6853 6.44525 13.6078C6.44525 13.5302 6.41445 13.4559 6.35962 13.4011C6.3048 13.3462 6.23044 13.3154 6.15291 13.3154Z" fill="#5B476B"/>
<path d="M6.15291 14.4846H5.86057C5.78304 14.4846 5.70868 14.5154 5.65386 14.5702C5.59904 14.6251 5.56824 14.6994 5.56824 14.777C5.56824 14.8545 5.59904 14.9288 5.65386 14.9837C5.70868 15.0385 5.78304 15.0693 5.86057 15.0693H6.15291C6.23044 15.0693 6.3048 15.0385 6.35962 14.9837C6.41445 14.9288 6.44525 14.8545 6.44525 14.777C6.44525 14.6994 6.41445 14.6251 6.35962 14.5702C6.3048 14.5154 6.23044 14.4846 6.15291 14.4846Z" fill="#5B476B"/>
<path d="M6.15291 15.6538H5.86057C5.78304 15.6538 5.70868 15.6846 5.65386 15.7394C5.59904 15.7943 5.56824 15.8686 5.56824 15.9461C5.56824 16.0237 5.59904 16.098 5.65386 16.1529C5.70868 16.2077 5.78304 16.2385 5.86057 16.2385H6.15291C6.23044 16.2385 6.3048 16.2077 6.35962 16.1529C6.41445 16.098 6.44525 16.0237 6.44525 15.9461C6.44525 15.8686 6.41445 15.7943 6.35962 15.7394C6.3048 15.6846 6.23044 15.6538 6.15291 15.6538Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

+6
View File
@@ -0,0 +1,6 @@
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M28 52C41.2548 52 52 41.2548 52 28C52 14.7452 41.2548 4 28 4C14.7452 4 4 14.7452 4 28C4 41.2548 14.7452 52 28 52Z" fill="#F4E5FF"/>
<path d="M52 32.2C52.0002 29.7747 51.4192 27.3847 50.3057 25.2302C49.1922 23.0757 47.5785 21.2194 45.6 19.8168V14.6C45.5983 13.1153 45.0078 11.6919 43.9579 10.6421C42.9081 9.59224 41.4847 9.00169 40 9H33.6C32.1153 9.00169 30.6919 9.59224 29.6421 10.6421C28.5922 11.6919 28.0017 13.1153 28 14.6V17H18.4V17.08L4.71201 18.6C4.51544 18.6217 4.33389 18.7155 4.2024 18.8633C4.07092 19.011 3.99881 19.2022 4.00001 19.4V24.2C4 24.3969 4.07264 24.587 4.20401 24.7337C4.33538 24.8804 4.51626 24.9735 4.71201 24.9952L18.4 26.52V26.6H22.6864C21.9684 28.3797 21.5996 30.2809 21.6 32.2C21.5977 35.7589 22.8504 39.2046 25.1376 41.9312L23.2 43.8688V47.4H26.7312L28.944 45.1872C31.3091 46.6341 34.0278 47.3998 36.8004 47.3998C39.573 47.3998 42.2917 46.6341 44.6568 45.1872L46.8688 47.4H50.4V43.8688L48.4624 41.9312C50.7496 39.2046 52.0023 35.7589 52 32.2ZM29.6 14.6C29.6013 13.5395 30.0231 12.5228 30.773 11.773C31.5229 11.0231 32.5395 10.6013 33.6 10.6H40C41.0605 10.6013 42.0772 11.0231 42.827 11.773C43.5769 12.5228 43.9987 13.5395 44 14.6V18.8184C43.964 18.7992 43.924 18.7856 43.8888 18.7672C43.444 18.5352 42.9832 18.3219 42.5064 18.1272C42.4696 18.1128 42.4376 18.0928 42.4008 18.0784V14.6C42.4008 13.9635 42.1479 13.353 41.6979 12.9029C41.2478 12.4529 40.6373 12.2 40.0008 12.2H33.6C32.9635 12.2 32.353 12.4529 31.903 12.9029C31.4529 13.353 31.2 13.9635 31.2 14.6V17H29.6V14.6ZM40.1448 17.3888C39.9181 17.3355 39.6907 17.2888 39.4624 17.2488C39.2488 17.2088 39.0352 17.1688 38.8224 17.1392C38.4789 17.0917 38.1347 17.0565 37.7896 17.0336C37.6296 17.024 37.4696 17.0216 37.3096 17.0176C37.1496 17.0136 36.9704 17 36.8 17H32.8V14.6C32.8 14.3878 32.8843 14.1843 33.0343 14.0343C33.1843 13.8843 33.3878 13.8 33.6 13.8H40C40.2122 13.8 40.4157 13.8843 40.5657 14.0343C40.7157 14.1843 40.8 14.3878 40.8 14.6V17.5472C40.7448 17.532 40.6896 17.5216 40.6344 17.5072C40.4712 17.4632 40.3088 17.4272 40.1448 17.3888ZM5.60001 23.48V20.12L18.4 18.6976V24.9104L5.60001 23.48ZM20 18.6H30.0272C29.449 18.8827 28.8902 19.2034 28.3544 19.56C28.0877 19.7376 27.8288 19.9243 27.5776 20.12C27.4976 20.184 27.4176 20.2528 27.3376 20.3176C27.1704 20.452 27.0024 20.5856 26.8408 20.7264C26.748 20.8064 26.66 20.8928 26.5688 20.976C26.424 21.1088 26.2792 21.2408 26.14 21.376C26.0464 21.468 25.9576 21.5648 25.8672 21.6592C25.7368 21.7952 25.6072 21.9304 25.4816 22.0712C25.3912 22.1728 25.3048 22.2768 25.2176 22.3808C25.0992 22.5216 24.9776 22.6624 24.8672 22.808C24.7824 22.9168 24.7008 23.028 24.6184 23.1384C24.5096 23.2848 24.4024 23.432 24.2984 23.5832C24.2184 23.6984 24.1432 23.8144 24.0672 23.932C23.968 24.0848 23.8712 24.2384 23.7776 24.3944C23.7056 24.5152 23.6352 24.6344 23.5664 24.76C23.5216 24.84 23.4736 24.9152 23.4304 24.9952H20V18.6ZM26.0688 45.8H24.8V44.5312L26.2304 43.1008C26.6631 43.5171 27.1199 43.9077 27.5984 44.2704L26.0688 45.8ZM29.212 43.48L26.4 40.6688L26.272 40.7968C24.6828 38.8561 23.6623 36.5131 23.3236 34.0277C22.985 31.5423 23.3414 29.0117 24.3534 26.7166C25.3654 24.4214 26.9935 22.4515 29.0569 21.0253C31.1203 19.5991 33.5385 18.7723 36.0432 18.6368H36.0488L36.3344 18.6208C38.0349 18.5384 39.7345 18.7994 41.332 19.388C43.3895 20.1119 45.2422 21.3209 46.7334 22.9127C48.2245 24.5045 49.3102 26.4321 49.8985 28.5324C50.4867 30.6327 50.5602 32.8438 50.1128 34.9785C49.6653 37.1132 48.7101 39.1087 47.328 40.796L47.2 40.668L44.388 43.48C42.1461 44.9916 39.5039 45.7992 36.8 45.7992C34.0961 45.7992 31.4539 44.9916 29.212 43.48ZM48.8 45.8H47.5312L46 44.2704C46.4785 43.9077 46.9353 43.5171 47.368 43.1008L48.8 44.5312V45.8Z" fill="#5B476B"/>
<path d="M48.7998 32.1992C48.7964 29.0177 47.531 25.9674 45.2813 23.7177C43.0316 21.468 39.9814 20.2026 36.7998 20.1992C36.5446 20.1992 36.2934 20.216 36.043 20.2344L35.9438 20.2424C34.1601 20.3657 32.4269 20.8879 30.872 21.7704C29.317 22.653 27.9801 23.8734 26.9598 25.3416L27.6158 25.7992L26.9598 25.3416C25.8811 26.887 25.1816 28.6647 24.9179 30.5307C24.6542 32.3967 24.8336 34.2986 25.4418 36.0824C26.05 37.8662 27.0697 39.4816 28.4184 40.7979C29.7671 42.1142 31.4069 43.0943 33.2049 43.6588C35.003 44.2234 36.9087 44.3566 38.7678 44.0475C40.6268 43.7384 42.387 42.9959 43.9056 41.8799C45.4242 40.7639 46.6587 39.306 47.509 37.6241C48.3593 35.9423 48.8015 34.0838 48.7998 32.1992ZM26.3998 32.1992C26.3973 30.0729 27.051 27.9977 28.2718 26.2568C29.1561 24.9847 30.3146 23.9272 31.6619 23.1624C33.0092 22.3976 34.511 21.9448 36.0566 21.8376L36.159 21.8304C36.3718 21.8144 36.5838 21.7992 36.799 21.7992C38.856 21.7991 40.8668 22.4089 42.5771 23.5515C44.2875 24.6942 45.6206 26.3184 46.4079 28.2188C47.1952 30.1191 47.4013 32.2102 47.0001 34.2277C46.5989 36.2451 45.6084 38.0983 44.154 39.5528C42.6996 41.0074 40.8465 41.998 38.829 42.3993C36.8116 42.8007 34.7205 42.5948 32.8201 41.8076C30.9197 41.0205 29.2954 39.6875 28.1526 37.9772C27.0098 36.2669 26.3998 34.2562 26.3998 32.1992Z" fill="#5B476B"/>
<path d="M40.7998 32.1992C40.7998 31.4081 40.5652 30.6347 40.1257 29.9769C39.6862 29.3191 39.0614 28.8065 38.3305 28.5037C37.5996 28.201 36.7954 28.1217 36.0194 28.2761C35.2435 28.4304 34.5308 28.8114 33.9714 29.3708C33.412 29.9302 33.031 30.6429 32.8767 31.4189C32.7223 32.1948 32.8015 32.999 33.1043 33.73C33.407 34.4609 33.9197 35.0856 34.5775 35.5251C35.2353 35.9646 36.0087 36.1992 36.7998 36.1992C37.8603 36.1979 38.877 35.7761 39.6268 35.0262C40.3767 34.2764 40.7985 33.2597 40.7998 32.1992ZM34.3998 32.1992C34.3998 31.7245 34.5406 31.2605 34.8043 30.8659C35.068 30.4712 35.4428 30.1636 35.8814 29.9819C36.3199 29.8003 36.8025 29.7527 37.268 29.8453C37.7336 29.9379 38.1612 30.1665 38.4969 30.5022C38.8325 30.8378 39.0611 31.2654 39.1537 31.731C39.2463 32.1966 39.1988 32.6791 39.0171 33.1177C38.8355 33.5562 38.5279 33.931 38.1332 34.1947C37.7385 34.4585 37.2745 34.5992 36.7998 34.5992C36.1633 34.5992 35.5528 34.3464 35.1028 33.8963C34.6527 33.4462 34.3998 32.8357 34.3998 32.1992Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

+15
View File
@@ -0,0 +1,15 @@
<svg width="57" height="56" viewBox="0 0 57 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.5 52C41.7548 52 52.5 41.2548 52.5 28C52.5 14.7452 41.7548 4 28.5 4C15.2452 4 4.5 14.7452 4.5 28C4.5 41.2548 15.2452 52 28.5 52Z" fill="#F4E5FF"/>
<path d="M36.7783 9.06806C34.5557 7.73447 31.6153 7 28.4986 7C25.382 7 22.4415 7.73447 20.2189 9.06806C17.8844 10.4688 16.5986 12.3694 16.5986 14.42V41.58C16.5986 43.6307 17.8844 45.5314 20.2189 46.9321C22.4415 48.2656 25.382 49 28.4986 49C31.6153 49 34.5557 48.2656 36.7783 46.9321C39.1129 45.5314 40.3986 43.6307 40.3986 41.58V14.42C40.3986 12.3694 39.1129 10.4688 36.7783 9.06806ZM36.058 45.7316C34.0499 46.9365 31.3652 47.6 28.4986 47.6C25.632 47.6 22.9474 46.9365 20.9392 45.7316C19.0541 44.6006 18.0113 43.1367 17.9992 41.6069C18.6369 42.33 19.3863 42.9461 20.2189 43.4319C22.4415 44.7655 25.382 45.5 28.4986 45.5C31.6153 45.5 34.5557 44.7655 36.7783 43.4319C37.611 42.9461 38.3604 42.33 38.998 41.6069C38.986 43.1367 37.9432 44.6006 36.058 45.7316ZM38.9986 38.08C38.9986 39.6194 37.9543 41.0938 36.0581 42.2315C34.0499 43.4364 31.3652 44.1 28.4986 44.1C25.632 44.1 22.9474 43.4364 20.9392 42.2315C19.0429 41.0938 17.9986 39.6194 17.9986 38.08V24.1062C18.6364 24.8296 19.386 25.446 20.2189 25.9319C22.4415 27.2655 25.382 28 28.4986 28C31.6153 28 34.5557 27.2655 36.7783 25.9319C37.6113 25.446 38.3609 24.8296 38.9986 24.1062V38.08ZM38.9986 20.58C38.9986 22.1194 37.9543 23.5938 36.0581 24.7315C34.0499 25.9364 31.3652 26.6 28.4986 26.6C25.632 26.6 22.9474 25.9364 20.9392 24.7315C19.0429 23.5938 17.9986 22.1194 17.9986 20.58V17.9462C18.6364 18.6696 19.386 19.2859 20.2189 19.7719C22.4414 21.1054 25.382 21.8399 28.4986 21.8399C31.6153 21.8399 34.5558 21.1054 36.7783 19.7719C37.6112 19.2859 38.3609 18.6696 38.9986 17.9462V20.58ZM36.0581 18.5715C34.0499 19.7764 31.3652 20.44 28.4986 20.44C25.632 20.44 22.9474 19.7764 20.9392 18.5715C19.0429 17.4338 17.9986 15.9595 17.9986 14.42C17.9986 12.8805 19.0429 11.4062 20.9392 10.2685C22.9474 9.0636 25.632 8.4 28.4986 8.4C31.3652 8.4 34.0499 9.0636 36.0581 10.2685C37.9543 11.4062 38.9986 12.8806 38.9986 14.42C38.9986 15.9594 37.9543 17.4338 36.0581 18.5715Z" fill="#5B476B"/>
<path d="M28.5014 11.2734C25.3088 11.2734 22.9014 12.6276 22.9014 14.4234C22.9014 16.2193 25.3088 17.5734 28.5014 17.5734C31.6939 17.5734 34.1014 16.2192 34.1014 14.4234C34.1014 12.6277 31.6939 11.2734 28.5014 11.2734ZM28.5014 16.1734C25.8992 16.1734 24.3014 15.1542 24.3014 14.4234C24.3014 13.6927 25.8992 12.6734 28.5014 12.6734C31.1035 12.6734 32.7014 13.6926 32.7014 14.4234C32.7014 15.1542 31.1035 16.1734 28.5014 16.1734Z" fill="#5B476B"/>
<path d="M27.8027 41.2988H29.2027V42.6988H27.8027V41.2988Z" fill="#5B476B"/>
<path d="M30.6025 41.2988H32.0025V42.6988H30.6025V41.2988Z" fill="#5B476B"/>
<path d="M25 41.2988H26.4V42.6988H25V41.2988Z" fill="#5B476B"/>
<path d="M45.2979 39.8953C44.9267 39.8949 44.5708 39.7472 44.3084 39.4848C44.0459 39.2223 43.8983 38.8665 43.8979 38.4953H42.4979C42.4979 39.0491 42.6621 39.5905 42.9697 40.0509C43.2774 40.5114 43.7147 40.8703 44.2263 41.0822C44.738 41.2941 45.301 41.3496 45.8441 41.2415C46.3873 41.1335 46.8862 40.8668 47.2778 40.4752C47.6693 40.0836 47.936 39.5847 48.0441 39.0416C48.1521 38.4984 48.0966 37.9354 47.8847 37.4238C47.6728 36.9122 47.3139 36.4749 46.8535 36.1672C46.393 35.8595 45.8516 35.6953 45.2979 35.6953H41.7979V37.0953H45.2979C45.6692 37.0953 46.0253 37.2428 46.2878 37.5054C46.5504 37.7679 46.6979 38.124 46.6979 38.4953C46.6979 38.8666 46.5504 39.2227 46.2878 39.4853C46.0253 39.7478 45.6692 39.8953 45.2979 39.8953Z" fill="#5B476B"/>
<path d="M46.6979 25.8984C45.9555 25.8993 45.2438 26.1945 44.7189 26.7195C44.194 27.2444 43.8987 27.9561 43.8979 28.6984H45.2979C45.2979 28.4215 45.38 28.1509 45.5338 27.9206C45.6876 27.6904 45.9063 27.511 46.1621 27.405C46.4179 27.299 46.6994 27.2713 46.971 27.3253C47.2426 27.3794 47.492 27.5127 47.6878 27.7085C47.8836 27.9043 48.0169 28.1537 48.071 28.4253C48.125 28.6969 48.0972 28.9784 47.9913 29.2342C47.8853 29.49 47.7059 29.7087 47.4757 29.8625C47.2454 30.0163 46.9747 30.0984 46.6979 30.0984H41.7979V31.4984H46.6979C47.4405 31.4984 48.1526 31.2034 48.6778 30.6783C49.2029 30.1532 49.4979 29.441 49.4979 28.6984C49.4979 27.9558 49.2029 27.2436 48.6778 26.7185C48.1526 26.1934 47.4405 25.8984 46.6979 25.8984Z" fill="#5B476B"/>
<path d="M41.7979 32.9004H49.4979V34.3004H41.7979V32.9004Z" fill="#5B476B"/>
<path d="M11.7009 37.0953H15.2009V35.6953H11.7009C11.1471 35.6953 10.6057 35.8595 10.1453 36.1672C9.68483 36.4749 9.32594 36.9122 9.11402 37.4238C8.90209 37.9354 8.84664 38.4984 8.95468 39.0416C9.06272 39.5847 9.32939 40.0836 9.72098 40.4752C10.1126 40.8668 10.6115 41.1335 11.1546 41.2415C11.6978 41.3496 12.2608 41.2941 12.7724 41.0822C13.284 40.8703 13.7213 40.5114 14.029 40.0509C14.3367 39.5905 14.5009 39.0491 14.5009 38.4953H13.1009C13.1009 38.7722 13.0188 39.0429 12.8649 39.2731C12.7111 39.5033 12.4925 39.6828 12.2366 39.7887C11.9808 39.8947 11.6993 39.9224 11.4278 39.8684C11.1562 39.8144 10.9067 39.6811 10.7109 39.4853C10.5151 39.2895 10.3818 39.04 10.3278 38.7684C10.2738 38.4969 10.3015 38.2154 10.4074 37.9596C10.5134 37.7037 10.6929 37.4851 10.9231 37.3313C11.1533 37.1774 11.424 37.0953 11.7009 37.0953Z" fill="#5B476B"/>
<path d="M10.3 31.4984H15.2V30.0984H10.3C10.0231 30.0984 9.75243 30.0163 9.5222 29.8625C9.29197 29.7087 9.11253 29.49 9.00657 29.2342C8.90061 28.9784 8.87288 28.6969 8.9269 28.4253C8.98092 28.1537 9.11426 27.9043 9.31005 27.7085C9.50585 27.5127 9.7553 27.3794 10.0269 27.3253C10.2984 27.2713 10.5799 27.299 10.8358 27.405C11.0916 27.511 11.3102 27.6904 11.4641 27.9206C11.6179 28.1509 11.7 28.4215 11.7 28.6984H13.1C13.1 28.1447 12.9358 27.6033 12.6281 27.1428C12.3204 26.6824 11.8831 26.3235 11.3715 26.1116C10.8599 25.8997 10.2969 25.8442 9.75375 25.9522C9.2106 26.0603 8.71169 26.327 8.3201 26.7185C7.92852 27.1101 7.66184 27.609 7.5538 28.1522C7.44576 28.6953 7.50121 29.2583 7.71314 29.77C7.92506 30.2816 8.28395 30.7189 8.7444 31.0266C9.20486 31.3342 9.74621 31.4984 10.3 31.4984Z" fill="#5B476B"/>
<path d="M7.5 32.9004H15.2V34.3004H7.5V32.9004Z" fill="#5B476B"/>
<path d="M30.3789 23.1336C29.159 23.5376 27.8415 23.5376 26.6216 23.1336C26.4455 23.0749 26.2532 23.0885 26.0872 23.1716C25.9211 23.2546 25.7948 23.4002 25.7361 23.5763C25.6774 23.7525 25.6911 23.9447 25.7741 24.1108C25.8571 24.2768 26.0027 24.4031 26.1789 24.4618C27.6862 24.9608 29.3143 24.9608 30.8216 24.4618C30.9978 24.4031 31.1434 24.2768 31.2264 24.1108C31.3094 23.9447 31.3231 23.7525 31.2644 23.5763C31.2057 23.4002 31.0794 23.2546 30.9133 23.1716C30.7473 23.0885 30.555 23.0749 30.3789 23.1336Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

+4
View File
@@ -0,0 +1,4 @@
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4423 6.22123C13.9824 6.40397 13.5048 6.49963 13.008 6.48644C12.9137 6.48512 12.8774 6.46005 12.8721 6.36043C12.7949 5.42032 13.0469 4.56005 13.5002 3.74991C14.2747 2.36647 15.453 1.51213 16.9842 1.13675C17.1152 1.10377 17.25 1.08637 17.3924 1.068C17.4551 1.05991 17.5192 1.05163 17.5852 1.04175C17.5875 1.10469 17.5904 1.16419 17.5932 1.22162C17.5974 1.30865 17.6014 1.39093 17.603 1.47321C17.636 3.17001 16.5395 5.38866 14.4423 6.22123ZM22.379 18.5389C22.4034 18.4672 22.4275 18.3965 22.4518 18.3278C20.598 17.4055 19.4673 15.9845 19.3267 13.8839C19.1875 11.7847 20.1461 10.2343 21.8297 9.06068C21.8181 9.04267 21.8014 9.01852 21.7854 8.99544L21.7789 8.98613C21.1113 8.04933 20.2273 7.4061 19.1407 7.04259C18.3741 6.78596 17.5864 6.68106 16.7789 6.74638C16.2392 6.78926 15.722 6.94099 15.2134 7.12638C14.7173 7.31044 14.2225 7.49846 13.7283 7.68714C13.2817 7.85801 12.8377 7.85801 12.3917 7.69044C11.9075 7.50901 11.4239 7.32627 10.9417 7.14155C10.0253 6.7886 9.09049 6.69624 8.12928 6.92252C6.53143 7.29658 5.31688 8.2037 4.45594 9.58846C3.76983 10.6902 3.47164 11.9127 3.39577 13.1965C3.33112 14.2672 3.43667 15.3234 3.65702 16.3711C4.1683 18.8074 5.22716 20.9825 6.80455 22.9063C7.13771 23.3113 7.49396 23.694 7.91817 24.008C8.2599 24.2607 8.62803 24.4566 9.04893 24.5351C9.53119 24.6262 10.0049 24.5642 10.4614 24.4111C10.736 24.3187 11.0044 24.2086 11.2729 24.0985C11.3895 24.0507 11.5061 24.0029 11.6232 23.9565C12.6952 23.533 13.7791 23.4809 14.869 23.8767C15.0865 23.9558 15.2999 24.047 15.5132 24.1382C15.6292 24.1878 15.7452 24.2374 15.8619 24.2851C16.3191 24.4711 16.7934 24.5609 17.2875 24.545C17.9453 24.5219 18.514 24.2693 19.0081 23.851C19.2581 23.6405 19.5002 23.4136 19.7081 23.1629C20.7847 21.8751 21.6721 20.4699 22.2566 18.8872C22.3 18.7711 22.34 18.6537 22.379 18.5389Z" fill="black"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

+10
View File
@@ -0,0 +1,10 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.0005 29.44C23.4233 29.44 29.4405 23.4227 29.4405 16C29.4405 8.57728 23.4233 2.55998 16.0005 2.55998C8.57784 2.55998 2.56055 8.57728 2.56055 16C2.56055 23.4227 8.57784 29.44 16.0005 29.44Z" fill="#F4E5FF"/>
<path d="M22.8673 5.71428H9.62357C9.04378 5.71428 8.57227 6.1858 8.57227 6.76558C8.57227 9.27268 8.57227 21.4853 8.57227 23.6117C8.57227 24.1915 9.04378 24.663 9.62357 24.663H11.179V25.4781C11.179 25.6085 11.2848 25.7143 11.4152 25.7143H13.277C13.4074 25.7143 13.5132 25.6085 13.5132 25.4781V24.663H18.9777V25.4781C18.9777 25.6085 19.0835 25.7143 19.2139 25.7143H21.0756C21.2061 25.7143 21.3119 25.6085 21.3119 25.4781V24.663H22.8673C23.4471 24.663 23.9186 24.1915 23.9186 23.6117C23.9186 21.4924 23.9186 9.29086 23.9186 6.76558C23.9186 6.1858 23.4471 5.71428 22.8673 5.71428ZM9.04471 6.76558C9.04471 6.44632 9.3043 6.18672 9.62357 6.18672H12.68V9.16993H9.04471V6.76558ZM13.0408 25.2418H11.6514V24.663H13.0408V25.2418ZM20.8394 25.2418H19.4501V24.663H20.8394V25.2418H20.8394ZM23.4462 23.6117C23.4462 23.9309 23.1866 24.1905 22.8673 24.1905C18.7571 24.1905 13.6458 24.1905 9.62357 24.1905C9.3043 24.1905 9.0447 23.9309 9.0447 23.6117V9.64237H23.4462V23.6117ZM23.4462 9.16993H13.1524V6.18672H22.8673C23.1866 6.18672 23.4462 6.44632 23.4462 6.76558V9.16993H23.4462Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.285714"/>
<path d="M16.2458 22.0102C19.0525 22.0102 21.3357 19.7252 21.3357 16.9164C21.3357 14.1079 19.0525 11.8229 16.2458 11.8229C13.4373 11.8229 11.1523 14.1079 11.1523 16.9164C11.1523 19.7252 13.4373 22.0102 16.2458 22.0102ZM16.2458 12.2953C18.792 12.2953 20.8632 14.3684 20.8632 16.9164C20.8632 19.4647 18.792 21.5378 16.2458 21.5378C13.6979 21.5378 11.6248 19.4647 11.6248 16.9164C11.6248 14.3684 13.6979 12.2953 16.2458 12.2953Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.285714"/>
<path d="M16.2455 20.5879C18.2606 20.5879 19.9003 18.9523 19.912 16.9377C19.9124 16.9327 19.9126 16.928 19.9127 16.9231C19.9127 16.9208 19.913 16.9186 19.913 16.9163C19.913 14.8919 18.2678 13.2451 16.2455 13.2451C14.221 13.2451 12.5742 14.8919 12.5742 16.9163C12.5742 18.9408 14.221 20.5879 16.2455 20.5879ZM16.2455 20.1155C15.2087 20.1155 14.2884 19.6175 13.7035 18.8506C15.5021 18.7176 16.7673 17.5232 16.8274 17.4654C17.7717 16.5216 19.0201 16.903 19.433 17.0675C19.3533 18.7611 17.9563 20.1155 16.2455 20.1155ZM13.0467 16.9163C13.0467 15.1524 14.4815 13.7175 16.2455 13.7175C17.8888 13.7175 19.2451 14.9661 19.4204 16.5655C18.7992 16.3656 17.5007 16.124 16.4968 17.128C16.4833 17.1409 15.1792 18.3733 13.4081 18.3877C13.1785 17.9467 13.0467 17.447 13.0467 16.9163Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.285714"/>
<path d="M21.524 6.62721C20.9442 6.62721 20.4727 7.09873 20.4727 7.67821C20.4727 8.25799 20.9442 8.72951 21.524 8.72951C22.1034 8.72951 22.575 8.25799 22.575 7.67821C22.575 7.09873 22.1034 6.62721 21.524 6.62721ZM21.524 8.25707C21.2047 8.25707 20.9451 7.99747 20.9451 7.67821C20.9451 7.35925 21.2047 7.09965 21.524 7.09965C21.8429 7.09965 22.1025 7.35925 22.1025 7.67821C22.1025 7.99747 21.8429 8.25707 21.524 8.25707Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.285714"/>
<path d="M14.9001 6.85329H14.289C14.1585 6.85329 14.0527 6.95909 14.0527 7.08951C14.0527 7.21992 14.1585 7.32573 14.289 7.32573H14.9001C15.0305 7.32573 15.1363 7.21992 15.1363 7.08951C15.1363 6.95909 15.0305 6.85329 14.9001 6.85329Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.285714"/>
<path d="M16.779 6.85329H16.1679C16.0374 6.85329 15.9316 6.95909 15.9316 7.08951C15.9316 7.21992 16.0374 7.32573 16.1679 7.32573H16.779C16.9094 7.32573 17.0152 7.21992 17.0152 7.08951C17.0152 6.95909 16.9094 6.85329 16.779 6.85329Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.285714"/>
<path d="M18.656 6.85329H18.0448C17.9144 6.85329 17.8086 6.95909 17.8086 7.08951C17.8086 7.21992 17.9144 7.32573 18.0448 7.32573H18.656C18.7864 7.32573 18.8922 7.21992 18.8922 7.08951C18.8922 6.95909 18.7864 6.85329 18.656 6.85329Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.285714"/>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

+10
View File
@@ -0,0 +1,10 @@
<svg width="65" height="64" viewBox="0 0 65 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.3331 58.8801C47.1785 58.8801 59.2131 46.8455 59.2131 32.0001C59.2131 17.1547 47.1785 5.12012 32.3331 5.12012C17.4877 5.12012 5.45312 17.1547 5.45312 32.0001C5.45312 46.8455 17.4877 58.8801 32.3331 58.8801Z" fill="#F4E5FF"/>
<path d="M46.0656 11.4285H19.5782C18.4186 11.4285 17.4756 12.3715 17.4756 13.5311C17.4756 18.5453 17.4756 42.9705 17.4756 47.2233C17.4756 48.3828 18.4186 49.3259 19.5782 49.3259H22.689V50.956C22.689 51.2169 22.9007 51.4285 23.1615 51.4285H26.885C27.1459 51.4285 27.3575 51.2169 27.3575 50.956V49.3259H38.2864V50.956C38.2864 51.2169 38.498 51.4285 38.7588 51.4285H42.4823C42.7432 51.4285 42.9548 51.2169 42.9548 50.956V49.3259H46.0656C47.2252 49.3259 48.1682 48.3828 48.1682 47.2233C48.1682 42.9847 48.1682 18.5816 48.1682 13.5311C48.1682 12.3715 47.2252 11.4285 46.0656 11.4285ZM18.4205 13.5311C18.4205 12.8925 18.9397 12.3733 19.5782 12.3733H25.691V18.3398H18.4205V13.5311ZM26.4126 50.4836H23.6339V49.3259H26.4126V50.4836ZM42.0099 50.4836H39.2312V49.3259H42.0099V50.4836H42.0099ZM47.2234 47.2233C47.2234 47.8618 46.7042 48.381 46.0656 48.381C37.8452 48.381 27.6226 48.381 19.5782 48.381C18.9397 48.381 18.4205 47.8618 18.4205 47.2233V19.2846H47.2234V47.2233ZM47.2234 18.3398H26.6359V12.3733H46.0656C46.7042 12.3733 47.2234 12.8925 47.2234 13.5311V18.3398H47.2234Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.5"/>
<path d="M32.8247 44.0201C38.438 44.0201 43.0043 39.4501 43.0043 33.8325C43.0043 28.2155 38.438 23.6455 32.8247 23.6455C27.2077 23.6455 22.6377 28.2155 22.6377 33.8325C22.6377 39.4501 27.2077 44.0201 32.8247 44.0201ZM32.8247 24.5904C37.917 24.5904 42.0595 28.7366 42.0595 33.8325C42.0595 38.9291 37.917 43.0753 32.8247 43.0753C27.7287 43.0753 23.5826 38.9291 23.5826 33.8325C23.5826 28.7366 27.7287 24.5904 32.8247 24.5904Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.5"/>
<path d="M32.8249 41.1756C36.8552 41.1756 40.1346 37.9044 40.1579 33.8753C40.1588 33.8653 40.1591 33.8559 40.1594 33.846C40.1594 33.8414 40.1601 33.837 40.1601 33.8325C40.1601 29.7835 36.8696 26.49 32.8249 26.49C28.776 26.49 25.4824 29.7835 25.4824 33.8325C25.4824 37.8815 28.776 41.1756 32.8249 41.1756ZM32.8249 40.2308C30.7514 40.2308 28.9108 39.2348 27.741 37.7009C31.3382 37.435 33.8686 35.0462 33.9888 34.9306C35.8774 33.043 38.3741 33.8058 39.1999 34.1349C39.0406 37.522 36.2466 40.2308 32.8249 40.2308ZM26.4273 33.8325C26.4273 30.3046 29.297 27.4349 32.8249 27.4349C36.1115 27.4349 38.8243 29.9321 39.1747 33.1308C37.9324 32.731 35.3355 32.2478 33.3275 34.2557C33.3005 34.2816 30.6924 36.7464 27.1501 36.7752C26.6909 35.8932 26.4273 34.8938 26.4273 33.8325Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.5"/>
<path d="M43.379 13.2542C42.2194 13.2542 41.2764 14.1972 41.2764 15.3561C41.2764 16.5157 42.2194 17.4587 43.379 17.4587C44.5379 17.4587 45.481 16.5157 45.481 15.3561C45.481 14.1972 44.5379 13.2542 43.379 13.2542ZM43.379 16.5139C42.7405 16.5139 42.2212 15.9947 42.2212 15.3561C42.2212 14.7182 42.7405 14.199 43.379 14.199C44.0169 14.199 44.5361 14.7182 44.5361 15.3561C44.5361 15.9947 44.0169 16.5139 43.379 16.5139Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.5"/>
<path d="M30.1352 13.7063H28.9129C28.652 13.7063 28.4404 13.9179 28.4404 14.1787C28.4404 14.4396 28.652 14.6512 28.9129 14.6512H30.1352C30.396 14.6512 30.6076 14.4396 30.6076 14.1787C30.6076 13.9179 30.396 13.7063 30.1352 13.7063Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.5"/>
<path d="M33.892 13.7063H32.6697C32.4089 13.7063 32.1973 13.9179 32.1973 14.1787C32.1973 14.4396 32.4089 14.6512 32.6697 14.6512H33.892C34.1529 14.6512 34.3645 14.4396 34.3645 14.1787C34.3645 13.9179 34.1529 13.7063 33.892 13.7063Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.5"/>
<path d="M37.6459 13.7063H36.4236C36.1628 13.7063 35.9512 13.9179 35.9512 14.1787C35.9512 14.4396 36.1628 14.6512 36.4236 14.6512H37.6459C37.9068 14.6512 38.1184 14.4396 38.1184 14.1787C38.1184 13.9179 37.9068 13.7063 37.6459 13.7063Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.5"/>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

+3
View File
@@ -0,0 +1,3 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.6209 6.11812C15.8808 5.93813 16.24 5.96384 16.4714 6.19526L16.5485 6.28759C16.7285 6.54742 16.7028 6.90665 16.4714 7.13807L8.27601 15.3333H25.3333L25.4532 15.3441C25.7642 15.4005 26 15.6727 26 16C26 16.3682 25.7015 16.6667 25.3333 16.6667H8.27601L16.4714 24.8619L16.5485 24.9543C16.7285 25.2141 16.7028 25.5733 16.4714 25.8047C16.2111 26.0651 15.7889 26.0651 15.5286 25.8047L6.19526 16.4714C6.16704 16.4432 6.14134 16.4124 6.11852 16.3795L6.11812 16.3791C6.09091 16.3398 6.0684 16.2982 6.05059 16.2552C6.02054 16.1826 6.00388 16.1057 6.0006 16.0284C6.0002 16.019 6 16.0095 6 16C6 15.909 6.01821 15.8223 6.05119 15.7434C6.08251 15.6682 6.12819 15.5976 6.18825 15.5357C6.19083 15.5331 6.19343 15.5304 6.19605 15.5278M6.19605 15.5278L15.5286 6.19526L15.6209 6.11812" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 936 B

+11
View File
@@ -0,0 +1,11 @@
<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.4998 44.1598C35.6339 44.1598 44.6598 35.1339 44.6598 23.9998C44.6598 12.8658 35.6339 3.83984 24.4998 3.83984C13.3658 3.83984 4.33984 12.8658 4.33984 23.9998C4.33984 35.1339 13.3658 44.1598 24.4998 44.1598Z" fill="#F4E5FF"/>
<path d="M22.7121 8.72559C20.0449 8.72559 17.4376 9.5165 15.2199 10.9983C13.0022 12.4801 11.2738 14.5863 10.2531 17.0504C9.23241 19.5146 8.96535 22.226 9.48569 24.842C10.006 27.4579 11.2904 29.8608 13.1764 31.7468C15.0624 33.6327 17.4652 34.9171 20.0812 35.4375C22.6971 35.9578 25.4086 35.6907 27.8727 34.67C30.3369 33.6494 32.443 31.9209 33.9248 29.7032C35.4066 27.4855 36.1976 24.8783 36.1976 22.2111C36.1976 18.6345 34.7768 15.2044 32.2477 12.6754C29.7187 10.1464 26.2886 8.72559 22.7121 8.72559V8.72559ZM22.7121 34.7975C20.2227 34.7975 17.7892 34.0594 15.7194 32.6763C13.6496 31.2933 12.0363 29.3276 11.0837 27.0277C10.131 24.7278 9.8818 22.1971 10.3674 19.7556C10.8531 17.314 12.0518 15.0714 13.8121 13.3111C15.5723 11.5509 17.815 10.3521 20.2566 9.86646C22.6981 9.38081 25.2288 9.63007 27.5287 10.5827C29.8286 11.5353 31.7943 13.1486 33.1773 15.2184C34.5603 17.2882 35.2985 19.7217 35.2985 22.2111C35.2985 25.5492 33.9725 28.7506 31.612 31.111C29.2516 33.4715 26.0502 34.7975 22.7121 34.7975Z" fill="#5B476B"/>
<path d="M22.7125 12.3213C20.9767 12.3243 19.2721 12.7825 17.7687 13.6502C16.2653 14.5178 15.0158 15.7646 14.1447 17.266C14.0872 17.3701 14.0712 17.4921 14.0998 17.6076C14.1151 17.665 14.1417 17.7188 14.178 17.7659C14.2142 17.8129 14.2595 17.8523 14.3111 17.8818L20.1548 21.2532C20.2239 21.2904 20.301 21.3104 20.3795 21.3116C20.4184 21.316 20.4576 21.316 20.4964 21.3116C20.5538 21.2963 20.6076 21.2697 20.6547 21.2334C20.7017 21.1972 20.7411 21.1519 20.7706 21.1003C20.9658 20.7568 21.248 20.4708 21.589 20.2712C21.9299 20.0715 22.3174 19.9652 22.7125 19.9631C22.8317 19.9631 22.9461 19.9157 23.0304 19.8314C23.1147 19.7471 23.162 19.6328 23.162 19.5135V12.7708C23.162 12.6516 23.1147 12.5373 23.0304 12.4529C22.9461 12.3686 22.8317 12.3213 22.7125 12.3213ZM22.263 19.0955C21.4637 19.2111 20.7395 19.6295 20.2402 20.2642L15.1606 17.3334C15.9349 16.1351 16.9824 15.1374 18.217 14.4225C19.4517 13.7075 20.8383 13.2955 22.263 13.2203V19.0955Z" fill="#5B476B"/>
<path d="M22.7125 24.4589C22.3188 24.4581 21.9321 24.3538 21.5913 24.1566C21.2505 23.9594 20.9675 23.6761 20.7706 23.3351C20.7411 23.2835 20.7017 23.2382 20.6547 23.202C20.6076 23.1657 20.5538 23.1391 20.4964 23.1238C20.4393 23.1085 20.3797 23.1045 20.3211 23.1122C20.2625 23.12 20.206 23.1392 20.1548 23.1688L14.3111 26.5401C14.2595 26.5696 14.2142 26.609 14.178 26.6561C14.1417 26.7031 14.1151 26.7569 14.0998 26.8143C14.0712 26.9298 14.0872 27.0518 14.1447 27.156C15.0158 28.6574 16.2653 29.9041 17.7687 30.7718C19.2721 31.6394 20.9767 32.0976 22.7125 32.1006C22.8317 32.1006 22.9461 32.0533 23.0304 31.969C23.1147 31.8847 23.162 31.7703 23.162 31.6511V24.9084C23.162 24.7892 23.1147 24.6748 23.0304 24.5905C22.9461 24.5062 22.8317 24.4589 22.7125 24.4589ZM22.263 31.2016C20.8395 31.1279 19.4536 30.718 18.2191 30.0054C16.9846 29.2928 15.9364 28.2978 15.1606 27.102L20.2402 24.1712C20.7395 24.8059 21.4637 25.2243 22.263 25.3399V31.2016Z" fill="#5B476B"/>
<path d="M31.2796 17.2669C31.2502 17.2154 31.2109 17.1702 31.164 17.1339C31.1171 17.0977 31.0635 17.071 31.0063 17.0556C30.949 17.0401 30.8893 17.0361 30.8305 17.0439C30.7717 17.0516 30.715 17.0709 30.6637 17.1006L24.82 20.472C24.768 20.5019 24.7224 20.5421 24.6862 20.5899C24.6499 20.6378 24.6235 20.6925 24.6087 20.7507C24.5941 20.8081 24.5909 20.8678 24.5994 20.9264C24.6078 20.985 24.6278 21.0414 24.6582 21.0923C24.8555 21.434 24.9593 21.8216 24.9593 22.2161C24.9593 22.6106 24.8555 22.9982 24.6582 23.3399C24.6278 23.3908 24.6078 23.4471 24.5994 23.5058C24.5909 23.5644 24.5941 23.6241 24.6087 23.6815C24.6235 23.7397 24.6499 23.7944 24.6862 23.8423C24.7224 23.8901 24.768 23.9302 24.82 23.9602L30.6637 27.3316C30.7156 27.3609 30.7727 27.3797 30.8319 27.3868C30.891 27.3939 30.951 27.3891 31.0083 27.3728C31.0656 27.3565 31.1191 27.3289 31.1657 27.2918C31.2122 27.2546 31.251 27.2085 31.2796 27.1563C32.1475 25.6529 32.6045 23.9475 32.6045 22.2116C32.6045 20.4756 32.1475 18.7703 31.2796 17.2669ZM30.7132 26.3112L25.6336 23.3803C25.9338 22.6301 25.9338 21.7931 25.6336 21.0429L30.7132 18.112C31.3633 19.3808 31.7023 20.786 31.7023 22.2116C31.7023 23.6372 31.3633 25.0424 30.7132 26.3112V26.3112Z" fill="#5B476B"/>
<path d="M22.7118 10.5234C20.4003 10.5234 18.1406 11.2089 16.2187 12.4931C14.2967 13.7774 12.7987 15.6027 11.9141 17.7383C11.0295 19.8739 10.798 22.2238 11.249 24.491C11.7 26.7581 12.8131 28.8406 14.4476 30.4751C16.0821 32.1096 18.1646 33.2228 20.4317 33.6737C22.6989 34.1247 25.0488 33.8932 27.1844 33.0086C29.32 32.124 31.1454 30.626 32.4296 28.704C33.7138 26.7821 34.3993 24.5224 34.3993 22.2109C34.3993 19.1112 33.1679 16.1384 30.9761 13.9466C28.7843 11.7548 25.8115 10.5234 22.7118 10.5234V10.5234ZM22.7118 32.9993C20.5781 32.9993 18.4923 32.3665 16.7181 31.1811C14.944 29.9956 13.5612 28.3107 12.7447 26.3394C11.9281 24.3681 11.7145 22.1989 12.1307 20.1062C12.547 18.0134 13.5745 16.0911 15.0833 14.5823C16.5921 13.0735 18.5144 12.046 20.6071 11.6298C22.6999 11.2135 24.8691 11.4271 26.8404 12.2437C28.8117 13.0602 30.4966 14.443 31.6821 16.2172C32.8675 17.9913 33.5002 20.0771 33.5002 22.2109C33.5002 25.0721 32.3636 27.8162 30.3404 29.8394C28.3172 31.8626 25.5731 32.9993 22.7118 32.9993Z" fill="#5B476B"/>
<path d="M16.9535 17.3289L19.8214 18.9831C19.8895 19.0235 19.967 19.0452 20.0462 19.046C20.1419 19.0451 20.2348 19.0136 20.3114 18.9561C20.5548 18.778 20.8171 18.6272 21.0935 18.5066C21.2032 18.4589 21.2895 18.3696 21.3333 18.2583C21.3771 18.1471 21.375 18.0229 21.3273 17.9132C21.2796 17.8036 21.1903 17.7173 21.079 17.6735C20.9677 17.6296 20.8436 17.6318 20.7339 17.6795C20.4875 17.788 20.25 17.9158 20.0237 18.0616L17.403 16.5512C17.3003 16.4975 17.1807 16.4855 17.0694 16.5178C16.958 16.5501 16.8635 16.6242 16.8055 16.7246C16.7474 16.8249 16.7304 16.9439 16.758 17.0565C16.7856 17.1691 16.8556 17.2667 16.9535 17.3289V17.3289Z" fill="#5B476B"/>
<path d="M29.8185 19.6625L26.9551 21.3122C26.8771 21.3563 26.8141 21.4226 26.774 21.5027C26.734 21.5828 26.7188 21.673 26.7303 21.7618C26.7656 22.0604 26.7656 22.3622 26.7303 22.6608C26.7235 22.7199 26.7284 22.7798 26.7449 22.8369C26.7613 22.8941 26.7889 22.9474 26.8261 22.9938C26.8634 23.0403 26.9094 23.0788 26.9616 23.1073C27.0139 23.1358 27.0712 23.1536 27.1304 23.1598H27.1798C27.291 23.1604 27.3984 23.1199 27.4814 23.046C27.5644 22.9722 27.6171 22.8701 27.6294 22.7597C27.6494 22.5776 27.6584 22.3945 27.6563 22.2113C27.6563 22.1259 27.6563 22.0405 27.6563 21.9551L30.2725 20.4447C30.3239 20.4152 30.3689 20.3758 30.4051 20.3289C30.4412 20.282 30.4678 20.2284 30.4832 20.1712C30.4987 20.114 30.5027 20.0544 30.4951 19.9956C30.4875 19.9369 30.4684 19.8802 30.4388 19.8288C30.4093 19.7775 30.37 19.7324 30.3231 19.6963C30.2761 19.6601 30.2226 19.6336 30.1654 19.6181C30.1082 19.6027 30.0485 19.5987 29.9898 19.6063C29.931 19.6139 29.8744 19.633 29.823 19.6625H29.8185Z" fill="#5B476B"/>
<path d="M19.6824 25.5597C19.6475 25.6074 19.6223 25.6616 19.6084 25.7191C19.5944 25.7767 19.592 25.8364 19.6012 25.8949C19.6103 25.9533 19.631 26.0094 19.6619 26.0599C19.6928 26.1104 19.7334 26.1542 19.7813 26.189C19.9976 26.3476 20.226 26.4889 20.4646 26.6115V29.6368C20.4646 29.756 20.5119 29.8703 20.5962 29.9546C20.6805 30.0389 20.7949 30.0863 20.9141 30.0863C21.0333 30.0863 21.1477 30.0389 21.232 29.9546C21.3163 29.8703 21.3636 29.756 21.3636 29.6368V26.3283C21.3639 26.2406 21.3386 26.1547 21.2906 26.0812C21.2427 26.0077 21.1743 25.9499 21.0939 25.9148C20.8174 25.7942 20.5551 25.6434 20.3118 25.4653C20.2643 25.4301 20.2103 25.4046 20.1529 25.3903C20.0956 25.376 20.036 25.3732 19.9775 25.3819C19.9191 25.3907 19.8629 25.4109 19.8123 25.4414C19.7616 25.4719 19.7175 25.5121 19.6824 25.5597Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 7.8 KiB

+28
View File
@@ -0,0 +1,28 @@
<svg width="28" height="20" viewBox="0 0 28 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="28" height="20" rx="2" fill="white"/>
<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="28" height="20">
<rect width="28" height="20" rx="2" fill="white"/>
</mask>
<g mask="url(#mask0)">
<rect width="28" height="20" fill="#0A17A7"/>
<path d="M0 -0.333333H-0.901086L-0.21693 0.253086L4.33333 4.15331V5.16179L-0.193746 8.39542L-0.333333 8.49513V8.66667V9.33333V9.93475L0.176666 9.616L5.42893 6.33333H6.55984L11.0821 9.56351C11.176 9.6306 11.2886 9.66667 11.404 9.66667C11.9182 9.66667 12.1548 9.02698 11.7644 8.69237L7.66667 5.18002V4.17154L12.0542 1.03762C12.2294 0.912475 12.3333 0.710428 12.3333 0.495127V0V-0.601416L11.8233 -0.282666L6.57107 3H5.44016L0.860413 -0.271244L0.773488 -0.333333H0.666667H0Z" fill="#FF2E3B" stroke="white" stroke-width="0.666667"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 3.33333V6H4.66667V9.33333C4.66667 9.70152 4.96514 10 5.33333 10H6.66667C7.03486 10 7.33333 9.70152 7.33333 9.33333V6H12C12.3682 6 12.6667 5.70152 12.6667 5.33333V4C12.6667 3.63181 12.3682 3.33333 12 3.33333H7.33333V0H4.66667V3.33333H0Z" fill="url(#paint0_linear)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 4H5.33333V3.33333V0H6.66667V3.33333V4H12V5.33333H6.66667V6V9.33333H5.33333V6V5.33333H0V4Z" fill="url(#paint1_linear)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 16.3333L4.82443 16.9514L5.04894 15.6423L4.09789 14.7153L5.41221 14.5243L6 13.3333L6.58779 14.5243L7.90211 14.7153L6.95106 15.6423L7.17557 16.9514L6 16.3333Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.0013 17.3333L19.0585 17.6095L19.3346 16.6667L19.0585 15.7239L20.0013 16L20.9441 15.7239L20.668 16.6667L20.9441 17.6095L20.0013 17.3333Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.0013 4.66667L19.0585 4.94281L19.3346 4.00001L19.0585 3.0572L20.0013 3.33334L20.9441 3.0572L20.668 4.00001L20.9441 4.94281L20.0013 4.66667Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.0013 8.66667L23.0585 8.94281L23.3346 8.00001L23.0585 7.0572L24.0013 7.33334L24.9441 7.0572L24.668 8.00001L24.9441 8.94281L24.0013 8.66667Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.0013 10L15.0585 10.2761L15.3346 9.33333L15.0585 8.39052L16.0013 8.66667L16.9441 8.39052L16.668 9.33333L16.9441 10.2761L16.0013 10Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.9987 11.6667L21.5273 11.8047L21.6654 11.3333L21.5273 10.8619L21.9987 11L22.4701 10.8619L22.332 11.3333L22.4701 11.8047L21.9987 11.6667Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear" x1="0" y1="0" x2="0" y2="10" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="#F0F0F0"/>
</linearGradient>
<linearGradient id="paint1_linear" x1="0" y1="0" x2="0" y2="9.33333" gradientUnits="userSpaceOnUse">
<stop stop-color="#FF2E3B"/>
<stop offset="1" stop-color="#FC0D1B"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

+4
View File
@@ -0,0 +1,4 @@
<svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.7256 29.6661C23.1484 29.6661 29.1656 23.6488 29.1656 16.2261C29.1656 8.80343 23.1484 2.78613 15.7256 2.78613C8.30294 2.78613 2.28564 8.80343 2.28564 16.2261C2.28564 23.6488 8.30294 29.6661 15.7256 29.6661Z" fill="#F4E5FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.6043 17.4867C19.438 19.3313 17.8878 20.7768 16 20.7768C14.1121 20.7768 12.5619 19.3313 12.3957 17.4867H9.41988C9.23817 17.4867 9.09087 17.3394 9.09087 17.1577C9.09087 13.4522 12.0079 10.4281 15.671 10.2563V6.30059H5.47183C5.29012 6.30059 5.14282 6.15329 5.14282 5.97158C5.14282 5.78988 5.29012 5.64258 5.47183 5.64258H26.5281C26.7098 5.64258 26.8571 5.78988 26.8571 5.97158C26.8571 6.15329 26.7098 6.30059 26.5281 6.30059H16.329V10.2563C19.992 10.4281 22.9091 13.4522 22.9091 17.1577C22.9091 17.3394 22.7618 17.4867 22.5801 17.4867H19.6043ZM16 20.1188C17.5241 20.1188 18.7793 18.9672 18.9429 17.4867H13.057C13.2207 18.9672 14.4758 20.1188 16 20.1188ZM16 10.9066C12.6579 10.9066 9.92848 13.5293 9.7574 16.8287H22.2425C22.0714 13.5293 19.342 10.9066 16 10.9066ZM20.8854 21.5779L23.2118 23.9043C23.522 24.2145 23.0567 24.6798 22.7466 24.3696L20.4202 22.0432C20.11 21.733 20.5752 21.2677 20.8854 21.5779ZM11.5798 22.0432L9.25337 24.3696C8.94318 24.6798 8.47791 24.2145 8.7881 23.9043L11.1145 21.5779C11.4247 21.2677 11.89 21.733 11.5798 22.0432ZM15.671 23.7378C15.671 23.5561 15.8183 23.4088 16 23.4088C16.1817 23.4088 16.329 23.5561 16.329 23.7378V27.0279C16.329 27.2096 16.1817 27.3569 16 27.3569C15.8183 27.3569 15.671 27.2096 15.671 27.0279V23.7378Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.114286"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

+13
View File
@@ -0,0 +1,13 @@
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.5001 29.4405C23.9228 29.4405 29.9401 23.4233 29.9401 16.0005C29.9401 8.57784 23.9228 2.56055 16.5001 2.56055C9.07735 2.56055 3.06006 8.57784 3.06006 16.0005C3.06006 23.4233 9.07735 29.4405 16.5001 29.4405Z" fill="#F4E5FF"/>
<path d="M30.2477 6.65424H2.76511C2.49311 6.65424 2.27295 6.43408 2.27295 6.16208C2.27295 5.89008 2.49311 5.66992 2.76511 5.66992H30.2477C30.5197 5.66992 30.7395 5.89008 30.7395 6.16208C30.7395 6.43408 30.5193 6.65424 30.2477 6.65424Z" fill="#5B476B"/>
<path d="M16.5062 24.8069C10.9338 24.8069 6.86975 24.582 5.32703 21.6658C4.88447 20.8325 4.73535 18.8079 4.73535 18.0133C4.73535 17.7413 4.95551 17.5215 5.22751 17.5215H17.1942C17.4662 17.5215 17.6864 17.7416 17.6864 18.0133C17.6864 18.2856 17.4662 18.5055 17.1942 18.5055H5.73183C5.78079 19.5224 5.96671 20.773 6.19615 21.2056C7.48255 23.6354 11.2806 23.8229 16.5059 23.8229C16.9357 23.8008 17.4339 23.8229 17.8867 23.8181C17.8886 23.8181 17.8909 23.8181 17.8922 23.8181C18.1619 23.8181 18.3814 24.0354 18.3843 24.3052C18.3869 24.5765 18.1686 24.7992 17.8973 24.8024C17.4406 24.8069 16.9773 24.8069 16.5062 24.8069Z" fill="#5B476B"/>
<path d="M9.1971 26.1337C9.10206 26.1337 9.00574 26.1055 8.92126 26.0489C8.6963 25.8959 8.63774 25.59 8.79006 25.3653L9.77438 23.9138C9.92798 23.6892 10.2345 23.6332 10.4582 23.7826C10.6832 23.9353 10.7417 24.2412 10.5894 24.4658L9.6051 25.9173C9.51006 26.0575 9.35486 26.1337 9.1971 26.1337Z" fill="#5B476B"/>
<path d="M17.871 18.5055H3.98874C3.71642 18.5055 3.49658 18.2853 3.49658 18.0133C3.49658 17.7413 3.71674 17.5215 3.98874 17.5215H17.871C18.1433 17.5215 18.3631 17.7416 18.3631 18.0133C18.3631 18.2856 18.1433 18.5055 17.871 18.5055Z" fill="#5B476B"/>
<path d="M6.48996 18.406C6.21796 18.406 5.9978 18.1859 5.9978 17.9139V10.1628C5.9978 9.14588 6.93604 8.31836 8.08932 8.31836C9.2426 8.31836 10.1812 9.14588 10.1812 10.1628V10.9011C10.1812 11.1731 9.961 11.3932 9.689 11.3932C9.417 11.3932 9.19684 11.1731 9.19684 10.9011V10.1628C9.19684 9.68892 8.69988 9.30268 8.08964 9.30268C7.4794 9.30268 6.98244 9.68892 6.98244 10.1628V17.9139C6.98212 18.1856 6.76196 18.406 6.48996 18.406Z" fill="#5B476B"/>
<path d="M28.1444 26.6471H18.1786C17.9066 26.6471 17.6868 26.4269 17.6868 26.1552V6.53122C17.6868 6.25922 17.9069 6.03906 18.1786 6.03906C18.4503 6.03906 18.6711 6.25922 18.6711 6.53122V25.6627H27.6519V6.53122C27.6519 6.25922 27.872 6.03906 28.144 6.03906C28.4164 6.03906 28.6362 6.25922 28.6362 6.53122V26.1552C28.6365 26.4269 28.4164 26.6471 28.1444 26.6471Z" fill="#5B476B"/>
<path d="M25.6526 26.6471C25.3806 26.6471 25.1604 26.4269 25.1604 26.1552V6.53122C25.1604 6.25922 25.3806 6.03906 25.6526 6.03906C25.9246 6.03906 26.1444 6.25922 26.1444 6.53122V26.1552C26.1447 26.4269 25.9246 26.6471 25.6526 26.6471Z" fill="#5B476B"/>
<path d="M23.1613 26.6471C22.8893 26.6471 22.6692 26.4269 22.6692 26.1552V6.53122C22.6692 6.25922 22.8893 6.03906 23.1613 6.03906C23.4333 6.03906 23.6535 6.25922 23.6535 6.53122V26.1552C23.6535 26.4269 23.4333 26.6471 23.1613 26.6471Z" fill="#5B476B"/>
<path d="M20.6701 26.6471C20.3981 26.6471 20.178 26.4269 20.178 26.1552V6.53122C20.178 6.25922 20.3981 6.03906 20.6701 6.03906C20.9421 6.03906 21.1623 6.25922 21.1623 6.53122V26.1552C21.1623 26.4269 20.9421 26.6471 20.6701 26.6471Z" fill="#5B476B"/>
<path d="M11.3304 11.9677H8.09006C7.81806 11.9677 7.5979 11.7476 7.5979 11.4756C7.5979 11.2036 7.81806 10.9834 8.09006 10.9834H11.3301C11.6024 10.9834 11.8222 11.2036 11.8222 11.4756C11.8222 11.7476 11.6024 11.9677 11.3304 11.9677Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

+12
View File
@@ -0,0 +1,12 @@
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.5001 29.4405C23.9228 29.4405 29.9401 23.4233 29.9401 16.0005C29.9401 8.57784 23.9228 2.56055 16.5001 2.56055C9.07735 2.56055 3.06006 8.57784 3.06006 16.0005C3.06006 23.4233 9.07735 29.4405 16.5001 29.4405Z" fill="#F4E5FF"/>
<path d="M23.1071 27.125C22.8458 27.125 22.6345 26.9133 22.6345 26.6523V19.6035H4.33722V26.6523C4.33722 26.9136 4.12555 27.125 3.86426 27.125C3.60298 27.125 3.3916 26.9133 3.3916 26.6523V19.1309C3.3916 18.8693 3.60298 18.6582 3.86426 18.6582H23.1071C23.3687 18.6582 23.5801 18.8696 23.5801 19.1309V26.6523C23.5801 26.9133 23.3684 27.125 23.1071 27.125Z" fill="#5B476B"/>
<path d="M23.1071 24.0989H3.86426C3.60298 24.0989 3.3916 23.8873 3.3916 23.6263C3.3916 23.3647 3.60298 23.1533 3.86426 23.1533H23.1071C23.3687 23.1533 23.5801 23.365 23.5801 23.6263C23.5801 23.8876 23.3684 24.0989 23.1071 24.0989Z" fill="#5B476B"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.84332 19.6028H21.1282C21.3894 19.6028 21.6011 19.3912 21.6008 19.1302V13.389C21.6008 13.1277 21.3894 12.916 21.1282 12.916H5.84332C5.58174 12.916 5.37036 13.1277 5.37036 13.389V19.1302C5.37036 19.3912 5.58174 19.6028 5.84332 19.6028ZM20.6543 18.6578H6.31477V13.8622H20.6543V18.6578Z" fill="#5B476B"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.1438 19.2881H19.0062C19.2675 19.2881 19.4788 19.0764 19.4788 18.8148V15.8655C19.4788 15.6042 19.2678 15.3926 19.0062 15.3926H8.1438C7.88252 15.3926 7.67114 15.604 7.67114 15.8655V18.8151C7.67114 19.0764 7.88252 19.2881 8.1438 19.2881ZM18.5333 18.3424H8.61621V16.3387H18.5333V18.3424Z" fill="#5B476B"/>
<path d="M13.5742 19.2885C13.3129 19.2885 13.1016 19.0768 13.1016 18.8155V16.1025C13.1016 15.8413 13.3129 15.6299 13.5742 15.6299C13.8358 15.6299 14.0472 15.8416 14.0472 16.1025V18.8155C14.0472 19.0768 13.8355 19.2885 13.5742 19.2885Z" fill="#5B476B"/>
<path d="M25.6956 27.1251C25.695 27.1251 25.6947 27.1251 25.6941 27.1251C25.4331 27.1242 25.2223 26.9117 25.2229 26.6516L25.2617 11.5919C25.2622 11.3306 25.4742 11.1201 25.7343 11.1201C25.7349 11.1201 25.7355 11.1201 25.7358 11.1201C25.9968 11.121 26.2076 11.3335 26.2073 11.594L26.1682 26.6536C26.1679 26.9146 25.956 27.1251 25.6956 27.1251Z" fill="#5B476B"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.0181 11.5113H29.0369C29.2976 11.5113 29.5096 11.2997 29.5096 11.0384C29.5096 10.9571 29.489 10.8804 29.4529 10.8129L28.3112 5.5705C28.2636 5.35325 28.0716 5.19824 27.8488 5.19824H23.6509C23.4284 5.19824 23.2364 5.35354 23.1888 5.5705L22.0198 10.9377C21.9896 11.0774 22.0236 11.2242 22.1138 11.3349C22.2036 11.4468 22.3389 11.5113 22.4819 11.5113H29.0181ZM28.4313 10.5656H23.0688L24.0317 6.14397H27.4684L28.4313 10.5656Z" fill="#5B476B"/>
<path d="M24.4549 11.5112C24.4276 11.5112 24.3997 11.5082 24.3721 11.5038C24.115 11.4586 23.9435 11.2129 23.989 10.9551L24.895 5.86418C24.9408 5.6073 25.183 5.43644 25.4431 5.48195C25.7003 5.52716 25.8714 5.77288 25.8259 6.03035L24.9199 11.1213C24.8797 11.3506 24.6801 11.5112 24.4549 11.5112Z" fill="#5B476B"/>
<path d="M26.9757 11.2265C26.7505 11.2265 26.5515 11.0659 26.5106 10.837L25.6038 5.75424C25.5583 5.49736 25.7288 5.25193 25.9863 5.20584C26.2502 5.16709 26.4889 5.33149 26.5347 5.58808L27.4416 10.6705C27.4871 10.9274 27.3162 11.1728 27.059 11.2192C27.0312 11.2239 27.003 11.2265 26.9757 11.2265Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

@@ -0,0 +1,3 @@
<svg width="16" height="24" viewBox="0 0 16 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.67075 17.1237L0.5 23.3981V2.5C0.5 1.67157 1.17157 1 2 1H14C14.8284 1 15.5 1.67157 15.5 2.5V23.3981L8.32925 17.1237L8 16.8356L7.67075 17.1237Z" stroke="#9A00FF"/>
</svg>

After

Width:  |  Height:  |  Size: 277 B

+3
View File
@@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.6707 16.6237L4.5 22.8981V2C4.5 1.17157 5.17157 0.5 6 0.5H18C18.8284 0.5 19.5 1.17157 19.5 2V22.8981L12.3293 16.6237L12 16.3356L11.6707 16.6237Z" stroke="#9A00FF"/>
</svg>

After

Width:  |  Height:  |  Size: 280 B

+3
View File
@@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.6707 16.6237L4.5 22.8981V2C4.5 1.17157 5.17157 0.5 6 0.5H18C18.8284 0.5 19.5 1.17157 19.5 2V22.8981L12.3293 16.6237L12 16.3356L11.6707 16.6237Z" fill="#9A00FF" stroke="#9A00FF"/>
</svg>

After

Width:  |  Height:  |  Size: 299 B

+3
View File
@@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.6707 16.6237L4.5 22.8981V2C4.5 1.17157 5.17157 0.5 6 0.5H18C18.8284 0.5 19.5 1.17157 19.5 2V22.8981L12.3293 16.6237L12 16.3356L11.6707 16.6237Z" stroke="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 284 B

+3
View File
@@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.6707 16.6237L4.5 22.8981V2C4.5 1.17157 5.17157 0.5 6 0.5H18C18.8284 0.5 19.5 1.17157 19.5 2V22.8981L12.3293 16.6237L12 16.3356L11.6707 16.6237Z" fill="#9A00FF" stroke="#9A00FF"/>
</svg>

After

Width:  |  Height:  |  Size: 295 B

+11
View File
@@ -0,0 +1,11 @@
<svg width="28" height="20" viewBox="0 0 28 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.25" y="0.25" width="27.5" height="19.5" rx="1.75" fill="white" stroke="#F5F5F5" stroke-width="0.5"/>
<mask id="mask0" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="28" height="20">
<rect x="0.25" y="0.25" width="27.5" height="19.5" rx="1.75" fill="white" stroke="white" stroke-width="0.5"/>
</mask>
<g mask="url(#mask0)">
<rect x="20" width="8" height="20" fill="#FF3131"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 20H8V0H0V20Z" fill="#FF3131"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.1105 9.22153C15.8773 9.45474 15.4833 9.24385 15.5479 8.92046L15.9987 6.66667L14.6654 7.33334L13.9987 5.33334L13.332 7.33334L11.9987 6.66667L12.4495 8.92046C12.5141 9.24385 12.1201 9.45474 11.8869 9.22153L11.5677 8.90237C11.4376 8.7722 11.2265 8.7722 11.0963 8.90237L10.6654 9.33334L9.33203 8.66667L9.9987 10L9.56773 10.431C9.43756 10.5611 9.43756 10.7722 9.56773 10.9024L11.332 12.6667H13.332L13.6654 14.6667H14.332L14.6654 12.6667H16.6654L18.4297 10.9024C18.5598 10.7722 18.5598 10.5611 18.4297 10.431L17.9987 10L18.6654 8.66667L17.332 9.33334L16.9011 8.90237C16.7709 8.7722 16.5598 8.7722 16.4297 8.90237L16.1105 9.22153Z" fill="#FF3131"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+3
View File
@@ -0,0 +1,3 @@
<svg width="16" height="9" viewBox="0 0 16 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.180242 1.09743C-0.060081 0.846375 -0.060081 0.439341 0.180242 0.18829C0.393862 -0.0348672 0.725461 -0.0596626 0.965299 0.113904L1.05053 0.18829L8 7.44814L14.9495 0.188289C15.1631 -0.0348678 15.4947 -0.0596632 15.7345 0.113903L15.8198 0.188289C16.0334 0.411446 16.0571 0.757848 15.891 1.00839L15.8198 1.09743L8.43514 8.81171C8.22152 9.03487 7.88992 9.05966 7.65009 8.8861L7.56486 8.81171L0.180242 1.09743Z" fill="#777185"/>
</svg>

After

Width:  |  Height:  |  Size: 579 B

+3
View File
@@ -0,0 +1,3 @@
<svg width="16" height="9" viewBox="0 0 16 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.180242 7.90257C-0.060081 8.15362 -0.060081 8.56066 0.180242 8.81171C0.393862 9.03487 0.725461 9.05966 0.965299 8.8861L1.05053 8.81171L8 1.55186L14.9495 8.81171C15.1631 9.03487 15.4947 9.05966 15.7345 8.8861L15.8198 8.81171C16.0334 8.58855 16.0571 8.24215 15.891 7.99161L15.8198 7.90257L8.43514 0.188289C8.22152 -0.0348679 7.88992 -0.0596631 7.65009 0.113903L7.56486 0.188289L0.180242 7.90257Z" fill="#777185"/>
</svg>

After

Width:  |  Height:  |  Size: 567 B

+4
View File
@@ -0,0 +1,4 @@
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M25 49C38.2548 49 49 38.2548 49 25C49 11.7452 38.2548 1 25 1C11.7452 1 1 11.7452 1 25C1 38.2548 11.7452 49 25 49Z" fill="#5B476B" stroke="#F3F3F6"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.2653 16.0302C20.5104 15.7852 20.8907 15.758 21.1658 15.9486L21.2636 16.0302L29.7342 24.5008C29.9792 24.7459 30.0065 25.1262 29.8159 25.4013L29.7342 25.4991L21.2636 33.9697C20.9879 34.2453 20.541 34.2453 20.2653 33.9697C20.0203 33.7246 19.9931 33.3443 20.1837 33.0692L20.2653 32.9714L28.2369 25L20.2653 17.0285C20.0203 16.7835 19.9931 16.4031 20.1837 16.128L20.2653 16.0302Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 752 B

+4
View File
@@ -0,0 +1,4 @@
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M25 1C11.7452 1 1 11.7452 1 25C1 38.2548 11.7452 49 25 49C38.2548 49 49 38.2548 49 25C49 11.7452 38.2548 1 25 1Z" fill="#5B476B" stroke="#F3F3F6"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.7347 33.9698C29.4896 34.2148 29.1093 34.242 28.8342 34.0514L28.7364 33.9698L20.2658 25.4992C20.0208 25.2541 19.9935 24.8738 20.1841 24.5987L20.2658 24.5009L28.7364 16.0303C29.0121 15.7547 29.459 15.7547 29.7347 16.0303C29.9797 16.2754 30.0069 16.6557 29.8163 16.9308L29.7347 17.0286L21.7631 25L29.7347 32.9715C29.9797 33.2165 30.0069 33.5969 29.8163 33.872L29.7347 33.9698Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 751 B

+16
View File
@@ -0,0 +1,16 @@
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.5715 45.5715C36.1695 45.5715 45.5715 36.1695 45.5715 24.5715C45.5715 12.9736 36.1695 3.57153 24.5715 3.57153C12.9736 3.57153 3.57153 12.9736 3.57153 24.5715C3.57153 36.1695 12.9736 45.5715 24.5715 45.5715Z" fill="#F4E5FF"/>
<path d="M42.2694 27.3495C41.9643 27.3495 41.6549 27.3495 41.3498 27.3495C40.5161 27.3495 39.6781 27.3495 38.8445 27.3495C37.6068 27.3495 36.3735 27.3495 35.1359 27.3495C33.6275 27.3495 32.1191 27.3495 30.6108 27.3495C28.9563 27.3495 27.3061 27.3495 25.6517 27.3495C23.9843 27.3495 22.3169 27.3495 20.6453 27.3495C19.0853 27.3495 17.5211 27.3495 15.9612 27.3495C14.6505 27.3495 13.3441 27.3495 12.0334 27.3495C11.0837 27.3495 10.134 27.3495 9.1843 27.3495C8.73738 27.3495 8.29045 27.3409 7.84353 27.3495C7.82634 27.3495 7.80486 27.3495 7.78767 27.3495C7.43958 27.3495 7.14307 27.646 7.14307 27.9941C7.14307 29.6099 7.14307 31.2214 7.14307 32.8372C7.14307 35.3898 7.14307 37.9381 7.14307 40.4908C7.14307 41.0752 7.14307 41.6553 7.14307 42.2398C7.14307 42.5879 7.43958 42.8844 7.78767 42.8844C8.09278 42.8844 8.40218 42.8844 8.70729 42.8844C9.54098 42.8844 10.379 42.8844 11.2126 42.8844C12.4503 42.8844 13.6836 42.8844 14.9212 42.8844C16.4296 42.8844 17.938 42.8844 19.4463 42.8844C21.1008 42.8844 22.751 42.8844 24.4054 42.8844C26.0728 42.8844 27.7402 42.8844 29.4118 42.8844C30.9718 42.8844 32.536 42.8844 34.0959 42.8844C35.4066 42.8844 36.713 42.8844 38.0237 42.8844C38.9734 42.8844 39.9231 42.8844 40.8728 42.8844C41.3197 42.8844 41.7666 42.893 42.2136 42.8844C42.2308 42.8844 42.2522 42.8844 42.2694 42.8844C42.6175 42.8844 42.914 42.5879 42.914 42.2398C42.914 40.624 42.914 39.0125 42.914 37.3967C42.914 34.8441 42.914 32.2957 42.914 29.7431C42.914 29.1587 42.914 28.5786 42.914 27.9941C42.914 27.6589 42.6175 27.3323 42.2694 27.3495C41.9214 27.3667 41.6248 27.6331 41.6248 27.9941C41.6248 29.6099 41.6248 31.2214 41.6248 32.8372C41.6248 35.3898 41.6248 37.9381 41.6248 40.4908C41.6248 41.0752 41.6248 41.6553 41.6248 42.2398C41.8397 42.0249 42.0546 41.81 42.2694 41.5952C41.9643 41.5952 41.6549 41.5952 41.3498 41.5952C40.5161 41.5952 39.6781 41.5952 38.8445 41.5952C37.6068 41.5952 36.3735 41.5952 35.1359 41.5952C33.6275 41.5952 32.1191 41.5952 30.6108 41.5952C28.9563 41.5952 27.3061 41.5952 25.6517 41.5952C23.9843 41.5952 22.3169 41.5952 20.6453 41.5952C19.0853 41.5952 17.5211 41.5952 15.9612 41.5952C14.6505 41.5952 13.3441 41.5952 12.0334 41.5952C11.0837 41.5952 10.134 41.5952 9.1843 41.5952C8.73738 41.5952 8.29045 41.578 7.84353 41.5952C7.82634 41.5952 7.80486 41.5952 7.78767 41.5952C8.00253 41.81 8.2174 42.0249 8.43227 42.2398C8.43227 40.624 8.43227 39.0125 8.43227 37.3967C8.43227 34.8441 8.43227 32.2957 8.43227 29.7431C8.43227 29.1587 8.43227 28.5786 8.43227 27.9941C8.2174 28.209 8.00253 28.4239 7.78767 28.6387C8.09278 28.6387 8.40218 28.6387 8.70729 28.6387C9.54098 28.6387 10.379 28.6387 11.2126 28.6387C12.4503 28.6387 13.6836 28.6387 14.9212 28.6387C16.4296 28.6387 17.938 28.6387 19.4463 28.6387C21.1008 28.6387 22.751 28.6387 24.4054 28.6387C26.0728 28.6387 27.7402 28.6387 29.4118 28.6387C30.9718 28.6387 32.536 28.6387 34.0959 28.6387C35.4066 28.6387 36.713 28.6387 38.0237 28.6387C38.9734 28.6387 39.9231 28.6387 40.8728 28.6387C41.3197 28.6387 41.7666 28.6473 42.2136 28.6387C42.2308 28.6387 42.2522 28.6387 42.2694 28.6387C42.6046 28.6387 42.9312 28.3422 42.914 27.9941C42.9011 27.646 42.6304 27.3495 42.2694 27.3495Z" fill="#5B476B"/>
<path d="M16.9197 27.9941C16.9197 29.6099 16.9197 31.2214 16.9197 32.8372C16.9197 35.3898 16.9197 37.9381 16.9197 40.4908C16.9197 41.0752 16.9197 41.6553 16.9197 42.2398C16.9197 42.575 17.2162 42.9016 17.5643 42.8844C17.9124 42.8672 18.2089 42.6007 18.2089 42.2398C18.2089 40.624 18.2089 39.0125 18.2089 37.3967C18.2089 34.8441 18.2089 32.2958 18.2089 29.7431C18.2089 29.1587 18.2089 28.5786 18.2089 27.9941C18.2089 27.6589 17.9124 27.3323 17.5643 27.3495C17.2119 27.3667 16.9197 27.6332 16.9197 27.9941Z" fill="#5B476B"/>
<path d="M31.8484 27.9941C31.8484 29.6099 31.8484 31.2214 31.8484 32.8372C31.8484 35.3898 31.8484 37.9381 31.8484 40.4908C31.8484 41.0752 31.8484 41.6553 31.8484 42.2398C31.8484 42.575 32.1449 42.9016 32.493 42.8844C32.8411 42.8672 33.1376 42.6007 33.1376 42.2398C33.1376 40.624 33.1376 39.0125 33.1376 37.3967C33.1376 34.8441 33.1376 32.2958 33.1376 29.7431C33.1376 29.1587 33.1376 28.5786 33.1376 27.9941C33.1376 27.6589 32.8411 27.3323 32.493 27.3495C32.1449 27.3667 31.8484 27.6332 31.8484 27.9941Z" fill="#5B476B"/>
<path d="M9.72168 34.1824C9.72168 34.8055 9.72168 35.4286 9.72168 36.0517C9.72168 36.3869 10.0182 36.7135 10.3663 36.6963C10.7144 36.6791 11.0109 36.4127 11.0109 36.0517C11.0109 35.4286 11.0109 34.8055 11.0109 34.1824C11.0109 33.8472 10.7144 33.5206 10.3663 33.5378C10.0139 33.5549 9.72168 33.8214 9.72168 34.1824Z" fill="#5B476B"/>
<path d="M34.4268 34.1824C34.4268 34.8055 34.4268 35.4286 34.4268 36.0517C34.4268 36.3869 34.7233 36.7135 35.0714 36.6963C35.4194 36.6791 35.716 36.4127 35.716 36.0517C35.716 35.4286 35.716 34.8055 35.716 34.1824C35.716 33.8472 35.4194 33.5206 35.0714 33.5378C34.7233 33.5549 34.4268 33.8214 34.4268 34.1824Z" fill="#5B476B"/>
<path d="M9.72168 12.2917C9.72168 12.9148 9.72168 13.538 9.72168 14.1611C9.72168 14.4963 10.0182 14.8229 10.3663 14.8057C10.7144 14.7885 11.0109 14.522 11.0109 14.1611C11.0109 13.538 11.0109 12.9148 11.0109 12.2917C11.0109 11.9565 10.7144 11.6299 10.3663 11.6471C10.0139 11.6643 9.72168 11.9308 9.72168 12.2917Z" fill="#5B476B"/>
<path d="M32.4929 29.9107C31.9987 29.9107 31.5002 29.9107 31.006 29.9107C29.8242 29.9107 28.6382 29.9107 27.4564 29.9107C26.0168 29.9107 24.5772 29.9107 23.1376 29.9107C21.8914 29.9107 20.6494 29.9107 19.4032 29.9107C18.8016 29.9107 18.1914 29.8892 17.5897 29.9107C17.5811 29.9107 17.5725 29.9107 17.564 29.9107C17.2288 29.9107 16.9022 30.2072 16.9194 30.5553C16.9365 30.9034 17.203 31.1999 17.564 31.1999C18.0581 31.1999 18.5566 31.1999 19.0508 31.1999C20.2326 31.1999 21.4187 31.1999 22.6004 31.1999C24.04 31.1999 25.4796 31.1999 26.9192 31.1999C28.1655 31.1999 29.4074 31.1999 30.6536 31.1999C31.2552 31.1999 31.8655 31.2214 32.4671 31.1999C32.4757 31.1999 32.4843 31.1999 32.4929 31.1999C32.8281 31.1999 33.1547 30.9034 33.1375 30.5553C33.1246 30.2072 32.8581 29.9107 32.4929 29.9107Z" fill="#5B476B"/>
<path d="M41.6248 6.89866C41.6248 8.32967 41.6248 9.76498 41.6248 11.196C41.6248 13.4607 41.6248 15.7254 41.6248 17.9901C41.6248 18.51 41.6248 19.03 41.6248 19.55C41.8397 19.3351 42.0546 19.1203 42.2694 18.9054C41.0834 18.9054 39.893 18.9054 38.7069 18.9054C36.8161 18.9054 34.921 18.9054 33.0302 18.9054C32.5961 18.9054 32.1621 18.9054 31.7281 18.9054C31.943 19.1203 32.1578 19.3351 32.3727 19.55C32.3727 18.235 32.3727 16.92 32.3727 15.6051C32.3727 15.416 32.3727 15.2269 32.3727 15.0378C32.3727 14.6897 32.0762 14.3932 31.7281 14.3932C30.2154 14.3932 28.6985 14.3932 27.1858 14.3932C24.7879 14.3932 22.39 14.3932 19.9921 14.3932C19.4377 14.3932 18.8834 14.3932 18.329 14.3932C17.9809 14.3932 17.6844 14.6897 17.6844 15.0378C17.6844 16.3528 17.6844 17.6678 17.6844 18.9828C17.6844 19.1718 17.6844 19.3609 17.6844 19.55C17.8993 19.3351 18.1141 19.1203 18.329 18.9054C17.143 18.9054 15.9526 18.9054 14.7665 18.9054C12.8757 18.9054 10.9806 18.9054 9.08976 18.9054C8.65573 18.9054 8.2217 18.9054 7.78767 18.9054C8.00253 19.1203 8.2174 19.3351 8.43227 19.55C8.43227 18.119 8.43227 16.6837 8.43227 15.2527C8.43227 12.988 8.43227 10.7233 8.43227 8.45859C8.43227 7.93862 8.43227 7.41864 8.43227 6.89866C8.2174 7.11353 8.00253 7.3284 7.78767 7.54326C8.09278 7.54326 8.40218 7.54326 8.70729 7.54326C9.54098 7.54326 10.379 7.54326 11.2126 7.54326C12.4503 7.54326 13.6836 7.54326 14.9212 7.54326C16.4296 7.54326 17.938 7.54326 19.4463 7.54326C21.1008 7.54326 22.751 7.54326 24.4054 7.54326C26.0728 7.54326 27.7402 7.54326 29.4118 7.54326C30.9718 7.54326 32.536 7.54326 34.0959 7.54326C35.4066 7.54326 36.713 7.54326 38.0237 7.54326C38.9734 7.54326 39.9231 7.54326 40.8728 7.54326C41.3197 7.54326 41.7666 7.55186 42.2136 7.54326C42.2308 7.54326 42.2522 7.54326 42.2694 7.54326C42.6046 7.54326 42.9312 7.24675 42.914 6.89866C42.8968 6.55058 42.6304 6.25406 42.2694 6.25406C41.9643 6.25406 41.6549 6.25406 41.3498 6.25406C40.5161 6.25406 39.6781 6.25406 38.8445 6.25406C37.6068 6.25406 36.3735 6.25406 35.1359 6.25406C33.6275 6.25406 32.1191 6.25406 30.6108 6.25406C28.9563 6.25406 27.3061 6.25406 25.6517 6.25406C23.9843 6.25406 22.3169 6.25406 20.6453 6.25406C19.0853 6.25406 17.5211 6.25406 15.9612 6.25406C14.6505 6.25406 13.3441 6.25406 12.0334 6.25406C11.0837 6.25406 10.134 6.25406 9.1843 6.25406C8.73738 6.25406 8.29045 6.24547 7.84353 6.25406C7.82634 6.25406 7.80486 6.25406 7.78767 6.25406C7.43958 6.25406 7.14307 6.55058 7.14307 6.89866C7.14307 8.32967 7.14307 9.76498 7.14307 11.196C7.14307 13.4607 7.14307 15.7254 7.14307 17.9901C7.14307 18.51 7.14307 19.03 7.14307 19.55C7.14307 19.8981 7.43958 20.1946 7.78767 20.1946C8.97373 20.1946 10.1641 20.1946 11.3502 20.1946C13.241 20.1946 15.1361 20.1946 17.0269 20.1946C17.461 20.1946 17.895 20.1946 18.329 20.1946C18.6771 20.1946 18.9736 19.8981 18.9736 19.55C18.9736 18.235 18.9736 16.92 18.9736 15.6051C18.9736 15.416 18.9736 15.2269 18.9736 15.0378C18.7587 15.2527 18.5439 15.4675 18.329 15.6824C19.8417 15.6824 21.3586 15.6824 22.8713 15.6824C25.2692 15.6824 27.6671 15.6824 30.065 15.6824C30.6194 15.6824 31.1737 15.6824 31.7281 15.6824C31.5132 15.4675 31.2984 15.2527 31.0835 15.0378C31.0835 16.3528 31.0835 17.6678 31.0835 18.9828C31.0835 19.1718 31.0835 19.3609 31.0835 19.55C31.0835 19.8981 31.38 20.1946 31.7281 20.1946C32.9142 20.1946 34.1045 20.1946 35.2906 20.1946C37.1814 20.1946 39.0765 20.1946 40.9673 20.1946C41.4014 20.1946 41.8354 20.1946 42.2694 20.1946C42.6175 20.1946 42.914 19.8981 42.914 19.55C42.914 18.119 42.914 16.6837 42.914 15.2527C42.914 12.988 42.914 10.7233 42.914 8.45859C42.914 7.93862 42.914 7.41864 42.914 6.89866C42.914 6.56347 42.6175 6.23687 42.2694 6.25406C41.9214 6.27125 41.6248 6.53769 41.6248 6.89866Z" fill="#5B476B"/>
<path d="M31.0836 6.89867C31.0836 7.814 31.0836 8.72933 31.0836 9.64036C31.0836 11.1058 31.0836 12.5711 31.0836 14.0365C31.0836 14.3717 31.0836 14.7069 31.0836 15.0378C31.2985 14.8229 31.5134 14.6081 31.7282 14.3932C30.2156 14.3932 28.6986 14.3932 27.186 14.3932C24.7881 14.3932 22.3901 14.3932 19.9922 14.3932C19.4379 14.3932 18.8835 14.3932 18.3292 14.3932C18.544 14.6081 18.7589 14.8229 18.9738 15.0378C18.9738 14.1225 18.9738 13.2071 18.9738 12.2961C18.9738 10.8307 18.9738 9.36533 18.9738 7.89994C18.9738 7.56475 18.9738 7.22956 18.9738 6.89867C18.7589 7.11353 18.544 7.3284 18.3292 7.54327C19.8418 7.54327 21.3588 7.54327 22.8714 7.54327C25.2694 7.54327 27.6673 7.54327 30.0652 7.54327C30.6195 7.54327 31.1739 7.54327 31.7282 7.54327C32.0634 7.54327 32.39 7.24675 32.3728 6.89867C32.3557 6.55058 32.0892 6.25407 31.7282 6.25407C30.2156 6.25407 28.6986 6.25407 27.186 6.25407C24.7881 6.25407 22.3901 6.25407 19.9922 6.25407C19.4379 6.25407 18.8835 6.25407 18.3292 6.25407C17.9811 6.25407 17.6846 6.55058 17.6846 6.89867C17.6846 7.814 17.6846 8.72933 17.6846 9.64036C17.6846 11.1058 17.6846 12.5711 17.6846 14.0365C17.6846 14.3717 17.6846 14.7069 17.6846 15.0378C17.6846 15.3859 17.9811 15.6824 18.3292 15.6824C19.8418 15.6824 21.3588 15.6824 22.8714 15.6824C25.2694 15.6824 27.6673 15.6824 30.0652 15.6824C30.6195 15.6824 31.1739 15.6824 31.7282 15.6824C32.0763 15.6824 32.3728 15.3859 32.3728 15.0378C32.3728 14.1225 32.3728 13.2071 32.3728 12.2961C32.3728 10.8307 32.3728 9.36533 32.3728 7.89994C32.3728 7.56475 32.3728 7.22956 32.3728 6.89867C32.3728 6.56348 32.0763 6.23688 31.7282 6.25407C31.3802 6.27126 31.0836 6.53769 31.0836 6.89867Z" fill="#5B476B"/>
<path d="M24.0962 13.3143C24.7193 13.3143 25.3424 13.3143 25.9655 13.3143C26.3007 13.3143 26.6273 13.0178 26.6101 12.6697C26.5929 12.3217 26.3265 12.0251 25.9655 12.0251C25.3424 12.0251 24.7193 12.0251 24.0962 12.0251C23.761 12.0251 23.4344 12.3217 23.4516 12.6697C23.4645 13.0178 23.7309 13.3143 24.0962 13.3143Z" fill="#5B476B"/>
<path d="M33.6619 12.2917C33.6619 12.9148 33.6619 13.538 33.6619 14.1611C33.6619 14.4963 33.9584 14.8229 34.3065 14.8057C34.6545 14.7885 34.9511 14.522 34.9511 14.1611C34.9511 13.538 34.9511 12.9148 34.9511 12.2917C34.9511 11.9565 34.6545 11.6299 34.3065 11.6471C33.9584 11.6643 33.6619 11.9308 33.6619 12.2917Z" fill="#5B476B"/>
<path d="M26.9194 34.4357C25.8021 35.553 24.6848 36.6703 23.5632 37.7919C23.4042 37.9509 23.2452 38.1099 23.0819 38.2732C22.837 38.5181 22.837 38.9393 23.0819 39.1842C23.3269 39.4292 23.748 39.4292 23.9929 39.1842C25.1102 38.0669 26.2275 36.9496 27.3492 35.828C27.5082 35.669 27.6672 35.51 27.8305 35.3467C28.0754 35.1018 28.0754 34.6806 27.8305 34.4357C27.5855 34.1907 27.1644 34.1907 26.9194 34.4357Z" fill="#5B476B"/>
<path d="M24.3321 33.5763C23.6317 34.2768 22.9269 34.9815 22.2264 35.682C21.9815 35.9269 21.9815 36.3481 22.2264 36.593C22.4714 36.838 22.8925 36.838 23.1375 36.593C23.8379 35.8925 24.5427 35.1878 25.2432 34.4873C25.4881 34.2424 25.4881 33.8212 25.2432 33.5763C24.9939 33.3313 24.5771 33.3313 24.3321 33.5763Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

+4
View File
@@ -0,0 +1,4 @@
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.5005 29.44C23.9233 29.44 29.9405 23.4227 29.9405 16C29.9405 8.57728 23.9233 2.55999 16.5005 2.55999C9.07784 2.55999 3.06055 8.57728 3.06055 16C3.06055 23.4227 9.07784 29.44 16.5005 29.44Z" fill="#F4E5FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.7668 18.6853L26.4345 16.0632C26.3291 15.9797 26.1962 15.9511 26.0687 15.9713L24.5551 13.3505C24.4739 13.2089 24.3299 13.126 24.1782 13.1152V11.7845H27.5967C27.8572 11.7845 28.0689 11.5731 28.0689 11.312V8.79257C28.0689 8.53147 27.8572 8.32003 27.5967 8.32003H5.09075C4.82998 8.32003 4.61821 8.53147 4.61821 8.79257V11.312C4.61821 11.5731 4.82998 11.7845 5.09075 11.7845H8.50961V13.1152C8.4794 13.1172 8.4492 13.1223 8.41933 13.1303C8.29851 13.1629 8.1948 13.2421 8.13272 13.3505L6.61945 15.9713C6.49158 15.9508 6.35835 15.9797 6.25263 16.0632L2.92036 18.6853C2.79753 18.7823 2.73007 18.934 2.74148 19.0904C2.75256 19.2468 2.84082 19.3874 2.97641 19.4656L3.9094 20.0043C3.78926 20.3882 3.77818 20.7983 3.8849 21.1964C4.03324 21.7498 4.38798 22.2123 4.88469 22.4992C5.21526 22.6902 5.58208 22.7875 5.95427 22.7875C6.14087 22.7875 6.32814 22.763 6.51306 22.7133C6.91143 22.6069 7.2608 22.3918 7.53332 22.0958L8.46598 22.6341C8.53914 22.6764 8.62036 22.6976 8.70225 22.6976C8.77272 22.6976 8.84354 22.6818 8.90865 22.6499C9.04927 22.5814 9.1476 22.4475 9.16941 22.2925L9.77418 18.0957C9.79365 17.9628 9.75237 17.8326 9.67048 17.7322L11.1834 15.1118C11.314 14.8859 11.2364 14.5969 11.0106 14.4664L10.9502 14.4315V11.7839H15.1235V13.7915H15.0543C14.7939 13.7915 14.5821 14.0029 14.5821 14.264V17.2902C14.4613 17.3369 14.3606 17.4281 14.3106 17.553L12.7359 21.4897C12.6779 21.6353 12.6957 21.8001 12.7836 21.93C12.8715 22.0599 13.0179 22.1374 13.1749 22.1374H14.2526C14.4687 23.0939 15.3232 23.8108 16.3437 23.8108C17.3647 23.8108 18.2195 23.0936 18.4349 22.1374H19.5129C19.6696 22.1374 19.816 22.0599 19.9039 21.93C19.9922 21.8001 20.0093 21.6353 19.9515 21.4897L18.3769 17.553C18.3272 17.4281 18.2265 17.3365 18.1054 17.2902V14.264C18.1054 14.0029 17.8939 13.7915 17.6332 13.7915H17.5644V11.7839H21.7377V14.4308L21.6766 14.4661C21.5678 14.5288 21.4886 14.6322 21.4564 14.753C21.4239 14.8742 21.441 15.003 21.5037 15.1114L23.017 17.7325C22.9361 17.8329 22.8945 17.9628 22.9136 18.0953L23.5184 22.2931C23.5406 22.4485 23.6386 22.5821 23.7795 22.6506C23.8446 22.6825 23.9154 22.6982 23.9859 22.6982C24.0675 22.6982 24.149 22.6771 24.2218 22.6348L25.1575 22.0948C25.569 22.5398 26.1435 22.7865 26.7335 22.7865C27.0974 22.7865 27.4662 22.6942 27.8031 22.4995C28.6868 21.9894 29.0687 20.941 28.7774 20.005L29.7104 19.4663C29.846 19.3881 29.9346 19.2475 29.9453 19.0911C29.9571 18.934 29.89 18.7823 29.7668 18.6853ZM5.5625 9.2651H27.1234V10.8398H5.5625V9.2651ZM6.26782 21.8008C5.95806 21.8837 5.63419 21.8414 5.35631 21.681C5.07876 21.5206 4.88008 21.2618 4.79718 20.952C4.75691 20.802 4.74751 20.6487 4.7653 20.4986L6.67593 21.6018C6.55578 21.6921 6.41818 21.7609 6.26782 21.8008ZM8.33383 21.4678L7.64415 21.0694C7.64348 21.0691 7.64314 21.0684 7.64247 21.0684C7.6418 21.0677 7.64113 21.0677 7.64046 21.0674L4.74717 19.3967C4.7465 19.3961 4.74582 19.3954 4.74482 19.3951C4.74381 19.3947 4.74314 19.3944 4.74213 19.394L4.05246 18.9957L6.5853 17.0028L8.79294 18.2775L8.33383 21.4678ZM8.86884 17.2312L7.45424 16.414L8.71378 14.2322L10.1287 15.0491L8.86884 17.2312ZM10.0056 13.8868L9.45424 13.5686V11.7848H10.0056V13.8868ZM17.1605 14.7372V17.257H15.5268V14.7372H17.1605ZM16.3442 22.8666C15.8495 22.8666 15.425 22.5659 15.2411 22.1384H17.4474C17.2635 22.5659 16.8386 22.8666 16.3442 22.8666ZM18.8156 21.194H13.8728L15.0692 18.2017H17.6185L18.8156 21.194ZM16.6195 13.7925H16.0681V11.7848H16.6195V13.7925ZM22.6819 11.7845H23.2333V13.5679L22.6819 13.8861V11.7845ZM23.9736 14.2322L25.2335 16.414L23.8179 17.2315L22.558 15.0494L23.9736 14.2322ZM23.894 18.2782L26.1009 17.0035L28.6335 18.9964L25.0458 21.0681C25.0454 21.0681 25.0448 21.0681 25.0444 21.0688C25.0441 21.0688 25.0441 21.0694 25.0434 21.0694L24.3534 21.4681L23.894 18.2782ZM27.3311 21.681C27.0532 21.8417 26.7294 21.884 26.4196 21.8008C26.2692 21.7609 26.1323 21.6921 26.0112 21.6018L27.9218 20.4983C27.9768 20.9608 27.7587 21.4336 27.3311 21.681Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

+4
View File
@@ -0,0 +1,4 @@
<svg width="65" height="64" viewBox="0 0 65 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.6661 58.8801C47.5116 58.8801 59.5461 46.8455 59.5461 32.0001C59.5461 17.1547 47.5116 5.12012 32.6661 5.12012C17.8207 5.12012 5.78613 17.1547 5.78613 32.0001C5.78613 46.8455 17.8207 58.8801 32.6661 58.8801Z" fill="#F4E5FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M59.1996 37.3705L52.5351 32.1263C52.3243 31.9591 52.0585 31.9021 51.8034 31.9424L48.7762 26.7008C48.6138 26.4175 48.3258 26.2518 48.0225 26.2303V23.5689H54.8595C55.3804 23.5689 55.8039 23.146 55.8039 22.6238V17.585C55.8039 17.0628 55.3804 16.6399 54.8595 16.6399H9.84752C9.32598 16.6399 8.90244 17.0628 8.90244 17.585V22.6238C8.90244 23.146 9.32598 23.5689 9.84752 23.5689H16.6852V26.2303C16.6248 26.2343 16.5644 26.2444 16.5047 26.2605C16.263 26.3256 16.0556 26.484 15.9314 26.7008L12.9049 31.9424C12.6492 31.9014 12.3827 31.9591 12.1713 32.1263L5.50674 37.3705C5.26107 37.5645 5.12616 37.8679 5.14898 38.1807C5.17113 38.4935 5.34766 38.7747 5.61883 38.9311L7.48482 40.0084C7.24453 40.7763 7.22238 41.5965 7.43582 42.3926C7.7325 43.4994 8.44198 44.4244 9.43539 44.9982C10.0965 45.3802 10.8302 45.5748 11.5746 45.5748C11.9478 45.5748 12.3223 45.5258 12.6921 45.4265C13.4889 45.2137 14.1876 44.7835 14.7327 44.1914L16.598 45.2681C16.7443 45.3526 16.9067 45.3949 17.0705 45.3949C17.2115 45.3949 17.3531 45.3634 17.4833 45.2996C17.7645 45.1627 17.9612 44.8949 18.0048 44.5848L19.2144 36.1912C19.2533 35.9254 19.1708 35.6649 19.007 35.4642L22.0328 30.2234C22.2939 29.7716 22.1389 29.1937 21.6872 28.9326L21.5663 28.8628V23.5675H29.913V27.5828H29.7747C29.2538 27.5828 28.8303 28.0057 28.8303 28.5279V34.5802C28.5886 34.6735 28.3873 34.8561 28.2873 35.1058L25.1379 42.9792C25.0218 43.2705 25.0574 43.6001 25.2332 43.8599C25.4091 44.1196 25.7017 44.2747 26.0159 44.2747H28.1711C28.6034 46.1876 30.3123 47.6214 32.3535 47.6214C34.3954 47.6214 36.1049 46.187 36.5359 44.2747H38.6918C39.0053 44.2747 39.2979 44.1196 39.4738 43.8599C39.6503 43.6001 39.6846 43.2705 39.5691 42.9792L36.4198 35.1058C36.3204 34.8561 36.119 34.6729 35.8767 34.5802V28.5279C35.8767 28.0057 35.4539 27.5828 34.9323 27.5828H34.7947V23.5675H43.1413V28.8615L43.0192 28.9319C42.8017 29.0575 42.6433 29.2642 42.5789 29.5058C42.5138 29.7481 42.548 30.0059 42.6735 30.2227L45.7 35.4649C45.5383 35.6656 45.455 35.9254 45.4933 36.1905L46.7028 44.5861C46.7471 44.8969 46.9431 45.164 47.225 45.301C47.3553 45.3647 47.4969 45.3963 47.6378 45.3963C47.801 45.3963 47.9641 45.354 48.1097 45.2694L49.9811 44.1894C50.804 45.0795 51.9531 45.5728 53.1331 45.5728C53.8607 45.5728 54.5984 45.3882 55.2723 44.9989C57.0396 43.9787 57.8035 41.8818 57.2208 40.0097L59.0868 38.9324C59.358 38.776 59.5352 38.4948 59.5567 38.182C59.5802 37.8679 59.4459 37.5645 59.1996 37.3705ZM10.7926 18.5302H53.9144V21.6795H10.7926V18.5302ZM12.2028 43.6015C11.5833 43.7672 10.9356 43.6827 10.3798 43.3618C9.82469 43.041 9.42733 42.5235 9.26154 41.9039C9.181 41.6039 9.1622 41.2972 9.19778 40.9971L13.019 43.2034C12.7787 43.384 12.5035 43.5216 12.2028 43.6015ZM16.3349 42.9355L14.9555 42.1387C14.9542 42.1381 14.9535 42.1367 14.9521 42.1367C14.9508 42.1354 14.9495 42.1354 14.9481 42.1347L9.16153 38.7934C9.16019 38.792 9.15884 38.7907 9.15683 38.79C9.15482 38.7894 9.15347 38.7887 9.15146 38.788L7.7721 37.9913L12.8378 34.0056L17.2531 36.5549L16.3349 42.9355ZM17.4048 34.4622L14.5756 32.8278L17.0947 28.4642L19.9245 30.098L17.4048 34.4622ZM19.6775 27.7734L18.5747 27.1371V23.5695H19.6775V27.7734ZM33.9879 29.4743V34.5138H30.7204V29.4743H33.9879ZM32.3542 45.7332C31.3648 45.7332 30.5157 45.1318 30.1479 44.2766H34.5605C34.1927 45.1318 33.3429 45.7332 32.3542 45.7332ZM37.297 42.3878H27.4113L29.8042 36.4032H34.9028L37.297 42.3878ZM32.9052 27.5848H31.8024V23.5695H32.9052V27.5848ZM45.0308 23.5688H46.1336V27.1357L45.0308 27.772V23.5688ZM47.613 28.4642L50.1328 32.8278L47.3016 34.4629L44.7818 30.0986L47.613 28.4642ZM47.4553 36.5563L51.8692 34.007L56.9342 37.9927L49.7589 42.1361C49.7582 42.1361 49.7569 42.1361 49.7562 42.1375C49.7555 42.1375 49.7555 42.1388 49.7542 42.1388L48.3742 42.9362L47.4553 36.5563ZM54.3279 43.3618C53.7721 43.6833 53.1244 43.7679 52.5049 43.6014C52.2042 43.5215 51.9303 43.3839 51.688 43.2034L55.5092 40.9964C55.6193 41.9214 55.183 42.8671 54.3279 43.3618Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

+4
View File
@@ -0,0 +1,4 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="16" height="16" rx="2" fill="#9A00FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9823 4.19526C12.2426 3.93491 12.6647 3.93491 12.9251 4.19526C13.1654 4.43558 13.1839 4.81374 12.9805 5.07527L12.9251 5.13807L6.65506 11.4081C6.41474 11.6484 6.03659 11.6669 5.77506 11.4635L5.71225 11.4081L2.86225 8.55807C2.6019 8.29772 2.6019 7.87561 2.86225 7.61526C3.10258 7.37494 3.48073 7.35645 3.74226 7.5598L3.80506 7.61526L6.18366 9.99333L11.9823 4.19526Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 596 B

@@ -0,0 +1,5 @@
<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M17 33C25.8366 33 33 25.8366 33 17C33 8.16344 25.8366 1 17 1C8.16344 1 1 8.16344 1 17C1 25.8366 8.16344 33 17 33Z" fill="white" stroke="#777185"/>
<rect x="1" y="1" width="32" height="32" rx="16" fill="#9A00FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.9638 9.39052C25.4845 8.86983 26.3288 8.86983 26.8495 9.39052C27.3301 9.87117 27.3671 10.6275 26.9604 11.1505L26.8495 11.2761L14.3095 23.8161C13.8288 24.2968 13.0725 24.3338 12.5494 23.9271L12.4238 23.8161L6.72384 18.1161C6.20314 17.5954 6.20314 16.7512 6.72384 16.2305C7.20448 15.7499 7.96079 15.7129 8.48385 16.1196L8.60946 16.2305L13.3666 20.9867L24.9638 9.39052Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 812 B

+3
View File
@@ -0,0 +1,3 @@
<svg width="24" height="18" viewBox="0 0 24 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.3871 0.46226C21.9848 -0.154087 22.954 -0.154087 23.5517 0.46226C24.1035 1.0312 24.1459 1.92643 23.679 2.54557L23.5517 2.69425L9.15629 17.5377C8.60453 18.1067 7.73631 18.1504 7.13587 17.669L6.99167 17.5377L0.448306 10.7907C-0.149435 10.1744 -0.149435 9.17506 0.448306 8.55871C1.00007 7.98977 1.86828 7.94601 2.46872 8.42742L2.61292 8.55871L8.07398 14.1885L21.3871 0.46226Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 550 B

+3
View File
@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/>
</svg>

After

Width:  |  Height:  |  Size: 290 B

+3
View File
@@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.64645 5.64645C8.82001 5.47288 9.08944 5.4536 9.28431 5.58859L9.35355 5.64645L15.3536 11.6464C15.5271 11.82 15.5464 12.0894 15.4114 12.2843L15.3536 12.3536L9.35355 18.3536C9.15829 18.5488 8.84171 18.5488 8.64645 18.3536C8.47288 18.18 8.4536 17.9106 8.58859 17.7157L8.64645 17.6464L14.293 12L8.64645 6.35355C8.47288 6.17999 8.4536 5.91056 8.58859 5.71569L8.64645 5.64645Z" fill="#777185"/>
</svg>

After

Width:  |  Height:  |  Size: 547 B

+3
View File
@@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.3536 5.64645C15.18 5.47288 14.9106 5.4536 14.7157 5.58859L14.6464 5.64645L8.64645 11.6464C8.47288 11.82 8.45359 12.0894 8.58859 12.2843L8.64645 12.3536L14.6464 18.3536C14.8417 18.5488 15.1583 18.5488 15.3536 18.3536C15.5271 18.18 15.5464 17.9106 15.4114 17.7157L15.3536 17.6464L9.707 12L15.3536 6.35355C15.5271 6.17999 15.5464 5.91056 15.4114 5.71569L15.3536 5.64645Z" fill="#777185"/>
</svg>

After

Width:  |  Height:  |  Size: 546 B

+3
View File
@@ -0,0 +1,3 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="8.5" cy="8" r="7.5" fill="white" stroke="#9A00FF"/>
</svg>

After

Width:  |  Height:  |  Size: 171 B

+3
View File
@@ -0,0 +1,3 @@
<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M17 33C25.8366 33 33 25.8366 33 17C33 8.16344 25.8366 1 17 1C8.16344 1 1 8.16344 1 17C1 25.8366 8.16344 33 17 33Z" fill="white" stroke="#777185"/>
</svg>

After

Width:  |  Height:  |  Size: 303 B

+9
View File
@@ -0,0 +1,9 @@
<svg width="56" height="56" viewBox="0 0 56 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M28 51.52C40.9897 51.52 51.52 40.9897 51.52 28C51.52 15.0102 40.9897 4.47998 28 4.47998C15.0102 4.47998 4.47998 15.0102 4.47998 28C4.47998 40.9897 15.0102 51.52 28 51.52Z" fill="#F4E5FF"/>
<path d="M15.8255 33.556C15.8254 33.5558 15.8254 33.5558 15.8253 33.5556C15.7857 33.4869 15.8014 33.4041 15.8599 33.3707L19.2476 31.4356C19.3064 31.402 19.3859 31.4305 19.4255 31.4988C19.4256 31.499 19.4257 31.4991 19.4257 31.4992C19.4653 31.5679 19.4496 31.6507 19.3911 31.6843L16.0033 33.6192C15.9447 33.6529 15.8651 33.6244 15.8255 33.556Z" fill="#5B476B"/>
<path d="M21.9962 34.7101C21.9963 34.7102 21.9964 34.7102 21.9965 34.7103C22.0572 34.7614 22.0641 34.8527 22.0123 34.914L19.0093 38.4612C18.9572 38.5227 18.866 38.5311 18.8053 38.4804C18.8052 38.4803 18.805 38.4801 18.8049 38.4801C18.7443 38.429 18.7374 38.3377 18.7892 38.2763L21.7922 34.7292C21.8442 34.6677 21.9355 34.6593 21.9962 34.7101Z" fill="#5B476B"/>
<path d="M26.9133 33.2757C27.0332 33.276 27.1494 33.234 27.2412 33.1571L27.8696 32.6314C28.1362 32.41 28.3561 32.138 28.5165 31.8313C28.6769 31.5246 28.7745 31.1892 28.8039 30.8446C28.9095 30.3425 28.861 29.8204 28.6647 29.3461L29.9141 28.0284C30.0178 27.9415 30.0826 27.8171 30.0943 27.6826C30.106 27.5481 30.0635 27.4144 29.9763 27.3111L27.8696 25.057C27.7824 24.9542 27.6579 24.89 27.5234 24.8784C27.3888 24.8667 27.2551 24.9087 27.1514 24.9949L25.739 26.1357C25.2758 25.7767 24.6975 25.5973 24.1117 25.6309C23.5258 25.6645 22.972 25.9087 22.5531 26.3182L21.9248 26.8438C21.8211 26.9307 21.7563 27.0551 21.7446 27.1896C21.7329 27.3241 21.7753 27.4577 21.8625 27.5611L26.5286 33.0932C26.5757 33.1495 26.6344 33.1949 26.7008 33.2264C26.7673 33.258 26.8397 33.2748 26.9133 33.2757V33.2757ZM28.6647 27.6834L27.3566 28.8442C27.2529 28.9311 27.1881 29.0555 27.1764 29.19C27.1647 29.3245 27.2072 29.4581 27.2943 29.5615C27.6061 29.8834 27.783 30.3115 27.7889 30.7588C27.7505 31.1877 27.7468 31.3721 27.4226 31.6495L27.1844 31.8484L23.1815 27.103L23.4197 26.904C24.1048 26.3309 24.8743 26.8274 25.4495 27.51C25.5367 27.6128 25.6612 27.677 25.7957 27.6886C25.9303 27.7003 26.064 27.6584 26.1677 27.5721L27.5526 26.3291L28.6647 27.6834Z" fill="#5B476B"/>
<path d="M47.2596 10.9517L47.2619 10.9544C47.6697 11.4407 47.7493 12.0422 47.4417 12.2975L29.6268 27.0675C29.3179 27.3239 28.7377 27.1371 28.3302 26.6533L28.3279 26.6506C27.9201 26.1643 27.8405 25.5628 28.148 25.3067L45.9633 10.5372C46.2714 10.2806 46.8516 10.4674 47.2596 10.9517Z" fill="#5B476B"/>
<path d="M21.2681 32.7731C21.2683 32.7733 21.2683 32.7734 21.2685 32.7736C21.3408 32.8598 21.3482 32.9721 21.2855 33.0242L17.653 36.0391C17.59 36.0914 17.4805 36.0638 17.4082 35.978C17.4081 35.9779 17.4079 35.9777 17.4078 35.9776C17.3355 35.8913 17.3281 35.779 17.3908 35.7268L21.0234 32.712C21.0862 32.6596 21.1958 32.6872 21.2681 32.7731Z" fill="#5B476B"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.0925 40.2131L20.1115 40.2357C20.3753 40.5489 20.846 40.5894 21.1623 40.325C21.2607 40.2427 21.3326 40.1405 21.3778 40.0288L26.5681 33.3524C26.7829 33.0754 26.7763 32.6879 26.5508 32.4201L22.303 27.3767C22.0778 27.1093 21.6956 27.0358 21.3848 27.1982L13.7053 31.2247C13.5056 31.3297 13.3624 31.5192 13.3196 31.7395C13.2751 31.9606 13.3339 32.1885 13.4786 32.3603L20.0925 40.2131ZM20.6432 38.5512L15.217 32.1085L21.5434 28.7913L25.0209 32.9202L20.6432 38.5512Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

+3
View File
@@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.28431 5.58859C6.08944 5.4536 5.82001 5.47288 5.64645 5.64645C5.45118 5.84171 5.45118 6.15829 5.64645 6.35355L11.2929 12L5.64645 17.6464L5.58859 17.7157C5.4536 17.9106 5.47288 18.18 5.64645 18.3536C5.84171 18.5488 6.15829 18.5488 6.35355 18.3536L12 12.7071L17.6464 18.3536L17.7157 18.4114C17.9106 18.5464 18.18 18.5271 18.3536 18.3536C18.5488 18.1583 18.5488 17.8417 18.3536 17.6464L12.7071 12L18.3536 6.35355L18.4114 6.28431C18.5464 6.08944 18.5271 5.82001 18.3536 5.64645C18.1583 5.45118 17.8417 5.45118 17.6464 5.64645L12 11.2929L6.35355 5.64645L6.28431 5.58859Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 742 B

+4
View File
@@ -0,0 +1,4 @@
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.5 32C25.3366 32 32.5 24.8366 32.5 16C32.5 7.16344 25.3366 0 16.5 0C7.66344 0 0.5 7.16344 0.5 16C0.5 24.8366 7.66344 32 16.5 32Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9272 10.8709C11.7714 10.7629 11.5558 10.7784 11.417 10.9172C11.2608 11.0734 11.2608 11.3267 11.417 11.4829L15.9341 16L11.417 20.5172L11.3707 20.5726C11.2627 20.7285 11.2781 20.944 11.417 21.0829C11.5732 21.2391 11.8264 21.2391 11.9826 21.0829L16.4998 16.5657L21.017 21.0829L21.0724 21.1292C21.2283 21.2372 21.4438 21.2217 21.5826 21.0829C21.7389 20.9267 21.7389 20.6734 21.5826 20.5172L17.0655 16L21.5826 11.4829L21.6289 11.4275C21.7369 11.2716 21.7215 11.0561 21.5826 10.9172C21.4264 10.761 21.1732 10.761 21.017 10.9172L16.4998 15.4344L11.9826 10.9172L11.9272 10.8709Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 950 B

+18
View File
@@ -0,0 +1,18 @@
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d)">
<rect x="13" y="7" width="24" height="24" rx="12" fill="white"/>
<rect x="13" y="7" width="24" height="24" rx="12" stroke="#D2CFDA"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.7132 14.1914C20.5671 14.0902 20.365 14.1047 20.2348 14.2348C20.0884 14.3813 20.0884 14.6187 20.2348 14.7652L24.4697 19L20.2348 23.2348L20.1914 23.2868C20.0902 23.4329 20.1047 23.635 20.2348 23.7652C20.3813 23.9116 20.6187 23.9116 20.7652 23.7652L25 19.5303L29.2348 23.7652L29.2868 23.8086C29.4329 23.9098 29.635 23.8953 29.7652 23.7652C29.9116 23.6187 29.9116 23.3813 29.7652 23.2348L25.5303 19L29.7652 14.7652L29.8086 14.7132C29.9098 14.5671 29.8953 14.365 29.7652 14.2348C29.6187 14.0884 29.3813 14.0884 29.2348 14.2348L25 18.4697L20.7652 14.2348L20.7132 14.1914Z" fill="#5B476B"/>
<defs>
<filter id="filter0_d" x="0.5" y="0.5" width="49" height="49" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="6"/>
<feGaussianBlur stdDeviation="6"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.556863 0 0 0 0 0.52549 0 0 0 0 0.639216 0 0 0 0.2 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

+37
View File
@@ -0,0 +1,37 @@
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M39.9996 77.1427C58.9351 77.1427 74.2853 61.7925 74.2853 42.857C74.2853 23.9215 58.9351 8.57129 39.9996 8.57129C21.0641 8.57129 5.71387 23.9215 5.71387 42.857C5.71387 61.7925 21.0641 77.1427 39.9996 77.1427Z" fill="#F4E5FF"/>
<path d="M45.57 16.434C45.57 16.1866 45.4717 15.9493 45.2967 15.7743C45.1217 15.5993 44.8844 15.501 44.637 15.501H40.9047C40.6573 15.501 40.42 15.5993 40.245 15.7743C40.07 15.9493 39.9717 16.1866 39.9717 16.434V22.0324C39.9717 22.2798 40.07 22.5172 40.245 22.6921C40.42 22.8671 40.6573 22.9654 40.9047 22.9654H44.637C44.8844 22.9654 45.1217 22.8671 45.2967 22.6921C45.4717 22.5172 45.57 22.2798 45.57 22.0324V16.434ZM43.7039 21.0993H41.8378V17.3671H43.7039V21.0993Z" fill="#5B476B"/>
<path d="M53.0339 16.434C53.0339 16.1866 52.9356 15.9493 52.7606 15.7743C52.5856 15.5993 52.3483 15.501 52.1008 15.501H48.3686C48.1211 15.501 47.8838 15.5993 47.7088 15.7743C47.5339 15.9493 47.4356 16.1866 47.4355 16.434V22.0324C47.4356 22.2798 47.5339 22.5172 47.7088 22.6921C47.8838 22.8671 48.1211 22.9654 48.3686 22.9654H52.1008C52.3483 22.9654 52.5856 22.8671 52.7606 22.6921C52.9356 22.5172 53.0339 22.2798 53.0339 22.0324V16.434ZM51.1678 21.0993H49.3017V17.3671H51.1678V21.0993Z" fill="#5B476B"/>
<path d="M45.57 25.7651C45.57 25.5176 45.4717 25.2803 45.2967 25.1053C45.1217 24.9304 44.8844 24.832 44.637 24.832H40.9047C40.6573 24.832 40.42 24.9304 40.245 25.1053C40.07 25.2803 39.9717 25.5176 39.9717 25.7651V31.3634C39.9717 31.6109 40.07 31.8482 40.245 32.0232C40.42 32.1982 40.6573 32.2965 40.9047 32.2965H44.637C44.8844 32.2965 45.1217 32.1982 45.2967 32.0232C45.4717 31.8482 45.57 31.6109 45.57 31.3634V25.7651ZM43.7039 30.4304H41.8378V26.6981H43.7039V30.4304Z" fill="#5B476B"/>
<path d="M53.0339 25.7651C53.0339 25.5176 52.9356 25.2803 52.7606 25.1053C52.5856 24.9304 52.3483 24.832 52.1008 24.832H48.3686C48.1211 24.832 47.8838 24.9304 47.7088 25.1053C47.5339 25.2803 47.4356 25.5176 47.4355 25.7651V31.3634C47.4356 31.6109 47.5339 31.8482 47.7088 32.0232C47.8838 32.1982 48.1211 32.2965 48.3686 32.2965H52.1008C52.3483 32.2965 52.5856 32.1982 52.7606 32.0232C52.9356 31.8482 53.0339 31.6109 53.0339 31.3634V25.7651ZM51.1678 30.4304H49.3017V26.6981H51.1678V30.4304Z" fill="#5B476B"/>
<path d="M38.1052 16.434C38.1052 16.1866 38.0069 15.9493 37.8319 15.7743C37.6569 15.5993 37.4196 15.501 37.1721 15.501H33.4399C33.1924 15.501 32.9551 15.5993 32.7801 15.7743C32.6052 15.9493 32.5068 16.1866 32.5068 16.434V22.0324C32.5068 22.2798 32.6052 22.5172 32.7801 22.6921C32.9551 22.8671 33.1924 22.9654 33.4399 22.9654H37.1721C37.4196 22.9654 37.6569 22.8671 37.8319 22.6921C38.0069 22.5172 38.1052 22.2798 38.1052 22.0324V16.434ZM36.2391 21.0993H34.373V17.3671H36.2391V21.0993Z" fill="#5B476B"/>
<path d="M38.1052 25.7651C38.1052 25.5176 38.0069 25.2803 37.8319 25.1053C37.6569 24.9304 37.4196 24.832 37.1721 24.832H33.4399C33.1924 24.832 32.9551 24.9304 32.7801 25.1053C32.6052 25.2803 32.5068 25.5176 32.5068 25.7651V31.3634C32.5068 31.6109 32.6052 31.8482 32.7801 32.0232C32.9551 32.1982 33.1924 32.2965 33.4399 32.2965H37.1721C37.4196 32.2965 37.6569 32.1982 37.8319 32.0232C38.0069 31.8482 38.1052 31.6109 38.1052 31.3634V25.7651ZM36.2391 30.4304H34.373V26.6981H36.2391V30.4304Z" fill="#5B476B"/>
<path d="M30.6394 16.434C30.6394 16.1866 30.541 15.9493 30.3661 15.7743C30.1911 15.5993 29.9538 15.501 29.7063 15.501H25.9741C25.7266 15.501 25.4893 15.5993 25.3143 15.7743C25.1393 15.9493 25.041 16.1866 25.041 16.434V22.0324C25.041 22.2798 25.1393 22.5172 25.3143 22.6921C25.4893 22.8671 25.7266 22.9654 25.9741 22.9654H29.7063C29.9538 22.9654 30.1911 22.8671 30.3661 22.6921C30.541 22.5172 30.6394 22.2798 30.6394 22.0324V16.434ZM28.7732 21.0993H26.9071V17.3671H28.7732V21.0993Z" fill="#5B476B"/>
<path d="M30.6394 25.7651C30.6394 25.5176 30.541 25.2803 30.3661 25.1053C30.1911 24.9304 29.9538 24.832 29.7063 24.832H25.9741C25.7266 24.832 25.4893 24.9304 25.3143 25.1053C25.1393 25.2803 25.041 25.5176 25.041 25.7651V31.3634C25.041 31.6109 25.1393 31.8482 25.3143 32.0232C25.4893 32.1982 25.7266 32.2965 25.9741 32.2965H29.7063C29.9538 32.2965 30.1911 32.1982 30.3661 32.0232C30.541 31.8482 30.6394 31.6109 30.6394 31.3634V25.7651ZM28.7732 30.4304H26.9071V26.6981H28.7732V30.4304Z" fill="#5B476B"/>
<path d="M44.637 34.1631H40.9047C40.6573 34.1631 40.42 34.2614 40.245 34.4364C40.07 34.6114 39.9717 34.8487 39.9717 35.0961V40.6945C39.9717 40.942 40.07 41.1793 40.245 41.3543C40.42 41.5292 40.6573 41.6275 40.9047 41.6276H44.637C44.8844 41.6275 45.1217 41.5292 45.2967 41.3543C45.4717 41.1793 45.57 40.942 45.57 40.6945V35.0961C45.57 34.8487 45.4717 34.6114 45.2967 34.4364C45.1217 34.2614 44.8844 34.1631 44.637 34.1631ZM43.7039 39.7614H41.8378V36.0292H43.7039V39.7614Z" fill="#5B476B"/>
<path d="M52.1008 34.1631H48.3686C48.1211 34.1631 47.8838 34.2614 47.7088 34.4364C47.5339 34.6114 47.4356 34.8487 47.4355 35.0961V40.6945C47.4356 40.942 47.5339 41.1793 47.7088 41.3543C47.8838 41.5292 48.1211 41.6275 48.3686 41.6276H52.1008C52.3483 41.6275 52.5856 41.5292 52.7606 41.3543C52.9356 41.1793 53.0339 40.942 53.0339 40.6945V35.0961C53.0339 34.8487 52.9356 34.6114 52.7606 34.4364C52.5856 34.2614 52.3483 34.1631 52.1008 34.1631ZM51.1678 39.7614H49.3017V36.0292H51.1678V39.7614Z" fill="#5B476B"/>
<path d="M37.1721 34.1631H33.4399C33.1924 34.1631 32.9551 34.2614 32.7801 34.4364C32.6052 34.6114 32.5068 34.8487 32.5068 35.0961V40.6945C32.5068 40.942 32.6052 41.1793 32.7801 41.3543C32.9551 41.5292 33.1924 41.6275 33.4399 41.6276H37.1721C37.4196 41.6275 37.6569 41.5292 37.8319 41.3543C38.0069 41.1793 38.1052 40.942 38.1052 40.6945V35.0961C38.1052 34.8487 38.0069 34.6114 37.8319 34.4364C37.6569 34.2614 37.4196 34.1631 37.1721 34.1631ZM36.2391 39.7614H34.373V36.0292H36.2391V39.7614Z" fill="#5B476B"/>
<path d="M29.7063 34.1631H25.9741C25.7266 34.1631 25.4893 34.2614 25.3143 34.4364C25.1393 34.6114 25.041 34.8487 25.041 35.0961V40.6945C25.041 40.942 25.1393 41.1793 25.3143 41.3543C25.4893 41.5292 25.7266 41.6275 25.9741 41.6276H29.7063C29.9538 41.6275 30.1911 41.5292 30.3661 41.3543C30.541 41.1793 30.6394 40.942 30.6394 40.6945V35.0961C30.6394 34.8487 30.541 34.6114 30.3661 34.4364C30.1911 34.2614 29.9538 34.1631 29.7063 34.1631ZM28.7732 39.7614H26.9071V36.0292H28.7732V39.7614Z" fill="#5B476B"/>
<path d="M56.7619 43.2602V14.5687C56.761 13.8266 56.4659 13.1151 55.9411 12.5903C55.4163 12.0656 54.7048 11.7704 53.9627 11.7695H24.1048C23.3627 11.7704 22.6512 12.0656 22.1265 12.5903C21.6017 13.1151 21.3065 13.8266 21.3057 14.5687V43.7268H23.1718V14.5687C23.1718 14.3212 23.2701 14.0839 23.4451 13.9089C23.62 13.734 23.8574 13.6356 24.1048 13.6356H53.9627C54.2102 13.6356 54.4475 13.734 54.6225 13.9089C54.7975 14.0839 54.8958 14.3212 54.8958 14.5687V43.2602H56.7619Z" fill="#5B476B"/>
<path d="M65.1621 45.126H52.0993C51.6045 45.1265 51.1301 45.3232 50.7803 45.6731C50.4304 46.023 50.2337 46.4973 50.2332 46.9921V48.8582H31.1055V47.4586C31.105 46.9638 30.9082 46.4895 30.5584 46.1396C30.2085 45.7898 29.7341 45.593 29.2394 45.5925H9.17862C8.68384 45.593 8.20948 45.7898 7.85962 46.1396C7.50976 46.4895 7.31299 46.9638 7.3125 47.4586V69.852C7.31299 70.3468 7.50976 70.8212 7.85962 71.171C8.20948 71.5209 8.68384 71.7176 9.17862 71.7181H65.1621C65.6569 71.7176 66.1312 71.5209 66.4811 71.171C66.831 70.8212 67.0277 70.3468 67.0282 69.852V46.9921C67.0277 46.4973 66.831 46.023 66.4811 45.6731C66.1312 45.3232 65.6569 45.1265 65.1621 45.126ZM52.0993 46.9921H65.1621V65.6533H52.0993V46.9921ZM31.1055 50.7243H50.2332V52.5904H31.1055V50.7243ZM31.1055 54.4566H50.2332V65.6533H45.1014V60.988C45.1002 59.9985 44.7066 59.0498 44.007 58.3501C43.3073 57.6504 42.3586 57.2569 41.3691 57.2557H39.503C38.5135 57.2569 37.5649 57.6504 36.8652 58.3501C36.1655 59.0498 35.7719 59.9985 35.7708 60.988V65.6533H31.1055V54.4566ZM43.2352 60.988V65.6533H37.6369V60.988C37.6374 60.4932 37.8342 60.0188 38.184 59.669C38.5339 59.3191 39.0082 59.1223 39.503 59.1218H41.3691C41.8639 59.1223 42.3383 59.3191 42.6881 59.669C43.038 60.0188 43.2347 60.4932 43.2352 60.988ZM9.17862 47.4586H29.2394V65.6533H9.17862V47.4586ZM9.17862 69.852V67.5194H65.1626L65.1635 69.852H9.17862Z" fill="#5B476B"/>
<path d="M12.6806 50.2588H11.7475C11.5 50.2588 11.2627 50.3571 11.0877 50.5321C10.9128 50.7071 10.8145 50.9444 10.8145 51.1918C10.8145 51.4393 10.9128 51.6766 11.0877 51.8516C11.2627 52.0266 11.5 52.1249 11.7475 52.1249H12.6806C12.928 52.1249 13.1654 52.0266 13.3403 51.8516C13.5153 51.6766 13.6136 51.4393 13.6136 51.1918C13.6136 50.9444 13.5153 50.7071 13.3403 50.5321C13.1654 50.3571 12.928 50.2588 12.6806 50.2588Z" fill="#5B476B"/>
<path d="M12.6806 53.9902H11.7475C11.5 53.9902 11.2627 54.0885 11.0877 54.2635C10.9128 54.4385 10.8145 54.6758 10.8145 54.9233C10.8145 55.1708 10.9128 55.4081 11.0877 55.5831C11.2627 55.758 11.5 55.8564 11.7475 55.8564H12.6806C12.928 55.8564 13.1654 55.758 13.3403 55.5831C13.5153 55.4081 13.6136 55.1708 13.6136 54.9233C13.6136 54.6758 13.5153 54.4385 13.3403 54.2635C13.1654 54.0885 12.928 53.9902 12.6806 53.9902Z" fill="#5B476B"/>
<path d="M12.6806 57.7227H11.7475C11.5 57.7227 11.2627 57.821 11.0877 57.9959C10.9128 58.1709 10.8145 58.4083 10.8145 58.6557C10.8145 58.9032 10.9128 59.1405 11.0877 59.3155C11.2627 59.4905 11.5 59.5888 11.7475 59.5888H12.6806C12.928 59.5888 13.1654 59.4905 13.3403 59.3155C13.5153 59.1405 13.6136 58.9032 13.6136 58.6557C13.6136 58.4083 13.5153 58.1709 13.3403 57.9959C13.1654 57.821 12.928 57.7227 12.6806 57.7227Z" fill="#5B476B"/>
<path d="M12.6806 61.4561H11.7475C11.5 61.4561 11.2627 61.5544 11.0877 61.7293C10.9128 61.9043 10.8145 62.1417 10.8145 62.3891C10.8145 62.6366 10.9128 62.8739 11.0877 63.0489C11.2627 63.2239 11.5 63.3222 11.7475 63.3222H12.6806C12.928 63.3222 13.1654 63.2239 13.3403 63.0489C13.5153 62.8739 13.6136 62.6366 13.6136 62.3891C13.6136 62.1417 13.5153 61.9043 13.3403 61.7293C13.1654 61.5544 12.928 61.4561 12.6806 61.4561Z" fill="#5B476B"/>
<path d="M17.3427 50.2588H16.4096C16.1622 50.2588 15.9248 50.3571 15.7498 50.5321C15.5749 50.7071 15.4766 50.9444 15.4766 51.1918C15.4766 51.4393 15.5749 51.6766 15.7498 51.8516C15.9248 52.0266 16.1622 52.1249 16.4096 52.1249H17.3427C17.5901 52.1249 17.8275 52.0266 18.0025 51.8516C18.1774 51.6766 18.2757 51.4393 18.2757 51.1918C18.2757 50.9444 18.1774 50.7071 18.0025 50.5321C17.8275 50.3571 17.5901 50.2588 17.3427 50.2588Z" fill="#5B476B"/>
<path d="M17.3427 53.9902H16.4096C16.1622 53.9902 15.9248 54.0885 15.7498 54.2635C15.5749 54.4385 15.4766 54.6758 15.4766 54.9233C15.4766 55.1708 15.5749 55.4081 15.7498 55.5831C15.9248 55.758 16.1622 55.8564 16.4096 55.8564H17.3427C17.5901 55.8564 17.8275 55.758 18.0025 55.5831C18.1774 55.4081 18.2757 55.1708 18.2757 54.9233C18.2757 54.6758 18.1774 54.4385 18.0025 54.2635C17.8275 54.0885 17.5901 53.9902 17.3427 53.9902Z" fill="#5B476B"/>
<path d="M17.3427 57.7227H16.4096C16.1622 57.7227 15.9248 57.821 15.7498 57.9959C15.5749 58.1709 15.4766 58.4083 15.4766 58.6557C15.4766 58.9032 15.5749 59.1405 15.7498 59.3155C15.9248 59.4905 16.1622 59.5888 16.4096 59.5888H17.3427C17.5901 59.5888 17.8275 59.4905 18.0025 59.3155C18.1774 59.1405 18.2757 58.9032 18.2757 58.6557C18.2757 58.4083 18.1774 58.1709 18.0025 57.9959C17.8275 57.821 17.5901 57.7227 17.3427 57.7227Z" fill="#5B476B"/>
<path d="M17.3427 61.4561H16.4096C16.1622 61.4561 15.9248 61.5544 15.7498 61.7293C15.5749 61.9043 15.4766 62.1417 15.4766 62.3891C15.4766 62.6366 15.5749 62.8739 15.7498 63.0489C15.9248 63.2239 16.1622 63.3222 16.4096 63.3222H17.3427C17.5901 63.3222 17.8275 63.2239 18.0025 63.0489C18.1774 62.8739 18.2757 62.6366 18.2757 62.3891C18.2757 62.1417 18.1774 61.9043 18.0025 61.7293C17.8275 61.5544 17.5901 61.4561 17.3427 61.4561Z" fill="#5B476B"/>
<path d="M22.0067 50.2588H21.0737C20.8262 50.2588 20.5889 50.3571 20.4139 50.5321C20.2389 50.7071 20.1406 50.9444 20.1406 51.1918C20.1406 51.4393 20.2389 51.6766 20.4139 51.8516C20.5889 52.0266 20.8262 52.1249 21.0737 52.1249H22.0067C22.2542 52.1249 22.4915 52.0266 22.6665 51.8516C22.8415 51.6766 22.9398 51.4393 22.9398 51.1918C22.9398 50.9444 22.8415 50.7071 22.6665 50.5321C22.4915 50.3571 22.2542 50.2588 22.0067 50.2588Z" fill="#5B476B"/>
<path d="M22.0067 53.9902H21.0737C20.8262 53.9902 20.5889 54.0885 20.4139 54.2635C20.2389 54.4385 20.1406 54.6758 20.1406 54.9233C20.1406 55.1708 20.2389 55.4081 20.4139 55.5831C20.5889 55.758 20.8262 55.8564 21.0737 55.8564H22.0067C22.2542 55.8564 22.4915 55.758 22.6665 55.5831C22.8415 55.4081 22.9398 55.1708 22.9398 54.9233C22.9398 54.6758 22.8415 54.4385 22.6665 54.2635C22.4915 54.0885 22.2542 53.9902 22.0067 53.9902Z" fill="#5B476B"/>
<path d="M22.0067 57.7227H21.0737C20.8262 57.7227 20.5889 57.821 20.4139 57.9959C20.2389 58.1709 20.1406 58.4083 20.1406 58.6557C20.1406 58.9032 20.2389 59.1405 20.4139 59.3155C20.5889 59.4905 20.8262 59.5888 21.0737 59.5888H22.0067C22.2542 59.5888 22.4915 59.4905 22.6665 59.3155C22.8415 59.1405 22.9398 58.9032 22.9398 58.6557C22.9398 58.4083 22.8415 58.1709 22.6665 57.9959C22.4915 57.821 22.2542 57.7227 22.0067 57.7227Z" fill="#5B476B"/>
<path d="M22.0067 61.4561H21.0737C20.8262 61.4561 20.5889 61.5544 20.4139 61.7293C20.2389 61.9043 20.1406 62.1417 20.1406 62.3891C20.1406 62.6366 20.2389 62.8739 20.4139 63.0489C20.5889 63.2239 20.8262 63.3222 21.0737 63.3222H22.0067C22.2542 63.3222 22.4915 63.2239 22.6665 63.0489C22.8415 62.8739 22.9398 62.6366 22.9398 62.3891C22.9398 62.1417 22.8415 61.9043 22.6665 61.7293C22.4915 61.5544 22.2542 61.4561 22.0067 61.4561Z" fill="#5B476B"/>
<path d="M62.4236 51.0056L55.4256 48.6729C55.3094 48.6342 55.1866 48.6187 55.0644 48.6273C54.9422 48.636 54.8228 48.6687 54.7132 48.7235C54.4919 48.8341 54.3235 49.0282 54.2452 49.2629C54.2064 49.3792 54.1909 49.5019 54.1996 49.6242C54.2083 49.7464 54.2409 49.8657 54.2957 49.9753C54.3505 50.085 54.4263 50.1827 54.5189 50.263C54.6115 50.3433 54.7189 50.4046 54.8352 50.4434L61.8331 52.776C61.9494 52.8148 62.0721 52.8303 62.1944 52.8216C62.3166 52.8129 62.4359 52.7803 62.5455 52.7255C62.6552 52.6707 62.7529 52.5949 62.8332 52.5023C62.9135 52.4097 62.9748 52.3023 63.0136 52.186C63.0524 52.0698 63.0678 51.947 63.0592 51.8248C63.0505 51.7026 63.0178 51.5832 62.9631 51.4736C62.9083 51.364 62.8324 51.2662 62.7399 51.1859C62.6473 51.1056 62.5398 51.0443 62.4236 51.0056H62.4236Z" fill="#5B476B"/>
<path d="M62.4236 54.739L55.4256 52.4063C55.1909 52.328 54.9346 52.3462 54.7132 52.4569C54.4919 52.5675 54.3235 52.7616 54.2452 52.9963C54.1669 53.2311 54.1851 53.4874 54.2957 53.7087C54.4064 53.9301 54.6004 54.0985 54.8352 54.1768L61.8331 56.5094C62.0679 56.5877 62.3242 56.5695 62.5455 56.4589C62.7669 56.3483 62.9353 56.1542 63.0136 55.9194C63.0919 55.6846 63.0737 55.4284 62.9631 55.207C62.8524 54.9856 62.6584 54.8173 62.4236 54.739H62.4236Z" fill="#5B476B"/>
<path d="M62.4236 58.4704L55.4256 56.1378C55.1909 56.0595 54.9346 56.0777 54.7132 56.1883C54.4919 56.2989 54.3235 56.493 54.2452 56.7278C54.1669 56.9625 54.1851 57.2188 54.2957 57.4402C54.4064 57.6616 54.6004 57.8299 54.8352 57.9082L61.8331 60.2409C61.9494 60.2796 62.0721 60.2951 62.1944 60.2865C62.3166 60.2778 62.4359 60.2451 62.5455 60.1903C62.6552 60.1356 62.7529 60.0597 62.8332 59.9672C62.9135 59.8746 62.9748 59.7671 63.0136 59.6509C63.0523 59.5346 63.0678 59.4119 63.0592 59.2896C63.0505 59.1674 63.0178 59.0481 62.9631 58.9385C62.9083 58.8288 62.8324 58.7311 62.7399 58.6508C62.6473 58.5705 62.5398 58.5092 62.4236 58.4704H62.4236Z" fill="#5B476B"/>
<path d="M62.4236 62.2009L55.4256 59.8682C55.1909 59.7899 54.9346 59.8081 54.7132 59.9188C54.4919 60.0294 54.3235 60.2235 54.2452 60.4582C54.1669 60.693 54.1851 60.9493 54.2957 61.1707C54.4064 61.392 54.6004 61.5604 54.8352 61.6387L61.8331 63.9713C61.9494 64.0101 62.0721 64.0256 62.1944 64.0169C62.3166 64.0083 62.4359 63.9756 62.5455 63.9208C62.6552 63.866 62.7529 63.7902 62.8332 63.6976C62.9135 63.6051 62.9748 63.4976 63.0136 63.3813C63.0523 63.2651 63.0678 63.1423 63.0592 63.0201C63.0505 62.8979 63.0178 62.7785 62.9631 62.6689C62.9083 62.5593 62.8324 62.4616 62.7399 62.3813C62.6473 62.3009 62.5398 62.2397 62.4236 62.2009H62.4236Z" fill="#5B476B"/>
<path d="M26.6747 50.2588H25.7417C25.4942 50.2588 25.2569 50.3571 25.0819 50.5321C24.9069 50.7071 24.8086 50.9444 24.8086 51.1918C24.8086 51.4393 24.9069 51.6766 25.0819 51.8516C25.2569 52.0266 25.4942 52.1249 25.7417 52.1249H26.6747C26.9222 52.1249 27.1595 52.0266 27.3345 51.8516C27.5095 51.6766 27.6078 51.4393 27.6078 51.1918C27.6078 50.9444 27.5095 50.7071 27.3345 50.5321C27.1595 50.3571 26.9222 50.2588 26.6747 50.2588Z" fill="#5B476B"/>
<path d="M26.6747 53.9902H25.7417C25.4942 53.9902 25.2569 54.0885 25.0819 54.2635C24.9069 54.4385 24.8086 54.6758 24.8086 54.9233C24.8086 55.1708 24.9069 55.4081 25.0819 55.5831C25.2569 55.758 25.4942 55.8564 25.7417 55.8564H26.6747C26.9222 55.8564 27.1595 55.758 27.3345 55.5831C27.5095 55.4081 27.6078 55.1708 27.6078 54.9233C27.6078 54.6758 27.5095 54.4385 27.3345 54.2635C27.1595 54.0885 26.9222 53.9902 26.6747 53.9902Z" fill="#5B476B"/>
<path d="M26.6747 57.7227H25.7417C25.4942 57.7227 25.2569 57.821 25.0819 57.9959C24.9069 58.1709 24.8086 58.4083 24.8086 58.6557C24.8086 58.9032 24.9069 59.1405 25.0819 59.3155C25.2569 59.4905 25.4942 59.5888 25.7417 59.5888H26.6747C26.9222 59.5888 27.1595 59.4905 27.3345 59.3155C27.5095 59.1405 27.6078 58.9032 27.6078 58.6557C27.6078 58.4083 27.5095 58.1709 27.3345 57.9959C27.1595 57.821 26.9222 57.7227 26.6747 57.7227Z" fill="#5B476B"/>
<path d="M26.6747 61.4561H25.7417C25.4942 61.4561 25.2569 61.5544 25.0819 61.7293C24.9069 61.9043 24.8086 62.1417 24.8086 62.3891C24.8086 62.6366 24.9069 62.8739 25.0819 63.0489C25.2569 63.2239 25.4942 63.3222 25.7417 63.3222H26.6747C26.9222 63.3222 27.1595 63.2239 27.3345 63.0489C27.5095 62.8739 27.6078 62.6366 27.6078 62.3891C27.6078 62.1417 27.5095 61.9043 27.3345 61.7293C27.1595 61.5544 26.9222 61.4561 26.6747 61.4561Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

+3
View File
@@ -0,0 +1,3 @@
<svg width="7" height="13" viewBox="0 0 7 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.853553 12.8536C0.658291 13.0488 0.341709 13.0488 0.146447 12.8536C-0.0271197 12.68 -0.0464049 12.4106 0.088591 12.2157L0.146447 12.1464L5.793 6.5L0.146446 0.853554C-0.0271207 0.679988 -0.0464059 0.410563 0.08859 0.215695L0.146446 0.146447C0.320012 -0.02712 0.589436 -0.0464043 0.784304 0.0885921L0.853552 0.146447L6.85355 6.14645C7.02712 6.32001 7.0464 6.58944 6.91141 6.78431L6.85355 6.85355L0.853553 12.8536Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 586 B

+4
View File
@@ -0,0 +1,4 @@
<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M17 33C25.8366 33 33 25.8366 33 17C33 8.16344 25.8366 1 17 1C8.16344 1 1 8.16344 1 17C1 25.8366 8.16344 33 17 33Z" fill="#9A00FF" stroke="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.6464 11.6464C24.8417 11.4512 25.1583 11.4512 25.3536 11.6464C25.5271 11.82 25.5464 12.0894 25.4114 12.2843L25.3536 12.3536L14.3536 23.3536C14.18 23.5271 13.9106 23.5464 13.7157 23.4114L13.6464 23.3536L8.64645 18.3536C8.45118 18.1583 8.45118 17.8417 8.64645 17.6464C8.82001 17.4729 9.08944 17.4536 9.28431 17.5886L9.35355 17.6464L14 22.293L24.6464 11.6464Z" stroke="white" stroke-width="2"/>
</svg>

After

Width:  |  Height:  |  Size: 751 B

+4
View File
@@ -0,0 +1,4 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 20C15.5228 20 20 15.5228 20 10C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 10C0 15.5228 4.47715 20 10 20Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.779 6.65403C14.9011 6.53199 15.0989 6.53199 15.221 6.65403C15.3295 6.76251 15.3415 6.9309 15.2571 7.05269L15.221 7.09597L8.34597 13.971C8.23749 14.0795 8.0691 14.0915 7.94731 14.0071L7.90403 13.971L4.77903 10.846C4.65699 10.7239 4.65699 10.5261 4.77903 10.404C4.88751 10.2956 5.0559 10.2835 5.17769 10.3679L5.22097 10.404L8.125 13.3081L14.779 6.65403Z" fill="#777185"/>
</svg>

After

Width:  |  Height:  |  Size: 705 B

+4
View File
@@ -0,0 +1,4 @@
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M31 16C31 24.2843 24.2843 31 16 31C7.71573 31 1 24.2843 1 16C1 7.71573 7.71573 1 16 1C24.2843 1 31 7.71573 31 16Z" stroke="#9A00FF" stroke-width="2"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.6464 10.6464C23.8417 10.4512 24.1583 10.4512 24.3536 10.6464C24.5271 10.82 24.5464 11.0894 24.4114 11.2843L24.3536 11.3536L13.3536 22.3536C13.18 22.5271 12.9106 22.5464 12.7157 22.4114L12.6464 22.3536L7.64645 17.3536C7.45118 17.1583 7.45118 16.8417 7.64645 16.6464C7.82001 16.4729 8.08944 16.4536 8.28431 16.5886L8.35355 16.6464L13 21.293L23.6464 10.6464Z" stroke="#9A00FF" stroke-width="2"/>
</svg>

After

Width:  |  Height:  |  Size: 709 B

+4
View File
@@ -0,0 +1,4 @@
<svg width="17" height="20" viewBox="0 0 17 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.2747 3.49902H1.97976C1.56044 3.49935 1.15838 3.66608 0.861876 3.96258C0.565369 4.25909 0.398647 4.66115 0.398315 5.08047L0.398315 18.4221C0.399308 18.841 0.566323 19.2424 0.862758 19.5384C1.15919 19.8344 1.56087 20.0008 1.97976 20.0011H11.2747C11.694 20.0008 12.0961 19.834 12.3926 19.5375C12.6891 19.241 12.8558 18.839 12.8561 18.4196V5.08047C12.8545 4.66155 12.6873 4.26026 12.3911 3.96404C12.0949 3.66781 11.6936 3.50067 11.2747 3.49902ZM11.7497 18.4184C11.7497 18.5444 11.6997 18.6652 11.6106 18.7543C11.5215 18.8434 11.4007 18.8934 11.2747 18.8934H1.97601C1.85002 18.8934 1.72919 18.8434 1.64009 18.7543C1.551 18.6652 1.50095 18.5444 1.50095 18.4184V5.08047C1.50095 4.95448 1.551 4.83364 1.64009 4.74455C1.72919 4.65546 1.85002 4.60541 1.97601 4.60541H11.2747C11.4007 4.60541 11.5215 4.65546 11.6106 4.74455C11.6997 4.83364 11.7497 4.95448 11.7497 5.08047V18.4184Z" fill="#5B476B"/>
<path d="M14.8305 0H5.53555C5.11622 0.000331089 4.71417 0.167054 4.41766 0.463561C4.12116 0.760068 3.95443 1.16212 3.9541 1.58145C3.9541 1.72816 4.01238 1.86887 4.11613 1.97262C4.21987 2.07636 4.36058 2.13464 4.5073 2.13464C4.65401 2.13464 4.79472 2.07636 4.89846 1.97262C5.00221 1.86887 5.06049 1.72816 5.06049 1.58145C5.06049 1.45545 5.11054 1.33462 5.19963 1.24553C5.28872 1.15644 5.40956 1.10639 5.53555 1.10639H14.8305C14.9565 1.10639 15.0773 1.15644 15.1664 1.24553C15.2555 1.33462 15.3055 1.45545 15.3055 1.58145V14.9231C15.3055 14.9855 15.2932 15.0473 15.2694 15.1049C15.2455 15.1625 15.2105 15.2149 15.1664 15.259C15.1223 15.3031 15.0699 15.3381 15.0123 15.362C14.9546 15.3859 14.8928 15.3982 14.8305 15.3982C14.6837 15.3982 14.543 15.4565 14.4393 15.5602C14.3355 15.6639 14.2773 15.8047 14.2773 15.9514C14.2773 16.0981 14.3355 16.2388 14.4393 16.3425C14.543 16.4463 14.6837 16.5046 14.8305 16.5046C15.2498 16.5042 15.6518 16.3375 15.9483 16.041C16.2449 15.7445 16.4116 15.3424 16.4119 14.9231V1.58145C16.4116 1.16212 16.2449 0.760068 15.9483 0.463561C15.6518 0.167054 15.2498 0.000331089 14.8305 0Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

+15
View File
@@ -0,0 +1,15 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 40C31.0457 40 40 31.0457 40 20C40 8.95431 31.0457 0 20 0C8.95431 0 0 8.95431 0 20C0 31.0457 8.95431 40 20 40Z" fill="#F4E5FF"/>
<path d="M17.0916 13.6854C15.3664 14.416 13.9827 15.7999 13.252 17.5249H13.8644C14.5263 16.1068 15.6733 14.9596 17.0916 14.2979V13.6854Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.185858"/>
<path d="M22.6956 13.6854V14.2979C24.1137 14.9597 25.2609 16.1068 25.9225 17.5249H26.535C25.8045 15.7999 24.4207 14.416 22.6956 13.6854Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.185858"/>
<path d="M17.0916 26.9686V26.3561C15.6733 25.6943 14.5263 24.5472 13.8644 23.129H13.252C13.9827 24.8541 15.3664 26.2381 17.0916 26.9686Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.185858"/>
<path d="M25.9225 23.129C25.2607 24.5472 24.1137 25.6943 22.6956 26.3561V26.9686C24.4207 26.2381 25.8045 24.8541 26.5352 23.129H25.9225Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.185858"/>
<path d="M20.6975 23.129C20.4623 22.9867 20.1877 22.9034 19.8934 22.9034C19.5991 22.9034 19.3245 22.9867 19.0893 23.129C18.6369 23.4025 18.333 23.8976 18.333 24.4638C18.333 25.3242 19.0331 26.0241 19.8934 26.0241C20.7536 26.0241 21.4538 25.324 21.4538 24.4638C21.4538 23.8978 21.1499 23.4027 20.6975 23.129ZM19.8934 25.4661C19.3408 25.4661 18.891 25.0165 18.891 24.4638C18.891 23.911 19.3406 23.4614 19.8934 23.4614C20.4462 23.4614 20.8957 23.911 20.8957 24.4638C20.8957 25.0165 20.446 25.4661 19.8934 25.4661Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.185858"/>
<path d="M17.8583 27.9998H18.1374C18.1374 27.3359 18.6776 26.7957 19.3415 26.7957H20.4454C21.1093 26.7957 21.6495 27.3359 21.6495 27.9998H21.9286H22.2077C22.2077 27.028 21.4171 26.2376 20.4456 26.2376H19.3415C18.3698 26.2376 17.5793 27.0282 17.5793 27.9998H17.8583Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.185858"/>
<path d="M21.4538 13.5604C21.4538 12.6999 20.7536 12 19.8934 12C19.0331 12 18.333 12.7001 18.333 13.5604C18.333 14.4206 19.0331 15.1207 19.8934 15.1207C20.7536 15.1207 21.4538 14.4208 21.4538 13.5604ZM18.891 13.5604C18.891 13.0078 19.3406 12.558 19.8934 12.558C20.4462 12.558 20.8957 13.0076 20.8957 13.5604C20.8957 14.1132 20.4462 14.5627 19.8934 14.5627C19.3406 14.5627 18.891 14.113 18.891 13.5604Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.185858"/>
<path d="M17.5791 17.0966H18.1373C18.1373 16.4327 18.6775 15.8927 19.3414 15.8927H20.4453C21.1092 15.8927 21.6492 16.4327 21.6494 17.0966H22.2077C22.2077 16.1249 21.4171 15.3345 20.4455 15.3345H19.3414C18.3697 15.3345 17.5791 16.1249 17.5791 17.0966Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.185858"/>
<path d="M26.0259 17.6392C25.1655 17.6392 24.4656 18.3393 24.4656 19.1995C24.4656 20.0598 25.1657 20.7599 26.0259 20.7599C26.8864 20.7599 27.5863 20.0598 27.5863 19.1995C27.5863 18.3393 26.8864 17.6392 26.0259 17.6392ZM26.0259 20.2019C25.4734 20.2019 25.0236 19.7523 25.0236 19.1995C25.0236 18.6469 25.4732 18.1972 26.0259 18.1972C26.5785 18.1972 27.0283 18.6467 27.0283 19.1995C27.0281 19.7523 26.5785 20.2019 26.0259 20.2019Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.185858"/>
<path d="M27.7818 22.7356H28.0609H28.34C28.34 21.7639 27.5494 20.9734 26.5779 20.9734H25.4738C24.5021 20.9734 23.7117 21.7641 23.7117 22.7356H23.9908H24.2699C24.2699 22.0717 24.8101 21.5315 25.474 21.5315H26.5779C27.2418 21.5315 27.7818 22.0717 27.7818 22.7356Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.185858"/>
<path d="M13.7608 17.6392C12.9004 17.6392 12.2004 18.3393 12.2004 19.1995C12.2004 20.0598 12.9006 20.7599 13.7608 20.7599C14.6211 20.7599 15.3212 20.0598 15.3212 19.1995C15.3212 18.3393 14.6212 17.6392 13.7608 17.6392ZM13.7608 20.2019C13.2082 20.2019 12.7585 19.7523 12.7585 19.1995C12.7585 18.6469 13.208 18.1972 13.7608 18.1972C14.3136 18.1972 14.7631 18.6467 14.7631 19.1995C14.7631 19.7523 14.3136 20.2019 13.7608 20.2019Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.185858"/>
<path d="M12.005 22.7356C12.005 22.0717 12.5452 21.5315 13.2091 21.5315H14.313C14.9769 21.5315 15.5171 22.0717 15.5171 22.7356H15.7962H16.0753C16.0753 21.7639 15.2847 20.9734 14.3132 20.9734H13.2093C12.2374 20.9733 11.4468 21.7639 11.4468 22.7356H11.7259H12.005Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.185858"/>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

+4
View File
@@ -0,0 +1,4 @@
<svg width="31" height="32" viewBox="0 0 31 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M30.1996 6.94118L21.277 0.359133C20.9608 0.127417 20.5793 0.00170662 20.1872 0L2.76928 4.33437C2.2907 4.35512 1.83864 4.55996 1.5075 4.9061C1.17636 5.25224 0.991738 5.71292 0.992188 6.19195V23.5294C0.993551 23.8241 1.06501 24.1143 1.20067 24.3759C1.33633 24.6375 1.5323 24.8631 1.77237 25.0341L10.6145 31.5789C10.9451 31.8691 11.3696 32.0296 11.8095 32.031H11.8838L29.2213 27.6966C29.6988 27.6743 30.1493 27.4688 30.4791 27.1228C30.8089 26.7768 30.9927 26.317 30.9922 25.839V8.50155C30.9985 8.19636 30.9294 7.89433 30.7912 7.62217C30.6529 7.35002 30.4498 7.11612 30.1996 6.94118ZM28.0696 6.87926L22.0448 8.37771V2.47678L28.0696 6.87926ZM20.2492 1.23839C20.4024 1.25379 20.5444 1.32577 20.6475 1.44026C20.7505 1.55476 20.8072 1.70355 20.8064 1.85759V8.66873L15.599 9.96904L11.729 10.935C11.4321 10.951 11.1433 11.038 10.8869 11.1889L3.12222 5.50464L20.2492 1.23839ZM2.23058 6.3839L10.0758 12.1424C9.99612 12.3543 9.95421 12.5786 9.95194 12.805V22.3529L2.78785 24.1486C2.63459 24.1332 2.49257 24.0612 2.38952 23.9467C2.28648 23.8322 2.22981 23.6834 2.23058 23.5294V6.3839ZM9.95194 23.6285V29.5294L3.95813 25.1269L9.95194 23.6285ZM29.7662 25.8081C29.7662 25.9723 29.7009 26.1298 29.5848 26.2459C29.4687 26.362 29.3112 26.4272 29.147 26.4272L11.7476 30.7616C11.6039 30.7457 11.4702 30.68 11.3699 30.5759C11.2681 30.4639 11.2108 30.3185 11.2089 30.1672V23.356V12.8297C11.2089 12.6655 11.2741 12.508 11.3903 12.3919C11.5064 12.2758 11.6639 12.2105 11.8281 12.2105L22.0448 9.64706L29.2089 7.86378C29.3622 7.87918 29.5042 7.95115 29.6072 8.06565C29.7103 8.18014 29.767 8.32894 29.7662 8.48297V25.8081Z" fill="white"/>
<path d="M26.4519 17.9558C26.4098 17.7975 26.3066 17.6624 26.165 17.58C26.0234 17.4976 25.855 17.4746 25.6965 17.5162L21.6655 18.575V14.4883C21.6655 14.3241 21.6003 14.1666 21.4842 14.0505C21.3681 13.9344 21.2106 13.8691 21.0464 13.8691C20.8821 13.8691 20.7246 13.9344 20.6085 14.0505C20.4924 14.1666 20.4272 14.3241 20.4272 14.4883V18.897L15.8513 20.1354C15.6871 20.1559 15.5377 20.2408 15.4361 20.3715C15.3345 20.5021 15.289 20.6678 15.3095 20.832C15.33 20.9962 15.415 21.1455 15.5456 21.2472C15.6762 21.3488 15.8419 21.3943 16.0061 21.3738C16.0596 21.3799 16.1136 21.3799 16.1671 21.3738L20.4272 20.2469V24.0982C20.4272 24.2625 20.4924 24.42 20.6085 24.5361C20.7246 24.6522 20.8821 24.7174 21.0464 24.7174C21.2106 24.7174 21.3681 24.6522 21.4842 24.5361C21.6003 24.42 21.6655 24.2625 21.6655 24.0982V19.8506L25.9999 18.7051C26.1591 18.6655 26.2962 18.5644 26.3809 18.424C26.4657 18.2835 26.4912 18.1151 26.4519 17.9558Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

+4
View File
@@ -0,0 +1,4 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.9956 3.90441L11.9766 0.202012C11.7987 0.071672 11.5842 0.000959974 11.3636 0L1.56602 2.43808C1.29682 2.44976 1.04254 2.56498 0.85627 2.75968C0.670003 2.95438 0.566154 3.21352 0.566407 3.48297V13.2353C0.567173 13.4011 0.607371 13.5643 0.68368 13.7114C0.759989 13.8586 0.870218 13.9855 1.00526 14.0817L5.97895 17.7632C6.16494 17.9263 6.40373 18.0167 6.65116 18.0174H6.69296L16.4453 15.5793C16.7139 15.5668 16.9673 15.4512 17.1528 15.2566C17.3383 15.062 17.4417 14.8033 17.4414 14.5344V4.78212C17.4449 4.61045 17.4061 4.44056 17.3283 4.28747C17.2506 4.13439 17.1363 4.00282 16.9956 3.90441ZM15.7974 3.86958L12.4085 4.71246V1.39319L15.7974 3.86958ZM11.3984 0.696594C11.4847 0.705258 11.5645 0.745744 11.6225 0.810148C11.6805 0.874551 11.7124 0.958247 11.7119 1.04489V4.87616L8.78274 5.60758L6.60588 6.15093C6.43883 6.15992 6.27638 6.2089 6.1322 6.29373L1.76455 3.09636L11.3984 0.696594ZM1.263 3.59094L5.67593 6.83011C5.63112 6.94931 5.60754 7.07545 5.60627 7.20279V12.5735L1.57647 13.5836C1.49026 13.5749 1.41037 13.5344 1.35241 13.47C1.29444 13.4056 1.26257 13.3219 1.263 13.2353V3.59094ZM5.60627 13.291V16.6103L2.23475 14.1339L5.60627 13.291ZM16.7518 14.517C16.7518 14.6094 16.7151 14.698 16.6498 14.7633C16.5844 14.8286 16.4959 14.8653 16.4035 14.8653L6.61633 17.3034C6.53548 17.2945 6.46031 17.2575 6.40387 17.1989C6.34661 17.1359 6.31439 17.0542 6.31331 16.969V13.1378V7.21672C6.31331 7.12434 6.35001 7.03575 6.41532 6.97044C6.48064 6.90512 6.56923 6.86842 6.66161 6.86842L12.4085 5.42647L16.4383 4.42337C16.5245 4.43204 16.6044 4.47252 16.6624 4.53693C16.7203 4.60133 16.7522 4.68503 16.7518 4.77167V14.517Z" fill="#777185"/>
<path d="M14.8875 10.1015C14.8638 10.0125 14.8058 9.93643 14.7261 9.89008C14.6465 9.84373 14.5517 9.83083 14.4626 9.85421L12.1952 10.4498V8.15103C12.1952 8.05866 12.1585 7.97007 12.0932 7.90475C12.0278 7.83943 11.9392 7.80273 11.8469 7.80273C11.7545 7.80273 11.6659 7.83943 11.6006 7.90475C11.5353 7.97007 11.4986 8.05866 11.4986 8.15103V10.6309L8.92466 11.3275C8.83229 11.339 8.74828 11.3868 8.69113 11.4603C8.63397 11.5338 8.60835 11.627 8.6199 11.7193C8.63145 11.8117 8.67922 11.8957 8.7527 11.9529C8.82618 12.01 8.91936 12.0356 9.01173 12.0241C9.04182 12.0275 9.0722 12.0275 9.10229 12.0241L11.4986 11.3902V13.5566C11.4986 13.649 11.5353 13.7376 11.6006 13.8029C11.6659 13.8682 11.7545 13.9049 11.8469 13.9049C11.9392 13.9049 12.0278 13.8682 12.0932 13.8029C12.1585 13.7376 12.1952 13.649 12.1952 13.5566V11.1673L14.6333 10.5229C14.7228 10.5007 14.7999 10.4438 14.8476 10.3648C14.8952 10.2858 14.9096 10.1911 14.8875 10.1015Z" fill="#777185"/>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

+9
View File
@@ -0,0 +1,9 @@
<svg width="17" height="18" viewBox="0 0 17 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.4327 3.90093L11.4102 0.202012C11.2323 0.071672 11.0177 0.000959974 10.7972 0L0.999613 2.43808C0.730413 2.44976 0.476131 2.56498 0.289864 2.75968C0.103597 2.95438 -0.000252639 3.21352 4.61552e-07 3.48297V13.2353C0.000767015 13.4011 0.040965 13.5643 0.117274 13.7114C0.193582 13.8586 0.303811 13.9855 0.438855 14.0817L5.42299 17.7632C5.60817 17.9223 5.8441 18.01 6.08824 18.0104H6.13003L15.8824 15.5724C16.1516 15.5607 16.4058 15.4455 16.5921 15.2508C16.7784 15.0561 16.8822 14.7969 16.882 14.5275V4.77515C16.8845 4.60376 16.8449 4.43437 16.7665 4.28191C16.6882 4.12945 16.5735 3.99862 16.4327 3.90093ZM16.1923 14.2802L11.8073 11.0515C11.8293 10.9685 11.841 10.8831 11.8421 10.7972V5.42299L15.8789 4.41641C15.9651 4.42507 16.045 4.46556 16.1029 4.52996C16.1609 4.59437 16.1928 4.67806 16.1923 4.76471V14.2802ZM1.01006 13.5836C0.923851 13.5749 0.843963 13.5344 0.786 13.47C0.728037 13.4056 0.696161 13.3219 0.696595 13.2353V3.59094L5.11649 6.83359C5.0703 6.95119 5.04667 7.07644 5.04683 7.20279V12.577L1.01006 13.5836ZM5.04683 13.291V16.6138L1.66834 14.1339L5.04683 13.291ZM5.74342 7.20279C5.74342 7.11041 5.78012 7.02182 5.84544 6.9565C5.91075 6.89118 5.99934 6.85449 6.09172 6.85449L11.1455 5.59714V10.7972C11.1455 10.8896 11.1088 10.9782 11.0435 11.0435C10.9782 11.1088 10.8896 11.1455 10.7972 11.1455L5.74342 12.4029V7.20279ZM11.8421 4.71594V1.39319L15.231 3.88351L11.8421 4.71594ZM10.832 0.696594C10.9183 0.705258 10.9981 0.745744 11.0561 0.810148C11.1141 0.874551 11.1459 0.958247 11.1455 1.04489V4.87616L6.04644 6.15789C5.87895 6.16712 5.71628 6.21736 5.57276 6.30418L1.19814 3.09636L10.832 0.696594ZM6.05689 17.2999C5.97068 17.2913 5.89079 17.2508 5.83283 17.1864C5.77486 17.122 5.74299 17.0383 5.74342 16.9516V13.1204L10.8425 11.8421C11.0518 11.832 11.2533 11.7592 11.4207 11.6331L15.8301 14.8688L6.05689 17.2999Z" fill="url(#paint0_linear)"/>
<defs>
<linearGradient id="paint0_linear" x1="16.249" y1="18.0104" x2="-0.418625" y2="1.75368" gradientUnits="userSpaceOnUse">
<stop stop-color="#6D00E6"/>
<stop offset="1" stop-color="#9A00FF"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

+4
View File
@@ -0,0 +1,4 @@
<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.9452 43.7487C36.0792 43.7487 45.1052 34.7228 45.1052 23.5887C45.1052 12.4547 36.0792 3.42871 24.9452 3.42871C13.8111 3.42871 4.78516 12.4547 4.78516 23.5887C4.78516 34.7228 13.8111 43.7487 24.9452 43.7487Z" fill="#F4E5FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.06 13.872C25.9996 13.5388 25.7079 13.2861 25.3573 13.2861C24.9628 13.2861 24.643 13.6059 24.643 14.0004V23.2861H15.3569L15.2285 23.2976C14.8953 23.3581 14.6426 23.6497 14.6426 24.0004C14.6426 24.3949 14.9624 24.7147 15.3569 24.7147H24.643V34.0004L24.6545 34.1288C24.715 34.462 25.0066 34.7147 25.3573 34.7147C25.7518 34.7147 26.0716 34.3949 26.0716 34.0004V24.7147H35.3569L35.4853 24.7031C35.8185 24.6427 36.0712 24.351 36.0712 24.0004C36.0712 23.6059 35.7514 23.2861 35.3569 23.2861H26.0716V14.0004L26.06 13.872Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 965 B

+7
View File
@@ -0,0 +1,7 @@
<svg width="49" height="48" viewBox="0 0 49 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.5887 45.4626C35.7228 45.4626 44.7487 36.4366 44.7487 25.3026C44.7487 14.1685 35.7228 5.14258 24.5887 5.14258C13.4546 5.14258 4.42871 14.1685 4.42871 25.3026C4.42871 36.4366 13.4546 45.4626 24.5887 45.4626Z" fill="#F4E5FF"/>
<mask id="path-2-inside-1_776_23515" fill="white">
<path fill-rule="evenodd" clip-rule="evenodd" d="M33.57 15.0064L30.5718 25.2857L28.0004 22.7143L25.0004 30L22.429 27.8571L17.8213 37.4017C19.9095 38.6871 22.3684 39.4286 25.0004 39.4286C32.5746 39.4286 38.7147 33.2885 38.7147 25.7143C38.7147 21.3825 36.7063 17.5197 33.57 15.0064ZM30.1967 13.0186L28.8576 19.7143L27.1433 17.5714L23.7147 26.1429L21.1433 24L17.3514 37.0991C13.6929 34.6362 11.2861 30.4563 11.2861 25.7143C11.2861 18.1401 17.4262 12 25.0004 12C26.8395 12 28.5941 12.362 30.1967 13.0186Z"/>
</mask>
<path d="M30.5718 25.2857L29.8647 25.9928L31.059 27.187L31.5318 25.5657L30.5718 25.2857ZM33.57 15.0064L34.1953 14.2261L33.0286 13.2911L32.61 14.7264L33.57 15.0064ZM28.0004 22.7143L28.7075 22.0072L27.6469 20.9465L27.0757 22.3335L28.0004 22.7143ZM25.0004 30L24.3602 30.7682L25.4065 31.6401L25.9251 30.3808L25.0004 30ZM22.429 27.8571L23.0692 27.0889L22.0853 26.269L21.5284 27.4224L22.429 27.8571ZM17.8213 37.4017L16.9207 36.9669L16.5282 37.78L17.2971 38.2533L17.8213 37.4017ZM30.1967 13.0186L31.1773 13.2148L31.339 12.406L30.5758 12.0933L30.1967 13.0186ZM28.8576 19.7143L28.0767 20.339L29.4173 22.0147L29.8381 19.9104L28.8576 19.7143ZM27.1433 17.5714L27.9241 16.9467L26.8521 15.6067L26.2148 17.2L27.1433 17.5714ZM23.7147 26.1429L23.0745 26.9111L24.132 27.7923L24.6432 26.5142L23.7147 26.1429ZM21.1433 24L21.7835 23.2318L20.6081 22.2523L20.1827 23.7219L21.1433 24ZM17.3514 37.0991L16.793 37.9286L17.9307 38.6945L18.312 37.3771L17.3514 37.0991ZM31.5318 25.5657L34.53 15.2864L32.61 14.7264L29.6118 25.0057L31.5318 25.5657ZM27.2933 23.4214L29.8647 25.9928L31.279 24.5786L28.7075 22.0072L27.2933 23.4214ZM25.9251 30.3808L28.9251 23.095L27.0757 22.3335L24.0757 29.6192L25.9251 30.3808ZM21.7888 28.6254L24.3602 30.7682L25.6406 29.2318L23.0692 27.0889L21.7888 28.6254ZM18.7218 37.8364L23.3295 28.2919L21.5284 27.4224L16.9207 36.9669L18.7218 37.8364ZM25.0004 38.4286C22.5587 38.4286 20.2806 37.7413 18.3455 36.5501L17.2971 38.2533C19.5384 39.6329 22.178 40.4286 25.0004 40.4286V38.4286ZM37.7147 25.7143C37.7147 32.7362 32.0223 38.4286 25.0004 38.4286V40.4286C33.1269 40.4286 39.7147 33.8408 39.7147 25.7143H37.7147ZM32.9446 15.7868C35.8544 18.1185 37.7147 21.6988 37.7147 25.7143H39.7147C39.7147 21.0662 37.5583 16.921 34.1953 14.2261L32.9446 15.7868ZM29.2161 12.8225L27.877 19.5182L29.8381 19.9104L31.1773 13.2148L29.2161 12.8225ZM29.6384 19.0896L27.9241 16.9467L26.3624 18.1961L28.0767 20.339L29.6384 19.0896ZM26.2148 17.2L22.7862 25.7715L24.6432 26.5142L28.0718 17.9428L26.2148 17.2ZM24.3549 25.3746L21.7835 23.2318L20.5031 24.7682L23.0745 26.9111L24.3549 25.3746ZM20.1827 23.7219L16.3909 36.821L18.312 37.3771L22.1038 24.2781L20.1827 23.7219ZM17.9099 36.2695C14.5156 33.9845 12.2861 30.1096 12.2861 25.7143H10.2861C10.2861 30.803 12.8702 35.2878 16.793 37.9286L17.9099 36.2695ZM12.2861 25.7143C12.2861 18.6924 17.9785 13 25.0004 13V11C16.8739 11 10.2861 17.5878 10.2861 25.7143H12.2861ZM25.0004 13C26.7073 13 28.3332 13.3358 29.8176 13.944L30.5758 12.0933C28.855 11.3882 26.9718 11 25.0004 11V13Z" fill="#5B476B" mask="url(#path-2-inside-1_776_23515)"/>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

+4
View File
@@ -0,0 +1,4 @@
<svg width="33" height="32" viewBox="0 0 33 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.4998 29.4396C23.9225 29.4396 29.9398 23.4223 29.9398 15.9996C29.9398 8.57686 23.9225 2.55957 16.4998 2.55957C9.07711 2.55957 3.05981 8.57686 3.05981 15.9996C3.05981 23.4223 9.07711 29.4396 16.4998 29.4396Z" fill="#F4E5FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.8049 3.14947L4.88936 9.45155V22.8264L8.12807 21.0504L8.1931 13.1234C8.19658 12.6989 8.49739 12.1828 8.86496 11.9706L12.8583 9.66505C13.2259 9.45283 13.5211 9.62486 13.5176 10.0493L13.4515 18.1053C13.4514 18.114 13.4512 18.1227 13.4509 18.1314L15.8049 16.8405L15.8049 3.14947ZM16.7655 2.8156L16.7655 16.6089C16.907 16.6308 17.0455 16.6772 17.1746 16.748L28.2593 22.8267V9.45155L16.7655 2.8156ZM16.5743 29.6905L5.758 23.4457L16.4355 17.5903C16.5219 17.543 16.6264 17.543 16.7127 17.5903L27.3905 23.4458L16.5743 29.6905ZM16.9586 1.81781C16.7208 1.68052 16.4279 1.68052 16.1901 1.81781L4.31297 8.67506C4.07519 8.81234 3.92871 9.06605 3.92871 9.34062V23.0551C3.92871 23.3297 4.07519 23.5834 4.31297 23.7207L16.1901 30.5779C16.4279 30.7152 16.7208 30.7152 16.9586 30.5779L28.8357 23.7207C29.0735 23.5834 29.22 23.3297 29.22 23.0551V9.34062C29.22 9.06605 29.0735 8.81234 28.8357 8.67506L16.9586 1.81781ZM20.3634 10.7215L20.3981 14.9482L24.0586 17.0617L24.024 12.835L20.3634 10.7215ZM19.5677 14.66C19.5712 15.0845 19.872 15.6006 20.2395 15.8128L24.2329 18.1184C24.6005 18.3306 24.8956 18.1586 24.8922 17.7341L24.8543 13.1232C24.8509 12.6987 24.55 12.1826 24.1825 11.9704L20.1891 9.66483C19.8215 9.45261 19.5264 9.62464 19.5299 10.0491L19.5677 14.66ZM8.96054 20.507L9.02347 12.8352L12.6841 10.7217L12.6211 18.3935L8.96054 20.507ZM17.175 19.4432C16.8047 19.2349 16.3539 19.2292 15.9784 19.428L11.033 22.0462C10.1693 22.5034 10.1417 23.7308 10.9841 24.2263L15.9286 27.1349C16.3299 27.3709 16.829 27.3642 17.2237 27.1175L21.8783 24.2084C22.6823 23.7058 22.6551 22.5258 21.8286 22.0609L17.175 19.4432ZM16.4279 20.277C16.5146 20.2311 16.6186 20.2325 16.7041 20.2805L21.3577 22.8982C21.5484 23.0055 21.5547 23.2778 21.3691 23.3938L16.7146 26.3028C16.6235 26.3598 16.5083 26.3613 16.4157 26.3069L11.4712 23.3983C11.2768 23.284 11.2831 23.0007 11.4825 22.8952L16.4279 20.277Z" fill="#5B476B"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

+3
View File
@@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.31579 0H0.421053C0.188512 0 0 0.188512 0 0.421053V6.31579C0 6.54833 0.188512 6.73685 0.421053 6.73685H6.31579C6.54833 6.73685 6.73685 6.54833 6.73685 6.31579V0.421053C6.73685 0.188512 6.54833 0 6.31579 0ZM5.89468 0.842286V5.89492H0.842041V0.842286H5.89468ZM15.579 0H9.68429C9.45175 0 9.26324 0.188512 9.26324 0.421053V6.31579C9.26324 6.54833 9.45175 6.73685 9.68429 6.73685H15.579C15.8116 6.73685 16.0001 6.54833 16.0001 6.31579V0.421053C16.0001 0.188512 15.8116 0 15.579 0ZM15.1579 0.842286V5.89492H10.1053V0.842286H15.1579ZM9.68429 9.26307H15.579C15.8116 9.26307 16.0001 9.45158 16.0001 9.68412V15.5789C16.0001 15.8114 15.8116 15.9999 15.579 15.9999H9.68429C9.45175 15.9999 9.26324 15.8114 9.26324 15.5789V9.68412C9.26324 9.45158 9.45175 9.26307 9.68429 9.26307ZM15.1579 15.1579V10.1052H10.1053V15.1579H15.1579ZM6.31579 9.26307H0.421053C0.188512 9.26307 0 9.45158 0 9.68412V15.5789C0 15.8114 0.188512 15.9999 0.421053 15.9999H6.31579C6.54833 15.9999 6.73685 15.8114 6.73685 15.5789V9.68412C6.73685 9.45158 6.54833 9.26307 6.31579 9.26307ZM5.89468 10.1052V15.1579H0.842041V10.1052H5.89468Z" fill="current"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

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