build ok,
9
002_source/cms/.editorconfig
Normal file
@@ -0,0 +1,9 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
40
002_source/cms/.env.example
Normal file
@@ -0,0 +1,40 @@
|
||||
# App
|
||||
NEXT_PUBLIC_SITE_URL=
|
||||
NEXT_PUBLIC_SITE_VERSION=
|
||||
|
||||
# Logger
|
||||
NEXT_PUBLIC_LOG_LEVEL=
|
||||
|
||||
# Auth
|
||||
NEXT_PUBLIC_AUTH_STRATEGY=
|
||||
|
||||
# Auth0
|
||||
AUTH0_SECRET=
|
||||
AUTH0_BASE_URL=
|
||||
AUTH0_ISSUER_BASE_URL=
|
||||
AUTH0_CLIENT_ID=
|
||||
AUTH0_CLIENT_SECRET=
|
||||
|
||||
# AWS Cognito
|
||||
NEXT_PUBLIC_COGNITO_IDENTITY_POOL_ID=
|
||||
NEXT_PUBLIC_COGNITO_USER_POOL_CLIENT_ID=
|
||||
NEXT_PUBLIC_COGNITO_USER_POOL_ID=
|
||||
|
||||
# Firebase
|
||||
NEXT_PUBLIC_FIREBASE_API_KEY=
|
||||
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=
|
||||
NEXT_PUBLIC_FIREBASE_PROJECT_ID=
|
||||
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET=
|
||||
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID=
|
||||
NEXT_PUBLIC_FIREBASE_APP_ID=
|
||||
|
||||
# Supabase
|
||||
NEXT_PUBLIC_SUPABASE_REF_ID=
|
||||
NEXT_PUBLIC_SUPABASE_URL=
|
||||
NEXT_PUBLIC_SUPABASE_ANON_KEY=
|
||||
|
||||
# Mapbox
|
||||
NEXT_PUBLIC_MAPBOX_API_KEY=
|
||||
|
||||
# Google Tag Manager
|
||||
NEXT_PUBLIC_GOOGLE_TAG_MANAGER_ID=
|
76
002_source/cms/.eslintrc.js
Normal file
@@ -0,0 +1,76 @@
|
||||
const { resolve } = require('node:path');
|
||||
|
||||
const project = resolve(__dirname, 'tsconfig.json');
|
||||
|
||||
module.exports = {
|
||||
root: true,
|
||||
extends: [
|
||||
require.resolve('@vercel/style-guide/eslint/node'),
|
||||
require.resolve('@vercel/style-guide/eslint/typescript'),
|
||||
require.resolve('@vercel/style-guide/eslint/browser'),
|
||||
require.resolve('@vercel/style-guide/eslint/react'),
|
||||
require.resolve('@vercel/style-guide/eslint/next'),
|
||||
],
|
||||
parserOptions: {
|
||||
project,
|
||||
},
|
||||
settings: {
|
||||
'import/resolver': {
|
||||
typescript: {
|
||||
project,
|
||||
},
|
||||
},
|
||||
},
|
||||
rules: {
|
||||
'@typescript-eslint/no-unused-vars': [
|
||||
'error',
|
||||
{
|
||||
ignoreRestSiblings: true,
|
||||
argsIgnorePattern: '^_',
|
||||
varsIgnorePattern: '^_',
|
||||
caughtErrorsIgnorePattern: '^_',
|
||||
},
|
||||
],
|
||||
'@typescript-eslint/no-empty-interface': [
|
||||
'error',
|
||||
{
|
||||
allowSingleExtends: true,
|
||||
},
|
||||
],
|
||||
'@typescript-eslint/no-shadow': [
|
||||
'error',
|
||||
{
|
||||
ignoreOnInitialization: true,
|
||||
},
|
||||
],
|
||||
|
||||
'import/newline-after-import': 'error',
|
||||
'react/jsx-uses-react': 'error',
|
||||
'react/react-in-jsx-scope': 'error',
|
||||
'unicorn/filename-case': [
|
||||
'error',
|
||||
{
|
||||
cases: {
|
||||
kebabCase: true, // personal style
|
||||
pascalCase: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
// Deactivated
|
||||
'@typescript-eslint/dot-notation': 'off', // paths are used with a dot notation
|
||||
'@typescript-eslint/no-misused-promises': 'off', // onClick with async fails
|
||||
'@typescript-eslint/no-non-null-assertion': 'off', // sometimes compiler is unable to detect
|
||||
'@typescript-eslint/no-unnecessary-condition': 'off', // remove when no static data is used
|
||||
'@typescript-eslint/require-await': 'off', // Server Actions require async flag always
|
||||
'import/no-default-export': 'off', // Next.js components must be exported as default
|
||||
'import/no-extraneous-dependencies': 'off', // conflict with sort-imports plugin
|
||||
'import/order': 'off', // using custom sort plugin
|
||||
'no-nested-ternary': 'off', // personal style
|
||||
'no-redeclare': 'off', // conflict with TypeScript function overloads
|
||||
'react/jsx-fragments': 'off', // personal style
|
||||
'react/prop-types': 'off', // TypeScript is used for type checking
|
||||
'@next/next/no-img-element': 'off', // Temporary disabled
|
||||
},
|
||||
ignorePatterns: ['**/*del', '**/*bak'],
|
||||
};
|
1
002_source/cms/.gitattributes
vendored
Normal file
@@ -0,0 +1 @@
|
||||
* text=lf
|
36
002_source/cms/.gitignore
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# next.js
|
||||
/.next/
|
||||
/out/
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
*.pem
|
||||
.swc
|
||||
|
||||
# debug
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# local env files
|
||||
.env*.local
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
21
002_source/cms/.prettierignore
Normal file
@@ -0,0 +1,21 @@
|
||||
*bak
|
||||
*log
|
||||
*tmp
|
||||
*del
|
||||
*copy.*
|
||||
*copy*.*
|
||||
|
||||
# ---
|
||||
# Dependencies
|
||||
node_modules
|
||||
|
||||
# Next.js
|
||||
.next
|
||||
build
|
||||
|
||||
# Lock files
|
||||
package-lock.json
|
||||
|
||||
# Misc
|
||||
dist
|
||||
public
|
34
002_source/cms/README.md
Normal file
@@ -0,0 +1,34 @@
|
||||
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
|
||||
|
||||
## Getting Started
|
||||
|
||||
First, run the development server:
|
||||
|
||||
```bash
|
||||
npm run dev
|
||||
# or
|
||||
yarn dev
|
||||
```
|
||||
|
||||
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
||||
|
||||
You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file.
|
||||
|
||||
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`.
|
||||
|
||||
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
|
||||
|
||||
## Learn More
|
||||
|
||||
To learn more about Next.js, take a look at the following resources:
|
||||
|
||||
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
|
||||
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
|
||||
|
||||
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
|
||||
|
||||
## Deploy on Vercel
|
||||
|
||||
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
|
||||
|
||||
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
|
15
002_source/cms/jest.config.mjs
Normal file
@@ -0,0 +1,15 @@
|
||||
import nextJest from 'next/jest.js';
|
||||
|
||||
const createJestConfig = nextJest({
|
||||
dir: './',
|
||||
});
|
||||
|
||||
/** @type {import('jest').Config} */
|
||||
const config = {
|
||||
testEnvironment: 'jest-environment-jsdom',
|
||||
moduleNameMapper: {
|
||||
'^@/(.*)$': '<rootDir>/src/$1',
|
||||
},
|
||||
};
|
||||
|
||||
export default createJestConfig(config);
|
4
002_source/cms/next.config.mjs
Normal file
@@ -0,0 +1,4 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const config = {};
|
||||
|
||||
export default config;
|
114
002_source/cms/package.json
Normal file
@@ -0,0 +1,114 @@
|
||||
{
|
||||
"name": "@devias-kit-pro/nextjs-template",
|
||||
"author": "Devias IO",
|
||||
"version": "7.0.0",
|
||||
"private": true,
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "rm -rf .next && next dev",
|
||||
"build": "next build",
|
||||
"build:w": "pnpx nodemon --ext ts,tsx,json --delay 1 --exec \"pnpm run build\"",
|
||||
"start": "next start",
|
||||
"lint": "next lint --quiet",
|
||||
"lint:fix": "next lint --fix",
|
||||
"lint:w": "pnpx nodemon --ext ts,tsx,json --delay 2 --exec \"pnpm run lint\"",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"format:write": "prettier --write \"**/*.{js,jsx,mjs,ts,tsx,mdx}\" --cache",
|
||||
"format:check": "prettier --check \"**/*.{js,jsx,mjs,ts,tsx,mdx}\" --cache",
|
||||
"format:fix": "prettier --write \"**/*.{js,jsx,mjs,ts,tsx,mdx}\" --cache",
|
||||
"test": "jest --watch",
|
||||
"update_doc:w": "pnpx nodemon --ext md --exec \"pnpm run update_doc\"",
|
||||
"update_doc": "cd 001_documentation/Requirements && node update_req_index.js",
|
||||
"update_repomix": "npx repomix",
|
||||
"update_repomix:w": "pnpx nodemon --delay 3 --exec \"pnpx repomix\"",
|
||||
"clean": "rm -rf node_modules && rm -rf .next"
|
||||
},
|
||||
"dependencies": {
|
||||
"@auth0/nextjs-auth0": "3.5.0",
|
||||
"@aws-amplify/auth": "6.0.17",
|
||||
"@dnd-kit/core": "6.1.0",
|
||||
"@dnd-kit/sortable": "8.0.0",
|
||||
"@dnd-kit/utilities": "3.2.2",
|
||||
"@elgorditosalsero/react-gtm-hook": "2.7.2",
|
||||
"@emotion/cache": "11.11.0",
|
||||
"@emotion/react": "11.11.3",
|
||||
"@emotion/server": "11.11.0",
|
||||
"@emotion/styled": "11.11.0",
|
||||
"@fontsource/inter": "5.0.16",
|
||||
"@fontsource/plus-jakarta-sans": "5.0.18",
|
||||
"@fontsource/roboto-mono": "5.0.16",
|
||||
"@fullcalendar/core": "6.1.11",
|
||||
"@fullcalendar/daygrid": "6.1.11",
|
||||
"@fullcalendar/interaction": "6.1.11",
|
||||
"@fullcalendar/list": "6.1.11",
|
||||
"@fullcalendar/react": "6.1.11",
|
||||
"@fullcalendar/timegrid": "6.1.11",
|
||||
"@fullcalendar/timeline": "6.1.11",
|
||||
"@hookform/resolvers": "3.3.4",
|
||||
"@mui/lab": "5.0.0-alpha.166",
|
||||
"@mui/material": "5.15.11",
|
||||
"@mui/system": "5.15.11",
|
||||
"@mui/utils": "5.15.11",
|
||||
"@mui/x-date-pickers": "6.19.5",
|
||||
"@phosphor-icons/react": "2.0.15",
|
||||
"@react-pdf/renderer": "3.3.8",
|
||||
"@supabase/ssr": "0.1.0",
|
||||
"@supabase/supabase-js": "2.39.7",
|
||||
"@tiptap/extension-link": "2.2.4",
|
||||
"@tiptap/extension-placeholder": "2.2.4",
|
||||
"@tiptap/react": "2.2.4",
|
||||
"@tiptap/starter-kit": "2.2.4",
|
||||
"aws-amplify": "6.0.17",
|
||||
"dayjs": "1.11.10",
|
||||
"embla-carousel": "8.0.0",
|
||||
"embla-carousel-react": "8.0.0",
|
||||
"firebase": "10.8.0",
|
||||
"i18next": "23.10.0",
|
||||
"i18next-http-backend": "2.5.0",
|
||||
"mapbox-gl": "3.1.2",
|
||||
"next": "14.1.0",
|
||||
"next-i18next": "15.2.0",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0",
|
||||
"react-dropzone": "14.2.3",
|
||||
"react-hook-form": "7.50.1",
|
||||
"react-i18next": "14.0.5",
|
||||
"react-map-gl": "7.1.7",
|
||||
"react-markdown": "9.0.1",
|
||||
"react-simple-maps": "3.0.0",
|
||||
"react-syntax-highlighter": "15.5.0",
|
||||
"recharts": "2.12.1",
|
||||
"sonner": "1.4.1",
|
||||
"stylis": "4.3.1",
|
||||
"stylis-plugin-rtl": "2.1.1",
|
||||
"zod": "3.22.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
|
||||
"@testing-library/jest-dom": "6.4.2",
|
||||
"@testing-library/react": "14.2.1",
|
||||
"@types/jest": "29.5.12",
|
||||
"@types/mapbox-gl": "3.1.0",
|
||||
"@types/node": "20.11.20",
|
||||
"@types/react": "18.2.58",
|
||||
"@types/react-dom": "18.2.19",
|
||||
"@types/react-simple-maps": "3.0.4",
|
||||
"@types/react-syntax-highlighter": "15.5.11",
|
||||
"@vercel/style-guide": "5.2.0",
|
||||
"eslint": "8.57.0",
|
||||
"eslint-config-next": "14.1.0",
|
||||
"eslint-config-prettier": "9.1.0",
|
||||
"jest": "29.7.0",
|
||||
"jest-environment-jsdom": "29.7.0",
|
||||
"prettier": "3.2.5",
|
||||
"typescript": "5.3.3"
|
||||
},
|
||||
"pnpm": {
|
||||
"onlyBuiltDependencies": [
|
||||
"core-js",
|
||||
"protobufjs"
|
||||
]
|
||||
}
|
||||
}
|
12246
002_source/cms/pnpm-lock.yaml
generated
Normal file
34
002_source/cms/prettier.config.mjs
Normal file
@@ -0,0 +1,34 @@
|
||||
/** @type {import('prettier').Config} */
|
||||
const config = {
|
||||
endOfLine: 'lf',
|
||||
semi: true,
|
||||
singleQuote: true,
|
||||
tabWidth: 2,
|
||||
trailingComma: 'es5',
|
||||
printWidth: 120,
|
||||
importOrder: [
|
||||
'^node:$',
|
||||
'',
|
||||
'^(react/(.*)$)|^(react$)',
|
||||
'^(next/(.*)$)|^(next$)',
|
||||
'<THIRD_PARTY_MODULES>',
|
||||
'',
|
||||
'^@/types$',
|
||||
'^@/types/(.*)$',
|
||||
'^@/config$',
|
||||
'^@/config/(.*)$',
|
||||
'^@/paths$',
|
||||
'^@/data/(.*)$',
|
||||
'^@/lib/(.*)$',
|
||||
'^@/actions/(.*)$',
|
||||
'^@/contexts/(.*)$',
|
||||
'^@/hooks/(.*)$',
|
||||
'^@/components/(.*)$',
|
||||
'^@/styles/(.*)$',
|
||||
'',
|
||||
'^[./]',
|
||||
],
|
||||
plugins: ['@ianvs/prettier-plugin-sort-imports'],
|
||||
};
|
||||
|
||||
export default config;
|
BIN
002_source/cms/public/assets/avatar-1.png
Normal file
After Width: | Height: | Size: 110 KiB |
BIN
002_source/cms/public/assets/avatar-10.png
Normal file
After Width: | Height: | Size: 136 KiB |
BIN
002_source/cms/public/assets/avatar-11.png
Normal file
After Width: | Height: | Size: 122 KiB |
BIN
002_source/cms/public/assets/avatar-2.png
Normal file
After Width: | Height: | Size: 109 KiB |
BIN
002_source/cms/public/assets/avatar-3.png
Normal file
After Width: | Height: | Size: 108 KiB |
BIN
002_source/cms/public/assets/avatar-4.png
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
002_source/cms/public/assets/avatar-5.png
Normal file
After Width: | Height: | Size: 136 KiB |
BIN
002_source/cms/public/assets/avatar-6.png
Normal file
After Width: | Height: | Size: 100 KiB |
BIN
002_source/cms/public/assets/avatar-7.png
Normal file
After Width: | Height: | Size: 97 KiB |
BIN
002_source/cms/public/assets/avatar-8.png
Normal file
After Width: | Height: | Size: 84 KiB |
BIN
002_source/cms/public/assets/avatar-9.png
Normal file
After Width: | Height: | Size: 94 KiB |
BIN
002_source/cms/public/assets/avatar.png
Normal file
After Width: | Height: | Size: 137 KiB |
BIN
002_source/cms/public/assets/card-background-1.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
002_source/cms/public/assets/card-background-2.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
002_source/cms/public/assets/company-avatar-1.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
002_source/cms/public/assets/company-avatar-2.png
Normal file
After Width: | Height: | Size: 8.0 KiB |
BIN
002_source/cms/public/assets/company-avatar-3.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
002_source/cms/public/assets/company-avatar-4.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
002_source/cms/public/assets/company-avatar-5.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
002_source/cms/public/assets/company-image-1.jpg
Normal file
After Width: | Height: | Size: 268 KiB |
BIN
002_source/cms/public/assets/company-image-2.jpg
Normal file
After Width: | Height: | Size: 115 KiB |
BIN
002_source/cms/public/assets/company-image-3.jpg
Normal file
After Width: | Height: | Size: 98 KiB |
BIN
002_source/cms/public/assets/company-image-4.jpg
Normal file
After Width: | Height: | Size: 196 KiB |
BIN
002_source/cms/public/assets/company-image-5.jpg
Normal file
After Width: | Height: | Size: 221 KiB |
BIN
002_source/cms/public/assets/company-image-6.jpg
Normal file
After Width: | Height: | Size: 128 KiB |
9
002_source/cms/public/assets/contactless.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="29" height="38" viewBox="0 0 29 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="m2.162 25.646-.006.008-.006.008c-.32.452-1.036.585-1.597.19-.449-.316-.584-1.021-.201-1.578.57-.725.984-1.573 1.256-2.402.283-.863.414-1.843.41-2.805-.006-.961-.148-1.94-.44-2.8-.281-.826-.704-1.669-1.282-2.388-.388-.553-.26-1.259.185-1.58.556-.4 1.274-.276 1.599.173l.006.008.006.008c.719.946 1.309 1.998 1.661 3.03.371 1.213.607 2.386.614 3.537.006 1.21-.11 2.357-.555 3.485-.485 1.228-.955 2.17-1.65 3.106Zm5.2 2.247.013-.02.013-.02a16.548 16.548 0 0 0-.093-17.625c-.35-.556-.193-1.213.399-1.64.397-.286 1.144-.185 1.586.408 1.83 2.896 2.934 6.397 2.954 10.017.02 3.744-1.047 7.131-2.847 10.049-.416.572-1.054.732-1.603.408-.596-.436-.705-1.178-.423-1.577Zm9.33-22.704.015.03.018.03c2.48 4.033 3.857 8.685 3.883 13.72.027 5.032-1.3 9.697-3.733 13.754-.373.599-1.002.768-1.641.471-.581-.378-.737-1.004-.434-1.637 2.07-3.668 3.357-7.99 3.332-12.575-.024-4.565-1.22-8.88-3.47-12.548-.305-.627-.154-1.25.42-1.633.693-.33 1.368-.088 1.61.388ZM24.03 1.35l.01.02.012.021c3.004 5.182 4.769 11.106 4.803 17.533.034 6.42-1.663 12.357-4.606 17.566-.374.592-1 .758-1.636.463-.58-.377-.736-1-.437-1.631 2.835-4.829 4.362-10.422 4.33-16.386-.032-5.978-1.753-11.55-4.5-16.331-.345-.698-.103-1.382.378-1.625.706-.356 1.4-.114 1.646.37Z" fill="url(#a)"/>
|
||||
<defs>
|
||||
<linearGradient id="a" x1="14.38" y1=".857" x2="14.573" y2="37.143" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#fff" stop-opacity=".73"/>
|
||||
<stop offset="1" stop-color="#fff"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
BIN
002_source/cms/public/assets/course-1.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
002_source/cms/public/assets/course-2.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
002_source/cms/public/assets/course-3.png
Normal file
After Width: | Height: | Size: 16 KiB |
97
002_source/cms/public/assets/error.svg
Normal file
@@ -0,0 +1,97 @@
|
||||
<svg width="64" height="84" viewBox="0 0 64 84" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_ddd_14337_183752)">
|
||||
<path
|
||||
d="M6 5.99707C6 4.34022 7.34315 2.99707 9 2.99707L36.3715 2.99707C37.2945 2.99707 38.1661 3.42193 38.7347 4.14899L57.3584 27.9635C57.7711 28.4911 57.9952 29.1417 57.9952 29.8115V71.7347C57.9952 73.3916 56.6521 74.7347 54.9952 74.7347H9C7.34315 74.7347 6 73.3916 6 71.7347V5.99707Z"
|
||||
fill="url(#paint0_linear_14337_183752)" />
|
||||
<path
|
||||
d="M54.9953 74.2347H9C7.61929 74.2347 6.5 73.1154 6.5 71.7347V5.99707C6.5 4.61636 7.61929 3.49707 9 3.49707H36.3715C37.1406 3.49707 37.867 3.85112 38.3408 4.457L56.9646 28.2715C57.3084 28.7112 57.4953 29.2533 57.4953 29.8115V71.7347C57.4953 73.1154 56.376 74.2347 54.9953 74.2347Z"
|
||||
stroke="url(#paint1_linear_14337_183752)" />
|
||||
</g>
|
||||
<g filter="url(#filter1_ddd_14337_183752)">
|
||||
<path
|
||||
d="M47.3887 14.867L36.7775 2.73486V25.5156C36.7775 27.1724 38.1206 28.5156 39.7775 28.5156H58L47.3887 14.867Z"
|
||||
fill="url(#paint2_linear_14337_183752)" />
|
||||
<path
|
||||
d="M47.1958 15.0261L57.489 28.2656H39.7775C38.2587 28.2656 37.0275 27.0344 37.0275 25.5156V3.40043L47.1958 15.0261Z"
|
||||
stroke="url(#paint3_linear_14337_183752)" stroke-width="0.5" />
|
||||
</g>
|
||||
<path
|
||||
d="M32.9896 30.9775C31.0613 30.9775 29.1762 31.5494 27.5728 32.6207C25.9694 33.6921 24.7198 35.2148 23.9818 36.9964C23.2438 38.778 23.0508 40.7384 23.427 42.6297C23.8032 44.521 24.7318 46.2583 26.0953 47.6218C27.4589 48.9854 29.1962 49.914 31.0875 50.2902C32.9788 50.6664 34.9392 50.4733 36.7208 49.7354C38.5024 48.9974 40.0251 47.7477 41.0965 46.1443C42.1678 44.541 42.7396 42.6559 42.7396 40.7275C42.7369 38.1425 41.7088 35.6642 39.8809 33.8363C38.053 32.0084 35.5747 30.9803 32.9896 30.9775ZM36.5203 43.1969C36.5899 43.2666 36.6452 43.3493 36.6829 43.4404C36.7206 43.5314 36.74 43.629 36.74 43.7275C36.74 43.8261 36.7206 43.9237 36.6829 44.0147C36.6452 44.1058 36.5899 44.1885 36.5203 44.2582C36.4506 44.3278 36.3678 44.3831 36.2768 44.4208C36.1858 44.4585 36.0882 44.478 35.9896 44.478C35.8911 44.478 35.7935 44.4585 35.7025 44.4208C35.6114 44.3831 35.5287 44.3278 35.459 44.2582L32.9896 41.7879L30.5203 44.2582C30.4506 44.3278 30.3678 44.3831 30.2768 44.4208C30.1858 44.4585 30.0882 44.478 29.9896 44.478C29.8911 44.478 29.7935 44.4585 29.7025 44.4208C29.6114 44.3831 29.5287 44.3278 29.459 44.2582C29.3893 44.1885 29.334 44.1058 29.2963 44.0147C29.2586 43.9237 29.2392 43.8261 29.2392 43.7275C29.2392 43.629 29.2586 43.5314 29.2963 43.4404C29.334 43.3493 29.3893 43.2666 29.459 43.1969L31.9293 40.7275L29.459 38.2582C29.3183 38.1174 29.2392 37.9266 29.2392 37.7275C29.2392 37.5285 29.3183 37.3376 29.459 37.1969C29.5997 37.0562 29.7906 36.9771 29.9896 36.9771C30.1887 36.9771 30.3795 37.0562 30.5203 37.1969L32.9896 39.6672L35.459 37.1969C35.5287 37.1272 35.6114 37.072 35.7025 37.0342C35.7935 36.9965 35.8911 36.9771 35.9896 36.9771C36.0882 36.9771 36.1858 36.9965 36.2768 37.0342C36.3678 37.072 36.4506 37.1272 36.5203 37.1969C36.5899 37.2666 36.6452 37.3493 36.6829 37.4404C36.7206 37.5314 36.74 37.629 36.74 37.7275C36.74 37.8261 36.7206 37.9237 36.6829 38.0147C36.6452 38.1058 36.5899 38.1885 36.5203 38.2582L34.0499 40.7275L36.5203 43.1969Z"
|
||||
fill="#F04438" />
|
||||
<defs>
|
||||
<filter id="filter0_ddd_14337_183752" x="0" y="-0.00292969" width="63.9952" height="83.7378"
|
||||
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" result="hardAlpha" />
|
||||
<feOffset />
|
||||
<feComposite in2="hardAlpha" operator="out" />
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0" />
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_14337_183752" />
|
||||
<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" result="hardAlpha" />
|
||||
<feOffset dy="1" />
|
||||
<feGaussianBlur stdDeviation="1.5" />
|
||||
<feComposite in2="hardAlpha" operator="out" />
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.07 0" />
|
||||
<feBlend mode="normal" in2="effect1_dropShadow_14337_183752"
|
||||
result="effect2_dropShadow_14337_183752" />
|
||||
<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" result="hardAlpha" />
|
||||
<feOffset dy="3" />
|
||||
<feGaussianBlur stdDeviation="3" />
|
||||
<feComposite in2="hardAlpha" operator="out" />
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0" />
|
||||
<feBlend mode="normal" in2="effect2_dropShadow_14337_183752"
|
||||
result="effect3_dropShadow_14337_183752" />
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect3_dropShadow_14337_183752" result="shape" />
|
||||
</filter>
|
||||
<filter id="filter1_ddd_14337_183752" x="34.7775" y="1.98486" width="25.2225" height="30.5308"
|
||||
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" result="hardAlpha" />
|
||||
<feOffset />
|
||||
<feComposite in2="hardAlpha" operator="out" />
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0" />
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_14337_183752" />
|
||||
<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" result="hardAlpha" />
|
||||
<feOffset dy="2" />
|
||||
<feGaussianBlur stdDeviation="1" />
|
||||
<feComposite in2="hardAlpha" operator="out" />
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.13 0" />
|
||||
<feBlend mode="normal" in2="effect1_dropShadow_14337_183752"
|
||||
result="effect2_dropShadow_14337_183752" />
|
||||
<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" result="hardAlpha" />
|
||||
<feOffset dy="0.25" />
|
||||
<feGaussianBlur stdDeviation="0.5" />
|
||||
<feComposite in2="hardAlpha" operator="out" />
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.13 0" />
|
||||
<feBlend mode="normal" in2="effect2_dropShadow_14337_183752"
|
||||
result="effect3_dropShadow_14337_183752" />
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect3_dropShadow_14337_183752" result="shape" />
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_14337_183752" x1="31.9976" y1="2.99707" x2="31.9976"
|
||||
y2="74.7347" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white" />
|
||||
<stop offset="1" stop-color="#EFEFEF" />
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_14337_183752" x1="31.4671" y1="74.7347" x2="31.4671"
|
||||
y2="6.35977" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white" />
|
||||
<stop offset="1" stop-color="white" stop-opacity="0" />
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_14337_183752" x1="35.3626" y1="28.5156" x2="45.998"
|
||||
y2="29.8385" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FAFAFA" />
|
||||
<stop offset="1" stop-color="#EDEDED" />
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_14337_183752" x1="49.511" y1="43.6807" x2="47.8862"
|
||||
y2="16.396" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white" />
|
||||
<stop offset="1" stop-color="white" stop-opacity="0" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 7.5 KiB |
5
002_source/cms/public/assets/flag-ca.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="36" height="36" fill="none" />
|
||||
<path d="M0 9H9L9.37125 9.37125H26.6287L27 9H36V27H27L26.6287 26.6287H9.37125L9 27H0V9Z" fill="#D52B1E" />
|
||||
<path d="M9 9H27V27H9V9ZM18.3375 25.6125L18.1687 22.3762C18.1663 22.323 18.1758 22.2699 18.1966 22.2209C18.2174 22.1718 18.2489 22.128 18.2888 22.0928C18.3288 22.0575 18.3761 22.0317 18.4274 22.0171C18.4786 22.0026 18.5325 21.9997 18.585 22.0087L21.8062 22.575L21.3712 21.375C21.3536 21.3273 21.3513 21.2752 21.3648 21.2261C21.3782 21.177 21.4067 21.1333 21.4462 21.1012L24.975 18.2437L24.18 17.8725C24.1263 17.8471 24.0837 17.803 24.0602 17.7485C24.0368 17.6939 24.034 17.6327 24.0525 17.5762L24.75 15.4312L22.7175 15.8625C22.6624 15.874 22.6051 15.8661 22.5552 15.8401C22.5053 15.8141 22.4659 15.7717 22.4437 15.72L22.05 14.7937L20.4637 16.4962C20.4275 16.5345 20.3798 16.56 20.3278 16.5688C20.2758 16.5777 20.2224 16.5695 20.1755 16.5454C20.1286 16.5213 20.0908 16.4827 20.0677 16.4353C20.0446 16.3879 20.0375 16.3343 20.0475 16.2825L20.8125 12.3375L19.5862 13.0462C19.5575 13.0631 19.5255 13.0739 19.4924 13.0779C19.4593 13.082 19.4257 13.0791 19.3937 13.0696C19.3617 13.0601 19.332 13.0442 19.3064 13.0227C19.2808 13.0013 19.2599 12.9748 19.245 12.945L18 10.5L16.755 12.945C16.7401 12.9748 16.7192 13.0013 16.6936 13.0227C16.668 13.0442 16.6383 13.0601 16.6063 13.0696C16.5743 13.0791 16.5407 13.082 16.5076 13.0779C16.4745 13.0739 16.4425 13.0631 16.4137 13.0462L15.1875 12.3375L15.9525 16.2825C15.9625 16.3343 15.9554 16.3879 15.9323 16.4353C15.9092 16.4827 15.8714 16.5213 15.8245 16.5454C15.7776 16.5695 15.7242 16.5777 15.6722 16.5688C15.6202 16.56 15.5725 16.5345 15.5362 16.4962L13.95 14.7937L13.5562 15.72C13.5341 15.7717 13.4947 15.8141 13.4448 15.8401C13.3949 15.8661 13.3376 15.874 13.2825 15.8625L11.25 15.4312L11.9475 17.5762C11.966 17.6327 11.9632 17.6939 11.9398 17.7485C11.9163 17.803 11.8737 17.8471 11.82 17.8725L11.025 18.2437L14.5537 21.1012C14.5933 21.1333 14.6218 21.177 14.6352 21.2261C14.6487 21.2752 14.6464 21.3273 14.6287 21.375L14.1937 22.575L17.415 22.0087C17.4675 21.9997 17.5214 22.0026 17.5726 22.0171C17.6239 22.0317 17.6712 22.0575 17.7112 22.0928C17.7511 22.128 17.7826 22.1718 17.8034 22.2209C17.8242 22.2699 17.8337 22.323 17.8312 22.3762L17.6625 25.6125H18.3375Z" fill="white" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
6
002_source/cms/public/assets/flag-de.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="36" height="36" fill="none" />
|
||||
<path d="M36 7H0V28.6H36V7Z" fill="black" />
|
||||
<path d="M36 14.2H0V28.6H36V14.2Z" fill="#DD0000" />
|
||||
<path d="M36 21.4H0V28.6H36V21.4Z" fill="#FFCE00" />
|
||||
</svg>
|
After Width: | Height: | Size: 312 B |
5
002_source/cms/public/assets/flag-es.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="36" height="36" fill="none" />
|
||||
<path d="M0 6H36V30H0V6Z" fill="#C60B1E" />
|
||||
<path d="M0 12H36V24H0V12Z" fill="#FFC400" />
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
6
002_source/cms/public/assets/flag-ru.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="36" height="36" fill="none" />
|
||||
<path d="M36 6H0V14H36V6Z" fill="white" />
|
||||
<path d="M36 22H0V30H36V22Z" fill="#D52B1E" />
|
||||
<path d="M36 14H0V22H36V14Z" fill="#0039A6" />
|
||||
</svg>
|
After Width: | Height: | Size: 298 B |
19
002_source/cms/public/assets/flag-uk.svg
Normal file
@@ -0,0 +1,19 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<rect width="36" height="36" fill="none" />
|
||||
<path d="M0 9V27H36V9H0Z" fill="#012169" />
|
||||
<path d="M0 9L36 27L0 9ZM36 9L0 27L36 9Z" fill="black" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.9754 18L-0.804688 10.61L0.805282 7.39005L18.0003 15.9876L35.1953 7.39005L36.8053 10.61L22.0252 18L36.8053 25.39L35.1953 28.61L18.0003 20.0125L0.805282 28.61L-0.804688 25.39L13.9754 18Z" fill="white" />
|
||||
<path d="M0 9L36 27L0 9ZM36 9L0 27L36 9Z" fill="black" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.3168 17.9999L-0.536621 10.0732L0.536692 7.92661L18 16.6583L35.4634 7.92661L36.5367 10.0732L20.6833 17.9999L36.5367 25.9266L35.4634 28.0732L18 19.3416L0.536692 28.0732L-0.536621 25.9266L15.3168 17.9999Z" fill="#C8102E" />
|
||||
<path d="M18 9V27V9ZM0 18H36H0Z" fill="black" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M21 21V27H15V21H0V15H15V9H21V15H36V21H21Z" fill="white" />
|
||||
<path d="M18 9V27V9ZM0 18H36H0Z" fill="black" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.8 19.8V27H16.2V19.8H0V16.2H16.2V9H19.8V16.2H36V19.8H19.8Z" fill="#C8102E" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0">
|
||||
<rect width="36" height="36" fill="white" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
8
002_source/cms/public/assets/flag-us.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="36" height="36" fill="none" />
|
||||
<path d="M36 9H0V27.9474H36V9Z" fill="#B22234" />
|
||||
<path d="M0 11.1863H36H0ZM36 14.1013H0H36ZM0 17.0162H36H0ZM36 19.9312H0H36ZM0 22.8462H36H0ZM36 25.7612H0Z" fill="black" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 10.4575H36V11.915H0V10.4575ZM36 14.83H0V13.3725H36V14.83ZM0 16.2874H36V17.7449H0V16.2874ZM36 20.6599H0V19.2024H36V20.6599ZM0 22.1174H36V23.5749H0V22.1174ZM0 25.0324H36V26.4899H0V25.0324Z" fill="white" />
|
||||
<path d="M14.4 9H0V19.2024H14.4V9Z" fill="#3C3B6E" />
|
||||
<path d="M7.03153 10.0526L9.42568 17.4211L3.15771 12.8671H10.9053L4.63738 17.4211L7.03153 10.0526Z" fill="white" />
|
||||
</svg>
|
After Width: | Height: | Size: 766 B |
65
002_source/cms/public/assets/home-cosmic.svg
Normal file
@@ -0,0 +1,65 @@
|
||||
<svg width="1200" height="720" viewBox="0 0 1200 720" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_14152_169633)">
|
||||
<mask id="mask0_14152_169633" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="1200" height="720">
|
||||
<path d="M0 0H1200V720H0V0Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_14152_169633)">
|
||||
<g opacity="0.9">
|
||||
<path d="M245.814 99.865C246.155 100.342 245.423 100.803 244.665 100.589C244.521 100.554 244.393 100.473 244.299 100.358C243.946 99.881 244.691 99.419 245.448 99.634C245.592 99.6684 245.721 99.7502 245.814 99.865ZM853.494 72.238C853.836 72.715 853.101 73.176 852.342 72.962C852.197 72.9276 852.068 72.8464 851.975 72.731C851.633 72.254 852.367 71.793 853.127 72.007C853.271 72.0416 853.4 72.1234 853.494 72.238ZM722.31 117.775C722.651 118.252 721.919 118.713 721.161 118.499C721.017 118.464 720.889 118.383 720.795 118.268C720.442 117.791 721.187 117.33 721.944 117.544C722.088 117.579 722.216 117.66 722.31 117.775ZM544.136 336.578C544.49 337.055 543.745 337.516 542.987 337.301C542.843 337.267 542.714 337.186 542.621 337.071C542.28 336.594 543.012 336.132 543.77 336.347C543.934 336.395 544.06 336.474 544.136 336.578ZM654.019 348.827C654.372 349.303 653.627 349.771 652.87 349.549C652.726 349.514 652.598 349.434 652.504 349.319C652.163 348.843 652.895 348.383 653.653 348.597C653.797 348.632 653.925 348.713 654.019 348.827ZM668.176 238.912C668.517 239.389 667.784 239.85 667.027 239.635C666.883 239.601 666.754 239.52 666.66 239.405C666.307 238.928 667.052 238.466 667.81 238.681C667.974 238.729 668.1 238.808 668.176 238.912ZM1096.2 80.584C1096.54 81.061 1095.81 81.522 1095.05 81.307C1094.9 81.2729 1094.77 81.1921 1094.68 81.077C1094.34 80.6 1095.07 80.138 1095.83 80.353C1096 80.401 1096.12 80.481 1096.2 80.584ZM866.753 121.98C867.107 122.457 866.362 122.918 865.604 122.704C865.46 122.669 865.331 122.588 865.238 122.473C864.897 121.996 865.629 121.535 866.387 121.749C866.551 121.797 866.677 121.877 866.753 121.98ZM436.148 58.505C436.489 58.983 435.757 59.444 434.999 59.229C434.855 59.1944 434.727 59.1136 434.633 58.999C434.28 58.521 435.025 58.06 435.782 58.275C435.926 58.3093 436.055 58.3902 436.148 58.505Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M671.557 23.203C671.898 23.68 671.165 24.141 670.407 23.926C670.263 23.8914 670.135 23.8106 670.041 23.696C669.688 23.219 670.433 22.757 671.19 22.972C671.334 23.0063 671.463 23.0882 671.557 23.203Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M448.234 396.183C448.587 396.66 447.842 397.122 447.085 396.907C446.941 396.872 446.812 396.791 446.718 396.676C446.377 396.199 447.11 395.738 447.868 395.953C448.032 396 448.158 396.08 448.234 396.183Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M656.336 435.5C656.677 435.977 655.944 436.438 655.187 436.223C655.043 436.189 654.914 436.108 654.821 435.993C654.467 435.516 655.212 435.054 655.97 435.269C656.134 435.317 656.26 435.396 656.336 435.5ZM167.402 158.152C167.744 158.629 167.01 159.09 166.25 158.876C166.106 158.841 165.977 158.76 165.883 158.645C165.541 158.168 166.275 157.707 167.035 157.921C167.179 157.956 167.308 158.037 167.402 158.152Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M268.269 179.25C268.622 179.727 267.877 180.188 267.12 179.973C266.976 179.939 266.847 179.858 266.754 179.743C266.413 179.266 267.145 178.804 267.903 179.019C268.067 179.067 268.193 179.146 268.269 179.25ZM282.447 302.673C282.789 303.151 282.054 303.612 281.295 303.397C281.151 303.362 281.022 303.281 280.928 303.166C280.586 302.689 281.32 302.228 282.08 302.443C282.224 302.478 282.353 302.559 282.447 302.673ZM270.605 246.351C270.946 246.828 270.214 247.29 269.456 247.075C269.312 247.04 269.183 246.959 269.09 246.844C268.737 246.367 269.482 245.906 270.239 246.121C270.383 246.155 270.512 246.236 270.605 246.351Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M422.693 18.763C423.034 19.24 422.302 19.702 421.544 19.487C421.4 19.4523 421.272 19.3715 421.178 19.257C420.824 18.779 421.569 18.318 422.327 18.533C422.471 18.5673 422.6 18.6482 422.693 18.763Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M653.439 177.566C653.781 178.043 653.047 178.504 652.287 178.29C652.143 178.255 652.014 178.174 651.92 178.059C651.578 177.582 652.312 177.121 653.072 177.335C653.216 177.37 653.345 177.451 653.439 177.566Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M596.582 220.181C596.924 220.658 596.189 221.12 595.43 220.905C595.285 220.87 595.156 220.789 595.062 220.674C594.721 220.197 595.455 219.736 596.215 219.951C596.359 219.985 596.488 220.066 596.582 220.181ZM370.961 298.193C371.721 297.979 372.455 298.439 372.113 298.914C372.02 299.029 371.89 299.11 371.746 299.144C370.987 299.367 370.252 298.899 370.594 298.423C370.688 298.308 370.817 298.227 370.961 298.193Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M442.137 138.453C442.478 138.93 441.745 139.391 440.988 139.176C440.844 139.142 440.715 139.061 440.621 138.946C440.268 138.469 441.013 138.007 441.77 138.222C441.914 138.257 442.043 138.338 442.137 138.453ZM976.082 92.271C976.423 92.748 975.691 93.21 974.933 92.995C974.789 92.9606 974.66 92.8798 974.567 92.765C974.213 92.287 974.958 91.825 975.716 92.04C975.88 92.088 976.006 92.168 976.082 92.271Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M1096.2 43.3918C1096.54 43.8688 1095.81 44.3308 1095.05 44.1158C1094.9 44.0816 1094.77 44.0008 1094.68 43.8858C1094.34 43.4078 1095.07 42.9458 1095.83 43.1618C1095.97 43.1958 1096.1 43.2766 1096.2 43.3918Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M641.867 360.277C642.208 360.754 641.476 361.215 640.718 361.001C640.574 360.966 640.446 360.885 640.352 360.77C639.998 360.293 640.743 359.832 641.501 360.046C641.665 360.094 641.791 360.174 641.867 360.277ZM164.018 445.064C164.358 445.54 163.626 446 162.868 445.786C162.724 445.751 162.596 445.67 162.502 445.556C162.149 445.08 162.894 444.612 163.651 444.834C163.795 444.869 163.924 444.95 164.018 445.064ZM1111.42 433.375C1111.78 433.852 1111.03 434.313 1110.27 434.098C1110.11 434.051 1109.98 433.971 1109.91 433.868C1109.57 433.391 1110.3 432.929 1111.06 433.144C1111.22 433.192 1111.35 433.271 1111.42 433.375ZM853.675 155.548C854.017 156.026 853.283 156.487 852.523 156.272C852.379 156.237 852.25 156.156 852.156 156.042C851.814 155.564 852.549 155.103 853.308 155.318C853.452 155.352 853.581 155.433 853.675 155.548ZM955.912 420.271C956.253 420.747 955.521 421.207 954.763 420.993C954.619 420.958 954.491 420.877 954.397 420.763C954.043 420.287 954.788 419.819 955.546 420.041C955.69 420.076 955.818 420.157 955.912 420.271Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M243.804 404.525C244.158 405.002 243.413 405.463 242.655 405.249C242.511 405.214 242.383 405.133 242.289 405.018C241.948 404.541 242.68 404.08 243.438 404.294C243.602 404.342 243.728 404.422 243.804 404.525Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M1.60499 392.996C1.94699 393.473 1.21299 393.934 0.452989 393.719C0.308742 393.685 0.179787 393.604 0.0859892 393.489C-0.256011 393.012 0.477989 392.55 1.23799 392.765C1.38234 392.8 1.51129 392.881 1.60499 392.996ZM250.91 353.505C251.252 353.983 250.517 354.444 249.758 354.229C249.614 354.195 249.485 354.114 249.391 353.999C249.049 353.521 249.783 353.06 250.543 353.275C250.687 353.31 250.816 353.391 250.91 353.505ZM762.306 419.56C762.648 420.037 761.914 420.499 761.154 420.284C761.01 420.249 760.881 420.168 760.787 420.053C760.445 419.576 761.18 419.115 761.939 419.33C762.083 419.364 762.212 419.445 762.306 419.56ZM804.181 0.284998C804.535 0.761998 803.79 1.223 803.032 1.008C802.888 0.973594 802.759 0.892769 802.666 0.777998C802.325 0.300998 803.057 -0.161002 803.815 0.0539984C803.959 0.0888151 804.087 0.170563 804.181 0.284998ZM309.512 207.033C309.853 207.51 309.12 207.971 308.363 207.756C308.219 207.722 308.09 207.641 307.996 207.526C307.643 207.049 308.388 206.587 309.145 206.802C309.289 206.837 309.418 206.918 309.512 207.033ZM730.152 362.291C730.494 362.768 729.76 363.229 729 363.014C728.856 362.98 728.727 362.899 728.633 362.784C728.291 362.307 729.025 361.845 729.785 362.06C729.929 362.095 730.058 362.176 730.152 362.291ZM610.828 276.103C610.486 276.58 611.221 277.042 611.98 276.827C612.124 276.792 612.253 276.711 612.347 276.596C612.689 276.119 611.955 275.658 611.195 275.873C611.051 275.907 610.922 275.988 610.828 276.103ZM1150.51 57.207C1150.17 57.684 1150.9 58.145 1151.66 57.93C1151.8 57.8933 1151.93 57.813 1152.03 57.7C1152.37 57.223 1151.63 56.761 1150.87 56.976C1150.71 57.024 1150.58 57.104 1150.51 57.207ZM511.011 73.17C510.67 73.647 511.403 74.108 512.16 73.893C512.304 73.8587 512.433 73.7778 512.527 73.663C512.88 73.185 512.135 72.724 511.378 72.939C511.234 72.9734 511.105 73.0552 511.011 73.17ZM991.478 55.08C991.137 55.557 991.871 56.018 992.631 55.803C992.775 55.7684 992.904 55.6876 992.998 55.573C993.34 55.096 992.605 54.634 991.846 54.849C991.702 54.8834 991.572 54.9642 991.478 55.079V55.08ZM439.797 164.463C439.456 164.94 440.188 165.401 440.946 165.186C441.09 165.151 441.218 165.07 441.312 164.956C441.665 164.478 440.92 164.017 440.163 164.232C440.019 164.267 439.89 164.348 439.797 164.463ZM343.887 337.396C344.647 337.618 345.381 337.151 345.039 336.675C344.945 336.56 344.816 336.479 344.672 336.445C343.912 336.23 343.178 336.691 343.52 337.166C343.614 337.281 343.743 337.362 343.887 337.396ZM192.951 177.023C192.61 177.5 193.342 177.961 194.1 177.747C194.244 177.712 194.372 177.631 194.466 177.516C194.82 177.039 194.075 176.578 193.317 176.792C193.173 176.827 193.045 176.908 192.951 177.023ZM316.389 92.273C316.047 92.75 316.781 93.211 317.541 92.997C317.685 92.9624 317.814 92.8816 317.908 92.767C318.25 92.289 317.515 91.827 316.756 92.042C316.612 92.0767 316.483 92.1578 316.389 92.273ZM110.061 222.973C109.707 223.449 110.452 223.917 111.21 223.695C111.354 223.661 111.482 223.58 111.576 223.465C111.917 222.989 111.185 222.529 110.427 222.743C110.283 222.778 110.155 222.859 110.061 222.973Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M169.258 244.838C168.905 245.315 169.65 245.776 170.407 245.561C170.551 245.526 170.679 245.446 170.773 245.331C171.114 244.853 170.382 244.392 169.624 244.607C169.48 244.642 169.351 244.723 169.258 244.838Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M465.605 220.687C465.264 221.164 465.997 221.626 466.754 221.411C466.898 221.376 467.027 221.295 467.12 221.18C467.474 220.703 466.729 220.242 465.971 220.457C465.827 220.491 465.698 220.572 465.605 220.687ZM39 334.552C38.659 335.029 39.391 335.491 40.149 335.276C40.293 335.241 40.4217 335.16 40.515 335.045C40.868 334.568 40.123 334.107 39.365 334.322C39.2214 334.357 39.0932 334.437 39 334.552ZM355.818 236.884C355.477 237.362 356.209 237.823 356.967 237.608C357.111 237.573 357.24 237.492 357.333 237.377C357.687 236.9 356.942 236.439 356.184 236.654C356.04 236.688 355.911 236.769 355.818 236.884ZM856.137 441.877C855.795 442.354 856.529 442.815 857.289 442.6C857.433 442.566 857.562 442.485 857.656 442.37C857.998 441.892 857.263 441.431 856.504 441.646C856.36 441.681 856.231 441.762 856.137 441.877ZM767.062 380.246C766.721 380.723 767.454 381.184 768.211 380.969C768.355 380.935 768.484 380.854 768.577 380.739C768.931 380.262 768.186 379.8 767.428 380.015C767.284 380.05 767.155 380.131 767.062 380.246ZM926.648 379.947C926.306 380.424 927.041 380.885 927.8 380.671C927.945 380.636 928.074 380.555 928.168 380.44C928.51 379.963 927.775 379.502 927.016 379.716C926.871 379.751 926.742 379.832 926.648 379.947ZM648.933 69.111C648.592 69.588 649.326 70.049 650.086 69.835C650.23 69.8001 650.359 69.719 650.453 69.604C650.795 69.127 650.06 68.666 649.301 68.88C649.156 68.9147 649.027 68.9958 648.933 69.111ZM937.342 43.392C937 43.869 937.734 44.331 938.494 44.116C938.638 44.0814 938.767 44.0006 938.861 43.886C939.203 43.408 938.469 42.946 937.709 43.162C937.565 43.1963 937.436 43.2772 937.342 43.392Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M1052.38 12.578C1052.04 13.055 1052.78 13.516 1053.54 13.301C1053.7 13.254 1053.83 13.174 1053.9 13.071C1054.25 12.594 1053.51 12.132 1052.75 12.347C1052.61 12.3837 1052.48 12.4641 1052.38 12.577V12.578ZM849.371 38.08C849.029 38.557 849.763 39.018 850.523 38.803C850.667 38.7687 850.796 38.6878 850.89 38.573C851.232 38.096 850.498 37.634 849.738 37.849C849.594 37.8836 849.465 37.9644 849.371 38.079V38.08Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M918.734 0.886002C918.393 1.363 919.126 1.825 919.883 1.61C920.027 1.5756 920.156 1.49477 920.249 1.38C920.603 0.902002 919.858 0.441002 919.1 0.656002C918.956 0.690613 918.828 0.7714 918.734 0.886002ZM455.181 364.306C454.84 364.783 455.573 365.245 456.33 365.03C456.474 364.995 456.603 364.914 456.697 364.799C457.05 364.322 456.305 363.861 455.547 364.076C455.403 364.11 455.274 364.191 455.181 364.306ZM348.341 157.351C348.001 157.828 348.733 158.29 349.491 158.075C349.635 158.04 349.764 157.959 349.857 157.844C350.21 157.367 349.465 156.906 348.708 157.121C348.564 157.155 348.435 157.236 348.341 157.351ZM911.79 200.658C912.144 201.135 911.399 201.596 910.641 201.381C910.497 201.347 910.369 201.266 910.275 201.151C909.934 200.674 910.667 200.212 911.424 200.427C911.568 200.462 911.697 200.543 911.79 200.658ZM1198.24 124.152C1198.59 124.629 1197.85 125.09 1197.09 124.876C1196.95 124.839 1196.82 124.758 1196.72 124.645C1196.38 124.168 1197.12 123.707 1197.87 123.921C1198.04 123.969 1198.16 124.049 1198.24 124.152Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M832.81 302.673C833.163 303.151 832.418 303.612 831.661 303.397C831.517 303.362 831.389 303.282 831.295 303.167C830.954 302.689 831.686 302.228 832.444 302.443C832.588 302.478 832.716 302.559 832.81 302.673ZM791.396 129.209C791.749 129.686 791.004 130.147 790.247 129.932C790.103 129.898 789.974 129.817 789.881 129.702C789.54 129.225 790.272 128.763 791.03 128.978C791.194 129.026 791.32 129.105 791.396 129.209Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M824.326 160.254C824.667 160.731 823.935 161.192 823.177 160.977C823.033 160.942 822.905 160.861 822.811 160.747C822.457 160.269 823.202 159.808 823.96 160.023C824.124 160.071 824.25 160.15 824.326 160.254ZM1132.3 285.205C1132.64 285.681 1131.91 286.141 1131.15 285.927C1130.99 285.879 1130.86 285.8 1130.79 285.697C1130.43 285.221 1131.18 284.753 1131.93 284.975C1132.08 285.009 1132.21 285.09 1132.3 285.205ZM1015.7 91.754C1016.04 92.231 1015.3 92.692 1014.55 92.477C1014.4 92.4429 1014.27 92.3621 1014.18 92.247C1013.83 91.769 1014.57 91.308 1015.33 91.523C1015.49 91.571 1015.62 91.651 1015.7 91.754ZM730.771 239.5C731.112 239.977 730.38 240.438 729.622 240.223C729.478 240.189 729.349 240.108 729.256 239.993C728.903 239.516 729.648 239.054 730.405 239.269C730.549 239.304 730.678 239.385 730.771 239.5ZM799.101 271.185C799.454 271.662 798.709 272.124 797.952 271.909C797.808 271.874 797.679 271.793 797.586 271.678C797.245 271.201 797.977 270.74 798.735 270.955C798.899 271.002 799.025 271.082 799.101 271.185Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M933.289 278.052C932.936 278.53 933.681 278.991 934.438 278.776C934.582 278.741 934.711 278.66 934.805 278.545C935.146 278.068 934.413 277.607 933.656 277.822C933.512 277.856 933.383 277.937 933.289 278.052Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M749.799 291.586C749.457 292.063 750.191 292.524 750.951 292.309C751.095 292.275 751.224 292.194 751.318 292.079C751.66 291.601 750.926 291.14 750.166 291.355C750.022 291.39 749.893 291.471 749.799 291.586ZM1066.46 141.149C1066.11 141.625 1066.85 142.093 1067.61 141.871C1067.75 141.834 1067.88 141.754 1067.98 141.641C1068.32 141.165 1067.59 140.705 1066.83 140.919C1066.68 140.953 1066.55 141.034 1066.46 141.149ZM861.75 235.724C861.409 236.201 862.141 236.663 862.899 236.448C863.043 236.413 863.172 236.332 863.265 236.217C863.619 235.74 862.874 235.279 862.116 235.494C861.972 235.528 861.843 235.609 861.75 235.724ZM960.58 212.498C960.227 212.975 960.972 213.436 961.729 213.221C961.873 213.187 962.002 213.106 962.096 212.991C962.437 212.514 961.704 212.052 960.947 212.267C960.803 212.302 960.674 212.383 960.58 212.498ZM773.242 216.599C772.901 217.075 773.633 217.535 774.391 217.321C774.535 217.287 774.664 217.206 774.757 217.091C775.111 216.615 774.366 216.147 773.608 216.369C773.464 216.404 773.336 216.485 773.242 216.599ZM1091.42 103.408C1091.08 103.885 1091.82 104.346 1092.58 104.131C1092.74 104.084 1092.87 104.004 1092.94 103.901C1093.28 103.424 1092.55 102.962 1091.79 103.177C1091.65 103.214 1091.52 103.295 1091.42 103.408ZM385.823 194.283C385.469 194.76 386.214 195.221 386.972 195.006C387.116 194.972 387.245 194.891 387.338 194.776C387.679 194.299 386.946 193.837 386.189 194.052C386.045 194.087 385.916 194.168 385.823 194.283ZM732.637 39.14C732.283 39.617 733.028 40.079 733.786 39.864C733.93 39.8297 734.059 39.7488 734.152 39.634C734.493 39.156 733.761 38.694 733.003 38.91C732.859 38.9446 732.731 39.0254 732.637 39.14Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M568.537 44.455C568.184 44.932 568.929 45.393 569.686 45.178C569.83 45.1436 569.959 45.0628 570.053 44.948C570.394 44.471 569.661 44.009 568.904 44.224C568.76 44.2583 568.631 44.3392 568.537 44.454V44.455Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M725.873 78.459C725.52 78.936 726.265 79.397 727.022 79.182C727.166 79.1476 727.295 79.0668 727.389 78.952C727.73 78.475 726.997 78.013 726.24 78.228C726.096 78.2623 725.967 78.3442 725.873 78.459ZM528.207 163.306C527.854 163.783 528.599 164.245 529.356 164.03C529.5 163.995 529.629 163.914 529.723 163.799C530.064 163.322 529.331 162.861 528.574 163.076C528.43 163.11 528.301 163.191 528.207 163.306ZM723.971 165.519C723.617 165.996 724.362 166.458 725.12 166.243C725.264 166.208 725.393 166.127 725.486 166.012C725.827 165.535 725.095 165.074 724.337 165.289C724.193 165.323 724.064 165.404 723.971 165.519ZM610.035 101.418C609.693 101.895 610.428 102.356 611.187 102.141C611.331 102.107 611.46 102.026 611.554 101.911C611.896 101.433 611.162 100.972 610.402 101.187C610.258 101.222 610.129 101.303 610.035 101.418Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M1172.33 314.363C1172.67 314.84 1171.94 315.301 1171.18 315.087C1171.02 315.039 1170.89 314.959 1170.82 314.856C1170.46 314.379 1171.21 313.918 1171.97 314.132C1172.13 314.18 1172.26 314.26 1172.33 314.363Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M1011.78 364.332C1011.44 364.809 1012.17 365.27 1012.93 365.055C1013.08 365.021 1013.21 364.94 1013.3 364.825C1013.65 364.348 1012.91 363.886 1012.15 364.101C1012 364.135 1011.87 364.216 1011.78 364.332ZM1149.71 360.271C1149.37 360.748 1150.1 361.209 1150.86 360.995C1151 360.958 1151.13 360.877 1151.23 360.764C1151.57 360.287 1150.83 359.826 1150.07 360.04C1149.91 360.088 1149.78 360.168 1149.71 360.271Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M1069.31 335.615C1068.96 336.092 1069.7 336.553 1070.46 336.339C1070.62 336.291 1070.75 336.211 1070.82 336.108C1071.17 335.631 1070.43 335.17 1069.68 335.384C1069.51 335.432 1069.38 335.511 1069.31 335.615ZM1071 180.588C1070.64 181.065 1071.39 181.526 1072.15 181.311C1072.31 181.263 1072.44 181.184 1072.51 181.081C1072.85 180.603 1072.12 180.142 1071.36 180.357C1071.2 180.405 1071.07 180.484 1071 180.588Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M1110.81 392.578C1110.47 393.055 1111.2 393.516 1111.96 393.301C1112.1 393.267 1112.23 393.186 1112.33 393.071C1112.67 392.594 1111.94 392.132 1111.18 392.347C1111.01 392.395 1110.88 392.474 1110.81 392.578Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M337.199 120.396C336.857 120.873 337.592 121.334 338.351 121.12C338.495 121.085 338.624 121.004 338.718 120.889C339.06 120.412 338.326 119.951 337.566 120.165C337.422 120.2 337.293 120.281 337.199 120.396Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M140.504 371.744C140.162 372.221 140.896 372.682 141.656 372.467C141.8 372.433 141.929 372.352 142.023 372.237C142.365 371.76 141.631 371.298 140.871 371.513C140.727 371.548 140.598 371.629 140.504 371.744ZM551.254 424.892C550.913 425.368 551.645 425.828 552.403 425.614C552.547 425.579 552.675 425.498 552.769 425.384C553.122 424.908 552.377 424.44 551.62 424.662C551.476 424.697 551.348 424.777 551.254 424.892ZM369.627 444.609C369.285 445.086 370.019 445.547 370.779 445.333C370.923 445.298 371.052 445.217 371.146 445.102C371.488 444.625 370.754 444.164 369.994 444.378C369.85 444.413 369.721 444.494 369.627 444.609ZM368.907 402.558C368.553 403.035 369.298 403.497 370.056 403.282C370.2 403.247 370.329 403.166 370.422 403.051C370.763 402.574 370.03 402.113 369.273 402.328C369.129 402.362 369 402.443 368.907 402.558ZM649.742 395.121C649.389 395.598 650.134 396.059 650.892 395.844C651.036 395.81 651.165 395.729 651.258 395.614C651.599 395.137 650.866 394.675 650.109 394.89C649.965 394.925 649.836 395.006 649.742 395.121ZM214.945 300.548C214.603 301.026 215.338 301.487 216.097 301.272C216.242 301.237 216.371 301.156 216.465 301.041C216.806 300.564 216.072 300.103 215.312 300.318C215.168 300.353 215.039 300.434 214.945 300.548ZM126.496 313.896C126.155 314.373 126.887 314.834 127.645 314.62C127.789 314.585 127.918 314.504 128.011 314.389C128.365 313.912 127.62 313.451 126.862 313.665C126.718 313.7 126.59 313.781 126.496 313.896Z" fill="white" fill-opacity="0.24"/>
|
||||
</g>
|
||||
<g opacity="0.9">
|
||||
<path d="M245.814 561.207C246.155 561.684 245.423 562.145 244.665 561.93C244.521 561.895 244.392 561.815 244.299 561.7C243.946 561.223 244.691 560.761 245.448 560.976C245.592 561.01 245.721 561.092 245.814 561.207ZM853.494 533.58C853.836 534.057 853.101 534.518 852.342 534.303C852.198 534.269 852.068 534.188 851.975 534.073C851.633 533.596 852.367 533.134 853.127 533.349C853.271 533.384 853.4 533.465 853.494 533.58ZM722.31 579.117C722.651 579.594 721.919 580.055 721.161 579.84C721.017 579.805 720.888 579.725 720.795 579.61C720.442 579.133 721.187 578.671 721.944 578.886C722.088 578.92 722.217 579.002 722.31 579.117ZM668.176 700.254C668.517 700.731 667.784 701.192 667.027 700.977C666.883 700.942 666.754 700.862 666.66 700.747C666.307 700.269 667.052 699.808 667.81 700.023C667.974 700.071 668.1 700.15 668.176 700.254ZM1096.2 541.925C1096.54 542.403 1095.81 542.864 1095.05 542.649C1094.9 542.615 1094.77 542.533 1094.68 542.418C1094.34 541.941 1095.07 541.48 1095.83 541.695C1096 541.743 1096.12 541.822 1096.2 541.925ZM866.753 583.322C867.107 583.799 866.362 584.26 865.604 584.046C865.46 584.011 865.332 583.93 865.238 583.815C864.897 583.338 865.629 582.877 866.387 583.091C866.551 583.139 866.677 583.219 866.753 583.322ZM436.148 519.847C436.489 520.324 435.757 520.786 434.999 520.571C434.855 520.536 434.726 520.455 434.633 520.34C434.28 519.863 435.025 519.402 435.782 519.617C435.926 519.651 436.055 519.732 436.148 519.847Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M671.557 484.545C671.898 485.022 671.165 485.483 670.407 485.268C670.263 485.233 670.135 485.152 670.041 485.038C669.688 484.56 670.433 484.099 671.19 484.314C671.334 484.348 671.463 484.43 671.557 484.545ZM167.402 619.494C167.744 619.971 167.01 620.432 166.25 620.217C166.106 620.183 165.977 620.102 165.883 619.987C165.541 619.51 166.275 619.048 167.035 619.263C167.179 619.298 167.308 619.379 167.402 619.494Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M268.269 640.591C268.622 641.069 267.877 641.53 267.12 641.315C266.976 641.28 266.847 641.199 266.754 641.084C266.413 640.607 267.145 640.146 267.903 640.361C268.047 640.396 268.175 640.476 268.269 640.591ZM270.605 707.693C270.946 708.17 270.214 708.631 269.456 708.417C269.312 708.382 269.184 708.301 269.09 708.186C268.737 707.709 269.482 707.248 270.239 707.462C270.383 707.497 270.512 707.578 270.605 707.693Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M422.693 480.105C423.034 480.582 422.302 481.043 421.544 480.829C421.4 480.794 421.271 480.713 421.178 480.598C420.824 480.121 421.569 479.66 422.327 479.874C422.471 479.909 422.599 479.99 422.693 480.105Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M653.439 638.908C653.781 639.385 653.047 639.846 652.287 639.631C652.143 639.597 652.014 639.516 651.92 639.401C651.578 638.924 652.312 638.462 653.072 638.677C653.216 638.712 653.345 638.793 653.439 638.908Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M596.582 681.523C596.924 682 596.189 682.461 595.43 682.247C595.285 682.212 595.156 682.131 595.062 682.016C594.721 681.539 595.455 681.078 596.215 681.292C596.359 681.327 596.488 681.408 596.582 681.523Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M442.137 599.795C442.478 600.272 441.745 600.733 440.988 600.518C440.844 600.483 440.715 600.403 440.621 600.288C440.268 599.81 441.013 599.349 441.77 599.564C441.914 599.599 442.043 599.68 442.137 599.795ZM976.082 553.613C976.423 554.09 975.691 554.551 974.933 554.337C974.789 554.302 974.66 554.221 974.567 554.106C974.213 553.629 974.958 553.168 975.716 553.382C975.88 553.43 976.006 553.51 976.082 553.613Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M1096.2 504.734C1096.54 505.211 1095.81 505.672 1095.05 505.458C1094.9 505.423 1094.77 505.342 1094.68 505.227C1094.34 504.75 1095.07 504.289 1095.83 504.503C1096 504.551 1096.12 504.631 1096.2 504.734Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M853.675 616.89C854.017 617.367 853.283 617.829 852.523 617.614C852.379 617.579 852.25 617.498 852.156 617.383C851.814 616.906 852.549 616.445 853.308 616.66C853.452 616.694 853.581 616.775 853.675 616.89ZM804.181 461.627C804.535 462.104 803.79 462.565 803.032 462.35C802.888 462.316 802.759 462.235 802.666 462.12C802.325 461.642 803.057 461.181 803.815 461.396C803.979 461.444 804.105 461.523 804.181 461.627ZM309.512 668.375C309.853 668.852 309.12 669.313 308.363 669.098C308.219 669.064 308.09 668.983 307.996 668.868C307.643 668.391 308.388 667.929 309.145 668.144C309.289 668.179 309.418 668.26 309.512 668.375ZM1150.51 518.548C1150.17 519.026 1150.9 519.487 1151.66 519.272C1151.8 519.235 1151.93 519.155 1152.03 519.042C1152.37 518.564 1151.63 518.103 1150.87 518.318C1150.71 518.366 1150.58 518.445 1150.51 518.548ZM511.011 534.511C510.67 534.988 511.403 535.45 512.16 535.235C512.304 535.2 512.433 535.119 512.527 535.004C512.88 534.527 512.135 534.066 511.378 534.281C511.234 534.315 511.105 534.396 511.011 534.511ZM991.478 516.421C991.137 516.899 991.871 517.36 992.631 517.145C992.775 517.11 992.904 517.029 992.998 516.915C993.34 516.437 992.605 515.976 991.846 516.191C991.702 516.226 991.572 516.306 991.478 516.421ZM439.797 625.804C439.456 626.281 440.188 626.743 440.946 626.528C441.09 626.493 441.219 626.412 441.312 626.297C441.665 625.82 440.92 625.359 440.163 625.574C440.019 625.608 439.89 625.689 439.797 625.804ZM192.951 638.365C192.61 638.842 193.342 639.303 194.1 639.089C194.244 639.054 194.372 638.973 194.466 638.858C194.82 638.381 194.075 637.92 193.317 638.134C193.173 638.169 193.044 638.25 192.951 638.365ZM316.389 553.615C316.047 554.092 316.781 554.553 317.541 554.339C317.685 554.304 317.814 554.223 317.908 554.108C318.25 553.631 317.515 553.17 316.756 553.384C316.612 553.418 316.483 553.5 316.389 553.615ZM110.061 684.315C109.707 684.791 110.452 685.259 111.21 685.037C111.354 685.002 111.482 684.921 111.576 684.807C111.917 684.331 111.185 683.871 110.427 684.085C110.283 684.12 110.155 684.201 110.061 684.315Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M169.258 706.179C168.905 706.656 169.65 707.118 170.407 706.903C170.551 706.868 170.68 706.787 170.773 706.672C171.114 706.195 170.382 705.734 169.624 705.949C169.48 705.983 169.351 706.064 169.258 706.179Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M465.605 682.029C465.264 682.506 465.997 682.967 466.754 682.753C466.898 682.718 467.026 682.637 467.12 682.522C467.474 682.045 466.729 681.584 465.971 681.798C465.827 681.833 465.699 681.914 465.605 682.029ZM355.818 698.226C355.477 698.703 356.209 699.165 356.967 698.95C357.111 698.915 357.24 698.834 357.333 698.719C357.687 698.242 356.942 697.781 356.184 697.996C356.04 698.03 355.911 698.111 355.818 698.226ZM648.933 530.453C648.592 530.93 649.326 531.391 650.086 531.176C650.23 531.142 650.359 531.061 650.453 530.946C650.795 530.469 650.06 530.007 649.301 530.222C649.156 530.257 649.027 530.338 648.933 530.453ZM937.342 504.734C937 505.211 937.734 505.672 938.494 505.458C938.638 505.423 938.767 505.342 938.861 505.227C939.203 504.75 938.469 504.289 937.709 504.503C937.565 504.538 937.436 504.619 937.342 504.734Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M1052.38 473.92C1052.04 474.397 1052.78 474.858 1053.54 474.643C1053.7 474.595 1053.83 474.516 1053.9 474.413C1054.25 473.935 1053.51 473.474 1052.75 473.689C1052.61 473.726 1052.48 473.807 1052.38 473.92ZM849.371 499.422C849.029 499.899 849.763 500.36 850.523 500.145C850.667 500.11 850.796 500.03 850.89 499.915C851.232 499.437 850.498 498.976 849.738 499.191C849.594 499.226 849.465 499.307 849.371 499.422Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M918.734 462.228C918.393 462.705 919.126 463.167 919.883 462.952C920.027 462.917 920.156 462.836 920.249 462.721C920.603 462.244 919.858 461.783 919.1 461.998C918.956 462.032 918.827 462.113 918.734 462.228ZM348.341 618.693C348.001 619.17 348.733 619.631 349.491 619.417C349.635 619.382 349.763 619.301 349.857 619.186C350.21 618.709 349.465 618.248 348.708 618.462C348.564 618.497 348.435 618.578 348.341 618.693ZM911.79 662C912.144 662.477 911.399 662.938 910.641 662.723C910.497 662.689 910.369 662.608 910.275 662.493C909.934 662.016 910.667 661.554 911.424 661.769C911.568 661.803 911.697 661.885 911.79 662ZM1198.24 585.494C1198.59 585.971 1197.85 586.432 1197.09 586.217C1196.95 586.18 1196.82 586.1 1196.72 585.987C1196.38 585.51 1197.12 585.048 1197.87 585.263C1198.02 585.297 1198.15 585.378 1198.24 585.494Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M791.396 590.55C791.749 591.028 791.004 591.489 790.247 591.274C790.103 591.239 789.974 591.158 789.881 591.043C789.54 590.566 790.272 590.105 791.03 590.32C791.174 590.355 791.302 590.435 791.396 590.55Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M824.326 621.595C824.667 622.072 823.935 622.534 823.177 622.319C823.033 622.284 822.904 622.203 822.811 622.088C822.457 621.611 823.202 621.15 823.96 621.365C824.124 621.412 824.25 621.492 824.326 621.595ZM1015.7 553.095C1016.04 553.572 1015.3 554.034 1014.55 553.819C1014.4 553.785 1014.27 553.704 1014.18 553.588C1013.83 553.111 1014.57 552.65 1015.33 552.865C1015.49 552.912 1015.62 552.992 1015.7 553.095ZM730.771 700.841C731.112 701.319 730.38 701.78 729.622 701.565C729.478 701.53 729.349 701.449 729.256 701.334C728.903 700.857 729.648 700.396 730.405 700.611C730.549 700.646 730.677 700.726 730.771 700.841ZM1066.46 602.491C1066.11 602.967 1066.85 603.435 1067.61 603.213C1067.75 603.176 1067.88 603.096 1067.98 602.983C1068.32 602.507 1067.59 602.047 1066.83 602.261C1066.68 602.295 1066.55 602.376 1066.46 602.491ZM861.75 697.066C861.409 697.543 862.141 698.004 862.899 697.79C863.043 697.755 863.171 697.674 863.265 697.559C863.619 697.082 862.874 696.621 862.116 696.835C861.972 696.87 861.843 696.951 861.75 697.066ZM960.58 673.839C960.227 674.317 960.972 674.778 961.729 674.563C961.873 674.528 962.002 674.448 962.096 674.333C962.437 673.855 961.704 673.394 960.947 673.609C960.803 673.644 960.674 673.724 960.58 673.839ZM773.242 677.941C772.901 678.417 773.633 678.877 774.391 678.663C774.535 678.628 774.663 678.547 774.757 678.433C775.111 677.957 774.366 677.489 773.608 677.711C773.464 677.746 773.336 677.827 773.242 677.941ZM1091.42 564.75C1091.08 565.227 1091.82 565.688 1092.58 565.473C1092.74 565.426 1092.87 565.346 1092.94 565.243C1093.28 564.766 1092.55 564.304 1091.79 564.519C1091.65 564.556 1091.52 564.637 1091.42 564.75ZM385.823 655.625C385.469 656.102 386.214 656.563 386.972 656.348C387.116 656.314 387.245 656.233 387.338 656.118C387.679 655.641 386.946 655.179 386.189 655.394C386.045 655.429 385.916 655.51 385.823 655.625ZM732.637 500.482C732.283 500.959 733.028 501.42 733.786 501.206C733.93 501.171 734.059 501.09 734.152 500.975C734.493 500.498 733.761 500.037 733.003 500.251C732.859 500.286 732.731 500.367 732.637 500.482Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M568.537 505.797C568.184 506.274 568.929 506.735 569.686 506.52C569.83 506.485 569.959 506.405 570.053 506.29C570.394 505.812 569.661 505.351 568.904 505.566C568.76 505.601 568.631 505.682 568.537 505.797Z" fill="white" fill-opacity="0.5"/>
|
||||
<path d="M725.873 539.8C725.52 540.278 726.265 540.739 727.022 540.524C727.166 540.489 727.295 540.408 727.389 540.293C727.73 539.816 726.997 539.355 726.24 539.57C726.096 539.605 725.967 539.685 725.873 539.8ZM528.207 624.648C527.854 625.125 528.599 625.586 529.356 625.372C529.5 625.337 529.629 625.256 529.723 625.141C530.064 624.664 529.331 624.203 528.574 624.417C528.43 624.452 528.301 624.533 528.207 624.648ZM723.971 626.861C723.617 627.338 724.362 627.799 725.12 627.585C725.264 627.55 725.392 627.469 725.486 627.354C725.827 626.877 725.095 626.416 724.337 626.63C724.193 626.665 724.065 626.746 723.971 626.861ZM610.035 562.759C609.693 563.237 610.428 563.698 611.187 563.483C611.331 563.448 611.46 563.367 611.554 563.252C611.896 562.775 611.162 562.314 610.402 562.529C610.258 562.563 610.129 562.644 610.035 562.759Z" fill="white" fill-opacity="0.24"/>
|
||||
<path d="M1071 641.929C1070.64 642.406 1071.39 642.868 1072.15 642.653C1072.31 642.605 1072.44 642.526 1072.51 642.422C1072.85 641.945 1072.12 641.484 1071.36 641.699C1071.2 641.746 1071.07 641.826 1071 641.929ZM337.199 581.738C336.857 582.215 337.592 582.676 338.351 582.462C338.495 582.427 338.624 582.346 338.718 582.231C339.06 581.754 338.326 581.293 337.566 581.507C337.422 581.542 337.293 581.623 337.199 581.738Z" fill="white" fill-opacity="0.5"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_14152_169633">
|
||||
<rect width="1200" height="720" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 33 KiB |
BIN
002_source/cms/public/assets/home-cta-dark.png
Normal file
After Width: | Height: | Size: 163 KiB |
BIN
002_source/cms/public/assets/home-cta-light.png
Normal file
After Width: | Height: | Size: 158 KiB |
BIN
002_source/cms/public/assets/home-feature-1-dark.png
Normal file
After Width: | Height: | Size: 120 KiB |
BIN
002_source/cms/public/assets/home-feature-1-light.png
Normal file
After Width: | Height: | Size: 149 KiB |
BIN
002_source/cms/public/assets/home-feature-2-dark.png
Normal file
After Width: | Height: | Size: 140 KiB |
BIN
002_source/cms/public/assets/home-feature-2-light.png
Normal file
After Width: | Height: | Size: 139 KiB |
80
002_source/cms/public/assets/home-feature-3.svg
Normal file
@@ -0,0 +1,80 @@
|
||||
<svg width="528" height="517" viewBox="0 0 528 517" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_14204_43823)">
|
||||
<g clip-path="url(#clip1_14204_43823)">
|
||||
<path d="M522.136 162.989L244.955 2.95976C242.124 1.32513 239.829 2.65026 239.829 5.91952V230.426C239.829 233.695 242.124 237.671 244.955 239.305L522.136 399.335C524.967 400.969 527.262 399.644 527.262 396.375V171.868C527.262 168.599 524.967 164.624 522.136 162.989Z" fill="#74BFFF"/>
|
||||
<path d="M522.135 163.2L244.955 3.1707C242.225 1.59445 240.012 2.87226 240.012 6.02476V230.531C240.012 233.684 242.225 237.517 244.955 239.093L522.135 399.123C524.866 400.699 527.079 399.421 527.079 396.269V171.762C527.079 168.61 524.866 164.776 522.135 163.2Z" stroke="white" stroke-opacity="0.14" stroke-width="0.578"/>
|
||||
<path d="M252.27 25.5667C253.884 26.4984 255.192 25.7431 255.192 23.8798C255.192 22.0165 253.884 19.7508 252.27 18.8191C250.657 17.8875 249.349 18.6427 249.349 20.506C249.349 22.3693 250.657 24.6351 252.27 25.5667Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M261.043 30.6326C262.657 31.5643 263.965 30.809 263.965 28.9457C263.965 27.0824 262.657 24.8167 261.043 23.885C259.43 22.9534 258.122 23.7086 258.122 25.5719C258.122 27.4352 259.43 29.701 261.043 30.6326Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M269.817 35.6978C271.431 36.6295 272.739 35.8742 272.739 34.0109C272.739 32.1476 271.431 29.8819 269.817 28.9502C268.203 28.0186 266.895 28.7738 266.895 30.6371C266.895 32.5004 268.203 34.7662 269.817 35.6978Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M509.38 167.455L232.199 7.42558C229.368 5.79095 227.073 7.11608 227.073 10.3853V234.892C227.073 238.161 229.368 242.136 232.199 243.771L509.38 403.8C512.211 405.435 514.506 404.11 514.506 400.841V176.334C514.506 173.065 512.211 169.09 509.38 167.455Z" fill="#74BFFF"/>
|
||||
<path d="M227.438 10.596C227.438 7.32681 229.733 6.00202 232.564 7.63625L509.378 167.456C512.209 169.09 514.504 173.065 514.504 176.335V200.434L227.438 34.6954V10.596Z" fill="#8CCAFF"/>
|
||||
<mask id="mask0_14204_43823" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="227" y="6" width="288" height="195">
|
||||
<path d="M227.438 10.596C227.438 7.32681 229.733 6.00202 232.564 7.63625L509.378 167.456C512.209 169.09 514.504 173.065 514.504 176.335V200.434L227.438 34.6954V10.596Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_14204_43823)">
|
||||
<path d="M514.504 200.856L227.438 35.1183V34.2726L514.504 200.01V200.856Z" fill="white" fill-opacity="0.34"/>
|
||||
</g>
|
||||
<path d="M239.514 30.0328C241.128 30.9644 242.436 30.2092 242.436 28.3459C242.436 26.4826 241.128 24.2168 239.514 23.2852C237.9 22.3535 236.592 23.1088 236.592 24.9721C236.592 26.8354 237.9 29.1011 239.514 30.0328Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M248.287 35.0978C249.901 36.0295 251.209 35.2742 251.209 33.4109C251.209 31.5476 249.901 29.2819 248.287 28.3502C246.673 27.4186 245.365 28.1738 245.365 30.0371C245.365 31.9004 246.673 34.1662 248.287 35.0978Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M257.061 40.163C258.675 41.0947 259.983 40.3394 259.983 38.4761C259.983 36.6128 258.675 34.3471 257.061 33.4154C255.447 32.4838 254.139 33.239 254.139 35.1023C254.139 36.9656 255.447 39.2314 257.061 40.163Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M228.667 6.69776L241.321 2.47921C242.401 2.11929 243.583 2.2363 244.571 2.80094L285.433 26.1513L523.98 164.56L511.543 170.3L228.667 6.69776Z" fill="#77BCF7"/>
|
||||
<path d="M526.851 168.386L523.662 164.559L511.862 169.662V404.382L527.489 398.96L526.851 168.386Z" fill="#74BFFF"/>
|
||||
</g>
|
||||
<path d="M433.271 197.18L430.082 193.352L418.282 198.456V433.175L433.909 427.753L433.271 197.18Z" fill="#FFB3A3"/>
|
||||
<path d="M427.7 191.783L150.52 31.7536C147.689 30.119 145.394 31.4441 145.394 34.7133V259.22C145.394 262.489 147.689 266.464 150.52 268.099L427.7 428.128C430.532 429.763 432.827 428.438 432.827 425.169V200.662C432.827 197.393 430.532 193.418 427.7 191.783Z" fill="#FFB3A3"/>
|
||||
<path d="M427.7 191.993L150.52 31.9639C147.79 30.3877 145.577 31.6655 145.577 34.818V259.324C145.577 262.477 147.79 266.31 150.52 267.887L427.7 427.916C430.431 429.492 432.644 428.214 432.644 425.062V200.555C432.644 197.403 430.431 193.569 427.7 191.993Z" stroke="white" stroke-opacity="0.14" stroke-width="0.578"/>
|
||||
<path d="M414.945 196.247L137.764 36.2182C134.933 34.5836 132.638 35.9087 132.638 39.1779V263.684C132.638 266.954 134.933 270.929 137.764 272.564L414.945 432.593C417.776 434.228 420.071 432.902 420.071 429.633V205.127C420.071 201.857 417.776 197.882 414.945 196.247Z" fill="#FFB3A3"/>
|
||||
<path d="M133.003 39.3892C133.003 36.12 135.298 34.7952 138.129 36.4295L414.943 196.248C417.774 197.883 420.069 201.858 420.069 205.127V229.226L133.003 63.4886V39.3892Z" fill="#FFC2B5"/>
|
||||
<mask id="mask1_14204_43823" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="133" y="35" width="288" height="195">
|
||||
<path d="M133.003 39.3892C133.003 36.12 135.298 34.7952 138.129 36.4295L414.943 196.248C417.774 197.883 420.069 201.858 420.069 205.127V229.226L133.003 63.4886V39.3892Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask1_14204_43823)">
|
||||
<path d="M420.069 229.649L133.003 63.9115V63.0658L420.069 228.803V229.649Z" fill="white" fill-opacity="0.34"/>
|
||||
</g>
|
||||
<path d="M145.08 58.8251C146.693 59.7568 148.001 59.0015 148.001 57.1382C148.001 55.2749 146.693 53.0092 145.08 52.0775C143.466 51.1459 142.158 51.9011 142.158 53.7644C142.158 55.6277 143.466 57.8935 145.08 58.8251Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M153.853 63.8911C155.467 64.8227 156.775 64.0674 156.775 62.2041C156.775 60.3408 155.467 58.0751 153.853 57.1434C152.239 56.2118 150.931 56.967 150.931 58.8303C150.931 60.6936 152.239 62.9594 153.853 63.8911Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M162.626 68.9562C164.24 69.8879 165.548 69.1326 165.548 67.2693C165.548 65.406 164.24 63.1403 162.626 62.2086C161.012 61.277 159.704 62.0322 159.704 63.8955C159.704 65.7588 161.012 68.0246 162.626 68.9562Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M134.232 35.4918L146.887 31.2733C147.966 30.9134 149.148 31.0304 150.136 31.595L190.999 54.9453L429.545 193.353L417.108 199.093L134.232 35.4918Z" fill="#FFA694"/>
|
||||
<path d="M361.381 233.555L84.2007 73.5259C81.3694 71.8913 79.0742 73.2164 79.0742 76.4857V300.992C79.0742 304.261 81.3694 308.237 84.2007 309.871L361.381 469.9C364.212 471.535 366.507 470.21 366.507 466.941V242.434C366.507 239.165 364.212 235.19 361.381 233.555Z" fill="#C78FFF"/>
|
||||
<path d="M361.382 233.766L84.2012 73.7371C81.471 72.1609 79.2578 73.4387 79.2578 76.5912V301.097C79.2578 304.25 81.471 308.083 84.2012 309.66L361.382 469.689C364.112 471.265 366.325 469.987 366.325 466.835V242.328C366.325 239.176 364.112 235.343 361.382 233.766Z" stroke="white" stroke-opacity="0.14" stroke-width="0.578"/>
|
||||
<path d="M91.5165 96.134C93.1302 97.0656 94.4384 96.3104 94.4384 94.4471C94.4384 92.5838 93.1302 90.318 91.5165 89.3864C89.9029 88.4547 88.5947 89.21 88.5947 91.0733C88.5947 92.9366 89.9029 95.2023 91.5165 96.134Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M100.289 101.199C101.903 102.131 103.211 101.375 103.211 99.5121C103.211 97.6488 101.903 95.3831 100.289 94.4514C98.6758 93.5198 97.3677 94.275 97.3677 96.1383C97.3677 98.0016 98.6758 100.267 100.289 101.199Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M109.063 106.264C110.677 107.196 111.985 106.44 111.985 104.577C111.985 102.714 110.677 100.448 109.063 99.5165C107.449 98.5848 106.141 99.3401 106.141 101.203C106.141 103.067 107.449 105.332 109.063 106.264Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M348.626 238.02L71.4453 77.9914C68.6141 76.3567 66.3188 77.6819 66.3188 80.9511V305.458C66.3188 308.727 68.6141 312.702 71.4453 314.337L348.626 474.366C351.457 476.001 353.752 474.675 353.752 471.406V246.9C353.752 243.631 351.457 239.655 348.626 238.02Z" fill="#C78FFF"/>
|
||||
<path d="M66.6846 81.1624C66.6846 77.8932 68.9794 76.5684 71.8104 78.2027L348.624 238.021C351.455 239.656 353.751 243.631 353.751 246.9V271L66.6846 105.262V81.1624Z" fill="#CF9EFF"/>
|
||||
<mask id="mask2_14204_43823" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="66" y="77" width="288" height="194">
|
||||
<path d="M66.6846 81.1624C66.6846 77.8932 68.9794 76.5684 71.8104 78.2027L348.624 238.021C351.455 239.656 353.751 243.631 353.751 246.9V271L66.6846 105.262V81.1624Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask2_14204_43823)">
|
||||
<path d="M353.751 271.422L66.6846 105.685V104.839L353.751 270.577V271.422Z" fill="white" fill-opacity="0.34"/>
|
||||
</g>
|
||||
<path d="M78.7607 100.598C80.3744 101.53 81.6825 100.775 81.6825 98.9114C81.6825 97.0481 80.3744 94.7824 78.7607 93.8507C77.147 92.9191 75.8389 93.6743 75.8389 95.5376C75.8389 97.4009 77.147 99.6667 78.7607 100.598Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M87.5341 105.663C89.1478 106.595 90.4559 105.84 90.4559 103.976C90.4559 102.113 89.1478 99.8474 87.5341 98.9158C85.9204 97.9841 84.6123 98.7394 84.6123 100.603C84.6123 102.466 85.9204 104.732 87.5341 105.663Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M96.3071 110.729C97.9207 111.661 99.2289 110.906 99.2289 109.042C99.2289 107.179 97.9207 104.913 96.3071 103.982C94.6934 103.05 93.3853 103.805 93.3853 105.669C93.3853 107.532 94.6934 109.798 96.3071 110.729Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M67.9136 77.2642L80.568 73.0456C81.6476 72.6857 82.8294 72.8027 83.8176 73.3673L124.68 96.7177L363.227 235.125L350.789 240.866L67.9136 77.2642Z" fill="#C78FFF"/>
|
||||
<path d="M366.098 238.952L362.909 235.125L351.109 240.228V474.947L366.736 469.526L366.098 238.952Z" fill="#C78FFF"/>
|
||||
<path d="M295.063 272.802L17.8828 112.773C15.0516 111.139 12.7563 112.464 12.7563 115.733V340.239C12.7563 343.509 15.0516 347.484 17.8828 349.119L295.063 509.148C297.894 510.783 300.19 509.457 300.19 506.188V281.682C300.19 278.412 297.894 274.437 295.063 272.802Z" fill="#A1AEE5"/>
|
||||
<path d="M295.063 273.013L17.8824 112.984C15.1522 111.408 12.939 112.686 12.939 115.838V340.345C12.939 343.497 15.1522 347.331 17.8824 348.907L295.063 508.936C297.793 510.512 300.006 509.234 300.006 506.082V281.576C300.006 278.423 297.793 274.59 295.063 273.013Z" stroke="white" stroke-opacity="0.14" stroke-width="0.578"/>
|
||||
<path d="M282.307 277.267L5.12648 117.238C2.2952 115.603 0 116.928 0 120.197V344.704C0 347.973 2.2952 351.948 5.12648 353.583L282.307 513.612C285.138 515.247 287.433 513.922 287.433 510.653V286.146C287.433 282.877 285.138 278.901 282.307 277.267Z" fill="#7A7ABA"/>
|
||||
<path d="M0.366699 120.409C0.366699 117.14 2.6615 115.815 5.49251 117.449L282.306 277.268C285.137 278.902 287.433 282.877 287.433 286.147V310.246L0.366699 144.508V120.409Z" fill="#9B9BD8"/>
|
||||
<mask id="mask3_14204_43823" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="116" width="288" height="195">
|
||||
<path d="M0.366699 120.409C0.366699 117.14 2.6615 115.815 5.49251 117.449L282.306 277.268C285.137 278.902 287.433 282.877 287.433 286.147V310.246L0.366699 144.508V120.409Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask3_14204_43823)">
|
||||
<path d="M287.433 310.669L0.366699 144.931V144.086L287.433 309.823V310.669Z" fill="white" fill-opacity="0.34"/>
|
||||
</g>
|
||||
<path d="M12.4418 139.846C14.0555 140.777 15.3637 140.022 15.3637 138.159C15.3637 136.295 14.0555 134.03 12.4418 133.098C10.8282 132.166 9.52002 132.922 9.52002 134.785C9.52002 136.648 10.8282 138.914 12.4418 139.846Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M21.2153 144.91C22.8289 145.842 24.1371 145.087 24.1371 143.224C24.1371 141.36 22.8289 139.095 21.2153 138.163C19.6016 137.231 18.2935 137.986 18.2935 139.85C18.2935 141.713 19.6016 143.979 21.2153 144.91Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M29.9882 149.976C31.6019 150.907 32.91 150.152 32.91 148.289C32.91 146.425 31.6019 144.16 29.9882 143.228C28.3745 142.296 27.0664 143.052 27.0664 144.915C27.0664 146.778 28.3745 149.044 29.9882 149.976Z" fill="white" fill-opacity="0.4"/>
|
||||
<path d="M1.59473 116.511L14.2491 112.292C15.3288 111.932 16.5106 112.049 17.4987 112.614L58.3613 135.964L296.908 274.372L284.471 280.113L1.59473 116.511Z" fill="#7D7DBD"/>
|
||||
<path d="M299.778 278.198L296.589 274.372L284.79 279.474V514.194L300.416 508.773L299.778 278.198Z" fill="#7A7ABA"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_14204_43823">
|
||||
<rect width="528" height="516.893" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1_14204_43823">
|
||||
<rect width="328.942" height="426.74" fill="white" transform="translate(198.547)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
BIN
002_source/cms/public/assets/home-feature-4-dark.png
Normal file
After Width: | Height: | Size: 141 KiB |
BIN
002_source/cms/public/assets/home-feature-4-light.png
Normal file
After Width: | Height: | Size: 119 KiB |
BIN
002_source/cms/public/assets/home-hero-dark.png
Normal file
After Width: | Height: | Size: 355 KiB |
BIN
002_source/cms/public/assets/home-hero-light.png
Normal file
After Width: | Height: | Size: 343 KiB |
41
002_source/cms/public/assets/home-rectangles.svg
Normal file
@@ -0,0 +1,41 @@
|
||||
<svg width="1920" height="914" viewBox="0 0 1920 914" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_14152_169617)">
|
||||
<mask id="mask0_14152_169617" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="1099" y="-1" width="822" height="914">
|
||||
<path d="M1190.88 456.258H1282.08M1190.88 456.258V547.414M1190.88 456.258H1099.68M1190.88 456.258V365.102M1282.08 456.258V547.414M1282.08 456.258V365.102M1282.08 456.258H1373.28M1282.08 547.414H1190.88M1282.08 547.414V638.569M1282.08 547.414H1373.28M1190.88 547.414H1099.68M1190.88 547.414V638.569M1099.68 456.258V547.414M1099.68 456.258V365.102M1099.68 547.414V638.569M1282.08 638.569H1190.88M1282.08 638.569V729.725M1282.08 638.569H1373.28M1190.88 638.569V729.725M1190.88 638.569H1099.68M1282.08 729.725H1190.88M1282.08 729.725V820.881M1282.08 729.725H1373.28M1190.88 729.725V820.881M1190.88 729.725H1099.68M1282.08 820.881H1190.88M1282.08 820.881V912.036M1282.08 820.881H1373.28M1190.88 820.881V912.036M1190.88 820.881H1099.68M1282.08 912.036H1190.88M1282.08 912.036H1373.28M1190.88 912.036H1099.68V820.881M1099.68 638.569V729.725M1099.68 729.725V820.881M1190.88 365.102H1282.08M1190.88 365.102H1099.68M1190.88 365.102V273.947M1282.08 365.102V273.947M1282.08 365.102H1373.28M1099.68 365.102V273.947M1190.88 273.947H1282.08M1190.88 273.947H1099.68M1190.88 273.947V182.791M1282.08 273.947V182.791M1282.08 273.947H1373.28M1099.68 273.947V182.791M1190.88 182.791H1282.08M1190.88 182.791H1099.68M1190.88 182.791V91.6354M1282.08 182.791V91.6354M1282.08 182.791H1373.28M1099.68 182.791V91.6354M1190.88 91.6354H1282.08M1190.88 91.6354H1099.68M1190.88 91.6354V0.479767M1282.08 91.6354V0.479767M1282.08 91.6354H1373.28M1099.68 91.6354V0.479767H1190.88M1190.88 0.479767H1282.08M1282.08 0.479767H1373.28M1373.28 456.258V547.414M1373.28 456.258V365.102M1373.28 456.258H1464.48M1373.28 547.414V638.569M1373.28 547.414H1464.48M1373.28 638.569V729.725M1373.28 638.569H1464.48M1373.28 729.725V820.881M1373.28 729.725H1464.48M1373.28 820.881V912.036M1373.28 820.881H1464.48M1373.28 912.036H1464.48M1373.28 365.102V273.947M1373.28 365.102H1464.48M1373.28 273.947V182.791M1373.28 273.947H1464.48M1373.28 182.791V91.6354M1373.28 182.791H1464.48M1373.28 91.6354V0.479767M1373.28 91.6354H1464.48M1373.28 0.479767H1464.48M1464.48 456.258V547.414M1464.48 456.258V365.102M1464.48 456.258H1555.68M1464.48 547.414V638.569M1464.48 547.414H1555.68M1464.48 638.569V729.725M1464.48 638.569H1555.68M1464.48 729.725V820.881M1464.48 729.725H1555.68M1464.48 820.881V912.036M1464.48 820.881H1555.68M1464.48 912.036H1555.68M1555.68 638.569V729.725M1555.68 638.569H1646.88M1555.68 638.569V547.414M1555.68 729.725H1646.88M1555.68 729.725V820.881M1646.88 638.569V729.725M1646.88 638.569H1738.08M1646.88 638.569V547.414M1646.88 729.725H1738.08M1646.88 729.725V820.881M1738.08 638.569V729.725M1738.08 638.569H1829.28M1738.08 638.569V547.414M1738.08 729.725H1829.28M1738.08 729.725V820.881M1829.28 638.569V729.725M1829.28 638.569H1920.48M1829.28 638.569V547.414M1829.28 729.725H1920.48M1829.28 729.725V820.881M1920.48 638.569V729.725M1920.48 638.569V547.414M1920.48 729.725V820.881M1555.68 547.414H1646.88M1555.68 547.414V456.258M1646.88 547.414H1738.08M1646.88 547.414V456.258M1738.08 547.414H1829.28M1738.08 547.414V456.258M1829.28 547.414H1920.48M1829.28 547.414V456.258M1920.48 547.414V456.258M1555.68 820.881H1646.88M1555.68 820.881V912.036M1646.88 820.881H1738.08M1646.88 820.881V912.036M1738.08 820.881H1829.28M1738.08 820.881V912.036M1829.28 820.881H1920.48M1829.28 820.881V912.036M1920.48 820.881V912.036H1829.28M1555.68 912.036H1646.88M1646.88 912.036H1738.08M1738.08 912.036H1829.28M1464.48 365.102V273.947M1464.48 365.102H1555.68M1464.48 273.947V182.791M1464.48 273.947H1555.68M1464.48 182.791V91.6354M1464.48 182.791H1555.68M1464.48 91.6354V0.479767M1464.48 91.6354H1555.68M1464.48 0.479767H1555.68M1555.68 456.258H1646.88M1555.68 456.258V365.102M1646.88 456.258H1738.08M1646.88 456.258V365.102M1738.08 456.258H1829.28M1738.08 456.258V365.102M1829.28 456.258H1920.48M1829.28 456.258V365.102M1920.48 456.258V365.102M1555.68 365.102H1646.88M1555.68 365.102V273.947M1646.88 365.102H1738.08M1646.88 365.102V273.947M1738.08 365.102H1829.28M1738.08 365.102V273.947M1829.28 365.102H1920.48M1829.28 365.102V273.947M1920.48 365.102V273.947M1555.68 273.947H1646.88M1555.68 273.947V182.791M1646.88 273.947H1738.08M1646.88 273.947V182.791M1738.08 273.947H1829.28M1738.08 273.947V182.791M1829.28 273.947H1920.48M1829.28 273.947V182.791M1920.48 273.947V182.791M1555.68 182.791H1646.88M1555.68 182.791V91.6354M1646.88 182.791H1738.08M1646.88 182.791V91.6354M1738.08 182.791H1829.28M1738.08 182.791V91.6354M1829.28 182.791H1920.48M1829.28 182.791V91.6354M1920.48 182.791V91.6354M1555.68 91.6354H1646.88M1555.68 91.6354V0.479767M1646.88 91.6354H1738.08M1646.88 91.6354V0.479767M1738.08 91.6354H1829.28M1738.08 91.6354V0.479767M1829.28 91.6354H1920.48M1829.28 91.6354V0.479767M1920.48 91.6354V0.479767H1829.28M1555.68 0.479767H1646.88M1646.88 0.479767H1738.08M1738.08 0.479767H1829.28" stroke="#151515"/>
|
||||
<path d="M1373.76 274.427H1464V364.623H1373.76V274.427ZM1282.56 456.738H1372.8V546.934H1282.56V456.738ZM1464.96 547.894H1555.2V638.09H1464.96V547.894Z" fill="#070707" fill-opacity="0.3"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_14152_169617)">
|
||||
<path d="M1560 1025.74C1901.44 1025.74 2178.24 764.975 2178.24 443.304C2178.24 121.633 1901.44 -139.132 1560 -139.132C1218.56 -139.132 941.76 121.633 941.76 443.304C941.76 764.975 1218.56 1025.74 1560 1025.74Z" fill="url(#paint0_radial_14152_169617)"/>
|
||||
<path d="M1387.2 576.68C1518.16 576.68 1624.32 478.946 1624.32 358.386C1624.32 237.825 1518.16 140.092 1387.2 140.092C1256.24 140.092 1150.08 237.825 1150.08 358.386C1150.08 478.946 1256.24 576.68 1387.2 576.68Z" fill="url(#paint1_radial_14152_169617)"/>
|
||||
</g>
|
||||
<mask id="mask1_14152_169617" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="-1" y="-1" width="822" height="914">
|
||||
<path d="M729.12 456.258H637.92M729.12 456.258V547.414M729.12 456.258H820.32M729.12 456.258V365.102M637.92 456.258V547.414M637.92 456.258V365.102M637.92 456.258H546.72M637.92 547.414H729.12M637.92 547.414V638.569M637.92 547.414H546.72M729.12 547.414H820.32M729.12 547.414V638.569M820.32 456.258V547.414M820.32 456.258V365.102M820.32 547.414V638.569M637.92 638.569H729.12M637.92 638.569V729.725M637.92 638.569H546.72M729.12 638.569V729.725M729.12 638.569H820.32M637.92 729.725H729.12M637.92 729.725V820.881M637.92 729.725H546.72M729.12 729.725V820.881M729.12 729.725H820.32M637.92 820.881H729.12M637.92 820.881V912.036M637.92 820.881H546.72M729.12 820.881V912.036M729.12 820.881H820.32M637.92 912.036H729.12M637.92 912.036H546.72M729.12 912.036H820.32V820.881M820.32 638.569V729.725M820.32 729.725V820.881M729.12 365.102H637.92M729.12 365.102H820.32M729.12 365.102V273.947M637.92 365.102V273.947M637.92 365.102H546.72M820.32 365.102V273.947M729.12 273.947H637.92M729.12 273.947H820.32M729.12 273.947V182.791M637.92 273.947V182.791M637.92 273.947H546.72M820.32 273.947V182.791M729.12 182.791H637.92M729.12 182.791H820.32M729.12 182.791V91.6354M637.92 182.791V91.6354M637.92 182.791H546.72M820.32 182.791V91.6354M729.12 91.6354H637.92M729.12 91.6354H820.32M729.12 91.6354V0.479767M637.92 91.6354V0.479767M637.92 91.6354H546.72M820.32 91.6354V0.479767H729.12M729.12 0.479767H637.92M637.92 0.479767H546.72M546.72 456.258V547.414M546.72 456.258V365.102M546.72 456.258H455.52M546.72 547.414V638.569M546.72 547.414H455.52M546.72 638.569V729.725M546.72 638.569H455.52M546.72 729.725V820.881M546.72 729.725H455.52M546.72 820.881V912.036M546.72 820.881H455.52M546.72 912.036H455.52M546.72 365.102V273.947M546.72 365.102H455.52M546.72 273.947V182.791M546.72 273.947H455.52M546.72 182.791V91.6354M546.72 182.791H455.52M546.72 91.6354V0.479767M546.72 91.6354H455.52M546.72 0.479767H455.52M455.52 456.258V547.414M455.52 456.258V365.102M455.52 456.258H364.32M455.52 547.414V638.569M455.52 547.414H364.32M455.52 638.569V729.725M455.52 638.569H364.32M455.52 729.725V820.881M455.52 729.725H364.32M455.52 820.881V912.036M455.52 820.881H364.32M455.52 912.036H364.32M364.32 638.569V729.725M364.32 638.569H273.12M364.32 638.569V547.414M364.32 729.725H273.12M364.32 729.725V820.881M273.12 638.569V729.725M273.12 638.569H181.92M273.12 638.569V547.414M273.12 729.725H181.92M273.12 729.725V820.881M181.92 638.569V729.725M181.92 638.569H90.72M181.92 638.569V547.414M181.92 729.725H90.72M181.92 729.725V820.881M90.72 638.569V729.725M90.72 638.569H-0.47998M90.72 638.569V547.414M90.72 729.725H-0.47998M90.72 729.725V820.881M-0.47998 638.569V729.725M-0.47998 638.569V547.414M-0.47998 729.725V820.881M364.32 547.414H273.12M364.32 547.414V456.258M273.12 547.414H181.92M273.12 547.414V456.258M181.92 547.414H90.72M181.92 547.414V456.258M90.72 547.414H-0.47998M90.72 547.414V456.258M-0.47998 547.414V456.258M364.32 820.881H273.12M364.32 820.881V912.036M273.12 820.881H181.92M273.12 820.881V912.036M181.92 820.881H90.72M181.92 820.881V912.036M90.72 820.881H-0.47998M90.72 820.881V912.036M-0.47998 820.881V912.036H90.72M364.32 912.036H273.12M273.12 912.036H181.92M181.92 912.036H90.72M455.52 365.102V273.947M455.52 365.102H364.32M455.52 273.947V182.791M455.52 273.947H364.32M455.52 182.791V91.6354M455.52 182.791H364.32M455.52 91.6354V0.479767M455.52 91.6354H364.32M455.52 0.479767H364.32M364.32 456.258H273.12M364.32 456.258V365.102M273.12 456.258H181.92M273.12 456.258V365.102M181.92 456.258H90.72M181.92 456.258V365.102M90.72 456.258H-0.47998M90.72 456.258V365.102M-0.47998 456.258V365.102M364.32 365.102H273.12M364.32 365.102V273.947M273.12 365.102H181.92M273.12 365.102V273.947M181.92 365.102H90.72M181.92 365.102V273.947M90.72 365.102H-0.47998M90.72 365.102V273.947M-0.47998 365.102V273.947M364.32 273.947H273.12M364.32 273.947V182.791M273.12 273.947H181.92M273.12 273.947V182.791M181.92 273.947H90.72M181.92 273.947V182.791M90.72 273.947H-0.47998M90.72 273.947V182.791M-0.47998 273.947V182.791M364.32 182.791H273.12M364.32 182.791V91.6354M273.12 182.791H181.92M273.12 182.791V91.6354M181.92 182.791H90.72M181.92 182.791V91.6354M90.72 182.791H-0.47998M90.72 182.791V91.6354M-0.47998 182.791V91.6354M364.32 91.6354H273.12M364.32 91.6354V0.479767M273.12 91.6354H181.92M273.12 91.6354V0.479767M181.92 91.6354H90.72M181.92 91.6354V0.479767M90.72 91.6354H-0.47998M90.72 91.6354V0.479767M-0.47998 91.6354V0.479767H90.72M364.32 0.479767H273.12M273.12 0.479767H181.92M181.92 0.479767H90.72" stroke="#151515"/>
|
||||
<path d="M546.24 274.427H456V364.623H546.24V274.427ZM637.44 456.738H547.2V546.934H637.44V456.738ZM455.04 547.894H364.8V638.09H455.04V547.894Z" fill="#070707" fill-opacity="0.3"/>
|
||||
</mask>
|
||||
<g mask="url(#mask1_14152_169617)">
|
||||
<path d="M360 1025.74C18.5556 1025.74 -258.24 764.975 -258.24 443.304C-258.24 121.633 18.5556 -139.132 360 -139.132C701.445 -139.132 978.24 121.633 978.24 443.304C978.24 764.975 701.445 1025.74 360 1025.74Z" fill="url(#paint2_radial_14152_169617)"/>
|
||||
<path d="M532.8 576.68C401.842 576.68 295.68 478.946 295.68 358.386C295.68 237.825 401.842 140.092 532.8 140.092C663.758 140.092 769.92 237.825 769.92 358.386C769.92 478.946 663.758 576.68 532.8 576.68Z" fill="url(#paint3_radial_14152_169617)"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<radialGradient id="paint0_radial_14152_169617" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(1560 443.304) rotate(90) scale(582.437 618.24)">
|
||||
<stop stop-color="white" stop-opacity="0.06"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_14152_169617" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(1387.2 358.386) rotate(90) scale(218.294 237.12)">
|
||||
<stop stop-color="white" stop-opacity="0.06"/>
|
||||
<stop offset="1" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint2_radial_14152_169617" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(360 443.304) rotate(90) scale(582.437 618.24)">
|
||||
<stop stop-color="white" stop-opacity="0.06"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint3_radial_14152_169617" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(532.8 358.386) rotate(90) scale(218.294 237.12)">
|
||||
<stop stop-color="white" stop-opacity="0.06"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<clipPath id="clip0_14152_169617">
|
||||
<rect width="1920" height="913.476" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
114
002_source/cms/public/assets/home-techs.svg
Normal file
@@ -0,0 +1,114 @@
|
||||
<svg width="766" height="557" viewBox="0 0 766 557" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_14132_13167)">
|
||||
<path d="M57.7247 80.2549H7.78058C6.8862 80.2548 6.00055 80.4308 5.17422 80.773C4.34788 81.1152 3.59705 81.6168 2.96459 82.2492C2.33213 82.8816 1.83044 83.6324 1.48815 84.4587C1.14586 85.285 0.969666 86.1706 0.969666 87.065V137.009C0.969666 138.815 1.68724 140.548 2.96454 141.825C4.24183 143.102 5.97421 143.82 7.78058 143.82H57.7247C59.5309 143.82 61.2631 143.102 62.5402 141.825C63.8173 140.548 64.5348 138.815 64.5348 137.009V87.065C64.5348 85.2588 63.8173 83.5266 62.5402 82.2495C61.263 80.9724 59.5309 80.2549 57.7247 80.2549Z" stroke="#B5BAC4" stroke-opacity="0.15" stroke-width="0.783"/>
|
||||
<path d="M446.899 79.9309H396.955C395.062 79.9309 393.247 80.6826 391.909 82.0207C390.571 83.3588 389.82 85.1736 389.82 87.0659V137.01C389.82 138.902 390.571 140.717 391.909 142.055C393.247 143.393 395.062 144.145 396.955 144.145H446.899C448.791 144.145 450.606 143.393 451.944 142.055C453.282 140.717 454.034 138.902 454.034 137.01V87.0659C454.034 85.1736 453.282 83.3588 451.944 82.0207C450.606 80.6826 448.791 79.9309 446.899 79.9309Z" fill="#B5BAC4" fill-opacity="0.04"/>
|
||||
<path d="M758.237 79.9309H708.297C707.359 79.9305 706.431 80.1147 705.565 80.4731C704.699 80.8315 703.913 81.357 703.25 82.0196C702.587 82.6822 702.061 83.4689 701.703 84.3348C701.344 85.2007 701.16 86.1287 701.16 87.0659V137.01C701.16 137.947 701.344 138.875 701.703 139.741C702.061 140.607 702.587 141.394 703.25 142.056C703.913 142.719 704.699 143.244 705.565 143.603C706.431 143.961 707.359 144.145 708.297 144.145H758.237C762.182 144.145 765.373 140.951 765.373 137.01V87.0659C765.373 86.1287 765.189 85.2007 764.831 84.3348C764.472 83.4689 763.946 82.6822 763.283 82.0196C762.621 81.357 761.834 80.8315 760.968 80.4731C760.102 80.1147 759.174 79.9305 758.237 79.9309Z" fill="#B5BAC4" fill-opacity="0.06"/>
|
||||
<path d="M57.7247 162.38H7.78058C5.88826 162.38 4.07346 163.132 2.73539 164.47C1.39732 165.808 0.645584 167.623 0.645584 169.515V219.46C0.645584 220.396 0.83015 221.324 1.18873 222.19C1.5473 223.055 2.07288 223.842 2.73544 224.504C3.398 225.167 4.18454 225.692 5.0502 226.051C5.91585 226.409 6.84364 226.594 7.78058 226.594H57.7247C58.6617 226.594 59.5895 226.409 60.4551 226.051C61.3208 225.692 62.1073 225.167 62.7699 224.504C63.4324 223.842 63.958 223.055 64.3166 222.19C64.6752 221.324 64.8597 220.396 64.8597 219.46V169.515C64.8597 167.623 64.108 165.808 62.7699 164.47C61.4319 163.132 59.6171 162.38 57.7247 162.38Z" fill="#B5BAC4" fill-opacity="0.12"/>
|
||||
<path d="M135.56 162.38H85.6157C83.7234 162.38 81.9086 163.132 80.5705 164.47C79.2324 165.808 78.4807 167.623 78.4807 169.515V219.46C78.4807 220.396 78.6653 221.324 79.0238 222.19C79.3824 223.055 79.908 223.842 80.5706 224.504C81.2331 225.167 82.0197 225.692 82.8853 226.051C83.751 226.409 84.6788 226.594 85.6157 226.594H135.56C136.497 226.594 137.425 226.409 138.29 226.051C139.156 225.692 139.942 225.167 140.605 224.504C141.268 223.842 141.793 223.055 142.152 222.19C142.51 221.324 142.695 220.396 142.695 219.46V169.515C142.695 167.623 141.943 165.808 140.605 164.47C139.267 163.132 137.452 162.38 135.56 162.38Z" fill="#B5BAC4" fill-opacity="0.05"/>
|
||||
<path d="M213.395 162.704H163.451C161.644 162.704 159.912 163.422 158.635 164.699C157.358 165.977 156.64 167.709 156.64 169.515V219.459C156.64 221.266 157.358 222.998 158.635 224.275C159.912 225.553 161.644 226.27 163.451 226.27H213.395C214.289 226.27 215.175 226.094 216.001 225.752C216.828 225.41 217.578 224.908 218.211 224.275C218.843 223.643 219.345 222.892 219.687 222.066C220.029 221.239 220.205 220.354 220.205 219.459V169.515C220.205 168.621 220.029 167.735 219.687 166.909C219.345 166.083 218.843 165.332 218.211 164.699C217.578 164.067 216.828 163.565 216.001 163.223C215.175 162.881 214.289 162.704 213.395 162.704Z" stroke="#B5BAC4" stroke-opacity="0.15" stroke-width="0.783"/>
|
||||
<path d="M369.064 162.38H319.12C317.228 162.38 315.413 163.132 314.075 164.47C312.737 165.808 311.985 167.623 311.985 169.515V219.46C311.985 220.396 312.17 221.324 312.528 222.19C312.887 223.055 313.413 223.842 314.075 224.504C314.738 225.167 315.524 225.692 316.39 226.051C317.256 226.409 318.183 226.594 319.12 226.594H369.064C370.001 226.594 370.929 226.409 371.795 226.051C372.66 225.692 373.447 225.167 374.11 224.504C374.772 223.842 375.298 223.055 375.656 222.19C376.015 221.324 376.199 220.396 376.199 219.46V169.515C376.199 167.623 375.448 165.808 374.11 164.47C372.771 163.132 370.957 162.38 369.064 162.38Z" fill="black" fill-opacity="0.16"/>
|
||||
<g clip-path="url(#clip1_14132_13167)">
|
||||
<path d="M342.995 171.39C342.896 171.399 342.582 171.43 342.299 171.453C335.772 172.041 329.659 175.563 325.787 180.975C323.631 183.985 322.252 187.399 321.731 191.015C321.547 192.277 321.525 192.649 321.525 194.361C321.525 196.072 321.547 196.445 321.731 197.707C322.98 206.336 329.12 213.586 337.448 216.272C338.939 216.752 340.511 217.08 342.299 217.278C342.995 217.354 346.005 217.354 346.701 217.278C349.787 216.936 352.401 216.173 354.979 214.857C355.374 214.655 355.451 214.601 355.397 214.556C355.361 214.529 353.677 212.269 351.655 209.538L347.981 204.575L343.377 197.761C340.844 194.015 338.759 190.952 338.741 190.952C338.723 190.947 338.706 193.975 338.697 197.671C338.683 204.144 338.679 204.404 338.598 204.557C338.481 204.777 338.391 204.867 338.202 204.966C338.059 205.038 337.933 205.051 337.255 205.051H336.478L336.271 204.921C336.136 204.836 336.037 204.723 335.97 204.593L335.876 204.391L335.885 195.385L335.898 186.375L336.037 186.199C336.109 186.105 336.262 185.984 336.37 185.925C336.554 185.836 336.626 185.827 337.403 185.827C338.319 185.827 338.472 185.862 338.71 186.123C338.777 186.195 341.27 189.95 344.253 194.473C347.235 198.996 351.314 205.173 353.317 208.204L356.956 213.716L357.14 213.595C358.77 212.534 360.495 211.025 361.86 209.453C364.767 206.116 366.64 202.046 367.269 197.707C367.453 196.445 367.475 196.072 367.475 194.361C367.475 192.649 367.453 192.277 367.269 191.015C366.02 182.386 359.88 175.136 351.552 172.45C350.083 171.974 348.52 171.646 346.768 171.448C346.337 171.404 343.368 171.354 342.995 171.39ZM352.401 185.288C352.616 185.395 352.792 185.602 352.855 185.818C352.89 185.934 352.899 188.432 352.89 194.06L352.877 202.136L351.453 199.953L350.025 197.77V191.899C350.025 188.104 350.043 185.97 350.07 185.867C350.142 185.615 350.299 185.418 350.514 185.301C350.698 185.207 350.766 185.198 351.471 185.198C352.136 185.198 352.253 185.207 352.401 185.288Z" fill="black"/>
|
||||
<path d="M356.731 213.815C356.574 213.913 356.525 213.981 356.664 213.904C356.763 213.846 356.925 213.725 356.898 213.72C356.884 213.72 356.808 213.765 356.731 213.815ZM356.421 214.017C356.341 214.08 356.341 214.084 356.439 214.035C356.493 214.008 356.538 213.976 356.538 213.967C356.538 213.931 356.516 213.94 356.421 214.017ZM356.197 214.151C356.116 214.214 356.116 214.219 356.215 214.169C356.269 214.142 356.314 214.111 356.314 214.102C356.314 214.066 356.291 214.075 356.197 214.151ZM355.972 214.286C355.891 214.349 355.891 214.354 355.99 214.304C356.044 214.277 356.089 214.246 356.089 214.237C356.089 214.201 356.067 214.21 355.972 214.286ZM355.631 214.466C355.46 214.556 355.469 214.592 355.64 214.506C355.716 214.466 355.775 214.425 355.775 214.416C355.775 214.385 355.77 214.39 355.631 214.466Z" fill="black"/>
|
||||
</g>
|
||||
<path d="M446.9 162.704H396.955C395.149 162.704 393.417 163.422 392.139 164.699C390.862 165.977 390.144 167.709 390.144 169.515V219.459C390.144 221.266 390.862 222.998 392.139 224.275C393.417 225.553 395.149 226.27 396.955 226.27H446.9C447.794 226.27 448.68 226.094 449.506 225.752C450.332 225.41 451.083 224.908 451.715 224.275C452.348 223.643 452.849 222.892 453.191 222.066C453.534 221.239 453.71 220.354 453.71 219.459V169.515C453.71 168.621 453.534 167.735 453.191 166.909C452.849 166.083 452.348 165.332 451.715 164.699C451.083 164.067 450.332 163.565 449.506 163.223C448.68 162.881 447.794 162.704 446.9 162.704Z" stroke="#B5BAC4" stroke-opacity="0.15" stroke-width="0.783"/>
|
||||
<path d="M524.735 162.38H474.791C472.899 162.38 471.084 163.132 469.746 164.47C468.408 165.808 467.656 167.623 467.656 169.515V219.46C467.656 220.396 467.841 221.324 468.199 222.19C468.558 223.055 469.084 223.842 469.746 224.504C470.409 225.167 471.195 225.692 472.061 226.051C472.927 226.409 473.854 226.594 474.791 226.594H524.735C525.672 226.594 526.6 226.409 527.466 226.051C528.331 225.692 529.118 225.167 529.78 224.504C530.443 223.842 530.968 223.055 531.327 222.19C531.685 221.324 531.87 220.396 531.87 219.46V169.515C531.87 168.578 531.685 167.651 531.327 166.785C530.968 165.919 530.443 165.133 529.78 164.47C529.118 163.808 528.331 163.282 527.466 162.924C526.6 162.565 525.672 162.38 524.735 162.38Z" fill="#B5BAC4" fill-opacity="0.03"/>
|
||||
<path d="M680.405 162.38H630.465C629.528 162.38 628.6 162.564 627.734 162.923C626.868 163.281 626.081 163.807 625.418 164.469C624.755 165.132 624.23 165.918 623.871 166.784C623.512 167.65 623.328 168.578 623.328 169.515V219.46C623.328 220.397 623.512 221.325 623.871 222.19C624.23 223.056 624.755 223.843 625.418 224.506C626.081 225.168 626.868 225.693 627.734 226.052C628.6 226.41 629.528 226.594 630.465 226.594H680.405C684.35 226.594 687.542 223.4 687.542 219.46V169.515C687.542 168.578 687.357 167.65 686.999 166.784C686.64 165.918 686.114 165.132 685.452 164.469C684.789 163.807 684.002 163.281 683.136 162.923C682.27 162.564 681.342 162.38 680.405 162.38Z" fill="#FB9C0C" fill-opacity="0.18"/>
|
||||
<path d="M135.56 244.829H85.6157C83.7234 244.829 81.9086 245.581 80.5705 246.919C79.2324 248.257 78.4807 250.072 78.4807 251.964V301.908C78.4807 303.801 79.2324 305.615 80.5705 306.953C81.9086 308.292 83.7234 309.043 85.6157 309.043H135.56C137.452 309.043 139.267 308.292 140.605 306.953C141.943 305.615 142.695 303.801 142.695 301.908V251.964C142.695 250.072 141.943 248.257 140.605 246.919C139.267 245.581 137.452 244.829 135.56 244.829Z" fill="#6F39DE" fill-opacity="0.15"/>
|
||||
<g clip-path="url(#clip2_14132_13167)">
|
||||
<path d="M132.338 260.033L111.694 296.948C111.268 297.71 110.173 297.714 109.74 296.956L88.6873 260.037C88.216 259.21 88.9227 258.209 89.8593 258.376L110.525 262.07C110.657 262.094 110.792 262.094 110.924 262.07L131.157 258.382C132.091 258.212 132.801 259.205 132.338 260.033Z" fill="url(#paint0_linear_14132_13167)"/>
|
||||
<path d="M120.369 253.531L105.092 256.525C104.841 256.574 104.655 256.787 104.64 257.042L103.7 272.914C103.678 273.288 104.022 273.578 104.387 273.493L108.64 272.512C109.038 272.42 109.397 272.771 109.316 273.171L108.052 279.359C107.967 279.775 108.358 280.131 108.765 280.008L111.392 279.21C111.799 279.086 112.19 279.443 112.104 279.86L110.096 289.58C109.97 290.188 110.779 290.519 111.116 289.998L111.342 289.65L123.79 264.807C123.998 264.391 123.639 263.916 123.182 264.005L118.804 264.85C118.393 264.929 118.043 264.546 118.159 264.143L121.016 254.237C121.132 253.834 120.781 253.451 120.369 253.531Z" fill="url(#paint1_linear_14132_13167)"/>
|
||||
</g>
|
||||
<path d="M213.395 244.829H163.451C161.559 244.829 159.744 245.581 158.406 246.919C157.068 248.257 156.316 250.072 156.316 251.964V301.908C156.316 303.801 157.068 305.615 158.406 306.953C159.744 308.292 161.559 309.043 163.451 309.043H213.395C215.287 309.043 217.102 308.292 218.44 306.953C219.778 305.615 220.53 303.801 220.53 301.908V251.964C220.53 250.072 219.778 248.257 218.44 246.919C217.102 245.581 215.287 244.829 213.395 244.829ZM291.229 244.829H241.285C239.393 244.829 237.578 245.581 236.24 246.919C234.902 248.257 234.15 250.072 234.15 251.964V301.908C234.15 303.801 234.902 305.615 236.24 306.953C237.578 308.292 239.393 309.043 241.285 309.043H291.229C292.166 309.043 293.094 308.859 293.96 308.5C294.825 308.142 295.612 307.616 296.274 306.953C296.937 306.291 297.462 305.504 297.821 304.639C298.179 303.773 298.364 302.845 298.363 301.908V251.964C298.364 251.027 298.179 250.099 297.821 249.234C297.462 248.368 296.937 247.582 296.274 246.919C295.612 246.256 294.825 245.731 293.96 245.372C293.094 245.014 292.166 244.829 291.229 244.829Z" fill="#B5BAC4" fill-opacity="0.06"/>
|
||||
<path d="M369.064 245.154H319.119C317.313 245.154 315.581 245.872 314.304 247.149C313.027 248.426 312.309 250.159 312.309 251.965V301.909C312.309 303.715 313.027 305.447 314.304 306.724C315.581 308.001 317.313 308.719 319.119 308.719H369.064C369.958 308.719 370.844 308.543 371.67 308.201C372.496 307.859 373.247 307.357 373.88 306.725C374.512 306.092 375.014 305.341 375.356 304.515C375.698 303.689 375.874 302.803 375.874 301.909V251.965C375.874 250.158 375.157 248.426 373.88 247.149C372.602 245.871 370.87 245.154 369.064 245.154Z" stroke="#B5BAC4" stroke-opacity="0.15" stroke-width="0.783"/>
|
||||
<path d="M524.735 244.829H474.791C472.899 244.829 471.084 245.581 469.746 246.919C468.408 248.257 467.656 250.072 467.656 251.964V301.908C467.656 303.801 468.408 305.615 469.746 306.953C471.084 308.292 472.899 309.043 474.791 309.043H524.735C525.672 309.043 526.6 308.859 527.466 308.5C528.331 308.142 529.118 307.616 529.78 306.953C530.443 306.291 530.968 305.504 531.327 304.639C531.685 303.773 531.87 302.845 531.87 301.908V251.964C531.87 251.027 531.685 250.099 531.327 249.234C530.968 248.368 530.443 247.582 529.78 246.919C529.118 246.256 528.331 245.731 527.466 245.372C526.6 245.014 525.672 244.829 524.735 244.829Z" fill="#B5BAC4" fill-opacity="0.09"/>
|
||||
<path d="M680.405 244.829H630.465C629.528 244.829 628.6 245.013 627.734 245.371C626.868 245.73 626.081 246.255 625.418 246.918C624.755 247.58 624.23 248.367 623.871 249.233C623.512 250.099 623.328 251.027 623.328 251.964V301.908C623.328 302.845 623.512 303.773 623.871 304.639C624.23 305.505 624.755 306.292 625.418 306.954C626.081 307.617 626.868 308.143 627.734 308.501C628.6 308.859 629.528 309.044 630.465 309.043H680.405C684.35 309.043 687.542 305.849 687.542 301.908V251.964C687.542 251.027 687.357 250.099 686.999 249.233C686.64 248.367 686.114 247.58 685.452 246.918C684.789 246.255 684.002 245.73 683.136 245.371C682.27 245.013 681.342 244.829 680.405 244.829Z" fill="#B5BAC4" fill-opacity="0.12"/>
|
||||
<path d="M758.237 244.829H708.297C707.359 244.829 706.431 245.013 705.565 245.371C704.699 245.73 703.913 246.255 703.25 246.918C702.587 247.58 702.061 248.367 701.703 249.233C701.344 250.099 701.16 251.027 701.16 251.964V301.908C701.16 302.845 701.344 303.773 701.703 304.639C702.061 305.505 702.587 306.292 703.25 306.954C703.913 307.617 704.699 308.143 705.565 308.501C706.431 308.859 707.359 309.044 708.297 309.043H758.237C762.182 309.043 765.373 305.849 765.373 301.908V251.964C765.373 251.027 765.189 250.099 764.831 249.233C764.472 248.367 763.946 247.58 763.283 246.918C762.621 246.255 761.834 245.73 760.968 245.371C760.102 245.013 759.174 244.829 758.237 244.829Z" fill="#00D8FF" fill-opacity="0.15"/>
|
||||
<g clip-path="url(#clip3_14132_13167)">
|
||||
<path d="M733.489 281.937C735.729 281.937 737.544 280.122 737.544 277.882C737.544 275.643 735.729 273.828 733.489 273.828C731.25 273.828 729.435 275.643 729.435 277.882C729.435 280.122 731.25 281.937 733.489 281.937Z" fill="#00D8FF"/>
|
||||
<path d="M733.489 281.937C735.729 281.937 737.544 280.122 737.544 277.882C737.544 275.643 735.729 273.828 733.489 273.828C731.25 273.828 729.435 275.643 729.435 277.882C729.435 280.122 731.25 281.937 733.489 281.937Z" stroke="#00D8FF" stroke-width="2" stroke-miterlimit="10"/>
|
||||
<path d="M733.489 269.639C738.932 269.639 743.989 270.421 747.801 271.732C752.394 273.313 755.218 275.71 755.218 277.881C755.218 280.143 752.225 282.69 747.293 284.323C743.564 285.559 738.656 286.204 733.489 286.204C728.191 286.204 723.176 285.599 719.404 284.31C714.633 282.679 711.759 280.1 711.759 277.881C711.759 275.728 714.456 273.35 718.985 271.771C722.812 270.438 727.993 269.639 733.489 269.639Z" stroke="#00D8FF" stroke-width="2" stroke-miterlimit="10"/>
|
||||
<path d="M726.314 273.785C729.033 269.07 732.236 265.08 735.278 262.433C738.943 259.244 742.43 257.996 744.31 259.08C746.269 260.209 746.981 264.075 745.932 269.165C745.138 273.013 743.246 277.586 740.664 282.063C738.018 286.652 734.987 290.694 731.987 293.318C728.191 296.637 724.52 297.837 722.599 296.729C720.733 295.653 720.021 292.13 720.914 287.417C721.67 283.432 723.567 278.546 726.314 273.785Z" stroke="#00D8FF" stroke-width="2" stroke-miterlimit="10"/>
|
||||
<path d="M726.321 282.072C723.594 277.361 721.737 272.594 720.963 268.637C720.03 263.87 720.689 260.224 722.568 259.137C724.525 258.004 728.229 259.318 732.115 262.768C735.053 265.377 738.069 269.3 740.658 273.773C743.312 278.358 745.302 283.002 746.075 286.911C747.054 291.858 746.261 295.637 744.341 296.748C742.477 297.827 739.069 296.685 735.432 293.556C732.361 290.913 729.074 286.829 726.321 282.072Z" stroke="#00D8FF" stroke-width="2" stroke-miterlimit="10"/>
|
||||
</g>
|
||||
<path d="M135.559 327.603H85.6149C83.8087 327.603 82.0766 328.32 80.7994 329.597C79.5223 330.874 78.8048 332.606 78.8048 334.413V384.357C78.8048 386.163 79.5223 387.895 80.7994 389.173C82.0765 390.45 83.8086 391.167 85.6149 391.168H135.559C137.365 391.168 139.098 390.45 140.375 389.173C141.652 387.896 142.37 386.163 142.37 384.357V334.413C142.37 333.518 142.194 332.633 141.851 331.806C141.509 330.98 141.007 330.229 140.375 329.597C139.743 328.964 138.992 328.463 138.165 328.121C137.339 327.779 136.453 327.602 135.559 327.603Z" stroke="#B5BAC4" stroke-opacity="0.15" stroke-width="0.783"/>
|
||||
<path d="M213.395 327.278H163.451C161.559 327.278 159.744 328.03 158.406 329.368C157.068 330.706 156.316 332.521 156.316 334.413V384.357C156.316 386.25 157.068 388.065 158.406 389.403C159.744 390.741 161.559 391.492 163.451 391.492H213.395C215.287 391.492 217.102 390.741 218.44 389.403C219.778 388.065 220.53 386.25 220.53 384.357V334.413C220.53 332.521 219.778 330.706 218.44 329.368C217.102 328.03 215.287 327.278 213.395 327.278ZM369.064 327.278H319.12C317.228 327.278 315.413 328.03 314.075 329.368C312.737 330.706 311.985 332.521 311.985 334.413V384.357C311.985 386.25 312.737 388.065 314.075 389.403C315.413 390.741 317.228 391.492 319.12 391.492H369.064C370.957 391.492 372.771 390.741 374.11 389.403C375.448 388.065 376.199 386.25 376.199 384.357V334.413C376.199 332.521 375.448 330.706 374.11 329.368C372.771 328.03 370.957 327.278 369.064 327.278Z" fill="#B5BAC4" fill-opacity="0.06"/>
|
||||
<path d="M446.899 327.278H396.955C395.062 327.278 393.247 328.03 391.909 329.368C390.571 330.706 389.82 332.521 389.82 334.413V384.357C389.82 386.25 390.571 388.065 391.909 389.403C393.247 390.741 395.062 391.492 396.955 391.492H446.899C448.791 391.492 450.606 390.741 451.944 389.403C453.282 388.065 454.034 386.25 454.034 384.357V334.413C454.034 332.521 453.282 330.706 451.944 329.368C450.606 328.03 448.791 327.278 446.899 327.278Z" fill="#B5BAC4" fill-opacity="0.12"/>
|
||||
<path d="M524.735 327.278H474.791C472.899 327.278 471.084 328.03 469.746 329.368C468.408 330.706 467.656 332.521 467.656 334.413V384.357C467.656 386.25 468.408 388.065 469.746 389.403C471.084 390.741 472.899 391.492 474.791 391.492H524.735C525.672 391.492 526.6 391.308 527.466 390.949C528.331 390.591 529.118 390.065 529.78 389.403C530.443 388.74 530.968 387.953 531.327 387.088C531.685 386.222 531.87 385.294 531.87 384.357V334.413C531.87 333.476 531.685 332.549 531.327 331.683C530.968 330.817 530.443 330.031 529.78 329.368C529.118 328.706 528.331 328.18 527.466 327.821C526.6 327.463 525.672 327.278 524.735 327.278ZM602.565 327.278H552.623C550.731 327.278 548.916 328.03 547.578 329.368C546.24 330.706 545.488 332.521 545.488 334.413V384.357C545.488 386.25 546.24 388.065 547.578 389.403C548.916 390.741 550.731 391.492 552.623 391.492H602.565C606.51 391.492 609.701 388.298 609.701 384.357V334.413C609.702 333.476 609.517 332.548 609.159 331.682C608.8 330.816 608.274 330.03 607.612 329.367C606.949 328.704 606.162 328.179 605.296 327.821C604.43 327.462 603.502 327.278 602.565 327.278Z" fill="#B5BAC4" fill-opacity="0.06"/>
|
||||
<path d="M680.405 327.278H630.465C629.528 327.278 628.6 327.462 627.734 327.821C626.868 328.179 626.081 328.704 625.418 329.367C624.755 330.03 624.23 330.816 623.871 331.682C623.512 332.548 623.328 333.476 623.328 334.413V384.357C623.328 385.295 623.512 386.223 623.871 387.089C624.23 387.954 624.755 388.741 625.418 389.404C626.081 390.066 626.868 390.592 627.734 390.95C628.6 391.309 629.528 391.493 630.465 391.492H680.405C684.35 391.492 687.542 388.298 687.542 384.357V334.413C687.542 333.476 687.357 332.548 686.999 331.682C686.64 330.816 686.114 330.03 685.452 329.367C684.789 328.704 684.002 328.179 683.136 327.821C682.27 327.462 681.342 327.278 680.405 327.278Z" fill="#77A5FF" fill-opacity="0.17"/>
|
||||
<path d="M246.5 104.888V100.621H263.553V104.888H257.652V120.126H252.402V104.888H246.5Z" fill="url(#paint2_linear_14132_13167)"/>
|
||||
<path d="M276.135 106.716C276.084 106.081 275.844 105.586 275.416 105.23C274.995 104.875 274.353 104.697 273.491 104.697C272.941 104.697 272.491 104.764 272.14 104.897C271.795 105.024 271.54 105.199 271.373 105.421C271.207 105.643 271.121 105.897 271.115 106.183C271.102 106.418 271.144 106.63 271.239 106.821C271.342 107.005 271.501 107.173 271.718 107.326C271.936 107.472 272.213 107.605 272.552 107.726C272.89 107.846 273.293 107.954 273.759 108.049L275.369 108.392C276.454 108.621 277.384 108.923 278.156 109.297C278.929 109.672 279.562 110.113 280.053 110.621C280.545 111.123 280.906 111.688 281.136 112.316C281.372 112.945 281.494 113.63 281.5 114.373C281.494 115.656 281.171 116.742 280.532 117.63C279.894 118.519 278.98 119.196 277.792 119.659C276.611 120.123 275.19 120.354 273.529 120.354C271.824 120.354 270.336 120.103 269.065 119.602C267.8 119.1 266.816 118.329 266.114 117.288C265.418 116.24 265.066 114.9 265.06 113.269H270.118C270.15 113.865 270.3 114.367 270.569 114.773C270.837 115.18 271.214 115.488 271.699 115.697C272.191 115.907 272.775 116.011 273.452 116.011C274.021 116.011 274.497 115.942 274.88 115.802C275.263 115.662 275.554 115.469 275.752 115.221C275.95 114.973 276.052 114.691 276.058 114.373C276.052 114.075 275.953 113.815 275.761 113.592C275.576 113.364 275.27 113.161 274.842 112.983C274.414 112.799 273.836 112.627 273.108 112.469L271.153 112.049C269.416 111.675 268.046 111.049 267.043 110.173C266.047 109.291 265.552 108.088 265.558 106.564C265.552 105.326 265.884 104.243 266.554 103.316C267.232 102.383 268.167 101.656 269.362 101.135C270.562 100.615 271.939 100.354 273.491 100.354C275.075 100.354 276.445 100.618 277.601 101.145C278.757 101.672 279.648 102.415 280.274 103.373C280.906 104.326 281.225 105.44 281.232 106.716H276.135Z" fill="url(#paint3_linear_14132_13167)"/>
|
||||
<path d="M57.7247 409.728H7.78058C5.88826 409.728 4.07346 410.48 2.73539 411.818C1.39732 413.156 0.645584 414.971 0.645584 416.863V466.807C0.645584 467.744 0.83015 468.672 1.18873 469.537C1.5473 470.403 2.07288 471.19 2.73544 471.852C3.398 472.515 4.18454 473.04 5.0502 473.398C5.91585 473.757 6.84364 473.941 7.78058 473.941H57.7247C58.6617 473.941 59.5895 473.757 60.4551 473.398C61.3208 473.04 62.1073 472.515 62.7699 471.852C63.4324 471.19 63.958 470.403 64.3166 469.537C64.6752 468.672 64.8597 467.744 64.8597 466.807V416.863C64.8597 414.971 64.108 413.156 62.7699 411.818C61.4319 410.48 59.6171 409.728 57.7247 409.728Z" fill="#B5BAC4" fill-opacity="0.09"/>
|
||||
<path d="M135.56 409.728H85.6157C83.7234 409.728 81.9086 410.48 80.5705 411.818C79.2324 413.156 78.4807 414.971 78.4807 416.863V466.807C78.4807 467.744 78.6653 468.672 79.0238 469.537C79.3824 470.403 79.908 471.19 80.5706 471.852C81.2331 472.515 82.0197 473.04 82.8853 473.398C83.751 473.757 84.6788 473.941 85.6157 473.941H135.56C136.497 473.941 137.425 473.757 138.29 473.398C139.156 473.04 139.942 472.515 140.605 471.852C141.268 471.19 141.793 470.403 142.152 469.537C142.51 468.672 142.695 467.744 142.695 466.807V416.863C142.695 414.971 141.943 413.156 140.605 411.818C139.267 410.48 137.452 409.728 135.56 409.728Z" fill="#EB5451" fill-opacity="0.26"/>
|
||||
<g clip-path="url(#clip4_14132_13167)">
|
||||
<path d="M104.751 457.355C107.649 457.355 110 454.965 110 452.021V446.688H104.751C101.854 446.688 99.5022 449.077 99.5022 452.021C99.5022 454.965 101.854 457.355 104.751 457.355Z" fill="#0ACF83"/>
|
||||
<path d="M99.5022 441.354C99.5022 438.41 101.854 436.021 104.751 436.021H110V446.688H104.751C101.854 446.688 99.5022 444.298 99.5022 441.354Z" fill="#A259FF"/>
|
||||
<path d="M99.5022 430.688C99.5022 427.744 101.854 425.354 104.751 425.354H110V436.021H104.751C101.854 436.021 99.5022 433.632 99.5022 430.688Z" fill="#F24E1E"/>
|
||||
<path d="M110 425.354H115.249C118.146 425.354 120.498 427.744 120.498 430.688C120.498 433.632 118.146 436.021 115.249 436.021H110V425.354Z" fill="#FF7262"/>
|
||||
<path d="M120.498 441.354C120.498 444.298 118.146 446.688 115.249 446.688C112.352 446.688 110 444.298 110 441.354C110 438.41 112.352 436.021 115.249 436.021C118.146 436.021 120.498 438.41 120.498 441.354Z" fill="#1ABCFE"/>
|
||||
</g>
|
||||
<path d="M213.395 409.728H163.451C161.559 409.728 159.744 410.48 158.406 411.818C157.068 413.156 156.316 414.971 156.316 416.863V466.807C156.316 467.744 156.5 468.672 156.859 469.537C157.218 470.403 157.743 471.19 158.406 471.852C159.068 472.515 159.855 473.04 160.72 473.398C161.586 473.757 162.514 473.941 163.451 473.941H213.395C214.332 473.941 215.26 473.757 216.125 473.398C216.991 473.04 217.778 472.515 218.44 471.852C219.103 471.19 219.628 470.403 219.987 469.537C220.345 468.672 220.53 467.744 220.53 466.807V416.863C220.53 414.971 219.778 413.156 218.44 411.818C217.102 410.48 215.287 409.728 213.395 409.728ZM369.064 409.728H319.12C317.228 409.728 315.413 410.48 314.075 411.818C312.737 413.156 311.985 414.971 311.985 416.863V466.807C311.985 467.744 312.17 468.672 312.528 469.537C312.887 470.403 313.413 471.19 314.075 471.852C314.738 472.515 315.524 473.04 316.39 473.398C317.256 473.757 318.183 473.941 319.12 473.941H369.064C370.001 473.941 370.929 473.757 371.795 473.398C372.66 473.04 373.447 472.515 374.11 471.852C374.772 471.19 375.298 470.403 375.656 469.537C376.015 468.672 376.199 467.744 376.199 466.807V416.863C376.199 414.971 375.448 413.156 374.11 411.818C372.771 410.48 370.957 409.728 369.064 409.728Z" fill="#B5BAC4" fill-opacity="0.06"/>
|
||||
<path d="M446.899 409.728H396.955C395.062 409.728 393.247 410.48 391.909 411.818C390.571 413.156 389.82 414.971 389.82 416.863V466.807C389.82 467.744 390.004 468.672 390.363 469.537C390.721 470.403 391.247 471.19 391.909 471.852C392.572 472.515 393.358 473.04 394.224 473.398C395.09 473.757 396.018 473.941 396.955 473.941H446.899C447.836 473.941 448.763 473.757 449.629 473.398C450.495 473.04 451.281 472.515 451.944 471.852C452.606 471.19 453.132 470.403 453.491 469.537C453.849 468.672 454.034 467.744 454.034 466.807V416.863C454.034 414.971 453.282 413.156 451.944 411.818C450.606 410.48 448.791 409.728 446.899 409.728Z" fill="#B5BAC4" fill-opacity="0.12"/>
|
||||
<path d="M602.565 409.728H552.623C550.731 409.728 548.916 410.48 547.578 411.818C546.24 413.156 545.488 414.971 545.488 416.863V466.807C545.488 467.744 545.673 468.672 546.031 469.537C546.39 470.403 546.915 471.19 547.578 471.852C548.24 472.515 549.027 473.04 549.893 473.398C550.758 473.757 551.686 473.941 552.623 473.941H602.565C606.51 473.941 609.701 470.748 609.701 466.807V416.863C609.702 415.926 609.517 414.998 609.159 414.132C608.8 413.266 608.274 412.479 607.611 411.817C606.949 411.154 606.162 410.629 605.296 410.27C604.43 409.912 603.502 409.728 602.565 409.728Z" fill="#B5BAC4" fill-opacity="0.06"/>
|
||||
<path d="M680.405 409.728H630.465C629.528 409.728 628.6 409.912 627.734 410.27C626.868 410.629 626.081 411.154 625.418 411.817C624.755 412.479 624.23 413.266 623.871 414.132C623.512 414.998 623.328 415.926 623.328 416.863V466.807C623.328 467.744 623.512 468.672 623.871 469.538C624.23 470.404 624.755 471.191 625.418 471.853C626.081 472.516 626.868 473.041 627.734 473.399C628.6 473.758 629.528 473.942 630.465 473.941H680.405C684.35 473.941 687.542 470.748 687.542 466.807V416.863C687.542 415.926 687.357 414.998 686.999 414.132C686.64 413.266 686.114 412.479 685.452 411.817C684.789 411.154 684.002 410.629 683.136 410.27C682.27 409.912 681.342 409.728 680.405 409.728Z" fill="#B5BAC4" fill-opacity="0.09"/>
|
||||
<path d="M758.237 410.052H708.297C707.402 410.052 706.516 410.228 705.69 410.57C704.863 410.912 704.112 411.414 703.48 412.046C702.847 412.679 702.345 413.429 702.002 414.256C701.66 415.082 701.483 415.968 701.483 416.862V466.806C701.483 467.701 701.66 468.587 702.002 469.413C702.345 470.24 702.847 470.991 703.479 471.623C704.112 472.256 704.863 472.757 705.69 473.099C706.516 473.442 707.402 473.618 708.297 473.617H758.237C762 473.617 765.05 470.568 765.05 466.806V416.862C765.05 415.968 764.873 415.082 764.531 414.256C764.188 413.429 763.686 412.679 763.054 412.046C762.421 411.414 761.67 410.912 760.844 410.57C760.017 410.228 759.131 410.052 758.237 410.052Z" stroke="#B5BAC4" stroke-opacity="0.15" stroke-width="0.783"/>
|
||||
<path d="M57.7247 492.177H7.78058C5.88841 492.177 4.07371 492.928 2.73567 494.266C1.39762 495.604 0.645804 497.419 0.645584 499.311V549.258C0.645584 553.196 3.84009 556.387 7.78058 556.387H57.7247C61.6652 556.387 64.8597 553.196 64.8597 549.258V499.311C64.8595 497.419 64.1077 495.604 62.7696 494.266C61.4316 492.928 59.6169 492.177 57.7247 492.177ZM213.395 492.177H163.451C161.559 492.177 159.744 492.928 158.406 494.266C157.068 495.604 156.316 497.419 156.316 499.311V549.258C156.316 553.196 159.51 556.387 163.451 556.387H213.395C217.335 556.387 220.53 553.196 220.53 549.258V499.311C220.53 497.419 219.778 495.604 218.44 494.266C217.102 492.928 215.287 492.177 213.395 492.177Z" fill="#B5BAC4" fill-opacity="0.12"/>
|
||||
<path d="M291.229 492.177H241.285C239.393 492.177 237.578 492.928 236.24 494.266C234.902 495.604 234.15 497.419 234.15 499.311V549.258C234.15 553.196 237.345 556.387 241.285 556.387H291.229C295.17 556.387 298.363 553.196 298.363 549.258V499.311C298.363 497.419 297.612 495.604 296.274 494.266C294.936 492.928 293.121 492.177 291.229 492.177ZM369.064 492.177H319.12C317.228 492.177 315.413 492.928 314.075 494.266C312.737 495.604 311.985 497.419 311.985 499.311V549.258C311.985 553.196 315.18 556.387 319.12 556.387H369.064C373.005 556.387 376.199 553.196 376.199 549.258V499.311C376.199 497.419 375.447 495.604 374.109 494.266C372.771 492.928 370.957 492.177 369.064 492.177ZM524.735 492.177H474.791C472.899 492.177 471.084 492.928 469.746 494.266C468.408 495.604 467.657 497.419 467.656 499.311V549.258C467.656 553.196 470.851 556.387 474.791 556.387H524.735C528.676 556.387 531.87 553.196 531.87 549.258V499.311C531.87 497.419 531.118 495.604 529.78 494.266C528.442 492.928 526.628 492.177 524.735 492.177Z" fill="#B5BAC4" fill-opacity="0.06"/>
|
||||
<path d="M680.405 492.177H630.465C629.528 492.176 628.6 492.361 627.734 492.719C626.868 493.077 626.081 493.603 625.418 494.265C624.756 494.928 624.23 495.714 623.871 496.58C623.513 497.446 623.328 498.374 623.328 499.311V549.258C623.328 553.196 626.519 556.387 630.465 556.387H680.405C684.35 556.387 687.542 553.196 687.542 549.258V499.311C687.542 498.374 687.357 497.446 686.998 496.58C686.64 495.714 686.114 494.928 685.451 494.265C684.789 493.603 684.002 493.077 683.136 492.719C682.27 492.361 681.342 492.176 680.405 492.177Z" fill="#B5BAC4" fill-opacity="0.12"/>
|
||||
<path d="M134.911 0.798584H84.9667C83.0744 0.798584 81.2595 1.55029 79.9215 2.88836C78.5834 4.22643 77.8317 6.04126 77.8317 7.93358V57.8777C77.8317 59.77 78.5834 61.5848 79.9215 62.9229C81.2595 64.261 83.0744 65.0127 84.9667 65.0127H134.911C136.803 65.0127 138.618 64.261 139.956 62.9229C141.294 61.5848 142.046 59.77 142.046 57.8777V7.93358C142.046 6.04126 141.294 4.22643 139.956 2.88836C138.618 1.55029 136.803 0.798584 134.911 0.798584Z" fill="#FB9C0C" fill-opacity="0.15"/>
|
||||
<path d="M103.515 23.9926H108.397V36.5025C108.391 37.6905 108.091 38.7359 107.497 39.6388C106.909 40.5358 106.096 41.2367 105.056 41.7416C104.022 42.2406 102.831 42.4901 101.483 42.4901C100.313 42.4901 99.2437 42.2881 98.2754 41.8842C97.3072 41.4743 96.535 40.8328 95.9588 39.9596C95.3826 39.0805 95.0975 37.94 95.1034 36.5381H100.057C100.075 36.9955 100.152 37.3816 100.289 37.6964C100.432 38.0112 100.628 38.2488 100.877 38.4092C101.133 38.5637 101.441 38.6409 101.804 38.6409C102.172 38.6409 102.481 38.5607 102.73 38.4003C102.986 38.2399 103.179 38.0023 103.31 37.6875C103.44 37.3667 103.509 36.9717 103.515 36.5025V23.9926Z" fill="url(#paint4_linear_14132_13167)"/>
|
||||
<path d="M120.582 29.6951C120.534 29.1011 120.312 28.6378 119.914 28.3051C119.522 27.9725 118.925 27.8062 118.123 27.8062C117.612 27.8062 117.193 27.8686 116.866 27.9933C116.546 28.1121 116.308 28.2754 116.154 28.4833C115.999 28.6913 115.919 28.9289 115.913 29.1962C115.901 29.4159 115.94 29.6149 116.029 29.7931C116.124 29.9654 116.272 30.1228 116.474 30.2654C116.676 30.402 116.935 30.5267 117.25 30.6396C117.564 30.7525 117.939 30.8534 118.372 30.9425L119.869 31.2633C120.879 31.4772 121.743 31.7593 122.462 32.1098C123.181 32.4602 123.769 32.8731 124.226 33.3483C124.684 33.8175 125.019 34.3462 125.233 34.9343C125.453 35.5223 125.566 36.1639 125.572 36.8589C125.566 38.0588 125.266 39.0745 124.672 39.9061C124.078 40.7377 123.228 41.3704 122.123 41.804C121.024 42.2376 119.703 42.4544 118.158 42.4544C116.572 42.4544 115.188 42.2198 114.006 41.7505C112.83 41.2813 111.915 40.5595 111.262 39.5854C110.614 38.6053 110.288 37.3519 110.282 35.8253H114.986C115.016 36.3837 115.156 36.8529 115.405 37.2331C115.655 37.6133 116.005 37.9014 116.457 38.0974C116.914 38.2934 117.457 38.3914 118.087 38.3914C118.616 38.3914 119.058 38.3261 119.415 38.1954C119.771 38.0647 120.041 37.8835 120.226 37.6519C120.41 37.4202 120.505 37.1559 120.511 36.8589C120.505 36.5797 120.413 36.3361 120.234 36.1282C120.062 35.9144 119.777 35.7243 119.379 35.558C118.981 35.3857 118.443 35.2253 117.766 35.0768L115.949 34.6848C114.333 34.3343 113.059 33.7492 112.126 32.9295C111.2 32.1038 110.739 30.9782 110.745 29.5526C110.739 28.3942 111.048 27.3815 111.672 26.5142C112.301 25.641 113.172 24.9609 114.282 24.4738C115.399 23.9867 116.679 23.7432 118.123 23.7432C119.596 23.7432 120.87 23.9897 121.945 24.4827C123.02 24.9757 123.849 25.6707 124.431 26.5677C125.019 27.4587 125.316 28.5012 125.322 29.6951H120.582Z" fill="url(#paint5_linear_14132_13167)"/>
|
||||
<path d="M289.932 78.6338H239.988C238.096 78.6338 236.281 79.3855 234.943 80.7236C233.605 82.0617 232.853 83.8765 232.853 85.7688V135.712C232.853 137.604 233.605 139.419 234.943 140.757C236.281 142.095 238.096 142.847 239.988 142.847H289.932C291.824 142.847 293.639 142.095 294.977 140.757C296.315 139.419 297.067 137.604 297.067 135.712V85.7688C297.067 83.8765 296.315 82.0617 294.977 80.7236C293.639 79.3855 291.824 78.6338 289.932 78.6338Z" fill="#0893F0" fill-opacity="0.1"/>
|
||||
<path d="M758.237 0.798585H708.297C707.359 0.798149 706.431 0.982374 705.565 1.34077C704.699 1.69916 703.913 2.22469 703.25 2.8873C702.587 3.54991 702.061 4.33662 701.703 5.20249C701.344 6.06835 701.16 6.9964 701.16 7.93358V57.8777C701.16 58.8149 701.344 59.7429 701.703 60.6088C702.061 61.4747 702.587 62.2614 703.25 62.924C703.913 63.5866 704.699 64.1121 705.565 64.4705C706.431 64.8289 707.359 65.0131 708.297 65.0127H758.237C762.182 65.0127 765.373 61.8182 765.373 57.8777V7.93358C765.373 6.9964 765.189 6.06835 764.831 5.20249C764.472 4.33662 763.946 3.54991 763.283 2.8873C762.621 2.22469 761.834 1.69916 760.968 1.34077C760.102 0.982374 759.174 0.798149 758.237 0.798585Z" fill="#B5BAC4" fill-opacity="0.09"/>
|
||||
<path d="M680.405 0.798585H630.465C629.528 0.798149 628.6 0.982374 627.734 1.34077C626.868 1.69916 626.081 2.22469 625.418 2.8873C624.755 3.54991 624.23 4.33662 623.871 5.20249C623.512 6.06835 623.328 6.9964 623.328 7.93358V57.8777C623.328 58.8149 623.512 59.7429 623.871 60.6088C624.23 61.4747 624.755 62.2614 625.418 62.924C626.081 63.5866 626.868 64.1121 627.734 64.4705C628.6 64.8289 629.528 65.0131 630.465 65.0127H680.405C684.35 65.0127 687.542 61.8182 687.542 57.8777V7.93358C687.542 6.9964 687.357 6.06835 686.999 5.20249C686.64 4.33662 686.114 3.54991 685.452 2.8873C684.789 2.22469 684.002 1.69916 683.136 1.34077C682.27 0.982374 681.342 0.798149 680.405 0.798585Z" fill="#B5BAC4" fill-opacity="0.08"/>
|
||||
<path d="M57.7247 2.74487H7.78058C5.88826 2.74487 4.07346 3.49658 2.73539 4.83465C1.39732 6.17272 0.645584 7.98755 0.645584 9.87987V59.824C0.645584 61.7163 1.39732 63.5311 2.73539 64.8692C4.07346 66.2073 5.88826 66.959 7.78058 66.959H57.7247C59.6171 66.959 61.4319 66.2073 62.7699 64.8692C64.108 63.5311 64.8597 61.7163 64.8597 59.824V9.87987C64.8597 7.98755 64.108 6.17272 62.7699 4.83465C61.4319 3.49658 59.6171 2.74487 57.7247 2.74487Z" fill="#B5BAC4" fill-opacity="0.05"/>
|
||||
<path d="M41.5367 204.618L38.1134 194.203L47.0703 187.767H35.994L32.5716 177.348H43.6479L47.0745 187.767C48.0653 190.8 48.0608 194.071 47.0616 197.103C46.0624 200.134 44.1208 202.766 41.5201 204.616L41.5367 204.618ZM23.618 204.618L32.5749 211.057L41.5367 204.618L32.5799 198.182L23.618 204.618ZM18.0811 187.763C15.9865 194.137 18.4176 200.886 23.6155 204.62V204.618L27.0388 194.203L18.0819 187.763L29.1566 187.767L32.5716 177.348H21.4886L18.0811 187.763Z" fill="#8A8AB5"/>
|
||||
<path d="M602.565 78.9585H552.621C551.727 78.9585 550.841 79.1347 550.015 79.477C549.189 79.8192 548.438 80.321 547.806 80.9534C547.173 81.5859 546.672 82.3367 546.329 83.163C545.987 83.9894 545.811 84.875 545.811 85.7694V135.714C545.811 136.608 545.987 137.493 546.329 138.32C546.672 139.146 547.173 139.897 547.806 140.529C548.438 141.162 549.189 141.663 550.015 142.005C550.841 142.348 551.727 142.524 552.621 142.524H602.565C606.328 142.524 609.378 139.475 609.378 135.714V85.7694C609.378 84.8748 609.202 83.989 608.859 83.1625C608.517 82.3361 608.015 81.5852 607.382 80.9527C606.749 80.3203 605.998 79.8186 605.172 79.4764C604.345 79.1343 603.459 78.9583 602.565 78.9585Z" stroke="#B5BAC4" stroke-opacity="0.15" stroke-width="0.783"/>
|
||||
<path d="M524.735 78.6338H474.791C472.899 78.6338 471.084 79.3855 469.746 80.7236C468.408 82.0617 467.656 83.8765 467.656 85.7688V135.712C467.656 137.604 468.408 139.419 469.746 140.757C471.084 142.095 472.899 142.847 474.791 142.847H524.735C525.672 142.847 526.6 142.663 527.466 142.304C528.331 141.945 529.118 141.42 529.78 140.757C530.443 140.095 530.968 139.308 531.327 138.442C531.685 137.577 531.87 136.649 531.87 135.712V85.7688C531.87 84.8318 531.685 83.9041 531.327 83.0384C530.968 82.1727 530.443 81.3862 529.78 80.7236C529.118 80.0611 528.331 79.5355 527.466 79.1769C526.6 78.8184 525.672 78.6338 524.735 78.6338Z" fill="#EB5451" fill-opacity="0.1"/>
|
||||
<path d="M517.596 112.188C517.596 110.958 517.48 109.689 517.281 108.5H500.115V115.518H509.946C509.748 116.638 509.323 117.705 508.695 118.653C508.068 119.601 507.252 120.41 506.299 121.029L512.167 125.589C515.615 122.378 517.596 117.699 517.596 112.188Z" fill="#EB5451"/>
|
||||
<path d="M500.115 129.951C505.03 129.951 509.158 128.325 512.167 125.549L506.299 121.029C504.674 122.139 502.569 122.774 500.115 122.774C495.357 122.774 491.354 119.562 489.887 115.28L483.861 119.919C485.373 122.934 487.694 125.47 490.564 127.241C493.435 129.013 496.742 129.951 500.115 129.951ZM489.887 115.24C489.133 112.975 489.133 110.527 489.887 108.262L483.853 103.583C481.275 108.738 481.275 114.804 483.853 119.919L489.887 115.24ZM500.115 100.768C502.71 100.734 505.214 101.715 507.094 103.504L512.283 98.27C508.992 95.1774 504.633 93.5122 500.115 93.552C493.219 93.552 486.953 97.4378 483.861 103.583L489.887 108.262C491.354 103.94 495.357 100.768 500.115 100.768Z" fill="#EB5451"/>
|
||||
<path d="M369.064 2.74487H319.12C317.228 2.74487 315.413 3.49658 314.075 4.83465C312.737 6.17272 311.985 7.98755 311.985 9.87987V59.824C311.985 61.7163 312.737 63.5311 314.075 64.8692C315.413 66.2073 317.228 66.959 319.12 66.959H369.064C370.957 66.959 372.771 66.2073 374.11 64.8692C375.448 63.5311 376.199 61.7163 376.199 59.824V9.87987C376.199 7.98755 375.448 6.17272 374.11 4.83465C372.771 3.49658 370.957 2.74487 369.064 2.74487Z" fill="#B5BAC4" fill-opacity="0.02"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_14132_13167" x1="88.1733" y1="257.057" x2="113.866" y2="291.95" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#41D1FF"/>
|
||||
<stop offset="1" stop-color="#BD34FE"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_14132_13167" x1="109.339" y1="254.344" x2="113.987" y2="286.227" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFEA83"/>
|
||||
<stop offset="0.0833333" stop-color="#FFDD35"/>
|
||||
<stop offset="1" stop-color="#FFA800"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_14132_13167" x1="245.772" y1="94.4241" x2="277.947" y2="130.697" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#0893F0"/>
|
||||
<stop offset="1" stop-color="#007ACC"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_14132_13167" x1="245.772" y1="94.4241" x2="277.947" y2="130.697" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#0893F0"/>
|
||||
<stop offset="1" stop-color="#007ACC"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_14132_13167" x1="94.8182" y1="18.1951" x2="125.098" y2="50.041" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFDF07"/>
|
||||
<stop offset="1" stop-color="#D8BF1C"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear_14132_13167" x1="94.8182" y1="18.1951" x2="125.098" y2="50.041" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFDF07"/>
|
||||
<stop offset="1" stop-color="#D8BF1C"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_14132_13167">
|
||||
<rect width="766" height="557" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1_14132_13167">
|
||||
<rect width="46" height="46" fill="white" transform="translate(321.5 171.354)"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip2_14132_13167">
|
||||
<rect width="46" height="45.3268" fill="white" transform="translate(87.5001 253.354)"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip3_14132_13167">
|
||||
<rect width="46" height="40.5075" fill="white" transform="translate(710.5 257.354)"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip4_14132_13167">
|
||||
<rect width="21" height="32" fill="white" transform="translate(99.5001 425.354)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 41 KiB |
BIN
002_source/cms/public/assets/home-widgets.png
Normal file
After Width: | Height: | Size: 59 KiB |
8
002_source/cms/public/assets/icon-folder.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg width="40" height="48" viewBox="0 0 40 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M0 12.4c0-2.24 0-3.36.44-4.216a4.02 4.02 0 0 1 1.766-1.748C3.07 6 4.202 6 6.465 6h7.721c1.45 0 2.176 0 2.816.219a4.048 4.048 0 0 1 1.51.923c.484.47.808 1.112 1.457 2.396L22.222 14H0v-1.6Z"
|
||||
fill="#FEB800" />
|
||||
<path opacity=".3"
|
||||
d="M0 14h30.4c3.36 0 5.04 0 6.324.654a6 6 0 0 1 2.622 2.622C40 18.56 40 20.24 40 23.6v8.8c0 3.36 0 5.04-.654 6.324a6 6 0 0 1-2.622 2.622C35.44 42 33.76 42 30.4 42H9.6c-3.36 0-5.04 0-6.324-.654a6 6 0 0 1-2.622-2.622C0 37.44 0 35.76 0 32.4V14Z"
|
||||
fill="#FEB800" />
|
||||
</svg>
|
After Width: | Height: | Size: 625 B |
24
002_source/cms/public/assets/icon-jpg.svg
Normal file
@@ -0,0 +1,24 @@
|
||||
<svg width="41" height="48" viewBox="0 0 41 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#a)">
|
||||
<path opacity=".3"
|
||||
d="M27.936 9.848a4.126 4.126 0 0 1-4.123-4.124V0H5.384A5.382 5.382 0 0 0 .002 5.384v32.442a5.382 5.382 0 0 0 5.382 5.384h22.12a5.382 5.382 0 0 0 5.382-5.384V9.85l-4.95-.002Z"
|
||||
fill="#00C650" />
|
||||
<path
|
||||
d="M32.886 9.848h-4.95a4.126 4.126 0 0 1-4.123-4.124V0l9.073 9.848ZM36.79 34.12H11.784a3.212 3.212 0 0 0-3.212 3.212v7.456A3.212 3.212 0 0 0 11.783 48H36.79a3.212 3.212 0 0 0 3.212-3.212v-7.456a3.212 3.212 0 0 0-3.212-3.212Z"
|
||||
fill="#00C650" />
|
||||
<path
|
||||
d="M16.846 42.674v1.456h-1.505v-1.456h1.505Zm4.47-4.558v4.108c0 .63-.17 1.115-.514 1.454a1.937 1.937 0 0 1-1.426.51 2.156 2.156 0 0 1-1.564-.556c-.385-.372-.578-.905-.58-1.6h1.438c0 .562.214.842.638.842.37 0 .554-.216.554-.646V38.12l1.454-.004Zm2.412 3.904v2.11h-1.454v-6.014h2.356c.714 0 1.258.177 1.632.53a1.88 1.88 0 0 1 .562 1.434 2 2 0 0 1-.25 1 1.738 1.738 0 0 1-.744.688 2.62 2.62 0 0 1-1.2.252h-.902Zm1.616-1.94c0-.533-.292-.8-.876-.8h-.74v1.566h.74c.584.005.876-.25.876-.766Zm6.874-1.48c.485.364.81.9.91 1.498h-1.54a1.174 1.174 0 0 0-.472-.498 1.427 1.427 0 0 0-.758-.2 1.41 1.41 0 0 0-1.104.464 1.8 1.8 0 0 0-.418 1.254c0 .572.146 1.011.438 1.318a1.643 1.643 0 0 0 1.246.46c.327.006.646-.094.91-.286a1.51 1.51 0 0 0 .554-.812h-1.838v-1.046H33.2v1.438c-.116.358-.301.69-.544.978-.262.31-.59.56-.958.732a3.044 3.044 0 0 1-1.33.28 3.167 3.167 0 0 1-1.6-.386 2.642 2.642 0 0 1-1.05-1.086 3.342 3.342 0 0 1-.37-1.6 3.341 3.341 0 0 1 .37-1.59c.237-.455.6-.833 1.046-1.086a3.127 3.127 0 0 1 1.578-.386c.67-.03 1.33.166 1.876.554Z"
|
||||
fill="#fff" />
|
||||
<path
|
||||
d="M20.862 29.282h-8.834a3.266 3.266 0 0 1-3.262-3.262v-8.834a3.266 3.266 0 0 1 3.262-3.262h8.834a3.263 3.263 0 0 1 3.26 3.262v8.834a3.265 3.265 0 0 1-3.26 3.262Zm-8.834-13.916a1.822 1.822 0 0 0-1.82 1.82v8.834a1.822 1.822 0 0 0 1.82 1.82h8.834a1.82 1.82 0 0 0 1.818-1.82v-8.834a1.82 1.82 0 0 0-1.818-1.82h-8.834Z"
|
||||
fill="#00C650" />
|
||||
<path
|
||||
d="M23.402 24.34v1.68a2.542 2.542 0 0 1-2.54 2.54H12.03a2.54 2.54 0 0 1-2.54-2.54V23.2c1.413-.304 3.567-.4 6.181.644l1.62-1.544 1.105 2.8s.296-1.03 1.252-.884c.956.146 2.504.664 3.166.222a.852.852 0 0 1 .59-.098Zm-3.094-5.35a.982.982 0 1 0 0-1.964.982.982 0 0 0 0 1.964Z"
|
||||
fill="#00C650" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M.002 0h40v48h-40z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
24
002_source/cms/public/assets/icon-mp4.svg
Normal file
@@ -0,0 +1,24 @@
|
||||
<svg width="40" height="48" viewBox="0 0 40 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#a)">
|
||||
<path opacity=".3"
|
||||
d="M27.934 9.848a4.128 4.128 0 0 1-4.124-4.124V0H5.382A5.382 5.382 0 0 0 0 5.38v32.444A5.382 5.382 0 0 0 5.382 43.2h22.12a5.383 5.383 0 0 0 5.384-5.382V9.848h-4.952Z"
|
||||
fill="#A140FF" />
|
||||
<path
|
||||
d="M32.886 9.848h-4.952a4.128 4.128 0 0 1-4.124-4.124V0l9.076 9.848Zm3.902 24.272H11.78a3.212 3.212 0 0 0-3.212 3.212v7.456A3.212 3.212 0 0 0 11.78 48h25.008A3.212 3.212 0 0 0 40 44.788v-7.456a3.212 3.212 0 0 0-3.212-3.212Z"
|
||||
fill="#A140FF" />
|
||||
<path
|
||||
d="M15.718 42.674v1.454h-1.506v-1.454h1.506Zm7.52-4.516v5.97h-1.454V40.4l-1.294 3.734h-1.258l-1.302-3.742v3.742h-1.454v-5.97h1.778l1.624 4.158 1.6-4.158 1.76-.006Zm2.458 3.862v2.108h-1.454v-6.014H26.6c.714 0 1.26.178 1.634.532a1.88 1.88 0 0 1 .56 1.434c.007.35-.08.695-.25 1a1.75 1.75 0 0 1-.744.688 2.62 2.62 0 0 1-1.2.252h-.904Zm1.616-1.94c0-.533-.292-.8-.876-.8h-.74v1.566h.74c.584.005.876-.25.876-.766Zm2.068 2.942V41.8l2.748-3.768h1.564v3.718h.724v1.266h-.724v1.106H32.22v-1.106l-2.84.006Zm2.96-3.3-1.48 2.034h1.48v-2.034Z"
|
||||
fill="#fff" />
|
||||
<path
|
||||
d="M23.888 26.382V16.84a.77.77 0 0 0-.114-.394l-.02-.032a.82.82 0 0 0-.084-.102l-.014-.012a.984.984 0 0 0-.086-.072l-.036-.022-.08-.044-.042-.018a.768.768 0 0 0-.096-.03h-.032a.646.646 0 0 0-.138-.014H9.674a.746.746 0 0 0-.678.742v9.574a.518.518 0 0 0 .11.34.742.742 0 0 0 .638.364h13.4a.748.748 0 0 0 .744-.738ZM9.8 17.896v-1.448h1.178v1.448H9.8Zm1.988 0v-1.448h1.178v1.448h-1.178Zm1.988 0v-1.448h1.178v1.448h-1.178Zm1.988 0v-1.448h1.178v1.448h-1.178Zm1.988 0v-1.448h1.178v1.448h-1.178Zm1.988 0v-1.448h1.178v1.448H19.74Zm1.988 0v-1.448h1.178v1.448h-1.178Zm-12.2 7.022v-6.63h13.846v6.63H9.528Zm.27 1.838v-1.448h1.178v1.448H9.798Zm1.988 0v-1.448h1.178v1.448h-1.178Zm1.988 0v-1.448h1.178v1.448h-1.178Zm1.988 0v-1.448h1.178v1.448h-1.178Zm1.988 0v-1.448h1.178v1.448H17.75Zm1.988 0v-1.448h1.178v1.448h-1.178Zm1.988 0v-1.448h1.178v1.448h-1.178Z"
|
||||
fill="#A140FF" />
|
||||
<path
|
||||
d="m18.044 21.112-1.914-1.106a.652.652 0 0 0-.976.564v2.212a.653.653 0 0 0 .976.564l1.914-1.106a.652.652 0 0 0 0-1.128Z"
|
||||
fill="#A140FF" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M0 0h40v48H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
13
002_source/cms/public/assets/icon-other.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg width="40" height="48" viewBox="0 0 40 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#a)" fill="#6366F1">
|
||||
<path opacity=".3"
|
||||
d="M30.915 12.402a3.942 3.942 0 0 1-3.939-3.937V3H9.39a5.137 5.137 0 0 0-5.14 5.137v30.968a5.137 5.137 0 0 0 5.138 5.137h21.113a5.137 5.137 0 0 0 5.137-5.137V12.402h-4.724Z" />
|
||||
<path
|
||||
d="M35.64 12.402h-4.725a3.942 3.942 0 0 1-3.939-3.937V3l8.663 9.402Zm-6.457 6.582H9.473a.716.716 0 0 1 0-1.43h19.71a.716.716 0 0 1 0 1.43Zm0 4.271H9.473a.716.716 0 0 1 0-1.43h19.71a.716.716 0 0 1 0 1.43Zm0 4.27H9.473a.716.716 0 0 1 0-1.43h19.71a.715.715 0 0 1 0 1.43Zm0 4.269H9.473a.714.714 0 1 1 0-1.43h19.71a.716.716 0 0 1 0 1.43Z" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M4.25 3h31.5v42H4.25z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 831 B |
21
002_source/cms/public/assets/icon-pdf.svg
Normal file
@@ -0,0 +1,21 @@
|
||||
<svg width="40" height="48" viewBox="0 0 40 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#a)">
|
||||
<path opacity=".3"
|
||||
d="M27.933 9.85a4.128 4.128 0 0 1-4.124-4.124V0H5.382A5.382 5.382 0 0 0 0 5.382v32.442a5.382 5.382 0 0 0 5.382 5.374h22.12a5.381 5.381 0 0 0 5.383-5.374V9.85h-4.952Z"
|
||||
fill="#FF3E4C" />
|
||||
<path
|
||||
d="M32.885 9.85h-4.952a4.128 4.128 0 0 1-4.124-4.124V0l9.076 9.85Zm-6.766 20.317H5.472a.75.75 0 1 1 0-1.498h20.647a.748.748 0 1 1 0 1.498Zm0-8.447H5.472a.75.75 0 1 1 0-1.499h20.647a.748.748 0 1 1 0 1.498Zm0 4.223H5.472a.75.75 0 1 1 0-1.498h20.647a.748.748 0 1 1 0 1.498Zm-8.144-8.448H5.472a.75.75 0 0 1 0-1.498h12.503a.75.75 0 0 1 0 1.498Zm0-4.224H5.472a.75.75 0 0 1 0-1.498h12.503a.75.75 0 0 1 .528 1.279.75.75 0 0 1-.528.22ZM36.786 34.12H11.78a3.212 3.212 0 0 0-3.211 3.213v7.455A3.212 3.212 0 0 0 11.78 48h25.006a3.212 3.212 0 0 0 3.212-3.212v-7.455a3.212 3.212 0 0 0-3.212-3.212Z"
|
||||
fill="#FF3E4C" />
|
||||
<path
|
||||
d="M16.771 42.674v1.454h-1.504v-1.454h1.504Zm2.212-.656v2.11H17.53v-6.014h2.356c.714 0 1.26.178 1.634.533a1.878 1.878 0 0 1 .56 1.433c.007.35-.079.695-.25 1a1.754 1.754 0 0 1-.744.69 2.62 2.62 0 0 1-1.2.25l-.902-.002ZM20.6 40.08c0-.533-.292-.8-.876-.8h-.74v1.566h.74c.584.006.876-.25.876-.766Zm7.225 2.598c-.25.455-.629.826-1.088 1.068a3.487 3.487 0 0 1-1.672.382h-2.27v-6.014h2.27a3.544 3.544 0 0 1 1.676.374 2.6 2.6 0 0 1 1.084 1.056c.26.48.391 1.019.38 1.564.01.548-.12 1.088-.38 1.57Zm-1.564-.302a1.674 1.674 0 0 0 .472-1.268 1.668 1.668 0 0 0-.472-1.266 1.834 1.834 0 0 0-1.322-.452h-.69v3.436h.69c.483.03.957-.132 1.322-.45Zm6.689-4.262v1.159h-2.465v1.317h1.904v1.106h-1.904v2.432h-1.456v-6.014h3.922Z"
|
||||
fill="#fff" />
|
||||
<path
|
||||
d="M25.753 11.773h-3.536c-.616 0-1.116.5-1.116 1.116v3.536c0 .617.5 1.116 1.116 1.116h3.536c.616 0 1.116-.5 1.116-1.116V12.89c0-.616-.5-1.116-1.116-1.116Z"
|
||||
fill="#FF3E4C" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M0 0h39.998v48H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
48
002_source/cms/public/assets/icon-png.svg
Normal file
@@ -0,0 +1,48 @@
|
||||
<svg width="41" height="48" viewBox="0 0 41 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_11823_127803)">
|
||||
<g opacity="0.3">
|
||||
<path opacity="0.3"
|
||||
d="M27.9364 9.848C26.843 9.84694 25.7947 9.41211 25.0215 8.63894C24.2483 7.86577 23.8135 6.81743 23.8124 5.724V0H5.38444C3.95704 0 2.58812 0.567034 1.5788 1.57635C0.569476 2.58568 0.00244141 3.9546 0.00244141 5.38199V37.826C0.00456108 39.252 0.572525 40.6189 1.58162 41.6265C2.59071 42.6341 3.95843 43.2 5.38444 43.2H27.5064C28.9328 43.2 30.3008 42.6338 31.31 41.6258C32.3191 40.6177 32.8869 39.2504 32.8884 37.824V9.848H27.9364Z"
|
||||
fill="#005FAD" />
|
||||
</g>
|
||||
<path
|
||||
d="M32.8885 9.848H27.9365C26.8431 9.84694 25.7947 9.41211 25.0216 8.63894C24.2484 7.86577 23.8136 6.81743 23.8125 5.724V0L32.8885 9.848Z"
|
||||
fill="#005FAD" />
|
||||
<path
|
||||
d="M36.7906 34.1201H11.7826C10.0086 34.1201 8.57056 35.5582 8.57056 37.3321V44.7881C8.57056 46.562 10.0086 48.0001 11.7826 48.0001H36.7906C38.5645 48.0001 40.0026 46.562 40.0026 44.7881V37.3321C40.0026 35.5582 38.5645 34.1201 36.7906 34.1201Z"
|
||||
fill="#005FAD" />
|
||||
<path d="M15.8144 42.6741V44.1281H14.3083V42.6741H15.8144Z" fill="white" />
|
||||
<path
|
||||
d="M18.0263 42.02V44.128H16.5703V38.114H18.9263C19.6423 38.114 20.187 38.2913 20.5603 38.646C20.7498 38.8319 20.8979 39.0557 20.9947 39.3029C21.0916 39.55 21.1351 39.8149 21.1223 40.08C21.1286 40.4298 21.0416 40.775 20.8703 41.08C20.6966 41.3785 20.4375 41.6182 20.1263 41.768C19.7521 41.9465 19.3407 42.0329 18.9263 42.02H18.0263ZM19.6423 40.08C19.6423 39.5467 19.3503 39.28 18.7663 39.28H18.0263V40.846H18.7663C19.3503 40.8513 19.6423 40.596 19.6423 40.08Z"
|
||||
fill="white" />
|
||||
<path
|
||||
d="M27.1785 44.128H25.7245L23.2885 40.436V44.128H21.8345V38.114H23.2885L25.7225 41.84V38.114H27.1765L27.1785 44.128Z"
|
||||
fill="white" />
|
||||
<path
|
||||
d="M32.8604 38.6C33.3457 38.9632 33.6718 39.5 33.7704 40.098H32.2304C32.1294 39.8838 31.9673 39.7043 31.7644 39.582C31.5353 39.4462 31.2728 39.3769 31.0064 39.382C30.7995 39.3735 30.5932 39.4104 30.4021 39.4902C30.211 39.5701 30.0398 39.6908 29.9004 39.844C29.6082 40.1952 29.4596 40.6439 29.4844 41.1C29.4844 41.672 29.6304 42.1114 29.9224 42.4181C30.0865 42.5774 30.2822 42.7006 30.4968 42.7798C30.7114 42.8591 30.9401 42.8925 31.1684 42.8781C31.4947 42.8837 31.814 42.7833 32.0784 42.5921C32.3477 42.3904 32.542 42.1047 32.6304 41.7801H30.7944V40.734H33.8484V42.2C33.7301 42.5577 33.5448 42.8897 33.3024 43.1781C33.0406 43.4885 32.7144 43.7383 32.3464 43.91C31.9292 44.1027 31.4739 44.1984 31.0144 44.1901C30.4562 44.2042 29.9042 44.0703 29.4144 43.8021C28.9663 43.5508 28.6013 43.174 28.3644 42.7181C28.1109 42.227 27.9838 41.6806 27.9944 41.1281C27.9824 40.5722 28.1096 40.0222 28.3644 39.5281C28.601 39.0732 28.9643 38.6967 29.4104 38.444C29.8931 38.1782 30.4376 38.045 30.9884 38.058C31.6554 38.0253 32.3141 38.2161 32.8604 38.6Z"
|
||||
fill="white" />
|
||||
<path d="M10.9424 13.344H8.19238V16.094H10.9424V13.344Z" fill="#005FAD" />
|
||||
<path d="M13.6943 16.094H10.9443V18.844H13.6943V16.094Z" fill="#005FAD" />
|
||||
<path d="M16.4443 13.344H13.6943V16.094H16.4443V13.344Z" fill="#005FAD" />
|
||||
<path d="M19.1943 16.094H16.4443V18.844H19.1943V16.094Z" fill="#005FAD" />
|
||||
<path d="M21.9485 13.344H19.1985V16.094H21.9485V13.344Z" fill="#005FAD" />
|
||||
<path d="M24.6985 16.094H21.9485V18.844H24.6985V16.094Z" fill="#005FAD" />
|
||||
<path d="M10.9424 18.8401H8.19238V21.5901H10.9424V18.8401Z" fill="#005FAD" />
|
||||
<path d="M13.6943 21.5901H10.9443V24.3401H13.6943V21.5901Z" fill="#005FAD" />
|
||||
<path d="M16.4443 18.8401H13.6943V21.5901H16.4443V18.8401Z" fill="#005FAD" />
|
||||
<path d="M19.1943 21.5901H16.4443V24.3401H19.1943V21.5901Z" fill="#005FAD" />
|
||||
<path d="M21.9485 18.8401H19.1985V21.5901H21.9485V18.8401Z" fill="#005FAD" />
|
||||
<path d="M24.6985 21.5901H21.9485V24.3401H24.6985V21.5901Z" fill="#005FAD" />
|
||||
<path d="M10.9424 24.3621H8.19238V27.1121H10.9424V24.3621Z" fill="#005FAD" />
|
||||
<path d="M13.6943 27.1121H10.9443V29.8621H13.6943V27.1121Z" fill="#005FAD" />
|
||||
<path d="M16.4443 24.3621H13.6943V27.1121H16.4443V24.3621Z" fill="#005FAD" />
|
||||
<path d="M19.1943 27.1121H16.4443V29.8621H19.1943V27.1121Z" fill="#005FAD" />
|
||||
<path d="M21.9485 24.3621H19.1985V27.1121H21.9485V24.3621Z" fill="#005FAD" />
|
||||
<path d="M24.6985 27.1121H21.9485V29.8621H24.6985V27.1121Z" fill="#005FAD" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_11823_127803">
|
||||
<rect width="40" height="48" fill="white" transform="translate(0.00244141)" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 4.5 KiB |
27
002_source/cms/public/assets/icon-svg.svg
Normal file
@@ -0,0 +1,27 @@
|
||||
<svg width="41" height="48" viewBox="0 0 41 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#a)">
|
||||
<path opacity=".3"
|
||||
d="M27.934 9.848a4.128 4.128 0 0 1-4.123-4.124V0H5.384A5.384 5.384 0 0 0 0 5.384v32.442a5.384 5.384 0 0 0 5.385 5.384h22.12a5.383 5.383 0 0 0 5.381-5.384V9.85l-4.952-.002Z"
|
||||
fill="#FF9908" />
|
||||
<path
|
||||
d="M32.886 9.848h-4.951a4.128 4.128 0 0 1-4.124-4.124V0l9.075 9.848ZM36.79 34.12H11.784a3.212 3.212 0 0 0-3.212 3.212v7.456A3.212 3.212 0 0 0 11.783 48H36.79a3.212 3.212 0 0 0 3.212-3.212v-7.456a3.212 3.212 0 0 0-3.212-3.212Z"
|
||||
fill="#FF9908" />
|
||||
<path
|
||||
d="M16 42.674v1.456h-1.506v-1.456H16Zm4.836.638a1.7 1.7 0 0 1-.714.638c-.358.168-.75.25-1.146.238a2.696 2.696 0 0 1-1.666-.492 1.779 1.779 0 0 1-.714-1.378h1.548a.814.814 0 0 0 .242.536.746.746 0 0 0 .532.2.62.62 0 0 0 .442-.152.534.534 0 0 0 .162-.4.528.528 0 0 0-.15-.384 1.128 1.128 0 0 0-.37-.25 8.647 8.647 0 0 0-.612-.234 7.533 7.533 0 0 1-.932-.378 1.71 1.71 0 0 1-.62-.546 1.566 1.566 0 0 1-.26-.94c-.008-.33.087-.654.272-.926.19-.268.451-.476.754-.6.35-.141.724-.21 1.1-.2a2.468 2.468 0 0 1 1.6.476 1.822 1.822 0 0 1 .668 1.28h-1.574a.8.8 0 0 0-.218-.472.635.635 0 0 0-.472-.174.6.6 0 0 0-.412.136.5.5 0 0 0-.158.4.5.5 0 0 0 .142.36c.1.104.22.187.352.244.142.062.346.142.612.238.325.104.64.233.944.386.251.134.467.325.63.558a1.6 1.6 0 0 1 .264.952c.003.312-.082.618-.246.884Zm2.174-5.196 1.47 4.524 1.472-4.524h1.558l-2.094 6.014h-1.88l-2.084-6.014h1.558Zm9.738.484c.485.364.812.9.913 1.498h-1.54a1.174 1.174 0 0 0-.469-.514 1.429 1.429 0 0 0-.758-.2 1.416 1.416 0 0 0-1.105.464 1.8 1.8 0 0 0-.417 1.254c0 .572.146 1.011.439 1.318a1.642 1.642 0 0 0 1.245.46c.327.006.646-.094.91-.286.27-.202.465-.487.554-.812h-1.838v-1.046h3.055v1.438c-.118.358-.303.69-.544.978-.264.31-.59.56-.959.732a3.04 3.04 0 0 1-1.33.28 3.166 3.166 0 0 1-1.6-.386 2.642 2.642 0 0 1-1.05-1.086 3.342 3.342 0 0 1-.37-1.6 3.342 3.342 0 0 1 .37-1.59c.237-.455.6-.833 1.046-1.086a3.119 3.119 0 0 1 1.578-.386 3 3 0 0 1 1.87.57Z"
|
||||
fill="#fff" />
|
||||
<path
|
||||
d="M24.607 25.546h-.498a7.623 7.623 0 0 0-7.614-7.612 7.62 7.62 0 0 0-7.612 7.612h-.5a8.12 8.12 0 0 1 8.112-8.11 8.12 8.12 0 0 1 8.112 8.11Z"
|
||||
fill="#FF9908" />
|
||||
<path
|
||||
d="M28.02 17.436H4.97v.498h23.05v-.498ZM9.428 24.75H7.834v1.594h1.594V24.75Zm15.725 0h-1.594v1.594h1.594V24.75Z"
|
||||
fill="#FF9908" />
|
||||
<path
|
||||
d="M17.29 16.862h-1.593v1.594h1.594v-1.594ZM4.943 18.458a.798.798 0 1 0 0-1.596.798.798 0 0 0 0 1.596Zm23.002 0a.798.798 0 1 0 0-1.596.798.798 0 0 0 0 1.596Z"
|
||||
fill="#FF9908" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M0 0h40.002v48H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
52
002_source/cms/public/assets/iconly-glass-chart.svg
Normal file
@@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="131px" height="130px" viewBox="0 0 131 130" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>iconly-glass-chart</title>
|
||||
<defs>
|
||||
<filter x="-50.8%" y="-49.2%" width="201.7%" height="198.4%" filterUnits="objectBoundingBox" id="filter-1">
|
||||
<feGaussianBlur stdDeviation="10" in="SourceGraphic"></feGaussianBlur>
|
||||
</filter>
|
||||
<linearGradient x1="100%" y1="-3.79904441e-14%" x2="-2.46330734e-14%" y2="100%" id="linearGradient-2">
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.25" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="62.1658583%" y1="54.1412339%" x2="3.148513%" y2="111.698035%" id="linearGradient-3">
|
||||
<stop stop-color="#FFA78F" offset="0%"></stop>
|
||||
<stop stop-color="#F23E2C" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="55.9818593%" y1="56.6964381%" x2="-18.0155559%" y2="92.8377161%" id="linearGradient-4">
|
||||
<stop stop-color="#FFA78F" offset="0%"></stop>
|
||||
<stop stop-color="#F23E2C" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<filter x="-37.5%" y="-33.8%" width="175.0%" height="167.6%" filterUnits="objectBoundingBox" id="filter-5">
|
||||
<feGaussianBlur stdDeviation="8" in="SourceGraphic"></feGaussianBlur>
|
||||
</filter>
|
||||
<linearGradient x1="-13.7175%" y1="73.474375%" x2="25.6109375%" y2="161.54375%" id="linearGradient-6">
|
||||
<stop stop-color="#FFFFFF" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<path d="M22.4813484,2.48689958e-14 C20.5721813,2.48689958e-14 19,1.5169209 19,3.39498939 L19,44.6410749 C19,46.4830791 20.5721813,48 22.4813484,48 C24.4278187,48 26,46.4830791 26,44.6410749 L26,3.39498939 C26,1.5169209 24.4278187,2.48689958e-14 22.4813484,2.48689958e-14 Z M3.48124364,13 C1.57218131,13 -1.77635684e-14,14.4874907 -1.77635684e-14,16.3292214 L-1.77635684e-14,43.7062423 C-1.77635684e-14,45.5125093 1.57218131,47 3.48124364,47 C5.42781869,47 7,45.5125093 7,43.7062423 L7,16.3292214 C7,14.4874907 5.42781869,13 3.48124364,13 Z M37,31.4057582 C37,29.5217325 38.5721813,28 40.5187564,28 C42.4278187,28 44,29.5217325 44,31.4057582 L44,44.6304205 C44,46.4782675 42.4278187,48 40.4812436,48 C38.5721813,48 37,46.4782675 37,44.6304205 L37,31.4057582 Z" id="path-7"></path>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="iconly-glass-chart" transform="translate(18.000000, 17.000000)">
|
||||
<g id="Group" opacity="0.5" transform="translate(12.000000, 13.000000)" fill="#FF624D" fill-rule="nonzero">
|
||||
<path d="M58.2186794,36.0981584 L51.7114845,11.4327961 C49.3511926,2.48608174 43.4437864,-1.52554587 35.6763276,0.526386047 L9.36892852,7.4759119 C1.47411793,9.56144772 -1.58292142,15.941203 0.777370451,24.8879173 L7.2845654,49.55318 C9.68292328,58.6441817 15.4496247,62.5355532 23.3444353,60.4500174 L49.651934,53.5003918 C57.4192932,51.4485596 60.6170373,45.1890604 58.2186794,36.0981584 Z" id="Path" filter="url(#filter-1)"></path>
|
||||
</g>
|
||||
<g id="Group" transform="translate(25.000000, 18.000000)" fill="#FFAC95" fill-opacity="0.35" fill-rule="nonzero" stroke="url(#linearGradient-2)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
|
||||
<path d="M58.7025725,0 L21.3334672,0 C7.71559794,0 0,7.71554953 0,21.3333333 L0,58.6666667 C0,72.2844505 7.71559794,80 21.3334672,80 L58.7025725,80 C72.3204417,80 80,72.2844505 80,58.6666667 L80,21.3333333 C80,7.71554953 72.3204417,0 58.7025725,0" id="Path"></path>
|
||||
</g>
|
||||
<path d="M16.1663238,10.7217215 L52.3373389,1.04684696 C65.518591,-2.47883652 74.9534146,2.98715572 78.4849855,16.1439344 L79,18.0625945 L46.3395327,18.0625945 C32.6945664,18.0625945 24.9636158,25.7799096 24.9636158,39.4008096 L24.9636158,76.7426861 C24.9636158,81.6098251 25.950794,85.723176 27.8421645,89 C19.4085008,88.3664044 13.3887663,82.8261077 10.7312112,72.9255486 L1.04938175,36.8560848 C-2.48219316,23.6993864 2.98512197,14.2474652 16.1663238,10.7217215 Z" id="Path" fill="url(#linearGradient-3)" fill-rule="nonzero"></path>
|
||||
<g id="Group" opacity="0.5" transform="translate(25.000000, 18.000000)" fill="url(#linearGradient-4)" fill-rule="nonzero">
|
||||
<path d="M53.8209356,0 L21.2907285,0 C7.70014081,0 0,7.71746194 0,21.3386211 L0,58.681208 C0,63.5484396 0.983243972,67.6619692 2.8670769,70.9387551 C5.62975803,71.147213 8.6526271,70.8247861 11.9019208,69.9521948 L47.9287855,60.277076 C61.057507,56.7513656 66.4687552,47.3085026 62.9512585,34.1514535 L53.8209356,0 Z" id="Path" filter="url(#filter-5)"></path>
|
||||
</g>
|
||||
<g id="Group" transform="translate(44.000000, 35.000000)">
|
||||
<path d="M22.4813484,2.48689958e-14 C20.5721813,2.48689958e-14 19,1.5169209 19,3.39498939 L19,44.6410749 C19,46.4830791 20.5721813,48 22.4813484,48 C24.4278187,48 26,46.4830791 26,44.6410749 L26,3.39498939 C26,1.5169209 24.4278187,2.48689958e-14 22.4813484,2.48689958e-14 Z M3.48124364,13 C1.57218131,13 -1.77635684e-14,14.4874907 -1.77635684e-14,16.3292214 L-1.77635684e-14,43.7062423 C-1.77635684e-14,45.5125093 1.57218131,47 3.48124364,47 C5.42781869,47 7,45.5125093 7,43.7062423 L7,16.3292214 C7,14.4874907 5.42781869,13 3.48124364,13 Z M37,31.4057582 C37,29.5217325 38.5721813,28 40.5187564,28 C42.4278187,28 44,29.5217325 44,31.4057582 L44,44.6304205 C44,46.4782675 42.4278187,48 40.4812436,48 C38.5721813,48 37,46.4782675 37,44.6304205 L37,31.4057582 Z" id="Shape" fill="url(#linearGradient-6)"></path>
|
||||
<g id="Clipped">
|
||||
<mask id="mask-8" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
<g id="Shape"></g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.0 KiB |
49
002_source/cms/public/assets/iconly-glass-discount.svg
Normal file
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="115px" height="115px" viewBox="0 0 115 115" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>iconly-glass-discount</title>
|
||||
<defs>
|
||||
<linearGradient x1="-0.915095744%" y1="-1.30840384%" x2="79.9869931%" y2="91.2288991%" id="linearGradient-1">
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.4" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="55.6822546%" y1="6.0697596e-06%" x2="55.6822546%" y2="111.35527%" id="linearGradient-2">
|
||||
<stop stop-color="#FFB37F" offset="0%"></stop>
|
||||
<stop stop-color="#FF7B0D" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="49.9999571%" y1="-7.31134185e-05%" x2="49.9999571%" y2="100%" id="linearGradient-3">
|
||||
<stop stop-color="#FFB37F" offset="0%"></stop>
|
||||
<stop stop-color="#FF7B0D" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<filter x="-35.8%" y="-35.8%" width="171.6%" height="171.6%" filterUnits="objectBoundingBox" id="filter-4">
|
||||
<feGaussianBlur stdDeviation="8" in="SourceGraphic"></feGaussianBlur>
|
||||
</filter>
|
||||
<linearGradient x1="92.8967921%" y1="18.0582143%" x2="-18.4777514%" y2="21.6889286%" id="linearGradient-5">
|
||||
<stop stop-color="#FFFFFF" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<path d="M6.04366248,26.944 C5.39242399,27.6345 4.49709626,28 3.52033868,28 C2.58434611,28 1.68901838,27.6345 1.03777989,26.944 C-0.345926629,25.5632 -0.345926629,23.2888 1.03777989,21.908 L21.9564377,1.0326 C23.3401442,-0.3442 25.5785136,-0.3442 26.9622201,1.0326 C28.3459266,2.4135 28.3459266,4.6919 26.9622201,6.0727 L6.04366248,26.944 Z M24.5200332,28 C22.5600293,28 21,26.4400124 21,24.4800557 C21,22.5640257 22.5600293,21 24.5200332,21 C26.4399707,21 28,22.5640257 28,24.4800557 C28,26.4400124 26.4399707,28 24.5200332,28 Z M7,3.48000675 C7,1.55996567 5.44006919,4.92939023e-14 3.52003319,4.92939023e-14 C1.59999719,4.92939023e-14 3.55271368e-14,1.55996567 3.55271368e-14,3.48000675 C3.55271368e-14,5.44397389 1.59999719,7 3.52003319,7 C5.44006919,7 7,5.44397389 7,3.48000675 Z" id="path-6"></path>
|
||||
<linearGradient x1="16.8650027%" y1="12.7152778%" x2="78.8826572%" y2="89.5253472%" id="linearGradient-8">
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.25" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="iconly-glass-discount" transform="translate(10.000000, 10.000000)">
|
||||
<path d="M94.9990752,54.744798 C95.0384372,57.8735491 93.8199202,60.844068 91.6159457,63.0668971 C91.6112262,63.0715832 91.6067076,63.0763691 91.602189,63.0812547 C91.5845163,63.1006972 91.5738724,63.1107674 91.5565009,63.1272188 C91.5427443,63.1402802 91.5247703,63.1573298 91.4956504,63.1862443 L88.5834599,66.0768993 C87.3417474,67.309356 86.6316236,68.9829088 86.6316236,70.7490879 L86.6316236,74.9385036 C86.6316236,81.4215391 81.3190499,86.6986396 74.7875576,86.6986396 L70.5627627,86.6986396 C68.7883569,86.6986396 67.1022144,87.3988696 65.8599998,88.6318249 L62.9068407,91.5631596 C60.5857841,93.8709376 57.5575157,95 54.5251304,95 C51.4930463,95 48.4637738,93.8710373 46.1422151,91.6067308 L43.1494931,88.632124 C41.9070776,87.3988696 40.2209352,86.6986396 38.446429,86.6986396 L34.2217345,86.6986396 C27.6902422,86.6986396 22.3776685,81.4215391 22.3776685,74.9385036 L22.3776685,70.7490879 C22.3776685,68.9814133 21.6667414,67.3117489 20.4319574,66.0424012 L20.4233218,66.0337269 L17.4724722,63.1453651 C12.8685162,58.5783656 12.8299574,51.1140308 17.4326081,46.5100406 L19,45 L19.1286596,44.8683746 C20.4136477,43.5220671 22.8543742,40.0755074 22.8543742,38.3277856 L22.8543742,34.1593549 C22.8543742,27.6521994 28.165276,22.3628461 34.6956081,22.3628461 L38.9192923,22.3628461 C40.6950809,22.3628461 42.3803182,21.6505599 43.6209307,20.4141423 L46.5748895,17.4704196 C51.1756365,12.8500169 58.6902869,12.847715 63.3343017,17.4364917 L66.3263081,20.4141423 C67.567021,21.6505599 69.2522583,22.3628461 71.0279464,22.3628461 L75.2517311,22.3628461 C81.7820632,22.3628461 87.0929649,27.6521994 87.0929649,34.1593549 L87.0929649,38.3727226 C87.0929649,40.1377753 87.8032201,41.8175578 89.0443346,43.0544758 L92,46 C94.2391192,48.1835452 94.9990752,51.6177418 94.9990752,54.744798 Z" id="Combined-Shape" stroke="url(#linearGradient-1)" fill-opacity="0.35" fill="#FFCBB9" fill-rule="nonzero" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M73,22.4271088 L73,20.5521765 C73,13.8036353 67.5105186,8.31935899 60.7604823,8.31935899 L56.5721708,8.31935899 C54.9456836,8.31935899 53.4005257,7.66483521 52.261915,6.5265148 L49.2935435,3.5628336 C44.4953118,-1.19369179 36.7287085,-1.19369179 31.9711912,3.59942226 L29.0434346,6.5265148 C27.9049234,7.66483521 26.3597656,8.31935899 24.7331788,8.31935899 L20.5449668,8.31935899 C13.7949305,8.31935899 8.30544914,13.8036353 8.30544914,20.5521765 L8.30544914,24.698891 C8.30544914,26.3657408 7.65484431,27.9105288 6.51628336,29.0489089 L3.54790193,32.0207044 C-1.20965523,36.8137686 -1.16899056,44.5828099 3.58855665,49.3352533 L6.51628336,52.2217249 C7.65484431,53.4006264 8.30544914,54.945514 8.30544914,56.5757253 L8.30544914,60.7590782 C8.30544914,67.5076195 13.7949305,73 20.5449668,73 L22.4071797,73 L22.4071797,70.6834153 C22.4071797,69.053204 21.756545,67.5083164 20.6180338,66.3294149 L17.6902772,63.4429433 C12.9327599,58.6904999 12.8920455,50.9214586 17.6496623,46.1283944 L20.6180338,43.156599 C21.756545,42.0182188 22.4071797,40.4734308 22.4071797,38.806581 L22.4071797,34.6598666 C22.4071797,27.9113253 27.8966611,22.4271088 34.6466974,22.4271088 L38.8350089,22.4271088 C40.4614961,22.4271088 42.006654,21.7724954 43.1452647,20.6342148 L46.0729217,17.7071222 C50.8305386,12.914058 58.5971419,12.914058 63.3952741,17.6705834 L66.3637451,20.6342148 C67.5022563,21.7724954 69.0474141,22.4271088 70.6739013,22.4271088 L73,22.4271088 Z" id="Path" fill="url(#linearGradient-2)" fill-rule="nonzero"></path>
|
||||
<g id="Group" opacity="0.5" transform="translate(14.000000, 14.000000)" fill="url(#linearGradient-3)" fill-rule="nonzero">
|
||||
<path d="M60.5118227,14.9007768 L63.431108,17.819957 C65.7421386,20.0903642 66.9990463,23.1717872 66.9990463,26.4152544 C67.0396429,29.658821 65.7827353,32.7442157 63.512202,35.0511623 C63.4851045,35.0809498 63.4581063,35.1070636 63.4310088,35.1331773 C63.4175096,35.1462839 63.4040105,35.1592911 63.3905114,35.1727948 L60.5118227,38.0514638 C59.3766057,39.1866675 58.7278535,40.7273789 58.7278535,42.3531835 L58.7278535,46.5252281 C58.7278535,53.2555269 53.2542555,58.7330606 46.5237498,58.7330606 L42.3475568,58.7330606 C40.7257758,58.7330606 39.1850887,59.3776633 38.0497724,60.5129662 L35.1305863,63.4321463 C32.7383625,65.828257 29.6163917,67 26.4944209,67 C23.3724501,67 20.2504793,65.828257 17.8583547,63.4767283 L14.8984727,60.5129662 C13.7632557,59.3776633 12.2225687,58.7330606 10.6006883,58.7330606 L8.28141928,58.7330606 L8.28141928,56.4227381 C8.28141928,54.7969335 7.63266714,53.256222 6.49745016,52.0805073 L3.57816479,49.2018383 C-1.16558707,44.4622415 -1.20618371,36.7142013 3.53766741,31.9340935 L6.49745016,28.9703314 C7.63266714,27.8350285 8.28141928,26.2944163 8.28141928,24.6320723 L8.28141928,20.4965671 C8.28141928,13.7662683 13.7550173,8.29687652 20.485523,8.29687652 L24.661716,8.29687652 C26.2834971,8.29687652 27.8241841,7.64403266 28.9595004,6.50882905 L31.8786865,3.58964893 C36.6225376,-1.19045886 44.3666688,-1.19045886 49.1509181,3.55320883 L52.1107008,6.50882905 C53.2460171,7.64403266 54.7867041,8.29687652 56.4084852,8.29687652 L58.7278535,8.29687652 L58.7278535,10.6070998 C58.7278535,12.2248617 59.3766057,13.7654739 60.5118227,14.9007768 Z" id="Path" filter="url(#filter-4)"></path>
|
||||
</g>
|
||||
<g id="Group" transform="translate(41.000000, 41.000000)">
|
||||
<path d="M6.04366248,26.944 C5.39242399,27.6345 4.49709626,28 3.52033868,28 C2.58434611,28 1.68901838,27.6345 1.03777989,26.944 C-0.345926629,25.5632 -0.345926629,23.2888 1.03777989,21.908 L21.9564377,1.0326 C23.3401442,-0.3442 25.5785136,-0.3442 26.9622201,1.0326 C28.3459266,2.4135 28.3459266,4.6919 26.9622201,6.0727 L6.04366248,26.944 Z M24.5200332,28 C22.5600293,28 21,26.4400124 21,24.4800557 C21,22.5640257 22.5600293,21 24.5200332,21 C26.4399707,21 28,22.5640257 28,24.4800557 C28,26.4400124 26.4399707,28 24.5200332,28 Z M7,3.48000675 C7,1.55996567 5.44006919,4.92939023e-14 3.52003319,4.92939023e-14 C1.59999719,4.92939023e-14 3.55271368e-14,1.55996567 3.55271368e-14,3.48000675 C3.55271368e-14,5.44397389 1.59999719,7 3.52003319,7 C5.44006919,7 7,5.44397389 7,3.48000675 Z" id="Shape" fill="url(#linearGradient-5)"></path>
|
||||
<g id="Clipped">
|
||||
<mask id="mask-7" fill="white">
|
||||
<use xlink:href="#path-6"></use>
|
||||
</mask>
|
||||
<g id="Shape"></g>
|
||||
<path d="M6.64565,27.6415 L6.36275,27.3585 L6.35435,27.3673 L6.64565,27.6415 Z M1.3543,27.64145 L1.6457,27.36715 L1.6371,27.35855 L1.3543,27.64145 Z M1.64135,22.64145 L1.35865,22.35855 L1.35865,22.35855 L1.64135,22.64145 Z M22.6414,1.64165 L22.359,1.35835 L22.3586,1.35875 L22.6414,1.64165 Z M27.3586,1.64165 L27.6414,1.35875 L27.641,1.35835 L27.3586,1.64165 Z M27.3586,6.3585 L27.6413,6.6415 L27.6414,6.6415 L27.3586,6.3585 Z M4,29 C5.1503647,29 6.21981854,28.5311525 7,27.6340307 L6.37822452,27 C5.77053905,27.6989943 4.93154243,28.0752514 4,28.0752514 L4,29 Z M1,27.6340307 C1.78980432,28.5291874 2.87399812,29 4,29 L4,28.0752514 C3.10166799,28.0752514 2.24936819,27.701075 1.63091198,27 L1,27.6340307 Z M1.34203063,22 C-0.447343543,23.6462272 -0.447343543,26.3536657 1.34203063,28 L2,27.3938842 C0.574457873,26.0822578 0.574457873,23.9176351 2,22.6060087 L1.34203063,22 Z M22.4200189,1 L1,22.4194541 L1.57998107,23 L23,1.58054586 L22.4200189,1 Z M28,1.33958855 C26.3413871,-0.446529518 23.658505,-0.446529518 22,1.33958855 L22.6091037,2 C23.9308597,0.576607028 26.0690325,0.576607028 27.3907885,2 L28,1.33958855 Z M27.6580762,7 C29.4473079,5.35486978 29.4473079,2.64513022 27.6580762,1 L27,1.60556547 C28.4255214,2.91623261 28.4255214,5.08366036 27,6.39432751 L27.6580762,7 Z M6.57998107,28 L28,6.58075682 L27.4200189,6 L6,27.4192432 L6.57998107,28 Z M21,25 C21,27.2256222 22.7746812,29 25,29 L25,28.1947457 C23.2188797,28.1947457 21.8048897,26.7805179 21.8048897,25 L21,25 Z M25,21 C22.7773977,21 21,22.7940713 21,25 L21.8048897,25 C21.8048897,23.2491483 23.2161632,21.8135455 25,21.8135455 L25,21 Z M29,25 C29,22.7971221 27.2072681,21 25,21 L25,21.8135455 C26.7578653,21.8135455 28.1867853,23.2461992 28.1867853,25 L29,25 Z M25,29 C27.2099111,29 29,27.2226025 29,25 L28.1867853,25 C28.1867853,26.7835376 26.7551207,28.1947457 25,28.1947457 L25,29 Z M4,0.813545533 C5.75817027,0.813545533 7.18678526,2.24233488 7.18678526,4 L8,4 C8,1.79264758 6.20696315,1.59872116e-14 4,1.59872116e-14 L4,0.813545533 Z M0.804889705,4 C0.804889705,2.24833477 2.25379179,0.813545533 4,0.813545533 L4,1.59872116e-14 C1.82156601,1.59872116e-14 -6.57252031e-14,1.78664768 -6.57252031e-14,4 L0.804889705,4 Z M4,7.19476598 C2.25650829,7.19476598 0.804889705,5.78137896 0.804889705,4 L-6.57252031e-14,4 C-6.57252031e-14,6.23291394 1.81884951,8 4,8 L4,7.19476598 Z M7.18678526,4 C7.18678526,5.78731756 5.75542567,7.19476598 4,7.19476598 L4,8 C6.20970775,8 8,6.22697534 8,4 L7.18678526,4 Z" id="Shape" fill="url(#linearGradient-8)" fill-rule="nonzero" mask="url(#mask-7)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
27
002_source/cms/public/assets/iconly-glass-info.svg
Normal file
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="107px" height="105px" viewBox="0 0 107 105" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>iconly-glass-info</title>
|
||||
<defs>
|
||||
<linearGradient x1="100%" y1="-3.79904441e-14%" x2="-2.46330734e-14%" y2="100%" id="linearGradient-1">
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.25" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<filter x="-55.8%" y="-42.1%" width="211.6%" height="184.2%" filterUnits="objectBoundingBox" id="filter-2">
|
||||
<feGaussianBlur stdDeviation="8" in="SourceGraphic"></feGaussianBlur>
|
||||
</filter>
|
||||
<linearGradient x1="48.826724%" y1="11.0507813%" x2="50.8290475%" y2="95.9027344%" id="linearGradient-3">
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.25" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="iconly-glass-info" transform="translate(1.000000, 17.000000)" fill-rule="nonzero">
|
||||
<path d="M0,46.4999498 C0,24.1481764 18.1441599,6 40.4999498,6 C62.8965075,6 81,24.1478751 81,46.4999498 C81,68.8602583 62.8965075,87 40.4999498,87 C18.1440594,87 0,68.8598567 0,46.4999498 Z" id="Path" stroke="url(#linearGradient-1)" stroke-width="2" fill-opacity="0.35" fill="#3EA0FE" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M50,7.19687424 C55.4903821,2.69932897 62.5047477,0 70.1444751,0 C87.7605253,0 102,14.3002036 102,31.9129738 C102,47.0414188 91.5018455,59.7182493 77.3821273,63 C79.5570564,58.0105063 80.7629834,52.5000332 80.7629834,46.7079282 C80.7629834,27.6433171 67.6884218,11.6202119 50,7.19687424 Z" id="Path" fill="#4096FE"></path>
|
||||
<g id="Group" opacity="0.5" transform="translate(39.000000, 7.000000)" fill="#4096FE">
|
||||
<path d="M39.5772699,56.1686423 C41.7791369,51.1464668 43,45.5998996 43,39.7698557 C43,20.5802689 29.763401,4.45231097 11.8559978,0 C4.6208167,5.89268185 0,14.852112 0,24.8779927 C0,42.6125529 14.4479887,57 32.2499748,57 C34.7711166,57 37.223828,56.712508 39.5772699,56.1686423 Z" id="Path" filter="url(#filter-2)"></path>
|
||||
</g>
|
||||
<path d="M40.5200115,28 C38.6000144,28 37,29.6247841 37,31.5656315 L37,49.4748485 C37,51.4237719 38.6000144,53 40.5200115,53 C42.4400086,53 44,51.4237719 44,49.4748485 L44,31.5656315 C44,29.6247841 42.4400086,28 40.5200115,28 Z M37,62.4800191 C37,64.399955 38.5599914,66 40.5200115,66 C42.4400086,66 44,64.399955 44,62.4800191 C44,60.5599848 42.4400086,59 40.4799885,59 C38.5599914,59 37,60.5599848 37,62.4800191 Z" id="Combined-Shape" stroke="url(#linearGradient-3)" stroke-width="0.4" fill-opacity="0.9" fill="#FFFFFF"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
57
002_source/cms/public/assets/iconly-glass-paper.svg
Normal file
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="102px" height="111px" viewBox="0 0 102 111" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>iconly-glass-paper</title>
|
||||
<defs>
|
||||
<linearGradient x1="25.0126345%" y1="11.1701835%" x2="81.2232254%" y2="80.6344021%" id="linearGradient-1">
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.25" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="71.7756876%" y1="0%" x2="71.7756876%" y2="100.498122%" id="linearGradient-2">
|
||||
<stop stop-color="#BC94FF" offset="0%"></stop>
|
||||
<stop stop-color="#9F66FF" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="71.7755548%" y1="0%" x2="71.7755548%" y2="100.49819%" id="linearGradient-3">
|
||||
<stop stop-color="#BC94FF" offset="0%"></stop>
|
||||
<stop stop-color="#9F66FF" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<filter x="-44.4%" y="-38.1%" width="188.9%" height="176.2%" filterUnits="objectBoundingBox" id="filter-4">
|
||||
<feGaussianBlur stdDeviation="8" in="SourceGraphic"></feGaussianBlur>
|
||||
</filter>
|
||||
<linearGradient x1="93.5318841%" y1="22.0278998%" x2="-19.4536232%" y2="25.7156808%" id="linearGradient-5">
|
||||
<stop stop-color="#FFFFFF" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="15.4242754%" y1="16.4162349%" x2="74.4315217%" y2="89.5793985%" id="linearGradient-6">
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.25" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="92.9099945%" y1="18.0580825%" x2="-18.4804989%" y2="21.6900745%" id="linearGradient-7">
|
||||
<stop stop-color="#FFFFFF" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<path d="M8.09599952,19.9682806 C10.8936994,19.9954805 14.7831991,20.0071805 18.0825989,19.9954805 C19.7724988,19.9915805 20.6314988,18.0353848 19.4593989,16.8569874 C15.2206991,12.5867968 7.63849955,4.94481357 3.29939981,0.573423164 C2.09929988,-0.636074181 0,0.196223992 0,1.87242031 L0,12.1239978 C0,16.4252884 3.65669978,19.9682806 8.09599952,19.9682806" id="path-8"></path>
|
||||
<linearGradient x1="17.2262309%" y1="13.1196476%" x2="78.5507863%" y2="89.0905922%" id="linearGradient-10">
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.25" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="iconly-glass-paper" transform="translate(9.000000, 6.000000)">
|
||||
<path d="M33.1241068,18 L62.9641439,18 L84,40.5784171 L84,80.8153989 C84,90.8594509 75.9225772,99 65.9563654,99 L33.9679612,99 C23.5195182,99 15,90.454461 15,79.9244209 L15,36.265499 C15,26.2214469 23.1176589,18 33.1241068,18 Z" id="Path" fill-opacity="0.35" fill="#BA90FF" fill-rule="nonzero"></path>
|
||||
<path d="M33.6232893,19 L63.2462659,19 L84,41.2748867 L84,81.3157368 C84,91.0881079 76.142129,99 66.4571869,99 L34.4671859,99 C24.2985837,99 16,90.6817101 16,80.4247453 L16,36.7651623 C16,26.9920903 23.8988115,19 33.6232893,19 Z" id="Path" stroke="url(#linearGradient-1)" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M18.0437349,0 C8.07742276,0 0,8.18085672 0,18.2747657 L0,62.2333123 C0,71.46915 6.48955161,79.1859559 15.0871339,81 C15.0858295,80.9076326 15.0852274,80.8150639 15.0852274,80.7223946 L15.0852274,36.8466567 C15.0852274,26.7528484 23.2028863,18.4905916 33.2092338,18.4905916 L63.0493714,18.4905916 L69,24.9092226 L69,19.1701664 C69,8.58795763 60.4804818,0 50.0320388,0 L18.0437349,0 Z" id="Path" fill="url(#linearGradient-2)" fill-rule="nonzero"></path>
|
||||
<path d="M69,24.4276194 L69,62.7000307 C69,72.8078156 60.9097232,81 50.9277756,81 L18.8888643,81 C17.5574689,81 16.2572279,80.860854 15.00201,80.5960634 C15.0007035,80.5034673 15,80.4107705 15,80.3179729 L15,36.3815828 C15,26.2736972 23.130476,18 33.1527232,18 L63.0398753,18 L69,24.4276194 Z" id="Path" fill="url(#linearGradient-3)" fill-rule="nonzero" filter="url(#filter-4)"></path>
|
||||
<path d="M35.9301093,50 L50.0698907,50 C51.6718649,50 53,51.372392 53,53.021654 C53,54.6670377 51.6754939,56 50.0698907,56 L35.9301093,56 C34.3245061,56 33,54.6670377 33,53.021654 C33,51.372392 34.3281351,50 35.9301093,50 Z M58.1331345,76 L35.8668655,76 C34.2994685,76 33,74.627608 33,72.978346 C33,71.3329623 34.2959177,70 35.8668655,70 L58.1331345,70 C59.7040823,70 61,71.3329623 61,72.978346 C61,74.627608 59.7005315,76 58.1331345,76 Z" id="Shape" stroke="url(#linearGradient-6)" stroke-width="0.4" fill="url(#linearGradient-5)" fill-rule="nonzero"></path>
|
||||
<g id="Group" transform="translate(58.000000, 23.000000)">
|
||||
<path d="M8.09599952,19.9682806 C10.8936994,19.9954805 14.7831991,20.0071805 18.0825989,19.9954805 C19.7724988,19.9915805 20.6314988,18.0353848 19.4593989,16.8569874 C15.2206991,12.5867968 7.63849955,4.94481357 3.29939981,0.573423164 C2.09929988,-0.636074181 0,0.196223992 0,1.87242031 L0,12.1239978 C0,16.4252884 3.65669978,19.9682806 8.09599952,19.9682806" id="Path" fill="url(#linearGradient-7)" fill-rule="nonzero"></path>
|
||||
<g id="Clipped">
|
||||
<mask id="mask-9" fill="white">
|
||||
<use xlink:href="#path-8"></use>
|
||||
</mask>
|
||||
<g id="Path"></g>
|
||||
<path d="M18.5007,20.7 L18.4998,20.3 L18.4993,20.3 L18.5007,20.7 Z M19.64195,17.35895 L19.35805,17.64075 L19.35835,17.64105 L19.64195,17.35895 Z M3.64195,1.3591 L3.35805,1.6409 L3.35805,1.6409 L3.64195,1.3591 Z M9,20.8841403 C11.8018695,20.9113403 15.6962239,20.9230403 19,20.9113403 L18.9970976,20.1113403 C15.6966243,20.1230403 11.8057727,20.1113403 9.00770624,20.0841403 L9,20.8841403 Z M19.0016365,21 C20.7384726,20.995184 21.6735993,18.5187143 20.430898,17 L19.9423617,17.5906926 C20.7187486,18.5394441 20.1741409,20.1591897 19,20.1624352 L19.0016365,21 Z M20,17.4312883 C15.6893794,13.1193314 7.98979543,5.41407474 3.57703942,1 L3,1.56871171 C7.40655675,5.97663113 15.1183359,13.6940975 19.4229606,18 L20,17.4312883 Z M4,0.60800052 C2.55691118,-0.667404584 4.17443857e-14,0.191290104 4.17443857e-14,2 L0.803333835,2 C0.803333835,0.856512099 2.46251946,0.249323106 3.42973339,1.10423112 L4,0.60800052 Z M0.1,2 L0.1,12 L0.9,12 L0.9,2 L0.1,2 Z M1.14575016e-13,13 C1.14575016e-13,17.3997429 4.07605932,21 9,21 L9,20.2237061 C4.51864407,20.2237061 0.847457627,16.9480368 0.847457627,13 L1.14575016e-13,13 Z" id="Shape" fill="url(#linearGradient-10)" fill-rule="nonzero" mask="url(#mask-9)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.0 KiB |
49
002_source/cms/public/assets/iconly-glass-shield.svg
Normal file
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="98px" height="100px" viewBox="0 0 98 100" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>iconly-glass-shield</title>
|
||||
<defs>
|
||||
<linearGradient x1="17.0386867%" y1="-6.38120317%" x2="94.525542%" y2="92.8462284%" id="linearGradient-1">
|
||||
<stop stop-color="#72DC60" offset="0%"></stop>
|
||||
<stop stop-color="#72DC60" stop-opacity="0.35" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<path d="M29.1510435,80.966753 C28.6504482,80.8898741 28.1675811,80.6980775 27.7518206,80.3948665 L14.3540361,70.6263494 C10.552597,67.8522047 7.69085064,64.9548336 5.59812602,61.7700678 C1.01694812,54.804525 -0.847213392,46.480389 0.357300163,38.327829 L4.31158215,11.4934116 C4.7674063,8.39623565 7.1928595,5.92630286 10.3408606,5.33950113 L38.5028002,0.134163321 C40.17706,-0.188367418 41.9485743,0.0758034755 43.4800072,0.870818723 L68.9260321,13.9916735 C71.7755591,15.4555746 73.3811097,18.5250222 72.922381,21.6175935 L68.9648939,48.4718311 C67.7662897,56.6131796 63.5864494,64.0406962 57.1979002,69.3890807 C54.2668438,71.8421962 50.6891601,73.7862898 46.2640301,75.3364794 L30.6524286,80.8204029 C30.1675583,80.9932802 29.6522397,81.0397278 29.1510435,80.966753" id="path-2"></path>
|
||||
<linearGradient x1="28.0810486%" y1="8.34560249%" x2="76.1511937%" y2="84.8880817%" id="linearGradient-4">
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.25" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="71.6759622%" y1="-13.817554%" x2="47.9936283%" y2="88.7775044%" id="linearGradient-5">
|
||||
<stop stop-color="#9BF763" offset="0%"></stop>
|
||||
<stop stop-color="#26AB5B" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="76.1656565%" y1="-3.91312247%" x2="23.6940868%" y2="55.3869795%" id="linearGradient-6">
|
||||
<stop stop-color="#9BF763" offset="0%"></stop>
|
||||
<stop stop-color="#26AB5B" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<filter x="-70.6%" y="-51.1%" width="241.2%" height="202.1%" filterUnits="objectBoundingBox" id="filter-7">
|
||||
<feGaussianBlur stdDeviation="8" in="SourceGraphic"></feGaussianBlur>
|
||||
</filter>
|
||||
<linearGradient x1="92.6468695%" y1="39.1791898%" x2="-14.5977399%" y2="32.1897914%" id="linearGradient-8">
|
||||
<stop stop-color="#FFFFFF" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="iconly-glass-shield" transform="translate(0.000000, 12.000000)">
|
||||
<path d="M54.1510435,87.966753 C53.6504482,87.8898741 53.1675811,87.6980775 52.7518206,87.3948665 L39.3540361,77.6263494 C35.552597,74.8522047 32.6908506,71.9548336 30.598126,68.7700678 C26.0169481,61.804525 24.1527866,53.480389 25.3573002,45.327829 L29.3115821,18.4934116 C29.7674063,15.3962356 32.1928595,12.9263029 35.3408606,12.3395011 L63.5028002,7.13416332 C65.17706,6.81163258 66.9485743,7.07580348 68.4800072,7.87081872 L93.9260321,20.9916735 C96.7755591,22.4555746 98.3811097,25.5250222 97.922381,28.6175935 L93.9648939,55.4718311 C92.7662897,63.6131796 88.5864494,71.0406962 82.1979002,76.3890807 C79.2668438,78.8421962 75.6891601,80.7862898 71.2640301,82.3364794 L55.6524286,87.8204029 C55.1675583,87.9932802 54.6522397,88.0397278 54.1510435,87.966753" id="Path" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
|
||||
<g id="Clipped" transform="translate(25.000000, 7.000000)">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-2"></use>
|
||||
</mask>
|
||||
<g id="Path"></g>
|
||||
<path d="M29,81.9881589 C29.47381,82.0726459 29.9168949,81.6959749 29.9898021,81.1470109 C30.0626225,80.5979463 29.7376647,80.0843864 29.2638546,80 L29,81.9881589 Z M28.2053,79.90395 L28.7947,79.09615 L28.7947,79.09605 L28.2053,79.90395 Z M14.79485,71.09605 L14.20515,71.90365 L14.20545,71.90395 L14.79485,71.09605 Z M6.0821,61.7746 L6.9179,61.2257 L6.9177,61.2254 L6.0821,61.7746 Z M0.00535,38.42695 L0.99465,38.57305 L0.99465,38.57265 L0.00535,38.42695 Z M4.0053,11.42715 L4.9947,11.57285 L4.9947,11.57265 L4.0053,11.42715 Z M10.59165,4.99165 L10.40975,4.00835 L10.40835,4.00865 L10.59165,4.99165 Z M38.4054,0.0083 L38.5872,0.9917 L38.5946,0.9903 L38.4054,0.0083 Z M43.7305,1.05565 L43.2695,1.94315 L43.272,1.94435 L43.7305,1.05565 Z M68.72925,14.0553 L68.27075,14.944 L68.27205,14.9447 L68.72925,14.0553 Z M72.9945,21.5734 L72.0055,21.4266 L72.0055,21.4277 L72.9945,21.5734 Z M68.99465,48.57285 L68.00535,48.42715 L68.00535,48.42725 L68.99465,48.57285 Z M57.1789,69.11665 L57.8209,69.88335 L57.8211,69.88325 L57.1789,69.11665 Z M46.6658,74.97185 L46.335,74.02815 L46.3342,74.02845 L46.6658,74.97185 Z M30.668,80.9717 L30.3364,80.0283 L30.332,80.0299 L30.668,80.9717 Z M29,80.010627 C28.5224455,79.9306138 28.0788835,80.3110785 28.0092383,80.8604152 C27.9396805,81.409752 28.2704296,81.9199868 28.7479841,82 L29,80.010627 Z M29,80.3301373 C28.6731201,80.2846885 28.3640105,80.1722492 28.1025065,80 L27,81.3648152 C27.515058,81.704245 28.1077441,81.9156072 28.7156753,82 L29,80.3301373 Z M29,79.4373582 L15.2147122,70 L14,71.5625451 L27.7852878,81 L29,79.4373582 Z M15,69.4170448 C11.3413195,66.7549712 8.62140525,64 6.64414414,61 L5,62.0759822 C7.13275503,65.3118673 10.0330461,68.2301224 13.8400409,71 L15,69.4170448 Z M6,60.9066751 C1.81312867,54.1822042 0.112265224,46.1515162 1.21182569,38.2908234 L-0.65355229,38 C-1.82165262,46.3509721 -0.0129355219,54.8732334 4.4243373,62 L6,60.9066751 Z M1.00307085,38 L5,11.2903429 L2.99682791,11 L-1,37.7096571 L1.00307085,38 Z M4.92579564,11 C5.30604953,8.44401534 7.33569234,6.38262256 10,5.89149407 L9.64320176,4 C6.18957774,4.63659103 3.50541551,7.32283778 3,10.7200423 L4.92579564,11 Z M10.3703289,6 L39,0.920953856 L38.6296711,-1 L10,4.07904614 L10.3703289,6 Z M38.4041285,1.30217383 C39.9483584,0.998846829 41.5926328,1.24668718 43.0156776,2 L44,0.0689559187 C42.1579856,-0.905977092 40.0253403,-1.23230385 38,-0.834497237 L38.4041285,1.30217383 Z M43,1.79115608 L68.0942384,15 L69,13.2088439 L43.9057616,-1.59872116e-13 L43,1.79115608 Z M68,14.8497724 C70.6881326,16.1732223 72.1825049,18.9358693 71.7556965,21.6946685 L73.9038568,22 C74.4718486,18.3331099 72.4833342,14.7182177 68.9930625,13 L68,14.8497724 Z M71.9984822,21 L68,47.7098691 L70.002125,48 L74,21.2901309 L71.9984822,21 Z M68.0775503,48 C66.9498868,55.956438 63.0173472,63.2200293 57,68.4533015 L58.2478531,70 C64.6251859,64.4534941 68.8020882,56.7464325 70,48.2937638 L68.0775503,48 Z M56.7040448,69 C53.8621281,71.4650932 50.3702152,73.4398442 46,75.0266081 L46.6677601,77 C51.2160178,75.3485193 54.934521,73.2623174 58,70.6031783 L56.7040448,69 Z M45.3470031,74 L30,79.2066611 L30.6529969,81 L46,75.7933389 L45.3470031,74 Z M30.3209378,80 C29.9918149,80.1094641 29.6387429,80.1401065 29.2914309,80.09287 L29,81.9588507 C29.6639046,82.0490808 30.3507478,81.992133 31,81.7760334 L30.3209378,80 Z" id="Shape" fill="url(#linearGradient-4)" fill-rule="nonzero" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
<path d="M50,10.1970182 L35.7420416,12.8368802 C32.6040687,13.4227054 30.1863419,15.8889488 29.7319699,18.9814985 L25.7902845,45.7758328 C25.1860525,49.8721117 25.3563797,54.0116704 26.2566374,58 C25.8234314,57.8907512 25.3983125,57.7690083 24.9806815,57.6347713 C19.0455897,55.7296647 14.0650686,51.7593267 10.9600429,46.449217 L0.733386271,28.9756116 C-0.447302238,26.9591572 -0.182626256,24.383765 1.38476275,22.5655177 L15.4269868,6.32473415 C16.2557591,5.35156054 17.4155011,4.67430815 18.6829706,4.41860807 L39.7004002,0.118294787 C42.0512341,-0.366198001 44.4253308,0.666707597 45.6018459,2.68210244 L50,10.1970182 Z" id="Path" fill="url(#linearGradient-5)" fill-rule="nonzero"></path>
|
||||
<g id="Group" opacity="0.5" transform="translate(25.000000, 12.000000)" fill="url(#linearGradient-6)" fill-rule="nonzero">
|
||||
<path d="M21.3310663,46.386052 C21.7182231,46.3674294 22.0925248,46.2516675 22.4232401,46.0603079 C22.7524489,45.8663312 23.0338531,45.5955489 23.2379264,45.2651744 L29.8469085,34.6751707 C31.7222337,31.675829 32.9136321,28.846003 33.4853788,26.023324 C34.7306076,19.8701235 33.6987921,13.5416695 30.5772338,8.20323175 L30.5772338,8.20323175 C27.0539565,2.17606077 20.1411743,-0.992897392 13.2881479,0.277464159 L10.3645367,0.8194314 C7.20812939,1.40941468 4.77602156,3.89326344 4.31906609,7.00766249 L0.3539982,33.9922759 C0.145003841,35.4108127 0.0282040145,36.834584 0.0015901245,38.2555368 C-0.0913074161,43.228972 3.89806448,47.227591 8.85517768,46.9899267 L8.85517768,46.9899267 L21.3310663,46.386052 Z" id="Path" filter="url(#filter-7)"></path>
|
||||
</g>
|
||||
<g id="Group" transform="translate(46.000000, 38.000000)" fill="url(#linearGradient-8)" fill-rule="nonzero">
|
||||
<path d="M9.25112179,18.96637 C8.46761442,18.8524146 7.72863588,18.4553835 7.21530346,17.7906602 L0.612327585,9.23156332 C-0.406131936,7.90329244 -0.12575037,6.03826531 1.24233556,5.06126702 C2.61102188,4.08034937 4.54967729,4.36028961 5.57283985,5.68522902 L10.3243168,11.8409748 L26.0540028,0.585260697 C27.4267918,-0.394971068 29.3654472,-0.115128812 30.3846072,1.20932068 C31.4071693,2.53827744 31.1261874,4.40722393 29.7587018,5.38020488 L11.5458078,18.4146222 C10.8591631,18.9066978 10.0346292,19.0803254 9.25112179,18.96637 Z" id="Path"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.5 KiB |
53
002_source/cms/public/assets/iconly-glass-tick.svg
Normal file
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="108px" height="110px" viewBox="0 0 108 110" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>iconly-glass-tick</title>
|
||||
<defs>
|
||||
<linearGradient x1="88.0814069%" y1="16.8240929%" x2="17.137702%" y2="77.1430431%" id="linearGradient-1">
|
||||
<stop stop-color="#9BF763" offset="0%"></stop>
|
||||
<stop stop-color="#26AB5B" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="100.91953%" y1="-0.9195332%" x2="-0.611636293%" y2="100.611636%" id="linearGradient-2">
|
||||
<stop stop-color="#72DC60" offset="0%"></stop>
|
||||
<stop stop-color="#72DC60" stop-opacity="0.35" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="15.5014844%" y1="11.1810686%" x2="80.0711452%" y2="91.1524441%" id="linearGradient-3">
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.25" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="89.7887181%" y1="16.8241305%" x2="16.8956202%" y2="79.1834028%" id="linearGradient-4">
|
||||
<stop stop-color="#9BF763" offset="0%"></stop>
|
||||
<stop stop-color="#26AB5B" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<filter x="-46.2%" y="-38.7%" width="192.3%" height="177.4%" filterUnits="objectBoundingBox" id="filter-5">
|
||||
<feGaussianBlur stdDeviation="8" in="SourceGraphic"></feGaussianBlur>
|
||||
</filter>
|
||||
<linearGradient x1="92.909942%" y1="32.9907485%" x2="-18.3766644%" y2="36.6190864%" id="linearGradient-6">
|
||||
<stop stop-color="#FFFFFF" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<path d="M13.5507067,27 C12.616308,27 11.6819092,26.6466997 10.9686102,25.935999 L1.07002355,16.0736899 C-0.356674518,14.6522886 -0.356674518,12.3497864 1.07002355,10.9325851 C2.49662163,9.51118381 4.80331851,9.5069838 6.22991658,10.9283851 L13.5507067,18.2223919 L30.7700834,1.06597599 C32.1966815,-0.355325329 34.5033784,-0.355325329 35.9299764,1.06597599 C37.3566745,2.4873773 37.3566745,4.78987944 35.9299764,6.21128075 L16.1328032,25.935999 C15.4194042,26.6466997 14.4851054,27 13.5507067,27" id="path-7"></path>
|
||||
<linearGradient x1="11.1916147%" y1="41.3656374%" x2="95.1951187%" y2="41.8275957%" id="linearGradient-9">
|
||||
<stop stop-color="#FFFFFF" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="iconly-glass-tick" transform="translate(1.000000, 9.000000)">
|
||||
<path d="M60.8536677,0.82044707 L89.9485154,8.58020712 C100.671762,11.4402761 104.987366,19.1833532 102.149942,29.7224338 L92.5413759,65.4168903 C90.6930021,72.2834434 86.9107019,76.5644941 81.6088452,78 C81.8172296,76.5621065 81.9243701,75.0641268 81.9243701,73.512129 L81.9243701,39.8849801 C81.9243701,25.3145452 72.5376812,15.5186847 58.5195635,15.5186847 L39,15.5186847 L39.6627321,13.0566378 C42.499857,2.51762692 50.3002266,-1.99421892 60.8536677,0.82044707 Z" id="Path" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
|
||||
<path d="M23.0298905,15 L59.0117372,15 C65.9243556,15 71.6606633,17.4237486 75.6698696,21.6200445 C79.6810821,25.8184469 82,31.8298209 82,39.0674634 L82,72.9743651 C82,80.1909429 79.6812827,86.1918848 75.6700702,90.3851715 C71.6607636,94.5765523 65.9243556,97 59.0117372,97 L23.0298905,97 C16.1170715,97 10.3700309,94.576452 6.35025218,90.3847703 C2.32871803,86.1911827 0,80.190341 0,72.9743651 L0,39.0674634 C0,31.8304228 2.32894874,25.8191491 6.35046282,21.6205461 C10.3702316,17.4238489 16.1170715,15 23.0298905,15 Z" id="Path" stroke="url(#linearGradient-3)" fill="url(#linearGradient-2)" fill-rule="nonzero" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<g id="Group" opacity="0.5" transform="translate(31.000000, 15.000000)" fill="url(#linearGradient-4)" fill-rule="nonzero">
|
||||
<path d="M51.8261815,61.4063915 C51.9412627,60.316927 52,59.1953022 52,58.0439069 L52,24.3874975 C52,9.80448392 42.6339471,0 28.646896,0 L9.5815135,0 L0.83913284,32.5760054 C-2.00050042,43.1569145 2.45655204,50.7147637 12.8489616,53.4950788 L41.500188,61.1600622 C45.3857238,62.199544 48.8534171,62.2654575 51.8261815,61.4063915 Z" id="Path" filter="url(#filter-5)"></path>
|
||||
</g>
|
||||
<g id="Group" transform="translate(23.000000, 43.000000)">
|
||||
<path d="M13.5507067,27 C12.616308,27 11.6819092,26.6466997 10.9686102,25.935999 L1.07002355,16.0736899 C-0.356674518,14.6522886 -0.356674518,12.3497864 1.07002355,10.9325851 C2.49662163,9.51118381 4.80331851,9.5069838 6.22991658,10.9283851 L13.5507067,18.2223919 L30.7700834,1.06597599 C32.1966815,-0.355325329 34.5033784,-0.355325329 35.9299764,1.06597599 C37.3566745,2.4873773 37.3566745,4.78987944 35.9299764,6.21128075 L16.1328032,25.935999 C15.4194042,26.6466997 14.4851054,27 13.5507067,27" id="Path" fill="url(#linearGradient-6)" fill-rule="nonzero"></path>
|
||||
<g id="Clipped">
|
||||
<mask id="mask-8" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
<g id="Path"></g>
|
||||
<path d="M1.42945,11.42905 L1.57035,11.57095 L1.57055,11.57075 L1.42945,11.42905 Z M13.50005,18.35885 L13.35885,18.50045 L13.50005,18.64115 L13.64115,18.50045 L13.50005,18.35885 Z M35.57055,6.57085 L35.42945,6.42915 L35.42945,6.42915 L35.57055,6.57085 Z M16.42945,25.42915 L16.57055,25.57085 L16.57055,25.57085 L16.42945,25.42915 Z M14,26.715424 C13.0261815,26.715424 12.0535747,26.4778031 11.3110932,26 L11,26.2015509 C11.8290677,26.7349886 12.9151397,27 14,27 L14,26.715424 Z M11,25.7207684 L1.27728121,16 L1,16.2792316 L10.7226206,26 L11,25.7207684 Z M1,15.7388748 C0.0444788947,14.5006268 0.0446915004,12.4956863 0.999858263,11.2615861 L0.800079727,11 C-0.266775922,12.3784427 -0.266563316,14.6179626 0.79993799,16 L1,15.7388748 Z M1.25935726,11 C2.49863109,10.0466919 4.50192014,10.0442093 5.74064274,10.9970209 L6,10.7960034 C4.61731253,9.73246907 2.38204436,9.73587374 1,10.7989825 L1.25935726,11 Z M6,11.2618083 L13.7029594,18 L14,17.7382841 L6.29704064,11 L6,11.2618083 Z M13.2742076,18 L30,1.27615886 L29.7257924,1 L13,17.7238411 L13.2742076,18 Z M30.2593573,1 C31.4983555,0.0455352703 33.5016445,0.0455352703 34.7406427,1 L35,0.798749734 C33.61768,-0.266249911 31.3824118,-0.266249911 30,0.798749734 L30.2593573,1 Z M36,1.26093764 C36.9553371,2.49811182 36.9553371,4.50188818 36,5.73906236 L36.2000531,6 C37.266649,4.61886341 37.266649,2.38113659 36.2000531,1 L36,1.26093764 Z M35.7188191,6 L16,25.7168147 L16.2811809,26 L36,6.28318531 L35.7188191,6 Z M16.6890056,26 C15.9463866,26.4778031 14.9738543,26.715424 14,26.715424 L14,27 C15.0849001,27 16.171012,26.7349886 17,26.2015509 L16.6890056,26 Z" id="Shape" fill-opacity="0.5" fill="url(#linearGradient-9)" fill-rule="nonzero" mask="url(#mask-8)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.1 KiB |
38
002_source/cms/public/assets/iconly-glass-video.svg
Normal file
@@ -0,0 +1,38 @@
|
||||
<svg width="99" height="78" viewBox="0 0 99 78" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1_277)">
|
||||
<path
|
||||
d="M51.168 76.5H21.832C15.816 76.5 10.7387 74.4271 7.16716 70.8993C3.59607 67.3719 1.5 62.3602 1.5 56.4247V21.5753C1.5 15.6372 3.5961 10.6255 7.16713 7.09883C10.7386 3.57169 15.8159 1.5 21.832 1.5H51.168C57.1841 1.5 62.2614 3.57169 65.8329 7.09883C69.4039 10.6255 71.5 15.6372 71.5 21.5753V56.4247C71.5 62.3602 69.4039 67.3719 65.8328 70.8993C62.2613 74.4271 57.184 76.5 51.168 76.5Z"
|
||||
fill="#FFCBB9" fill-opacity="0.35" stroke="url(#paint0_linear_1_277)"
|
||||
stroke-linecap="round" stroke-linejoin="round" />
|
||||
<path
|
||||
d="M71.9841 20.6754C71.9947 20.973 72 21.273 72 21.5753V56.4247C72 57.1519 71.9691 57.866 71.9084 58.5659L88.7123 66.2006C89.7245 66.7406 90.8071 67 91.8898 67C93.189 67 94.4781 66.6188 95.6312 65.8724C97.7411 64.5012 99 62.1241 99 59.5195V19.4855C99 16.8809 97.7411 14.5038 95.6312 13.1273C93.5213 11.7509 90.928 11.6291 88.7174 12.7938L71.9841 20.6754Z"
|
||||
fill="url(#paint1_linear_1_277)" />
|
||||
<g opacity="0.25" filter="url(#filter0_f_1_277)">
|
||||
<path
|
||||
d="M74.3465 23.5052C75.7769 22.764 77.455 22.8415 78.8202 23.7174C80.1854 24.5933 81 26.106 81 27.7635V53.2397C81 54.8972 80.1854 56.4099 78.8202 57.2824C78.074 57.7574 77.2399 58 76.3993 58C75.6987 58 74.9982 57.8349 74.3433 57.4913L37 40.8051L74.3465 23.5052Z"
|
||||
fill="#FC5D00" />
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_1_277" x="28" y="14" width="62" height="53"
|
||||
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
|
||||
<feGaussianBlur stdDeviation="4.5" result="effect1_foregroundBlur_1_277" />
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_1_277" x1="0.792867" y1="0.483195" x2="67.5665"
|
||||
y2="74.9573" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white" stop-opacity="0.4" />
|
||||
<stop offset="1" stop-color="white" stop-opacity="0" />
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1_277" x1="68.94" y1="12" x2="68.94" y2="67"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFB37F" />
|
||||
<stop offset="1" stop-color="#FF7B0D" />
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_1_277">
|
||||
<rect width="99" height="78" fill="white" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
42
002_source/cms/public/assets/iconly-glass-volume.svg
Normal file
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="116px" height="82px" viewBox="0 0 116 82" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>iconly-glass-volume</title>
|
||||
<defs>
|
||||
<linearGradient x1="29.4621347%" y1="54.6569221%" x2="92.2300757%" y2="126.546709%" id="linearGradient-1">
|
||||
<stop stop-color="#FF759F" offset="0%"></stop>
|
||||
<stop stop-color="#FF196E" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="68.5773705%" y1="78.6969701%" x2="138.340182%" y2="239.348839%" id="linearGradient-2">
|
||||
<stop stop-color="#FF759F" offset="0%"></stop>
|
||||
<stop stop-color="#FF196E" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="69.2010451%" y1="72.7423425%" x2="114.145278%" y2="178.987896%" id="linearGradient-3">
|
||||
<stop stop-color="#FF759F" offset="0%"></stop>
|
||||
<stop stop-color="#FF196E" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="15.4909253%" y1="19.3653007%" x2="71.0461968%" y2="88.2301705%" id="linearGradient-4">
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0.25" offset="0%"></stop>
|
||||
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="44.2103424%" y1="54.6569778%" x2="101.933378%" y2="101.107707%" id="linearGradient-5">
|
||||
<stop stop-color="#FF759F" offset="0%"></stop>
|
||||
<stop stop-color="#FF196E" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<filter x="-120.0%" y="-96.0%" width="340.0%" height="292.0%" filterUnits="objectBoundingBox" id="filter-6">
|
||||
<feGaussianBlur stdDeviation="8" in="SourceGraphic"></feGaussianBlur>
|
||||
</filter>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="iconly-glass-volume" transform="translate(0.000000, 5.000000)" fill-rule="nonzero">
|
||||
<g id="Group-2">
|
||||
<path d="M24.6852998,7.79662869 C25.1845182,6.49439685 25.702945,5.14345446 26.432064,3.8519519 C28.2945789,0.793782133 31.5396986,-0.557813385 34.4225599,0.212106412 C36.0321641,0.635644864 37.8006378,2.16637753 38.6851247,3.47369481 L46.0981679,14.0065005 L51.1018571,15.3427748 C53.4379791,15.9666886 55.1776402,17.6517644 56,19.8810821 L51.1955981,26.7073392 L44.0498718,28.6156759 C38.790871,30.0202547 35.6484962,35.1904529 36.4175327,41.2348484 C36.5446883,42.1241026 36.7156631,43.127829 36.9229538,44.2113271 L26.2064653,49.1520822 C24.9740261,49.7514662 22.9424373,50.2736712 21.3199275,49.8403119 C21.2147815,49.8153832 21.1220409,49.790654 21.0294004,49.7659248 C18.091415,48.9812712 16.0812355,46.1436949 16,42.5760088 C16.0103045,41.0796926 16.2346026,39.7343442 16.4513975,38.4342662 L16.4553992,38.4100356 L16.6644907,37.1127496 C17.2669543,32.8846542 22.6362033,12.9123329 24.2274995,8.97996093 L24.6852998,7.79662869 Z" id="Path" fill="url(#linearGradient-1)"></path>
|
||||
<path d="M14.1972828,10.4329567 C14.9211607,9.78788294 15.9991321,9.87293781 16.6077215,10.6260092 C17.2077001,11.3810611 17.108485,12.5172177 16.3851812,13.1602031 C14.3719856,14.9534637 12.8168823,17.6502178 12.0044093,20.7575884 C11.1925103,23.8629981 11.2228393,26.9972332 12.0914736,29.5818228 C12.4040442,30.5093375 11.9357146,31.5441146 11.0458404,31.8900207 C10.7140391,32.0162059 10.3600412,32.0341483 10.0247956,31.9420831 C9.48424078,31.7936416 9.05274603,31.3746912 8.86600735,30.8226924 C7.76905395,27.5596249 7.71172542,23.6636706 8.70822953,19.8525262 C9.70473364,16.0413817 11.6552908,12.6967399 14.1972828,10.4329567 Z" id="Path" fill="url(#linearGradient-2)"></path>
|
||||
<path d="M10.122722,3.45232336 C10.8707149,2.78855259 11.9869458,2.86249752 12.605398,3.62693922 C13.2175312,4.39187196 13.1049093,5.55213301 12.354878,6.21539271 C8.81505427,9.34075115 6.06327814,14.0031301 4.60867195,19.3407137 C3.15351539,24.6803015 3.1656439,30.070796 4.64190815,34.5177135 C4.95353959,35.4627936 4.4615908,36.5210109 3.54055764,36.8819672 C3.19717803,37.0138435 2.83388321,37.0357895 2.48887288,36.944899 C1.9326022,36.7983921 1.48935091,36.3743035 1.30364198,35.8132279 C-0.40399557,30.6755631 -0.435107754,24.5085416 1.21677533,18.4471414 C2.86754747,12.3897496 6.03118344,7.06217694 10.122722,3.45232336 Z" id="Path" fill="url(#linearGradient-3)"></path>
|
||||
</g>
|
||||
<path d="M67.3926769,6.77110703 C69.2592755,6.26949332 71.2590028,6.47233 73.0921499,7.31674556 C74.8793935,8.14001626 76.5073788,9.57201909 77.7100776,11.5567438 C78.714065,13.3509257 79.4306105,15.2321391 80.1358562,17.0836393 L80.7945491,18.7963152 C81.8574865,21.4397252 84.1255095,29.2236182 86.3215698,37.369444 L86.5751072,38.3127141 L86.953241,39.730179 L87.2030751,40.6738374 C87.2859488,40.9878235 87.3684272,41.3012765 87.4503398,41.6135505 L87.6949878,42.5491584 C89.5936182,49.8332372 91.1962273,56.522697 91.5603188,59.0932396 L91.8613385,60.9732628 C92.1734028,62.8569642 92.4843126,64.7273874 92.4999521,66.8035516 C92.4441715,69.1538569 91.770185,71.2463148 90.6398883,72.8809956 C89.5079668,74.5180259 87.9181778,75.6934519 86.0446137,76.1969294 C83.597058,76.8503438 80.9586688,76.1760236 79.3240719,75.3762556 L62.0925981,67.3821316 L54.4117434,69.3226327 C51.9189823,69.9925232 49.5079,69.6753766 47.4468923,68.4900177 C45.3781949,67.3002362 43.6669814,65.2437742 42.5568313,62.4543419 C40.0816836,56.5420615 37.4260377,45.9444344 36.6073625,40.1879247 C36.2530211,37.3796379 36.7896266,34.7930634 38.014342,32.7457974 C39.2372102,30.7016193 41.1464047,29.1993776 43.5229696,28.5607573 L50.5591645,26.6698634 L61.8548509,11.0740833 C62.4364737,10.2072503 63.3156118,9.26033019 64.3201612,8.45703307 C65.3087889,7.66656435 66.3883721,7.0370236 67.3926769,6.77110703 Z M100.777497,10.5031169 C101.138824,10.4778375 101.512021,10.6072527 101.817683,10.8899988 C107.334565,15.9606886 111.612074,23.4662149 113.849321,32.0190359 C116.088996,40.5793737 116.046612,49.2691179 113.74396,56.4864325 C113.590363,56.969608 113.235801,57.3333191 112.789486,57.4556557 C112.520869,57.5294184 112.236218,57.5103506 111.965783,57.4024456 C111.570661,57.2407113 111.268879,56.915466 111.096724,56.5278285 C110.92164,56.1335949 110.879302,55.6715975 111.017405,55.235279 C113.120053,48.6349219 113.137058,40.6644967 111.078039,32.7922044 C109.018544,24.9206552 105.111482,18.0251072 100.067559,13.3853686 C99.7360464,13.079881 99.5493798,12.6591675 99.508525,12.2297623 C99.4678044,11.8017675 99.5713756,11.3613271 99.8340788,11.0188926 C100.078003,10.7052524 100.419561,10.5281591 100.777497,10.5031169 Z M93.7767983,20.5102979 C94.1253304,20.46726 94.4884134,20.5595944 94.7948794,20.7898668 C98.4261132,24.0537051 101.127054,28.7352198 102.512308,34.0855905 C103.900493,39.4469899 103.821223,44.9099675 102.305059,49.4646737 C102.142085,49.9514351 101.772554,50.3219412 101.306707,50.450997 C101.025335,50.5291668 100.726455,50.5133269 100.447976,50.4066171 C100.053105,50.251352 99.7538555,49.937446 99.5855873,49.5613303 C99.4142411,49.178335 99.3774962,48.7286144 99.5195042,48.3029875 C100.834602,44.3506403 100.880119,39.588275 99.6642282,34.8928983 C98.490549,30.3609817 96.2717741,26.387593 93.3722058,23.6423316 C92.9060395,23.2206605 92.632818,22.7464052 92.55028,22.2798492 C92.4699485,21.8257664 92.5755054,21.3846336 92.8456202,21.0408153 C93.0913552,20.7344997 93.4254317,20.5536857 93.7767983,20.5102979 Z" id="Shape" stroke="url(#linearGradient-4)" fill-opacity="0.35" fill="#FF749F"></path>
|
||||
<g id="Group" opacity="0.5" transform="translate(36.000000, 19.000000)" fill="url(#linearGradient-5)">
|
||||
<path d="M19.4788232,0 C19.9475651,1.26587 20.1149588,2.70974377 19.9202597,4.23436758 C19.3478367,8.22176968 17.4950302,15.5431075 15.7637127,19.6373905 C14.1097603,23.752303 10.5721345,25.75514 6.75294701,24.7389861 L1.80474263,23.4224263 L0.613794047,23.9695029 C0.408707121,22.9020698 0.239631599,21.9132255 0.113888482,21.0371562 C-0.646605102,15.0823804 2.4608625,9.98884011 7.66144351,8.60508682 L14.7278901,6.72504491 L19.4788232,0 Z" id="Path" filter="url(#filter-6)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.1 KiB |
BIN
002_source/cms/public/assets/image-abstract-1.png
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
002_source/cms/public/assets/image-abstract-2.png
Normal file
After Width: | Height: | Size: 707 KiB |
BIN
002_source/cms/public/assets/image-business-1.png
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
002_source/cms/public/assets/image-business-2.png
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
002_source/cms/public/assets/image-minimal-1.png
Normal file
After Width: | Height: | Size: 524 KiB |
BIN
002_source/cms/public/assets/image-minimal-2.png
Normal file
After Width: | Height: | Size: 444 KiB |
33
002_source/cms/public/assets/logo--dark.svg
Normal file
@@ -0,0 +1,33 @@
|
||||
<svg width="230" height="60" viewBox="0 0 230 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M88.2687 42.1582H80V18.8325H88.3372C90.6832 18.8325 92.703 19.2995 94.3962 20.2334C96.0895 21.1598 97.3918 22.4923 98.303 24.2311C99.2218 25.9699 99.681 28.0504 99.681 30.4727C99.681 32.9024 99.2218 34.9904 98.303 36.7369C97.3918 38.4832 96.082 39.8234 94.3735 40.7574C92.6728 41.6912 90.6377 42.1582 88.2687 42.1582ZM84.9317 37.9327H88.0637C89.5217 37.9327 90.748 37.6747 91.7425 37.1582C92.7447 36.6344 93.4965 35.8257 93.9977 34.7322C94.5065 33.6312 94.7608 32.2114 94.7608 30.4727C94.7608 28.7489 94.5065 27.3404 93.9977 26.2472C93.4965 25.1537 92.7487 24.3488 91.754 23.8325C90.7592 23.3162 89.533 23.058 88.0752 23.058H84.9317V37.9327Z"
|
||||
fill="#212636" />
|
||||
<path
|
||||
d="M111.055 42.5001C109.256 42.5001 107.707 42.1356 106.408 41.4066C105.118 40.6701 104.123 39.6298 103.424 38.2861C102.726 36.9343 102.377 35.3361 102.377 33.4911C102.377 31.6913 102.726 30.1121 103.424 28.7528C104.123 27.3938 105.106 26.3346 106.374 25.5753C107.65 24.8159 109.146 24.4363 110.862 24.4363C112.016 24.4363 113.09 24.6223 114.085 24.9944C115.087 25.3588 115.96 25.9093 116.705 26.6458C117.456 27.3823 118.041 28.3088 118.459 29.4248C118.876 30.5336 119.085 31.8318 119.085 33.3201V34.6526H104.313V31.6458H114.518C114.518 30.9473 114.366 30.3286 114.062 29.7893C113.758 29.2503 113.337 28.8288 112.798 28.5251C112.266 28.2138 111.648 28.0581 110.941 28.0581C110.205 28.0581 109.552 28.2291 108.982 28.5706C108.421 28.9048 107.98 29.3566 107.661 29.9261C107.342 30.4878 107.179 31.1143 107.172 31.8053V34.6641C107.172 35.5296 107.331 36.2776 107.65 36.9078C107.976 37.5381 108.436 38.0241 109.028 38.3656C109.62 38.7073 110.323 38.8783 111.135 38.8783C111.674 38.8783 112.168 38.8023 112.616 38.6503C113.064 38.4986 113.447 38.2708 113.766 37.9671C114.085 37.6633 114.328 37.2913 114.495 36.8508L118.982 37.1471C118.755 38.2253 118.288 39.1668 117.582 39.9716C116.883 40.7688 115.979 41.3916 114.871 41.8396C113.77 42.2798 112.498 42.5001 111.055 42.5001Z"
|
||||
fill="#212636" />
|
||||
<path
|
||||
d="M137.931 24.6641L131.815 42.1583H126.348L120.232 24.6641H125.357L128.99 37.1811H129.172L132.794 24.6641H137.931Z"
|
||||
fill="#212636" />
|
||||
<path
|
||||
d="M140.253 42.1583V24.664H145.105V42.1583H140.253ZM142.691 22.4089C141.969 22.4089 141.351 22.1697 140.834 21.6914C140.326 21.2054 140.071 20.6245 140.071 19.9487C140.071 19.2805 140.326 18.7073 140.834 18.2289C141.351 17.743 141.969 17.5 142.691 17.5C143.412 17.5 144.027 17.743 144.536 18.2289C145.052 18.7073 145.31 19.2805 145.31 19.9487C145.31 20.6245 145.052 21.2054 144.536 21.6914C144.027 22.1697 143.412 22.4089 142.691 22.4089Z"
|
||||
fill="#212636" />
|
||||
<path
|
||||
d="M153.82 42.4886C152.704 42.4886 151.709 42.2951 150.836 41.9078C149.963 41.5131 149.272 40.9321 148.764 40.1653C148.262 39.3908 148.012 38.4263 148.012 37.2723C148.012 36.3003 148.19 35.4841 148.547 34.8236C148.904 34.1628 149.39 33.6313 150.005 33.2291C150.62 32.8266 151.318 32.5228 152.1 32.3178C152.89 32.1128 153.718 31.9686 154.583 31.8851C155.601 31.7788 156.421 31.6801 157.044 31.5888C157.666 31.4903 158.118 31.3458 158.399 31.1561C158.68 30.9663 158.82 30.6853 158.82 30.3133V30.2448C158.82 29.5236 158.592 28.9656 158.137 28.5706C157.689 28.1758 157.051 27.9783 156.223 27.9783C155.35 27.9783 154.655 28.1721 154.139 28.5593C153.623 28.9391 153.281 29.4173 153.114 29.9943L148.627 29.6298C148.854 28.5668 149.302 27.6481 149.971 26.8736C150.639 26.0916 151.501 25.4918 152.556 25.0741C153.619 24.6489 154.849 24.4363 156.246 24.4363C157.218 24.4363 158.148 24.5502 159.037 24.778C159.933 25.0058 160.726 25.3588 161.417 25.8373C162.116 26.3156 162.666 26.9306 163.069 27.6823C163.471 28.4263 163.672 29.3186 163.672 30.3588V42.1583H159.071V39.7323H158.934C158.653 40.2791 158.277 40.7613 157.807 41.1788C157.336 41.5888 156.77 41.9116 156.11 42.1471C155.449 42.3748 154.686 42.4886 153.82 42.4886ZM155.21 39.1401C155.924 39.1401 156.554 38.9996 157.1 38.7188C157.647 38.4303 158.076 38.0431 158.387 37.5571C158.699 37.0711 158.855 36.5206 158.855 35.9056V34.0491C158.703 34.1478 158.494 34.2388 158.228 34.3223C157.97 34.3983 157.678 34.4706 157.351 34.5388C157.025 34.5996 156.698 34.6566 156.372 34.7096C156.045 34.7553 155.749 34.7971 155.483 34.8348C154.914 34.9186 154.416 35.0513 153.991 35.2336C153.566 35.4158 153.236 35.6626 153 35.9738C152.765 36.2776 152.647 36.6573 152.647 37.1128C152.647 37.7733 152.887 38.2783 153.365 38.6276C153.851 38.9693 154.466 39.1401 155.21 39.1401Z"
|
||||
fill="#212636" />
|
||||
<path
|
||||
d="M181.832 29.6526L177.39 29.9261C177.314 29.5463 177.151 29.2048 176.9 28.9011C176.65 28.5896 176.32 28.3428 175.91 28.1606C175.507 27.9708 175.025 27.8758 174.463 27.8758C173.711 27.8758 173.077 28.0353 172.561 28.3543C172.045 28.6656 171.787 29.0833 171.787 29.6071C171.787 30.0248 171.954 30.3778 172.288 30.6663C172.622 30.9548 173.195 31.1866 174.008 31.3611L177.174 31.9988C178.875 32.3483 180.143 32.9101 180.978 33.6846C181.813 34.4591 182.231 35.4766 182.231 36.7371C182.231 37.8836 181.893 38.8896 181.217 39.7551C180.549 40.6208 179.63 41.2966 178.461 41.7826C177.299 42.2608 175.959 42.5001 174.44 42.5001C172.124 42.5001 170.279 42.0178 168.905 41.0536C167.538 40.0818 166.737 38.7606 166.502 37.0901L171.274 36.8396C171.418 37.5456 171.768 38.0848 172.322 38.4568C172.876 38.8213 173.586 39.0036 174.452 39.0036C175.302 39.0036 175.986 38.8403 176.502 38.5138C177.026 38.1796 177.291 37.7506 177.299 37.2268C177.291 36.7863 177.105 36.4256 176.741 36.1448C176.377 35.8561 175.815 35.6361 175.055 35.4841L172.026 34.8806C170.317 34.5388 169.045 33.9466 168.21 33.1038C167.383 32.2608 166.969 31.1866 166.969 29.8806C166.969 28.7568 167.273 27.7886 167.88 26.9761C168.495 26.1638 169.357 25.5373 170.465 25.0968C171.582 24.6565 172.888 24.4363 174.383 24.4363C176.593 24.4363 178.332 24.9033 179.6 25.8373C180.875 26.7711 181.62 28.0431 181.832 29.6526Z"
|
||||
fill="#212636" />
|
||||
<path
|
||||
d="M185.216 42.1582V18.8325H190.148V29.1172H190.456L198.85 18.8325H204.761L196.105 29.2767L204.863 42.1582H198.964L192.574 32.5682L190.148 35.5294V42.1582H185.216Z"
|
||||
fill="#212636" />
|
||||
<path
|
||||
d="M208.174 42.1583V24.664H213.026V42.1583H208.174ZM210.611 22.4089C209.89 22.4089 209.271 22.1697 208.755 21.6914C208.246 21.2054 207.992 20.6245 207.992 19.9487C207.992 19.2805 208.246 18.7073 208.755 18.2289C209.271 17.743 209.89 17.5 210.611 17.5C211.333 17.5 211.948 17.743 212.456 18.2289C212.973 18.7073 213.231 19.2805 213.231 19.9487C213.231 20.6245 212.973 21.2054 212.456 21.6914C211.948 22.1697 211.333 22.4089 210.611 22.4089Z"
|
||||
fill="#212636" />
|
||||
<path
|
||||
d="M226.057 24.664V28.3087H215.522V24.664H226.057ZM217.914 20.4727H222.766V36.7825C222.766 37.2305 222.834 37.5797 222.971 37.8302C223.108 38.0732 223.297 38.244 223.54 38.3427C223.791 38.4415 224.08 38.491 224.406 38.491C224.634 38.491 224.862 38.472 225.089 38.434C225.317 38.3885 225.492 38.3542 225.613 38.3315L226.376 41.942C226.133 42.0177 225.792 42.1052 225.352 42.2037C224.911 42.3102 224.376 42.3747 223.745 42.3975C222.576 42.443 221.551 42.2875 220.67 41.9305C219.797 41.5737 219.117 41.0192 218.632 40.2677C218.146 39.516 217.907 38.5667 217.914 37.4202V20.4727Z"
|
||||
fill="#212636" />
|
||||
<path
|
||||
d="M49.976 47.3193C48.6908 48.0533 34.492 56.2757 34.492 56.2757C31.5512 57.8805 28.5587 57.9353 25.6282 56.276C20.1934 53.1985 14.7728 50.0942 9.39467 46.9195C6.51358 45.219 5.0201 42.6105 5.01263 39.2353C4.99893 33.0498 4.99155 26.864 5.01623 20.6786C5.02973 17.3023 6.5673 14.719 9.45032 13.0233C14.7881 9.88395 20.1617 6.80412 25.5485 3.74895C28.5295 2.05832 31.5683 2.09354 34.5475 3.797C39.7873 6.79312 45.0177 9.80602 50.242 12.8289C53.4192 14.6673 55.0213 17.3939 54.9928 21.1061C54.9483 26.9767 54.9305 32.8485 54.999 38.7188C55.0447 42.634 53.334 45.4123 49.976 47.3193ZM19.1745 11.7732C16.7203 13.1913 14.2807 14.6356 11.8073 16.0195C9.7877 17.1495 8.77485 18.7768 8.7956 21.1279C8.84282 26.4742 8.80763 31.8212 8.8142 37.168C8.81468 37.55 8.8825 37.9317 8.91903 38.3137C9.0338 38.3782 9.14857 38.443 9.26335 38.5078C9.6212 38.0635 9.94173 37.5823 10.3426 37.1808C15.6826 31.8333 21.0335 26.4965 26.3823 21.1577C29.374 18.1718 30.6105 18.1631 33.5573 21.1042C38.9433 26.48 44.3285 31.8567 49.7178 37.2295C50.1073 37.618 50.5268 37.9767 51.0108 38.4215C51.0983 38.1147 51.1718 37.977 51.1718 37.8393C51.175 32.0733 51.1783 26.3072 51.1653 20.5412C51.1608 18.5691 50.1653 17.1654 48.5038 16.2047C43.2788 13.1834 38.0427 10.181 32.817 7.1611C30.917 6.06315 29.0505 6.06525 27.1525 7.17995C24.5728 8.69505 21.9716 10.1737 19.1745 11.7732ZM22.6004 30.2947C19.0408 33.8495 15.4769 37.3998 11.9239 40.9608C10.4781 42.41 10.5774 43.253 12.3098 44.2555C16.4828 46.6702 20.6599 49.0783 24.8468 51.469C25.2935 51.7243 25.8163 51.847 26.3593 52.0525C26.4473 51.6602 26.5227 51.5068 26.5055 51.3643C26.462 51.0025 26.38 50.6447 26.308 50.2865C25.6175 46.8575 25.447 43.3898 26.418 40.0255C27.2845 37.0243 28.5385 34.1348 29.607 31.1908C30.363 29.1083 30.971 26.995 30.4052 24.7543C30.058 23.3782 29.6718 23.2677 28.6623 24.2588C26.6803 26.2043 24.7246 28.1765 22.6004 30.2947Z"
|
||||
fill="#212636" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.9 KiB |
55
002_source/cms/public/assets/logo-amex.svg
Normal file
@@ -0,0 +1,55 @@
|
||||
<svg width="168" height="169" viewBox="0 0 168 169" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M0.00012207 0.241089H167.583V90.9325L159.288 103.926L167.583 115.489V168.241H0.00012207V82.7469L5.18443 76.7701L0.00012207 71.0531V0.241089Z"
|
||||
fill="#016FD0" />
|
||||
<path
|
||||
d="M32.5317 117.308V90.9324H60.3895L63.3783 94.8384L66.466 90.9324H167.583V115.489C167.583 115.489 164.939 117.282 161.88 117.308H105.89L102.52 113.15V117.308H91.4773V110.211C91.4773 110.211 89.9688 111.202 86.7077 111.202H82.9491V117.308H66.2297L63.2451 113.318L60.2147 117.308H32.5317Z"
|
||||
fill="white" />
|
||||
<path
|
||||
d="M0.00012207 71.053L6.28217 56.3708H17.1463L20.7114 64.5952V56.3708H34.2166L36.3389 62.3151L38.3964 56.3708H99.0204V59.3592C99.0204 59.3592 102.207 56.3708 107.445 56.3708L127.115 56.4398L130.619 64.5564V56.3708H141.921L145.031 61.0332V56.3708H156.437V82.7467H145.031L142.05 78.0692V82.7467H125.445L123.776 78.5889H119.312L117.669 82.7467H106.408C101.901 82.7467 99.0204 79.8193 99.0204 79.8193V82.7467H82.0418L78.672 78.5889V82.7467H15.5369L13.8682 78.5889H9.41844L7.76154 82.7467H0.00012207V71.053Z"
|
||||
fill="white" />
|
||||
<path
|
||||
d="M8.50564 59.6224L0.0325317 79.3719H5.54896L7.11236 75.4171H16.2011L17.7564 79.3719H23.3943L14.9293 59.6224H8.50564ZM11.6405 64.2187L14.4109 71.1294H8.86206L11.6405 64.2187Z"
|
||||
fill="#016FD0" />
|
||||
<path
|
||||
d="M23.9775 79.3686V59.6191L31.8167 59.6483L36.3762 72.3815L40.8265 59.6191H48.603V79.3686H43.6779V64.8164L38.4572 79.3686H34.1379L28.9026 64.8164V79.3686H23.9775Z"
|
||||
fill="#016FD0" />
|
||||
<path
|
||||
d="M51.9728 79.3686V59.6191H68.0442V64.0368H56.9498V67.415H67.785V71.5727H56.9498V75.0809H68.0442V79.3686H51.9728Z"
|
||||
fill="#016FD0" />
|
||||
<path
|
||||
d="M70.8956 59.6224V79.3719H75.8207V72.3556H77.8944L83.7996 79.3719H89.8183L83.3379 72.0958C85.9975 71.8708 88.7409 69.5824 88.7409 66.0296C88.7409 61.8737 85.4871 59.6224 81.8555 59.6224H70.8956ZM75.8207 64.0401H81.4505C82.801 64.0401 83.7834 65.0991 83.7834 66.119C83.7834 67.431 82.5106 68.1978 81.5234 68.1978H75.8207V64.0401Z"
|
||||
fill="#016FD0" />
|
||||
<path d="M95.7802 79.3686H90.7515V59.6191H95.7802V79.3686Z" fill="#016FD0" />
|
||||
<path
|
||||
d="M107.704 79.3686H106.619C101.367 79.3686 98.178 75.2206 98.178 69.5751C98.178 63.7901 101.331 59.6191 107.963 59.6191H113.407V64.2966H107.764C105.072 64.2966 103.168 66.403 103.168 69.6238C103.168 73.4485 105.345 75.0549 108.482 75.0549H109.778L107.704 79.3686Z"
|
||||
fill="#016FD0" />
|
||||
<path
|
||||
d="M118.421 59.6224L109.948 79.3719H115.464L117.028 75.4171H126.117L127.672 79.3719H133.31L124.845 59.6224H118.421ZM121.556 64.2187L124.326 71.1294H118.778L121.556 64.2187Z"
|
||||
fill="#016FD0" />
|
||||
<path
|
||||
d="M133.885 79.3686V59.6191H140.147L148.142 72.0275V59.6191H153.067V79.3686H147.008L138.81 66.6354V79.3686H133.885Z"
|
||||
fill="#016FD0" />
|
||||
<path
|
||||
d="M35.9015 113.93V94.1805H51.9729V98.5982H40.8784V101.976H51.7136V106.134H40.8784V109.642H51.9729V113.93H35.9015Z"
|
||||
fill="#016FD0" />
|
||||
<path
|
||||
d="M114.651 113.93V94.1805H130.722V98.5982H119.628V101.976H130.411V106.134H119.628V109.642H130.722V113.93H114.651Z"
|
||||
fill="#016FD0" />
|
||||
<path
|
||||
d="M52.5966 113.93L60.4217 104.177L52.4103 94.1805H58.6153L63.3864 100.36L68.1738 94.1805H74.1358L66.2297 104.055L74.0692 113.93H67.8652L63.2325 107.848L58.7125 113.93H52.5966Z"
|
||||
fill="#016FD0" />
|
||||
<path
|
||||
d="M74.6542 94.184V113.933H79.7089V107.697H84.8932C89.2798 107.697 92.6048 105.364 92.6048 100.827C92.6048 97.0682 89.997 94.184 85.5331 94.184H74.6542ZM79.7089 98.6503H85.1686C86.5858 98.6503 87.5987 99.5211 87.5987 100.924C87.5987 102.242 86.5909 103.198 85.1524 103.198H79.7089V98.6503Z"
|
||||
fill="#016FD0" />
|
||||
<path
|
||||
d="M94.7434 94.1805V113.93H99.6685V106.914H101.742L107.647 113.93H113.666L107.186 106.654C109.845 106.429 112.589 104.141 112.589 100.588C112.589 96.4318 109.335 94.1805 105.703 94.1805H94.7434ZM99.6685 98.5982H105.298C106.649 98.5982 107.631 99.6572 107.631 100.677C107.631 101.989 106.358 102.756 105.371 102.756H99.6685V98.5982Z"
|
||||
fill="#016FD0" />
|
||||
<path
|
||||
d="M133.004 113.93V109.642H142.86C144.319 109.642 144.95 108.852 144.95 107.986C144.95 107.155 144.321 106.316 142.86 106.316H138.406C134.534 106.316 132.378 103.951 132.378 100.401C132.378 97.2343 134.353 94.1805 140.106 94.1805H149.697L147.623 98.6242H139.328C137.743 98.6242 137.255 99.4583 137.255 100.255C137.255 101.074 137.858 101.976 139.069 101.976H143.735C148.051 101.976 149.924 104.431 149.924 107.645C149.924 111.1 147.837 113.93 143.5 113.93H133.004Z"
|
||||
fill="#016FD0" />
|
||||
<path
|
||||
d="M151.08 113.93V109.642H160.936C162.395 109.642 163.026 108.852 163.026 107.986C163.026 107.155 162.397 106.316 160.936 106.316H156.482C152.611 106.316 150.454 103.951 150.454 100.401C150.454 97.2343 152.429 94.1805 158.182 94.1805H167.773L165.7 98.6242H157.405C155.819 98.6242 155.331 99.4583 155.331 100.255C155.331 101.074 155.934 101.976 157.145 101.976H161.811C166.127 101.976 168 104.431 168 107.645C168 111.1 165.913 113.93 161.576 113.93H151.08Z"
|
||||
fill="#016FD0" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
13
002_source/cms/public/assets/logo-amplify.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg width="185" height="139" viewBox="0 0 185 139" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M40.2364 114.752H92.063L105.338 138.241H104.964H0.195374L37.1135 73.9274L52.5845 46.9957L65.8673 70.1343L40.2364 114.752ZM59.5652 34.8163L72.3186 12.6002L144.496 138.241H118.935L59.5652 34.8163ZM79.4171 0.241089H104.944L184.195 138.241H158.636L79.4171 0.241089Z"
|
||||
fill="url(#paint0_linear_34_69)" />
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_34_69" x1="18400.2" y1="3059.95" x2="2858.96" y2="14592.9"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF9900" />
|
||||
<stop offset="1" stop-color="#FFC300" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 740 B |
12
002_source/cms/public/assets/logo-angular.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<svg width="148" height="158" viewBox="0 0 148 158" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M74.0534 0.241089L0.911377 26.3239L12.0673 123.035L74.0534 157.367L136.039 123.035L147.195 26.3239L74.0534 0.241089Z"
|
||||
fill="#DD0031" />
|
||||
<path
|
||||
d="M74.0533 0.241089V17.682V17.6035V97.1876V157.367L136.039 123.035L147.195 26.3239L74.0533 0.241089Z"
|
||||
fill="#C3002F" />
|
||||
<path
|
||||
d="M74.0533 17.6035L28.3298 120.128H45.3779L54.5698 97.1877H93.3798L102.572 120.128H119.62L74.0533 17.6035ZM87.409 83.0463H60.6977L74.0533 50.9142L87.409 83.0463Z"
|
||||
fill="white" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 592 B |
6
002_source/cms/public/assets/logo-apple-pay.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="235" height="97" viewBox="0 0 235 97" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M43.2022 13.0391C40.4522 16.2818 36.0522 18.8393 31.6522 18.474C31.1022 14.0896 33.2564 9.43115 35.7772 6.55389C38.5272 3.21992 43.3397 0.845037 47.2356 0.662354C47.6939 5.22943 45.9064 9.70517 43.2022 13.0391ZM47.1897 19.3417C40.8189 18.9763 35.3647 22.9497 32.3397 22.9497C29.2689 22.9497 24.6397 19.5244 19.5981 19.6157C13.0439 19.7071 6.94805 23.4064 3.60222 29.2979C-3.27278 41.081 1.81472 58.5272 8.46055 68.1181C11.7147 72.8679 15.6106 78.0743 20.7439 77.8917C25.6022 77.709 27.5272 74.7404 33.3939 74.7404C39.3064 74.7404 41.0022 77.8917 46.1356 77.8003C51.4522 77.709 54.7981 73.0506 58.0522 68.3008C61.7647 62.9116 63.2772 57.6595 63.3689 57.3855C63.2772 57.2941 53.1022 53.4121 53.0106 41.7204C52.9189 31.9468 61.0314 27.2884 61.3981 27.0144C56.8147 20.2551 49.6647 19.5244 47.1897 19.3417ZM83.9939 6.09718V77.2979H95.0856V52.9554H110.44C124.465 52.9554 134.319 43.3645 134.319 29.4806C134.319 15.5967 124.648 6.09718 110.806 6.09718H83.9939ZM95.0856 15.414H107.873C117.498 15.414 122.998 20.5291 122.998 29.5263C122.998 38.5234 117.498 43.6842 107.827 43.6842H95.0856V15.414ZM154.577 77.846C161.544 77.846 168.006 74.3293 170.94 68.7575H171.169V77.2979H181.436V41.8574C181.436 31.5815 173.186 24.9592 160.49 24.9592C148.711 24.9592 140.002 31.6728 139.681 40.8983H149.673C150.498 36.5139 154.577 33.6367 160.169 33.6367C166.952 33.6367 170.756 36.7879 170.756 42.5881V46.5158L156.915 47.3379C144.036 48.1143 137.069 53.3664 137.069 62.5006C137.069 71.7261 144.265 77.846 154.577 77.846ZM157.556 69.3969C151.644 69.3969 147.886 66.5653 147.886 62.2266C147.886 57.7508 151.506 55.1476 158.427 54.7366L170.756 53.9602V57.9792C170.756 64.6471 165.073 69.3969 157.556 69.3969ZM195.14 96.6624C205.956 96.6624 211.044 92.552 215.49 80.0839L234.969 25.6443H223.694L210.631 67.7071H210.402L197.34 25.6443H185.744L204.536 77.4806L203.527 80.6319C201.831 85.9754 199.081 88.0306 194.177 88.0306C193.306 88.0306 191.611 87.9392 190.923 87.8479V96.3883C191.565 96.571 194.315 96.6624 195.14 96.6624Z"
|
||||
fill="black" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
6
002_source/cms/public/assets/logo-auth0.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="113" height="127" viewBox="0 0 113 127" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M89.3645 102.216L76.7564 63.427L109.761 39.461H68.9633L56.3539 0.673319L56.3499 0.662792H97.1541L109.767 39.4566L109.767 39.4557L109.778 39.45C117.102 61.9554 109.559 87.553 89.3645 102.215V102.216ZM23.3398 102.216L23.3297 102.223L56.3434 126.196L89.3645 102.216L56.3539 78.2434L23.3398 102.216ZM2.93551 39.4509C-4.77506 63.1748 4.17526 88.3127 23.3336 102.22L23.3367 102.208L35.947 63.4217L2.94911 39.4601H43.7374L56.3473 0.67288L56.3499 0.662354H15.5436L2.93551 39.4509Z"
|
||||
fill="#EB5424" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 620 B |
16
002_source/cms/public/assets/logo-bnb.svg
Normal file
@@ -0,0 +1,16 @@
|
||||
<svg width="170" height="170" viewBox="0 0 170 170" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd"
|
||||
d="M85.0634 0.241089C131.927 0.241089 169.911 38.2255 169.911 85.0889C169.911 131.952 131.927 169.937 85.0634 169.937C38.1999 169.937 0.215576 131.952 0.215576 85.0889C0.215576 38.2255 38.1999 0.241089 85.0634 0.241089Z"
|
||||
fill="#F0B90B" />
|
||||
<path
|
||||
d="M46.8479 85.0889L46.9091 107.525L65.9727 118.742V131.878L35.7524 114.153V78.5281L46.8479 85.0889ZM46.8479 62.6532V75.7271L35.7456 69.1595V56.0856L46.8479 49.5181L58.0046 56.0856L46.8479 62.6532ZM73.9339 56.0856L85.0362 49.5181L96.1929 56.0856L85.0362 62.6532L73.9339 56.0856Z"
|
||||
fill="white" />
|
||||
<path
|
||||
d="M54.8704 102.874V89.7392L65.9726 96.3068V109.381L54.8704 102.874ZM73.9339 123.447L85.0362 130.015L96.1929 123.447V136.521L85.0362 143.089L73.9339 136.521V123.447ZM112.115 56.0856L123.218 49.5181L134.374 56.0856V69.1595L123.218 75.7271V62.6532L112.115 56.0856ZM123.218 107.525L123.279 85.0889L134.381 78.5214V114.147L104.161 131.871V118.736L123.218 107.525Z"
|
||||
fill="white" />
|
||||
<path d="M115.256 102.874L104.154 109.381V96.3068L115.256 89.7393V102.874Z" fill="white" />
|
||||
<path
|
||||
d="M115.256 67.3035L115.318 80.4386L96.1997 91.6564V114.147L85.0974 120.653L73.9951 114.147V91.6564L54.8772 80.4386V67.3035L66.027 60.7359L85.0294 72.0082L104.147 60.7359L115.304 67.3035H115.256ZM54.8704 44.8745L85.0362 27.0891L115.256 44.8745L104.154 51.4421L85.0362 40.1698L65.9726 51.4421L54.8704 44.8745Z"
|
||||
fill="white" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
9
002_source/cms/public/assets/logo-btc.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="164" height="164" viewBox="0 0 164 164" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M161.161 101.711C150.248 145.482 105.91 172.121 62.1283 161.206C18.3654 150.293 -8.27581 105.957 2.64254 62.1899C13.5513 18.4139 57.8894 -8.22635 101.657 2.68599C145.435 13.5983 172.075 57.939 161.16 101.712L161.161 101.711H161.161Z"
|
||||
fill="#F7931A" />
|
||||
<path
|
||||
d="M117.933 70.3053C119.56 59.4321 111.281 53.5874 99.9597 49.6883L103.632 34.9596L94.6655 32.7256L91.0903 47.0665C88.733 46.4786 86.3121 45.9247 83.9061 45.3756L87.5072 30.94L78.546 28.7059L74.8714 43.4298C72.9206 42.9857 71.0046 42.5468 69.1458 42.0844L69.1562 42.038L56.7907 38.9505L54.4054 48.5266C54.4054 48.5266 61.0581 50.0514 60.9179 50.1452C64.5489 51.0514 65.2056 53.4548 65.0965 55.3598L60.9131 72.1392C61.1631 72.2027 61.4874 72.2946 61.8453 72.4384C61.5461 72.3641 61.2278 72.283 60.8975 72.2039L55.0337 95.7095C54.59 96.8126 53.4636 98.468 50.9249 97.8394C51.0148 97.9696 44.4077 96.2131 44.4077 96.2131L39.9559 106.476L51.6247 109.385C53.7955 109.929 55.9228 110.499 58.0177 111.034L54.3072 125.932L63.2636 128.166L66.9382 113.426C69.385 114.09 71.7595 114.703 74.0841 115.281L70.4219 129.951L79.3891 132.185L83.0993 117.315C98.3896 120.208 109.887 119.042 114.726 105.213C118.625 94.0797 114.532 87.6579 106.488 83.4701C112.347 82.119 116.76 78.2659 117.936 70.3065L117.934 70.3045L117.933 70.3053ZM97.4462 99.0303C94.6751 110.164 75.9274 104.145 69.8491 102.636L74.7731 82.8994C80.851 84.4166 100.342 87.419 97.4466 99.0303H97.4462ZM100.219 70.144C97.6914 80.2712 82.0875 75.1261 77.0258 73.8645L81.49 55.9644C86.5518 57.226 102.853 59.5807 100.22 70.144H100.219Z"
|
||||
fill="white" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
6
002_source/cms/public/assets/logo-discord.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="163" height="126" viewBox="0 0 163 126" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M137.835 10.7436C127.349 5.83723 116.136 2.27147 104.414 0.241089C102.974 2.84396 101.292 6.34488 100.132 9.12985C87.6708 7.25581 75.324 7.25581 63.0918 9.12985C61.9324 6.34488 60.2122 2.84396 58.7596 0.241089C47.0244 2.27147 35.7988 5.85033 25.3123 10.7696C4.1608 42.7322 -1.57302 73.901 1.29389 104.627C15.3227 115.103 28.9182 121.468 42.2843 125.632C45.5845 121.09 48.5278 116.262 51.0634 111.173C46.2343 109.338 41.609 107.074 37.2387 104.445C38.3981 103.586 39.5322 102.688 40.6279 101.764C67.2838 114.232 96.246 114.232 122.583 101.764C123.692 102.688 124.826 103.586 125.973 104.445C121.589 107.087 116.952 109.351 112.122 111.186C114.658 116.262 117.589 121.103 120.901 125.645C134.28 121.48 147.889 115.117 161.917 104.627C165.281 69.0077 156.171 38.1252 137.835 10.7436ZM54.6949 85.7308C46.6931 85.7308 40.1309 78.2606 40.1309 69.1638C40.1309 60.067 46.553 52.5839 54.6949 52.5839C62.8371 52.5839 69.399 60.0539 69.2589 69.1638C69.2715 78.2606 62.8371 85.7308 54.6949 85.7308ZM108.516 85.7308C100.515 85.7308 93.9525 78.2606 93.9525 69.1638C93.9525 60.067 100.374 52.5839 108.516 52.5839C116.658 52.5839 123.221 60.0539 123.08 69.1638C123.08 78.2606 116.658 85.7308 108.516 85.7308Z"
|
||||
fill="#5865F2" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
BIN
002_source/cms/public/assets/logo-emblem--dark.png
Normal file
After Width: | Height: | Size: 12 KiB |
6
002_source/cms/public/assets/logo-emblem--dark.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M49.976 47.3193C48.6908 48.0533 34.492 56.2757 34.492 56.2757C31.5512 57.8805 28.5587 57.9353 25.6282 56.276C20.1934 53.1985 14.7728 50.0942 9.39467 46.9195C6.51358 45.219 5.0201 42.6105 5.01263 39.2353C4.99893 33.0498 4.99155 26.864 5.01623 20.6786C5.02973 17.3023 6.5673 14.719 9.45032 13.0233C14.7881 9.88395 20.1617 6.80412 25.5485 3.74895C28.5295 2.05832 31.5683 2.09354 34.5475 3.797C39.7873 6.79312 45.0177 9.80602 50.242 12.8289C53.4192 14.6673 55.0213 17.3939 54.9928 21.1061C54.9483 26.9767 54.9305 32.8485 54.999 38.7188C55.0447 42.634 53.334 45.4123 49.976 47.3193ZM19.1745 11.7732C16.7203 13.1913 14.2807 14.6356 11.8073 16.0195C9.7877 17.1495 8.77485 18.7768 8.7956 21.1279C8.84282 26.4742 8.80763 31.8212 8.8142 37.168C8.81468 37.55 8.8825 37.9317 8.91903 38.3137C9.0338 38.3782 9.14857 38.443 9.26335 38.5078C9.6212 38.0635 9.94173 37.5823 10.3426 37.1808C15.6826 31.8333 21.0335 26.4965 26.3823 21.1577C29.374 18.1718 30.6105 18.1631 33.5573 21.1042C38.9433 26.48 44.3285 31.8567 49.7178 37.2295C50.1073 37.618 50.5268 37.9767 51.0108 38.4215C51.0983 38.1147 51.1718 37.977 51.1718 37.8393C51.175 32.0733 51.1783 26.3072 51.1653 20.5412C51.1608 18.5691 50.1653 17.1654 48.5038 16.2047C43.2788 13.1834 38.0427 10.181 32.817 7.1611C30.917 6.06315 29.0505 6.06525 27.1525 7.17995C24.5728 8.69505 21.9716 10.1737 19.1745 11.7732ZM22.6004 30.2947C19.0408 33.8495 15.4769 37.3998 11.9239 40.9608C10.4781 42.41 10.5774 43.253 12.3098 44.2555C16.4828 46.6702 20.6599 49.0783 24.8468 51.469C25.2935 51.7243 25.8163 51.847 26.3593 52.0525C26.4473 51.6602 26.5227 51.5068 26.5055 51.3643C26.462 51.0025 26.38 50.6447 26.308 50.2865C25.6175 46.8575 25.447 43.3898 26.418 40.0255C27.2845 37.0243 28.5385 34.1348 29.607 31.1908C30.363 29.1083 30.971 26.995 30.4052 24.7543C30.058 23.3782 29.6718 23.2677 28.6623 24.2588C26.6803 26.2043 24.7246 28.1765 22.6004 30.2947Z"
|
||||
fill="#212636" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
BIN
002_source/cms/public/assets/logo-emblem.png
Normal file
After Width: | Height: | Size: 9.9 KiB |
6
002_source/cms/public/assets/logo-emblem.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M49.976 47.3193C48.6908 48.0533 34.492 56.2757 34.492 56.2757C31.5512 57.8805 28.5587 57.9353 25.6282 56.276C20.1934 53.1985 14.7728 50.0942 9.39467 46.9195C6.51358 45.219 5.0201 42.6105 5.01263 39.2353C4.99893 33.0498 4.99155 26.864 5.01623 20.6786C5.02973 17.3023 6.5673 14.719 9.45032 13.0233C14.7881 9.88395 20.1617 6.80412 25.5485 3.74895C28.5295 2.05832 31.5683 2.09354 34.5475 3.797C39.7873 6.79312 45.0177 9.80602 50.242 12.8289C53.4192 14.6673 55.0213 17.3939 54.9928 21.1061C54.9483 26.9767 54.9305 32.8485 54.999 38.7188C55.0447 42.634 53.334 45.4123 49.976 47.3193ZM19.1745 11.7732C16.7203 13.1913 14.2807 14.6356 11.8073 16.0195C9.7877 17.1495 8.77485 18.7768 8.7956 21.1279C8.84282 26.4742 8.80763 31.8212 8.8142 37.168C8.81468 37.55 8.8825 37.9317 8.91903 38.3137C9.0338 38.3782 9.14857 38.443 9.26335 38.5078C9.6212 38.0635 9.94173 37.5823 10.3426 37.1808C15.6826 31.8333 21.0335 26.4965 26.3823 21.1577C29.374 18.1718 30.6105 18.1631 33.5573 21.1042C38.9433 26.48 44.3285 31.8567 49.7178 37.2295C50.1073 37.618 50.5268 37.9767 51.0108 38.4215C51.0983 38.1147 51.1718 37.977 51.1718 37.8393C51.175 32.0733 51.1783 26.3072 51.1653 20.5412C51.1608 18.5691 50.1653 17.1654 48.5038 16.2047C43.2788 13.1834 38.0427 10.181 32.817 7.1611C30.917 6.06315 29.0505 6.06525 27.1525 7.17995C24.5728 8.69505 21.9716 10.1737 19.1745 11.7732ZM22.6004 30.2947C19.0408 33.8495 15.4769 37.3998 11.9239 40.9608C10.4781 42.41 10.5774 43.253 12.3098 44.2555C16.4828 46.6702 20.6599 49.0783 24.8468 51.469C25.2935 51.7243 25.8163 51.847 26.3593 52.0525C26.4473 51.6602 26.5227 51.5068 26.5055 51.3643C26.462 51.0025 26.38 50.6447 26.308 50.2865C25.6175 46.8575 25.447 43.3898 26.418 40.0255C27.2845 37.0243 28.5385 34.1348 29.607 31.1908C30.363 29.1083 30.971 26.995 30.4052 24.7543C30.058 23.3782 29.6718 23.2677 28.6623 24.2588C26.6803 26.2043 24.7246 28.1765 22.6004 30.2947Z"
|
||||
fill="#ffffff" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
16
002_source/cms/public/assets/logo-eth.svg
Normal file
@@ -0,0 +1,16 @@
|
||||
<svg width="177" height="177" viewBox="0 0 177 177" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M88.606 176.241C137.207 176.241 176.606 136.842 176.606 88.2411C176.606 39.64 137.207 0.241089 88.606 0.241089C40.0049 0.241089 0.605957 39.64 0.605957 88.2411C0.605957 136.842 40.0049 176.241 88.606 176.241Z"
|
||||
fill="#627EEA" />
|
||||
<path d="M91.3449 22.2411V71.0261L132.578 89.4511L91.3449 22.2411Z" fill="white"
|
||||
fill-opacity="0.602" />
|
||||
<path d="M91.3449 22.2411L50.106 89.4511L91.3449 71.0261V22.2411Z" fill="white" />
|
||||
<path d="M91.3449 121.065V154.214L132.606 97.1292L91.3449 121.065Z" fill="white"
|
||||
fill-opacity="0.602" />
|
||||
<path d="M91.3449 154.214V121.06L50.106 97.1292L91.3449 154.214Z" fill="white" />
|
||||
<path d="M91.3449 113.393L132.578 89.4511L91.3449 71.0371V113.393Z" fill="white"
|
||||
fill-opacity="0.2" />
|
||||
<path d="M50.106 89.4511L91.3449 113.393V71.0371L50.106 89.4511Z" fill="white"
|
||||
fill-opacity="0.602" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 980 B |
18
002_source/cms/public/assets/logo-figma.svg
Normal file
@@ -0,0 +1,18 @@
|
||||
<svg width="94" height="141" viewBox="0 0 94 141" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M23.729 140.504C36.628 140.504 47.0967 130.063 47.0967 117.197V93.8903H23.729C10.83 93.8903 0.361206 104.332 0.361206 117.197C0.361206 130.063 10.83 140.504 23.729 140.504Z"
|
||||
fill="#0ACF83" />
|
||||
<path
|
||||
d="M0.361206 70.5832C0.361206 57.7178 10.83 47.2762 23.729 47.2762H47.0967V93.8902H23.729C10.83 93.8902 0.361206 83.4487 0.361206 70.5832Z"
|
||||
fill="#A259FF" />
|
||||
<path
|
||||
d="M0.361298 23.9693C0.361298 11.1039 10.8301 0.662354 23.7291 0.662354H47.0968V47.2763H23.7291C10.8301 47.2763 0.361298 36.8348 0.361298 23.9693Z"
|
||||
fill="#F24E1E" />
|
||||
<path
|
||||
d="M47.0967 0.662354H70.4645C83.3635 0.662354 93.8323 11.1039 93.8323 23.9693C93.8323 36.8348 83.3635 47.2763 70.4645 47.2763H47.0967V0.662354Z"
|
||||
fill="#FF7262" />
|
||||
<path
|
||||
d="M93.8323 70.5832C93.8323 83.4487 83.3635 93.8902 70.4645 93.8902C57.5655 93.8902 47.0967 83.4487 47.0967 70.5832C47.0967 57.7178 57.5655 47.2762 70.4645 47.2762C83.3635 47.2762 93.8323 57.7178 93.8323 70.5832Z"
|
||||
fill="#1ABCFE" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
13
002_source/cms/public/assets/logo-firebase.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg width="135" height="187" viewBox="0 0 135 187" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M88.321 67.6916L69.7457 84.976L52.5089 50.2094L61.4279 30.216C63.6856 26.2079 67.369 26.2002 69.6266 30.216L88.321 67.6916Z"
|
||||
fill="#FFA000" />
|
||||
<path d="M69.7457 84.9755L0.331177 149.55L52.5089 50.2089L69.7457 84.9755Z" fill="#F57F17" />
|
||||
<path
|
||||
d="M108.637 41.2725C111.956 38.0829 115.387 39.1708 116.261 43.6902L134.329 148.685L74.4343 184.582C72.3382 185.739 66.7877 186.241 66.7877 186.241C66.7877 186.241 61.7214 185.635 59.7904 184.564L0.329102 149.547L108.637 41.2725Z"
|
||||
fill="#FFCA28" />
|
||||
<path
|
||||
d="M52.5089 50.2089L0.331177 149.55L23.572 4.36026C24.4278 -0.162642 27.0023 -0.598214 29.2993 3.39403L52.5089 50.2089Z"
|
||||
fill="#FFA000" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 833 B |