first commit
@@ -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;
|
||||
}
|
||||
@@ -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;
|
||||
@@ -0,0 +1,3 @@
|
||||
import App from './App';
|
||||
|
||||
export default App;
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -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>
|
||||
@@ -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.');
|
||||
//});
|
||||
//});
|
||||
@@ -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 };
|
||||
@@ -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 };
|
||||
@@ -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 },
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
);
|
||||
};
|
||||
@@ -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>
|
||||
);
|
||||
@@ -0,0 +1,4 @@
|
||||
export { Routes } from './Routes';
|
||||
export { PrivateRoute } from './PrivateRoutes';
|
||||
export { PublicRoute } from './PublicRoutes';
|
||||
export { RedirectRoute } from './RedirectRoute';
|
||||
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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 |
@@ -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="M15.7256 29.1656C23.1484 29.1656 29.1656 23.1484 29.1656 15.7256C29.1656 8.30294 23.1484 2.28564 15.7256 2.28564C8.30294 2.28564 2.28564 8.30294 2.28564 15.7256C2.28564 23.1484 8.30294 29.1656 15.7256 29.1656Z" fill="#F4E5FF"/>
|
||||
<path d="M24.3858 5.71436V6.86247H25.0728V5.71436H24.3858ZM22.18 6.56414L21.7189 7.06135L22.5687 7.83882L23.0297 7.3416L22.18 6.56414ZM27.2696 6.62742L26.4831 7.46817L26.9803 7.92922L27.7668 7.08848L27.2696 6.62742ZM13.8177 7.01615C10.4779 7.01615 7.76978 9.7251 7.76978 13.0641C7.76938 13.1175 7.78183 13.1701 7.80608 13.2177C7.83033 13.2653 7.86566 13.3063 7.9091 13.3373C7.95254 13.3684 8.00281 13.3885 8.05566 13.396C8.10851 13.4035 8.16239 13.3982 8.21275 13.3805C8.6481 13.2267 8.99135 13.0187 9.31567 12.9556C9.63998 12.8925 9.94835 12.9189 10.4457 13.3263C10.5012 13.3718 10.5699 13.3981 10.6416 13.4014C10.7133 13.4046 10.7841 13.3846 10.8435 13.3443C11.2274 13.0823 11.6166 12.9103 12.0549 12.8833C12.4207 12.8608 12.8422 12.9418 13.3476 13.1907V20.7574H13.2301C13.2243 20.751 13.2183 20.7449 13.212 20.7394L7.6161 15.1164C7.61031 15.1101 7.60426 15.1041 7.59802 15.0983C7.52184 15.0339 7.41567 15.0065 7.31777 15.026C7.25222 15.0408 7.19144 15.076 7.146 15.1254L5.96173 16.3007C5.84127 16.4207 5.83703 16.6371 5.9527 16.7617L7.45339 18.2714L5.85326 20.7575H4.32545C4.23817 20.7594 4.15513 20.7955 4.09424 20.8581C4.03336 20.9207 3.99951 21.0047 4.00001 21.092V22.2943C3.99951 22.3816 4.03336 22.4656 4.09424 22.5282C4.15513 22.5908 4.23817 22.627 4.32545 22.6289H4.61474V26.2631C4.61388 26.4384 4.77384 26.5985 4.94923 26.5975H6.15159C6.32698 26.5975 6.48702 26.4384 6.48608 26.2631V22.6289H25.8684V26.2631C25.8675 26.4384 26.0275 26.5985 26.2029 26.5975H27.4052C27.5806 26.5975 27.7407 26.4384 27.7397 26.2631V22.6289H27.8392C27.8832 22.6291 27.9268 22.6206 27.9675 22.6039C28.0082 22.5871 28.0451 22.5625 28.0762 22.5314C28.1073 22.5003 28.132 22.4633 28.1487 22.4226C28.1654 22.3819 28.1739 22.3383 28.1737 22.2943V21.092C28.1739 21.048 28.1654 21.0044 28.1487 20.9637C28.132 20.923 28.1073 20.8861 28.0762 20.855C28.0451 20.8239 28.0082 20.7992 27.9675 20.7825C27.9268 20.7658 27.8832 20.7573 27.8392 20.7575H14.3421V13.2179C14.5527 13.12 14.7305 13.0221 14.9297 12.9829C15.2456 12.9207 15.6783 12.9478 16.4936 13.3626C16.5529 13.393 16.6198 13.4049 16.6859 13.3968C16.752 13.3888 16.8141 13.3611 16.8643 13.3174C17.3617 12.8769 17.7293 12.8092 18.1209 12.8653C18.5125 12.9215 18.9332 13.1484 19.3956 13.3716C19.447 13.3968 19.504 13.4083 19.5611 13.4051C19.6183 13.4018 19.6736 13.3838 19.7218 13.3529C19.7699 13.322 19.8093 13.2792 19.8361 13.2287C19.8629 13.1781 19.8762 13.1214 19.8747 13.0642C19.8747 9.72524 17.1575 7.01629 13.8177 7.01629L13.8177 7.01615ZM24.666 7.41393C23.3751 7.41393 22.3156 8.46483 22.3156 9.75535C22.3156 11.0459 23.3751 12.1058 24.666 12.1058C25.9569 12.1058 27.0075 11.0459 27.0075 9.75535C27.0075 8.46483 25.9569 7.41393 24.666 7.41393ZM13.8177 7.67609C16.6087 7.67609 18.8718 9.79752 19.1515 12.5126C18.8614 12.3786 18.5512 12.254 18.2113 12.2053C17.714 12.134 17.1592 12.2911 16.6112 12.7025C15.83 12.3375 15.2501 12.2348 14.8031 12.3228C14.3617 12.4097 14.0913 12.603 13.8177 12.7115C13.1568 12.353 12.5515 12.181 12.0097 12.2143C11.4944 12.246 11.0553 12.4455 10.6536 12.6934C10.1264 12.338 9.61502 12.2128 9.1891 12.2957C8.90116 12.3517 8.70197 12.4637 8.47492 12.5669C8.72922 9.82543 11.008 7.67609 13.8177 7.67609ZM24.666 8.07386C25.5973 8.07386 26.3385 8.82437 26.3385 9.75535C26.3385 10.6863 25.5973 11.4278 24.666 11.4278C23.7348 11.4278 22.9845 10.6863 22.9845 9.75535C22.9845 8.82437 23.7348 8.07386 24.666 8.07386ZM20.8058 9.44798V10.126H21.954V9.44798H20.8058ZM27.4233 9.44798V10.126H28.5714V9.44798H27.4233ZM22.1709 11.247L21.294 11.9883L21.737 12.5126L22.6139 11.7623L22.1709 11.247ZM26.908 11.3284L26.4741 11.8437L27.351 12.585L27.7849 12.0697L26.908 11.3284ZM24.3858 12.4855V13.6336H25.0728V12.4855H24.3858ZM7.38105 15.8214L12.2899 20.7574H10.8706L6.66687 16.5356L7.38105 15.8214ZM8.32124 19.1392L9.9304 20.7574H7.28161L8.32124 19.1392ZM4.65993 21.4263H27.5137V21.9597H4.65993V21.4263ZM5.28371 22.6287H5.81708V25.9284H5.28371V22.6287ZM26.5374 22.6287H27.0707V25.9284H26.5374V22.6287Z" fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
@@ -0,0 +1,18 @@
|
||||
<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"/>
|
||||
<g clip-path="url(#clip0_2863_264176)">
|
||||
<path d="M42.5033 31.4375C42.3942 29.3816 42.1566 27.3346 41.7917 25.3084L38.6396 9.03875C38.4434 8.19388 37.9732 7.43766 37.3023 6.88799C36.6314 6.33832 35.7974 6.0261 34.9305 6L21.0739 6C20.2065 6.02593 19.3721 6.33802 18.7006 6.88766C18.0291 7.4373 17.5583 8.1936 17.3614 9.03875L14.192 25.305C13.8252 27.332 13.5876 29.3803 13.4805 31.4375L12.8755 46.9062C12.8592 47.3088 12.9248 47.7104 13.0684 48.0868C13.2121 48.4632 13.4307 48.8064 13.711 49.0957C13.9913 49.3851 14.3275 49.6144 14.6991 49.7698C15.0708 49.9253 15.4702 50.0036 15.873 50H40.128C40.5307 50.0036 40.9299 49.9253 41.3014 49.7698C41.6728 49.6143 42.0088 49.3849 42.2889 49.0956C42.5689 48.8062 42.7872 48.4629 42.9304 48.0865C43.0736 47.7102 43.1389 47.3086 43.1221 46.9062L42.5033 31.4375ZM41.2933 48.1403C41.1418 48.2955 40.9604 48.4184 40.7602 48.5017C40.5599 48.585 40.3449 48.6269 40.128 48.625H15.8764C15.6587 48.627 15.4429 48.5847 15.242 48.5008C15.0411 48.4169 14.8593 48.2931 14.7077 48.1369C14.555 47.9827 14.4357 47.7987 14.3571 47.5965C14.2784 47.3943 14.2421 47.1781 14.2505 46.9613L14.4636 41.4613L19.4067 42.0938H19.4961H22.8683C22.694 41.6524 22.5784 41.1902 22.5246 40.7188H19.5374L14.5289 40.0759L14.5942 38.7181L19.4067 39.3438H19.4961H22.5005C22.5544 38.8723 22.6699 38.4101 22.8442 37.9688H19.5374L14.6355 37.3397L14.8624 31.4959C14.9677 29.5104 15.1973 27.5334 15.5499 25.5766L18.7192 9.3C18.8535 8.7691 19.1548 8.2954 19.5788 7.9488C20.0028 7.60219 20.5269 7.40104 21.0739 7.375H34.9305C35.4766 7.401 35.9999 7.60179 36.4232 7.94776C36.8466 8.29373 37.1475 8.76657 37.2817 9.29656L40.4339 25.5628C40.7847 27.5211 41.0143 29.4991 41.1214 31.4856L41.3552 37.3294L36.4671 37.9688H33.1361C33.3104 38.4101 33.426 38.8723 33.4799 39.3438H36.4946H36.5942L41.4067 38.725L41.4617 40.0828L36.4671 40.7188H33.5005C33.4466 41.1902 33.331 41.6524 33.1567 42.0938H36.5289H36.6183L41.5374 41.4613L41.7574 46.9613C41.7659 47.1789 41.7295 47.396 41.6502 47.5989C41.5709 47.8018 41.4506 47.9861 41.2967 48.1403H41.2933Z" fill="#5B476B"/>
|
||||
<path d="M27.9998 35.9064C27.1855 35.9132 26.3913 36.1609 25.7175 36.6182C25.0437 37.0756 24.5203 37.7222 24.2134 38.4765C23.9065 39.2308 23.8297 40.0591 23.9927 40.857C24.1557 41.6549 24.5513 42.3867 25.1295 42.9601C25.7077 43.5336 26.4428 43.9231 27.242 44.0795C28.0412 44.2359 28.8688 44.1522 29.6206 43.839C30.3723 43.5258 31.0145 42.9971 31.4663 42.3195C31.9181 41.6419 32.1591 40.8458 32.1592 40.0314C32.1592 39.4868 32.0514 38.9476 31.8419 38.4448C31.6325 37.9421 31.3256 37.4858 30.9389 37.1024C30.5522 36.7189 30.0934 36.4157 29.5889 36.2105C29.0845 36.0052 28.5444 35.9019 27.9998 35.9064ZM27.9998 42.7814C27.4568 42.7773 26.9272 42.6126 26.4776 42.3079C26.0281 42.0033 25.6789 41.5724 25.4739 41.0696C25.2689 40.5667 25.2174 40.0144 25.3258 39.4824C25.4342 38.9503 25.6978 38.4622 26.0832 38.0797C26.4686 37.6971 26.9586 37.4373 27.4915 37.3328C28.0243 37.2284 28.5762 37.284 29.0775 37.4928C29.5788 37.7015 30.0071 38.054 30.3084 38.5057C30.6096 38.9575 30.7704 39.4884 30.7704 40.0314C30.7704 40.3943 30.6986 40.7536 30.5591 41.0886C30.4197 41.4236 30.2152 41.7276 29.9577 41.9833C29.7001 42.2389 29.3945 42.441 29.0585 42.578C28.7225 42.715 28.3627 42.7841 27.9998 42.7814Z" fill="#5B476B"/>
|
||||
<path d="M28.2065 38.8594L26.8315 40.2344C26.7676 40.2982 26.7169 40.3741 26.6823 40.4575C26.6477 40.541 26.6299 40.6304 26.6299 40.7208C26.6299 40.8111 26.6477 40.9006 26.6823 40.9841C26.7169 41.0675 26.7676 41.1433 26.8315 41.2072C26.8955 41.2722 26.9717 41.3237 27.0558 41.359C27.1399 41.3942 27.2302 41.4123 27.3214 41.4123C27.4125 41.4123 27.5028 41.3942 27.5869 41.359C27.671 41.3237 27.7472 41.2722 27.8112 41.2072L29.1862 39.8322C29.2501 39.7684 29.3008 39.6925 29.3354 39.6091C29.37 39.5256 29.3878 39.4361 29.3878 39.3458C29.3878 39.2555 29.37 39.166 29.3354 39.0825C29.3008 38.9991 29.2501 38.9232 29.1862 38.8594C29.1222 38.7944 29.046 38.7429 28.9619 38.7076C28.8778 38.6724 28.7875 38.6543 28.6964 38.6543C28.6052 38.6543 28.5149 38.6724 28.4308 38.7076C28.3467 38.7429 28.2705 38.7944 28.2065 38.8594Z" fill="#5B476B"/>
|
||||
<path d="M16.9141 44.8438C17.2976 44.8438 17.6085 44.5359 17.6085 44.1562C17.6085 43.7766 17.2976 43.4688 16.9141 43.4688C16.5306 43.4688 16.2197 43.7766 16.2197 44.1562C16.2197 44.5359 16.5306 44.8438 16.9141 44.8438Z" fill="#5B476B"/>
|
||||
<path d="M19.6885 44.8438C20.072 44.8438 20.3829 44.5359 20.3829 44.1562C20.3829 43.7766 20.072 43.4688 19.6885 43.4688C19.305 43.4688 18.9941 43.7766 18.9941 44.1562C18.9941 44.5359 19.305 44.8438 19.6885 44.8438Z" fill="#5B476B"/>
|
||||
<path d="M34.3627 30.2177C34.3915 30.1926 34.4179 30.165 34.4418 30.1352C34.4554 30.1164 34.468 30.0969 34.4796 30.0767C35.667 28.6205 36.3165 26.7995 36.3187 24.9205C36.3267 22.9734 35.6483 21.0858 34.4028 19.5892C33.1573 18.0926 31.4242 17.0827 29.508 16.737C27.5919 16.3913 25.6152 16.7319 23.9252 17.6989C22.2352 18.6659 20.94 20.1975 20.2671 22.0246C19.5942 23.8517 19.5866 25.8575 20.2457 27.6896C20.9049 29.5218 22.1885 31.0631 23.8712 32.0428C25.5538 33.0225 27.5279 33.3779 29.4466 33.0466C31.3653 32.7154 33.1059 31.7186 34.3627 30.2314V30.2177ZM27.9999 18.0318C29.83 18.0263 31.5875 18.7471 32.8868 20.036C34.186 21.3249 34.9208 23.0767 34.9299 24.9067C34.9317 26.2766 34.5195 27.615 33.7474 28.7464L31.8052 27.2717C31.8911 25.7317 31.0524 24.4117 30.2927 23.2189C29.9195 22.6739 29.5918 22.099 29.313 21.5002C29.0974 21.0121 28.9215 20.5075 28.7871 19.9911C28.7286 19.7505 28.5533 19.063 27.9036 19.063C27.254 19.063 27.0752 19.7505 27.0168 19.9671C26.8348 20.6336 26.605 21.2861 26.3293 21.9196C26.2055 22.2083 26.0543 22.4936 25.8927 22.7824L22.7715 20.4139C23.4221 19.6662 24.2254 19.0667 25.1273 18.6558C26.0292 18.2448 27.0088 18.0321 27.9999 18.0318V18.0318ZM26.3121 24.8346L30.2961 27.8561C30.2961 27.9077 30.2652 27.9558 30.248 28.0074C29.8733 29.0146 28.849 29.3824 28.0171 29.3824C26.924 29.3824 25.6968 28.7636 25.5868 27.4092C25.5146 26.4983 25.8583 25.6733 26.3121 24.8346ZM26.9996 23.6246C27.2188 23.2472 27.4173 22.8582 27.5943 22.4592C27.7043 22.2049 27.8074 21.9539 27.9002 21.703L28.0308 22.0192C28.338 22.6926 28.7014 23.3388 29.1171 23.9511C29.5861 24.6172 29.9706 25.3388 30.2618 26.0996L26.9996 23.6246ZM21.0733 24.9067C21.0729 23.7252 21.3809 22.5639 21.9671 21.538L25.1983 23.9889C24.6036 25.0477 24.0949 26.1649 24.2015 27.5089C24.3733 29.6367 26.264 30.7471 28.0136 30.7471C28.72 30.7746 29.4194 30.5988 30.0288 30.2405C30.6381 29.8822 31.1318 29.3565 31.4511 28.7258L32.864 29.7983C31.8927 30.7519 30.6623 31.3985 29.326 31.6575C27.9898 31.9165 26.6069 31.7765 25.3497 31.255C24.0924 30.7334 23.0166 29.8533 22.2561 28.7244C21.4957 27.5955 21.0843 26.2678 21.0733 24.9067V24.9067Z" fill="#5B476B"/>
|
||||
<path d="M21.0732 13.2188H22.4482C22.6306 13.2188 22.8054 13.1463 22.9344 13.0174C23.0633 12.8885 23.1357 12.7136 23.1357 12.5312C23.1357 12.3489 23.0633 12.174 22.9344 12.0451C22.8054 11.9162 22.6306 11.8438 22.4482 11.8438H21.0732C20.8909 11.8438 20.716 11.9162 20.5871 12.0451C20.4582 12.174 20.3857 12.3489 20.3857 12.5312C20.3857 12.7136 20.4582 12.8885 20.5871 13.0174C20.716 13.1463 20.8909 13.2188 21.0732 13.2188Z" fill="#5B476B"/>
|
||||
<path d="M33.5449 13.2188H34.9199C35.1023 13.2188 35.2771 13.1463 35.4061 13.0174C35.535 12.8885 35.6074 12.7136 35.6074 12.5312C35.6074 12.3489 35.535 12.174 35.4061 12.0451C35.2771 11.9162 35.1023 11.8438 34.9199 11.8438H33.5449C33.3626 11.8438 33.1877 11.9162 33.0588 12.0451C32.9299 12.174 32.8574 12.3489 32.8574 12.5312C32.8574 12.7136 32.9299 12.8885 33.0588 13.0174C33.1877 13.1463 33.3626 13.2188 33.5449 13.2188Z" fill="#5B476B"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2863_264176">
|
||||
<rect width="44" height="44" fill="white" transform="translate(6 6)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.8 KiB |
@@ -0,0 +1,18 @@
|
||||
<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.7857 29.1433C24.2021 29.1433 30.2143 23.1311 30.2143 15.7147C30.2143 8.29831 24.2021 2.28613 16.7857 2.28613C9.36935 2.28613 3.35718 8.29831 3.35718 15.7147C3.35718 23.1311 9.36935 29.1433 16.7857 29.1433Z" fill="#F4E5FF"/>
|
||||
<path d="M13.2327 8.2207C11.4549 8.22269 9.75047 8.9298 8.49337 10.1869C7.23626 11.444 6.52915 13.1484 6.52717 14.9262V15.8532C6.06666 16.0169 5.66811 16.3191 5.38627 16.7184C5.10443 17.1177 4.95312 17.5944 4.95312 18.0832C4.95312 18.5719 5.10443 19.0487 5.38627 19.448C5.66811 19.8472 6.06666 20.1495 6.52717 20.3132V25.5762C6.52717 25.6808 6.56873 25.7812 6.6427 25.8551C6.71667 25.9291 6.817 25.9707 6.92161 25.9707H7.40283L7.72233 27.2495C7.74362 27.3348 7.79285 27.4106 7.86218 27.4648C7.93151 27.519 8.01696 27.5484 8.10494 27.5485H9.28827C9.37626 27.5484 9.46171 27.519 9.53104 27.4648C9.60037 27.4106 9.64959 27.3348 9.67088 27.2495L9.99038 25.9707H16.475L16.7945 27.2495C16.8158 27.3348 16.8651 27.4106 16.9344 27.4648C17.0037 27.519 17.0892 27.5484 17.1771 27.5485H18.3605C18.4485 27.5484 18.5339 27.519 18.6032 27.4648C18.6726 27.4106 18.7218 27.3348 18.7431 27.2495L19.0626 25.9707H19.5438C19.6484 25.9707 19.7488 25.9291 19.8227 25.8551C19.8967 25.7812 19.9383 25.6808 19.9383 25.5762V20.3132C20.3988 20.1495 20.7973 19.8472 21.0792 19.448C21.361 19.0487 21.5123 18.5719 21.5123 18.0832C21.5123 17.5944 21.361 17.1177 21.0792 16.7184C20.7973 16.3191 20.3988 16.0169 19.9383 15.8532V14.9262C19.9363 13.1484 19.2292 11.444 17.9721 10.1869C16.715 8.9298 15.0105 8.22269 13.2327 8.2207ZM7.31606 14.9262C7.31606 13.3571 7.93942 11.8521 9.049 10.7425C10.1586 9.63295 11.6635 9.00959 13.2327 9.00959C14.8019 9.00959 16.3068 9.63295 17.4164 10.7425C18.526 11.8521 19.1494 13.3571 19.1494 14.9262V15.7151C18.8805 15.7158 18.6136 15.7625 18.3605 15.8532V14.9262C18.3605 13.5663 17.8202 12.262 16.8586 11.3004C15.8969 10.3387 14.5927 9.79848 13.2327 9.79848C11.8727 9.79848 10.5685 10.3387 9.60683 11.3004C8.64519 12.262 8.10494 13.5663 8.10494 14.9262V15.8532C7.85178 15.7625 7.58497 15.7158 7.31606 15.7151V14.9262ZM9.68272 21.2373H16.7827V22.8151H9.68272V21.2373ZM16.7827 18.0818V20.4485H9.68272V18.0818C9.68247 17.7496 9.61206 17.4211 9.47612 17.118C9.34018 16.8148 9.14175 16.5438 8.89383 16.3226V14.9262C8.89383 13.7755 9.35096 12.6719 10.1647 11.8582C10.9784 11.0445 12.082 10.5874 13.2327 10.5874C14.3835 10.5874 15.4871 11.0445 16.3008 11.8582C17.1145 12.6719 17.5716 13.7755 17.5716 14.9262V16.3226C17.3237 16.5438 17.1252 16.8148 16.9893 17.118C16.8534 17.4211 16.783 17.7496 16.7827 18.0818ZM8.98021 26.7596H8.413L8.21578 25.9707H9.17744L8.98021 26.7596ZM18.0524 26.7596H17.4852L17.288 25.9707H18.2496L18.0524 26.7596ZM20.7271 18.0818C20.7263 18.4453 20.6004 18.7974 20.3705 19.079C20.1407 19.3606 19.8209 19.5545 19.4649 19.628C19.3759 19.6462 19.2959 19.6945 19.2384 19.7649C19.1809 19.8353 19.1494 19.9233 19.1494 20.0142V25.1818H7.31606V20.0146C7.31598 19.9237 7.28454 19.8357 7.22705 19.7653C7.16955 19.6949 7.08953 19.6466 7.0005 19.6284C6.70802 19.5687 6.43848 19.4273 6.22318 19.2205C6.00788 19.0137 5.85565 18.7501 5.78418 18.4603C5.7127 18.1705 5.72491 17.8663 5.81939 17.5832C5.91386 17.3 6.08673 17.0494 6.31791 16.8606C6.54909 16.6718 6.8291 16.5524 7.12542 16.5163C7.42174 16.4802 7.72221 16.529 7.99194 16.6568C8.26167 16.7847 8.48959 16.9865 8.64924 17.2387C8.80888 17.4909 8.89369 17.7833 8.89383 18.0818V23.2096C8.89383 23.3142 8.93539 23.4145 9.00936 23.4885C9.08333 23.5625 9.18366 23.604 9.28827 23.604H17.1771C17.2818 23.604 17.3821 23.5625 17.4561 23.4885C17.53 23.4145 17.5716 23.3142 17.5716 23.2096V18.0818C17.5716 17.6633 17.7378 17.262 18.0337 16.9661C18.3296 16.6703 18.7309 16.504 19.1494 16.504C19.5678 16.504 19.9691 16.6703 20.265 16.9661C20.5609 17.262 20.7271 17.6633 20.7271 18.0818Z" fill="#5B476B"/>
|
||||
<path d="M13.5121 12.6739C13.4358 12.6035 13.3359 12.5645 13.2321 12.5645C13.1283 12.5645 13.0283 12.6035 12.952 12.6739C12.9164 12.7116 12.8882 12.7558 12.8692 12.8041C12.8484 12.8513 12.8376 12.9024 12.8376 12.954C12.8376 13.0056 12.8484 13.0566 12.8692 13.1039C12.8893 13.1516 12.9173 13.1956 12.952 13.234C13.0268 13.3074 13.1273 13.3484 13.2321 13.3484C13.3368 13.3484 13.4374 13.3074 13.5121 13.234C13.5469 13.1956 13.5749 13.1516 13.595 13.1039C13.6158 13.0566 13.6265 13.0056 13.6265 12.954C13.6265 12.9024 13.6158 12.8513 13.595 12.8041C13.5759 12.7558 13.5478 12.7116 13.5121 12.6739Z" fill="#5B476B"/>
|
||||
<path d="M12.3293 14.252C12.253 14.1817 12.153 14.1426 12.0492 14.1426C11.9455 14.1426 11.8455 14.1817 11.7692 14.252C11.7335 14.2898 11.7054 14.3339 11.6864 14.3822C11.6655 14.4294 11.6548 14.4805 11.6548 14.5321C11.6548 14.5837 11.6655 14.6348 11.6864 14.682C11.7065 14.7297 11.7345 14.7737 11.7692 14.8122C11.8076 14.847 11.8516 14.875 11.8994 14.895C11.9711 14.9257 12.0504 14.9343 12.127 14.9195C12.2037 14.9047 12.2741 14.8673 12.3293 14.8122C12.364 14.7737 12.392 14.7297 12.4121 14.682C12.4329 14.6348 12.4437 14.5837 12.4437 14.5321C12.4437 14.4805 12.4329 14.4294 12.4121 14.3822C12.3931 14.3339 12.365 14.2898 12.3293 14.252Z" fill="#5B476B"/>
|
||||
<path d="M14.6963 14.2514C14.6411 14.1958 14.5706 14.1579 14.4938 14.1425C14.417 14.1271 14.3373 14.1349 14.265 14.1649C14.1926 14.195 14.1308 14.2459 14.0875 14.3112C14.0442 14.3765 14.0213 14.4532 14.0218 14.5315C14.021 14.5828 14.0303 14.6337 14.049 14.6814C14.0722 14.7284 14.1015 14.7722 14.1362 14.8116C14.2007 14.8759 14.2856 14.9158 14.3763 14.9246C14.467 14.9335 14.558 14.9106 14.6337 14.8599C14.7095 14.8093 14.7654 14.7339 14.7919 14.6467C14.8184 14.5595 14.8139 14.4659 14.7791 14.3816C14.76 14.3333 14.7319 14.2892 14.6963 14.2514Z" fill="#5B476B"/>
|
||||
<path d="M13.5121 15.8292C13.4358 15.7588 13.3359 15.7197 13.2321 15.7197C13.1283 15.7197 13.0283 15.7588 12.952 15.8292C12.9172 15.8676 12.8892 15.9116 12.8692 15.9594C12.8484 16.0066 12.8376 16.0576 12.8376 16.1092C12.8376 16.1609 12.8484 16.2119 12.8692 16.2591C12.8893 16.3069 12.9173 16.3509 12.952 16.3893C12.9904 16.4241 13.0344 16.4521 13.0822 16.4721C13.1539 16.5029 13.2332 16.5114 13.3099 16.4966C13.3865 16.4819 13.4569 16.4445 13.5121 16.3893C13.5469 16.3509 13.5749 16.3069 13.595 16.2591C13.6158 16.2119 13.6265 16.1609 13.6265 16.1092C13.6265 16.0576 13.6158 16.0066 13.595 15.9594C13.575 15.9116 13.5469 15.8676 13.5121 15.8292Z" fill="#5B476B"/>
|
||||
<path d="M11.1466 15.8295C11.1082 15.7948 11.0642 15.7668 11.0165 15.7467C10.9446 15.7165 10.8655 15.7082 10.789 15.7229C10.7124 15.7377 10.642 15.7748 10.5865 15.8295C10.5509 15.8672 10.5228 15.9114 10.5037 15.9597C10.4829 16.0069 10.4722 16.0579 10.4722 16.1095C10.4722 16.1612 10.4829 16.2122 10.5037 16.2594C10.5238 16.3072 10.5518 16.3512 10.5865 16.3896C10.6249 16.4244 10.6689 16.4524 10.7167 16.4724C10.7639 16.4933 10.815 16.504 10.8666 16.504C10.9182 16.504 10.9693 16.4933 11.0165 16.4724C11.0654 16.4547 11.1099 16.4265 11.1467 16.3896C11.1835 16.3528 11.2118 16.3084 11.2295 16.2594C11.2503 16.2122 11.2611 16.1612 11.2611 16.1095C11.2611 16.0579 11.2503 16.0069 11.2295 15.9597C11.2095 15.9119 11.1815 15.8679 11.1466 15.8295Z" fill="#5B476B"/>
|
||||
<path d="M15.8788 15.8292C15.8025 15.7588 15.7026 15.7197 15.5988 15.7197C15.495 15.7197 15.395 15.7588 15.3187 15.8292C15.2839 15.8676 15.2559 15.9116 15.2359 15.9594C15.2151 16.0066 15.2043 16.0576 15.2043 16.1092C15.2043 16.1609 15.2151 16.2119 15.2359 16.2591C15.256 16.3069 15.284 16.3509 15.3187 16.3893C15.3571 16.4241 15.4011 16.4521 15.4489 16.4721C15.4961 16.4929 15.5472 16.5037 15.5988 16.5037C15.6504 16.5037 15.7014 16.4929 15.7487 16.4721C15.7976 16.4544 15.8421 16.4262 15.8789 16.3893C15.9157 16.3525 15.9439 16.3081 15.9617 16.2591C15.9825 16.2119 15.9932 16.1609 15.9932 16.1092C15.9932 16.0576 15.9825 16.0066 15.9617 15.9594C15.9416 15.9116 15.9136 15.8676 15.8788 15.8292Z" fill="#5B476B"/>
|
||||
<path d="M12.3293 17.4074C12.3099 17.3895 12.2887 17.3737 12.2662 17.36C12.246 17.3445 12.2233 17.3325 12.1991 17.3245C12.1755 17.3125 12.15 17.3045 12.1238 17.3009C12.0733 17.289 12.0208 17.289 11.9703 17.3009C11.9456 17.3052 11.9217 17.3131 11.8993 17.3245C11.8741 17.3332 11.8501 17.3452 11.828 17.36C11.8075 17.3747 11.7879 17.3905 11.7692 17.4074C11.7335 17.4451 11.7054 17.4893 11.6863 17.5375C11.6556 17.6093 11.6471 17.6886 11.6618 17.7652C11.6766 17.8418 11.714 17.9123 11.7692 17.9675C11.8075 18.0023 11.8516 18.0303 11.8993 18.0503C11.9462 18.0722 11.9975 18.083 12.0492 18.0819C12.154 18.082 12.2546 18.0409 12.3293 17.9675C12.3845 17.9123 12.4219 17.8418 12.4366 17.7652C12.4514 17.6886 12.4429 17.6093 12.4121 17.5375C12.3931 17.4893 12.3649 17.4451 12.3293 17.4074Z" fill="#5B476B"/>
|
||||
<path d="M14.2664 17.3248C14.2174 17.3425 14.173 17.3708 14.1362 17.4076C14.0994 17.4444 14.0711 17.4888 14.0534 17.5378C14.0313 17.5846 14.0205 17.6359 14.0218 17.6877C14.0213 17.7396 14.0312 17.7911 14.0508 17.8392C14.0704 17.8873 14.0995 17.931 14.1362 17.9678C14.1729 18.0045 14.2166 18.0335 14.2647 18.0532C14.3128 18.0728 14.3643 18.0826 14.4163 18.0821C14.468 18.0833 14.5193 18.0725 14.5662 18.0506C14.6151 18.0328 14.6596 18.0046 14.6964 17.9678C14.7332 17.931 14.7615 17.8865 14.7792 17.8376C14.8011 17.7907 14.8119 17.7394 14.8107 17.6877C14.8093 17.5832 14.7684 17.4832 14.6963 17.4076C14.6409 17.3529 14.5704 17.3158 14.4939 17.3011C14.4174 17.2863 14.3382 17.2946 14.2664 17.3248Z" fill="#5B476B"/>
|
||||
<path d="M13.5123 18.9845C13.4929 18.9667 13.4717 18.9508 13.4491 18.9372C13.429 18.9216 13.4063 18.9096 13.3821 18.9017C13.3585 18.8897 13.333 18.8817 13.3068 18.878C13.2563 18.8662 13.2038 18.8662 13.1533 18.878C13.1286 18.8823 13.1047 18.8903 13.0823 18.9017C13.0571 18.9104 13.0331 18.9223 13.0109 18.9372C12.9905 18.9518 12.9708 18.9676 12.9522 18.9845C12.9173 19.0229 12.8893 19.0669 12.8693 19.1147C12.8472 19.1615 12.8364 19.2128 12.8378 19.2646C12.8371 19.3232 12.8495 19.3813 12.8741 19.4346C12.8987 19.4879 12.9349 19.535 12.98 19.5725C13.0251 19.61 13.0781 19.637 13.1349 19.6515C13.1918 19.6659 13.2512 19.6675 13.3088 19.6561C13.3663 19.6448 13.4206 19.6207 13.4677 19.5856C13.5148 19.5506 13.5534 19.5055 13.5809 19.4536C13.6083 19.4017 13.6238 19.3444 13.6263 19.2857C13.6287 19.2271 13.6181 19.1687 13.5951 19.1147C13.5751 19.0669 13.5471 19.0229 13.5123 18.9845Z" fill="#5B476B"/>
|
||||
<path d="M11.1455 18.9854C11.0692 18.9151 10.9692 18.876 10.8654 18.876C10.7616 18.876 10.6616 18.9151 10.5853 18.9854C10.5505 19.0238 10.5225 19.0678 10.5025 19.1156C10.4718 19.1873 10.4632 19.2666 10.478 19.3433C10.4928 19.4199 10.5302 19.4904 10.5853 19.5456C10.6237 19.5804 10.6677 19.6084 10.7155 19.6284C10.7872 19.6591 10.8666 19.6677 10.9432 19.6529C11.0198 19.6382 11.0903 19.6008 11.1455 19.5456C11.2007 19.4904 11.2381 19.4199 11.2528 19.3433C11.2676 19.2667 11.259 19.1873 11.2283 19.1156C11.2083 19.0678 11.1803 19.0238 11.1455 18.9854Z" fill="#5B476B"/>
|
||||
<path d="M15.879 18.9855C15.823 18.9316 15.7526 18.895 15.6763 18.8803C15.6 18.8656 15.521 18.8734 15.449 18.9027C15.4007 18.9218 15.3566 18.9499 15.3188 18.9855C15.284 19.0239 15.256 19.0679 15.236 19.1157C15.2139 19.1625 15.2031 19.2138 15.2045 19.2656C15.2038 19.3306 15.2194 19.3946 15.2497 19.4521C15.2801 19.5095 15.3243 19.5584 15.3783 19.5945C15.4324 19.6305 15.4946 19.6525 15.5593 19.6584C15.6239 19.6644 15.6891 19.6541 15.7488 19.6285C15.7965 19.6084 15.8405 19.5804 15.879 19.5456C15.9341 19.4905 15.9715 19.42 15.9863 19.3434C16.0011 19.2667 15.9925 19.1874 15.9618 19.1157C15.9418 19.0679 15.9138 19.0239 15.879 18.9855Z" fill="#5B476B"/>
|
||||
<path d="M11.1466 12.6739C11.0704 12.6035 10.9704 12.5645 10.8666 12.5645C10.7628 12.5645 10.6628 12.6035 10.5865 12.6739C10.5509 12.7116 10.5228 12.7558 10.5037 12.8041C10.4829 12.8513 10.4722 12.9024 10.4722 12.954C10.4722 13.0056 10.4829 13.0566 10.5037 13.1039C10.5238 13.1516 10.5518 13.1956 10.5865 13.234C10.6613 13.3074 10.7619 13.3484 10.8666 13.3484C10.9713 13.3484 11.0719 13.3074 11.1466 13.234C11.1814 13.1956 11.2094 13.1516 11.2295 13.1039C11.2503 13.0566 11.2611 13.0056 11.2611 12.954C11.2611 12.9024 11.2503 12.8513 11.2295 12.8041C11.2104 12.7558 11.1823 12.7116 11.1466 12.6739Z" fill="#5B476B"/>
|
||||
<path d="M15.7488 12.5909C15.7013 12.5696 15.65 12.5583 15.5981 12.5577C15.5461 12.557 15.4945 12.5669 15.4465 12.5868C15.3985 12.6068 15.355 12.6363 15.3189 12.6736C15.2827 12.7109 15.2545 12.7553 15.236 12.8039C15.2158 12.8513 15.2051 12.9022 15.2045 12.9538C15.2031 13.0055 15.2139 13.0568 15.236 13.1036C15.2561 13.1514 15.2841 13.1954 15.3188 13.2338C15.3936 13.3071 15.4942 13.3482 15.5989 13.3482C15.7036 13.3482 15.8042 13.3071 15.879 13.2338C15.9137 13.1954 15.9417 13.1514 15.9618 13.1036C15.982 13.0562 15.9927 13.0053 15.9933 12.9538C15.9952 12.8754 15.9726 12.7984 15.9288 12.7334C15.885 12.6684 15.8221 12.6186 15.7488 12.5909Z" fill="#5B476B"/>
|
||||
<path d="M28.2212 10.9818C28.2771 10.9818 28.3324 10.9699 28.3834 10.9469C28.4343 10.9239 28.4798 10.8903 28.5168 10.8484C28.5538 10.8065 28.5815 10.7571 28.598 10.7037C28.6145 10.6503 28.6194 10.594 28.6125 10.5385L27.8236 4.22737C27.8117 4.13199 27.7653 4.04424 27.6933 3.98062C27.6212 3.91699 27.5284 3.88186 27.4323 3.88184H21.1212C21.0251 3.88186 20.9323 3.91699 20.8602 3.98062C20.7882 4.04424 20.7418 4.13199 20.7299 4.22737L19.941 10.5385C19.9341 10.594 19.939 10.6503 19.9555 10.7037C19.972 10.7571 19.9997 10.8065 20.0367 10.8484C20.0737 10.8903 20.1192 10.9239 20.1702 10.9469C20.2211 10.9699 20.2764 10.9818 20.3323 10.9818H23.8823V25.1818H22.699C22.3851 25.1818 22.0842 25.3065 21.8622 25.5284C21.6403 25.7503 21.5157 26.0513 21.5157 26.3651V27.154C21.5157 27.2586 21.5572 27.359 21.6312 27.4329C21.7052 27.5069 21.8055 27.5485 21.9101 27.5485H26.6434C26.748 27.5485 26.8484 27.5069 26.9223 27.4329C26.9963 27.359 27.0379 27.2586 27.0379 27.154V26.3651C27.0379 26.0513 26.9132 25.7503 26.6913 25.5284C26.4694 25.3065 26.1684 25.1818 25.8545 25.1818H24.6712V10.9818H28.2212ZM26.249 26.3651V26.7596H22.3045V26.3651C22.3045 26.2605 22.3461 26.1602 22.4201 26.0862C22.494 26.0122 22.5944 25.9707 22.699 25.9707H25.8545C25.9591 25.9707 26.0595 26.0122 26.1334 26.0862C26.2074 26.1602 26.249 26.2605 26.249 26.3651ZM21.4695 4.67072H27.084L27.7743 10.1929H20.7792L21.4695 4.67072Z" fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,22 @@
|
||||
<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="M19.7425 28.3208H13.1578C12.9097 28.3208 12.709 28.1201 12.709 27.8717C12.709 27.6236 12.9097 27.4229 13.1578 27.4229H19.7425C19.9909 27.4229 20.1916 27.6236 20.1916 27.8717C20.1914 28.1201 19.9909 28.3208 19.7425 28.3208Z" fill="#5B476B"/>
|
||||
<path d="M16.599 27.9446C16.3508 27.9446 16.1501 27.7439 16.1501 27.4955V21.2841C16.1501 21.0359 16.3508 20.835 16.599 20.835C16.8471 20.835 17.0478 21.0359 17.0478 21.2841V27.4957C17.0478 27.7439 16.8471 27.9446 16.599 27.9446Z" fill="#5B476B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.99942 21.7326H28.1974C28.4459 21.7326 28.6463 21.5317 28.6466 21.2835V15.5875C28.6466 15.3394 28.4459 15.1387 28.1974 15.1387H4.99942C4.75099 15.1387 4.55029 15.3394 4.55029 15.5875V21.2835C4.55029 21.5317 4.75099 21.7326 4.99942 21.7326ZM27.7479 20.8351H5.44782V16.0368H27.7479V20.8351Z" fill="#5B476B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.89355 12.6305C4.89355 14.4169 6.34619 15.8698 8.13173 15.8698C9.91755 15.8698 11.3702 14.4169 11.3702 12.6305C11.3702 12.3823 11.1692 12.1816 10.9211 12.1816H5.3424C5.09426 12.1816 4.89355 12.3823 4.89355 12.6305ZM8.13208 14.972C6.99524 14.972 6.04479 14.1566 5.83482 13.0798H10.4296C10.2197 14.1566 9.26921 14.972 8.13208 14.972Z" fill="#5B476B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.6436 12.6305C21.6436 14.4169 23.0959 15.8698 24.882 15.8698C26.6673 15.8698 28.1202 14.4169 28.1202 12.6305C28.1202 12.3823 27.9195 12.1816 27.6716 12.1816H22.0927C21.8443 12.1816 21.6436 12.3823 21.6436 12.6305ZM24.8826 14.972C23.745 14.972 22.7948 14.1566 22.5848 13.0798H27.1799C26.9694 14.1566 26.0198 14.972 24.8826 14.972Z" fill="#5B476B"/>
|
||||
<path d="M17.9186 15.5233C17.6701 15.5233 17.4694 15.3226 17.4694 15.0744V8.91163C17.4694 8.24525 17.004 7.70237 16.4311 7.70237C15.8585 7.70237 15.3931 8.24525 15.3931 8.91163V15.0744C15.3931 15.3226 15.1921 15.5233 14.944 15.5233C14.6958 15.5233 14.4951 15.3226 14.4951 15.0744V8.91163C14.4951 7.74981 15.3636 6.80469 16.4311 6.80469C17.4983 6.80469 18.3674 7.74981 18.3674 8.91163V15.0744C18.3674 15.3226 18.167 15.5233 17.9186 15.5233Z" fill="#5B476B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.7292 7.70286H17.1324C17.3808 7.70286 17.5815 7.50188 17.5815 7.25374V4.33556C17.5815 4.08742 17.3808 3.88672 17.1324 3.88672H15.7292C15.4807 3.88672 15.28 4.08742 15.28 4.33556V7.25402C15.28 7.50216 15.481 7.70286 15.7292 7.70286ZM16.6838 6.80481H16.1788V4.7846H16.6838V6.80481Z" fill="#5B476B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.6238 8.22814C18.6238 9.91095 19.2093 11.6137 20.3282 11.6137C21.4476 11.6137 22.0332 9.91067 22.0335 8.22814C22.0335 7.98 21.8322 7.7793 21.5843 7.7793H19.0729C18.8245 7.7793 18.6238 7.98 18.6238 8.22814ZM20.328 10.7156C20.1099 10.7156 19.6268 10.0229 19.5364 8.6769H21.1201C21.0297 10.0229 20.5467 10.7156 20.328 10.7156Z" fill="#5B476B"/>
|
||||
<path d="M20.328 15.5237C20.0802 15.5237 19.8789 15.323 19.8789 15.0748V11.1649C19.8789 10.9168 20.0802 10.7158 20.328 10.7158C20.5765 10.7158 20.7777 10.9165 20.7777 11.1649V15.0748C20.7774 15.323 20.5765 15.5237 20.328 15.5237Z" fill="#5B476B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9194 8.22814C10.9194 9.91095 11.505 11.6137 12.6241 11.6137C13.7436 11.6137 14.3288 9.91067 14.3288 8.22814C14.3288 7.98 14.1279 7.7793 13.8797 7.7793H11.3686C11.1204 7.7793 10.9194 7.98 10.9194 8.22814ZM12.6239 10.7156C12.4055 10.7156 11.9224 10.0229 11.832 8.6769H13.4157C13.3256 10.0229 12.8423 10.7156 12.6239 10.7156Z" fill="#5B476B"/>
|
||||
<path d="M12.6244 15.5237C12.3763 15.5237 12.1753 15.323 12.1753 15.0748V11.1649C12.1753 10.9168 12.376 10.7158 12.6244 10.7158C12.8726 10.7158 13.0733 10.9165 13.0733 11.1649V15.0748C13.0733 15.323 12.8726 15.5237 12.6244 15.5237Z" fill="#5B476B"/>
|
||||
<path d="M17.9186 10.3963H15.1967C14.9485 10.3963 14.7476 10.1953 14.7476 9.94717C14.7476 9.69903 14.9483 9.49805 15.1967 9.49805H17.9186C18.1671 9.49805 18.3678 9.69875 18.3678 9.94717C18.3675 10.1956 18.1671 10.3963 17.9186 10.3963Z" fill="#5B476B"/>
|
||||
<path d="M17.9186 13.5679H15.1967C14.9485 13.5679 14.7476 13.3669 14.7476 13.1188C14.7476 12.8706 14.9483 12.6699 15.1967 12.6699H17.9186C18.1671 12.6699 18.3678 12.8706 18.3678 13.1188C18.3675 13.3669 18.1671 13.5679 17.9186 13.5679Z" fill="#5B476B"/>
|
||||
<path d="M8.13024 21.7326C7.8821 21.7326 7.6814 21.5316 7.6814 21.2835V18.4355C7.6814 18.1873 7.8821 17.9863 8.13024 17.9863C8.37838 17.9863 8.57936 18.1873 8.57936 18.4355V21.2835C8.57936 21.5316 8.37838 21.7326 8.13024 21.7326Z" fill="#5B476B"/>
|
||||
<path d="M11.4816 21.7326C11.2334 21.7326 11.0327 21.5316 11.0327 21.2835V18.4355C11.0327 18.1873 11.2334 17.9863 11.4816 17.9863C11.7297 17.9863 11.9307 18.1873 11.9307 18.4355V21.2835C11.9307 21.5316 11.7297 21.7326 11.4816 21.7326Z" fill="#5B476B"/>
|
||||
<path d="M14.8302 21.7326C14.582 21.7326 14.3813 21.5316 14.3813 21.2835V18.4355C14.3813 18.1873 14.582 17.9863 14.8302 17.9863C15.0783 17.9863 15.2793 18.1873 15.2793 18.4355V21.2835C15.2793 21.5316 15.0783 21.7326 14.8302 21.7326Z" fill="#5B476B"/>
|
||||
<path d="M18.1806 21.7326C17.9327 21.7326 17.7314 21.5316 17.7314 21.2835V18.4355C17.7314 18.1873 17.9327 17.9863 18.1806 17.9863C18.429 17.9863 18.6303 18.1873 18.6303 18.4355V21.2835C18.6303 21.5316 18.429 21.7326 18.1806 21.7326Z" fill="#5B476B"/>
|
||||
<path d="M21.5319 21.7326C21.2835 21.7326 21.0828 21.5316 21.0828 21.2835V18.4355C21.0828 18.1873 21.2835 17.9863 21.5319 17.9863C21.7792 17.9863 21.9804 18.1873 21.9804 18.4355V21.2835C21.9804 21.5316 21.7792 21.7326 21.5319 21.7326Z" fill="#5B476B"/>
|
||||
<path d="M24.8817 21.7326C24.6333 21.7326 24.4326 21.5316 24.4326 21.2835V18.4355C24.4326 18.1873 24.6333 17.9863 24.8817 17.9863C25.1296 17.9863 25.3309 18.1873 25.3309 18.4355V21.2835C25.3309 21.5316 25.1296 21.7326 24.8817 21.7326Z" fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.1 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="6" height="6" viewBox="0 0 6 6" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="3" cy="3" r="3" fill="#9A00FF" fill-opacity="0.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 167 B |
@@ -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="M12.0999 7.19922H8.2C5.8804 7.19922 4 9.07963 4 11.3992V24.7992C4 27.1188 5.8804 28.9992 8.2 28.9992H23C25.3196 28.9992 27.2 27.1188 27.2 24.7992V11.3992C27.2 9.07962 25.3196 7.19922 23 7.19922H18.9999V8.59922H23C24.5464 8.59922 25.8 9.85282 25.8 11.3992V24.7992C25.8 26.3456 24.5464 27.5992 23 27.5992H8.2C6.6536 27.5992 5.4 26.3456 5.4 24.7992V11.3992C5.4 9.85282 6.6536 8.59922 8.2 8.59922H12.0999V7.19922Z" fill="#9A00FF"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.20038 15.8222C9.04738 15.6013 9.06924 15.296 9.26595 15.0993L9.34443 15.0337C9.56528 14.8807 9.87063 14.9026 10.0673 15.0993L15.0999 20.132L15.0999 2.67L15.1096 2.54957C15.1604 2.23701 15.4054 2 15.6999 2C16.0313 2 16.2999 2.29997 16.2999 2.67L16.2999 20.1321L21.8326 14.5993L21.9111 14.5337C22.1319 14.3807 22.4373 14.4026 22.634 14.5993C22.8553 14.8206 22.8553 15.1794 22.634 15.4007L16.1007 21.934L16.0222 21.9996C15.9329 22.0614 15.8299 22.0947 15.7258 22.0994C15.7172 22.0998 15.7086 22.1 15.6999 22.1C15.69 22.1 15.6802 22.0997 15.6704 22.0992C15.5354 22.0922 15.4024 22.0371 15.2993 21.934L9.26595 15.9007L9.20038 15.8222Z" fill="#9A00FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -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="M12.0999 7.19922H8.2C5.8804 7.19922 4 9.07963 4 11.3992V24.7992C4 27.1188 5.8804 28.9992 8.2 28.9992H23C25.3196 28.9992 27.2 27.1188 27.2 24.7992V11.3992C27.2 9.07962 25.3196 7.19922 23 7.19922H18.9999V8.59922H23C24.5464 8.59922 25.8 9.85282 25.8 11.3992V24.7992C25.8 26.3456 24.5464 27.5992 23 27.5992H8.2C6.6536 27.5992 5.4 26.3456 5.4 24.7992V11.3992C5.4 9.85282 6.6536 8.59922 8.2 8.59922H12.0999V7.19922Z" fill="#5B476B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.2005 15.8222C9.0475 15.6013 9.06936 15.296 9.26607 15.0993L9.34455 15.0337C9.5654 14.8807 9.87075 14.9026 10.0675 15.0993L15.1 20.132L15.1 2.67L15.1097 2.54957C15.1605 2.23701 15.4055 2 15.7 2C16.0314 2 16.3 2.29997 16.3 2.67L16.3 20.1321L21.8327 14.5993L21.9112 14.5337C22.1321 14.3807 22.4374 14.4026 22.6341 14.5993C22.8554 14.8206 22.8554 15.1794 22.6341 15.4007L16.1008 21.934L16.0223 21.9996C15.9331 22.0614 15.83 22.0947 15.7259 22.0994C15.7173 22.0998 15.7087 22.1 15.7 22.1C15.6901 22.1 15.6803 22.0997 15.6705 22.0992C15.5355 22.0922 15.4025 22.0371 15.2994 21.934L9.26607 15.9007L9.2005 15.8222Z" fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,5 @@
|
||||
<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
||||
d="M4.21053 0H27.7895C30.1149 0 32 1.88512 32 4.21053V21.0415C32.0001 21.0487 32.0001 21.0558 32 21.0629V27.7895C32 30.1149 30.1149 32 27.7895 32H4.21053C1.88512 32 0 30.1149 0 27.7895V4.21053C0 1.88512 1.88512 0 4.21053 0ZM30.3152 19.0185V4.21121C30.3152 2.81597 29.1841 1.6849 27.7889 1.6849H4.20991C2.81466 1.6849 1.68359 2.81597 1.68359 4.21121V27.7902C1.68359 29.0742 2.64157 30.1345 3.8818 30.2954L22.1415 12.0357C22.4338 11.7434 22.8875 11.7109 23.2157 11.9383L23.3324 12.0357L30.3152 19.0185ZM6.24251 30.3165L22.7369 13.8219L30.3152 21.4003V27.7902C30.3152 29.1854 29.1841 30.3165 27.7889 30.3165H6.24251ZM6.73698 10.1054C6.73698 8.24507 8.24507 6.73698 10.1054 6.73698C11.9657 6.73698 13.4738 8.24507 13.4738 10.1054C13.4738 11.9657 11.9657 13.4738 10.1054 13.4738C8.24507 13.4738 6.73698 11.9657 6.73698 10.1054ZM11.7887 10.1067C11.7887 9.17657 11.0346 8.42253 10.1045 8.42253C9.17429 8.42253 8.42025 9.17657 8.42025 10.1067C8.42025 11.0369 9.17429 11.7909 10.1045 11.7909C11.0346 11.7909 11.7887 11.0369 11.7887 10.1067Z"
|
||||
fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,8 @@
|
||||
<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 fill-rule="evenodd" clip-rule="evenodd" d="M20.75 14.5V25C20.75 27.6234 18.6234 29.75 16 29.75H5.5V41C5.5 42.3807 6.61929 43.5 8 43.5H48C49.3807 43.5 50.5 42.3807 50.5 41V17C50.5 15.6193 49.3807 14.5 48 14.5H20.75ZM20 13H48C50.2091 13 52 14.7909 52 17V41C52 43.2091 50.2091 45 48 45H8C5.79086 45 4 43.2091 4 41V29L20 13ZM19.25 15.8713L6.87132 28.25H16C17.7949 28.25 19.25 26.7949 19.25 25V15.8713Z" fill="#5B476B"/>
|
||||
<path d="M33.4526 19.7243C33.8511 19.1621 34.253 18.5953 34.657 18.02C34.6893 18.058 34.7181 18.0916 34.744 18.1219C34.8283 18.2203 34.8829 18.284 34.9345 18.3524C37.1355 21.2689 39.2618 24.2255 40.9742 27.4563L40.9742 27.4563C41.041 27.5824 41.1645 27.6649 41.2735 27.727C41.3146 27.7504 41.3582 27.7733 41.3995 27.795C41.4142 27.8027 41.4286 27.8103 41.4424 27.8177C41.4973 27.8469 41.5469 27.8745 41.5903 27.9036L41.7821 28.0326L41.785 27.8015C41.7857 27.7488 41.7912 27.6919 41.7985 27.6297C41.8003 27.6139 41.8023 27.5976 41.8043 27.581C41.81 27.5344 41.8159 27.4851 41.8201 27.4377C41.831 27.3118 41.8334 27.1624 41.7669 27.035C39.9313 23.5167 37.6159 20.3188 35.201 17.197C35.0554 17.0088 34.89 16.871 34.6932 16.8751C34.4972 16.8792 34.3312 17.0232 34.1809 17.2311C33.8656 17.6674 33.5362 18.094 33.2054 18.5224L33.1946 18.5363C32.8606 18.9689 32.5253 19.4034 32.2044 19.8487C30.1397 22.7143 28.1485 25.6381 26.7309 28.9116C26.1017 30.3648 25.7003 31.8768 25.9502 33.4922C27.0115 40.3527 34.7213 43.4311 40.2084 39.1762C40.6947 38.799 41.107 38.3216 41.5049 37.8608C41.5649 37.7913 41.6246 37.7221 41.6842 37.6537L41.593 37.5742L41.6842 37.6537C41.7299 37.6014 41.7464 37.5378 41.7523 37.484C41.7583 37.4296 41.7548 37.3722 41.7492 37.3198C41.7451 37.2808 41.7391 37.2395 41.7335 37.2011C41.7316 37.1881 41.7298 37.1754 41.7281 37.1633C41.721 37.1126 41.7158 37.0686 41.7149 37.0305L41.7113 36.8844L41.5675 36.9106C41.3965 36.9418 41.2284 36.9869 41.0648 37.0456L41.0647 37.0453L41.0567 37.0488C40.9848 37.0805 40.9336 37.1371 40.8978 37.1818C40.8793 37.2049 40.8614 37.2295 40.8463 37.25C40.8303 37.2716 40.8165 37.2898 40.803 37.3056C38.097 40.4612 33.9643 41.1228 30.4202 38.9322L30.3623 39.0259L30.4202 38.9322C27.6323 37.2091 25.9315 33.3339 27.2915 29.9639C28.1863 27.7968 29.3031 25.7282 30.6238 23.791L30.6244 23.7901C31.5366 22.4272 32.4848 21.0896 33.4526 19.7243Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.25"/>
|
||||
<path d="M46.9632 37.0668L46.884 37.0052C46.7542 36.9043 46.6287 36.8133 46.5053 36.7238C46.4362 36.6737 46.3677 36.6241 46.2996 36.5735C46.1127 36.4347 45.9338 36.2926 45.7748 36.1281M46.9632 37.0668L37.2723 36.2038C37.7097 36.6526 38.1555 36.8998 38.6139 36.8992C39.0737 36.8987 39.5105 36.6491 39.9293 36.1855C40.1178 35.9769 40.2703 35.827 40.4035 35.7292C40.536 35.632 40.6392 35.594 40.7307 35.593C40.8216 35.5919 40.9223 35.627 41.0506 35.7203C41.18 35.8143 41.3273 35.96 41.5094 36.1641C41.9426 36.6501 42.4033 36.9118 42.8822 36.9074C43.3606 36.9029 43.8201 36.6329 44.2519 36.1394C44.583 35.7611 44.8011 35.6201 44.9962 35.6199C45.0929 35.6198 45.199 35.6541 45.3275 35.7371C45.4569 35.8208 45.6021 35.9495 45.7748 36.1281M46.9632 37.0668L47.0405 37.0027L46.9632 37.0668ZM45.7748 36.1281L45.8646 36.0412L45.7748 36.1281C45.7748 36.1281 45.7748 36.1281 45.7748 36.1281ZM39.489 35.4727L39.4001 35.3849C39.8655 34.9132 40.3075 34.6545 40.7644 34.6602C41.2218 34.666 41.6532 34.9361 42.099 35.4197C42.2836 35.62 42.4297 35.7631 42.5565 35.856C42.6822 35.9482 42.778 35.9828 42.8636 35.9828C42.9496 35.9829 43.0473 35.9483 43.1771 35.8559L39.489 35.4727ZM39.489 35.4727L39.4001 35.3849C39.1909 35.5968 39.0303 35.7471 38.8938 35.8439C38.7581 35.94 38.659 35.974 38.5714 35.9722C38.483 35.9704 38.3828 35.9317 38.246 35.8315C38.1088 35.731 37.9482 35.5788 37.7393 35.3688C37.4581 35.0863 37.0576 34.9151 36.7052 34.7644M39.489 35.4727L36.7052 34.7644M46.3085 35.5166L46.3979 35.4304C46.5027 35.539 46.6325 35.6277 46.7771 35.7189C46.8032 35.7354 46.8299 35.752 46.8569 35.7689C46.9759 35.8429 47.1023 35.9215 47.2166 36.0118C47.2858 36.0665 47.372 36.1465 47.4386 36.2264C47.4716 36.266 47.5036 36.3101 47.5255 36.3543C47.5441 36.3918 47.5714 36.4607 47.5458 36.5326C47.5457 36.5326 47.5457 36.5326 47.5457 36.5326L47.428 36.4905L46.3085 35.5166ZM46.3085 35.5166L46.3979 35.4304M46.3085 35.5166L46.3979 35.4304M36.7052 34.7644C36.6743 34.7513 36.6439 34.7382 36.6139 34.7253L36.7052 34.7644ZM46.3979 35.4304C45.9317 34.9469 45.4885 34.6755 45.0251 34.6718M46.3979 35.4304L45.0251 34.6718M45.0251 34.6718C44.5608 34.6682 44.1172 34.9333 43.6507 35.4199L45.0251 34.6718Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.25"/>
|
||||
<path d="M46.9534 33.8448L46.8779 33.7884C46.7601 33.7003 46.6443 33.6209 46.5288 33.5417C46.4626 33.4963 46.3966 33.451 46.3302 33.4042C46.1518 33.2782 45.9785 33.1456 45.8276 32.9877C45.6329 32.7839 45.4769 32.6363 45.3415 32.5393C45.2066 32.4427 45.1028 32.4041 45.0112 32.4022C44.9208 32.4003 44.8216 32.4338 44.6946 32.5247C44.5664 32.6166 44.4197 32.76 44.2368 32.9626M46.9534 33.8448L44.2368 32.9626M46.9534 33.8448L47.0284 33.7877M46.9534 33.8448L47.0284 33.7877M44.2368 32.9626C43.8102 33.4349 43.3556 33.6919 42.8833 33.6952C42.4108 33.6984 41.9551 33.4476 41.5268 32.9807C41.3375 32.7744 41.1876 32.6267 41.0575 32.5307C40.9283 32.4353 40.8297 32.3993 40.7415 32.399C40.6531 32.3987 40.5528 32.4342 40.4201 32.5291C40.2867 32.6245 40.132 32.7713 39.9364 32.9763C39.4748 33.46 39.0255 33.7192 38.557 33.7078C38.0899 33.6965 37.6442 33.4169 37.1871 32.9229C37.0867 32.8143 36.9583 32.7269 36.8133 32.6363C36.7884 32.6208 36.763 32.6051 36.7371 32.5892C36.6166 32.515 36.4877 32.4356 36.3727 32.3428L36.3661 32.3374L36.3602 32.3312C36.2402 32.2036 36.1385 32.0601 36.058 31.9046L36.0011 31.7948L36.1102 31.7368C36.1409 31.7204 36.1767 31.6974 36.2176 31.6699C36.2275 31.6632 36.2378 31.6563 36.2484 31.6491C36.2792 31.6283 36.3121 31.606 36.3432 31.5864C36.3844 31.5604 36.4311 31.5333 36.4767 31.5163C36.5161 31.5017 36.5898 31.4809 36.6606 31.5185L36.6607 31.5185C36.6714 31.5242 36.6821 31.5299 36.6928 31.5356C37.1038 31.7542 37.5476 31.9902 37.8968 32.3217C38.2266 32.6347 38.4397 32.7602 38.6223 32.76C38.7998 32.7598 38.9962 32.6393 39.2897 32.3041M44.2368 32.9626L39.2897 32.3041M39.2897 32.3041C39.2897 32.3041 39.2897 32.3041 39.2897 32.3041L39.3838 32.3864M39.2897 32.3041L46.8032 32.6772C46.6354 32.574 46.4682 32.4711 46.3329 32.3354M39.2897 32.3041C39.7537 31.7742 40.2256 31.4834 40.7216 31.4819C41.2173 31.4803 41.6953 31.7678 42.1713 32.2942L42.0862 32.3711L42.1713 32.2942C42.4848 32.641 42.6923 32.7708 42.8747 32.7698C43.0582 32.7687 43.27 32.6352 43.5915 32.2844C44.0724 31.7596 44.5161 31.4674 44.9888 31.4629C45.4604 31.4585 45.9167 31.7411 46.4214 32.2471L46.3329 32.3354M39.2897 32.3041L47.2416 32.8225C47.123 32.7271 46.9911 32.646 46.8674 32.5699C46.8458 32.5566 46.8244 32.5435 46.8034 32.5305C46.6585 32.4405 46.5278 32.3539 46.4214 32.2471L46.3329 32.3354M39.3838 32.3864C38.7951 33.0587 38.4667 33.0349 37.8108 32.4124C37.4741 32.0928 37.0434 31.8637 36.6278 31.6426C36.6192 31.6381 36.6106 31.6335 36.602 31.6289C36.5456 31.599 36.4328 31.6753 36.3199 31.7517C36.2677 31.787 36.2156 31.8223 36.1689 31.8471C36.1752 31.8591 36.1815 31.871 36.188 31.8829L36.2277 31.9574C36.2286 31.9569 36.2295 31.9565 36.2303 31.956C36.2938 32.0598 36.3678 32.1568 36.4512 32.2455C36.5594 32.3328 36.68 32.4071 36.8002 32.4812C36.9734 32.5879 37.1458 32.6942 37.2789 32.838C38.1764 33.808 38.9421 33.837 39.8459 32.89C40.6314 32.0672 40.8589 32.068 41.6189 32.8962C42.4487 33.8007 43.3168 33.7947 44.144 32.8788L39.3838 32.3864ZM39.3838 32.3864C40.2916 31.3497 41.1464 31.3471 42.0785 32.3781C42.7037 33.0695 43.0434 33.0676 43.6837 32.3689C44.6336 31.3322 45.3342 31.3342 46.3329 32.3354M47.0284 33.7877C47.0993 33.7338 47.1646 33.6921 47.2278 33.6518C47.2611 33.6306 47.2938 33.6097 47.3264 33.5876C47.3701 33.558 47.4143 33.5255 47.4502 33.4889C47.4861 33.4522 47.5216 33.4034 47.534 33.3404L47.4114 33.3162L47.0284 33.7877Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.25"/>
|
||||
<path d="M42.4824 30.4229L42.4825 30.4227C42.1224 30.286 41.7993 30.067 41.5389 29.7831C41.3349 29.5746 41.176 29.4246 41.0396 29.327C40.9037 29.2296 40.803 29.1938 40.7141 29.1949C40.6253 29.196 40.5249 29.2343 40.3902 29.3363C40.2548 29.4389 40.0972 29.5961 39.8952 29.816L39.8952 29.816C39.4887 30.2587 39.0675 30.4991 38.6235 30.5048C38.1805 30.5105 37.7486 30.2819 37.3213 29.8634C37.1808 29.7259 37.0178 29.608 36.8436 29.4902C36.8029 29.4626 36.7614 29.4349 36.7194 29.4069C36.5848 29.3171 36.4457 29.2244 36.3154 29.1239L36.3154 29.1239C36.2557 29.0779 36.1855 29.0077 36.1328 28.9408C36.1066 28.9075 36.0809 28.8703 36.0633 28.8335C36.0546 28.8153 36.0455 28.7926 36.0411 28.7675C36.0367 28.7434 36.0345 28.7049 36.0537 28.6653L36.0538 28.6652C36.0932 28.5846 36.166 28.4953 36.2384 28.4294C36.275 28.396 36.3165 28.3641 36.3588 28.3417C36.3948 28.3227 36.4591 28.2955 36.5281 28.3149M42.4824 30.4229L38.5826 29.5711C38.4331 29.5687 38.2688 29.491 38.0818 29.3037L38.0818 29.3037C38.0227 29.2445 37.9709 29.1791 37.9144 29.1077C37.8932 29.0808 37.8713 29.0531 37.848 29.0246C37.7675 28.9256 37.6736 28.8204 37.553 28.747L37.553 28.747L37.5513 28.746C37.2307 28.5578 36.8867 28.4128 36.5281 28.3149M42.4824 30.4229L42.4888 30.4249C43.164 30.641 43.7139 30.3381 44.154 29.8485L44.061 29.765M42.4824 30.4229L44.061 29.765M36.5281 28.3149C36.5285 28.315 36.5288 28.3151 36.5292 28.3152L36.4946 28.4353M36.5281 28.3149C36.5279 28.3148 36.5277 28.3148 36.5276 28.3147L36.4946 28.4353M36.4946 28.4353C36.8428 28.5303 37.1768 28.671 37.488 28.8538L36.7862 29.3012C36.6523 29.2119 36.5183 29.1225 36.3917 29.0249C36.2903 28.9467 36.1398 28.7741 36.1661 28.7201C36.2274 28.5947 36.4125 28.4117 36.4946 28.4353ZM44.061 29.765L44.154 29.8485C44.3237 29.6597 44.5177 29.5003 44.7401 29.3175C44.8254 29.2474 44.9149 29.1739 45.0088 29.094C45.0904 29.1645 45.167 29.2322 45.2402 29.2969C45.4424 29.4758 45.6192 29.6322 45.8081 29.7636C46.1722 30.0239 46.5574 30.2534 46.9597 30.4498L46.9596 30.4498L46.9612 30.4506C47.033 30.4843 47.1052 30.4628 47.1464 30.4462C47.1927 30.4276 47.2396 30.3987 47.2811 30.3708C47.3124 30.3497 47.3455 30.3259 47.3764 30.3035C47.3869 30.296 47.3971 30.2887 47.4069 30.2816C47.4479 30.2523 47.4838 30.2277 47.5149 30.2099L47.6288 30.145L47.5586 30.0344C47.4666 29.8894 47.3592 29.7548 47.2383 29.6329L47.2387 29.6324M44.061 29.765L47.2387 29.6324M41.9126 28.8056L41.9126 28.8056C41.9512 28.8453 41.9912 28.8934 42.0269 28.9362C42.0457 28.9588 42.0633 28.9799 42.0788 28.9976C42.2621 29.2062 42.4094 29.3554 42.5384 29.4524C42.6665 29.5486 42.7661 29.5853 42.8559 29.5857C42.9462 29.586 43.0485 29.5498 43.1822 29.4539C43.3165 29.3576 43.4713 29.2091 43.6646 29.0019L43.6647 29.0019C43.6814 28.9839 43.6991 28.9653 43.7163 28.9471L41.9126 28.8056ZM41.9126 28.8056C41.5974 28.4815 41.2194 28.3006 40.8268 28.2794C40.4341 28.2582 40.0387 28.3976 39.6907 28.6921C39.5743 28.7906 39.4719 28.9023 39.3757 29.0102C39.3625 29.025 39.3494 29.0397 39.3364 29.0543C39.2532 29.1479 39.1739 29.2371 39.0881 29.3191L41.9126 28.8056ZM47.2387 29.6324L47.2288 29.6243M47.2387 29.6324L47.2288 29.6243M47.2288 29.6243C47.1083 29.5256 46.9772 29.4362 46.8518 29.3508C46.8187 29.3282 46.786 29.306 46.754 29.2839C46.5975 29.1757 46.4536 29.0691 46.334 28.9431M47.2288 29.6243L46.2434 29.0292L46.334 28.9431M46.334 28.9431C45.9327 28.5202 45.4928 28.287 45.0402 28.2788C44.5863 28.2706 44.1474 28.489 43.75 28.9114L46.334 28.9431Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.25"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,9 @@
|
||||
<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.9999 30.2147C23.5741 30.2147 29.7142 24.0746 29.7142 16.5004C29.7142 8.92623 23.5741 2.78613 15.9999 2.78613C8.42574 2.78613 2.28564 8.92623 2.28564 16.5004C2.28564 24.0746 8.42574 30.2147 15.9999 30.2147Z" fill="#F4E5FF"/>
|
||||
<path d="M14.0591 21.2637V14.8535H18.2836V15.928H15.2713V17.48H17.9346V18.5545H15.2713V20.1892H18.2836V21.2637H14.0591Z" fill="#5B476B"/>
|
||||
<path d="M23.4335 10.4826C21.8749 8.92405 19.9206 7.90553 17.7973 7.51934C17.9211 7.2493 17.9907 6.9494 17.9907 6.63338C17.9907 5.45703 17.0337 4.5 15.8574 4.5C14.681 4.5 13.724 5.45703 13.724 6.63338C13.724 6.9494 13.7936 7.2493 13.9174 7.51934C11.7941 7.90553 9.83976 8.92405 8.28121 10.4826C6.25754 12.5063 5.14307 15.1969 5.14307 18.0588C5.14307 20.9207 6.25754 23.6112 8.28121 25.635C10.3048 27.6586 12.9955 28.7731 15.8574 28.7731C18.7192 28.7731 21.4098 27.6586 23.4335 25.635C25.4572 23.6112 26.5716 20.9207 26.5716 18.0588C26.5716 15.1969 25.4572 12.5063 23.4335 10.4826ZM15.8574 5.92225C16.2495 5.92225 16.5685 6.24126 16.5685 6.63338C16.5685 7.02549 16.2495 7.3445 15.8574 7.3445C15.4652 7.3445 15.1462 7.02549 15.1462 6.63338C15.1462 6.24126 15.4652 5.92225 15.8574 5.92225ZM15.8574 27.3508C10.7337 27.3508 6.56532 23.1824 6.56532 18.0588C6.56532 12.9351 10.7337 8.76675 15.8574 8.76675C20.981 8.76675 25.1494 12.9351 25.1494 18.0588C25.1494 23.1824 20.981 27.3508 15.8574 27.3508Z" fill="#5B476B"/>
|
||||
<path d="M16.5682 10.1895H15.146V12.0858H16.5682V10.1895Z" fill="#5B476B"/>
|
||||
<path d="M9.88364 17.3477H7.9873V18.7699H9.88364V17.3477Z" fill="#5B476B"/>
|
||||
<path d="M16.5682 24.0322H15.146V25.9286H16.5682V24.0322Z" fill="#5B476B"/>
|
||||
<path d="M23.7269 17.3477H21.8306V18.7699H23.7269V17.3477Z" fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,3 @@
|
||||
<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="M24.6953 2.86158L12.0286 15.5282C11.9432 15.6137 11.8826 15.7207 11.8533 15.838L10.52 21.1713C10.3979 21.6595 10.8402 22.1018 11.3284 21.9797L16.6617 20.6464C16.779 20.6171 16.886 20.5565 16.9715 20.4711L29.6381 7.80439C31.003 6.43947 31.003 4.2265 29.6381 2.86158C28.2732 1.49666 26.0602 1.49666 24.6953 2.86158ZM28.8354 3.95912C29.5364 4.80834 29.4897 6.06754 28.6951 6.8621L16.1599 19.3962L12.0826 20.4162L13.1026 16.3388L25.638 3.80491C26.4822 2.96069 27.8509 2.96069 28.6951 3.80491L28.8354 3.95912ZM15.8333 5.33268C15.8333 4.96449 15.5349 4.66602 15.1667 4.66602H5.83333L5.61417 4.67311C3.87538 4.78596 2.5 6.23204 2.5 7.99935V26.666L2.50709 26.8852C2.61995 28.624 4.06602 29.9994 5.83333 29.9994H24.5L24.7192 29.9923C26.458 29.8794 27.8333 28.4333 27.8333 26.666V17.3327L27.8226 17.2129C27.7661 16.9019 27.4939 16.666 27.1667 16.666C26.7985 16.666 26.5 16.9645 26.5 17.3327V26.666L26.4908 26.8586C26.3939 27.8728 25.5396 28.666 24.5 28.666H5.83333L5.64072 28.6569C4.62652 28.5599 3.83333 27.7056 3.83333 26.666V7.99935L3.84249 7.80674C3.9394 6.79253 4.79374 5.99935 5.83333 5.99935H15.1667L15.2865 5.98861C15.5975 5.93216 15.8333 5.65996 15.8333 5.33268Z" fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.1469 1.1457L7.6469 10.6457C7.58282 10.7098 7.53736 10.7901 7.51538 10.878L6.51538 14.878C6.42384 15.2442 6.75553 15.5759 7.12172 15.4843L11.1217 14.4843C11.2096 14.4623 11.2899 14.4169 11.354 14.3528L20.854 4.8528C21.8777 3.82911 21.8777 2.16939 20.854 1.1457C19.8303 0.122007 18.1706 0.122007 17.1469 1.1457ZM20.2511 1.96846C20.7769 2.60538 20.7419 3.54978 20.146 4.1457L10.7445 13.5462L7.68652 14.3112L8.45152 11.2532L17.8531 1.8528C18.4862 1.21964 19.5128 1.21964 20.146 1.8528L20.2511 1.96846ZM10.5 2.99902C10.5 2.72288 10.2761 2.49902 10 2.49902H3L2.83562 2.50434C1.53154 2.58898 0.5 3.67354 0.5 4.99902V18.999L0.505318 19.1634C0.589961 20.4675 1.67452 21.499 3 21.499H17L17.1644 21.4937C18.4685 21.4091 19.5 20.3245 19.5 18.999V11.999L19.4919 11.9091C19.4496 11.6759 19.2455 11.499 19 11.499C18.7239 11.499 18.5 11.7229 18.5 11.999V18.999L18.4931 19.1435C18.4205 19.9041 17.7797 20.499 17 20.499H3L2.85554 20.4922C2.09489 20.4195 1.5 19.7787 1.5 18.999V4.99902L1.50687 4.85456C1.57955 4.09391 2.2203 3.49902 3 3.49902H10L10.0899 3.49097C10.3231 3.44863 10.5 3.24448 10.5 2.99902Z" fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,3 @@
|
||||
<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="M18.2112 4.87793L10.2945 12.7946C10.2411 12.848 10.1742 12.8859 10.101 12.9042L6.76764 13.7375C6.46248 13.8138 6.18607 13.5374 6.26236 13.2322L7.09569 9.89891C7.11401 9.82565 7.15189 9.75874 7.20529 9.70534L15.122 1.78868C15.975 0.9356 17.3581 0.9356 18.2112 1.78868C19.0643 2.64175 19.0643 4.02486 18.2112 4.87793ZM17.5252 2.2904C16.9945 1.85222 16.2075 1.88143 15.7109 2.37803L7.87709 10.2126L7.23959 12.7609L9.78792 12.1234L17.6216 4.28878C18.1493 3.76114 18.1493 2.90567 17.6216 2.37803L17.5252 2.2904ZM16.6668 10.4167C16.8969 10.4167 17.0834 10.6032 17.0834 10.8333L17.0834 16.6667L17.079 16.8036C17.0085 17.8904 16.1047 18.75 15.0001 18.75L3.33343 18.75L3.19646 18.7456C2.10971 18.675 1.2501 17.7712 1.2501 16.6667L1.2501 5L1.25453 4.86302C1.32507 3.77628 2.22886 2.91666 3.33343 2.91666L9.16677 2.91666L9.24166 2.92338C9.43604 2.95866 9.58344 3.12878 9.58344 3.33333C9.58344 3.56345 9.39689 3.75 9.16677 3.75L3.33343 3.75L3.21305 3.75572C2.57917 3.81629 2.08344 4.35025 2.08344 5L2.08344 16.6667L2.08916 16.787C2.14973 17.4209 2.68369 17.9167 3.33343 17.9167L15.0001 17.9167L15.1205 17.9109C15.7544 17.8504 16.2501 17.3164 16.2501 16.6667L16.2501 10.8333L16.2568 10.7584C16.2921 10.5641 16.4622 10.4167 16.6668 10.4167Z" fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -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.0001 29.44C23.4228 29.44 29.4401 23.4227 29.4401 16C29.4401 8.57729 23.4228 2.56 16.0001 2.56C8.57735 2.56 2.56006 8.57729 2.56006 16C2.56006 23.4227 8.57735 29.44 16.0001 29.44Z" fill="#F4E5FF"/>
|
||||
<path d="M26.1878 9.95997C26.0574 9.82953 25.8461 9.82953 25.7157 9.95997L23.9318 11.744L21.4043 9.21629L23.1933 7.42709C23.3237 7.29666 23.3237 7.08542 23.1933 6.95498C23.0628 6.82454 22.8516 6.82454 22.7211 6.95498L20.9322 8.74417L19.8392 7.65147C19.6207 7.4331 19.3293 7.3129 19.0188 7.3129C18.7083 7.3129 18.4171 7.4331 18.1983 7.65147C17.9802 7.86983 17.8597 8.16143 17.8597 8.47194C17.8597 8.78268 17.9802 9.07383 18.1983 9.29242L18.2462 9.34027L16.4741 11.1121C15.348 12.2384 15.0898 13.9056 15.6924 15.2837L13.5341 17.4417L14.4305 18.3381C13.7792 18.8872 13.2265 19.5537 12.6451 20.2571C11.0266 22.2163 9.35315 24.2424 5.14282 24.2424V24.9101C9.66768 24.9101 11.523 22.664 13.1601 20.6822C13.7347 19.9866 14.28 19.3293 14.9046 18.8122L15.7427 19.6503L17.8998 17.4932C18.3701 17.6988 18.8814 17.8097 19.4114 17.8097C20.4182 17.8097 21.3636 17.4193 22.0725 16.7103L23.8446 14.9382L23.892 14.9861C24.1106 15.2045 24.4019 15.3249 24.7125 15.3249C25.023 15.3249 25.3146 15.2045 25.5329 14.9861C25.7515 14.7677 25.8719 14.4764 25.8719 14.1658C25.8719 13.8551 25.7515 13.5637 25.5329 13.3452L24.4044 12.2164L26.1882 10.4323C26.3182 10.3016 26.3182 10.0904 26.1878 9.95997ZM15.7424 18.7058L14.4781 17.4415L16.0274 15.892C16.1578 16.0826 16.3047 16.2651 16.4739 16.4343L16.7499 16.7099C16.9177 16.8777 17.0994 17.0259 17.2912 17.157L15.7424 18.7058ZM21.6002 16.2377C21.0172 16.8205 20.2399 17.1417 19.4112 17.1417C18.5825 17.1417 17.8048 16.8207 17.2222 16.2377L16.9462 15.9622C15.7395 14.7553 15.7395 12.7911 16.9462 11.584L18.7183 9.81217L23.3722 14.4657L21.6002 16.2377ZM25.0604 14.5135C24.8756 14.6983 24.5486 14.6983 24.3639 14.5135L18.6704 8.82008C18.5783 8.7277 18.5273 8.60394 18.5273 8.47194C18.5273 8.33994 18.5783 8.21618 18.6704 8.12381C18.763 8.03143 18.8866 7.98046 19.0185 7.98046C19.1505 7.98046 19.2745 8.03143 19.3667 8.12381L25.0601 13.8173C25.2527 14.0089 25.2527 14.3214 25.0604 14.5135Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,7 @@
|
||||
<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.7261 29.1656C23.1488 29.1656 29.1661 23.1484 29.1661 15.7256C29.1661 8.30294 23.1488 2.28564 15.7261 2.28564C8.30343 2.28564 2.28613 8.30294 2.28613 15.7256C2.28613 23.1484 8.30343 29.1656 15.7261 29.1656Z" fill="#F4E5FF"/>
|
||||
<path d="M11.2816 24.7049H14.9099V27.3477C14.9099 28.154 15.5594 28.8035 16.3657 28.8035H18.695V28.8259C19.0309 29.2738 19.5685 29.5426 20.1284 29.5426C20.1956 29.5426 20.2628 29.5426 20.33 29.5202C21.3154 29.4082 22.0321 28.5123 21.9201 27.5269C21.8082 26.5414 20.9123 25.8247 19.9268 25.9367C19.3893 26.0039 18.8966 26.295 18.6278 26.7654H16.948V24.7049H20.8451C21.6962 24.7049 22.4129 24.0106 22.4129 23.1371V10.8188C22.4129 9.96776 21.7186 9.25106 20.8451 9.25106H17.9559V7.77287C17.9559 7.34733 17.6199 6.98898 17.1944 6.96658V4.59252H20.4419V2.28564H16.5897C15.6714 2.28564 14.9099 3.04714 14.9099 3.96541V6.96658C14.4844 6.98898 14.1484 7.34733 14.1484 7.77287V9.25106H11.2816C10.4306 9.25106 9.71387 9.94536 9.71387 10.8188V23.1371C9.71387 23.9882 10.4082 24.7049 11.2816 24.7049ZM19.994 26.6086C20.2852 26.5638 20.5763 26.6534 20.8227 26.855C21.0467 27.0341 21.2034 27.3029 21.2482 27.6165C21.3154 28.2212 20.8675 28.7811 20.2628 28.8483C20.0164 28.8707 19.7924 28.8259 19.5909 28.7139C19.9492 28.5571 20.1956 28.1988 20.1956 27.7956C20.1956 27.3477 19.882 26.967 19.4789 26.8326C19.6133 26.6982 19.7924 26.631 19.994 26.6086ZM19.1653 27.4373C19.3445 27.4373 19.5013 27.5941 19.5013 27.7732C19.5013 27.9524 19.3445 28.1092 19.1653 28.1092H16.3433C15.9178 28.1092 15.5594 27.7508 15.5594 27.3253V24.6825H16.2313V27.4149H19.1653V27.4373ZM16.5897 2.95755H19.7924V3.92061H16.5225V6.96658H15.5594V3.96541C15.5818 3.40549 16.0298 2.95755 16.5897 2.95755ZM14.8203 7.77287C14.8203 7.70568 14.8875 7.63849 14.9547 7.63849H17.172C17.2392 7.63849 17.3064 7.70568 17.3064 7.77287V9.25106H14.8203V7.77287ZM10.3858 10.8188C10.3858 10.3261 10.7889 9.92296 11.2816 9.92296H14.1484H17.9783H20.8451C21.3378 9.92296 21.741 10.3261 21.741 10.8188V23.1371C21.741 23.6298 21.3378 24.033 20.8451 24.033H11.2816C10.7889 24.033 10.3858 23.6298 10.3858 23.1371V10.8188Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.171429"/>
|
||||
<path d="M16.0526 20.2031C15.2687 20.2031 14.6416 20.8302 14.6416 21.6141C14.6416 22.398 15.2687 23.0251 16.0526 23.0251C16.8365 23.0251 17.4636 22.398 17.4636 21.6141C17.4636 20.8302 16.8365 20.2031 16.0526 20.2031ZM16.0526 22.3532C15.6495 22.3532 15.3135 22.0173 15.3135 21.6141C15.3135 21.211 15.6495 20.875 16.0526 20.875C16.4557 20.875 16.7917 21.211 16.7917 21.6141C16.7917 22.0173 16.4557 22.3532 16.0526 22.3532Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.171429"/>
|
||||
<path d="M14.507 14.5371C14.395 14.6267 14.2382 14.7611 14.1262 15.0075C13.8575 15.6122 14.1486 16.2393 14.1934 16.3065C14.507 16.9336 15.2237 17.2471 15.8956 17.2471C16.1419 17.2471 16.3883 17.2024 16.6123 17.1128C17.1498 16.9112 17.4409 16.5081 17.5529 16.3737C17.8217 16.0153 17.9785 15.6122 18.0233 15.1642C18.0457 14.9403 18.0233 14.4699 17.7769 13.9772C17.6425 13.7084 17.4409 13.4621 17.217 13.2605L16.8138 12.9246L16.6795 13.4397C16.6347 13.6189 16.5675 13.798 16.4779 13.9548C16.3659 13.7756 16.2539 13.5741 16.1195 13.4397C15.694 12.9694 14.9773 12.9918 14.5742 13.0365L14.0366 13.1261L14.3726 13.5741C14.6189 13.91 14.7309 14.2012 14.6637 14.358C14.6413 14.4475 14.5966 14.4699 14.507 14.5371ZM14.7533 15.2986C14.7981 15.1866 14.8653 15.1418 14.9549 15.0747C15.0669 14.9851 15.2013 14.8507 15.2909 14.6267C15.3804 14.358 15.3804 14.0668 15.2237 13.7308C15.4028 13.7532 15.5596 13.8204 15.6492 13.91C15.694 13.9772 15.806 14.1116 15.9852 14.4251C16.0523 14.5371 16.0971 14.6715 16.1643 14.7835L16.3883 15.2986L16.7466 14.8731C16.8362 14.7611 16.9258 14.6267 17.0154 14.5147C17.0826 14.4251 17.1274 14.3132 17.1722 14.2012C17.1946 14.246 17.217 14.2684 17.2394 14.3132C17.4186 14.6491 17.4186 14.9851 17.4186 15.1418C17.3962 15.5898 17.1722 15.8809 17.0826 15.9929C16.993 16.1049 16.7914 16.3961 16.4331 16.5081C15.8956 16.7096 15.0893 16.5304 14.8429 16.0153C14.7981 16.0153 14.5966 15.6122 14.7533 15.2986Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.171429"/>
|
||||
<path d="M13.3652 18.815H18.7404C19.3227 18.815 19.793 18.3447 19.793 17.7624V12.3871C19.793 11.8048 19.3227 11.3345 18.7404 11.3345H13.3652C12.7828 11.3345 12.3125 11.8048 12.3125 12.3871V17.7848C12.3125 18.3447 12.7828 18.815 13.3652 18.815ZM12.9844 12.3871C12.9844 12.1856 13.1636 12.0064 13.3652 12.0064H18.7404C18.942 12.0064 19.1211 12.1856 19.1211 12.3871V17.7848C19.1211 17.9863 18.942 18.1655 18.7404 18.1655H13.3652C13.1636 18.1655 12.9844 17.9863 12.9844 17.7848V12.3871Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.171429"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.7 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.0001 58.8801C46.8455 58.8801 58.8801 46.8455 58.8801 32.0001C58.8801 17.1547 46.8455 5.12012 32.0001 5.12012C17.1547 5.12012 5.12012 17.1547 5.12012 32.0001C5.12012 46.8455 17.1547 58.8801 32.0001 58.8801Z" fill="#F4E5FF"/>
|
||||
<path d="M52.3761 19.92C52.1152 19.6591 51.6927 19.6591 51.4318 19.92L47.8641 23.4882L42.8091 18.4326L46.387 14.8542C46.6479 14.5934 46.6479 14.1709 46.387 13.91C46.1261 13.6491 45.7037 13.6491 45.4428 13.91L41.8648 17.4884L39.679 15.303C39.2418 14.8663 38.6591 14.6259 38.038 14.6259C37.417 14.6259 36.8347 14.8663 36.3971 15.303C35.9608 15.7397 35.72 16.3229 35.72 16.9439C35.72 17.5654 35.9608 18.1477 36.3971 18.5849L36.4928 18.6806L32.9487 22.2243C30.6965 24.4769 30.1801 27.8113 31.3852 30.5675L27.0687 34.8835L28.8614 36.6763C27.5588 37.7746 26.4534 39.1074 25.2906 40.5142C22.0537 44.4327 18.7068 48.4848 10.2861 48.4848V49.8204C19.3358 49.8204 23.0465 45.328 26.3208 41.3645C27.4698 39.9733 28.5605 38.6587 29.8097 37.6245L31.4858 39.3007L35.8001 34.9864C36.7408 35.3977 37.7634 35.6194 38.8233 35.6194C40.8369 35.6194 42.7276 34.8386 44.1455 33.4207L47.6896 29.8765L47.7845 29.9723C48.2216 30.409 48.8044 30.6498 49.4254 30.6498C50.0464 30.6498 50.6296 30.409 51.0663 29.9723C51.5035 29.5355 51.7444 28.9528 51.7444 28.3318C51.7444 27.7103 51.5035 27.1275 51.0663 26.6904L48.8093 24.4328L52.377 20.8647C52.637 20.6034 52.637 20.1809 52.3761 19.92ZM31.4854 37.4117L28.9567 34.8831L32.0552 31.7842C32.3161 32.1652 32.6099 32.5303 32.9482 32.8686L33.5003 33.4198C33.8359 33.7554 34.1992 34.0519 34.583 34.3141L31.4854 37.4117ZM43.2008 32.4755C42.0349 33.641 40.4803 34.2834 38.8229 34.2834C37.1655 34.2834 35.61 33.6415 34.445 32.4755L33.8929 31.9244C31.4796 29.5106 31.4796 25.5823 33.8929 23.1681L37.437 19.6244L46.7449 28.9314L43.2008 32.4755ZM50.1212 29.0271C49.7517 29.3966 49.0977 29.3966 48.7282 29.0271L37.3413 17.6402C37.157 17.4555 37.0551 17.2079 37.0551 16.9439C37.0551 16.6799 37.157 16.4324 37.3413 16.2477C37.5265 16.0629 37.7736 15.961 38.0376 15.961C38.3016 15.961 38.5495 16.0629 38.7339 16.2477L50.1208 27.6346C50.5059 28.0179 50.5059 28.6429 50.1212 29.0271Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,16 @@
|
||||
<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.7261 29.1656C23.1488 29.1656 29.1661 23.1484 29.1661 15.7256C29.1661 8.30294 23.1488 2.28564 15.7261 2.28564C8.30343 2.28564 2.28613 8.30294 2.28613 15.7256C2.28613 23.1484 8.30343 29.1656 15.7261 29.1656Z" fill="#F4E5FF"/>
|
||||
<path d="M6.28516 27.5225H21.7518V7.54468H6.28516V27.5225ZM19.8185 26.878H14.3407V9.47801H19.8185V26.878ZM13.6963 26.878H8.21849V9.47801H13.6963V26.878ZM6.9296 8.18912H21.1074V26.878H20.4629V8.83357H7.57405V26.878H6.9296V8.18912Z" fill="#5B476B"/>
|
||||
<path d="M9.50764 4C9.16581 4 8.83797 4.13579 8.59626 4.37751C8.35454 4.61922 8.21875 4.94706 8.21875 5.28889C8.21875 5.63073 8.35454 5.95856 8.59626 6.20027C8.83797 6.44199 9.16581 6.57778 9.50764 6.57778H18.5299C18.8717 6.57778 19.1995 6.44199 19.4413 6.20027C19.683 5.95856 19.8188 5.63073 19.8188 5.28889C19.8188 4.94706 19.683 4.61922 19.4413 4.37751C19.1995 4.13579 18.8717 4 18.5299 4H9.50764ZM19.1743 5.28889C19.1743 5.45981 19.1064 5.62372 18.9856 5.74458C18.8647 5.86544 18.7008 5.93334 18.5299 5.93334H9.50764C9.33672 5.93334 9.17281 5.86544 9.05195 5.74458C8.93109 5.62372 8.8632 5.45981 8.8632 5.28889C8.8632 5.11797 8.93109 4.95406 9.05195 4.8332C9.17281 4.71234 9.33672 4.64445 9.50764 4.64445H18.5299C18.7008 4.64445 18.8647 4.71234 18.9856 4.8332C19.1064 4.95406 19.1743 5.11797 19.1743 5.28889Z" fill="#5B476B"/>
|
||||
<path d="M10.1523 5.61124C10.3303 5.61124 10.4745 5.46698 10.4745 5.28902C10.4745 5.11106 10.3303 4.9668 10.1523 4.9668C9.97434 4.9668 9.83008 5.11106 9.83008 5.28902C9.83008 5.46698 9.97434 5.61124 10.1523 5.61124Z" fill="#5B476B"/>
|
||||
<path d="M11.6982 5.61124C11.8762 5.61124 12.0204 5.46698 12.0204 5.28902C12.0204 5.11106 11.8762 4.9668 11.6982 4.9668C11.5202 4.9668 11.376 5.11106 11.376 5.28902C11.376 5.46698 11.5202 5.61124 11.6982 5.61124Z" fill="#5B476B"/>
|
||||
<path d="M13.2451 5.61124C13.423 5.61124 13.5673 5.46698 13.5673 5.28902C13.5673 5.11106 13.423 4.9668 13.2451 4.9668C13.0671 4.9668 12.9229 5.11106 12.9229 5.28902C12.9229 5.46698 13.0671 5.61124 13.2451 5.61124Z" fill="#5B476B"/>
|
||||
<path d="M14.7919 5.61124C14.9699 5.61124 15.1142 5.46698 15.1142 5.28902C15.1142 5.11106 14.9699 4.9668 14.7919 4.9668C14.614 4.9668 14.4697 5.11106 14.4697 5.28902C14.4697 5.46698 14.614 5.61124 14.7919 5.61124Z" fill="#5B476B"/>
|
||||
<path d="M16.3388 5.61124C16.5168 5.61124 16.661 5.46698 16.661 5.28902C16.661 5.11106 16.5168 4.9668 16.3388 4.9668C16.1609 4.9668 16.0166 5.11106 16.0166 5.28902C16.0166 5.46698 16.1609 5.61124 16.3388 5.61124Z" fill="#5B476B"/>
|
||||
<path d="M17.8857 5.61124C18.0637 5.61124 18.2079 5.46698 18.2079 5.28902C18.2079 5.11106 18.0637 4.9668 17.8857 4.9668C17.7077 4.9668 17.5635 5.11106 17.5635 5.28902C17.5635 5.46698 17.7077 5.61124 17.8857 5.61124Z" fill="#5B476B"/>
|
||||
<path d="M22.7188 19.1441H25.941V14.3108H22.7188V19.1441ZM23.3632 14.9552H25.2965V18.4997H23.3632V14.9552Z" fill="#5B476B"/>
|
||||
<path d="M23.6855 16.5665H24.9744L24.33 15.2776L23.6855 16.5665Z" fill="#5B476B"/>
|
||||
<path d="M24.33 18.1776L24.9744 16.8887H23.6855L24.33 18.1776Z" fill="#5B476B"/>
|
||||
<path d="M19.1737 10.4446H18.5293V11.089H19.1737V10.4446Z" fill="#5B476B"/>
|
||||
<path d="M19.1737 11.4109H18.5293V13.022H19.1737V11.4109Z" fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.99999 25.3334V10.0489L16.0702 18.4411C16.5105 18.7037 17.0624 18.6906 17.4898 18.4074L30 10.1166V25.3334C30 26.4379 29.1046 27.3334 28 27.3334H4C2.89543 27.3334 1.99999 26.4379 1.99999 25.3334ZM30 8.51708L16.7532 17.296L1.99999 8.49643V8.00004C1.99999 6.89547 2.89543 6.00004 3.99999 6.00004H28C29.1046 6.00004 30 6.89547 30 8.00004V8.51708Z" stroke="#5B476B" stroke-width="1.33333"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 499 B |
@@ -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="M9.47343 2.00016L5.47993 2.00013C4.54352 2.00117 3.65135 2.39529 3.02058 3.0863C2.38975 3.77735 2.07842 4.70171 2.16263 5.63359C2.61237 9.86944 4.05011 13.9298 6.36041 17.4961C8.45686 20.7953 11.2582 23.5967 14.5624 25.6963C18.1073 27.9952 22.148 29.4326 26.3546 29.8897C27.3014 29.9754 28.2284 29.6618 28.9201 29.0273C29.6117 28.3928 30.0037 27.4961 29.9999 26.5576L29.9999 22.5603C30.0417 20.8848 28.809 19.4299 27.1331 19.1935C25.8969 19.0304 24.6889 18.7295 23.5263 18.2957L23.2965 18.2187C22.1398 17.8774 20.8787 18.1884 20.0112 19.0462L18.6786 20.3776L18.6102 20.3368C15.937 18.7147 13.6688 16.5083 11.9743 13.8864L11.6213 13.3203L12.9513 11.9917C13.869 11.0637 14.1619 9.69048 13.704 8.47235C13.2707 7.31127 12.9698 6.10333 12.8075 4.87309C12.5725 3.21028 11.1465 1.98386 9.47343 2.00016ZM5.48066 3.33346L9.48641 3.33343C10.4903 3.32365 11.346 4.05953 11.4865 5.05356C11.661 6.37737 11.9863 7.68319 12.4553 8.94C12.7306 9.67237 12.5549 10.4963 12.0059 11.0515L10.3152 12.7422C10.103 12.9544 10.0587 13.2822 10.2071 13.5431C12.1644 16.9855 15.0147 19.8357 18.4571 21.7931C18.7179 21.9415 19.0458 21.8972 19.258 21.685L20.9513 19.9917C21.5039 19.4453 22.3278 19.2696 23.0587 19.5443C24.317 20.0138 25.6228 20.3391 26.9527 20.5145C27.9524 20.6556 28.692 21.5285 28.6668 22.5437L28.6666 26.5603C28.6689 27.1261 28.4336 27.6641 28.0187 28.0448C27.6037 28.4255 27.0475 28.6137 26.4866 28.563C22.4994 28.1296 18.6578 26.763 15.2827 24.5742C12.1385 22.5763 9.47722 19.915 7.48259 16.776C5.28301 13.3806 3.91612 9.52039 3.48952 5.50319C3.44002 4.95446 3.62682 4.39984 4.00531 3.98521C4.3838 3.57059 4.91917 3.33409 5.48066 3.33346Z" fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -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.653 29.3749C24.1336 29.3749 30.1979 23.3106 30.1979 15.83C30.1979 8.34939 24.1336 2.28516 16.653 2.28516C9.17239 2.28516 3.10815 8.34939 3.10815 15.83C3.10815 23.3106 9.17239 29.3749 16.653 29.3749Z" fill="#F4E5FF"/>
|
||||
<path d="M29.8766 3.50941H28.6302V2.60737C28.6302 2.43002 28.4863 2.28613 28.309 2.28613C28.1316 2.28613 27.9877 2.43002 27.9877 2.60737V3.50941C24.3202 3.50636 4.913 3.48181 4.99339 3.50941V2.60737C4.99339 2.43002 4.8495 2.28613 4.67215 2.28613C4.4948 2.28613 4.35091 2.43002 4.35091 2.60737V3.50941H3.10688C2.927 3.50941 2.78564 3.65074 2.78564 3.83065C2.78564 4.00624 2.927 4.15188 3.10688 4.15188H4.35091V5.05324C4.35091 5.23059 4.4948 5.37448 4.67215 5.37448C4.8495 5.37448 4.99339 5.23059 4.99339 5.05324V4.15188H5.61254C5.61253 4.20363 5.60883 24.5793 5.61683 29.1312C5.61683 29.2554 5.68964 29.3711 5.80529 29.4225C5.92092 29.4739 6.0537 29.4567 6.15223 29.3711C6.92319 28.6815 7.29153 28.8528 7.9597 29.1569C8.83233 29.5597 9.58257 29.7646 10.7138 29.4396C10.8594 29.3968 10.9536 29.264 10.9451 29.1141C10.9194 28.6215 10.868 28.0091 10.7909 27.3152C14.9724 27.3152 18.0165 27.3152 22.1883 27.3152C22.1112 28.0091 22.0598 28.6216 22.0341 29.1141C22.0256 29.264 22.1241 29.3968 22.2697 29.4396C23.3784 29.7615 24.1406 29.5646 25.0238 29.1569C25.6919 28.8528 26.0603 28.6815 26.8313 29.3711C26.9255 29.4567 27.0583 29.4739 27.1782 29.4225C27.2896 29.3711 27.3667 29.2555 27.3667 29.1313C27.3667 11.5913 27.3667 29.2194 27.3667 4.15189H27.9877V5.05325C27.9877 5.2306 28.1316 5.37448 28.309 5.37448C28.4863 5.37448 28.6302 5.2306 28.6302 5.05325V4.15188H29.8766C30.0522 4.15188 30.1978 4.00624 30.1978 3.83065C30.1978 3.65074 30.0522 3.50941 29.8766 3.50941ZM20.0896 13.0351H17.5154V12.2685H19.6656C19.7983 12.5297 19.944 12.7867 20.0896 13.0351ZM26.7242 17.6952H25.0623V17.1555H26.7242V17.6952ZM24.4199 17.9394C24.2185 18.3334 24.0301 18.7874 23.8545 19.2842H17.5154V13.6776H20.4922C21.5501 15.2838 22.8479 16.5516 24.4199 17.0699V17.9394H24.4199ZM23.4133 20.6891H17.5154V19.9267H23.6403C23.5632 20.1752 23.4861 20.4279 23.4133 20.6891ZM17.5154 11.626V6.7389C17.9737 8.33225 18.5733 10.0498 19.3358 11.626H17.5154ZM15.4638 11.626H13.6435C14.4058 10.0541 15.0055 8.3408 15.4638 6.75176V11.626ZM15.4638 13.0351H12.8896C13.0352 12.7867 13.1809 12.5297 13.3136 12.2685H15.4638V13.0351ZM15.4638 19.2843H9.12474C8.9534 18.7874 8.76494 18.3334 8.56364 17.9394V17.0699C10.1356 16.5516 11.429 15.2838 12.487 13.6776H15.4638V19.2843H15.4638ZM9.34315 19.9267H15.4638V20.6891H9.56589C9.49308 20.4279 9.42027 20.1752 9.34315 19.9267ZM6.2593 4.15188H15.4638C14.437 8.10796 12.5323 15.2855 8.18244 16.5131H6.2593C6.2593 9.45661 6.2593 11.109 6.2593 4.15188ZM6.2593 17.1555H7.92117V17.6952H6.2593V17.1555ZM10.2897 28.8828C9.35173 29.0884 8.7778 28.8271 8.22526 28.5744C7.50963 28.2428 6.98135 28.0819 6.2593 28.4973C6.2593 27.8287 6.2593 18.1379 6.2593 18.3377H8.04108C9.26869 20.7927 10.1101 26.0346 10.2897 28.8828ZM10.7138 26.6727C10.5125 25.0408 10.1827 23.092 9.73722 21.3316H15.4638V26.6727H10.7138ZM16.1063 26.6727C16.1063 16.366 16.091 4.40857 16.1277 4.15188H16.8558C16.8826 4.31314 16.8729 2.61969 16.8729 26.6727H16.1063ZM17.5154 26.6727V21.3316H23.2463C22.8008 23.0877 22.471 25.0408 22.2654 26.6727H17.5154ZM26.7242 28.4973C25.2366 27.6461 24.601 29.3008 22.6937 28.8828C22.8656 26.1584 23.7159 20.7819 24.9381 18.3377H26.7242C26.7242 22.1022 26.7242 24.7583 26.7242 28.4973ZM26.7242 16.5131H24.8011C22.6234 15.8985 21.0426 13.6661 20.0425 11.626C18.6147 8.77033 17.5154 4.4353 17.5154 4.15188H26.7242C26.7242 8.05786 26.7242 11.9144 26.7242 16.5131Z" fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
@@ -0,0 +1,15 @@
|
||||
<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.0001 29.4405C23.4228 29.4405 29.4401 23.4233 29.4401 16.0005C29.4401 8.57784 23.4228 2.56055 16.0001 2.56055C8.57735 2.56055 2.56006 8.57784 2.56006 16.0005C2.56006 23.4233 8.57735 29.4405 16.0001 29.4405Z" fill="#F4E5FF"/>
|
||||
<path d="M22.1515 4.02344H8.9483C8.45823 4.02398 7.98838 4.2189 7.64185 4.56543C7.29531 4.91197 7.10039 5.38181 7.09985 5.87189L7 25.0722C7.00063 25.5165 7.16103 25.9458 7.45191 26.2816C7.74278 26.6174 8.14473 26.8375 8.58439 26.9015V27.4488C8.58439 27.5889 8.64003 27.7232 8.73907 27.8222C8.83811 27.9213 8.97245 27.9769 9.11251 27.9769C9.25258 27.9769 9.38691 27.9213 9.48596 27.8222C9.585 27.7232 9.64064 27.5889 9.64064 27.4488V26.9207H21.2595V27.4488C21.2595 27.5889 21.3151 27.7232 21.4142 27.8222C21.5132 27.9213 21.6475 27.9769 21.7876 27.9769C21.9277 27.9769 22.062 27.9213 22.161 27.8222C22.2601 27.7232 22.3157 27.5889 22.3157 27.4488V26.9015C22.7554 26.8375 23.1573 26.6174 23.4482 26.2816C23.7391 25.9458 23.8995 25.5165 23.9001 25.0722L24 5.87189C23.9995 5.38181 23.8045 4.91197 23.458 4.56543C23.1114 4.2189 22.6416 4.02398 22.1515 4.02344ZM22.8439 25.0722C22.8437 25.2823 22.7602 25.4837 22.6116 25.6322C22.4631 25.7807 22.2617 25.8642 22.0517 25.8644H8.84845C8.6384 25.8642 8.437 25.7807 8.28848 25.6322C8.13995 25.4837 8.05643 25.2823 8.05626 25.0722V19.1968H22.8439V25.0722ZM22.8439 18.1405H8.05626L8.15611 11.4172H22.9437L22.8439 18.1405ZM22.9437 10.361H8.15611V5.87189C8.15628 5.66184 8.2398 5.46044 8.38833 5.31192C8.53686 5.16339 8.73825 5.07987 8.9483 5.07969H22.1515C22.3616 5.07987 22.563 5.16339 22.7115 5.31192C22.86 5.46044 22.9435 5.66184 22.9437 5.87189V10.361Z" fill="#5B476B" stroke="#E3D5FD" stroke-width="0.2"/>
|
||||
<path d="M12.907 9.8344H18.1883C18.3284 9.8344 18.4627 9.77876 18.5618 9.67972C18.6608 9.58067 18.7164 9.44634 18.7164 9.30627V6.1375C18.7164 5.99744 18.6608 5.8631 18.5618 5.76406C18.4627 5.66502 18.3284 5.60938 18.1883 5.60938H12.907C12.767 5.60938 12.6326 5.66502 12.5336 5.76406C12.4345 5.8631 12.3789 5.99744 12.3789 6.1375V9.30627C12.3789 9.44634 12.4345 9.58067 12.5336 9.67972C12.6326 9.77876 12.767 9.8344 12.907 9.8344ZM13.4352 6.66563H17.6602V8.77815H13.4352V6.66563Z" fill="#5B476B" stroke="#E3D5FD" stroke-width="0.2"/>
|
||||
<path d="M17.6586 13.5312H16.6023C16.4623 13.5312 16.3279 13.5869 16.2289 13.6859C16.1299 13.785 16.0742 13.9193 16.0742 14.0594C16.0742 14.1994 16.1299 14.3338 16.2289 14.4328C16.3279 14.5319 16.4623 14.5875 16.6023 14.5875H17.6586C17.7987 14.5875 17.933 14.5319 18.032 14.4328C18.1311 14.3338 18.1867 14.1994 18.1867 14.0594C18.1867 13.9193 18.1311 13.785 18.032 13.6859C17.933 13.5869 17.7987 13.5312 17.6586 13.5312Z" fill="#5B476B" stroke="#E3D5FD" stroke-width="0.2"/>
|
||||
<path d="M15.0219 13.5312H13.9656C13.8256 13.5312 13.6912 13.5869 13.5922 13.6859C13.4931 13.785 13.4375 13.9193 13.4375 14.0594C13.4375 14.1994 13.4931 14.3338 13.5922 14.4328C13.6912 14.5319 13.8256 14.5875 13.9656 14.5875H15.0219C15.162 14.5875 15.2963 14.5319 15.3953 14.4328C15.4944 14.3338 15.55 14.1994 15.55 14.0594C15.55 13.9193 15.4944 13.785 15.3953 13.6859C15.2963 13.5869 15.162 13.5312 15.0219 13.5312Z" fill="#5B476B" stroke="#E3D5FD" stroke-width="0.2"/>
|
||||
<path d="M12.3774 13.5312H11.3211C11.181 13.5312 11.0467 13.5869 10.9477 13.6859C10.8486 13.785 10.793 13.9193 10.793 14.0594C10.793 14.1994 10.8486 14.3338 10.9477 14.4328C11.0467 14.5319 11.181 14.5875 11.3211 14.5875H12.3774C12.5174 14.5875 12.6518 14.5319 12.7508 14.4328C12.8498 14.3338 12.9055 14.1994 12.9055 14.0594C12.9055 13.9193 12.8498 13.785 12.7508 13.6859C12.6518 13.5869 12.5174 13.5312 12.3774 13.5312Z" fill="#5B476B" stroke="#E3D5FD" stroke-width="0.2"/>
|
||||
<path d="M20.3031 14.5875C20.4432 14.5875 20.5775 14.5319 20.6766 14.4328C20.7756 14.3338 20.8313 14.1994 20.8313 14.0594C20.8313 13.9193 20.7756 13.785 20.6766 13.6859C20.5775 13.5869 20.4432 13.5312 20.3031 13.5312H19.2469C19.1068 13.5312 18.9725 13.5869 18.8734 13.6859C18.7744 13.785 18.7188 13.9193 18.7188 14.0594C18.7188 14.1994 18.7744 14.3338 18.8734 14.4328C18.9725 14.5319 19.1068 14.5875 19.2469 14.5875H20.3031Z" fill="#5B476B" stroke="#E3D5FD" stroke-width="0.2"/>
|
||||
<path d="M17.6586 16.4352C17.7987 16.4352 17.933 16.3795 18.032 16.2805C18.1311 16.1814 18.1867 16.0471 18.1867 15.907C18.1867 15.767 18.1311 15.6326 18.032 15.5336C17.933 15.4345 17.7987 15.3789 17.6586 15.3789H16.6023C16.4623 15.3789 16.3279 15.4345 16.2289 15.5336C16.1299 15.6326 16.0742 15.767 16.0742 15.907C16.0742 16.0471 16.1299 16.1814 16.2289 16.2805C16.3279 16.3795 16.4623 16.4352 16.6023 16.4352H17.6586Z" fill="#5B476B" stroke="#E3D5FD" stroke-width="0.2"/>
|
||||
<path d="M15.0219 16.4342C15.162 16.4342 15.2963 16.3785 15.3953 16.2795C15.4944 16.1805 15.55 16.0461 15.55 15.9061C15.55 15.766 15.4944 15.6317 15.3953 15.5326C15.2963 15.4336 15.162 15.3779 15.0219 15.3779H13.9656C13.8256 15.3779 13.6912 15.4336 13.5922 15.5326C13.4931 15.6317 13.4375 15.766 13.4375 15.9061C13.4375 16.0461 13.4931 16.1805 13.5922 16.2795C13.6912 16.3785 13.8256 16.4342 13.9656 16.4342H15.0219Z" fill="#5B476B" stroke="#E3D5FD" stroke-width="0.2"/>
|
||||
<path d="M10.793 15.907C10.793 16.0471 10.8486 16.1814 10.9477 16.2805C11.0467 16.3795 11.181 16.4352 11.3211 16.4352H12.3774C12.5174 16.4352 12.6518 16.3795 12.7508 16.2805C12.8498 16.1814 12.9055 16.0471 12.9055 15.907C12.9055 15.767 12.8498 15.6326 12.7508 15.5336C12.6518 15.4345 12.5174 15.3789 12.3774 15.3789H11.3211C11.181 15.3789 11.0467 15.4345 10.9477 15.5336C10.8486 15.6326 10.793 15.767 10.793 15.907Z" fill="#5B476B" stroke="#E3D5FD" stroke-width="0.2"/>
|
||||
<path d="M20.3036 16.4342C20.4437 16.4342 20.578 16.3785 20.6771 16.2795C20.7761 16.1805 20.8318 16.0461 20.8318 15.9061C20.8318 15.766 20.7761 15.6317 20.6771 15.5326C20.578 15.4336 20.4437 15.3779 20.3036 15.3779H19.2474C19.1073 15.3779 18.973 15.4336 18.8739 15.5326C18.7749 15.6317 18.7192 15.766 18.7192 15.9061C18.7192 16.0461 18.7749 16.1805 18.8739 16.2795C18.973 16.3785 19.1073 16.4342 19.2474 16.4342H20.3036Z" fill="#5B476B" stroke="#E3D5FD" stroke-width="0.2"/>
|
||||
<path d="M14.4274 21.2539H11.2586C11.1185 21.2539 10.9842 21.3095 10.8852 21.4086C10.7861 21.5076 10.7305 21.642 10.7305 21.782V23.3664C10.7305 23.5065 10.7861 23.6408 10.8852 23.7399C10.9842 23.8389 11.1185 23.8945 11.2586 23.8945H14.4274C14.5674 23.8945 14.7018 23.8389 14.8008 23.7399C14.8999 23.6408 14.9555 23.5065 14.9555 23.3664V21.782C14.9555 21.642 14.8999 21.5076 14.8008 21.4086C14.7018 21.3095 14.5674 21.2539 14.4274 21.2539ZM13.8992 22.8383H11.7867V22.3102H13.8992V22.8383Z" fill="#5B476B" stroke="#E3D5FD" stroke-width="0.2"/>
|
||||
<path d="M19.7086 21.2539H16.5398C16.3998 21.2539 16.2654 21.3095 16.1664 21.4086C16.0674 21.5076 16.0117 21.642 16.0117 21.782V23.3664C16.0117 23.5065 16.0674 23.6408 16.1664 23.7399C16.2654 23.8389 16.3998 23.8945 16.5398 23.8945H19.7086C19.8487 23.8945 19.983 23.8389 20.0821 23.7399C20.1811 23.6408 20.2367 23.5065 20.2367 23.3664V21.782C20.2367 21.642 20.1811 21.5076 20.0821 21.4086C19.983 21.3095 19.8487 21.2539 19.7086 21.2539ZM19.1805 22.8383H17.068V22.3102H19.1805V22.8383Z" fill="#5B476B" stroke="#E3D5FD" stroke-width="0.2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.1 KiB |
@@ -0,0 +1,7 @@
|
||||
<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.0001 29.44C23.4228 29.44 29.4401 23.4227 29.4401 16C29.4401 8.57729 23.4228 2.56 16.0001 2.56C8.57735 2.56 2.56006 8.57729 2.56006 16C2.56006 23.4227 8.57735 29.44 16.0001 29.44Z" fill="#F4E5FF"/>
|
||||
<path d="M27.1566 21.3119H23.7951V19.7579C24.1389 19.3964 24.3735 18.9574 24.4749 18.4787C24.9045 18.7579 25.4061 18.9075 25.9305 18.9075C26.0912 18.9075 26.2215 18.7772 26.2215 18.6166C26.2215 18.0922 26.0707 17.5906 25.7922 17.1636C26.2931 17.0586 26.7534 16.8104 27.1247 16.4395C27.1793 16.385 27.21 16.3111 27.21 16.2338C27.21 16.1565 27.1793 16.0826 27.1247 16.028C26.7538 15.6571 26.2935 15.4086 25.7922 15.3025C26.0718 14.8728 26.2215 14.3716 26.2215 13.8472C26.2215 13.6866 26.0912 13.5562 25.9305 13.5562C25.4061 13.5562 24.9045 13.7059 24.4749 13.9851C24.3688 13.4839 24.1202 13.0235 23.7493 12.653C23.6402 12.5439 23.4469 12.5439 23.3378 12.653C22.9669 13.0235 22.7184 13.4839 22.6123 13.9851C22.1826 13.7059 21.6814 13.5562 21.157 13.5562C20.9963 13.5562 20.866 13.6866 20.866 13.8472C20.866 14.3716 21.0157 14.8732 21.2949 15.3025C20.7959 15.409 20.3371 15.6575 19.9665 16.028C19.912 16.0826 19.8813 16.1565 19.8813 16.2338C19.8813 16.3111 19.912 16.385 19.9665 16.4395C20.336 16.8089 20.7933 17.0563 21.2968 17.162C21.0164 17.5917 20.866 18.093 20.866 18.6166C20.866 18.7772 20.9963 18.9075 21.157 18.9075C21.6814 18.9075 22.1826 18.7579 22.6123 18.4787C22.7054 18.9186 22.9141 19.3232 23.2132 19.6671V21.3119H19.8517C19.7631 21.3119 19.679 21.3525 19.624 21.4218C19.5687 21.4915 19.5483 21.5821 19.5683 21.6688L20.8524 27.2035C20.8831 27.3354 21.0005 27.4286 21.1358 27.4286H25.8725C26.0078 27.4286 26.1253 27.3354 26.1559 27.2035L27.44 21.6688C27.4601 21.5821 27.4396 21.4915 27.3843 21.4218C27.3293 21.3525 27.2452 21.3119 27.1566 21.3119ZM22.9559 17.6485C22.9199 17.6337 22.882 17.6265 22.8445 17.6265C22.7687 17.6265 22.6945 17.6561 22.6388 17.7118C22.3183 18.0323 21.9117 18.2365 21.4715 18.3025C21.5378 17.8637 21.742 17.4583 22.0655 17.1348C22.1489 17.0514 22.1663 16.9264 22.1212 16.8176C22.0762 16.7089 21.9629 16.638 21.845 16.638C21.398 16.638 20.9713 16.4963 20.6167 16.2338C20.9744 15.9689 21.4044 15.8257 21.856 15.8257C21.9739 15.8257 22.0799 15.7549 22.125 15.6461C22.1697 15.5374 22.1451 15.4124 22.0618 15.329C21.7412 15.0081 21.537 14.6019 21.4711 14.1613C21.9117 14.2272 22.3179 14.4314 22.6388 14.752C22.7218 14.8353 22.8476 14.86 22.9559 14.8152C23.0647 14.7702 23.1355 14.6641 23.1355 14.5462C23.1355 14.0927 23.2787 13.6612 23.5436 13.3031C23.8084 13.6612 23.9516 14.0927 23.9516 14.5462C23.9516 14.6641 24.0225 14.7702 24.1312 14.8152C24.2399 14.86 24.365 14.8353 24.4483 14.752C24.7692 14.4311 25.1758 14.2272 25.6164 14.1613C25.5505 14.6016 25.3463 15.0081 25.0254 15.329C24.942 15.4124 24.9174 15.5374 24.9621 15.6461C25.0072 15.7549 25.1133 15.8257 25.2311 15.8257C25.6846 15.8257 26.1162 15.9689 26.4742 16.2338C26.1184 16.4963 25.6888 16.638 25.2296 16.638C25.0943 16.632 25.0064 16.7097 24.961 16.8188C24.9155 16.9275 24.942 17.0552 25.0254 17.1385C25.3459 17.4591 25.5501 17.8641 25.616 18.3025C25.1754 18.2365 24.7692 18.0323 24.4483 17.7118C24.365 17.6284 24.2399 17.6042 24.1312 17.6485C24.0225 17.6936 23.9516 17.7997 23.9516 17.9175C23.9516 18.371 23.8084 18.8026 23.5436 19.1606C23.2787 18.8026 23.1355 18.371 23.1355 17.9175C23.1355 17.7997 23.0647 17.6936 22.9559 17.6485ZM25.6414 26.8466H21.3669L20.6688 23.8372H22.4243V23.2552H20.5339L20.2181 21.8939H26.7902L25.6414 26.8466Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.5"/>
|
||||
<path d="M10.5003 4.57144C7.23128 4.57144 4.57153 7.23119 4.57153 10.5002C4.57153 18.9396 4.57153 17.7345 4.57153 26.201H16.429C16.429 17.7387 16.429 18.9414 16.429 10.5002C16.429 7.23119 13.7693 4.57144 10.5003 4.57144ZM15.847 25.6191H5.15349V23.5075H15.847V25.6191ZM15.847 22.9256H5.15349V10.5002C5.15349 7.5521 7.55219 5.1534 10.5003 5.1534C13.4483 5.1534 15.847 7.5521 15.847 10.5002V22.9256Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.5"/>
|
||||
<path d="M10.5003 6.07483C8.06029 6.07483 6.07495 8.06017 6.07495 10.5002V10.7911H14.9256V10.5002C14.9256 8.06017 12.9403 6.07483 10.5003 6.07483ZM6.6679 10.2092C6.81718 8.22536 8.47895 6.65679 10.5003 6.65679C12.5216 6.65679 14.1834 8.22536 14.3327 10.2092H6.6679Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.5"/>
|
||||
<path d="M13.6009 14.0616C12.8705 14.0616 12.2764 14.6557 12.2764 15.3862C12.2764 16.1167 12.8705 16.7108 13.6009 16.7108C14.3314 16.7108 14.9255 16.1167 14.9255 15.3862C14.9255 14.6557 14.3314 14.0616 13.6009 14.0616ZM13.6009 16.1288C13.1914 16.1288 12.8583 15.7958 12.8583 15.3862C12.8583 14.9766 13.1914 14.6436 13.6009 14.6436C14.0105 14.6436 14.3435 14.9766 14.3435 15.3862C14.3435 15.7958 14.0105 16.1288 13.6009 16.1288Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
@@ -0,0 +1,9 @@
|
||||
<svg width="72" height="66" viewBox="0 0 72 66" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M33.0003 60.7198C48.3096 60.7198 60.7203 48.3091 60.7203 32.9998C60.7203 17.6905 48.3096 5.27979 33.0003 5.27979C17.6909 5.27979 5.28027 17.6905 5.28027 32.9998C5.28027 48.3091 17.6909 60.7198 33.0003 60.7198Z" fill="#F4E5FF"/>
|
||||
<path d="M56.01 43.9561H49.0771V40.751C49.786 40.0054 50.27 39.0998 50.479 38.1125C51.3652 38.6884 52.3998 38.9971 53.4813 38.9971C53.8126 38.9971 54.0814 38.7282 54.0814 38.3969C54.0814 37.3154 53.7704 36.2808 53.1961 35.4001C54.2291 35.1836 55.1786 34.6718 55.9444 33.9067C56.0569 33.7942 56.1202 33.6418 56.1202 33.4824C56.1202 33.323 56.0569 33.1706 55.9444 33.0581C55.1794 32.2931 54.2299 31.7804 53.1961 31.5616C53.7728 30.6755 54.0814 29.6416 54.0814 28.5601C54.0814 28.2288 53.8126 27.96 53.4813 27.96C52.3998 27.96 51.3652 28.2686 50.479 28.8446C50.2602 27.8107 49.7476 26.8613 48.9825 26.097C48.7575 25.872 48.3589 25.872 48.1339 26.097C47.3689 26.8613 46.8562 27.8107 46.6374 28.8446C45.7513 28.2686 44.7174 27.96 43.6359 27.96C43.3046 27.96 43.0358 28.2288 43.0358 28.5601C43.0358 29.6416 43.3444 30.6763 43.9204 31.5616C42.8912 31.7812 41.9449 32.2939 41.1806 33.0581C41.0681 33.1706 41.0048 33.323 41.0048 33.4824C41.0048 33.6418 41.0681 33.7942 41.1806 33.9067C41.9425 34.6687 42.8857 35.1789 43.9243 35.397C43.346 36.2831 43.0358 37.317 43.0358 38.3969C43.0358 38.7282 43.3046 38.9971 43.6359 38.9971C44.7174 38.9971 45.7513 38.6884 46.6374 38.1125C46.8295 39.0199 47.26 39.8543 47.8768 40.5636V43.9561H40.9438C40.761 43.9561 40.5875 44.0397 40.4742 44.1827C40.3601 44.3265 40.3179 44.5133 40.3593 44.6922L43.0076 56.1075C43.0709 56.3795 43.3132 56.5717 43.5921 56.5717H53.3617C53.6407 56.5717 53.883 56.3795 53.9463 56.1075L56.5946 44.6922C56.636 44.5133 56.5938 44.3265 56.4797 44.1827C56.3664 44.0397 56.1929 43.9561 56.01 43.9561ZM47.3462 36.4003C47.272 36.3699 47.1938 36.355 47.1165 36.355C46.9602 36.355 46.807 36.416 46.6921 36.5308C46.031 37.1919 45.1925 37.6131 44.2845 37.7491C44.4213 36.8442 44.8425 36.008 45.5098 35.3407C45.6817 35.1688 45.7177 34.9109 45.6247 34.6866C45.5317 34.4624 45.298 34.3162 45.055 34.3162C44.1329 34.3162 43.253 34.024 42.5216 33.4824C43.2593 32.9362 44.1462 32.6408 45.0777 32.6408C45.3207 32.6408 45.5395 32.4947 45.6325 32.2704C45.7247 32.0461 45.6739 31.7883 45.502 31.6163C44.8409 30.9545 44.4197 30.1168 44.2837 29.2079C45.1925 29.3439 46.0302 29.7651 46.6921 30.4262C46.8633 30.5981 47.1227 30.6489 47.3462 30.5567C47.5705 30.4637 47.7166 30.2449 47.7166 30.0019C47.7166 29.0665 48.012 28.1764 48.5582 27.438C49.1044 28.1764 49.3998 29.0665 49.3998 30.0019C49.3998 30.2449 49.546 30.4637 49.7702 30.5567C49.9945 30.6489 50.2524 30.5981 50.4243 30.4262C51.0862 29.7643 51.9247 29.3439 52.8335 29.2079C52.6975 30.116 52.2763 30.9545 51.6144 31.6163C51.4425 31.7883 51.3917 32.0461 51.4839 32.2704C51.5769 32.4947 51.7957 32.6408 52.0388 32.6408C52.9741 32.6408 53.8642 32.9362 54.6027 33.4824C53.8689 34.024 52.9827 34.3162 52.0356 34.3162C51.7567 34.3037 51.5754 34.4639 51.4816 34.689C51.3878 34.9132 51.4425 35.1766 51.6144 35.3485C52.2755 36.0096 52.6967 36.845 52.8327 37.7491C51.9239 37.6131 51.0862 37.1919 50.4243 36.5308C50.2524 36.3589 49.9945 36.3089 49.7702 36.4003C49.546 36.4933 49.3998 36.7121 49.3998 36.9552C49.3998 37.8905 49.1044 38.7806 48.5582 39.5191C48.012 38.7806 47.7166 37.8905 47.7166 36.9552C47.7166 36.7121 47.5705 36.4933 47.3462 36.4003ZM52.8851 55.3714H44.0688L42.6291 49.1644H46.2498V47.9641H42.3507L41.6995 45.1564H55.2544L52.8851 55.3714Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.694515"/>
|
||||
<path d="M21.6567 9.42871C14.9144 9.42871 9.42871 14.9144 9.42871 21.6567C9.42871 39.063 9.42871 36.5775 9.42871 54.0397H33.8847C33.8847 36.5861 33.8847 39.0667 33.8847 21.6567C33.8847 14.9144 28.399 9.42871 21.6567 9.42871ZM32.6844 52.8394H10.629V48.4844H32.6844V52.8394ZM32.6844 47.2841H10.629V21.6567C10.629 15.5763 15.5763 10.629 21.6567 10.629C27.7371 10.629 32.6844 15.5763 32.6844 21.6567V47.2841Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.694515"/>
|
||||
<path d="M21.6565 12.5293C16.6241 12.5293 12.5293 16.6241 12.5293 21.6565V22.2567H30.7838V21.6565C30.7838 16.6241 26.689 12.5293 21.6565 12.5293ZM13.7523 21.0564C14.0601 16.9648 17.4875 13.7296 21.6565 13.7296C25.8255 13.7296 29.2529 16.9648 29.5608 21.0564H13.7523Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.694515"/>
|
||||
<path d="M28.0513 29.002C26.5446 29.002 25.3193 30.2273 25.3193 31.7339C25.3193 33.2405 26.5446 34.4658 28.0513 34.4658C29.5579 34.4658 30.7832 33.2405 30.7832 31.7339C30.7832 30.2273 29.5579 29.002 28.0513 29.002ZM28.0513 33.2655C27.2065 33.2655 26.5196 32.5786 26.5196 31.7339C26.5196 30.8891 27.2065 30.2022 28.0513 30.2022C28.896 30.2022 29.5829 30.8891 29.5829 31.7339C29.5829 32.5786 28.896 33.2655 28.0513 33.2655Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.694515"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M60.5 61.875C66.5751 61.875 71.5 56.9501 71.5 50.875C71.5 44.7999 66.5751 39.875 60.5 39.875C54.4249 39.875 49.5 44.7999 49.5 50.875C49.5 56.9501 54.4249 61.875 60.5 61.875Z" fill="#5B476B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M61.5313 49.8437V46.0318L61.5202 45.9084L61.5147 45.8779C61.4273 45.3964 61.007 45.0312 60.5 45.0312C59.9311 45.0312 59.4698 45.4919 59.4688 46.0605L59.4688 49.8437H55.6568L55.5334 49.8548L55.5029 49.8603C55.0214 49.9477 54.6562 50.368 54.6562 50.875C54.6562 51.4439 55.1169 51.9052 55.6855 51.9062L59.4688 51.9062V55.7182L59.4798 55.8416L59.4853 55.8721C59.5727 56.3536 59.993 56.7187 60.5 56.7187C61.0689 56.7187 61.5302 56.2581 61.5312 55.6895L61.5313 51.9062H65.3433L65.4666 51.8952L65.4971 51.8897C65.9786 51.8023 66.3438 51.382 66.3438 50.875C66.3438 50.3061 65.8831 49.8448 65.3145 49.8438L61.5313 49.8437ZM60.1563 55.6869C60.1563 55.6869 60.1563 55.6868 60.1563 55.6869ZM55.6881 50.5312C55.6881 50.5312 55.6882 50.5312 55.6881 50.5312Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,7 @@
|
||||
<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="M40.0004 73.6009C58.5572 73.6009 73.6004 58.5577 73.6004 40.0009C73.6004 21.4441 58.5572 6.40088 40.0004 6.40088C21.4436 6.40088 6.40039 21.4441 6.40039 40.0009C6.40039 58.5577 21.4436 73.6009 40.0004 73.6009Z" fill="#F4E5FF"/>
|
||||
<path d="M67.8918 53.2792H59.4882V49.3942C60.3475 48.4905 60.9342 47.3928 61.1875 46.196C62.2616 46.8941 63.5157 47.2683 64.8266 47.2683C65.2283 47.2683 65.5541 46.9424 65.5541 46.5408C65.5541 45.2299 65.1771 43.9758 64.4809 42.9083C65.7331 42.6459 66.884 42.0255 67.8122 41.0982C67.9486 40.9618 68.0254 40.7771 68.0254 40.5839C68.0254 40.3906 67.9486 40.2059 67.8122 40.0695C66.8849 39.1422 65.7341 38.5208 64.4809 38.2556C65.18 37.1815 65.5541 35.9284 65.5541 34.6174C65.5541 34.2158 65.2283 33.89 64.8266 33.89C63.5157 33.89 62.2616 34.2641 61.1875 34.9622C60.9223 33.7091 60.3009 32.5582 59.3736 31.6318C59.1008 31.359 58.6177 31.359 58.3449 31.6318C57.4176 32.5582 56.7963 33.7091 56.531 34.9622C55.4569 34.2641 54.2038 33.89 52.8928 33.89C52.4912 33.89 52.1654 34.2158 52.1654 34.6174C52.1654 35.9284 52.5395 37.1825 53.2376 38.2556C51.9902 38.5218 50.8431 39.1432 49.9167 40.0695C49.7803 40.2059 49.7036 40.3906 49.7036 40.5839C49.7036 40.7771 49.7803 40.9618 49.9167 41.0982C50.8402 42.0217 51.9835 42.6402 53.2424 42.9045C52.5414 43.9786 52.1654 45.2318 52.1654 46.5408C52.1654 46.9424 52.4912 47.2683 52.8928 47.2683C54.2038 47.2683 55.4569 46.8941 56.531 46.196C56.7638 47.296 57.2857 48.3074 58.0333 49.1671V53.2792H49.6297C49.4081 53.2792 49.1978 53.3806 49.0605 53.5539C48.9222 53.7282 48.871 53.9546 48.9212 54.1715L52.1313 68.0082C52.208 68.3379 52.5016 68.5709 52.8398 68.5709H64.6817C65.0199 68.5709 65.3135 68.3379 65.3902 68.0082L68.6003 54.1715C68.6505 53.9546 68.5994 53.7282 68.4611 53.5539C68.3237 53.3806 68.1134 53.2792 67.8918 53.2792ZM57.3902 44.1207C57.3002 44.0838 57.2055 44.0658 57.1117 44.0658C56.9222 44.0658 56.7366 44.1397 56.5973 44.2789C55.796 45.0802 54.7797 45.5908 53.679 45.7556C53.8448 44.6587 54.3553 43.6452 55.1642 42.8363C55.3726 42.6279 55.4162 42.3153 55.3035 42.0435C55.1908 41.7717 54.9075 41.5945 54.613 41.5945C53.4953 41.5945 52.4287 41.2403 51.5421 40.5839C52.4363 39.9218 53.5114 39.5637 54.6404 39.5637C54.935 39.5637 55.2002 39.3866 55.3129 39.1147C55.4247 38.8429 55.3631 38.5303 55.1548 38.3219C54.3534 37.5197 53.8429 36.5043 53.6781 35.4027C54.7797 35.5675 55.7951 36.078 56.5973 36.8793C56.8048 37.0877 57.1193 37.1493 57.3902 37.0375C57.662 36.9248 57.8391 36.6596 57.8391 36.365C57.8391 35.2312 58.1972 34.1523 58.8593 33.2572C59.5214 34.1523 59.8794 35.2312 59.8794 36.365C59.8794 36.6596 60.0565 36.9248 60.3284 37.0375C60.6002 37.1493 60.9128 37.0877 61.1212 36.8793C61.9235 36.0771 62.9398 35.5675 64.0414 35.4027C63.8766 36.5033 63.3661 37.5197 62.5638 38.3219C62.3554 38.5303 62.2938 38.8429 62.4056 39.1147C62.5183 39.3866 62.7835 39.5637 63.0781 39.5637C64.2119 39.5637 65.2908 39.9218 66.1859 40.5839C65.2965 41.2403 64.2223 41.5945 63.0743 41.5945C62.7362 41.5794 62.5164 41.7735 62.4028 42.0463C62.2891 42.3182 62.3554 42.6374 62.5638 42.8458C63.3651 43.6471 63.8757 44.6597 64.0405 45.7556C62.9389 45.5908 61.9235 45.0802 61.1212 44.2789C60.9128 44.0705 60.6002 44.0099 60.3284 44.1207C60.0565 44.2334 59.8794 44.4986 59.8794 44.7932C59.8794 45.927 59.5214 47.0059 58.8593 47.901C58.1972 47.0059 57.8391 45.927 57.8391 44.7932C57.8391 44.4986 57.662 44.2334 57.3902 44.1207ZM64.1039 67.116H53.4176L51.6725 59.5923H56.0612V58.1374H51.335L50.5457 54.7341H66.9759L64.1039 67.116Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.714286"/>
|
||||
<path d="M26.2505 11.4287C18.0781 11.4287 11.4287 18.0781 11.4287 26.2505C11.4287 47.3491 11.4287 44.3363 11.4287 65.5026H41.0724C41.0724 44.3468 41.0724 47.3536 41.0724 26.2505C41.0724 18.0781 34.423 11.4287 26.2505 11.4287ZM39.6175 64.0477H12.8836V58.769H39.6175V64.0477ZM39.6175 57.3141H12.8836V26.2505C12.8836 18.8804 18.8804 12.8836 26.2505 12.8836C33.6207 12.8836 39.6175 18.8804 39.6175 26.2505V57.3141Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.714286"/>
|
||||
<path d="M26.2499 15.187C20.1499 15.187 15.1865 20.1504 15.1865 26.2503V26.9778H37.3132V26.2503C37.3132 20.1504 32.3498 15.187 26.2499 15.187ZM16.6689 25.5229C17.0421 20.5633 21.1965 16.6419 26.2499 16.6419C31.3032 16.6419 35.4576 20.5633 35.8308 25.5229H16.6689Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.714286"/>
|
||||
<path d="M34.0019 35.1533C32.1756 35.1533 30.6904 36.6385 30.6904 38.4647C30.6904 40.2909 32.1756 41.7762 34.0019 41.7762C35.8281 41.7762 37.3133 40.2909 37.3133 38.4647C37.3133 36.6385 35.8281 35.1533 34.0019 35.1533ZM34.0019 40.3213C32.9779 40.3213 32.1453 39.4887 32.1453 38.4647C32.1453 37.4408 32.9779 36.6082 34.0019 36.6082C35.0258 36.6082 35.8584 37.4408 35.8584 38.4647C35.8584 39.4887 35.0258 40.3213 34.0019 40.3213Z" fill="#5B476B" stroke="#5B476B" stroke-width="0.714286"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
@@ -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="M1.28431 0.588591C1.08944 0.453595 0.820013 0.47288 0.646447 0.646447C0.451185 0.841709 0.451185 1.15829 0.646447 1.35355L5.30845 6.01556C3.36188 7.59695 1.74705 9.55031 0.559422 11.7636C0.482605 11.9067 0.480131 12.0783 0.552786 12.2236L0.749759 12.5889C0.908419 12.8709 1.09675 13.1843 1.31436 13.5212C1.93517 14.4825 2.66791 15.4435 3.51023 16.3419C5.94003 18.9337 8.77885 20.5 12 20.5C14.1171 20.4654 16.165 19.8006 17.889 18.5961L22.6464 23.3536L22.7157 23.4114C22.9106 23.5464 23.18 23.5271 23.3536 23.3536C23.5488 23.1583 23.5488 22.8417 23.3536 22.6464L18.2993 17.5921C18.2952 17.588 18.2911 17.5839 18.2869 17.5798L14.4772 13.7701C14.4749 13.7678 14.4726 13.7655 14.4703 13.7632L10.2368 9.52966C10.2345 9.52733 10.2322 9.52503 10.2299 9.52276L6.41925 5.71215C6.41521 5.70796 6.4111 5.70386 6.40694 5.69984L1.35355 0.646447L1.28431 0.588591ZM6.01955 6.72666C4.26426 8.13592 2.78976 9.86276 1.67295 11.8169L1.568 12.004L1.62133 12.0986C1.77029 12.3634 1.94817 12.6594 2.15439 12.9787C2.74452 13.8924 3.44147 14.8065 4.23977 15.658C6.49747 18.0662 9.09615 19.5 11.9918 19.5C13.8423 19.4698 15.6399 18.9038 17.1697 17.8768L14.1056 14.8127C13.2563 15.4893 12.1301 15.7395 11.0591 15.466C9.81903 15.1493 8.8507 14.1809 8.53401 12.9409C8.26049 11.8698 8.51071 10.7436 9.18725 9.89436L6.01955 6.72666ZM9.90073 10.6078C9.46966 11.2026 9.3171 11.9659 9.50291 12.6934C9.72912 13.5792 10.4208 14.2709 11.3066 14.4971C12.0341 14.6829 12.7973 14.5303 13.3921 14.0992L9.90073 10.6078ZM20.4898 7.65799C18.06 5.0662 15.2212 3.49995 12 3.49995C11.2554 3.49823 10.5121 3.58319 9.78604 3.75313C9.51717 3.81607 9.35022 4.08506 9.41316 4.35393C9.4761 4.62281 9.74508 4.78975 10.014 4.72682C10.6645 4.57453 11.3306 4.4984 11.9988 4.49995C14.9038 4.49995 17.5025 5.93371 19.7602 8.34193C20.5585 9.19346 21.2555 10.1075 21.8456 11.0212C22.0518 11.3405 22.2297 11.6365 22.3787 11.9014L22.43 11.995L22.299 12.2338C21.7651 13.1647 21.1488 14.0464 20.4574 14.8681C20.2796 15.0793 20.3068 15.3948 20.5181 15.5726C20.7294 15.7503 21.0448 15.7232 21.2226 15.5119C22.074 14.5 22.8175 13.402 23.441 12.2357C23.5174 12.0927 23.5197 11.9214 23.4472 11.7764C23.4263 11.7346 23.3943 11.6732 23.3512 11.5937L23.1257 11.1938C22.9956 10.9709 22.8488 10.7314 22.6856 10.4787C22.0648 9.51744 21.3321 8.55647 20.4898 7.65799Z" fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
@@ -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="M12 4C8.77885 4 5.94003 5.56625 3.51023 8.15803C2.66791 9.05651 1.93517 10.0175 1.31436 10.9787C1.09675 11.3157 0.908419 11.6291 0.749759 11.9111L0.552786 12.2764C0.482405 12.4172 0.482405 12.5828 0.552786 12.7236L0.648808 12.9063C0.677547 12.9593 0.711207 13.0203 0.749759 13.0889L1.00995 13.5345C1.10407 13.6902 1.20555 13.8528 1.31436 14.0213C1.93517 14.9825 2.66791 15.9435 3.51023 16.842C5.94003 19.4338 8.77885 21 12 21C15.2212 21 18.06 19.4338 20.4898 16.842C21.3321 15.9435 22.0648 14.9825 22.6856 14.0213C22.8488 13.7686 22.9956 13.5291 23.1257 13.3062L23.3512 12.9063C23.3943 12.8268 23.4263 12.7654 23.4472 12.7236C23.5176 12.5828 23.5176 12.4172 23.4472 12.2764L23.3512 12.0937C23.3225 12.0407 23.2888 11.9797 23.2502 11.9111C23.0916 11.6291 22.9032 11.3157 22.6856 10.9787C22.0648 10.0175 21.3321 9.05651 20.4898 8.15803C18.06 5.56625 15.2212 4 12 4ZM12 5C14.9038 5 17.5025 6.43375 19.7602 8.84197C20.5585 9.69349 21.2555 10.6075 21.8456 11.5213C22.0003 11.7607 22.139 11.9871 22.2615 12.197L22.433 12.5L22.3787 12.5986C22.2297 12.8634 22.0518 13.1594 21.8456 13.4787C21.2555 14.3925 20.5585 15.3065 19.7602 16.158C17.5025 18.5662 14.9038 20 12 20C9.09615 20 6.49747 18.5662 4.23977 16.158C3.44147 15.3065 2.74452 14.3925 2.15439 13.4787C1.99973 13.2393 1.861 13.0129 1.73847 12.803L1.566 12.5L1.62133 12.4014C1.77029 12.1366 1.94817 11.8406 2.15439 11.5213C2.74452 10.6075 3.44147 9.69349 4.23977 8.84197C6.49747 6.43375 9.09615 5 12 5ZM12 9C10.067 9 8.5 10.567 8.5 12.5C8.5 14.433 10.067 16 12 16C13.933 16 15.5 14.433 15.5 12.5C15.5 10.567 13.933 9 12 9ZM12 10C13.3807 10 14.5 11.1193 14.5 12.5C14.5 13.8807 13.3807 15 12 15C10.6193 15 9.5 13.8807 9.5 12.5C9.5 11.1193 10.6193 10 12 10Z" fill="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,4 @@
|
||||
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 0C5.373 0 0 5.373 0 12C0 18.627 5.373 24 12 24C18.627 24 24 18.627 24 12C24 5.373 18.627 0 12 0ZM15 8H13.65C13.112 8 13 8.221 13 8.778V10H15L14.791 12H13V19H10V12H8V10H10V7.692C10 5.923 10.931 5 13.029 5H15V8Z" fill="#3B5998"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 349 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.3652 0.625H1.60938C1.05078 0.625 0.771484 1.28516 1.17773 1.66602L5.875 6.36328V11.5938C5.875 11.7969 5.95117 12 6.12891 12.1016L8.16016 13.5234C8.56641 13.8027 9.125 13.5234 9.125 13.0156V6.36328L13.7969 1.66602C14.2031 1.28516 13.9238 0.625 13.3652 0.625Z" fill="#9A00FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 395 B |
@@ -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"/>
|
||||
<g clip-path="url(#clip0_776_21540)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2093 36.7234C19.1055 36.7234 19.0017 36.7102 18.9014 36.6804C16.4346 36.0076 13.7256 34.8975 12.359 31.7692C10.0755 26.5399 13.435 21.0753 16.4 16.2537C18.026 13.6092 19.5587 11.1138 19.9497 9.00622C20.0327 8.54891 20.3545 8.18107 20.8077 8.01869C21.2644 7.853 21.766 7.92921 22.1501 8.22415C26.2395 11.3657 35.003 20.9063 34.4183 28.7768C34.1865 31.9084 32.5085 34.3805 29.4363 36.1203C28.9692 36.3854 28.3914 36.2993 28.0247 35.9115C27.6649 35.5304 27.6372 34.977 27.9555 34.5661C29.419 32.6772 29.8134 30.9209 29.3256 28.5117C28.6613 25.9865 27.2774 23.7032 24.9767 21.3305C25.0113 23.8756 24.603 25.9964 23.7831 27.6335C23.5097 28.1737 22.9423 28.5117 22.3196 28.4951C21.6795 28.4852 21.1225 28.1339 20.863 27.5772C20.6485 27.1165 20.3752 26.6924 20.05 26.3146C19.9808 26.235 19.8978 26.2317 19.8528 26.2384C19.8009 26.245 19.7282 26.2715 19.6902 26.3543C18.8944 28.0378 17.6904 30.5795 17.8358 31.6764C17.8323 31.7029 17.8358 31.7228 17.8358 31.7427C17.8807 32.9556 18.7457 33.8006 19.96 34.8577C20.3475 35.1957 20.4409 35.7359 20.1849 36.1733C19.9808 36.5213 19.6071 36.7234 19.2093 36.7234ZM21.3059 9.27779C20.8631 11.6108 19.275 14.1923 17.5936 16.9295C14.7912 21.4828 11.6186 26.6425 13.6357 31.2587C14.5871 33.4425 16.3204 34.4466 18.1887 35.0796C17.3203 34.2445 16.5176 33.2139 16.4554 31.8187C16.2927 30.4567 17.2511 28.2928 18.4239 25.814C18.6523 25.3302 19.1159 25.0021 19.6625 24.9292C20.2126 24.8596 20.7558 25.0618 21.1087 25.4694C21.517 25.9399 21.8595 26.4702 22.1259 27.0401C22.1778 27.1561 22.2919 27.1694 22.3369 27.1694C22.4096 27.1661 22.4857 27.1528 22.5341 27.0567C23.2641 25.6019 23.6274 23.6766 23.6136 21.337C23.6101 20.7869 23.9526 20.303 24.4854 20.1009C25.0148 19.9021 25.6064 20.028 25.9904 20.4257C28.4607 22.974 29.9484 25.4462 30.6714 28.2033C30.6749 28.2133 30.6784 28.2265 30.6784 28.2365C31.1593 30.5794 30.8963 32.455 29.7927 34.2975C31.7751 32.8593 32.8649 30.9737 33.0345 28.6805C33.5534 21.7512 25.6617 12.6381 21.3059 9.27779Z" fill="#5B476B"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_776_21540">
|
||||
<rect width="28.5575" height="28.5575" fill="white" transform="translate(8.43262 7.93262)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="21" height="24" viewBox="0 0 21 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<line x1="0.5" y1="0.5" x2="0.499999" y2="23.5" stroke="#9A00FF" stroke-linecap="round"/>
|
||||
<path d="M15.3964 7.10355L19.7929 11.5H3.5V2H19.7929L15.3964 6.39645L15.0429 6.75L15.3964 7.10355Z" stroke="#9A00FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 312 B |
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<line x1="2.5" y1="0.5" x2="2.5" y2="23.5" stroke="#9A00FF" stroke-linecap="round"/>
|
||||
<path d="M17.3964 7.10355L21.7929 11.5H5.5V2H21.7929L17.3964 6.39645L17.0429 6.75L17.3964 7.10355Z" stroke="#9A00FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 307 B |
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<line x1="2.5" y1="0.5" x2="2.5" y2="23.5" stroke="#9A00FF" stroke-linecap="round"/>
|
||||
<path d="M17.361 7.81417L21.9534 13.5H5.5V1.5H21.9534L17.361 7.18583L17.1073 7.5L17.361 7.81417Z" fill="#9A00FF" stroke="#9A00FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 328 B |
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<line x1="2.5" y1="0.5" x2="2.5" y2="23.5" stroke="#5B476B" stroke-linecap="round"/>
|
||||
<path d="M17.361 7.81417L21.9534 13.5H5.5V1.5H21.9534L17.361 7.18583L17.1073 7.5L17.361 7.81417Z" stroke="#5B476B"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 313 B |
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<line x1="2.5" y1="0.5" x2="2.5" y2="23.5" stroke="#9A00FF" stroke-linecap="round"/>
|
||||
<path d="M17.3964 7.10355L21.7929 11.5H5.5V2H21.7929L17.3964 6.39645L17.0429 6.75L17.3964 7.10355Z" fill="#9A00FF" stroke="#9A00FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 322 B |