frontend 2021
3
.github/CODEOWNERS
vendored
@ -1,3 +0,0 @@
|
||||
# Nix stuff is owned by Rory& - we& want to be notified if these are changed.
|
||||
/flake.nix root@rory.gay
|
||||
/nix-update.sh root@rory.gay
|
||||
1
.github/FUNDING.yml
vendored
@ -1 +0,0 @@
|
||||
open_collective: spacebar
|
||||
41
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -1,41 +0,0 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Describe the bug**
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
**To Reproduce**
|
||||
Steps to reproduce the behavior:
|
||||
1. Go to '...'
|
||||
2. Click on '....'
|
||||
3. Scroll down to '....'
|
||||
4. See error
|
||||
|
||||
**Expected behavior**
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**Console Logs**
|
||||
If applicable, add console logs to help give more information about your problem.
|
||||
|
||||
**System Information (please complete the following information):**
|
||||
- OS: [e.g. Debian Linux, Arch Linux etc.]
|
||||
- Version (If not applicable skip): [e.g Ubuntu 22.04 LTS/Windows Server 2022]
|
||||
- Node Version: [e.g Node v18.7.0]
|
||||
- Python 3 Version: [e.g Python 3.10.6]
|
||||
|
||||
**Env and Software info**
|
||||
- Release: [e.g. 0.1.0]
|
||||
- Branch (if release is not applicable): [e.g Staging]
|
||||
- Commit Hash (if release is not applicable): [e.g 401eda069a3ced17f1c43294d19765663cb8dcb7]
|
||||
- Database: [e.g Postgres 14]
|
||||
- Reverse Proxy: [e.g ngnix]
|
||||
- Thread Count: [e.g 1]
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here.
|
||||
11
.github/ISSUE_TEMPLATE/config.yml
vendored
@ -1,11 +0,0 @@
|
||||
blank_issues_enabled: true
|
||||
contact_links:
|
||||
- name: Spacebar Documentation
|
||||
url: https://docs.spacebar.chat/
|
||||
about: Need documentation and examples for the Spacebar? Head over to Spacebar's official documentation.
|
||||
- name: Discord's Developer Documentation
|
||||
url: https://discord.com/developers/docs/intro
|
||||
about: Need help with the Discord resources? Head here instead of asking on Spacebar!
|
||||
- name: Spacebar' Official Discord server
|
||||
url: https://discord.com/invite/Ms5Ev7S6bF
|
||||
about: Need help with the server? Talk with us in our official server.
|
||||
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@ -1,20 +0,0 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
||||
27
.github/workflows/build.yml
vendored
@ -1,27 +0,0 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [24.x]
|
||||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v5
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
cache: 'npm'
|
||||
- run: npm ci
|
||||
- run: npm run build --if-present
|
||||
- run: npm run test --if-present
|
||||
44
.github/workflows/dependabot-nix-update.yml
vendored
@ -1,44 +0,0 @@
|
||||
name: Dependabot-nix-update
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "dependabot/npm_and_yarn/*"
|
||||
|
||||
jobs:
|
||||
update_npm_deps_hash:
|
||||
name: Update NPM dependencies hash
|
||||
runs-on: ubuntu-latest
|
||||
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- name: Check Out Code
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Install Nix
|
||||
uses: DeterminateSystems/nix-installer-action@main
|
||||
|
||||
- name: Configure Cache
|
||||
uses: DeterminateSystems/magic-nix-cache-action@main
|
||||
|
||||
- name: Update Hash
|
||||
run: nix run .#update-nix
|
||||
|
||||
- name: Set up Git Config
|
||||
run: |
|
||||
# Configure author metadata to look like commits are made by Dependabot
|
||||
git config user.name "${GITHUB_ACTOR}"
|
||||
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
|
||||
|
||||
- name: Commit changes
|
||||
run: |
|
||||
git add .
|
||||
# Skip committing or pushing if there are no changes
|
||||
if [[ $(git status -s) ]]; then
|
||||
git commit -m "build(deps): update npm dependencies hash [dependabot skip]" --no-verify
|
||||
git push
|
||||
echo "Pushed an update to npm dependencies hash"
|
||||
else
|
||||
echo "Npm dependencies hash was not changed"
|
||||
fi
|
||||
19
.github/workflows/nix-build.yml
vendored
@ -1,19 +0,0 @@
|
||||
name: Nix build
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build-nix:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: cachix/install-nix-action@v31
|
||||
with:
|
||||
nix_path: nixpkgs=channel:nixos-unstable
|
||||
- uses: DeterminateSystems/magic-nix-cache-action@v13
|
||||
- run: nix build -L
|
||||
- run: nix develop --command echo OK
|
||||
- run: nix flake check -vL
|
||||
50
.github/workflows/publish-image.yml
vendored
@ -1,50 +0,0 @@
|
||||
name: Publish Image
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
env:
|
||||
REGISTRY: ghcr.io
|
||||
IMAGE_NAME: ${{ github.repository }}
|
||||
|
||||
jobs:
|
||||
build-and-push-image:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
attestations: write
|
||||
id-token: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Log in to the Container registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ${{ env.REGISTRY }}
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Extract metadata (tags, labels) for Docker
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||
|
||||
- name: Build and push Docker image
|
||||
id: push
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
|
||||
- name: Generate artifact attestation
|
||||
uses: actions/attest-build-provenance@v3
|
||||
with:
|
||||
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}}
|
||||
subject-digest: ${{ steps.push.outputs.digest }}
|
||||
push-to-registry: true
|
||||
28
.github/workflows/style.yml
vendored
@ -1,28 +0,0 @@
|
||||
name: Style
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [24.x]
|
||||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v5
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
cache: 'npm'
|
||||
- run: npm i --only=dev
|
||||
- run: npx eslint .
|
||||
- run: npx prettier --check .
|
||||
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 2.8 KiB |
988
assets/public/client/0.2b34836c33685cfed2cb.css
Normal file
16
assets/public/client/006ca0d19c6267812c15ff9611d4e6d5.svg
Normal file
@ -0,0 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 180 200" width="42" height="33">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1{fill:#aabff2}.cls-3{fill:#7d94df}
|
||||
</style>
|
||||
</defs>
|
||||
<path d="M155 165c0-27.5-24.38-50-54.17-50H79.17C49.38 115 25 137.5 25 165v25a36.86 36.86 0 0 0 1.38 10h127.24a36.86 36.86 0 0 0 1.38-10z" class="cls-1"/>
|
||||
<path d="M171.54 70.11c-2.33-7.19-8.77-7.21-15.08-6.9A53.25 53.25 0 0 0 152 49.14c-7.38-14.8-21.8-17.53-37-18.28-24.3-1.2-49.68-1.86-71.64 8.46C33.05 44.16 30 52.2 27.75 58.29c-.41 1.12-.73 2.33-1.08 3.5a8.68 8.68 0 0 0-.89-.14C9.5 60.6 5.5 73.7 5.71 87.63c.1 6.76.53 15.8 3.52 22 3.16 6.54 10.19 6 16.42 5.69a8.85 8.85 0 0 0 1.62-.26c5.18 14.73 18 20.44 32.92 22.39 22.89 3 48.64 3.81 71.45.11 14.21-2.3 20.56-10.78 23.4-22.26a22.34 22.34 0 0 0 5.5-.86c8-2.32 12.44-5.15 13.29-13.9.92-9.43.65-21.37-2.29-30.43z" class="cls-1"/>
|
||||
<path d="M92 93.82c-13.73-1-30.42 12.12-36.49 23.82-2.29 4.4-4.33 11.29 1.52 13.58 4.39 1.72 27.62-3.61 32.9-8 8.88 4.87 33.31 14.44 32.69-1.26-.51-14.05-17.38-27.13-30.62-28.14z"/>
|
||||
<path fill="#cbdaf7" d="M116.24 69.86c-6-4.62-14.35-4.82-21.53-5.26a135.12 135.12 0 0 0-30.13 1.58 9.87 9.87 0 0 0-2.66.85 8.66 8.66 0 0 0-7.12 6.77c-3.48 14.13-.66 32.13 14.47 38 13.11 5.11 33.08 5.06 43.94-4.21C123 99.26 128 79 116.24 69.86z"/>
|
||||
<path d="M77.7 92.6c-3.19 0-6.39 0-9.58.08a3.58 3.58 0 1 0 .45 7.15c3.19.07 6.39.06 9.59.08 4.71.02 4.24-7.33-.46-7.31zM103.79 94.31c-3.54-.21-7.09-.41-10.64-.57-4.06-.18-4.57 6.87-.48 7.16q5.79.41 11.58.72c2 .1 3.54-2.07 3.42-3.88-.13-2.18-1.9-3.31-3.88-3.43z" class="cls-1"/>
|
||||
<path d="M37 79.42c-8.86 0-7.94 13.72.86 13.72s7.96-13.72-.86-13.72zM138.19 80.06c-9.41 0-8.43 14.57.92 14.57s8.43-14.57-.92-14.57z"/>
|
||||
<path d="M23.76 78.6c0-2.85-3.45-3.85-5.47-2.65a3.52 3.52 0 0 0-4.55 2.65 50.9 50.9 0 0 0-.86 17.87c.57 4.22 1.46 9 6.33 9.9a3.69 3.69 0 0 0 4.35-3.8c-.23-8.01.08-15.97.2-23.97zM163 78.12a3 3 0 0 0-2.59-2.41 3.61 3.61 0 0 0-5.09 3.34c.1 7.48.56 15 1.06 22.43a3.8 3.8 0 0 0 2.94 3.37c11.45 3.09 4.91-21.96 3.68-26.73z" class="cls-3"/>
|
||||
<path fill="#23d093" d="M122.8 14.85S71.2-5.13 58.2 1.27c-9.89 4.86-24.68 16.09-27.45 27.88-13.13 3.22-21.9 11.71-24.82 19.66-.72 1.95.36 4.2 2 4.2h145.15c2.39 0 4.33-2.58 4.14-5.63-1.04-17.31-16.73-25.45-34.42-32.53z"/>
|
||||
<path fill="#fff" d="M53.64 33.88a297.13 297.13 0 0 1 32.09.79 2.68 2.68 0 0 0 2.84-3.27C87.19 25.35 83 13.74 71.2 13 57.79 12.17 52.7 24.26 51 30.46a2.69 2.69 0 0 0 2.64 3.42z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
14
assets/public/client/00a1b0447f0474ecaa767a4bc09fe2ed.svg
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#738BD7" d="M88,70.8c-2.1,4.6-3.1,6.7-5.7,10.8c-3.7,5.7-9,12.8-15.5,12.9
|
||||
c-5.8,0.1-7.3-3.8-15.1-3.8c-7.9,0-9.5,3.8-15.3,3.8c-6.5-0.1-11.5-6.5-15.2-12.2C10.6,66.3,9.6,47.6,16,37.6
|
||||
c4.6-7.1,11.8-11.2,18.6-11.2c6.9,0,11.3,3.8,17,3.8c5.5,0,8.9-3.8,16.9-3.8c6,0,12.4,3.3,17,9C70.5,43.6,72.9,65.1,88,70.8
|
||||
L88,70.8z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#738BD7" d="M62.4,19.9c2.9-3.7,5.1-9,4.3-14.5c-4.7,0.3-10.3,3.4-13.5,7.3
|
||||
c-2.9,3.6-5.4,8.9-4.4,14.1C53.9,27.1,59.3,24,62.4,19.9L62.4,19.9z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path d="M0 0h18v18H0z"/>
|
||||
<path fill="#737F8D" d="M14.25 2.25H3.75c-.8325 0-1.5.6675-1.5 1.5v3h1.5v-3h10.5v10.5H3.75v-3h-1.5v3c0 .8284271.67157287 1.5 1.5 1.5h10.5c.8284271 0 1.5-.6715729 1.5-1.5V3.75c0-.8325-.675-1.5-1.5-1.5zm-6.69 9.435l1.065 1.065L12.375 9l-3.75-3.75L7.56 6.3075 9.5025 8.25H2.25v1.5h7.2525L7.56 11.685z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 450 B |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#FFFFFF" d="M19,10.0620401 L19,6 L13.4,6 L13,4 L4,4 L4,21 L6,21 L6,14 L11.0722236,14 C12.4574695,11.6087945 15.0448959,10 18,10 C18.3386603,10 18.6724058,10.0210962 19,10.0620401 Z" opacity=".6"/>
|
||||
<rect width="24" height="24"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 384 B |
BIN
assets/public/client/02e75e392ab5d5a8ed5ab4f8fcae9c77.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" style="enable-background:new 0 0 45 45;" xml:space="preserve" version="1.1" id="svg2"><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata><defs id="defs6"><clipPath id="clipPath16" clipPathUnits="userSpaceOnUse"><path id="path18" d="M 0,36 36,36 36,0 0,0 0,36 Z"/></clipPath></defs><g transform="matrix(1.25,0,0,-1.25,0,45)" id="g10"><g id="g12"><g clip-path="url(#clipPath16)" id="g14"><g transform="translate(36,28.5)" id="g20"><path id="path22" style="fill:#662113;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 0,0 c 0,-4.5 -8.059,-11.5 -18,-11.5 -9.941,0 -18,7 -18,11.5 0,1.5 3,-1.5 18,-1.5 15,0 18,3 18,1.5"/></g><g transform="translate(18,25)" id="g24"><path id="path26" style="fill:#ea596e;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 0,0 c -6,0 -11,1 -11,1 l 0,-12 c 0,-6.075 4.925,-11 11,-11 6.075,0 11,4.925 11,11 L 11,1 C 11,1 6,0 0,0"/></g><g transform="translate(19,7)" id="g28"><path id="path30" style="fill:#dd2e44;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 0,0 c 0,-0.553 -0.448,-1 -1,-1 -0.552,0 -1,0.447 -1,1 l 0,16 c 0,0.552 0.448,1 1,1 0.552,0 1,-0.448 1,-1 L 0,0 Z"/></g></g></g></g></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
10
assets/public/client/0694f38cb0b10cc3b5b89366a0893768.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<g transform="translate(7 1)">
|
||||
<path stroke="#FFFFFF" stroke-width="2" d="M2.0623 38.5629C.7393 35.7659.0003 32.6389.0003 29.3399L.0003 29.3399C.0003 17.4089 9.6713 7.7379 21.6023 7.7379L21.6023 7.7379C33.5333 7.7379 43.2043 17.4089 43.2043 29.3399L43.2043 29.3399C43.2043 41.2699 33.5333 50.9419 21.6023 50.9419L21.6023 50.9419C17.5983 50.9419 13.8483 49.8529 10.6333 47.9539M5.8094 44.0792C5.4384 43.6812 5.0814 43.2702 4.7414 42.8452" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path fill="#FFFFFF" d="M21.6325,34.5733 C24.0015,34.5733 25.9045,36.4773 25.9045,38.8453 C25.9045,41.1713 24.0015,43.0333 21.6325,43.0333 C19.3065,43.0333 17.4455,41.1713 17.4455,38.8453 C17.4455,36.4773 19.3065,34.5733 21.6325,34.5733 M18.3575,16.6973 L24.8225,16.6973 C25.4165,16.6973 25.8935,17.1853 25.8795,17.7783 L25.5055,30.2133 C25.4925,30.7873 25.0225,31.2473 24.4475,31.2473 L18.7335,31.2473 C18.1585,31.2473 17.6895,30.7873 17.6765,30.2133 L17.3005,17.7783 C17.2875,17.1853 17.7645,16.6973 18.3575,16.6973"/>
|
||||
<path stroke="#FFFFFF" stroke-width="2" d="M45.1902 6.2127L42.8492 8.5537M37.1616 0L36.3046 3.198M48.2053 15.0982L51.4033 14.2412" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<rect width="60" height="60"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
28
assets/public/client/07208d2e9e612bc93dcc54562311c9a4.svg
Normal file
@ -0,0 +1,28 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="140" height="96" viewBox="0 0 140 96">
|
||||
<defs>
|
||||
<polygon id="a" points=".942 .4 2.872 .4 2.872 2.558 .942 2.558 .942 .4"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<g transform="translate(1 10)">
|
||||
<path fill="#72767D" fill-opacity=".3" d="M83.1832,10.0305 L21.7202,10.0305 C17.6632,10.0305 14.3742,13.3195 14.3742,17.3765 C14.3742,21.4335 17.6632,24.7215 21.7202,24.7215 L33.9912,24.7215 C36.3092,24.7215 38.1882,26.6015 38.1882,28.9195 L38.1882,28.9215 C38.1882,31.2395 36.3092,33.1185 33.9912,33.1185 L7.1132,33.1185 C3.8132,33.1185 1.1372,35.7935 1.1372,39.0935 C1.1372,42.3935 3.8132,45.0685 7.1132,45.0685 L36.8982,45.0685 C41.1642,45.0685 44.6232,48.5275 44.6232,52.7945 C44.6232,57.0615 41.1642,60.5205 36.8982,60.5205 L27.8882,60.5205 C24.7262,60.5205 22.1622,63.0835 22.1622,66.2455 C22.1622,69.4085 24.7262,71.9715 27.8882,71.9715 L91.7672,71.9715"/>
|
||||
<path fill="#7687B2" d="M102.2085,55.84 C99.5755,57.049 96.7715,57.657 93.9575,57.657 C91.6365,57.657 89.3095,57.243 87.0675,56.412 C82.1095,54.574 78.1635,50.915 75.9565,46.109 C71.4015,36.187 75.7665,24.407 85.6855,19.851 C90.4915,17.644 95.8685,17.441 100.8265,19.278 C105.7845,21.116 109.7305,24.776 111.9375,29.582 C116.4925,39.504 112.1285,51.283 102.2085,55.84 M82.9315,13.856 C69.6825,19.94 63.8735,35.613 69.9585,48.861 C76.0425,62.111 91.7155,67.919 104.9635,61.835 C118.2125,55.75 124.0205,40.078 117.9375,26.829 C111.8525,13.58 96.1805,7.772 82.9315,13.856"/>
|
||||
<path fill="#202225" d="M27.7505,34.9199 L36.7595,34.9199 C41.5705,34.9199 45.4855,31.0049 45.4855,26.1939 C45.4855,21.3819 41.5705,17.4679 36.7595,17.4679 L6.9745,17.4679 C4.2305,17.4679 1.9995,15.2359 1.9995,12.4929 C1.9995,9.7499 4.2305,7.5179 6.9745,7.5179 L33.8535,7.5179 C36.7195,7.5179 39.0505,5.1859 39.0505,2.3189 C39.0505,1.4989 38.8435,0.7339 38.5035,0.0439 C38.0605,0.5759 37.5095,1.0139 36.8675,1.2969 C36.9785,1.6209 37.0505,1.9609 37.0505,2.3209 C37.0505,4.0839 35.6165,5.5179 33.8535,5.5179 L6.9745,5.5179 C3.1285,5.5179 -0.0005,8.6469 -0.0005,12.4929 C-0.0005,16.3389 3.1285,19.4679 6.9745,19.4679 L36.7595,19.4679 C40.4685,19.4679 43.4855,22.4849 43.4855,26.1939 C43.4855,29.9029 40.4685,32.9199 36.7595,32.9199 L27.7505,32.9199 C24.0415,32.9199 21.0235,35.9369 21.0235,39.6459 C21.0235,43.3549 24.0415,46.3719 27.7505,46.3719 L38.8715,46.3719 C39.4235,46.3719 39.8715,45.9239 39.8715,45.3719 C39.8715,44.8189 39.4235,44.3719 38.8715,44.3719 L27.7505,44.3719 C25.1445,44.3719 23.0235,42.2519 23.0235,39.6459 C23.0235,37.0399 25.1445,34.9199 27.7505,34.9199" transform="translate(0 26.6)"/>
|
||||
<path fill="#202225" d="M21.5826,9.0305 C16.9806,9.0305 13.2366,12.7745 13.2366,17.3765 C13.2366,21.9785 16.9806,25.7215 21.5826,25.7215 C22.1356,25.7215 22.5826,25.2745 22.5826,24.7215 C22.5826,24.1695 22.1356,23.7215 21.5826,23.7215 C18.0836,23.7215 15.2366,20.8755 15.2366,17.3765 C15.2366,13.8775 18.0836,11.0305 21.5826,11.0305 L52.7776,11.0305 C52.4106,10.4195 52.1356,9.7485 51.9806,9.0305 L21.5826,9.0305 Z"/>
|
||||
<path fill="#7289DA" d="M37.5611,23.7775 C37.5611,22.3935 36.4351,21.2685 35.0521,21.2685 L33.2401,21.2685 C31.8571,21.2685 30.7311,22.3935 30.7311,23.7775 C30.7311,25.1605 31.8571,26.2865 33.2401,26.2865 L35.0521,26.2865 C36.4351,26.2865 37.5611,25.1605 37.5611,23.7775"/>
|
||||
<path fill="#4F5D7F" d="M103.9488,59.6247 C91.9208,65.1477 77.6918,59.8747 72.1688,47.8467 C66.6448,35.8187 71.9178,21.5897 83.9458,16.0657 C95.9738,10.5427 110.2028,15.8157 115.7258,27.8437 C121.2508,39.8727 115.9768,54.1007 103.9488,59.6247 M125.5498,23.2927 C120.0598,11.3387 108.4708,3.5857 95.3058,3.0597 C95.2258,3.0567 95.1468,3.0427 95.0708,3.0217 L58.4438,3.0217 C55.8998,3.0217 53.8298,5.0917 53.8298,7.6357 C53.8298,10.1807 55.8998,12.2497 58.4438,12.2497 L67.8858,12.2497 C67.9208,12.2497 67.9558,12.2517 67.9898,12.2557 C70.4248,12.3117 72.3948,14.3207 72.3948,16.7597 C72.3948,19.2457 70.3728,21.2687 67.8858,21.2687 L48.5898,21.2687 C47.2068,21.2687 46.0808,22.3937 46.0808,23.7777 C46.0808,25.1607 47.2068,26.2867 48.5898,26.2867 L61.5698,26.2867 C64.0558,26.2867 66.0788,28.3097 66.0788,30.7957 C66.0788,33.2817 64.0558,35.3047 61.5698,35.3047 L55.8458,35.3047 C54.4628,35.3047 53.3378,36.4297 53.3378,37.8137 C53.3378,39.1967 54.4628,40.3227 55.8458,40.3227 L58.3458,40.3227 C58.8598,40.3227 59.2908,40.7127 59.3418,41.2247 C59.7208,45.0727 60.7318,48.8047 62.3448,52.3177 C66.2208,60.7587 73.1528,67.1857 81.8628,70.4137 C90.5718,73.6407 100.0178,73.2847 108.4598,69.4077 C125.8858,61.4057 133.5518,40.7187 125.5498,23.2927"/>
|
||||
<path fill="#EBEFF7" d="M110.1207,30.4162 C108.1367,26.0952 104.5897,22.8062 100.1317,21.1532 C98.1167,20.4072 96.0237,20.0352 93.9377,20.0352 C91.4087,20.0352 88.8877,20.5812 86.5197,21.6682 C77.6027,25.7642 73.6797,36.3542 77.7737,45.2742 C79.7587,49.5952 83.3057,52.8852 87.7637,54.5372 C92.2227,56.1892 97.0547,56.0072 101.3737,54.0222 C110.2917,49.9262 114.2157,39.3362 110.1207,30.4162"/>
|
||||
<g transform="translate(135 .6)">
|
||||
<mask id="b" fill="white">
|
||||
<use xlink:href="#a"/>
|
||||
</mask>
|
||||
<path fill="#FFFFFF" d="M1.441,2.5581 C1.587,2.5581 1.733,2.4941 1.832,2.3711 L2.762,1.2121 C2.935,0.9971 2.901,0.6831 2.686,0.5101 C2.471,0.3371 2.156,0.3711 1.983,0.5861 L1.052,1.7451 C0.879,1.9601 0.914,2.2751 1.129,2.4481 C1.221,2.5221 1.332,2.5581 1.441,2.5581" mask="url(#b)"/>
|
||||
</g>
|
||||
<path fill="#FFFFFF" d="M132.2974 6.028L131.3654 7.187C131.1934 7.402 131.2274 7.716 131.4434 7.889 131.5344 7.964 131.6454 8 131.7554 8 131.9014 8 132.0464 7.936 132.1454 7.813L133.0764 6.654C133.2494 6.439 133.2154 6.124 132.9994 5.951 132.7844 5.779 132.4704 5.813 132.2974 6.028M137.9351 7.0173L136.9291 5.9073C136.7441 5.7023 136.4271 5.6873 136.2231 5.8723 136.0181 6.0583 136.0021 6.3733 136.1881 6.5783L137.1941 7.6883C137.2921 7.7973 137.4281 7.8523 137.5641 7.8523 137.6841 7.8523 137.8041 7.8093 137.9001 7.7233 138.1051 7.5383 138.1211 7.2223 137.9351 7.0173M132.5699 3.2565C132.6889 3.2565 132.8089 3.2135 132.9049 3.1275 133.1099 2.9415 133.1259 2.6255 132.9399 2.4215L131.9349 1.3115C131.7499 1.1055 131.4339 1.0915 131.2289 1.2765 131.0239 1.4615 131.0079 1.7775 131.1939 1.9825L132.1989 3.0915C132.2979 3.2015 132.4329 3.2565 132.5699 3.2565M53.521 66.6936C52.453 66.6936 51.584 65.8246 51.584 64.7566 51.584 63.6886 52.453 62.8196 53.521 62.8196 54.588 62.8196 55.458 63.6886 55.458 64.7566 55.458 65.8246 54.588 66.6936 53.521 66.6936M53.521 61.8196C51.901 61.8196 50.583 63.1366 50.583 64.7566 50.583 66.3766 51.901 67.6936 53.521 67.6936 55.14 67.6936 56.458 66.3766 56.458 64.7566 56.458 63.1366 55.14 61.8196 53.521 61.8196M35.5435 49.656C35.2675 49.656 35.0435 49.88 35.0435 50.156L35.0435 50.156C35.0435 51.226 34.1765 52.094 33.1055 52.094 32.8295 52.094 32.6055 52.317 32.6055 52.594 32.6055 52.87 32.8295 53.094 33.1055 53.094 34.1765 53.094 35.0435 53.961 35.0435 55.031 35.0435 55.307 35.2675 55.531 35.5435 55.531 35.8195 55.531 36.0435 55.307 36.0435 55.031 36.0435 53.961 36.9105 53.094 37.9805 53.094 38.2565 53.094 38.4805 52.87 38.4805 52.594 38.4805 52.317 38.2565 52.094 37.9805 52.094 36.9105 52.094 36.0435 51.226 36.0435 50.156L36.0435 50.156C36.0435 49.88 35.8195 49.656 35.5435 49.656"/>
|
||||
<path fill="#202225" d="M46.0835,70.9719 L44.1595,70.9719 C43.6075,70.9719 43.1595,71.4199 43.1595,71.9719 C43.1595,72.5239 43.6075,72.9719 44.1595,72.9719 L46.0835,72.9719 C46.6355,72.9719 47.0835,72.5239 47.0835,71.9719 C47.0835,71.4199 46.6355,70.9719 46.0835,70.9719"/>
|
||||
<path fill="#040405" d="M35.0523 26.2863L33.2403 26.2863C31.8573 26.2863 30.7313 25.1613 30.7313 23.7773 30.7313 22.3933 31.8573 21.2683 33.2403 21.2683L35.0523 21.2683C36.4353 21.2683 37.5613 22.3933 37.5613 23.7773 37.5613 25.1613 36.4353 26.2863 35.0523 26.2863M35.0523 19.2683L33.2403 19.2683C30.7533 19.2683 28.7313 21.2913 28.7313 23.7773 28.7313 26.2643 30.7533 28.2863 33.2403 28.2863L35.0523 28.2863C35.6983 28.2863 36.3113 28.1443 36.8673 27.8973 37.5093 27.6143 38.0603 27.1763 38.5033 26.6433 39.1543 25.8623 39.5613 24.8713 39.5613 23.7773 39.5613 21.2913 37.5383 19.2683 35.0523 19.2683M108.4595 69.4079C100.0185 73.2839 90.5715 73.6409 81.8625 70.4139 73.1525 67.1859 66.2215 60.7589 62.3455 52.3179 60.7315 48.8049 59.7215 45.0729 59.3415 41.2239 59.2905 40.7129 58.8595 40.3229 58.3465 40.3229L55.8465 40.3229C54.4625 40.3229 53.3375 39.1969 53.3375 37.8139 53.3375 36.4299 54.4625 35.3039 55.8465 35.3039L61.5695 35.3039C64.0565 35.3039 66.0785 33.2819 66.0785 30.7959 66.0785 28.3089 64.0565 26.2859 61.5695 26.2859L48.5895 26.2859C47.2065 26.2859 46.0805 25.1609 46.0805 23.7779 46.0805 22.3939 47.2065 21.2679 48.5895 21.2679L67.8865 21.2679C70.3725 21.2679 72.3955 19.2459 72.3955 16.7599 72.3955 14.3209 70.4245 12.3119 67.9895 12.2559 67.9555 12.2519 67.9205 12.2499 67.8865 12.2499L58.4435 12.2499C55.8995 12.2499 53.8295 10.1799 53.8295 7.6359 53.8295 5.0919 55.8995 3.0219 58.4435 3.0219L95.0705 3.0219C95.1465 3.0429 95.2265 3.0559 95.3065 3.0589 108.4715 3.5859 120.0605 11.3389 125.5495 23.2929 133.5515 40.7189 125.8855 61.4059 108.4595 69.4079M128.3855 24.8969C123.1315 10.9679 110.3475 1.7699 95.6685 1.0739 95.5665 1.0389 95.4595 1.0219 95.3515 1.0219L58.7395 1.0219C55.7705 1.0219 53.0245 2.8629 52.1325 5.6959 51.7635 6.8659 51.7565 7.9909 51.9805 9.0309 52.1355 9.7479 52.4105 10.4199 52.7775 11.0309 53.9365 12.9549 56.0395 14.2499 58.4435 14.2499L67.8315 14.2499C67.8755 14.2539 67.9205 14.2559 67.9665 14.2549 68.7055 14.2369 69.4525 14.5109 69.8645 15.1249 71.2105 17.1299 69.7935 19.2679 67.8865 19.2679L48.7905 19.2679C46.4375 19.2679 44.3315 20.9849 44.1035 23.3269 43.8415 26.0149 45.9545 28.2859 48.5895 28.2859L61.4215 28.2859C62.7335 28.2859 63.9325 29.2279 64.0655 30.5329 64.2195 32.0329 63.0405 33.3039 61.5695 33.3039L56.0475 33.3039C53.6935 33.3039 51.5875 35.0209 51.3585 37.3639 51.0975 40.0509 53.2115 42.3229 55.8465 42.3229 56.7685 42.3229 57.5295 43.0019 57.6825 43.9109 58.2185 47.1009 59.1715 50.1999 60.5275 53.1529 64.6265 62.0789 71.9565 68.8749 81.1675 72.2889 85.3315 73.8319 89.6545 74.5999 93.9665 74.5999 99.3925 74.5999 104.8015 73.3839 109.8535 70.9639 126.9225 62.7859 135.0645 42.6059 128.3855 24.8969"/>
|
||||
<path fill="#040405" d="M101.3736,54.0227 C97.0546,56.0077 92.2226,56.1897 87.7636,54.5377 C83.3056,52.8847 79.7586,49.5957 77.7736,45.2747 C73.6796,36.3547 77.6026,25.7647 86.5196,21.6687 C88.8876,20.5807 91.4086,20.0347 93.9376,20.0347 C96.0236,20.0347 98.1166,20.4067 100.1316,21.1537 C104.5896,22.8057 108.1366,26.0957 110.1206,30.4167 C114.2156,39.3367 110.2916,49.9257 101.3736,54.0227 M100.8266,19.2787 C95.8686,17.4407 90.4916,17.6437 85.6856,19.8507 C75.7666,24.4077 71.4016,36.1867 75.9566,46.1087 C78.1636,50.9157 82.1096,54.5747 87.0676,56.4127 C89.3096,57.2437 91.6366,57.6567 93.9576,57.6567 C96.7706,57.6567 99.5756,57.0497 102.2086,55.8397 C112.1286,51.2837 116.4926,39.5037 111.9376,29.5817 C109.7306,24.7757 105.7846,21.1167 100.8266,19.2787"/>
|
||||
<path fill="#B7C2CE" d="M100.272,28.2971 C99.969,27.7661 99.408,27.4391 98.8,27.4391 L88.865,27.4391 C88.257,27.4391 87.696,27.7661 87.392,28.2971 L82.424,36.9871 C82.121,37.5181 82.121,38.1721 82.424,38.7041 L87.392,47.3931 C87.696,47.9241 88.257,48.2521 88.865,48.2521 L98.8,48.2521 C99.408,48.2521 99.969,47.9241 100.272,47.3931 L105.241,38.7041 C105.544,38.1721 105.544,37.5181 105.241,36.9871 L100.272,28.2971 Z"/>
|
||||
</g>
|
||||
<rect width="140" height="96"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#7289DA" fill-rule="nonzero" d="M24,10 C27.3142857,10 30,12.6857143 30,16 C30,19.3142857 27.3142857,22 24,22 C20.6857143,22 18,19.3142857 18,16 C18,12.6857143 20.6857143,10 24,10 L24,10 Z M38,34 L38,38 L10,38 L10,34 C10,32 17.1836066,28 24,28 C30.8163934,28 38,32 38,34 Z M24,8 C19.58,8 16,11.58 16,16 C16,20.42 19.58,24 24,24 C28.42,24 32,20.42 32,16 C32,11.58 28.42,8 24,8 Z M24,26 C18.66,26 8,28.68 8,34 L8,40 L40,40 L40,34 C40,28.68 29.34,26 24,26 Z"/>
|
||||
<polygon fill="#7289DA" points="42 20 47 20 47 22 42 22 42 27 40 27 40 22 35 22 35 20 40 20 40 15 42 15"/>
|
||||
<polygon points="0 0 48 0 48 48 0 48"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 764 B |
BIN
assets/public/client/07dca80a102d4149e9736d4b162cff6f.ico
Normal file
|
After Width: | Height: | Size: 614 B |
BIN
assets/public/client/08d0c70a708cd25acecb7a8b0cb0eb23.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
352
assets/public/client/0b298968e0a756e25677771fd6b58b34.svg
Normal file
@ -0,0 +1,352 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="104" viewBox="0 0 100 104" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<path id="a" d="M3.22702703,39.8769595 L3.22702703,1.44189189 C3.22702703,1.44189189 2.328636,0.619942183 0.329121622,0.0228533256 L0.329121622,39.8769595 L3.22702703,39.8769595 L3.22702703,39.8769595 Z"/>
|
||||
<path id="c" d="M0.524324324,1.62425676 L0.524324324,0.0905405405 C0.524324324,0.0905405405 0.517566609,0.0843578182 0.503918919,0.0726752935 L0.503918919,1.62425676 L0.524324324,1.62425676 L0.524324324,1.62425676 Z"/>
|
||||
<polygon id="e" points=".525 .308 .525 10.868 4.069 10.868 4.069 .308"/>
|
||||
<polygon id="g" points=".525 .45 .525 6.668 6.284 6.668 6.284 .45 .525 .45"/>
|
||||
<polygon id="i" points=".525 .348 .525 10.823 6.284 10.823 6.284 .348 .525 .348"/>
|
||||
<path id="k" d="M0.525,20.0026351 L0.525,2.11756757 C0.525,2.11756757 2.47107589,0.336534113 7.01209459,0.113405104 L7.01209459,20.0026351 L0.525,20.0026351 L0.525,20.0026351 Z"/>
|
||||
<path id="m" d="M3.40371622,0.375885409 C2.05733079,0.63186762 1.05645005,1.01914142 0.36722973,1.36355109 L0.36722973,16.7104054 L3.40371622,16.7104054 L3.40371622,0.375885409 L3.40371622,0.375885409 Z"/>
|
||||
<path id="o" d="M1.62547297,0.252929316 C1.30206022,0.208072325 0.961639439,0.171068274 0.603851351,0.143772234 L0.603851351,9.44317568 L1.62547297,9.44317568 L1.62547297,0.25292723 L1.62547297,0.252929316 Z"/>
|
||||
<path id="q" d="M1.37621622,0.375975342 C1.01039223,0.445540347 0.670078024,0.52479766 0.354594595,0.610253269 L0.354594595,1.6077027 L1.37621622,1.6077027 L1.37621622,0.375975342 L1.37621622,0.375975342 Z"/>
|
||||
<polygon id="s" points=".524 10.413 .524 .12 .504 .12 .504 10.413 .524 10.413"/>
|
||||
<path id="u" d="M0.525,0.148581081 L0.525,32.522973 C0.525,32.5867866 0.535810584,32.6499109 0.556959459,32.7122172 L0.556959459,0.148581081 L0.525,0.148581081 L0.525,0.148581081 Z"/>
|
||||
<path id="w" d="M0.605135135,30.7261132 C0.925034464,30.7961554 1.26663714,30.8591269 1.62675515,30.9141587 L1.62675676,0.573581081 L0.605135135,0.573581081 L0.605135135,30.7261132 L0.605135135,30.7261132 Z"/>
|
||||
<path id="y" d="M0.000135135135,16.9561274 C0.333748235,16.9709027 0.674810986,16.9796214 1.02175676,16.9818567 L1.02175676,0.595945946 L0.000135135135,0.595945946 L0.000135135135,16.9561274 L0.000135135135,16.9561274 Z"/>
|
||||
<path id="A" d="M5.22374855,24.5991892 C5.24380697,24.5384804 5.25405405,24.4769994 5.25405405,24.4148649 L5.25405405,0.216081081 L0.0918243243,0.216081081 L0.0918243243,24.5991892 L5.22374855,24.5991892 L5.22374855,24.5991892 Z"/>
|
||||
<polygon id="C" points="3.227 19.334 3.227 .004 .172 .004 .172 19.334 3.227 19.334"/>
|
||||
<path id="E" d="M0.17222973,3.08029492 C2.02398812,2.71166287 3.22702703,2.11513585 3.22702703,1.44189189 L3.22702703,0.203108108 L0.17222973,0.203108108 L0.17222973,3.08029492 L0.17222973,3.08029492 Z"/>
|
||||
<polygon id="G" points="1.2 13.717 1.2 .251 .317 .251 .317 13.717 1.2 13.717"/>
|
||||
<polygon id="I" points="1.2 7.406 1.2 .149 .221 .149 .221 7.406 1.2 7.406"/>
|
||||
<polygon id="K" points="6.704 .812 .264 .351 .264 4.493 6.704 4.493 6.704 .812"/>
|
||||
<polygon id="M" points="6.573 6.833 9.632 5.096 3.707 .503 .376 .264 .376 6.833 6.573 6.833"/>
|
||||
<polygon id="O" points="20.554 1.559 .93 .153 .584 4.979 20.554 4.979 20.554 1.559"/>
|
||||
<polygon id="Q" points="16.589 1.323 .254 .153 .076 2.643 16.589 2.643 16.589 1.323"/>
|
||||
<polygon id="S" points=".592 .135 .491 1.557 3.178 1.557 3.178 .135 .592 .135"/>
|
||||
<polygon id="U" points=".067 .418 13.775 1.4 13.775 .418 .067 .418"/>
|
||||
<polygon id="W" points=".18 .623 10.545 1.366 11.852 .623 .18 .623"/>
|
||||
<polygon id="Y" points=".106 .048 5.959 6.825 46.305 6.825 46.305 .048 .106 .048"/>
|
||||
<polygon id="aa" points="40.9 1.165 40.9 .143 .055 .143 .055 1.165 40.9 1.165"/>
|
||||
<polygon id="ac" points="15.224 .444 15.224 .273 .507 .273 .507 .444"/>
|
||||
<polygon id="ae" points="11.17 1.419 11.17 .398 .131 .398 .131 1.419 11.17 1.419"/>
|
||||
<polygon id="ag" points="7.792 1.094 7.792 .072 .014 .072 .014 1.094 7.792 1.094"/>
|
||||
<polygon id="ai" points=".547 7.135 24.089 4.406 24.089 .649 .547 .649 .547 7.135"/>
|
||||
<polygon id="ak" points=".332 3.468 19.556 1.24 19.556 .076 .332 .076 .332 3.468"/>
|
||||
<polygon id="am" points=".595 1.108 1.056 .583 .595 .583 .595 1.108"/>
|
||||
<polygon id="ao" points=".352 3.143 1.208 3.044 1.801 8.163 2.596 8.163 9.285 .539 .352 .539 .352 3.143"/>
|
||||
<polygon id="aq" points=".201 .208 2.194 2.406 .201 6.006 .201 6.842 8.12 5.924 8.12 .199 .201 .199 .201 .208"/>
|
||||
<polygon id="as" points="5.321 3.942 .236 .314 .657 3.942 5.321 3.942"/>
|
||||
<polygon id="au" points=".388 .973 1.149 .273 24.771 .273 24.771 9.732 1.149 9.732 .388 9.203 .388 .973"/>
|
||||
<polygon id="aw" points=".136 .949 10.135 .949 10.135 .329 .136 .329 .136 .949"/>
|
||||
<polygon id="ay" points="5.879 7.351 3.064 4.306 6.896 .197 .375 .197 .375 7.351 5.879 7.351"/>
|
||||
<polygon id="aA" points="4.2 .466 .023 4.306 .445 4.6 4.2 4.6 4.2 .466"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<g transform="translate(1.351 1.351)">
|
||||
<path stroke="#282B32" stroke-width="2" d="M13.0912162 98.2128378L97.1459459 98.2128378M4.57864865 98.2128378L8.10837838 98.2128378M80.2527027 95.2989865L79.577027 98.2125" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g transform="translate(33.108 23.122)">
|
||||
<path stroke="#282B32" stroke-width="2" d="M42.7527027,75.0905405 L31.2662162,75.0905405 L31.2662162,72.3878378 C31.2662162,70.5222973 32.7790541,69.0094595 34.6445946,69.0094595 L39.3743243,69.0094595 C41.2398649,69.0094595 42.7527027,70.5222973 42.7527027,72.3878378 L42.7527027,75.0905405 L42.7527027,75.0905405 Z" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path fill="#35383E" d="M33.9689189,75.0905405 L29.2391892,75.0905405 L29.2391892,73.0635135 C29.2391892,72.3168919 29.8439189,71.7121622 30.5905405,71.7121622 L32.6175676,71.7121622 C33.3641892,71.7121622 33.9689189,72.3168919 33.9689189,73.0635135 L33.9689189,75.0905405 Z"/>
|
||||
<path stroke="#282B32" stroke-width="2" d="M33.9689189 75.0905405L29.2391892 75.0905405 29.2391892 73.0635135C29.2391892 72.3168919 29.8439189 71.7121622 30.5905405 71.7121622L32.6175676 71.7121622C33.3641892 71.7121622 33.9689189 72.3168919 33.9689189 73.0635135L33.9689189 75.0905405 33.9689189 75.0905405zM39.9373649 71.7121622C39.9373649 71.7121622 38.3610135 72.2189189 37.0096622 72.05M3.22567568 71.2054054L4.12635135 75.0905405M.0725 73.147973L.973175676 75.0905405" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path fill="#31343A" d="M9.30837838,2.11756757 L9.30837838,75.0905405 C9.30837838,76.2101351 12.6360811,77.1175676 16.7408108,77.1175676 C20.8455405,77.1175676 24.1732432,76.2101351 24.1732432,75.0905405 L24.1732432,2.11756757 C24.1732432,2.11756757 21.9577027,0.0905405405 16.7408108,0.0905405405 C11.5239189,0.0905405405 9.30837838,2.11756757 9.30837838,2.11756757"/>
|
||||
</g>
|
||||
<g transform="translate(41.892 23.122)">
|
||||
<path fill="#34373D" d="M9.89844595 11.2922973C9.61601351 11.2922973 9.38763514 11.5206757 9.38763514 11.8031081L9.38763514 29.7112162C9.38763514 29.9936486 9.61601351 30.2227027 9.89844595 30.2227027 10.1808784 30.2227027 10.4092568 29.9936486 10.4092568 29.7112162L10.4092568 11.8031081C10.4092568 11.5206757 10.1808784 11.2922973 9.89844595 11.2922973M9.89844595 32.0097973C9.61601351 32.0097973 9.38763514 32.2381757 9.38763514 32.5206081L9.38763514 40.0415541C9.38763514 40.3239865 9.61601351 40.5523649 9.89844595 40.5523649 10.1808784 40.5523649 10.4092568 40.3239865 10.4092568 40.0415541L10.4092568 32.5206081C10.4092568 32.2381757 10.1808784 32.0097973 9.89844595 32.0097973"/>
|
||||
<g transform="translate(12.162 .676)">
|
||||
<mask id="b" fill="white">
|
||||
<use xlink:href="#a"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M6.08452703,31.3485811 C5.5852027,30.3093919 4.91966216,29.3458784 4.08047297,28.5066892 C2.32033784,26.7472297 1.35074324,24.4066892 1.35074324,21.9168243 L1.35074324,16.1641216 C1.85074324,17.2046622 2.51763514,18.169527 3.35817568,19.0100676 C5.11628378,20.7681757 6.08452703,23.1066892 6.08452703,25.5938514 L6.08452703,31.3485811 Z M1.35074324,11.6972297 L1.35074324,6.83709459 L1.35074324,-3.3825 C1.35074324,-3.66493243 1.12236486,-3.89331081 0.839932432,-3.89331081 C0.5575,-3.89331081 0.329121622,-3.66493243 0.329121622,-3.3825 L0.329121622,6.83709459 L0.329121622,11.6972297 L0.329121622,21.9168243 C0.329121622,24.6796622 1.4047973,27.2762838 3.35817568,29.2289865 C5.11628378,30.9877703 6.08452703,33.3262838 6.08452703,35.8134459 L6.08452703,36.2999324 L6.08452703,39.3661486 C6.08452703,39.6485811 6.31290541,39.8769595 6.59533784,39.8769595 C6.87777027,39.8769595 7.10614865,39.6485811 7.10614865,39.3661486 L7.10614865,36.2999324 L7.10614865,35.8134459 L7.10614865,25.5938514 C7.10614865,22.8343919 6.03182432,20.2391216 4.08047297,18.2870946 C2.32033784,16.5276351 1.35074324,14.1877703 1.35074324,11.6972297 L1.35074324,11.6972297 Z" mask="url(#b)"/>
|
||||
</g>
|
||||
<g transform="translate(14.865 2.027)">
|
||||
<mask id="d" fill="white">
|
||||
<use xlink:href="#c"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M5.97216216,-5.24466216 C5.68972973,-5.24466216 5.46135135,-5.01628378 5.46135135,-4.73385135 L5.46135135,-1.36425676 C5.46135135,-0.279797297 4.57824324,0.602635135 3.49378378,0.602635135 C2.40864865,0.602635135 1.52621622,-0.279797297 1.52621622,-1.36425676 L1.52621622,-4.73385135 C1.52621622,-5.01628378 1.29783784,-5.24466216 1.01540541,-5.24466216 C0.732972973,-5.24466216 0.503918919,-5.01628378 0.503918919,-4.73385135 L0.503918919,-1.36425676 C0.503918919,0.283040541 1.84513514,1.62425676 3.49378378,1.62425676 C5.14175676,1.62425676 6.48297297,0.283040541 6.48297297,-1.36425676 L6.48297297,-4.73385135 C6.48297297,-5.01628378 6.25459459,-5.24466216 5.97216216,-5.24466216" mask="url(#d)"/>
|
||||
</g>
|
||||
<g transform="translate(0 25)">
|
||||
<mask id="f" fill="white">
|
||||
<use xlink:href="#e"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M1.68493243,10.8680405 C2.9997973,10.8680405 4.06939189,9.79844595 4.06939189,8.48358108 L4.06939189,2.69236486 C4.06939189,1.37817568 2.9997973,0.307905405 1.68493243,0.307905405 C1.4025,0.307905405 1.17412162,0.536959459 1.17412162,0.819391892 C1.17412162,1.10182432 1.4025,1.3302027 1.68493243,1.3302027 C2.43560811,1.3302027 3.04709459,1.94101351 3.04709459,2.69236486 L3.04709459,8.48358108 C3.04709459,9.23560811 2.43560811,9.84641892 1.68493243,9.84641892 C0.933581081,9.84641892 0.322094595,9.23560811 0.322094595,8.48358108 L0.322094595,2.69236486 C0.322094595,2.40993243 0.0937162162,2.18155405 -0.188716216,2.18155405 C-0.471148649,2.18155405 -0.699527027,2.40993243 -0.699527027,2.69236486 L-0.699527027,8.48358108 C-0.699527027,9.79844595 0.370067568,10.8680405 1.68493243,10.8680405" mask="url(#f)"/>
|
||||
</g>
|
||||
<g transform="translate(0 21.622)">
|
||||
<mask id="h" fill="white">
|
||||
<use xlink:href="#g"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M2.79168919,0.450067568 C0.866689189,0.450067568 -0.699527027,2.01695946 -0.699527027,3.94195946 C-0.699527027,4.22439189 -0.471148649,4.45277027 -0.188716216,4.45277027 C0.0937162162,4.45277027 0.322094595,4.22439189 0.322094595,3.94195946 C0.322094595,2.5797973 1.4302027,1.47168919 2.79168919,1.47168919 C4.15317568,1.47168919 5.26195946,2.5797973 5.26195946,3.94195946 L5.26195946,6.15682432 C5.26195946,6.43925676 5.49033784,6.66763514 5.77277027,6.66763514 C6.0552027,6.66763514 6.28358108,6.43925676 6.28358108,6.15682432 L6.28358108,3.94195946 C6.28358108,2.01695946 4.71736486,0.450067568 2.79168919,0.450067568" mask="url(#h)"/>
|
||||
</g>
|
||||
<g transform="translate(0 29.73)">
|
||||
<mask id="j" fill="white">
|
||||
<use xlink:href="#i"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M5.7727027,0.347905405 C5.49027027,0.347905405 5.26189189,0.576283784 5.26189189,0.858716216 L5.26189189,6.22425676 C5.26189189,8.19587838 3.65716216,9.80128378 1.68486486,9.80128378 C-0.287432432,9.80128378 -1.89216216,8.19587838 -1.89216216,6.22425676 L-1.89216216,4.21141892 C-1.89216216,3.92898649 -2.12054054,3.69993243 -2.40297297,3.69993243 C-2.68540541,3.69993243 -2.91378378,3.92898649 -2.91378378,4.21141892 L-2.91378378,6.22425676 C-2.91378378,8.76006757 -0.850945946,10.8229054 1.68486486,10.8229054 C4.22067568,10.8229054 6.28351351,8.76006757 6.28351351,6.22425676 L6.28351351,0.858716216 C6.28351351,0.576283784 6.05513514,0.347905405 5.7727027,0.347905405" mask="url(#j)"/>
|
||||
</g>
|
||||
<mask id="l" fill="white">
|
||||
<use xlink:href="#k"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M6.50128378,-3.21763514 C6.21885135,-3.21763514 5.99047297,-2.98925676 5.99047297,-2.70682432 L5.99047297,16.2276351 C5.99047297,17.7452027 4.75533784,18.9810135 3.23709459,18.9810135 C1.71817568,18.9810135 0.483040541,17.7452027 0.483040541,16.2276351 L0.483040541,-0.804797297 C0.483040541,-1.08722973 0.253986486,-1.31560811 -0.0284459459,-1.31560811 C-0.310878378,-1.31560811 -0.539256757,-1.08722973 -0.539256757,-0.804797297 L-0.539256757,16.2276351 C-0.539256757,18.3093919 1.15533784,20.0026351 3.23709459,20.0026351 C5.31885135,20.0026351 7.01209459,18.3093919 7.01209459,16.2276351 L7.01209459,-2.70682432 C7.01209459,-2.98925676 6.78371622,-3.21763514 6.50128378,-3.21763514" mask="url(#l)"/>
|
||||
<g transform="translate(1.351)">
|
||||
<mask id="n" fill="white">
|
||||
<use xlink:href="#m"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M1.88547297,16.7104054 C2.72195946,16.7104054 3.40371622,16.03 3.40371622,15.1921622 L3.40371622,5.46918919 C3.40371622,5.18675676 3.17466216,4.9577027 2.89222973,4.9577027 C2.6097973,4.9577027 2.38141892,5.18675676 2.38141892,5.46918919 L2.38141892,15.1921622 C2.38141892,15.4658108 2.15912162,15.6887838 1.88547297,15.6887838 C1.61182432,15.6887838 1.38885135,15.4658108 1.38885135,15.1921622 L1.38885135,-2.70648649 C1.38885135,-2.98891892 1.16047297,-3.21797297 0.878040541,-3.21797297 C0.595608108,-3.21797297 0.36722973,-2.98891892 0.36722973,-2.70648649 L0.36722973,15.1921622 C0.36722973,16.03 1.04831081,16.7104054 1.88547297,16.7104054" mask="url(#n)"/>
|
||||
</g>
|
||||
<g transform="translate(8.784)">
|
||||
<mask id="p" fill="white">
|
||||
<use xlink:href="#o"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M1.11466216,-3.21763514 C0.83222973,-3.21763514 0.603851351,-2.98925676 0.603851351,-2.70682432 L0.603851351,8.93236486 C0.603851351,9.2147973 0.83222973,9.44317568 1.11466216,9.44317568 C1.39709459,9.44317568 1.62547297,9.2147973 1.62547297,8.93236486 L1.62547297,-2.70682432 C1.62547297,-2.98925676 1.39709459,-3.21763514 1.11466216,-3.21763514" mask="url(#p)"/>
|
||||
</g>
|
||||
<g transform="translate(3.378)">
|
||||
<mask id="r" fill="white">
|
||||
<use xlink:href="#q"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M0.865405405,1.6077027 C1.14783784,1.6077027 1.37621622,1.37932432 1.37621622,1.09689189 L1.37621622,-2.70648649 C1.37621622,-2.98891892 1.14783784,-3.2172973 0.865405405,-3.2172973 C0.582972973,-3.2172973 0.354594595,-2.98891892 0.354594595,-2.70648649 L0.354594595,1.09689189 C0.354594595,1.37932432 0.582972973,1.6077027 0.865405405,1.6077027" mask="url(#r)"/>
|
||||
</g>
|
||||
<g transform="translate(14.865 5.405)">
|
||||
<mask id="t" fill="white">
|
||||
<use xlink:href="#s"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M3.49364865,9.39182432 C2.40851351,9.39182432 1.52608108,8.50939189 1.52608108,7.42493243 L1.52608108,7.39587838 C2.05310811,7.86074324 2.73689189,8.15263514 3.49364865,8.15263514 C4.25040541,8.15263514 4.93418919,7.86074324 5.46121622,7.39587838 L5.46121622,7.42493243 C5.46121622,8.50939189 4.57878378,9.39182432 3.49364865,9.39182432 M5.45040541,5.26682432 C5.395,6.30263514 4.5422973,7.13033784 3.49364865,7.13033784 C2.445,7.13033784 1.5922973,6.30263514 1.53689189,5.26682432 C1.5922973,4.23168919 2.445,3.40398649 3.49364865,3.40398649 C4.5422973,3.40398649 5.395,4.23168919 5.45040541,5.26682432 M3.49364865,1.1425 C4.57878378,1.1425 5.46121622,2.02425676 5.46121622,3.10939189 L5.46121622,3.13844595 C4.93418919,2.67358108 4.25040541,2.38168919 3.49364865,2.38168919 C2.73689189,2.38168919 2.05310811,2.67358108 1.52608108,3.13844595 L1.52608108,3.10939189 C1.52608108,2.02425676 2.40851351,1.1425 3.49364865,1.1425 M3.49364865,0.120202703 C1.84567568,0.120202703 0.504459459,1.46141892 0.504459459,3.10939189 L0.504459459,5.16209459 C0.504459459,5.19790541 0.513243243,5.23168919 0.514594595,5.26682432 C0.513243243,5.30263514 0.504459459,5.33574324 0.504459459,5.37155405 L0.504459459,7.42493243 C0.504459459,9.07222973 1.84567568,10.4134459 3.49364865,10.4134459 C5.14162162,10.4134459 6.48283784,9.07222973 6.48283784,7.42493243 L6.48283784,5.37155405 C6.48283784,5.33574324 6.47405405,5.30263514 6.4727027,5.26682432 C6.47405405,5.23168919 6.48283784,5.19790541 6.48283784,5.16209459 L6.48283784,3.10939189 C6.48283784,1.46141892 5.14162162,0.120202703 3.49364865,0.120202703" mask="url(#t)"/>
|
||||
</g>
|
||||
<path fill="#34373D" d="M13.0022297,32.4648649 C12.7197973,32.4648649 12.4914189,32.6932432 12.4914189,32.9756757 L12.4914189,40.0418919 C12.4914189,40.3243243 12.7197973,40.5527027 13.0022297,40.5527027 C13.2846622,40.5527027 13.5130405,40.3243243 13.5130405,40.0418919 L13.5130405,32.9756757 C13.5130405,32.6932432 13.2846622,32.4648649 13.0022297,32.4648649"/>
|
||||
<path fill="#34373D" d="M1.16527027,0.591216216 C0.882837838,0.591216216 0.654459459,0.819594595 0.654459459,1.10202703 L0.654459459,4.90675676 C0.654459459,5.18918919 0.882837838,5.41756757 1.16527027,5.41756757 C1.4477027,5.41756757 1.67608108,5.18918919 1.67608108,4.90675676 L1.67608108,1.10202703 C1.67608108,0.819594595 1.4477027,0.591216216 1.16527027,0.591216216" transform="translate(14.865 35.135)"/>
|
||||
<g transform="translate(0 42.568)">
|
||||
<mask id="v" fill="white">
|
||||
<use xlink:href="#u"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M-5.25114865,35.7499324 L-5.25114865,33.1931757 C-5.25114865,30.6823649 -4.27344595,28.3208784 -2.49574324,26.5425 C-1.64371622,25.6918243 -0.969391892,24.7141216 -0.464662162,23.6587162 L-0.464662162,26.2141216 C-0.464662162,28.7256081 -1.44304054,31.0864189 -3.22006757,32.8641216 C-4.07209459,33.7161486 -4.74641892,34.694527 -5.25114865,35.7499324 L-5.25114865,35.7499324 Z M-5.25114865,21.1019595 C-5.25114865,18.5897973 -4.27344595,16.2296622 -2.49574324,14.4519595 C-1.64371622,13.5999324 -0.969391892,12.6222297 -0.464662162,11.5668243 L-0.464662162,19.1722297 C-0.464662162,21.6843919 -1.44304054,24.0458784 -3.22006757,25.8222297 C-4.07209459,26.6742568 -4.74641892,27.6526351 -5.25114865,28.7080405 L-5.25114865,21.1019595 Z M-2.49574324,11.3864189 C-1.74101351,10.6310135 -1.11871622,9.77966216 -0.634932432,8.86074324 C-0.984932432,10.694527 -1.87074324,12.3816892 -3.22006757,13.7316892 C-3.97547297,14.4864189 -4.59709459,15.3377703 -5.08087838,16.2566892 C-4.73155405,14.4235811 -3.84574324,12.7364189 -2.49574324,11.3864189 L-2.49574324,11.3864189 Z M0.556959459,26.2141216 L0.556959459,19.1722297 L0.556959459,9.39993243 L0.556959459,7.08101351 L0.556959459,4.0147973 L0.556959459,3.72560811 L0.556959459,0.659391892 C0.556959459,0.376959459 0.328581081,0.148581081 0.0461486486,0.148581081 C-0.236283784,0.148581081 -0.464662162,0.376959459 -0.464662162,0.659391892 L-0.464662162,3.72560811 L-0.464662162,4.0147973 C-0.464662162,6.52695946 -1.44304054,8.88777027 -3.22006757,10.665473 C-5.18898649,12.6337162 -6.27277027,15.2512838 -6.27277027,18.0357432 L-6.27277027,43.4080405 C-6.27277027,43.690473 -6.04439189,43.9188514 -5.76195946,43.9188514 C-5.47952703,43.9188514 -5.25114865,43.690473 -5.25114865,43.4080405 L-5.25114865,40.2343919 C-5.25114865,37.7235811 -4.27344595,35.3627703 -2.49574324,33.5843919 C-0.526824324,31.615473 0.556959459,28.9985811 0.556959459,26.2141216 L0.556959459,26.2141216 Z" mask="url(#v)"/>
|
||||
</g>
|
||||
<g transform="translate(2.703 45.946)">
|
||||
<mask id="x" fill="white">
|
||||
<use xlink:href="#w"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M1.11594595,0.573581081 C0.833513514,0.573581081 0.605135135,0.801959459 0.605135135,1.08439189 L0.605135135,40.0296622 C0.605135135,40.3120946 0.833513514,40.540473 1.11594595,40.540473 C1.39837838,40.540473 1.62675676,40.3120946 1.62675676,40.0296622 L1.62675676,1.08439189 C1.62675676,0.801959459 1.39837838,0.573581081 1.11594595,0.573581081" mask="url(#x)"/>
|
||||
</g>
|
||||
<g transform="translate(6.757 60.135)">
|
||||
<mask id="z" fill="white">
|
||||
<use xlink:href="#y"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M0.510945946,0.595945946 C0.228513514,0.595945946 0.000135135135,0.824324324 0.000135135135,1.10675676 L0.000135135135,25.8405405 C0.000135135135,26.122973 0.228513514,26.3513514 0.510945946,26.3513514 C0.793378378,26.3513514 1.02175676,26.122973 1.02175676,25.8405405 L1.02175676,1.10675676 C1.02175676,0.824324324 0.793378378,0.595945946 0.510945946,0.595945946" mask="url(#z)"/>
|
||||
</g>
|
||||
<path fill="#34373D" d="M7.2677027,42.7161486 C6.98527027,42.7161486 6.75689189,42.944527 6.75689189,43.2269595 L6.75689189,57.519527 C6.75689189,57.8019595 6.98527027,58.0303378 7.2677027,58.0303378 C7.55013514,58.0303378 7.77851351,57.8019595 7.77851351,57.519527 L7.77851351,43.2269595 C7.77851351,42.944527 7.55013514,42.7161486 7.2677027,42.7161486"/>
|
||||
<g transform="translate(10.135 50.676)">
|
||||
<mask id="B" fill="white">
|
||||
<use xlink:href="#A"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M5.77425676,0.216081081 C2.64047297,0.216081081 0.0918243243,2.76472973 0.0918243243,5.89783784 L0.0918243243,12.9039189 C0.0918243243,13.1863514 0.320202703,13.4147297 0.602635135,13.4147297 C0.885067568,13.4147297 1.11344595,13.1863514 1.11344595,12.9039189 L1.11344595,5.89783784 C1.11344595,3.32891892 3.20466216,1.2377027 5.77898649,1.2377027 C8.34925676,1.2377027 10.4391216,3.32891892 10.4391216,5.89783784 L10.4391216,24.0883784 C10.4391216,24.3708108 10.6675,24.5991892 10.9499324,24.5991892 C11.2323649,24.5991892 11.4607432,24.3708108 11.4607432,24.0883784 L11.4607432,5.89783784 C11.4607432,2.76472973 8.91209459,0.216081081 5.77425676,0.216081081" mask="url(#B)"/>
|
||||
</g>
|
||||
<path fill="#34373D" d="M10.7377703,66.1801351 C10.4553378,66.1801351 10.2269595,66.4085135 10.2269595,66.6909459 L10.2269595,75.6672973 C10.2269595,75.9497297 10.4553378,76.1787838 10.7377703,76.1787838 C11.0202027,76.1787838 11.2485811,75.9497297 11.2485811,75.6672973 L11.2485811,66.6909459 C11.2485811,66.4085135 11.0202027,66.1801351 10.7377703,66.1801351"/>
|
||||
<g transform="translate(12.162 53.378)">
|
||||
<mask id="D" fill="white">
|
||||
<use xlink:href="#C"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M6.30412162,15.7568243 C6.30412162,17.1662838 5.15817568,18.3115541 3.74939189,18.3115541 C2.33993243,18.3115541 1.19466216,17.1662838 1.19466216,15.7568243 L1.19466216,3.58114865 C1.19466216,2.17236486 2.33993243,1.02641892 3.74939189,1.02641892 C5.15817568,1.02641892 6.30412162,2.17236486 6.30412162,3.58114865 L6.30412162,15.7568243 Z M3.74939189,0.00412162162 C1.77709459,0.00412162162 0.172364865,1.60885135 0.172364865,3.58114865 L0.172364865,15.7568243 C0.172364865,17.7291216 1.77709459,19.3338514 3.74939189,19.3338514 C5.72101351,19.3338514 7.32574324,17.7291216 7.32574324,15.7568243 L7.32574324,3.58114865 C7.32574324,1.60885135 5.72101351,0.00412162162 3.74939189,0.00412162162 L3.74939189,0.00412162162 Z" mask="url(#D)"/>
|
||||
</g>
|
||||
<g transform="translate(12.162 73.649)">
|
||||
<mask id="F" fill="white">
|
||||
<use xlink:href="#E"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M3.74925676,0.203108108 C1.77695946,0.203108108 0.17222973,1.80783784 0.17222973,3.78013514 L0.17222973,12.3267568 C0.17222973,12.6091892 0.401283784,12.8375676 0.683716216,12.8375676 C0.966148649,12.8375676 1.19452703,12.6091892 1.19452703,12.3267568 L1.19452703,3.78013514 C1.19452703,2.37067568 2.3397973,1.22472973 3.74925676,1.22472973 C4.98236486,1.22472973 6.01344595,2.10175676 6.25195946,3.26527027 C5.98709459,3.13081081 5.6925,3.0477027 5.37628378,3.0477027 C4.29993243,3.0477027 3.42493243,3.9227027 3.42493243,4.99837838 L3.42493243,12.3267568 C3.42493243,12.6091892 3.65331081,12.8375676 3.93574324,12.8375676 C4.21817568,12.8375676 4.44655405,12.6091892 4.44655405,12.3267568 L4.44655405,4.99837838 C4.44655405,4.48621622 4.86412162,4.06932432 5.37628378,4.06932432 C5.88777027,4.06932432 6.30398649,4.48621622 6.30398649,4.99837838 L6.30398649,7.5422973 C6.30398649,7.82472973 6.53236486,8.05310811 6.8147973,8.05310811 C7.09722973,8.05310811 7.32628378,7.82472973 7.32628378,7.5422973 L7.32628378,3.78013514 C7.32628378,1.80783784 5.72155405,0.203108108 3.74925676,0.203108108" mask="url(#F)"/>
|
||||
</g>
|
||||
<g transform="translate(14.19 56.081)">
|
||||
<mask id="H" fill="white">
|
||||
<use xlink:href="#G"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M2.10547297,12.3116216 C2.10547297,12.5231081 1.93385135,12.6947297 1.72236486,12.6947297 C1.51493243,12.6947297 1.33925676,12.5190541 1.33925676,12.3116216 L1.33925676,1.65621622 C1.33925676,1.44810811 1.51493243,1.27243243 1.72236486,1.27243243 C1.93385135,1.27243243 2.10547297,1.44472973 2.10547297,1.65621622 L2.10547297,12.3116216 Z M1.72236486,0.250810811 C0.948040541,0.250810811 0.316959459,0.881216216 0.316959459,1.65621622 L0.316959459,12.3116216 C0.316959459,13.0859459 0.948040541,13.717027 1.72236486,13.717027 C2.49668919,13.717027 3.12709459,13.0859459 3.12709459,12.3116216 L3.12709459,1.65621622 C3.12709459,0.881216216 2.49668919,0.250810811 1.72236486,0.250810811 L1.72236486,0.250810811 Z" mask="url(#H)"/>
|
||||
</g>
|
||||
<path fill="#34373D" d="M10.7377703 50.3728378C11.0202027 50.3728378 11.2485811 50.1444595 11.2485811 49.862027L11.2485811 43.2268919C11.2485811 42.9444595 11.0202027 42.7160811 10.7377703 42.7160811 10.4553378 42.7160811 10.2269595 42.9444595 10.2269595 43.2268919L10.2269595 49.862027C10.2269595 50.1444595 10.4553378 50.3728378 10.7377703 50.3728378M12.8455405 47.055473C13.127973 47.055473 13.3563514 46.8270946 13.3563514 46.5446622L13.3563514 43.2270946C13.3563514 42.9446622 13.127973 42.7162838 12.8455405 42.7162838 12.5631081 42.7162838 12.3347297 42.9446622 12.3347297 43.2270946L12.3347297 46.5446622C12.3347297 46.8270946 12.5631081 47.055473 12.8455405 47.055473"/>
|
||||
<g transform="translate(14.19 42.568)">
|
||||
<mask id="J" fill="white">
|
||||
<use xlink:href="#I"/>
|
||||
</mask>
|
||||
<path fill="#34373D" d="M9.84493243,0.148581081 C9.5625,0.148581081 9.33412162,0.376959459 9.33412162,0.659391892 L9.33412162,2.94993243 C9.33412162,4.84317568 7.79290541,6.38439189 5.89966216,6.38439189 L4.67736486,6.38439189 C2.78412162,6.38439189 1.24290541,4.84317568 1.24290541,2.94993243 L1.24290541,0.659391892 C1.24290541,0.376959459 1.01452703,0.148581081 0.732094595,0.148581081 C0.449662162,0.148581081 0.221283784,0.376959459 0.221283784,0.659391892 L0.221283784,2.94993243 C0.221283784,5.40736486 2.21993243,7.40601351 4.67736486,7.40601351 L5.89966216,7.40601351 C8.35709459,7.40601351 10.3557432,5.40736486 10.3557432,2.94993243 L10.3557432,0.659391892 C10.3557432,0.376959459 10.1273649,0.148581081 9.84493243,0.148581081" mask="url(#J)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(31.081 23.122)">
|
||||
<path stroke="#282B32" stroke-width="2" d="M26.2002703,2.11756757 L26.2002703,75.0905405 C26.2002703,76.2101351 22.8725676,77.1175676 18.7678378,77.1175676 C14.6631081,77.1175676 11.3354054,76.2101351 11.3354054,75.0905405 L11.3354054,2.11756757" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g transform="translate(10.81)">
|
||||
<path fill="#34373D" d="M7.95702703,4.14459459 C3.8522973,4.14459459 0.524594595,3.23716216 0.524594595,2.11756757 C0.524594595,0.997972973 3.8522973,0.0905405405 7.95702703,0.0905405405 C12.0617568,0.0905405405 15.3894595,0.997972973 15.3894595,2.11756757 C15.3894595,2.77162162 14.2536486,3.35337838 12.4914865,3.72364865"/>
|
||||
<path stroke="#282B32" stroke-width="2" d="M7.95702703,4.14459459 C3.8522973,4.14459459 0.524594595,3.23716216 0.524594595,2.11756757 C0.524594595,0.997972973 3.8522973,0.0905405405 7.95702703,0.0905405405 C12.0617568,0.0905405405 15.3894595,0.997972973 15.3894595,2.11756757 C15.3894595,2.77162162 14.2536486,3.35337838 12.4914865,3.72364865" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<path fill="#D5DBED" d="M20.6806081,42.7161486 C20.5380405,42.7161486 20.5380405,42.9377703 20.6806081,42.9377703 C20.8231757,42.9377703 20.8231757,42.7161486 20.6806081,42.7161486"/>
|
||||
<polygon fill="#34373D" points=".93 48.126 34.112 50.503 40.037 55.096 33.518 58.799 .336 56.422"/>
|
||||
</g>
|
||||
<g transform="translate(31.081 71.095)">
|
||||
<path fill="#31343A" d="M36.2428378,4.25445946 C36.3435135,2.94364865 35.3583784,1.795 34.0482432,1.69432432 L28.2739189,1.25108108 C26.9631081,1.15040541 25.8144595,2.13486486 25.7137838,3.44567568 C25.6921622,3.72743243 25.902973,3.9727027 26.1840541,3.99432432 C26.4658108,4.01594595 26.7110811,3.80581081 26.7327027,3.52405405 C26.7901351,2.77540541 27.4462162,2.21256757 28.1955405,2.27 L33.9698649,2.71391892 C34.7191892,2.77135135 35.2813514,3.42743243 35.2239189,4.17608108 C35.1664865,4.92540541 34.5104054,5.48824324 33.7610811,5.43081081 L27.9867568,4.98689189 C27.705,4.96527027 27.4597297,5.17608108 27.4381081,5.45716216 C27.4164865,5.73891892 27.6272973,5.98418919 27.9083784,6.00581081 L33.6827027,6.44972973 C34.9935135,6.55040541 36.1421622,5.56527027 36.2428378,4.25445946"/>
|
||||
<g transform="translate(22.297 1.351)">
|
||||
<mask id="L" fill="white">
|
||||
<use xlink:href="#K"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M0.274459459,0.743040541 C0.127162162,2.66263514 1.56905405,4.34439189 3.48864865,4.49168919 C3.77040541,4.51331081 4.01567568,4.30317568 4.0372973,4.02141892 C4.05891892,3.73966216 3.84878378,3.49439189 3.56702703,3.47277027 C2.20891892,3.36871622 1.18932432,2.17885135 1.29337838,0.821418919 C1.39743243,-0.536689189 2.5872973,-1.55695946 3.94540541,-1.45222973 L6.15351351,-1.28263514 C6.43527027,-1.26101351 6.68054054,-1.47182432 6.70216216,-1.75290541 C6.72378378,-2.03466216 6.51297297,-2.27993243 6.23189189,-2.30155405 L4.02378378,-2.47114865 C2.10418919,-2.61844595 0.421756757,-1.17722973 0.274459459,0.743040541" mask="url(#L)"/>
|
||||
</g>
|
||||
<g transform="translate(30.405 2.027)">
|
||||
<mask id="N" fill="white">
|
||||
<use xlink:href="#M"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M0.377094595,-2.29182432 C0.355472973,-2.01006757 0.565608108,-1.7647973 0.847364865,-1.74317568 L6.19668919,-1.33236486 C8.16290541,-1.18101351 9.64060811,0.541283784 9.48925676,2.50817568 C9.33858108,4.47439189 7.61560811,5.95141892 5.64939189,5.80006757 L3.64195946,5.64601351 C3.3602027,5.62439189 3.11493243,5.8352027 3.09331081,6.11628378 C3.07168919,6.39804054 3.2825,6.64331081 3.56358108,6.66493243 L5.57101351,6.81898649 C8.09939189,7.01358108 10.3142568,5.11493243 10.5081757,2.58587838 C10.7027703,0.0575 8.80344595,-2.15736486 6.27506757,-2.35128378 L0.925743243,-2.76209459 C0.643986486,-2.78371622 0.398716216,-2.57358108 0.377094595,-2.29182432" mask="url(#N)"/>
|
||||
</g>
|
||||
<path fill="#31343A" d="M31.0340541,7.95425676 C31.0556757,7.6725 30.8455405,7.42722973 30.5637838,7.40560811 L5.42324324,5.47452703 C5.14148649,5.45290541 4.89621622,5.66371622 4.87459459,5.9447973 C4.85297297,6.22655405 5.06310811,6.47182432 5.34486486,6.49344595 L30.4854054,8.42452703 C30.7671622,8.44614865 31.0124324,8.23601351 31.0340541,7.95425676"/>
|
||||
<mask id="P" fill="white">
|
||||
<use xlink:href="#O"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M-2.35925676,-3.54087838 C-2.38087838,-3.25912162 -2.17074324,-3.01385135 -1.88898649,-2.99222973 L16.9893919,-1.54222973 C18.5029054,-1.42601351 19.6400676,-0.100337838 19.5238514,1.41385135 C19.4076351,2.92804054 18.0812838,4.0652027 16.5677703,3.94898649 L-0.413986486,2.64493243 C-0.695743243,2.62331081 -0.941013514,2.83344595 -0.962635135,3.1152027 C-0.984256757,3.39695946 -0.774121622,3.64222973 -0.492364865,3.66385135 L16.4893919,4.96790541 C18.5650676,5.12736486 20.3839865,3.56790541 20.5427703,1.49222973 C20.7022297,-0.583445946 19.1434459,-2.40168919 17.0677703,-2.56114865 L-1.81060811,-4.01114865 C-2.09236486,-4.03277027 -2.33763514,-3.82263514 -2.35925676,-3.54087838" mask="url(#P)"/>
|
||||
<g transform="translate(.676)">
|
||||
<mask id="R" fill="white">
|
||||
<use xlink:href="#Q"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M16.5846622,1.24006757 C16.6488514,0.405608108 16.0225,-0.325472973 15.1873649,-0.389662162 L5.49209459,-1.13425676 C5.21101351,-1.15587838 4.96574324,-0.945743243 4.94412162,-0.663986486 C4.9225,-0.38222973 5.13263514,-0.136959459 5.41439189,-0.115337838 L15.1089865,0.629256757 C15.3819595,0.650202703 15.5866892,0.889391892 15.5657432,1.16168919 C15.5447973,1.43466216 15.3056081,1.64006757 15.0333108,1.61912162 L-2.81331081,0.248175676 C-3.09506757,0.226554054 -3.34033784,0.436689189 -3.36195946,0.718445946 C-3.38358108,1.0002027 -3.17344595,1.24547297 -2.89168919,1.26709459 L14.9549324,2.63804054 C15.7900676,2.70222973 16.520473,2.0752027 16.5846622,1.24006757" mask="url(#R)"/>
|
||||
</g>
|
||||
<g transform="translate(0 4.73)">
|
||||
<mask id="T" fill="white">
|
||||
<use xlink:href="#S"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M3.17608108,1.08486486 C3.1977027,0.803108108 2.98756757,0.557837838 2.70581081,0.536216216 L-2.49283784,0.136891892 C-2.77391892,0.11527027 -3.01918919,0.326081081 -3.04081081,0.607162162 C-3.06243243,0.888918919 -2.8522973,1.13418919 -2.57054054,1.15581081 L2.62743243,1.55513514 C2.90918919,1.57675676 3.15445946,1.36662162 3.17608108,1.08486486" mask="url(#T)"/>
|
||||
</g>
|
||||
<g transform="translate(1.351 8.108)">
|
||||
<mask id="V" fill="white">
|
||||
<use xlink:href="#U"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M-4.67364865,0.889864865 C-4.69527027,1.17162162 -4.48513514,1.41689189 -4.20337838,1.43851351 L13.2256757,2.77702703 C13.5067568,2.79864865 13.752027,2.58851351 13.7736486,2.30675676 C13.7952703,2.025 13.5851351,1.77972973 13.3033784,1.75810811 L-4.125,0.419594595 C-4.40675676,0.397972973 -4.65202703,0.608108108 -4.67364865,0.889864865" mask="url(#V)"/>
|
||||
</g>
|
||||
<g transform="translate(22.973 9.46)">
|
||||
<mask id="X" fill="white">
|
||||
<use xlink:href="#W"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M-6.02966216,1.095 C-6.05128378,1.37675676 -5.84114865,1.62202703 -5.55939189,1.64364865 L16.7980405,3.36054054 C17.0797973,3.38216216 17.3250676,3.17202703 17.3466892,2.89027027 C17.3683108,2.60851351 17.1575,2.36324324 16.8764189,2.34162162 L-5.48101351,0.62472973 C-5.76277027,0.603108108 -6.00804054,0.813243243 -6.02966216,1.095" mask="url(#X)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(13.514 45.42)">
|
||||
<polyline stroke="#282B32" stroke-width="2" points="26.67 34.752 51.086 36.501 57.605 32.799 51.68 28.205 18.497 25.829 17.903 34.125 21.628 34.392" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<polygon fill="#34373D" points=".485 15.138 13.322 30.003 13.322 23.246 47.657 23.246 47.657 7.03 13.322 7.03 13.322 .273"/>
|
||||
</g>
|
||||
<g transform="translate(14.865 48.122)">
|
||||
<g transform="translate(0 13.514)">
|
||||
<mask id="Z" fill="white">
|
||||
<use xlink:href="#Y"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M34.8256757,1.06939189 C33.7864865,1.56871622 32.822973,2.23425676 31.9837838,3.07344595 C30.2243243,4.83358108 27.8837838,5.80317568 25.3939189,5.80317568 L19.6412162,5.80317568 C20.6817568,5.30317568 21.6466216,4.63628378 22.4871622,3.79574324 C24.2452703,2.03763514 26.5837838,1.06939189 29.0709459,1.06939189 L34.8256757,1.06939189 Z M15.1743243,5.80317568 L10.3141892,5.80317568 L0.0945945946,5.80317568 C-0.187837838,5.80317568 -0.416216216,6.03155405 -0.416216216,6.31398649 C-0.416216216,6.59641892 -0.187837838,6.8247973 0.0945945946,6.8247973 L10.3141892,6.8247973 L15.1743243,6.8247973 L25.3939189,6.8247973 C28.1567568,6.8247973 30.7533784,5.74912162 32.7067568,3.79574324 C34.4648649,2.03763514 36.8033784,1.06939189 39.2905405,1.06939189 L39.777027,1.06939189 L48.2486486,1.06939189 C48.5310811,1.06939189 48.7594595,0.841013514 48.7594595,0.558581081 C48.7594595,0.276148649 48.5310811,0.0477702703 48.2486486,0.0477702703 L39.777027,0.0477702703 L39.2905405,0.0477702703 L29.0709459,0.0477702703 C26.3114865,0.0477702703 23.7162162,1.12209459 21.7641892,3.07344595 C20.0047297,4.83358108 17.6648649,5.80317568 15.1743243,5.80317568 L15.1743243,5.80317568 Z" mask="url(#Z)"/>
|
||||
</g>
|
||||
<g transform="translate(5.405 8.784)">
|
||||
<mask id="ab" fill="white">
|
||||
<use xlink:href="#aa"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M0.0545945946,0.653918919 C0.0545945946,0.936351351 0.282972973,1.16472973 0.565405405,1.16472973 L42.8431081,1.16472973 C43.1255405,1.16472973 43.3539189,0.936351351 43.3539189,0.653918919 C43.3539189,0.371486486 43.1255405,0.143108108 42.8431081,0.143108108 L0.565405405,0.143108108 C0.282972973,0.143108108 0.0545945946,0.371486486 0.0545945946,0.653918919" mask="url(#ab)"/>
|
||||
</g>
|
||||
<path fill="#31343A" d="M17.5986486 14.4710811C17.5986486 15.5562162 16.7162162 16.4386486 15.6317568 16.4386486L15.6027027 16.4386486C16.0675676 15.9116216 16.3594595 15.2278378 16.3594595 14.4710811 16.3594595 13.7143243 16.0675676 13.0305405 15.6027027 12.5035135L15.6317568 12.5035135C16.7162162 12.5035135 17.5986486 13.3859459 17.5986486 14.4710811M13.4736486 12.5143243C14.5094595 12.5697297 15.3371622 13.4224324 15.3371622 14.4710811 15.3371622 15.5197297 14.5094595 16.3724324 13.4736486 16.4278378 12.4385135 16.3724324 11.6108108 15.5197297 11.6108108 14.4710811 11.6108108 13.4224324 12.4385135 12.5697297 13.4736486 12.5143243M9.34932432 14.4710811C9.34932432 13.3859459 10.2310811 12.5035135 11.3162162 12.5035135L11.3452703 12.5035135C10.8804054 13.0305405 10.5885135 13.7143243 10.5885135 14.4710811 10.5885135 15.2278378 10.8804054 15.9116216 11.3452703 16.4386486L11.3162162 16.4386486C10.2310811 16.4386486 9.34932432 15.5562162 9.34932432 14.4710811M8.32702703 14.4710811C8.32702703 16.1190541 9.66824324 17.4602703 11.3162162 17.4602703L13.3689189 17.4602703C13.4047297 17.4602703 13.4385135 17.4514865 13.4736486 17.4501351 13.5094595 17.4514865 13.5425676 17.4602703 13.5783784 17.4602703L15.6317568 17.4602703C17.2790541 17.4602703 18.6202703 16.1190541 18.6202703 14.4710811 18.6202703 12.8231081 17.2790541 11.4818919 15.6317568 11.4818919L13.5783784 11.4818919C13.5425676 11.4818919 13.5094595 11.4906757 13.4736486 11.492027 13.4385135 11.4906757 13.4047297 11.4818919 13.3689189 11.4818919L11.3162162 11.4818919C9.66824324 11.4818919 8.32702703 12.8231081 8.32702703 14.4710811M22.5085135 6.54202703C22.5085135 6.82445946 22.7368919 7.05283784 23.0193243 7.05283784L37.4706757 7.05283784C37.7531081 7.05283784 37.9821622 6.82445946 37.9821622 6.54202703 37.9821622 6.25959459 37.7531081 6.03121622 37.4706757 6.03121622L23.0193243 6.03121622C22.7368919 6.03121622 22.5085135 6.25959459 22.5085135 6.54202703M16.3591216 3.98709459C16.3591216 4.26952703 16.5875 4.49790541 16.8699324 4.49790541L27.8402027 4.49790541C28.1226351 4.49790541 28.3510135 4.26952703 28.3510135 3.98709459 28.3510135 3.70466216 28.1226351 3.47628378 27.8402027 3.47628378L16.8699324 3.47628378C16.5875 3.47628378 16.3591216 3.70466216 16.3591216 3.98709459"/>
|
||||
<g transform="translate(31.081 4.054)">
|
||||
<mask id="ad" fill="white">
|
||||
<use xlink:href="#ac"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M0.506554054,-0.0669594595 C0.506554054,0.215472973 0.734932432,0.443851351 1.01736486,0.443851351 L17.1673649,0.443851351 C17.4497973,0.443851351 17.6781757,0.215472973 17.6781757,-0.0669594595 C17.6781757,-0.349391892 17.4497973,-0.57777027 17.1673649,-0.57777027 L1.01736486,-0.57777027 C0.734932432,-0.57777027 0.506554054,-0.349391892 0.506554054,-0.0669594595" mask="url(#ad)"/>
|
||||
</g>
|
||||
<g transform="translate(35.135 18.919)">
|
||||
<mask id="af" fill="white">
|
||||
<use xlink:href="#ae"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M0.131148649,0.908445946 C0.131148649,1.19087838 0.359527027,1.41925676 0.641959459,1.41925676 L13.1135811,1.41925676 C13.3960135,1.41925676 13.6243919,1.19087838 13.6243919,0.908445946 C13.6243919,0.626013514 13.3960135,0.397635135 13.1135811,0.397635135 L0.641959459,0.397635135 C0.359527027,0.397635135 0.131148649,0.626013514 0.131148649,0.908445946" mask="url(#af)"/>
|
||||
</g>
|
||||
<g transform="translate(38.514 16.216)">
|
||||
<mask id="ah" fill="white">
|
||||
<use xlink:href="#ag"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M0.0142567568,0.583243243 C0.0142567568,0.865675676 0.242635135,1.09405405 0.525067568,1.09405405 L9.7352027,1.09405405 C10.0176351,1.09405405 10.2460135,0.865675676 10.2460135,0.583243243 C10.2460135,0.300810811 10.0176351,0.0724324324 9.7352027,0.0724324324 L0.525067568,0.0724324324 C0.242635135,0.0724324324 0.0142567568,0.300810811 0.0142567568,0.583243243" mask="url(#ah)"/>
|
||||
</g>
|
||||
<path fill="#31343A" d="M20.1295946,11.9925676 C20.1295946,12.275 20.357973,12.5033784 20.6404054,12.5033784 L22.4910811,12.5033784 C22.7735135,12.5033784 23.0018919,12.275 23.0018919,11.9925676 C23.0018919,11.7101351 22.7735135,11.4817568 22.4910811,11.4817568 L20.6404054,11.4817568 C20.357973,11.4817568 20.1295946,11.7101351 20.1295946,11.9925676"/>
|
||||
<path fill="#31343A" d="M0.339121622,0.623378378 C0.339121622,0.905810811 0.5675,1.13418919 0.849932432,1.13418919 L25.2756081,1.13418919 C25.5580405,1.13418919 25.7864189,0.905810811 25.7864189,0.623378378 C25.7864189,0.340945946 25.5580405,0.112567568 25.2756081,0.112567568 L0.849932432,0.112567568 C0.5675,0.112567568 0.339121622,0.340945946 0.339121622,0.623378378" transform="translate(22.973)"/>
|
||||
</g>
|
||||
<g transform="translate(13.514 22.447)">
|
||||
<polyline stroke="#282B32" stroke-width="2" points="47.656 35.577 47.656 30.002 13.322 30.002 13.322 23.246 .484 38.111 13.322 52.975 13.322 46.219 47.656 46.219 47.656 38.618" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<polygon fill="#34373D" points="64.562 9.091 52.263 .314 52.949 6.232 19.689 10.087 23.139 13.892 20.652 18.385 53.911 14.531 54.597 20.449"/>
|
||||
</g>
|
||||
<g transform="translate(33.784 22.447)">
|
||||
<path fill="#31343A" d="M0.390810811,2.8697973 C0.427972973,3.14952703 0.68472973,3.34614865 0.964459459,3.30898649 L15.132027,1.4225 C15.4117568,1.38533784 15.6083784,1.12858108 15.5712162,0.848851351 C15.5340541,0.568445946 15.2772973,0.3725 14.9975676,0.409662162 L0.83,2.29614865 C0.549594595,2.33331081 0.353648649,2.59006757 0.390810811,2.8697973" transform="translate(2.703 26.351)"/>
|
||||
<g transform="translate(9.46 10.135)">
|
||||
<mask id="aj" fill="white">
|
||||
<use xlink:href="#ai"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M0.597702703,9.44094595 C1.01121622,12.547027 3.87405405,14.7375676 6.97945946,14.3240541 L13.9240541,13.3997297 C14.2044595,13.3618919 14.4004054,13.1051351 14.3632432,12.8254054 C14.3260811,12.5456757 14.0693243,12.3490541 13.7895946,12.3862162 L6.845,13.3112162 C4.29837838,13.6497297 1.94972973,11.8531081 1.60986486,9.30108108 C1.27067568,6.75378378 3.0672973,4.40648649 5.61391892,4.0672973 L23.6456757,1.66662162 C23.9254054,1.62945946 24.122027,1.3727027 24.0848649,1.0922973 C24.047027,0.812567568 23.7902703,0.615945946 23.5105405,0.653783784 L5.47945946,3.05445946 C2.37405405,3.46797297 0.183513514,6.33081081 0.597702703,9.44094595" mask="url(#aj)"/>
|
||||
</g>
|
||||
<g transform="translate(12.162 13.514)">
|
||||
<mask id="al" fill="white">
|
||||
<use xlink:href="#ak"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M15.6414189,1.12033784 C17.0380405,0.934527027 18.3252027,1.91898649 18.5110135,3.31560811 C18.6968243,4.71222973 17.7123649,5.99939189 16.3157432,6.1852027 L4.24682432,7.79195946 C2.84952703,7.97844595 1.56304054,6.99398649 1.37722973,5.59668919 C1.19074324,4.20006757 2.1752027,2.91290541 3.5725,2.72709459 L15.6414189,1.12033784 Z M0.363716216,5.73182432 C0.624527027,7.68655405 2.42655405,9.06560811 4.38128378,8.80547297 L16.4508784,7.19871622 C18.4056081,6.93790541 19.7846622,5.13587838 19.5238514,3.18047297 C19.2637162,1.22574324 17.4610135,-0.152635135 15.5062838,0.1075 L3.43736486,1.71425676 C1.48263514,1.97439189 0.103581081,3.77709459 0.363716216,5.73182432 L0.363716216,5.73182432 Z" mask="url(#al)"/>
|
||||
</g>
|
||||
<g transform="translate(41.216 10.81)">
|
||||
<mask id="an" fill="white">
|
||||
<use xlink:href="#am"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M0.599256757,1.44202703 C0.636418919,1.72175676 0.893175676,1.91837838 1.17290541,1.88121622 L3.28033784,1.60081081 C3.56006757,1.56297297 3.75668919,1.30689189 3.71952703,1.02648649 C3.68236486,0.746756757 3.42560811,0.550135135 3.1452027,0.587297297 L1.03844595,0.868378378 C0.758040541,0.905540541 0.562094595,1.1622973 0.599256757,1.44202703" mask="url(#an)"/>
|
||||
</g>
|
||||
<g transform="translate(32.432 11.486)">
|
||||
<mask id="ap" fill="white">
|
||||
<use xlink:href="#ao"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M0.383648649,5.05743243 C0.643783784,7.01216216 2.44648649,8.39121622 4.40121622,8.13108108 L12.8735135,7.0027027 C13.1532432,6.96554054 13.3498649,6.70878378 13.3127027,6.42905405 C13.2748649,6.14932432 13.0187838,5.9527027 12.7383784,5.98986486 L4.26608108,7.11756757 C2.86945946,7.30405405 1.58297297,6.31959459 1.39648649,4.9222973 C1.23364865,3.70067568 1.96675676,2.56283784 3.08837838,2.1722973 C2.98972973,2.4527027 2.94648649,2.75608108 2.98837838,3.06959459 C3.13027027,4.13581081 4.11337838,4.88783784 5.17959459,4.74594595 L12.4444595,3.77905405 C12.7241892,3.74189189 12.9208108,3.48513514 12.882973,3.20472973 C12.8458108,2.925 12.5890541,2.72837838 12.3093243,2.76621622 L5.04513514,3.73310811 C4.5377027,3.80067568 4.06878378,3.44189189 4.00121622,2.93445946 C3.93364865,2.42702703 4.29243243,1.95945946 4.79986486,1.89189189 L7.32148649,1.55608108 C7.60121622,1.51891892 7.79783784,1.26216216 7.76067568,0.982432432 C7.72351351,0.702702703 7.46675676,0.506081081 7.18702703,0.543243243 L3.4572973,1.03986486 C1.50256757,1.3 0.123513514,3.1027027 0.383648649,5.05743243" mask="url(#ap)"/>
|
||||
</g>
|
||||
<path fill="#31343A" d="M8.19824324,0.446621622 C8.16108108,0.166891892 7.90432432,-0.0297297297 7.62459459,0.00743243243 L1.04756757,0.883108108 C0.767837838,0.92027027 0.571216216,1.17702703 0.608378378,1.45743243 C0.645540541,1.73716216 0.902297297,1.93378378 1.1827027,1.89594595 L7.75905405,1.02027027 C8.03945946,0.983108108 8.23540541,0.726351351 8.19824324,0.446621622" transform="translate(2.027 24.324)"/>
|
||||
<path fill="#31343A" d="M4.63168919,0.822094595 C4.59452703,0.542364865 4.33777027,0.345743243 4.05804054,0.382905405 L0.769527027,0.820743243 C0.489121622,0.857905405 0.293175676,1.11466216 0.330337838,1.39506757 C0.3675,1.6747973 0.624256757,1.87141892 0.903986486,1.83358108 L4.1925,1.39574324 C4.47290541,1.35858108 4.66885135,1.10182432 4.63168919,0.822094595" transform="translate(2.027 22.297)"/>
|
||||
<g transform="translate(.676 11.486)">
|
||||
<mask id="ar" fill="white">
|
||||
<use xlink:href="#aq"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M0.205135135,1.11493243 C0.242297297,1.39466216 0.499054054,1.59128378 0.778783784,1.55412162 L3.04972973,1.25141892 C4.92608108,1.00209459 6.65716216,2.32574324 6.90648649,4.20277027 L7.06797297,5.41425676 C7.31797297,7.29128378 5.99364865,9.02168919 4.1172973,9.27168919 L1.84702703,9.57371622 C1.56662162,9.61155405 1.37067568,9.86831081 1.40783784,10.1480405 C1.445,10.4277703 1.70175676,10.6243919 1.98148649,10.5872297 L4.25243243,10.284527 C6.68756757,9.9602027 8.40513514,7.71493243 8.08081081,5.2797973 L7.92,4.06763514 C7.59567568,1.63182432 5.35040541,-0.0857432432 2.91459459,0.238581081 L0.644324324,0.541283784 C0.363918919,0.578445946 0.167972973,0.835202703 0.205135135,1.11493243" mask="url(#ar)"/>
|
||||
</g>
|
||||
<path fill="#31343A" d="M.446689189 9.34074324C.483851351 9.62047297.740608108 9.81709459 1.02033784 9.77993243L27.8656081 6.20560811C28.1453378 6.16844595 28.3419595 5.91168919 28.3047973 5.63195946 28.2676351 5.35155405 28.0108784 5.15560811 27.730473 5.19277027L.885878378 8.76709459C.605472973 8.80425676.409527027 9.06101351.446689189 9.34074324M29.9506757 5.41263514C29.9878378 5.69236486 30.2445946 5.88898649 30.5243243 5.85182432L38.0695946 4.84709459C38.35 4.80993243 38.5459459 4.55317568 38.5087838 4.27344595 38.4716216 3.99304054 38.2148649 3.79709459 37.9351351 3.83425676L30.3898649 4.83898649C30.1094595 4.87614865 29.9135135 5.13290541 29.9506757 5.41263514"/>
|
||||
<g transform="translate(31.757)">
|
||||
<mask id="at" fill="white">
|
||||
<use xlink:href="#as"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M-9.69351351,3.49871622 C-9.65635135,3.77844595 -9.39959459,3.97506757 -9.11986486,3.93790541 L11.2504054,1.22574324 C11.5308108,1.18858108 11.7267568,0.931824324 11.6895946,0.652094595 C11.6524324,0.371689189 11.3956757,0.175743243 11.1159459,0.212905405 L-9.25432432,2.92506757 C-9.53472973,2.96222973 -9.73067568,3.21898649 -9.69351351,3.49871622" mask="url(#at)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(30.405 22.447)">
|
||||
<polygon stroke="#282B32" stroke-width="2" points="47.671 9.091 35.371 .314 36.057 6.232 2.798 10.087 6.248 13.892 3.76 18.385 37.019 14.531 37.705 20.449" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<polygon fill="#34373D" points="35.158 30.003 5.879 30.003 .023 25.927 5.879 20.543 35.158 20.543 30.766 25.252"/>
|
||||
</g>
|
||||
<g transform="translate(27.027 42.717)">
|
||||
<g transform="translate(8.108)">
|
||||
<mask id="av" fill="white">
|
||||
<use xlink:href="#au"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M0.388243243,4.45202703 C0.388243243,7.58581081 2.93689189,10.1344595 6.07,10.1344595 L13.0760811,10.1344595 C13.3585135,10.1344595 13.5868919,9.90608108 13.5868919,9.62364865 C13.5868919,9.34121622 13.3585135,9.11283784 13.0760811,9.11283784 L6.07,9.11283784 C3.50108108,9.11283784 1.40986486,7.02162162 1.40986486,4.4472973 C1.40986486,1.87702703 3.50108108,-0.212837838 6.07,-0.212837838 L24.2605405,-0.212837838 C24.542973,-0.212837838 24.7713514,-0.441216216 24.7713514,-0.723648649 C24.7713514,-1.00608108 24.542973,-1.23445946 24.2605405,-1.23445946 L6.07,-1.23445946 C2.93689189,-1.23445946 0.388243243,1.31418919 0.388243243,4.45202703" mask="url(#av)"/>
|
||||
</g>
|
||||
<g transform="translate(23.649 8.784)">
|
||||
<mask id="ax" fill="white">
|
||||
<use xlink:href="#aw"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M0.136081081,0.839864865 C0.136081081,1.1222973 0.364459459,1.35067568 0.646891892,1.35067568 L9.62324324,1.35067568 C9.90567568,1.35067568 10.1347297,1.1222973 10.1347297,0.839864865 C10.1347297,0.557432432 9.90567568,0.329054054 9.62324324,0.329054054 L0.646891892,0.329054054 C0.364459459,0.329054054 0.136081081,0.557432432 0.136081081,0.839864865" mask="url(#ax)"/>
|
||||
</g>
|
||||
<path fill="#31343A" d="M26.7397973,1.89513514 C28.1492568,1.89513514 29.294527,3.04108108 29.294527,4.44986486 C29.294527,5.85932432 28.1492568,7.00459459 26.7397973,7.00459459 L14.5641216,7.00459459 C13.1553378,7.00459459 12.0093919,5.85932432 12.0093919,4.44986486 C12.0093919,3.04108108 13.1553378,1.89513514 14.5641216,1.89513514 L26.7397973,1.89513514 Z M10.9870946,4.44986486 C10.9870946,6.42216216 12.5918243,8.02689189 14.5641216,8.02689189 L26.7397973,8.02689189 C28.7120946,8.02689189 30.3168243,6.42216216 30.3168243,4.44986486 C30.3168243,2.47824324 28.7120946,0.873513514 26.7397973,0.873513514 L14.5641216,0.873513514 C12.5918243,0.873513514 10.9870946,2.47824324 10.9870946,4.44986486 L10.9870946,4.44986486 Z"/>
|
||||
<g transform="translate(31.081 .676)">
|
||||
<mask id="az" fill="white">
|
||||
<use xlink:href="#ay"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M0.37527027,3.77432432 C0.37527027,5.74662162 1.98,7.35135135 3.9522973,7.35135135 L12.4989189,7.35135135 C12.7813514,7.35135135 13.0097297,7.1222973 13.0097297,6.83986486 C13.0097297,6.55743243 12.7813514,6.32905405 12.4989189,6.32905405 L3.9522973,6.32905405 C2.54283784,6.32905405 1.39689189,5.18378378 1.39689189,3.77432432 C1.39689189,2.54121622 2.27391892,1.51013514 3.43743243,1.27162162 C3.30297297,1.53648649 3.21986486,1.83108108 3.21986486,2.1472973 C3.21986486,3.22364865 4.09486486,4.09864865 5.17054054,4.09864865 L12.4989189,4.09864865 C12.7813514,4.09864865 13.0097297,3.87027027 13.0097297,3.58783784 C13.0097297,3.30540541 12.7813514,3.07702703 12.4989189,3.07702703 L5.17054054,3.07702703 C4.65837838,3.07702703 4.24148649,2.65945946 4.24148649,2.1472973 C4.24148649,1.63581081 4.65837838,1.21959459 5.17054054,1.21959459 L7.71445946,1.21959459 C7.99689189,1.21959459 8.22527027,0.991216216 8.22527027,0.708783784 C8.22527027,0.426351351 7.99689189,0.197297297 7.71445946,0.197297297 L3.9522973,0.197297297 C1.98,0.197297297 0.37527027,1.80202703 0.37527027,3.77432432" mask="url(#az)"/>
|
||||
</g>
|
||||
<path fill="#31343A" d="M25.9972973,4.06675676 C26.2087838,4.06675676 26.3804054,4.23837838 26.3804054,4.44986486 C26.3804054,4.6572973 26.2047297,4.83297297 25.9972973,4.83297297 L15.3418919,4.83297297 C15.1337838,4.83297297 14.9581081,4.6572973 14.9581081,4.44986486 C14.9581081,4.23837838 15.1297297,4.06675676 15.3418919,4.06675676 L25.9972973,4.06675676 Z M13.9364865,4.44986486 C13.9364865,5.22418919 14.5668919,5.85527027 15.3418919,5.85527027 L25.9972973,5.85527027 C26.7716216,5.85527027 27.4027027,5.22418919 27.4027027,4.44986486 C27.4027027,3.67554054 26.7716216,3.04513514 25.9972973,3.04513514 L15.3418919,3.04513514 C14.5668919,3.04513514 13.9364865,3.67554054 13.9364865,4.44986486 L13.9364865,4.44986486 Z"/>
|
||||
<path fill="#31343A" d="M7.97736486,0.839864865 C7.97736486,0.557432432 7.74898649,0.329054054 7.46655405,0.329054054 L0.831418919,0.329054054 C0.548986486,0.329054054 0.320608108,0.557432432 0.320608108,0.839864865 C0.320608108,1.1222973 0.548986486,1.35067568 0.831418919,1.35067568 L7.46655405,1.35067568 C7.74898649,1.35067568 7.97736486,1.1222973 7.97736486,0.839864865" transform="translate(0 8.784)"/>
|
||||
<g transform="translate(3.378 1.351)">
|
||||
<mask id="aB" fill="white">
|
||||
<use xlink:href="#aA"/>
|
||||
</mask>
|
||||
<path fill="#31343A" d="M-3.05763514,-5.02405405 C-3.05763514,-4.74162162 -2.82925676,-4.51324324 -2.54682432,-4.51324324 L-0.256283784,-4.51324324 C1.63695946,-4.51324324 3.17817568,-2.97202703 3.17817568,-1.07878378 L3.17817568,0.143513514 C3.17817568,2.03675676 1.63695946,3.57797297 -0.256283784,3.57797297 L-2.54682432,3.57797297 C-2.82925676,3.57797297 -3.05763514,3.80635135 -3.05763514,4.08878378 C-3.05763514,4.37121622 -2.82925676,4.59959459 -2.54682432,4.59959459 L-0.256283784,4.59959459 C2.20114865,4.59959459 4.1997973,2.60094595 4.1997973,0.143513514 L4.1997973,-1.07878378 C4.1997973,-3.53621622 2.20114865,-5.53486486 -0.256283784,-5.53486486 L-2.54682432,-5.53486486 C-2.82925676,-5.53486486 -3.05763514,-5.30648649 -3.05763514,-5.02405405" mask="url(#aB)"/>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(0 .15)">
|
||||
<polygon stroke="#282B32" stroke-width="2" points="65.564 52.3 36.284 52.3 30.428 48.225 36.284 42.84 65.564 42.84 61.172 47.549" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path fill="#A5D388" d="M29.3374324,11.3341892 C30.23,9.78689189 30.6772973,8.12675676 32.1104054,6.94297297 C33.6144595,5.70040541 35.8901351,5.35445946 37.055,7.24094595 C38.2604054,9.19297297 36.805,11.4355405 35.1340541,12.4402703 C33.0252703,13.7078378 30.4671622,13.7963514 28.0394595,13.2402703 C28.2441892,13.2855405 29.2036486,11.5666216 29.3374324,11.3341892"/>
|
||||
<path stroke="#1E2126" stroke-width="2" d="M30.9572297 8.25675676C31.2680405 7.78040541 31.6349324 7.33581081 32.1106081 6.94256757 33.6146622 5.70067568 35.8903378 5.35405405 37.0552027 7.24054054 38.2606081 9.19324324 36.804527 11.4358108 35.1342568 12.4398649 33.0247973 13.7081081 30.4666892 13.7959459 28.0396622 13.2398649 28.2443919 13.2851351 29.2038514 11.5662162 29.3376351 11.3344595M33.8699324 9.8327027C33.8699324 9.8327027 36.6820946 7.83405405 37.2293919 5.33" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path fill="#A5D388" d="M13.5994595,24.8725 C15.8913514,24.7616892 17.9954054,24.0920946 20.2704054,24.8184459 C22.6568919,25.5806081 24.6116216,27.7988514 23.3825676,30.3677703 C22.1102703,33.0265541 18.6764865,33.0110135 16.4312162,31.9035811 C13.5960811,30.5056081 11.7237838,27.8029054 10.6386486,24.7934459 C10.7318919,25.0461486 13.2555405,24.8893919 13.5994595,24.8725"/>
|
||||
<path stroke="#1E2126" stroke-width="2" d="M23.5878378 29.8560811C23.5331081 30.025 23.4648649 30.1952703 23.3824324 30.3675676 22.1108108 33.0263514 18.6763514 33.0108108 16.4310811 31.9033784 13.5959459 30.5054054 11.7243243 27.8027027 10.6385135 24.7939189 10.7324324 25.0466216 13.2554054 24.8891892 13.5993243 24.8722973 15.8912162 24.7621622 17.9952703 24.0918919 20.2702703 24.8182432 21.1074324 25.0858108 21.8918919 25.5324324 22.5040541 26.1101351M18.3697973 28.7266892C18.3697973 28.7266892 22.4826351 30.3766892 25.5677703 29.2293919" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path stroke="#282B32" stroke-width="2" d="M45.6068919,0.526554054 C45.6068919,0.526554054 48.0305405,9.74209459 40.5163514,14.2414189" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="3 6"/>
|
||||
<path fill="#A5D388" d="M76.8304054,53.2927027 C75.4047297,54.3697297 73.8128378,55.0190541 72.8148649,56.5886486 C71.7675676,58.2345946 71.7054054,60.5366216 73.7216216,61.4595946 C75.8087838,62.4143243 77.8547297,60.692027 78.6452703,58.9095946 C79.6425676,56.6595946 79.4135135,54.1095946 78.5614865,51.7683784 C78.6317568,51.9663514 77.0445946,53.1312162 76.8304054,53.2927027"/>
|
||||
<path stroke="#1E2126" stroke-width="2" d="M76.8304054 53.2927027C75.4047297 54.3697297 73.8128378 55.0190541 72.8148649 56.5886486 71.7675676 58.2345946 71.7054054 60.5366216 73.7216216 61.4595946 75.8087838 62.4143243 77.8547297 60.692027 78.6452703 58.9095946 79.6425676 56.6595946 79.4135135 54.1095946 78.5614865 51.7683784 78.6317568 51.9663514 77.0445946 53.1312162 76.8304054 53.2927027L76.8304054 53.2927027zM75.9007432 57.9771622C75.9007432 57.9771622 74.2642568 61.0156757 71.8473649 61.8683784" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path stroke="#282B32" stroke-width="2" d="M0,22.8812838 C0,22.8812838 0.844594595,36.3947973 17.8209459,38.4218243" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="3 6"/>
|
||||
</g>
|
||||
</g>
|
||||
<rect width="100" height="104.054"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 58 KiB |
BIN
assets/public/client/0bdc0497eb3a19e66f2b1e3d5741634c.webm
Normal file
14
assets/public/client/0c460e9b848f5c4cc964ae9c62c0f9b9.svg
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#99AAB5" d="M88,70.8c-2.1,4.6-3.1,6.7-5.7,10.8c-3.7,5.7-9,12.8-15.5,12.9
|
||||
c-5.8,0.1-7.3-3.8-15.1-3.8c-7.9,0-9.5,3.8-15.3,3.8c-6.5-0.1-11.5-6.5-15.2-12.2C10.6,66.3,9.6,47.6,16,37.6
|
||||
c4.6-7.1,11.8-11.2,18.6-11.2c6.9,0,11.3,3.8,17,3.8c5.5,0,8.9-3.8,16.9-3.8c6,0,12.4,3.3,17,9C70.5,43.6,72.9,65.1,88,70.8
|
||||
L88,70.8z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#99AAB5" d="M62.4,19.9c2.9-3.7,5.1-9,4.3-14.5c-4.7,0.3-10.3,3.4-13.5,7.3
|
||||
c-2.9,3.6-5.4,8.9-4.4,14.1C53.9,27.1,59.3,24,62.4,19.9L62.4,19.9z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
BIN
assets/public/client/0d44ba28e39303de3832db580a252456.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
25
assets/public/client/0f76453bc5c4ffa345a4bef1f9de0020.svg
Normal file
@ -0,0 +1,25 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="140" height="96" viewBox="0 0 140 96">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<g transform="translate(5 8)">
|
||||
<path fill="#4F545C" d="M34.2335 12.4912C39.2045 16.7092 45.5175 19.2202 52.4935 19.7542 52.8395 19.7802 53.1965 19.7942 53.5615 19.7942 57.3815 19.7942 62.0375 18.3452 64.3355 15.3322 64.9305 14.5522 65.3415 13.6982 65.5585 12.7972 65.8485 11.5872 65.4315 10.3362 64.4685 9.5332 63.5025 8.7272 62.1915 8.5412 61.0505 9.0472 58.7315 10.0732 56.8235 10.7212 55.4555 10.9292 55.2075 10.9292 55.0005 10.7522 54.9625 10.5072 54.9195 10.2352 55.1065 9.9782 55.3785 9.9352 57.1615 9.6562 58.8845 9.1552 60.4995 8.4462 61.5215 7.9972 62.1575 7.0252 62.1575 5.9112 62.1585 4.8072 61.5295 3.8452 60.4785 3.3822 57.9135 2.2602 54.7475 2.2202 52.2535 3.2802 50.9045 3.8532 49.6745 4.6072 48.3725 5.4062 47.6895 5.8242 47.0065 6.2432 46.3095 6.6322 43.9845 7.9282 41.4895 8.9022 38.8915 9.5282 37.9975 9.7442 37.0875 9.9182 36.1905 10.0462L36.0385 10.0672C35.3795 10.1602 34.7585 10.2482 34.2615 10.5542 33.8365 10.8152 33.4815 11.3742 33.6505 11.8212 33.7425 12.0622 33.9785 12.2752 34.2335 12.4912M7.0001 26.0615C3.9671 26.0615 1.5001 28.5285 1.5001 31.5615L1.5001 43.8115C1.5001 46.8435 3.9671 49.3115 7.0001 49.3115 8.9301 49.3115 10.5001 47.7415 10.5001 45.8115L10.5001 29.5615C10.5001 27.6315 8.9301 26.0615 7.0001 26.0615M91.0001 26.0615C89.0701 26.0615 87.5001 27.6315 87.5001 29.5615L87.5001 45.8115C87.5001 47.7415 89.0701 49.3115 91.0001 49.3115 94.0321 49.3115 96.5001 46.8435 96.5001 43.8115L96.5001 31.5615C96.5001 28.5285 94.0321 26.0615 91.0001 26.0615"/>
|
||||
<path fill="#4F545C" d="M73.0001,11.9297 L72.8051,11.9297 C69.8521,11.9297 67.0631,13.3787 65.1311,15.9377 C62.3971,19.5227 57.1971,20.7937 53.5751,20.7937 C53.1781,20.7937 52.7901,20.7807 52.4161,20.7507 C45.2291,20.2007 38.7181,17.6087 33.5781,13.2477 C32.5781,12.3977 31.3271,11.9297 30.0551,11.9297 L25.0001,11.9297 C17.5561,11.9297 11.5001,17.9867 11.5001,25.4297 L11.5001,51.6307 C11.5001,59.0747 17.5561,65.1307 25.0001,65.1307 L73.0001,65.1307 C80.4431,65.1307 86.5001,59.0747 86.5001,51.6307 L86.5001,25.4297 C86.5001,17.9867 80.4431,11.9297 73.0001,11.9297"/>
|
||||
<path fill="#202225" d="M34.5235,10.9795 C34.9315,10.7285 35.5035,10.6475 36.1095,10.5625 L36.2605,10.5415 C37.1745,10.4105 38.0995,10.2335 39.0085,10.0145 L39.0095,10.0145 C41.6505,9.3775 44.1885,8.3865 46.5525,7.0685 C47.2565,6.6765 47.9455,6.2545 48.6325,5.8325 C49.9195,5.0435 51.1335,4.2995 52.4485,3.7415 C53.6175,3.2445 54.9055,2.9975 56.2065,2.9975 C57.5925,2.9975 58.9945,3.2785 60.2775,3.8405 L60.3165,3.8575 C62.1175,4.6495 62.0985,7.1975 60.2975,7.9885 C58.7365,8.6745 57.0575,9.1665 55.3005,9.4415 C54.7555,9.5275 54.3825,10.0395 54.4675,10.5835 C54.5445,11.0785 54.9705,11.4295 55.4555,11.4295 C55.5055,11.4295 55.5585,11.4255 55.6115,11.4175 C57.2375,11.1635 59.4425,10.3045 61.2535,9.5045 C63.3395,8.5825 65.6045,10.4615 65.0725,12.6805 C64.8725,13.5155 64.4935,14.2995 63.9375,15.0285 C61.5255,18.1925 56.3755,19.5475 52.5305,19.2555 C45.6615,18.7295 39.4465,16.2585 34.5565,12.1105 C34.4125,11.9885 34.1705,11.7835 34.1175,11.6435 C34.0605,11.4925 34.2365,11.1565 34.5235,10.9795 L34.5235,10.9795 Z M2.0005,43.8115 L2.0005,31.5615 C2.0005,28.8005 4.2385,26.5615 7.0005,26.5615 C8.6575,26.5615 10.0005,27.9045 10.0005,29.5615 L10.0005,45.8115 C10.0005,47.4685 8.6575,48.8115 7.0005,48.8115 C4.2385,48.8115 2.0005,46.5725 2.0005,43.8115 L2.0005,43.8115 Z M12.0005,51.6305 L12.0005,25.4305 C12.0005,18.2505 17.8205,12.4305 25.0005,12.4305 L30.0545,12.4305 C31.2305,12.4305 32.3585,12.8675 33.2535,13.6285 L33.2625,13.6355 C38.4755,18.0585 45.0865,20.6915 52.3775,21.2505 C52.7645,21.2795 53.1655,21.2945 53.5755,21.2945 C57.6785,21.2945 62.8215,19.7915 65.5285,16.2415 C65.5375,16.2295 65.5455,16.2185 65.5545,16.2065 C67.2945,13.9005 69.9165,12.4305 72.8045,12.4305 L73.0005,12.4305 C80.1795,12.4305 86.0005,18.2505 86.0005,25.4305 L86.0005,51.6305 C86.0005,58.8105 80.1795,64.6305 73.0005,64.6305 L25.0005,64.6305 C17.8205,64.6305 12.0005,58.8105 12.0005,51.6305 L12.0005,51.6305 Z M96.0005,43.8115 C96.0005,46.5725 93.7615,48.8115 91.0005,48.8115 C89.3425,48.8115 88.0005,47.4685 88.0005,45.8115 L88.0005,29.5615 C88.0005,27.9045 89.3425,26.5615 91.0005,26.5615 C93.7615,26.5615 96.0005,28.8005 96.0005,31.5615 L96.0005,43.8115 Z M91.0005,24.5615 L88.7045,24.5615 C88.2805,24.5615 87.9395,24.2355 87.8945,23.8145 C87.0855,16.3025 80.7235,10.4305 73.0005,10.4305 L70.2585,10.4305 C68.5935,10.4305 67.1665,9.3395 66.6075,7.7705 C66.6045,7.7615 66.6005,7.7525 66.5975,7.7435 C66.4665,7.3795 66.3095,7.0295 66.1365,6.6875 C67.0575,5.9085 67.9085,5.0525 68.6695,4.1175 C69.0175,3.6895 68.9535,3.0585 68.5245,2.7105 C68.0965,2.3655 67.4665,2.4295 67.1185,2.8555 C66.4905,3.6275 65.7865,4.3325 65.0355,4.9865 C64.0185,3.7295 62.6765,2.7065 61.0795,2.0075 C58.0965,0.7035 54.5785,0.6635 51.6665,1.9005 C50.2145,2.5165 48.8785,3.3355 47.5875,4.1275 C46.9225,4.5355 46.2575,4.9425 45.5795,5.3215 C43.3735,6.5515 41.0055,7.4765 38.5415,8.0705 C37.6925,8.2745 36.8305,8.4395 35.9785,8.5615 L35.8315,8.5825 C35.0855,8.6875 34.2395,8.8065 33.4755,9.2765 C33.0475,9.5395 32.6675,9.9505 32.4145,10.4305 L25.0005,10.4305 C17.2765,10.4305 10.9155,16.3025 10.1055,23.8145 C10.0605,24.2355 9.7185,24.5615 9.2945,24.5615 L7.0005,24.5615 C3.1335,24.5615 0.0005,27.6955 0.0005,31.5615 L0.0005,43.8115 C0.0005,47.6775 3.1335,50.8115 7.0005,50.8115 L9.1805,50.8115 C9.6325,50.8115 10.0005,51.1785 10.0005,51.6305 C10.0005,59.9155 16.7155,66.6305 25.0005,66.6305 L73.0005,66.6305 C81.2845,66.6305 88.0005,59.9155 88.0005,51.6305 C88.0005,51.1785 88.3675,50.8115 88.8195,50.8115 L91.0005,50.8115 C94.8665,50.8115 98.0005,47.6775 98.0005,43.8115 L98.0005,31.5615 C98.0005,27.6955 94.8665,24.5615 91.0005,24.5615 L91.0005,24.5615 Z"/>
|
||||
<path fill="#72767D" d="M40.2237 12.4912C45.1947 16.7092 51.5087 19.2202 58.4837 19.7542 58.8297 19.7802 59.1877 19.7942 59.5517 19.7942 63.3727 19.7942 68.0277 18.3452 70.3267 15.3322 70.9207 14.5522 71.3327 13.6982 71.5497 12.7972 71.8397 11.5872 71.4217 10.3362 70.4597 9.5332 69.4937 8.7272 68.1827 8.5412 67.0417 9.0472 64.7217 10.0732 62.8147 10.7212 61.4457 10.9292 61.1987 10.9292 60.9907 10.7522 60.9527 10.5072 60.9107 10.2352 61.0967 9.9782 61.3697 9.9352 63.1527 9.6562 64.8747 9.1552 66.4897 8.4462 67.5127 7.9972 68.1487 7.0252 68.1487 5.9112 68.1487 4.8072 67.5207 3.8452 66.4687 3.3822 63.9047 2.2602 60.7387 2.2202 58.2437 3.2802 56.8947 3.8532 55.6647 4.6072 54.3627 5.4062 53.6807 5.8242 52.9977 6.2432 52.2997 6.6322 49.9757 7.9282 47.4797 8.9022 44.8827 9.5282 43.9877 9.7442 43.0787 9.9182 42.1817 10.0462L42.0287 10.0672C41.3707 10.1602 40.7487 10.2482 40.2527 10.5542L40.2517 10.5542C39.8277 10.8152 39.4717 11.3742 39.6407 11.8212 39.7337 12.0622 39.9697 12.2752 40.2237 12.4912M12.9903 26.0615C9.9583 26.0615 7.4903 28.5285 7.4903 31.5615L7.4903 43.8115C7.4903 46.8435 9.9583 49.3115 12.9903 49.3115 14.9203 49.3115 16.4903 47.7415 16.4903 45.8115L16.4903 29.5615C16.4903 27.6315 14.9203 26.0615 12.9903 26.0615M96.9903 26.0615C95.0603 26.0615 93.4903 27.6315 93.4903 29.5615L93.4903 45.8115C93.4903 47.7415 95.0603 49.3115 96.9903 49.3115 100.0233 49.3115 102.4903 46.8435 102.4903 43.8115L102.4903 31.5615C102.4903 28.5285 100.0233 26.0615 96.9903 26.0615"/>
|
||||
<path fill="#72767D" d="M78.9903,11.9297 L78.7963,11.9297 C75.8423,11.9297 73.0533,13.3787 71.1213,15.9377 C68.3883,19.5227 63.1883,20.7937 59.5663,20.7937 C59.1693,20.7937 58.7813,20.7807 58.4073,20.7507 C51.2203,20.2007 44.7093,17.6087 39.5683,13.2477 C38.5693,12.3977 37.3173,11.9297 36.0453,11.9297 L30.9903,11.9297 C23.5473,11.9297 17.4903,17.9867 17.4903,25.4297 L17.4903,51.6307 C17.4903,59.0747 23.5473,65.1307 30.9903,65.1307 L78.9903,65.1307 C86.4343,65.1307 92.4903,59.0747 92.4903,51.6307 L92.4903,25.4297 C92.4903,17.9867 86.4343,11.9297 78.9903,11.9297"/>
|
||||
<path fill="#202225" d="M40.5148,10.9795 C40.9228,10.7285 41.4948,10.6475 42.1008,10.5625 L42.2518,10.5415 C43.1658,10.4105 44.0908,10.2335 44.9998,10.0145 L45.0008,10.0145 C47.6418,9.3775 50.1798,8.3865 52.5438,7.0685 C53.2478,6.6765 53.9368,6.2545 54.6238,5.8325 C55.9108,5.0435 57.1248,4.2995 58.4398,3.7415 C59.6088,3.2445 60.8968,2.9975 62.1978,2.9975 C63.5838,2.9975 64.9858,3.2785 66.2688,3.8405 L66.3078,3.8575 C68.1088,4.6495 68.0898,7.1975 66.2888,7.9885 C64.7268,8.6745 63.0488,9.1665 61.2918,9.4415 C60.7468,9.5275 60.3738,10.0395 60.4588,10.5835 C60.5358,11.0785 60.9618,11.4295 61.4468,11.4295 C61.4968,11.4295 61.5498,11.4255 61.6028,11.4175 C63.2288,11.1635 65.4338,10.3045 67.2438,9.5045 C69.3308,8.5825 71.5958,10.4615 71.0638,12.6805 C70.8628,13.5155 70.4848,14.2995 69.9288,15.0285 C67.5168,18.1925 62.3668,19.5475 58.5218,19.2555 C51.6528,18.7295 45.4378,16.2585 40.5478,12.1105 C40.4038,11.9885 40.1618,11.7835 40.1088,11.6435 C40.0518,11.4925 40.2278,11.1565 40.5148,10.9795 L40.5148,10.9795 Z M7.9918,43.8115 L7.9918,31.5615 C7.9918,28.8005 10.2298,26.5615 12.9918,26.5615 C14.6478,26.5615 15.9918,27.9045 15.9918,29.5615 L15.9918,45.8115 C15.9918,47.4685 14.6478,48.8115 12.9918,48.8115 C10.2298,48.8115 7.9918,46.5725 7.9918,43.8115 L7.9918,43.8115 Z M17.9918,51.6305 L17.9918,25.4305 C17.9918,18.2505 23.8118,12.4305 30.9918,12.4305 L36.0448,12.4305 C37.2208,12.4305 38.3488,12.8675 39.2448,13.6285 L39.2538,13.6355 C44.4668,18.0585 51.0778,20.6915 58.3688,21.2505 C58.7558,21.2795 59.1568,21.2945 59.5668,21.2945 C63.6698,21.2945 68.8128,19.7915 71.5198,16.2415 C71.5288,16.2295 71.5368,16.2185 71.5458,16.2065 C73.2858,13.9005 75.9078,12.4305 78.7958,12.4305 L78.9918,12.4305 C86.1708,12.4305 91.9918,18.2505 91.9918,25.4305 L91.9918,51.6305 C91.9918,58.8105 86.1708,64.6305 78.9918,64.6305 L30.9918,64.6305 C23.8118,64.6305 17.9918,58.8105 17.9918,51.6305 L17.9918,51.6305 Z M101.9918,43.8115 C101.9918,46.5725 99.7518,48.8115 96.9918,48.8115 C95.3338,48.8115 93.9918,47.4685 93.9918,45.8115 L93.9918,29.5615 C93.9918,27.9045 95.3338,26.5615 96.9918,26.5615 C99.7518,26.5615 101.9918,28.8005 101.9918,31.5615 L101.9918,43.8115 Z M96.9918,24.5615 L94.6958,24.5615 C94.2718,24.5615 93.9308,24.2355 93.8848,23.8145 C93.0758,16.3025 86.7138,10.4305 78.9918,10.4305 L76.2498,10.4305 C74.5838,10.4305 73.1568,9.3395 72.5988,7.7705 C72.5948,7.7615 72.5918,7.7525 72.5888,7.7435 C72.4578,7.3795 72.3008,7.0295 72.1278,6.6875 C73.0488,5.9085 73.8998,5.0525 74.6608,4.1175 C75.0088,3.6895 74.9448,3.0585 74.5158,2.7105 C74.0878,2.3655 73.4578,2.4295 73.1098,2.8555 C72.4818,3.6275 71.7778,4.3325 71.0268,4.9865 C70.0088,3.7295 68.6678,2.7065 67.0708,2.0075 C64.0878,0.7035 60.5698,0.6635 57.6578,1.9005 C56.2058,2.5165 54.8698,3.3355 53.5788,4.1275 C52.9138,4.5355 52.2488,4.9425 51.5708,5.3215 C49.3648,6.5515 46.9968,7.4765 44.5328,8.0705 C43.6838,8.2745 42.8218,8.4395 41.9698,8.5615 L41.8228,8.5825 C41.0768,8.6875 40.2308,8.8065 39.4668,9.2765 C39.0388,9.5395 38.6588,9.9505 38.4058,10.4305 L30.9918,10.4305 C23.2678,10.4305 16.9068,16.3025 16.0968,23.8145 C16.0508,24.2355 15.7098,24.5615 15.2858,24.5615 L12.9918,24.5615 C9.1248,24.5615 5.9918,27.6955 5.9918,31.5615 L5.9918,43.8115 C5.9918,47.6775 9.1248,50.8115 12.9918,50.8115 L15.1718,50.8115 C15.6238,50.8115 15.9918,51.1785 15.9918,51.6305 C15.9918,59.9155 22.7058,66.6305 30.9918,66.6305 L78.9918,66.6305 C87.2758,66.6305 93.9918,59.9155 93.9918,51.6305 C93.9918,51.1785 94.3578,50.8115 94.8108,50.8115 L96.9918,50.8115 C100.8568,50.8115 103.9918,47.6775 103.9918,43.8115 L103.9918,31.5615 C103.9918,27.6955 100.8568,24.5615 96.9918,24.5615 L96.9918,24.5615 Z"/>
|
||||
<path fill="#8BA4E8" d="M106.6046 24.5923C106.4026 24.5713 106.1986 24.5613 105.9916 24.5613L102.9916 22.5613 102.9916 50.8113 105.9916 48.8113C106.1986 48.8113 106.4026 48.8003 106.6046 48.7803 108.2176 48.6163 109.6426 47.8133 110.6216 46.6283 111.4766 45.5913 111.9916 44.2613 111.9916 42.8113L111.9916 30.5613C111.9916 29.1113 111.4766 27.7813 110.6216 26.7443 109.6426 25.5593 108.2176 24.7563 106.6046 24.5923M21.9913 24.5615C18.6773 24.5615 15.9913 27.2475 15.9913 30.5615L15.9913 42.8115C15.9913 46.1245 18.6773 48.8115 21.9913 48.8115L24.9913 50.8115 24.9913 22.5615 21.9913 24.5615z"/>
|
||||
<path fill="#AABFF2" d="M38.4913,34.3115 C38.4913,35.7125 37.3763,36.8275 36.0063,36.8275 L35.9753,36.8275 C34.6053,36.8275 33.4913,35.7125 33.4913,34.3425 C33.4913,32.9415 34.6053,31.8275 35.9753,31.8275 C37.3763,31.8275 38.4913,32.9415 38.4913,34.3115 M83.1593,31.9835 L83.1593,36.1625 C83.1593,44.4735 76.3973,51.2335 68.0883,51.2335 L60.2303,51.2335 C51.9203,51.2335 45.1593,44.4735 45.1593,36.1625 L45.1593,31.9835 C45.1593,29.2275 47.4013,26.9835 50.1593,26.9835 L78.1593,26.9835 C80.9163,26.9835 83.1593,29.2275 83.1593,31.9835 M65.9913,57.5245 C65.9913,57.8165 65.7633,58.0445 65.4843,58.0445 L62.4973,58.0445 C62.2183,58.0445 61.9913,57.8165 61.9913,57.5375 C61.9913,57.2445 62.2183,57.0175 62.4973,57.0175 L65.4843,57.0175 C65.7633,57.0175 65.9913,57.2445 65.9913,57.5245 M89.4913,34.3585 L89.4913,34.2955 C89.4913,32.9175 90.6123,31.7955 91.9913,31.7955 C93.3693,31.7955 94.4913,32.9175 94.4913,34.2955 L94.4913,34.3585 C94.4913,35.7365 93.3693,36.8585 91.9913,36.8585 C90.6123,36.8585 89.4913,35.7365 89.4913,34.3585 M87.9913,9.4295 L82.2163,9.4295 L81.2403,9.4295 L81.2173,10.4055 C81.1783,11.9635 80.6763,13.3865 79.7233,14.6355 C77.1013,18.0745 72.0753,19.2945 68.5673,19.2945 C68.1843,19.2945 67.8073,19.2805 67.4453,19.2525 C60.3643,18.7105 53.9523,16.1585 48.9003,11.8735 C48.6543,11.6645 48.3183,11.3785 48.1743,10.9985 C48.1123,10.8375 48.0893,10.6745 48.1003,10.4995 L48.1763,9.4295 L47.1033,9.4295 L39.9913,9.4295 C31.7203,9.4295 24.9913,16.1595 24.9913,24.4295 L24.9913,24.5615 L24.9913,48.8115 L24.9913,50.6305 C24.9913,58.9015 31.7203,65.6305 39.9913,65.6305 L87.9913,65.6305 C90.1033,65.6305 92.1473,65.1995 94.0643,64.3475 C94.4323,64.1845 94.8003,64.0025 95.1543,63.8095 C95.8573,63.4255 96.5363,62.9815 97.1723,62.4885 C98.0143,61.8335 98.7903,61.0875 99.4773,60.2695 C99.5543,60.1785 99.6273,60.0835 99.7003,59.9895 L99.7833,59.8815 C100.1753,59.3835 100.5463,58.8405 100.8863,58.2675 C101.3873,57.4225 101.8063,56.5235 102.1333,55.5965 C102.7023,53.9745 102.9913,52.3045 102.9913,50.6305 L102.9913,48.8115 L102.9913,24.5615 L102.9913,24.4295 C102.9913,16.1595 96.2623,9.4295 87.9913,9.4295"/>
|
||||
<path fill="#CBDAF7" d="M73.1593,44.1695 C73.1593,45.0015 72.4843,45.6755 71.6523,45.6755 L68.6653,45.6755 C67.8333,45.6755 67.1593,45.0015 67.1593,44.1695 L67.1593,44.1555 C67.1593,43.3235 67.8333,42.6495 68.6653,42.6495 L71.6523,42.6495 C72.4843,42.6495 73.1593,43.3235 73.1593,44.1555 L73.1593,44.1695 Z M60.6593,44.1695 C60.6593,45.0015 59.9843,45.6755 59.1523,45.6755 L56.1653,45.6755 C55.3333,45.6755 54.6593,45.0015 54.6593,44.1695 L54.6593,44.1555 C54.6593,43.3235 55.3333,42.6495 56.1653,42.6495 L59.1523,42.6495 C59.9843,42.6495 60.6593,43.3235 60.6593,44.1555 L60.6593,44.1695 Z M78.1593,25.9835 L50.1593,25.9835 C46.8453,25.9835 44.1593,28.6705 44.1593,31.9835 L44.1593,36.1625 C44.1593,45.0385 51.3543,52.2335 60.2303,52.2335 L68.0883,52.2335 C76.9643,52.2335 84.1593,45.0385 84.1593,36.1625 L84.1593,31.9835 C84.1593,28.6705 81.4723,25.9835 78.1593,25.9835 L78.1593,25.9835 Z"/>
|
||||
<path fill="#AABFF2" d="M71.6525 42.6494L68.6655 42.6494C67.8335 42.6494 67.1595 43.3234 67.1595 44.1554L67.1595 44.1694C67.1595 45.0014 67.8335 45.6754 68.6655 45.6754L71.6525 45.6754C72.4845 45.6754 73.1595 45.0014 73.1595 44.1694L73.1595 44.1554C73.1595 43.3234 72.4845 42.6494 71.6525 42.6494M59.1525 42.6494L56.1655 42.6494C55.3335 42.6494 54.6595 43.3234 54.6595 44.1554L54.6595 44.1694C54.6595 45.0014 55.3335 45.6754 56.1655 45.6754L59.1525 45.6754C59.9845 45.6754 60.6595 45.0014 60.6595 44.1694L60.6595 44.1554C60.6595 43.3234 59.9845 42.6494 59.1525 42.6494"/>
|
||||
<path fill="#43B581" d="M49.547,11.1104 C54.438,15.2584 60.652,17.7294 67.522,18.2564 C71.365,18.5554 76.516,17.1934 78.928,14.0294 C80.349,12.1664 80.61,9.9414 79.705,7.4184 C79.647,7.2524 79.572,7.0934 79.501,6.9324 C76.915,8.7034 73.88,9.9044 70.602,10.4184 C70.549,10.4254 70.496,10.4294 70.445,10.4294 C69.961,10.4294 69.535,10.0784 69.458,9.5844 C69.373,9.0394 69.746,8.5274 70.291,8.4414 C73.309,7.9684 76.093,6.8574 78.454,5.2224 C77.637,4.2224 76.558,3.4034 75.269,2.8394 C72.782,1.7524 69.855,1.7144 67.439,2.7414 C66.126,3.2984 64.912,4.0424 63.628,4.8304 C62.939,5.2534 62.248,5.6744 61.543,6.0684 C59.18,7.3864 56.643,8.3784 54,9.0144 C53.098,9.2324 52.173,9.4094 51.253,9.5414 L51.101,9.5624 C50.494,9.6484 49.922,9.7284 49.514,9.9804 C49.227,10.1564 49.051,10.4924 49.108,10.6424 C49.161,10.7834 49.402,10.9884 49.547,11.1104"/>
|
||||
<path fill="#8BA4E8" d="M65.4845,56.0176 L62.4975,56.0176 C61.6655,56.0176 60.9915,56.6916 60.9915,57.5246 L60.9915,57.5376 C60.9915,58.3696 61.6655,59.0446 62.4975,59.0446 L65.4845,59.0446 C66.3165,59.0446 66.9915,58.3696 66.9915,57.5376 L66.9915,57.5246 C66.9915,56.6916 66.3165,56.0176 65.4845,56.0176"/>
|
||||
<path fill="#000000" d="M90.2433 30.6699C88.8303 31.2909 87.9913 32.7719 87.9913 34.3159L87.9913 34.3379C87.9913 35.8819 88.8303 37.3639 90.2433 37.9839 93.1493 39.2599 95.9913 37.1269 95.9913 34.3629L95.9913 34.2919C95.9913 31.5269 93.1493 29.3949 90.2433 30.6699M35.9913 30.3272L35.9913 30.3272C33.7913 30.3272 31.9913 32.1272 31.9913 34.3272 31.9913 36.5272 33.7913 38.3272 35.9913 38.3272 38.1903 38.3272 39.9913 36.5272 39.9913 34.3272 39.9913 32.1272 38.1903 30.3272 35.9913 30.3272"/>
|
||||
<path fill="#000000" d="M111.9913,42.8115 C111.9913,44.2615 111.4763,45.5905 110.6213,46.6275 C109.6423,47.8125 108.2183,48.6165 106.6043,48.7805 C106.4023,48.8005 106.1983,48.8115 105.9913,48.8115 L103.8103,48.8115 C102.8053,48.8115 101.9913,49.6255 101.9913,50.6305 C101.9913,52.2575 101.6993,53.8125 101.1893,55.2645 C100.8823,56.1395 100.4923,56.9715 100.0253,57.7565 C99.7143,58.2825 99.3723,58.7865 98.9973,59.2645 C98.9023,59.3855 98.8103,59.5085 98.7123,59.6265 C98.0693,60.3915 97.3473,61.0855 96.5583,61.6985 C95.9673,62.1575 95.3373,62.5705 94.6753,62.9315 C94.3443,63.1125 94.0053,63.2795 93.6583,63.4335 C91.9273,64.2035 90.0093,64.6305 87.9913,64.6305 L39.9913,64.6305 C32.2593,64.6305 25.9913,58.3625 25.9913,50.6305 C25.9913,49.6255 25.1763,48.8115 24.1713,48.8115 L21.9913,48.8115 C18.6773,48.8115 15.9913,46.1245 15.9913,42.8115 L15.9913,30.5615 C15.9913,27.2475 18.6773,24.5615 21.9913,24.5615 L24.3363,24.4845 C25.2463,24.4545 25.9773,23.7525 26.0793,22.8475 C26.8653,15.8605 32.7943,10.4295 39.9913,10.4295 L47.1033,10.4295 C47.0823,10.7335 47.1213,11.0445 47.2383,11.3535 C47.4743,11.9755 47.9623,12.3885 48.2533,12.6355 C53.4673,17.0585 60.0773,19.6915 67.3683,20.2495 C67.7563,20.2795 68.1563,20.2945 68.5673,20.2945 C72.6703,20.2945 77.8123,18.7905 80.5183,15.2425 C80.9893,14.6245 81.3613,13.9725 81.6363,13.2895 C82.3123,11.6055 83.8523,10.4295 85.6683,10.4295 L87.9913,10.4295 C95.1873,10.4295 101.1163,15.8605 101.9023,22.8475 C102.0043,23.7525 102.7353,24.4545 103.6453,24.4845 L105.9913,24.5615 C106.1983,24.5615 106.4023,24.5715 106.6043,24.5925 C108.2183,24.7565 109.6423,25.5595 110.6213,26.7445 C111.4763,27.7815 111.9913,29.1115 111.9913,30.5615 L111.9913,42.8115 Z M49.5133,9.9805 C49.9223,9.7285 50.4943,9.6485 51.1003,9.5625 L51.2533,9.5405 C52.1733,9.4095 53.0973,9.2325 54.0003,9.0145 C56.6423,8.3775 59.1793,7.3865 61.5433,6.0685 C62.2483,5.6745 62.9383,5.2525 63.6283,4.8305 C64.9123,4.0415 66.1263,3.2985 67.4383,2.7415 C69.8543,1.7145 72.7823,1.7515 75.2683,2.8395 L75.3073,2.8565 C77.1083,3.6495 77.0903,6.1965 75.2883,6.9885 C73.7263,7.6745 72.0493,8.1655 70.2913,8.4415 C69.7463,8.5275 69.3733,9.0395 69.4583,9.5835 C69.5353,10.0785 69.9613,10.4295 70.4453,10.4295 C70.4963,10.4295 70.5493,10.4255 70.6013,10.4175 C72.1583,10.1745 73.6603,9.7755 75.0853,9.2345 C77.7963,8.2045 80.5413,11.1225 79.1583,13.6715 C79.0893,13.7995 79.0123,13.9185 78.9283,14.0295 C76.5153,17.1935 71.3653,18.5555 67.5213,18.2555 C60.6523,17.7295 54.4373,15.2585 49.5473,11.1105 C49.4023,10.9885 49.1613,10.7835 49.1073,10.6425 C49.0513,10.4925 49.2263,10.1565 49.5133,9.9805 L49.5133,9.9805 Z M105.9913,22.5615 L105.6913,22.5615 C104.6733,22.5615 103.8143,21.8445 103.5873,20.8525 C101.9583,13.7465 95.5833,8.4295 87.9913,8.4295 L83.8903,8.4295 C82.8443,8.4295 81.9463,7.7465 81.5953,6.7605 C81.5933,6.7545 81.5913,6.7485 81.5883,6.7435 C81.4583,6.3795 81.3003,6.0295 81.1283,5.6875 C82.0483,4.9085 82.8993,4.0525 83.6593,3.1175 C84.0083,2.6895 83.9433,2.0585 83.5143,1.7105 C83.0873,1.3655 82.4573,1.4295 82.1083,1.8555 C81.4803,2.6275 80.7773,3.3325 80.0263,3.9865 C79.0093,2.7295 77.6683,1.7065 76.0703,1.0075 C73.0883,-0.2955 69.5693,-0.3375 66.6563,0.9005 C65.2073,1.5155 63.8733,2.3335 62.5823,3.1245 C61.9163,3.5335 61.2503,3.9415 60.5683,4.3225 C58.3643,5.5515 55.9973,6.4765 53.5313,7.0705 C52.6893,7.2735 51.8273,7.4385 50.9693,7.5615 L50.8213,7.5825 C50.0753,7.6875 49.2303,7.8065 48.4663,8.2765 C48.3933,8.3215 48.3253,8.3775 48.2553,8.4295 L39.9913,8.4295 C32.3983,8.4295 26.0233,13.7465 24.3943,20.8525 C24.1673,21.8445 23.3083,22.5615 22.2903,22.5615 L21.9913,22.5615 C17.5723,22.5615 13.9913,26.1435 13.9913,30.5615 L13.9913,42.8115 C13.9913,47.2295 17.5723,50.8115 21.9913,50.8115 C23.0893,50.8115 23.9843,51.6405 24.1283,52.7285 C25.1583,60.5635 31.8793,66.6305 39.9913,66.6305 L87.9913,66.6305 C96.1023,66.6305 102.8233,60.5635 103.8533,52.7285 C103.9973,51.6405 104.8923,50.8115 105.9913,50.8115 C110.4093,50.8115 113.9913,47.2295 113.9913,42.8115 L113.9913,30.5615 C113.9913,26.1435 110.4093,22.5615 105.9913,22.5615 L105.9913,22.5615 Z"/>
|
||||
<path fill="#FFFFFF" d="M76.5958 75.1358L76.5958 75.1358C75.5268 75.1358 74.6588 74.2688 74.6588 73.1988L74.6588 73.1988C74.6588 72.9218 74.4358 72.6978 74.1588 72.6978 73.8828 72.6978 73.6588 72.9218 73.6588 73.1988L73.6588 73.1988C73.6588 74.2688 72.7918 75.1358 71.7218 75.1358 71.4458 75.1358 71.2218 75.3598 71.2218 75.6358 71.2218 75.9118 71.4458 76.1358 71.7218 76.1358 72.7918 76.1358 73.6588 77.0028 73.6588 78.0728 73.6588 78.3488 73.8828 78.5728 74.1588 78.5728 74.4358 78.5728 74.6588 78.3488 74.6588 78.0728 74.6588 77.0028 75.5268 76.1358 76.5958 76.1358 76.8718 76.1358 77.0958 75.9118 77.0958 75.6358 77.0958 75.3598 76.8718 75.1358 76.5958 75.1358M118.7491 10.4502C118.8951 10.4502 119.0411 10.3862 119.1401 10.2632L120.0701 9.1042C120.2431 8.8892 120.2091 8.5752 119.9941 8.4022 119.7781 8.2292 119.4651 8.2632 119.2911 8.4782L118.3601 9.6372C118.1871 9.8522 118.2221 10.1672 118.4371 10.3402 118.5291 10.4142 118.6401 10.4502 118.7491 10.4502M114.6056 13.3198L113.6736 14.4788C113.5016 14.6938 113.5356 15.0078 113.7516 15.1808 113.8426 15.2558 113.9536 15.2918 114.0636 15.2918 114.2096 15.2918 114.3546 15.2278 114.4536 15.1048L115.3846 13.9458C115.5576 13.7308 115.5236 13.4158 115.3076 13.2428 115.0926 13.0708 114.7786 13.1048 114.6056 13.3198M118.5314 13.1646C118.3264 13.3506 118.3104 13.6666 118.4964 13.8716L119.5024 14.9806C119.6004 15.0896 119.7364 15.1446 119.8724 15.1446 119.9924 15.1446 120.1124 15.1016 120.2084 15.0156 120.4134 14.8296 120.4284 14.5136 120.2434 14.3086L119.2374 13.1996C119.0524 12.9946 118.7354 12.9806 118.5314 13.1646M114.5069 10.3838C114.6059 10.4928 114.7409 10.5488 114.8779 10.5488 114.9969 10.5488 115.1169 10.5058 115.2129 10.4188 115.4179 10.2338 115.4339 9.9178 115.2479 9.7128L114.2429 8.6028C114.0579 8.3968 113.7409 8.3838 113.5369 8.5678 113.3319 8.7538 113.3169 9.0698 113.5019 9.2738L114.5069 10.3838z"/>
|
||||
<path fill="#8EA1E1" d="M125.0284,46.6309 L89.0284,46.6309 C87.0984,46.6309 85.5284,48.2009 85.5284,50.1309 L85.5284,68.1309 C85.5284,70.0609 87.0984,71.6309 89.0284,71.6309 L125.0284,71.6309 C126.9584,71.6309 128.5284,70.0609 128.5284,68.1309 L128.5284,50.1309 C128.5284,48.2009 126.9584,46.6309 125.0284,46.6309"/>
|
||||
<path fill="#040405" d="M125.0284,44.6309 L89.0284,44.6309 C85.9964,44.6309 83.5284,47.0979 83.5284,50.1309 L83.5284,68.1309 C83.5284,71.1639 85.9964,73.6309 89.0284,73.6309 L125.0284,73.6309 C128.0614,73.6309 130.5284,71.1639 130.5284,68.1309 L130.5284,50.1309 C130.5284,47.0979 128.0614,44.6309 125.0284,44.6309 M125.0284,46.6309 C126.9584,46.6309 128.5284,48.2009 128.5284,50.1309 L128.5284,68.1309 C128.5284,70.0609 126.9584,71.6309 125.0284,71.6309 L89.0284,71.6309 C87.0984,71.6309 85.5284,70.0609 85.5284,68.1309 L85.5284,50.1309 C85.5284,48.2009 87.0984,46.6309 89.0284,46.6309 L125.0284,46.6309"/>
|
||||
<path fill="#040405" d="M103.088 61.4175L103.088 59.4555C103.088 58.7785 102.539 58.2295 101.862 58.2295L98.821 58.2295C98.145 58.2295 97.596 58.7785 97.596 59.4555L97.596 59.5795C97.596 60.2565 98.145 60.8055 98.821 60.8055L100.495 60.8055 100.495 61.4175C100.495 62.5515 99.289 63.1095 98.101 63.1095 96.912 63.1095 95.741 62.5515 95.741 61.4175L95.741 56.7715C95.741 55.6375 96.858 55.0065 98.011 55.0065 98.736 55.0065 99.471 55.2385 99.976 55.7445 100.337 56.1065 100.909 56.1545 101.361 55.9155 102.056 55.5475 102.258 54.6055 101.719 54.0335 100.724 52.9765 99.388 52.5755 98.083 52.5755 95.598 52.5755 93.112 53.9805 93.112 56.7715L93.112 61.4175C93.112 64.2805 95.615 65.7035 98.119 65.6855 100.604 65.6675 103.088 64.2445 103.088 61.4175M107.5118 52.7559L107.3168 52.7559C106.6398 52.7559 106.0908 53.3049 106.0908 53.9819L106.0908 64.2799C106.0908 64.9569 106.6398 65.5049 107.3168 65.5049L107.5118 65.5049C108.1888 65.5049 108.7378 64.9569 108.7378 64.2799L108.7378 53.9819C108.7378 53.3049 108.1888 52.7559 107.5118 52.7559M114.9835 56.9146L114.9835 56.5566C114.9835 55.8796 115.5315 55.3316 116.2085 55.3316L119.7185 55.3316C120.3955 55.3316 120.9445 54.7826 120.9445 54.1056L120.9445 53.9816C120.9445 53.3046 120.3955 52.7556 119.7185 52.7556L113.5435 52.7556C112.8665 52.7556 112.3175 53.3046 112.3175 53.9816L112.3175 64.2796C112.3175 64.9566 112.8665 65.5046 113.5435 65.5046L113.7575 65.5046C114.4345 65.5046 114.9835 64.9566 114.9835 64.2796L114.9835 61.9766C114.9835 61.2996 115.5315 60.7516 116.2085 60.7516L118.9805 60.7516C119.6575 60.7516 120.2065 60.2026 120.2065 59.5256L120.2065 59.3656C120.2065 58.6886 119.6575 58.1396 118.9805 58.1396L116.2085 58.1396C115.5315 58.1396 114.9835 57.5916 114.9835 56.9146"/>
|
||||
</g>
|
||||
<rect width="140" height="96"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 26 KiB |
BIN
assets/public/client/10bb7b2e55f0a34f23d903121de6b9bc.png
Normal file
|
After Width: | Height: | Size: 430 B |
BIN
assets/public/client/129bf63f677720a34bc7ffeb74468a0e.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
assets/public/client/12ce59260e50f1f80302bb73f06cc8c0.png
Normal file
|
After Width: | Height: | Size: 48 KiB |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path d="M0 0h18v18H0z"/>
|
||||
<path fill="#F04747" d="M14.25 4.8075L13.1925 3.75 9 7.9425 4.8075 3.75 3.75 4.8075 7.9425 9 3.75 13.1925 4.8075 14.25 9 10.0575l4.1925 4.1925 1.0575-1.0575L10.0575 9"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 319 B |
16
assets/public/client/14ce1e8528e32f1a13659e476a3c0716.svg
Normal file
@ -0,0 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 180 200" width="42" height="33">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1{fill:#aabff2}.cls-3{fill:#7d94df}
|
||||
</style>
|
||||
</defs>
|
||||
<path d="M155 165c0-27.5-24.37-50-54.17-50H79.17C49.38 115 25 137.5 25 165v25a36.86 36.86 0 0 0 1.38 10h127.24a36.86 36.86 0 0 0 1.38-10z" class="cls-1"/>
|
||||
<path d="M172.54 70.64c-2.33-7.19-8.77-7.2-15.08-6.9A53.49 53.49 0 0 0 153 49.67c-7.38-14.79-21.8-17.53-37-18.28-24.3-1.19-49.68-1.85-71.64 8.47C34.05 44.7 31 52.74 28.75 58.82c-.41 1.12-.73 2.33-1.08 3.51a6.61 6.61 0 0 0-.89-.15c-16.28-1-20.28 12.05-20.07 26 .1 6.75.53 15.79 3.52 22 3.16 6.54 10.19 6 16.42 5.68a8.08 8.08 0 0 0 1.62-.25c5.18 14.72 18 20.43 32.92 22.38 22.89 3 48.64 3.82 71.45.12 14.21-2.3 20.56-10.78 23.4-22.26a22.34 22.34 0 0 0 5.5-.86c8-2.32 12.44-5.15 13.29-13.9.92-9.44.65-21.38-2.29-30.45z" class="cls-1"/>
|
||||
<path fill="#cbdaf7" d="M117.24 70.4c-6-4.62-14.35-4.83-21.53-5.27a136.32 136.32 0 0 0-30.13 1.58 9.88 9.88 0 0 0-2.66.86 8.65 8.65 0 0 0-7.12 6.76c-3.48 14.13-.66 32.13 14.47 38 13.11 5.12 33.08 5.07 43.94-4.2C124 99.79 129 79.55 117.24 70.4z"/>
|
||||
<path d="M78.7 93.14c-3.19 0-6.39 0-9.58.08A3.62 3.62 0 0 0 65.77 97a3.66 3.66 0 0 0 3.8 3.35c3.19.07 6.39.06 9.59.07 4.71.05 4.24-7.3-.46-7.28zM104.79 94.85q-5.31-.33-10.64-.57c-4.06-.18-4.57 6.87-.48 7.16q5.79.41 11.58.71c2 .11 3.54-2.07 3.42-3.88-.13-2.18-1.9-3.27-3.88-3.42z" class="cls-1"/>
|
||||
<path d="M38 80c-8.86 0-7.94 13.71.86 13.71S46.82 80 38 80zM139.19 80.6c-9.41 0-8.43 14.56.92 14.56s8.43-14.56-.92-14.56z"/>
|
||||
<path d="M24.76 79.13c0-2.84-3.45-3.85-5.47-2.65a3.54 3.54 0 0 0-4.55 2.65A51 51 0 0 0 13.88 97c.57 4.22 1.46 9 6.33 9.9a3.7 3.7 0 0 0 4.35-3.81c-.23-7.99.08-15.95.2-23.96zM164 78.65a3 3 0 0 0-2.59-2.4 3.61 3.61 0 0 0-5.09 3.33c.1 7.49.56 15 1.06 22.44a3.78 3.78 0 0 0 2.94 3.36c11.45 3.09 4.91-21.95 3.68-26.73z" class="cls-3"/>
|
||||
<path fill="#ff766c" d="M144.55 20.07C126.3 2.12 100.18-2.22 76.12 4.39c-14.53 4-28.08 11.07-36.5 24a112.39 112.39 0 0 0-9.37 18.83q-9.83 0-19.67.08c-5.55.05-4.94 8.53.54 8.58 12.81.1 25.63.09 38.44.1a4.78 4.78 0 0 0 1-.11c35.08.06 70.15 0 105.23 0a3.24 3.24 0 0 0 .85-.11 3.48 3.48 0 0 0 3.68-.08 52.12 52.12 0 0 0-15.77-35.61z"/>
|
||||
<path fill="#fff" d="M109.39 42.26a5 5 0 0 0-.16-1.24c-3.66-13.66-13.76-33.71-30.79-30.86-8 1.34-15.55 6.93-21.54 12.14S45.94 34 43.75 41.85a3.49 3.49 0 0 0 .18 2.43 4.33 4.33 0 0 0 4.29 3.85c19.19.33 38.4.17 57.6.17 3.56 0 4.65-3.47 3.57-6.04z"/>
|
||||
<path fill="#23d093" d="M73 30.76c1.2-.92 2.46-1.76 3.74-2.57q.94-.61 1.92-1.2l.34-.15c2.81 2.53 8.63-.3 7.35-5-3.2-11.86-19.49 1.44-23.5 6-3 3.4-6.51 9.44-1.31 12.67 2.35 1.47 5.53 1 8.18 1h9.82c5.86 0 5.25-9.07-.57-9.06h-7c-.27 0-.59 0-.94.06A24.7 24.7 0 0 1 73 30.76z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#ffffff" fill-rule="nonzero" d="M2,11 L0,0 L5.5,7 L9,0 L12.5,7 L18,0 L16,11 L2,11 L2,11 Z M16,14 C16,14.5522847 15.5522847,15 15,15 L3,15 C2.44771525,15 2,14.5522847 2,14 L2,13 L16,13 L16,14 Z" transform="translate(3 4)"/>
|
||||
<rect width="24" height="24"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 410 B |
BIN
assets/public/client/1923b5f96b83785235595042bd7f5a0d.png
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
assets/public/client/19494428f3a5649ffd64818fc75d0e76.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
16
assets/public/client/1988164a7c55346d32117b151f4e319d.svg
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="7px" height="10px" viewBox="0 0 7 10" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.5.2 (25235) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-arrow</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Context-Menus" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Context-Menus---Light" sketch:type="MSArtboardGroup" transform="translate(-563.000000, -178.000000)" fill="#9FA6B0">
|
||||
<g id="User-Menu" sketch:type="MSLayerGroup" transform="translate(411.000000, 95.000000)">
|
||||
<g id="Group-13" transform="translate(0.968000, 71.000000)" sketch:type="MSShapeGroup">
|
||||
<path d="M150.304207,15.7071068 L154.240207,19.7071068 C154.624483,20.0976311 155.247517,20.0976311 155.631793,19.7071068 L159.567793,15.7071068 C159.952069,15.3165825 159.952069,14.6834175 159.567793,14.2928932 C159.183517,13.9023689 158.560483,13.9023689 158.176207,14.2928932 L154.240207,18.2928932 L155.631793,18.2928932 L151.695793,14.2928932 C151.311517,13.9023689 150.688483,13.9023689 150.304207,14.2928932 C149.919931,14.6834175 149.919931,15.3165825 150.304207,15.7071068 L150.304207,15.7071068 Z" id="icon-arrow" transform="translate(154.936000, 17.000000) rotate(-90.000000) translate(-154.936000, -17.000000) "></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
2
assets/public/client/1a645810b486db6ab221.js
Normal file
BIN
assets/public/client/1a7544e1a27a25e87075c01e3fa130e3.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
30
assets/public/client/1c2a4867bd79715207e3cc3af0d3f476.svg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
assets/public/client/1cbd08c76f8af6dddce02c5138971129.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
assets/public/client/21f08348c17a2688b6d38bd554dc94a8.svg
Normal file
|
After Width: | Height: | Size: 641 B |
37
assets/public/client/222e7361d9f298ecb525cb9d9d9d7312.svg
Normal file
|
After Width: | Height: | Size: 36 KiB |
13
assets/public/client/24b843ed68d70abffbf4fdab9b400cc9.svg
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1"
|
||||
id="svg2" inkscape:version="0.48.0 r9654" sodipodi:docname="Windows_8_Logo.svg" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 87.3 87.6"
|
||||
enable-background="new 0 0 87.3 87.6" xml:space="preserve">
|
||||
<sodipodi:namedview inkscape:document-units="px" inkscape:window-maximized="1" inkscape:current-layer="g3763" fit-margin-right="0" showgrid="false" inkscape:cy="-25.868872" inkscape:cx="243.44312" borderopacity="1.0" bordercolor="#666666" inkscape:zoom="2" fit-margin-left="0" fit-margin-top="0" showguides="true" pagecolor="#ffffff" id="base" inkscape:window-height="746" inkscape:pageshadow="2" inkscape:pageopacity="0.0" inkscape:window-width="1366" fit-margin-bottom="0" inkscape:window-y="-8" inkscape:guide-bbox="true" inkscape:window-x="-8">
|
||||
</sodipodi:namedview>
|
||||
<path id="path13" sodipodi:nodetypes="cccccccccccccccccccc" inkscape:connector-curvature="0" fill="#FFFFFF" d="M0,12.4l35.7-4.9
|
||||
l0,34.4L0,42.2L0,12.4z M35.7,45.9l0,34.5L0,75.5l0-29.8L35.7,45.9z M40,6.9L87.3,0v41.5L40,41.9L40,6.9z M87.3,46.3l0,41.3L40,80.9
|
||||
l-0.1-34.7L87.3,46.3z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
21
assets/public/client/24e5837679a970699e904d047c741540.svg
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 40.3 (33839) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>ic_reactions_white_16px</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="ic_reactions_white_16px">
|
||||
<g id="Group-2">
|
||||
<g id="0:0:0:0">
|
||||
<rect id="Rectangle-5" x="0" y="0" width="16" height="16"></rect>
|
||||
<g id="emoticon" transform="translate(1.333333, 1.333333)"></g>
|
||||
<path d="M14.6332705,7.33333333 C14.6554304,7.55389388 14.6666667,7.77636769 14.6666667,8 C14.6666667,11.6818983 11.6818983,14.6666667 8,14.6666667 C6.23189007,14.6666667 4.53619732,13.9642877 3.28595479,12.7140452 C2.03571227,11.4638027 1.33333333,9.76810993 1.33333333,8 C1.33333333,4.33333333 4.31333333,1.33333333 8,1.33333333 L8,1.33333333 C8.22363231,1.33333333 8.44610612,1.3445696 8.66666667,1.36672949 L8.66666667,2.70847693 C8.44668912,2.68076722 8.22407146,2.66666667 8,2.66666667 C5.05448133,2.66666667 2.66666667,5.05448133 2.66666667,8 C2.66666667,10.9455187 5.05448133,13.3333333 8,13.3333333 C10.9455187,13.3333333 13.3333333,10.9455187 13.3333333,8 C13.3333333,7.77592854 13.3192328,7.55331088 13.2915231,7.33333333 L14.6332705,7.33333333 Z M8,11.6666667 C9.55333333,11.6666667 10.8666667,10.6933333 11.4066667,9.33333333 L4.59333333,9.33333333 C5.12666667,10.6933333 6.44666667,11.6666667 8,11.6666667 Z M10.3333333,7.33333333 C10.8856181,7.33333333 11.3333333,6.88561808 11.3333333,6.33333333 C11.3333333,5.78104858 10.8856181,5.33333333 10.3333333,5.33333333 C9.78104858,5.33333333 9.33333333,5.78104858 9.33333333,6.33333333 C9.33333333,6.88561808 9.78104858,7.33333333 10.3333333,7.33333333 L10.3333333,7.33333333 Z M5.66666667,7.33333333 C6.21895142,7.33333333 6.66666667,6.88561808 6.66666667,6.33333333 C6.66666667,5.78104858 6.21895142,5.33333333 5.66666667,5.33333333 C5.11438192,5.33333333 4.66666667,5.78104858 4.66666667,6.33333333 C4.66666667,6.88561808 5.11438192,7.33333333 5.66666667,7.33333333 Z" id="Combined-Shape" fill="#FFFFFF"></path>
|
||||
</g>
|
||||
<g id="Group-15" transform="translate(10.666667, 0.000000)" fill="#FFFFFF">
|
||||
<polygon id="Path" points="3.33333333 2 3.33333333 0 2 0 2 2 0 2 0 3.33333333 2 3.33333333 2 5.33333333 3.33333333 5.33333333 3.33333333 3.33333333 5.33333333 3.33333333 5.33333333 2"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
BIN
assets/public/client/25dac0771e36be5fb9888a3d00672d75.svg
Normal file
|
After Width: | Height: | Size: 641 B |
16
assets/public/client/273ec1aee7edca70e8038dfcb26436b1.svg
Normal file
@ -0,0 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 180 200" width="42" height="33">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1{fill:#aabff2}.cls-3{fill:#7d94df}.cls-4{fill:#23d093}
|
||||
</style>
|
||||
</defs>
|
||||
<path d="M155 190v-25c0-27.5-24.38-50-54.17-50H79.17C49.38 115 25 137.5 25 165v25a36.86 36.86 0 0 0 1.38 10h127.24a36.86 36.86 0 0 0 1.38-10z" class="cls-1"/>
|
||||
<path d="M171.54 70.53c-2.33-7.19-8.77-7.21-15.08-6.9A53.37 53.37 0 0 0 152 49.56c-7.38-14.8-21.8-17.53-37-18.28-24.29-1.2-49.67-1.85-71.63 8.46C33.05 44.59 30 52.63 27.75 58.71c-.41 1.12-.73 2.33-1.08 3.5a8.68 8.68 0 0 0-.89-.14C9.5 61 5.5 74.12 5.71 88.06c.1 6.75.53 15.79 3.52 22 3.16 6.55 10.19 6 16.42 5.69a8.07 8.07 0 0 0 1.62-.26c5.18 14.73 18 20.44 32.92 22.39 22.89 3 48.64 3.81 71.45.12 14.21-2.31 20.56-10.79 23.4-22.27a21.88 21.88 0 0 0 5.5-.86c8-2.32 12.44-5.15 13.29-13.9.92-9.44.65-21.38-2.29-30.44z" class="cls-1"/>
|
||||
<path fill="#cbdaf7" d="M118.24 70.29c-6-4.63-14.35-4.83-21.53-5.27a135.72 135.72 0 0 0-30.13 1.58 9.88 9.88 0 0 0-2.66.86 8.65 8.65 0 0 0-7.12 6.76c-3.48 14.13-.66 32.13 14.47 38 13.11 5.11 33.08 5.06 43.94-4.21 9.79-8.33 14.79-28.57 3.03-37.72z"/>
|
||||
<path d="M79.7 93c-3.19 0-6.39 0-9.58.07a3.58 3.58 0 1 0 .45 7.15c3.19.07 6.39.06 9.59.08 4.71.05 4.24-7.3-.46-7.3zM105.79 94.74c-3.54-.22-7.09-.42-10.64-.57-4.06-.18-4.57 6.87-.48 7.15 3.86.28 7.72.51 11.58.72 2 .1 3.54-2.07 3.42-3.88-.13-2.16-1.9-3.3-3.88-3.42z" class="cls-1"/>
|
||||
<path d="M41 79.85c-8.86 0-7.94 13.71.86 13.71s7.96-13.71-.86-13.71zM138.19 80.48c-9.41 0-8.43 14.57.92 14.57s8.43-14.57-.92-14.57z"/>
|
||||
<path d="M23.76 79c0-2.85-3.45-3.85-5.47-2.65A3.52 3.52 0 0 0 13.74 79a50.9 50.9 0 0 0-.86 17.87c.57 4.23 1.46 9 6.33 9.9a3.69 3.69 0 0 0 4.35-3.8c-.23-7.97.08-15.97.2-23.97zM163 78.54a3 3 0 0 0-2.59-2.4 3.6 3.6 0 0 0-5.09 3.33c.1 7.48.56 15 1.06 22.44a3.79 3.79 0 0 0 2.94 3.36c11.45 3.09 4.91-21.96 3.68-26.73z" class="cls-3"/>
|
||||
<path d="M146.09 23.66a3.32 3.32 0 0 0-5.09 1.11c-2.12 5.69-3.81 11.57-.78 17.28 2.85 5.37 8.84 8.52 11 14.3a3.14 3.14 0 0 0 3.37 2.08c0 .32 0 .63.05.94.1 4.17 6.42 3.65 6.42-.45a49.93 49.93 0 0 0-14.97-35.26z" class="cls-4"/>
|
||||
<path d="M168.37-.37c-28.85 4.24-58.17 2.56-87 6.89a165.24 165.24 0 0 0-20.23 4.27c-6.45 1.81-9.76 4.36-13.7 9.25a135 135 0 0 0-18.82 31.22c-1.35 3.13 3.41 4.92 5.43 2.64a3.86 3.86 0 0 0 1.47-.51c6.06-3.62 14.78-3.39 21.71-3.71 7.62-.37 15.25-.42 22.87-.49 14.15-.12 28.62 0 42.67-2.14a51.46 51.46 0 0 0 30.44-15.8C161 23.2 169 13.89 172 3.48a3 3 0 0 0-3.63-3.85z" class="cls-4"/>
|
||||
<path fill="#ffc239" d="M163 61.88a3 3 0 0 0 1.66-3.81 36.16 36.16 0 0 0-15.15-19.22 30.32 30.32 0 0 0 6.8-6.11 3.23 3.23 0 0 0-.26-4.37 3.13 3.13 0 0 0-1-1.69c-16.7-12.75-34.48-21.46-55.92-16.61a79.13 79.13 0 0 0-29.23 14 39.27 39.27 0 0 0-1.81-21.39A3.34 3.34 0 0 0 63.9.63a44.67 44.67 0 0 0-28.66 45c-6.13-4.65-13.51-7.05-21.08-9.21A3.3 3.3 0 0 0 10.28 39C9.2 50.28 18.2 55.67 27.82 56.88c-5.3 8.69-7.51 19.23-9.34 29.11-2.5 13.57-3 27.42 1 40.75 1 3.27 5.63 2.62 6.35-.42 5.29-22.25 10.44-45 8.85-67.9.6-.85 1.23-1.69 1.92-2.49a3.29 3.29 0 0 0 .57-1 3.77 3.77 0 0 0 2.26-.54A22.51 22.51 0 0 0 52 50.21a3 3 0 0 0 .74.47C69.6 58.6 89 59.87 107.09 56.17a113.52 113.52 0 0 0 12-3.2c8.15 8.13 19.59 12 30.93 11.7-2.67 20.2-5.1 43.6 3.15 62.6 1.08 2.5 4.79 3.12 6.07.37 5.09-10.93 4-25.58 3-37.28a198.84 198.84 0 0 0-2.89-20.16c-.33-1.69-.49-4.27-1.08-6.57 1.07-.23 2.13-.5 3.17-.81a3.11 3.11 0 0 0 1.56-.94z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
16
assets/public/client/296aebeec33f5ce47db9ebbee9ccf1fc.svg
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 18 18" enable-background="new 0 0 18 18" xml:space="preserve">
|
||||
<path fill="#FFFFFF" d="M5.8,0.1l0.8,1.4C5.1,2.3,4.1,3.8,4.1,5.4H9h4.8c0-1.7-1-3.1-2.5-3.9l0.8-1.4c0,0,0-0.1,0-0.1
|
||||
c-0.1,0-0.1,0-0.1,0l-0.8,1.5C10.4,1.2,9.7,1.1,9,1.1c-0.8,0-1.5,0.2-2.1,0.4L6,0c0,0,0-0.1-0.1,0C5.8,0.1,5.8,0.1,5.8,0.1L5.8,0.1z
|
||||
M6.7,2.9c0.3,0,0.5,0.2,0.5,0.5c0,0.3-0.2,0.5-0.5,0.5S6.2,3.6,6.2,3.4S6.4,2.9,6.7,2.9z M11.3,2.9c0.3,0,0.5,0.2,0.5,0.5
|
||||
c0,0.3-0.2,0.5-0.5,0.5s-0.5-0.2-0.5-0.5S11,2.9,11.3,2.9z"/>
|
||||
<path fill="#FFFFFF" d="M4.1,6v7.3c0,0.4,0.4,0.8,0.8,0.8H6v2.5c0,0.6,0.5,1.2,1,1.2c0.6,0,1-0.5,1-1.2v-2.5h1.7v2.5
|
||||
c0,0.6,0.5,1.2,1,1.2c0.6,0,1-0.5,1-1.2v-2.5H13c0.4,0,0.8-0.5,0.8-0.8V6H4.1L4.1,6z"/>
|
||||
<path fill="#FFFFFF" d="M2.5,5.8L2.5,5.8c0.6,0,1,0.5,1,1.2v4.4c0,0.6-0.5,1.2-1,1.2l0,0c-0.6,0-1-0.5-1-1.2V7
|
||||
C1.4,6.4,1.9,5.8,2.5,5.8z"/>
|
||||
<path fill="#FFFFFF" d="M15.4,5.8L15.4,5.8c0.6,0,1,0.5,1,1.2v4.4c0,0.6-0.5,1.2-1,1.2h0c-0.6,0-1-0.5-1-1.2V7
|
||||
C14.4,6.4,14.9,5.8,15.4,5.8z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" style="enable-background:new 0 0 45 45;" xml:space="preserve" version="1.1" id="svg2"><metadata id="metadata8"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata><defs id="defs6"><clipPath id="clipPath16" clipPathUnits="userSpaceOnUse"><path id="path18" d="M 0,36 36,36 36,0 0,0 0,36 Z"/></clipPath></defs><g transform="matrix(1.25,0,0,-1.25,0,45)" id="g10"><g id="g12"><g clip-path="url(#clipPath16)" id="g14"><g transform="translate(36,18)" id="g20"><path id="path22" style="fill:#ffcc4d;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 0,0 c 0,-9.941 -8.059,-18 -18,-18 -9.94,0 -18,8.059 -18,18 0,9.94 8.06,18 18,18 C -8.059,18 0,9.94 0,0"/></g><g transform="translate(14,19)" id="g24"><path id="path26" style="fill:#664500;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M 0,0 C 0,-1.934 -1.119,-3.5 -2.5,-3.5 -3.881,-3.5 -5,-1.934 -5,0 -5,1.933 -3.881,3.5 -2.5,3.5 -1.119,3.5 0,1.933 0,0"/></g><g transform="translate(27,19)" id="g28"><path id="path30" style="fill:#664500;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M 0,0 C 0,-1.934 -1.119,-3.5 -2.5,-3.5 -3.881,-3.5 -5,-1.934 -5,0 -5,1.933 -3.881,3.5 -2.5,3.5 -1.119,3.5 0,1.933 0,0"/></g><g transform="translate(5.999,22.5)" id="g32"><path id="path34" style="fill:#664500;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 0,0 c -0.208,0 -0.419,0.065 -0.599,0.2 -0.442,0.331 -0.531,0.958 -0.2,1.4 3.262,4.35 7.616,4.4 7.8,4.4 0.552,0 1,-0.448 1,-1 C 8.001,4.449 7.556,4.002 7.005,4 6.85,3.998 3.436,3.914 0.801,0.4 0.604,0.138 0.304,0 0,0"/></g><g transform="translate(30.001,22.5)" id="g36"><path id="path38" style="fill:#664500;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M 0,0 C -0.305,0 -0.605,0.138 -0.801,0.4 -3.441,3.921 -6.862,3.999 -7.007,4 -7.557,4.006 -8.001,4.456 -7.998,5.005 -7.995,5.556 -7.551,6 -7.001,6 -6.817,6 -2.464,5.95 0.799,1.6 1.131,1.158 1.041,0.531 0.599,0.2 0.419,0.065 0.209,0 0,0"/></g><g transform="translate(23.4854,7.6211)" id="g40"><path id="path42" style="fill:#664500;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 0,0 c -0.012,0.044 -1.146,4.379 -5.485,4.379 -4.341,0 -5.475,-4.335 -5.485,-4.379 -0.053,-0.213 0.043,-0.431 0.231,-0.544 0.188,-0.112 0.433,-0.086 0.596,0.06 0.01,0.007 1.014,0.863 4.658,0.863 3.589,0 4.617,-0.83 4.656,-0.863 0.095,-0.09 0.219,-0.137 0.344,-0.137 0.084,0 0.169,0.021 0.246,0.064 C -0.043,-0.445 0.055,-0.218 0,0"/></g><g transform="translate(16,5)" id="g44"><path id="path46" style="fill:#5dadec;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 0,0 c 0,-2.762 -2.238,-5 -5,-5 -2.762,0 -5,2.238 -5,5 0,2.762 4,10 5,10 1,0 5,-7.238 5,-10"/></g></g></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
BIN
assets/public/client/2ac1239c26c4ae1d27817a9d7b85dc53.png
Normal file
|
After Width: | Height: | Size: 271 B |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#737F8D" fill-rule="nonzero" d="M15 10h-5v5H8v-5H3V8h5V3h2v5h5"/>
|
||||
<path d="M0 0h18v18H0"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 227 B |
54
assets/public/client/308e587f3a68412f137f7317206e92c2.svg
Normal file
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="113px" height="152px" viewBox="0 0 113 152" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.5.2 (25235) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>empty-mentions-dark</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="General-Playground" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="iOS---Recent-Mentions" sketch:type="MSArtboardGroup" transform="translate(-131.000000, -515.000000)">
|
||||
<g id="empty-mentions-dark" sketch:type="MSLayerGroup" transform="translate(132.000000, 515.000000)">
|
||||
<path d="M58.6209004,47.9075908 C58.6209004,54.2800528 53.449313,59.4455446 47.0693309,59.4455446 C40.6893489,59.4455446 35.5177614,54.2800528 35.5177614,47.9075908 C35.5177614,41.5351287 40.6893489,36.369637 47.0693309,36.369637 C53.449313,36.369637 58.6209004,41.5351287 58.6209004,47.9075908 L58.6209004,47.9075908 Z" id="Stroke-1" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M59.387774,33.0849822 C63.6447785,36.6186059 66.3553794,41.9466323 66.3553794,47.9077413 C66.3553794,50.4797017 65.850626,52.9337743 64.9350386,55.1771538" id="Stroke-3" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M47.0693309,28.6442244 C49.1737256,28.6442244 51.1997704,28.9808317 53.0957345,29.6033795" id="Stroke-5" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M47.0693309,67.1709571 C36.4177794,67.1709571 27.7832323,58.5465875 27.7832323,47.9075908 C27.7832323,39.003802 33.8312323,31.5106535 42.0479139,29.3038944" id="Stroke-7" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M35.5166063,72.3122191 C26.3727857,67.9864898 20.0485525,58.6843908 20.0485525,47.9074403 C20.0485525,33.0019089 32.1460592,20.9186614 47.0691803,20.9186614 C61.9923013,20.9186614 74.0898081,33.0019089 74.0898081,47.9074403 C74.0898081,51.0964304 73.5363372,54.1559947 72.5197991,56.9953347 C72.0085166,58.424536 71.3797094,59.7975525 70.6454314,61.1033479 C66.0177722,69.3349254 57.1938798,74.8962191 47.0691803,74.8962191" id="Stroke-9" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M81.8244879,47.9075908 C81.8244879,67.0796568 66.2640215,82.6217822 47.0693309,82.6217822 C27.8746404,82.6217822 12.314174,67.0796568 12.314174,47.9075908 C12.314174,28.7355248 27.8746404,13.1933993 47.0693309,13.1933993 C60.266748,13.1933993 71.7464969,20.5405677 77.6312682,31.36367" id="Stroke-11" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M87.8101596,35.8178218 C88.9482404,39.6494257 89.5589668,43.7072739 89.5589668,47.9075908 C89.5589668,54.4455974 88.0788592,60.637967 85.4350565,66.1691617" id="Stroke-13" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M4.57964484,47.9075908 C4.57964484,24.4689901 23.6030709,5.4679868 47.0693309,5.4679868 C61.4349632,5.4679868 74.1356628,12.5889109 81.8259946,23.489769" id="Stroke-15" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M47.0693309,90.3471947 C31.9036269,90.3471947 18.5937076,82.4110891 11.0751426,70.4703102" id="Stroke-17" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M52.0255067,76.6315274 L52.0255067,47.8042007 C52.0255067,45.0526495 49.7920359,42.8218112 47.0372377,42.8218112 C44.2819372,42.8218112 42.0489686,45.0526495 42.0489686,47.8042007 L42.0489686,76.6315274 L42.0489686,80.9020752 L42.0489686,91.0665109 C42.0489686,98.0419564 45.5937937,104.540333 51.4624933,108.321772 L51.4629955,108.322273 C52.4800359,108.97793 53.094278,110.104135 53.094278,111.313112 L53.094278,151.99995 L70.9103139,151.99995 L70.9103139,111.313112 C70.9103139,110.104135 71.5245561,108.97793 72.5415964,108.322273 L72.5420987,108.321772 C78.4107982,104.540333 81.9556233,98.0419564 81.9556233,91.0665109 L81.9556233,76.6315274 L52.0255067,76.6315274 Z" id="Fill-19" fill="#424549" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M52.0255067,76.6315274 L52.0255067,47.8042007 C52.0255067,45.0526495 49.7920359,42.8218112 47.0372377,42.8218112 C44.2819372,42.8218112 42.0489686,45.0526495 42.0489686,47.8042007 L42.0489686,76.6315274 L42.0489686,80.9020752 L42.0489686,91.0665109 C42.0489686,98.0419564 45.5937937,104.540333 51.4624933,108.321772 L51.4629955,108.322273 C52.4800359,108.97793 53.094278,110.104135 53.094278,111.313112 L53.094278,151.99995" id="Stroke-21" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M76.9674045,72.8150733 C74.2126063,72.8150733 71.9791354,75.0459116 71.9791354,77.7974627 L71.9791354,74.2387564 C71.9791354,71.4867036 69.7456646,69.256367 66.9908664,69.256367 C64.2355659,69.256367 62.0020951,71.4867036 62.0020951,74.2387564 L62.0020951,71.0999314 C62.0020951,68.3483802 59.7691265,66.1175419 57.013826,66.1175419 C54.2590278,66.1175419 52.025557,68.3483802 52.025557,71.0999314 L52.025557,79.308433 C52.9356197,79.5201294 53.7432251,80.2109017 53.8170547,81.3927894 C53.9079605,82.8410535 53.8532161,84.3008554 53.8230816,85.7586508 C53.9526601,86.5607894 54.0179516,87.365938 54.0470816,88.1740964 C54.103835,88.6476541 54.1359785,89.1187036 54.1831892,89.5566442 C54.2098081,89.5932647 54.2389381,89.6263736 54.263548,89.6650007 C54.4669561,89.9855551 54.6090906,90.3121294 54.7200861,90.6492383 C54.920983,90.9838389 55.1620592,91.2637597 55.4387946,91.5296343 C55.4829919,91.5722746 55.6170906,91.6801294 55.6663103,91.722268 C55.8059336,91.8200898 55.9505794,91.9113901 56.0972341,91.9971723 C56.3900413,92.168235 56.6954045,92.3142152 57.0052879,92.4531723 C57.0083013,92.4531723 57.0108126,92.4536739 57.013826,92.4536739 C59.7691265,92.4536739 62.0020951,90.2228356 62.0020951,87.4712845 L62.0020951,87.0509017 C62.0020951,89.8024528 64.2355659,92.0332911 66.9908664,92.0332911 C69.7456646,92.0332911 71.9791354,89.8024528 71.9791354,87.0509017 L71.9791354,83.4916937 C71.9791354,86.2437465 74.2126063,88.4745848 76.9674045,88.4745848 C79.7222027,88.4745848 81.9556735,86.2437465 81.9556735,83.4916937 L81.9556735,77.7974627 C81.9556735,75.0459116 79.7222027,72.8150733 76.9674045,72.8150733" id="Fill-23" fill="#3B3E42" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M57.0138762,88.4403723 L57.0138762,88.4403723 C54.259078,88.4403723 52.0256072,86.209534 52.0256072,83.4579828 L52.0256072,67.0866297 C52.0256072,64.3350785 54.259078,62.1042403 57.0138762,62.1042403 L57.0138762,62.1042403 C59.7686744,62.1042403 62.0021453,64.3350785 62.0021453,67.0866297 L62.0021453,83.4579828 C62.0021453,86.209534 59.7686744,88.4403723 57.0138762,88.4403723" id="Fill-25" fill="#424549" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M66.9906655,88.0200898 L66.9906655,88.0200898 C64.2358673,88.0200898 62.0023964,85.7892515 62.0023964,83.0377003 L62.0023964,70.2255551 C62.0023964,67.4735023 64.2358673,65.2431657 66.9906655,65.2431657 L66.9906655,65.2431657 C69.7454637,65.2431657 71.9789345,67.4735023 71.9789345,70.2255551 L71.9789345,83.0377003 C71.9789345,85.7892515 69.7454637,88.0200898 66.9906655,88.0200898" id="Fill-27" fill="#424549" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M76.9674045,84.4611327 L76.9674045,84.4611327 C74.2126063,84.4611327 71.9791354,82.2302944 71.9791354,79.4787432 L71.9791354,73.7845122 C71.9791354,71.0324594 74.2126063,68.8016211 76.9674045,68.8016211 L76.9674045,68.8016211 C79.7222027,68.8016211 81.9556735,71.0324594 81.9556735,73.7845122 L81.9556735,79.4787432 C81.9556735,82.2302944 79.7222027,84.4611327 76.9674045,84.4611327" id="Fill-29" fill="#424549" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M57.0138762,88.4403723 L57.0138762,88.4403723 C54.259078,88.4403723 52.0256072,86.209534 52.0256072,83.4579828 L52.0256072,67.0866297 C52.0256072,64.3350785 54.259078,62.1042403 57.0138762,62.1042403 L57.0138762,62.1042403 C59.7686744,62.1042403 62.0021453,64.3350785 62.0021453,67.0866297 L62.0021453,83.4579828 C62.0021453,86.209534 59.7686744,88.4403723 57.0138762,88.4403723 L57.0138762,88.4403723 Z" id="Stroke-31" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M66.9906655,88.0200898 L66.9906655,88.0200898 C64.2358673,88.0200898 62.0023964,85.7892515 62.0023964,83.0377003 L62.0023964,70.2255551 C62.0023964,67.4735023 64.2358673,65.2431657 66.9906655,65.2431657 L66.9906655,65.2431657 C69.7454637,65.2431657 71.9789345,67.4735023 71.9789345,70.2255551 L71.9789345,83.0377003 C71.9789345,85.7892515 69.7454637,88.0200898 66.9906655,88.0200898 L66.9906655,88.0200898 Z" id="Stroke-33" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M76.9674045,84.4611327 L76.9674045,84.4611327 C74.2126063,84.4611327 71.9791354,82.2302944 71.9791354,79.4787432 L71.9791354,73.7845122 C71.9791354,71.0324594 74.2126063,68.8016211 76.9674045,68.8016211 L76.9674045,68.8016211 C79.7222027,68.8016211 81.9556735,71.0324594 81.9556735,73.7845122 L81.9556735,79.4787432 C81.9556735,82.2302944 79.7222027,84.4611327 76.9674045,84.4611327 L76.9674045,84.4611327 Z" id="Stroke-35" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M45.4200682,88.9830073 L45.4200682,88.9830073 C43.1936287,86.7591921 43.1936287,83.1538323 45.4200682,80.9300172 L56.0018081,70.3607498 C58.2282475,68.1369347 61.8378619,68.1369347 64.0643013,70.3607498 L64.0643013,70.3607498 C66.2907408,72.584565 66.2907408,76.1899248 64.0643013,78.4137399 L53.4825614,88.9830073 C51.256122,91.2068224 47.6465076,91.2068224 45.4200682,88.9830073" id="Fill-37" fill="#424549" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M58.059896,92.7776898 C56.9489363,92.6156568 55.9228556,91.9439472 55.3312143,90.9913135 C53.2624789,87.6603564 57.3241112,85.1455842 59.3898332,83.0827987 C60.9477883,81.5261782 62.5062457,79.9700594 64.0642009,78.4134389 C66.2906404,76.1896238 66.2906404,72.584264 64.0642009,70.3604488 C61.8382637,68.1366337 58.2281471,68.1366337 56.0022099,70.3604488 L48.7227121,77.6308647" id="Stroke-39" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M62.0022457,109.485149 L65.7570081,109.485149" id="Stroke-41" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M70.910113,152 L70.910113,111.313162 C70.910113,110.104185 71.5243552,108.977479 72.5413955,108.322323 L72.5424,108.321822 C78.4105973,104.540383 81.9559247,98.0420066 81.9559247,91.0665611 L81.9559247,76.6315776" id="Stroke-43" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M92.9427731,21.3014706 L92.9427731,22.9187908" id="Stroke-45" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M92.9427731,27.4469861 L92.9427731,29.0643063" id="Stroke-47" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M96.8287211,25.1828383 L95.2094924,25.1828383" id="Stroke-49" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M90.6759534,25.1828383 L89.0567247,25.1828383" id="Stroke-51" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M4.57964484,59.8171168 L3.66355516,60.7321267" id="Stroke-53" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M0.915939013,63.4765545 L-0.000150672646,64.3915644" id="Stroke-55" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M4.57964484,64.3914139 L3.66355516,63.476404" id="Stroke-57" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M0.915939013,60.7319762 L-0.000150672646,59.8169663" id="Stroke-59" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M102.233851,78.448103 L101.317761,79.3631129" id="Stroke-61" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M98.5700951,82.1074904 L97.6540054,83.0225003" id="Stroke-63" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M102.233851,83.0223498 L101.317761,82.1073399" id="Stroke-65" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M98.5700951,79.3629624 L97.6540054,78.4479525" id="Stroke-67" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M103.829977,40.5575129 C103.829977,41.6295393 102.960093,42.4983974 101.886802,42.4983974 C100.814013,42.4983974 99.9441291,41.6295393 99.9441291,40.5575129 C99.9441291,39.4854865 100.814013,38.6166284 101.886802,38.6166284 C102.960093,38.6166284 103.829977,39.4854865 103.829977,40.5575129 L103.829977,40.5575129 Z" id="Stroke-69" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M8.53399821,88.0200898 C8.53399821,89.0921162 7.6641148,89.9609743 6.59082332,89.9609743 C5.51803408,89.9609743 4.64815067,89.0921162 4.64815067,88.0200898 C4.64815067,86.9480634 5.51803408,86.0792053 6.59082332,86.0792053 C7.6641148,86.0792053 8.53399821,86.9480634 8.53399821,88.0200898 L8.53399821,88.0200898 Z" id="Stroke-71" stroke="#222426" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M81.821826,38.0165545 C81.821826,38.7309043 81.2417363,39.3103102 80.5265435,39.3103102 C79.8113507,39.3103102 79.231261,38.7309043 79.231261,38.0165545 C79.231261,37.3022046 79.8113507,36.7227987 80.5265435,36.7227987 C81.2417363,36.7227987 81.821826,37.3022046 81.821826,38.0165545" id="Fill-73" fill="#222426" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M106.420642,11.4443459 C106.420642,12.1586957 105.840552,12.7381017 105.12536,12.7381017 C104.410167,12.7381017 103.830077,12.1586957 103.830077,11.4443459 C103.830077,10.729996 104.410167,10.1505901 105.12536,10.1505901 C105.840552,10.1505901 106.420642,10.729996 106.420642,11.4443459" id="Fill-75" fill="#222426" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M111.654457,55.1769531 C111.654457,55.891303 111.074368,56.4707089 110.359175,56.4707089 C109.643982,56.4707089 109.063892,55.891303 109.063892,55.1769531 C109.063892,54.4626033 109.643982,53.8831974 110.359175,53.8831974 C111.074368,53.8831974 111.654457,54.4626033 111.654457,55.1769531" id="Fill-77" fill="#222426" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M17.6359821,1.75577558 C17.6359821,2.47012541 17.0558924,3.04953135 16.3406996,3.04953135 C15.6255067,3.04953135 15.045417,2.47012541 15.045417,1.75577558 C15.045417,1.04142574 15.6255067,0.462019802 16.3406996,0.462019802 C17.0558924,0.462019802 17.6359821,1.04142574 17.6359821,1.75577558" id="Fill-79" fill="#222426" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M18.9312646,92.4535234 C18.9312646,93.1678733 18.3511749,93.7472792 17.6359821,93.7472792 C16.9207892,93.7472792 16.3406996,93.1678733 16.3406996,92.4535234 C16.3406996,91.7391736 16.9207892,91.1597677 17.6359821,91.1597677 C18.3511749,91.1597677 18.9312646,91.7391736 18.9312646,92.4535234" id="Fill-81" fill="#222426" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 17 KiB |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#FFFFFF" d="M21.9544219,11.0460196 C21.2889049,10.6663024 20.563682,10.3793486 19.7963501,10.2029279 C18.9783156,6.6548203 15.7923545,4 12,4 C7.59,4 4,7.59 4,12 C4,15.7924252 6.6549193,18.9784344 10.2031263,19.7963958 C10.3795887,20.5633929 10.6665556,21.2886839 11.046389,21.9544573 C8.74419034,21.7339917 6.5781799,20.7203155 4.92893219,19.0710678 C3.0535684,17.195704 2,14.6521649 2,12 C2,6.4771525 6.4771525,2 12,2 L12,2 C14.6521649,2 17.195704,3.0535684 19.0710678,4.92893219 C20.7202273,6.57809169 21.7338833,8.74395863 21.9544219,11.0460196 Z M11,14.1273464 L11,11 L13,11 L13,11.7576565 C12.1893989,12.4079618 11.50769,13.2127544 11,14.1273464 Z M11,9 L11,7 L13,7 L13,9 L11,9 Z" opacity=".6"/>
|
||||
<rect width="24" height="24"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 888 B |
14
assets/public/client/31dd73caae6b4f9011d95f5b3efc15a1.svg
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="16px" height="12px" viewBox="0 0 16 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.3.3 (12081) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-twitter-status</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Welcome" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Desktop-HD---Compact" sketch:type="MSArtboardGroup" transform="translate(-614.000000, -949.000000)" fill="#FFFFFF">
|
||||
<g id="Group" sketch:type="MSLayerGroup" transform="translate(613.000000, 882.000000)">
|
||||
<path d="M17,68.4205367 C16.4113025,68.6614786 15.7786532,68.824321 15.1146348,68.8975596 C15.7924065,68.522617 16.3128644,67.9289309 16.5579648,67.2215521 C15.9237353,67.5686792 15.2212078,67.8208013 14.4734994,67.9566924 C13.8746772,67.3679212 13.0215663,67 12.0774498,67 C10.2645378,67 8.79475475,68.3563719 8.79475475,70.0293548 C8.79475475,70.2667861 8.8238414,70.4980061 8.87979078,70.7197202 C6.15161491,70.5933891 3.73285782,69.3873291 2.11383738,67.5545284 C1.83128132,68.0019534 1.66940268,68.5223469 1.66940268,69.0775234 C1.66940268,70.1285186 2.24897034,71.0557751 3.12976334,71.5990152 C2.591631,71.5832981 2.08551154,71.447029 1.64289111,71.2201298 C1.64265701,71.2327683 1.64265701,71.2454608 1.64265701,71.2582074 C1.64265701,72.7260035 2.77416877,73.9504271 4.27584769,74.2286905 C4.00037309,74.2979323 3.71038443,74.3349297 3.41097333,74.3349297 C3.19946596,74.3349297 2.99381104,74.3159719 2.79342331,74.2805948 C3.21111233,75.4841703 4.42338783,76.3600086 5.85981199,76.3844755 C4.7363766,77.1969592 3.32096273,77.6812736 1.78305717,77.6812736 C1.51811698,77.6812736 1.2568053,77.6669607 1,77.6389832 C2.45269395,78.4985102 4.17817038,79 6.0319324,79 C12.0697831,79 15.3714986,74.3838634 15.3714986,70.3806407 C15.3714986,70.2492866 15.3683383,70.1186346 15.3620176,69.9887388 C16.0033286,69.5616218 16.5598961,69.0280496 17,68.4205367" id="icon-twitter-status" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
BIN
assets/public/client/322c936a8c8be1b803cd94861bdfa868.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
14
assets/public/client/326d79eb53886c88437e99a3754b1cd0.svg
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="36px" height="30px" viewBox="0 0 36 30" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.3.3 (12081) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>Group</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="welcome-twitter" sketch:type="MSLayerGroup" fill="#738BD7">
|
||||
<g id="Group" sketch:type="MSShapeGroup">
|
||||
<path d="M33,2 L31,6 L34,5 L31,8 L31,8.5 C31,9 30.9,9.6 30.8,10.1 C30.7,14.2 29.4,19.7 24,24 C20.2,27.1 16.2,28 12.8,28 C6.7,28 2,25 2,25 C11,25 11,22 11,22 C9,22 5,18 5,18 C5.3,18.3 5.8,18.4 6.2,18.4 C7.1,18.4 8,18 8,18 C3,15 3,12 3,12 C3.3,12.3 3.8,12.4 4.2,12.4 C5.1,12.4 6,12 6,12 C1,8 4,3 4,3 C5,8 18,10 18,10 L18.2,9.9 C18.1,9.4 18,8.5 18,8 C18,4.4 20.9,2 24.5,2 C26.5,2 28.2,2.9 29.4,4.3 L30,4 L33,2 L33,2 Z M33,0 C32.6,0 32.2,0.1 31.9,0.3 L29.7,1.8 C28.2,0.6 26.4,0 24.5,0 C19.8,0 16.2,3.2 16,7.6 C11.5,6.6 6.4,4.6 6,2.6 C5.8,1.8 5.2,1.2 4.4,1 L4.1,1 C3.4,1 2.8,1.4 2.4,2 C1.4,3.7 0.5,7 2.1,10.3 C1.5,10.7 1.1,11.3 1.1,12 C1.1,12.3 1.2,14.4 3.5,16.8 C3,17.6 3,18.7 3.7,19.4 C4.4,20.1 5.8,21.4 7.3,22.4 C6.2,22.7 4.6,22.9 2.1,22.9 C1.2,22.9 0.4,23.5 0.2,24.3 C-0.1,25.1 0.3,26.1 1,26.5 C1.2,26.6 6.2,29.9 12.8,29.9 C17.4,29.9 21.6,28.4 25.3,25.4 C31.3,20.6 32.7,14.5 32.8,10.2 C32.9,9.7 33,9.2 33,8.7 L35.4,6.3 C35.8,5.9 36,5.4 36,4.8 C36,3.9 35.4,3.2 34.7,2.9 L34.8,2.7 C35.2,1.9 35,0.9 34.3,0.3 C33.9,0.2 33.5,0 33,0 L33,0 L33,0 Z" id="Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
BIN
assets/public/client/330e9ef5f4803d08baae91a861e3264f.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#FFFFFF" d="M16,10.2528087 L16,9 L4,9 L4,11 L14.1279823,11 C14.7114074,10.676233 15.3393223,10.4232983 16,10.2528087 Z M11.7574567,13 L4,13 L4,15 L10.5826987,15 C10.8769599,14.2743353 11.2746938,13.6015805 11.7574567,13 Z M10.0620401,17 L4,17 L4,19 L10.0621141,19 C10.021119,18.67233 10,18.3385783 10,18 C10,17.6613397 10.0210962,17.3275942 10.0620401,17 Z M4,5 L20,5 L20,7 L4,7 L4,5 Z" opacity=".6"/>
|
||||
<rect width="24" height="24"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 589 B |
BIN
assets/public/client/3590df6f2ae2f7202dab15c0bd3aca9a.png
Normal file
|
After Width: | Height: | Size: 268 B |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<rect width="18" height="18"/>
|
||||
<path fill="#FFFFFF" d="M9,2 C12.871,2 16,5.129 16,9 C16,12.871 12.871,16 9,16 C5.129,16 2,12.871 2,9 C2,5.129 5.129,2 9,2 L9,2 Z M11.6925,5.25 L9,7.9425 L6.3075,5.25 L5.25,6.3075 L7.9425,9 L5.25,11.6925 L6.3075,12.75 L9,10.0575 L11.6925,12.75 L12.75,11.6925 L10.0575,9 L12.75,6.3075 L11.6925,5.25 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 478 B |
BIN
assets/public/client/36d4b341723daffd4a372e1b19591da1.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
12
assets/public/client/37ce528f3abf4d735a624309e990acc6.svg
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1"
|
||||
id="svg2" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" sodipodi:docname="Windows_8_Logo.svg" inkscape:version="0.48.0 r9654"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16"
|
||||
enable-background="new 0 0 16 16" xml:space="preserve">
|
||||
<sodipodi:namedview fit-margin-top="0" inkscape:cx="243.44312" inkscape:zoom="2" showguides="true" fit-margin-left="0" pagecolor="#ffffff" id="base" bordercolor="#666666" borderopacity="1.0" showgrid="false" inkscape:cy="-25.868872" inkscape:window-y="-8" fit-margin-bottom="0" inkscape:window-x="-8" inkscape:window-width="1366" inkscape:current-layer="g3763" inkscape:guide-bbox="true" fit-margin-right="0" inkscape:document-units="px" inkscape:window-maximized="1" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="746">
|
||||
</sodipodi:namedview>
|
||||
<path id="path13" sodipodi:nodetypes="cccccccccccccccccccc" inkscape:connector-curvature="0" fill="#738BD7" d="M0.9,2.9l5.8-0.8
|
||||
v5.6l-5.8,0V2.9z M6.7,8.3V14l-5.8-0.8V8.3L6.7,8.3z M7.4,2l7.7-1.1v6.8L7.4,7.7V2z M15.1,8.4v6.7L7.4,14l0-5.6L15.1,8.4z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
32
assets/public/client/3812cc319f8afb89d82187aa07f65e8f.svg
Normal file
|
After Width: | Height: | Size: 20 KiB |
@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<g transform="translate(12 12)">
|
||||
<polygon points="0 0 11 0 11 11 0 11"/>
|
||||
<path fill="#F04747" fill-rule="nonzero" d="M3.20833333,5.04166667 L3.20833333,5.95833333 L7.79166667,5.95833333 L7.79166667,5.04166667 L3.20833333,5.04166667 Z M5.5,0.916666667 C2.97,0.916666667 0.916666667,2.97 0.916666667,5.5 C0.916666667,8.03 2.97,10.0833333 5.5,10.0833333 C8.03,10.0833333 10.0833333,8.03 10.0833333,5.5 C10.0833333,2.97 8.03,0.916666667 5.5,0.916666667 Z M5.5,9.16666667 C3.47875,9.16666667 1.83333333,7.52125 1.83333333,5.5 C1.83333333,3.47875 3.47875,1.83333333 5.5,1.83333333 C7.52125,1.83333333 9.16666667,3.47875 9.16666667,5.5 C9.16666667,7.52125 7.52125,9.16666667 5.5,9.16666667 Z"/>
|
||||
</g>
|
||||
<rect width="24" height="24"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 884 B |
BIN
assets/public/client/3abe9ce5a00cc24bd8aae04bf5968f4c.png
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
BIN
assets/public/client/3bdef1251a424500c1b3a78dea9b7e57.woff
Normal file
18
assets/public/client/3c1cec05bfad03b1495eccf72c38b10c.svg
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="14px" height="14px" viewBox="0 0 14 14" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.3.3 (12081) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-server-status</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Welcome" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Desktop-HD---Compact" sketch:type="MSArtboardGroup" transform="translate(-716.000000, -948.000000)" fill="#FFFFFF">
|
||||
<g id="Group" sketch:type="MSLayerGroup" transform="translate(613.000000, 882.000000)">
|
||||
<g transform="translate(8.000000, 65.000000)" id="icon-server-status" sketch:type="MSShapeGroup">
|
||||
<g transform="translate(95.000000, 1.000000)">
|
||||
<path d="M6.99471698,9.67522659 C8.47108874,9.67522659 9.66792453,8.47748685 9.66792453,7 C9.66792453,5.52251315 8.47108874,4.32477341 6.99471698,4.32477341 C5.51834522,4.32477341 4.32150943,5.52251315 4.32150943,7 C4.32150943,8.47748685 5.51834522,9.67522659 6.99471698,9.67522659 Z M6.99471698,2.67522659 C8.18867925,2.67522659 9.26641509,3.16163142 10.0483019,3.94410876 L11.9396226,2.05135952 C10.6822642,0.782477341 8.92830189,0 6.99471698,0 C3.12754717,0 0,3.14048338 0,7 L2.67320755,7 C2.67320755,4.6102719 4.60679245,2.67522659 6.99471698,2.67522659 Z M11.3267925,7 C11.3267925,9.3897281 9.39320755,11.3247734 7.00528302,11.3247734 C5.81132075,11.3247734 4.73358491,10.8383686 3.94113208,10.0558912 L2.04981132,11.9486405 C3.31773585,13.2175227 5.06113208,14 6.99471698,14 C10.8618868,14 14,10.8595166 14,7 L11.3267925,7 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
BIN
assets/public/client/3fc1e006a5e1857cdaeff54204a3dd72.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
assets/public/client/449cca50c1452b4ace3cbe9bc5ae0fd6.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
assets/public/client/44a7840b2161275358742595c9257e76.png
Normal file
|
After Width: | Height: | Size: 630 B |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#FFF" d="M10 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm9.3073999-3.5066333l1.6724326-1.67243255c.124596-.12459606.39675-.3967501-.0040202-.79752037-.4007703-.40077028-.6769006-.1325925-.8014967-.00799643l-1.6724325 1.67243252-1.636821-1.636821c-.1236964-.12369646-.4297191-.42971917-.8344657-.02497265-.4047465.40474653-.0995039.7115494.0241925.83524585l1.636821 1.63682103-1.6258273 1.6258273c-.1236965.1236965-.4385989.4465514-.0378286.8473217.4007703.4007702.6792282.1223123.8029247-.0013842l1.666248-1.666248 1.6540174 1.6540173c.1241462.1241463.4199216.4183614.8246682.0136149.4047465-.4047466.1097512-.6997418-.014395-.8238881l-1.6540174-1.6540173z"/>
|
||||
<path d="M0 0h24v24H0"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 882 B |
BIN
assets/public/client/4662875160dc4c56954003ebda995414.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><defs><style>.cls-1{fill:#83ddc5;}.cls-2{fill:#fff;}.cls-3{fill:#4f81ff;}</style></defs><circle class="cls-1" cx="24" cy="24" r="20"/><path class="cls-2" d="M32.54,24.25l-1.09-1.08a1.21,1.21,0,0,1,.24-1.9,25.73,25.73,0,0,0,3.75-2.7,3,3,0,0,0-4.25-4.25,24.51,24.51,0,0,0-2.71,3.75,1.22,1.22,0,0,1-1.9.23L25.5,17.22a3.48,3.48,0,0,0-4.92,0l-1.93,1.92,12,12,1.93-1.92A3.51,3.51,0,0,0,32.54,24.25Z"/><path class="cls-3" d="M15.55,22.24l0,0a3,3,0,0,1-4.26-.14l-.6-.6a.46.46,0,0,0-.65.65l.32.33,2.28,2.28.2.2,8.47,8.47a4.92,4.92,0,0,0,7,0l2.89-2.89-12-12Z"/><circle class="cls-1" cx="33.08" cy="16.69" r="1.18"/><path class="cls-3" d="M18.27,42.36a4.64,4.64,0,1,1-9.27,0c0-2.56,4.64-8.11,4.64-8.11S18.27,39.8,18.27,42.36Z"/></svg>
|
||||
|
After Width: | Height: | Size: 816 B |
33
assets/public/client/481aa700fab464f2332ca9b5f4eb6ba4.svg
Normal file
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="28px" height="40px" viewBox="0 0 28 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-file-small-code</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-1">
|
||||
<feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
||||
<feGaussianBlur stdDeviation="0" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.07 0" in="shadowBlurOuter1" type="matrix" result="shadowMatrixOuter1"></feColorMatrix>
|
||||
<feMerge>
|
||||
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
||||
<feMergeNode in="SourceGraphic"></feMergeNode>
|
||||
</feMerge>
|
||||
</filter>
|
||||
</defs>
|
||||
<g id="Drag-&-Drop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="Desktop-HD---Drag-&-Drop,-Small-Icons---Dark" sketch:type="MSArtboardGroup" transform="translate(-470.000000, -524.000000)">
|
||||
<g id="Group" sketch:type="MSLayerGroup" transform="translate(404.000000, 526.000000)">
|
||||
<g id="icon-file-small-code" transform="translate(68.000000, 0.000000)">
|
||||
<g id="Group" stroke-width="2" sketch:type="MSShapeGroup">
|
||||
<path d="M0,3.00741988 C0,1.34646775 1.34252415,0 2.99998588,0 L15.1166483,0 C17.0807354,0 24,6.91885725 24,8.87457593 L24,33.0035574 C24,34.6584469 22.6582294,36 21.0089096,36 L2.99109042,36 C1.33915679,36 0,34.6544607 0,32.9925801 L0,3.00741988 Z" id="Rectangle-113" stroke="#7289DA" fill="#F4F6FC"></path>
|
||||
<path d="M17,1.09677336 C17,0.542040316 17.3147964,0.407097791 17.7133118,0.80556379 L23.1952031,6.28677654 C23.5891543,6.68067898 23.4552279,7 22.9039575,7 L18.0045574,7 C17.4497557,7 17,6.54676916 17,5.99556698 L17,1.09677336 Z" id="Path" stroke="#7289DA" fill="#F4F6FC" filter="url(#filter-1)"></path>
|
||||
<path d="M13,3 L4.49710104,3 C3.67027497,3 3,3.66579723 3,4.5 L3,6" id="Path-156" stroke="#C9D2F0" stroke-linecap="round" stroke-linejoin="round" opacity="0.6"></path>
|
||||
</g>
|
||||
<text id="{}" opacity="0.800000012" sketch:type="MSTextLayer" font-family="Source Code Pro" font-size="12" font-weight="420" sketch:alignment="middle" line-spacing="18" letter-spacing="-0.300000012" fill="#697EC4">
|
||||
<tspan x="5.2690141" y="26.4705882">{}</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path d="M0 0h12v12H0"/>
|
||||
<path fill="#FFF" d="M9.5 3.205L8.795 2.5 6 5.295 3.205 2.5l-.705.705L5.295 6 2.5 8.795l.705.705L6 6.705 8.795 9.5l.705-.705L6.705 6"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 284 B |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#FFFFFF" d="M15.6986306,10.3369503 C15.0466265,10.5329281 14.4293569,10.8099797 13.858638,11.1564037 C13.7352566,10.9546296 13.5857106,10.7642215 13.41,10.59 C13,10.2 13,9.56 13.41,9.17 C13.8,8.78 14.44,8.78 14.83,9.17 C15.1836989,9.52369885 15.4732424,9.91753591 15.6986306,10.3369503 Z M10.3963349,20.490347 C8.46774279,21.6909958 5.89421345,21.4542135 4.22,19.78 C2.27,17.83 2.27,14.66 4.22,12.71 L5.71,11.22 C5.7,12.04 5.83,12.86 6.11,13.65 L5.64,14.12 C4.46,15.29 4.46,17.19 5.64,18.36 C6.81,19.54 8.71,19.54 9.88,18.36 L10.003444,18.236556 C10.0263121,19.0209956 10.1625359,19.777571 10.3963349,20.490347 Z M10.8572807,14.3964222 C10.8106748,14.4884942 10.765797,14.5815879 10.7226904,14.6756607 C10.6846641,14.7302695 10.640434,14.7820262 10.59,14.83 C10.2,15.22 9.56,15.22 9.17,14.83 C7.22,12.88 7.22,9.71 9.17,7.76 L12.71,4.22 C14.66,2.27 17.83,2.27 19.78,4.22 C21.4541454,5.89414536 21.6909765,8.46753345 20.4904935,10.3960996 C19.7787637,10.1627138 19.0230638,10.0265776 18.2390609,10.0035122 L18.36,9.88 C19.54,8.71 19.54,6.81 18.36,5.64 C17.19,4.46 15.29,4.46 14.12,5.64 L10.59,9.17 C9.41,10.34 9.41,12.24 10.59,13.41 C10.8691393,13.6755228 10.9582329,14.0569271 10.8572807,14.3964222 Z" opacity=".6"/>
|
||||
<rect width="24" height="24"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<rect width="24" height="24"/>
|
||||
<path fill="#FFFFFF" d="M7,4.4408921e-16 C8.65685425,0 10,1.34314575 10,3 L10,9 C10,10.6568542 8.65685425,12 7,12 C5.34314575,12 4,10.6568542 4,9 L4,3 C4,1.34314575 5.34314575,4.4408921e-16 7,0 L7,4.4408921e-16 Z M14,9 C14,12.53 11.39,15.44 8,15.93 L8,19 L6,19 L6,15.93 C2.61,15.44 0,12.53 0,9 L2,9 C2,11.7614237 4.23857625,14 7,14 C9.76142375,14 12,11.7614237 12,9 L14,9 L14,9 Z" transform="translate(5 3)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 585 B |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path d="M0 0h18v18H0z"/>
|
||||
<path fill="#FFF" d="M3.6009148 7.20297313c0-1.99313894 1.6089194-3.60205832 3.60205833-3.60205832 1.99313893 0 3.60205827 1.6089194 3.60205827 3.60205834 0 1.99313893-1.60891934 3.60205827-3.60205827 3.60205827-1.99313894 0-3.60205832-1.60891933-3.60205832-3.60205826zm8.4048028 3.60205827h-.6323614l-.2241281-.2161235c.7844483-.9125214 1.2567182-2.09719835 1.2567182-3.38593477C12.4059463 4.32933105 10.0766152 2 7.20297313 2 4.32933105 2 2 4.32933105 2 7.20297313c0 2.87364207 2.32933105 5.20297317 5.20297313 5.20297317 1.28873642 0 2.47341338-.4722699 3.38593477-1.2567182l.2161235.2241281v.6323614L14.8073185 16 16 14.8073185l-3.7897462-3.7973409-.2045362-.2049462z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 824 B |
BIN
assets/public/client/4db0790f7a81e49025d7fbfb9aeb182c.png
Normal file
|
After Width: | Height: | Size: 458 B |
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path d="M7.970563-6.99999975L24.94112575 9.970563 7.970563 26.94112575-8.99999975 9.970563"/>
|
||||
<path fill="#99AAB5" d="M7.970563 12.79899012l6.36396103-6.36396103-2.82842712-2.82842716L5.1421359 9.970563l-.3599137-.3599137c-.18605725-.18605725-.5054843-.18890185-.70074648.0063603-.18955157.18955158-.19810974.50899704-.0063603.7007465l3.5482545 3.5482545c.18605727.18605725.50548433.18890186.7007465-.0063603.18955156-.18955157.19810974-.50899704.0063603-.7007465l-.3599137-.35991368zm7.7781746-4.94974746l.70710677.70710678 1.41421357-1.41421356L10.79899012.07106806 9.38477656 1.48528163l.70710678.70710678L4.4350291 7.8492427H1.60660196L.1923884 9.26345622l3.67695527 3.67695526-2.82842713 2.82842713 1.13137086 1.1313709 2.8284271-2.82842713 3.67695526 3.67695526 1.41421356-1.41421356V13.5060969l5.65685425-5.65685424z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 951 B |
BIN
assets/public/client/4e51af83c4879cf313ad553bdc20dcf7.png
Normal file
|
After Width: | Height: | Size: 55 KiB |
30
assets/public/client/4f004ac9be168ac6ee18fc442a52ab53.svg
Normal file
@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 130 36" style="enable-background:new 0 0 130 36;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g>
|
||||
<ellipse class="st0" cx="19.6" cy="17.1" rx="1.9" ry="2"/>
|
||||
<ellipse class="st0" cx="12.8" cy="17.1" rx="1.9" ry="2"/>
|
||||
<path class="st0" d="M28.5,0H3.8C1.7,0,0,1.7,0,3.7v24.3c0,2.1,1.7,3.7,3.8,3.7h21l-1-3.3l2.4,2.1l2.2,2l4,3.4v-7.9v-1.8V3.7
|
||||
C32.3,1.7,30.6,0,28.5,0z M21.4,23.5c0,0-0.7-0.8-1.2-1.5c2.4-0.7,3.3-2.1,3.3-2.1c-0.8,0.5-1.5,0.8-2.1,1.1
|
||||
c-0.9,0.4-1.8,0.6-2.7,0.8c-1.8,0.3-3.4,0.2-4.8,0c-1.1-0.2-2-0.5-2.7-0.8c-0.4-0.2-0.9-0.4-1.4-0.6c-0.1,0-0.1-0.1-0.2-0.1
|
||||
c0,0-0.1,0-0.1,0c-0.3-0.2-0.5-0.3-0.5-0.3s0.9,1.4,3.2,2.1c-0.6,0.7-1.2,1.5-1.2,1.5c-4.1-0.1-5.6-2.7-5.6-2.7
|
||||
c0-5.8,2.7-10.5,2.7-10.5c2.7-2,5.2-1.9,5.2-1.9l0.2,0.2C10.2,9.5,8.7,11,8.7,11s0.4-0.2,1.1-0.5c2-0.8,3.5-1.1,4.2-1.1
|
||||
c0.1,0,0.2,0,0.3,0c1.1-0.1,2.4-0.2,3.7,0c1.8,0.2,3.6,0.7,5.6,1.7c0,0-1.5-1.4-4.6-2.3l0.3-0.3c0,0,2.5-0.1,5.2,1.9
|
||||
c0,0,2.7,4.7,2.7,10.5C27.1,20.8,25.5,23.4,21.4,23.5z"/>
|
||||
</g>
|
||||
<path class="st0" d="M45.2,7.8h-6.1v6.8l4.1,3.6v-6.6h2.2c1.4,0,2.1,0.7,2.1,1.7v5c0,1-0.6,1.8-2.1,1.8h-6.3v3.8h6.1
|
||||
c3.3,0,6.4-1.6,6.4-5.3v-5.4C51.6,9.4,48.5,7.8,45.2,7.8z M77.4,18.6v-5.6c0-2,3.7-2.5,4.8-0.5l3.4-1.3c-1.3-2.9-3.8-3.7-5.8-3.7
|
||||
c-3.3,0-6.5,1.9-6.5,5.5v5.6c0,3.7,3.2,5.5,6.5,5.5c2.1,0,4.5-1,5.9-3.6L82,18.9C81.1,21.1,77.4,20.6,77.4,18.6z M66.2,13.8
|
||||
c-1.3-0.3-2.1-0.7-2.2-1.5c0.1-1.9,3-1.9,4.7-0.1l2.7-2c-1.7-2-3.6-2.6-5.6-2.6c-3,0-5.9,1.7-5.9,4.8c0,3.1,2.4,4.7,5.1,5.1
|
||||
c1.3,0.2,2.8,0.7,2.8,1.6c-0.1,1.7-3.7,1.6-5.4-0.3l-2.6,2.4c1.5,1.9,3.6,2.9,5.6,2.9c3,0,6.3-1.7,6.5-4.8
|
||||
C72,15.3,69.1,14.3,66.2,13.8z M53.8,23.9H58V7.8h-4.1V23.9z M123.6,7.8h-6.1v6.8l4.1,3.6v-6.6h2.2c1.4,0,2.1,0.7,2.1,1.7v5
|
||||
c0,1-0.6,1.8-2.1,1.8h-6.3v3.8h6.1c3.3,0,6.4-1.6,6.4-5.3v-5.4C130,9.4,126.9,7.8,123.6,7.8z M93.5,7.6c-3.4,0-6.8,1.8-6.8,5.5v5.5
|
||||
c0,3.7,3.4,5.5,6.8,5.5c3.4,0,6.8-1.8,6.8-5.5v-5.5C100.3,9.4,96.9,7.6,93.5,7.6z M96.2,18.6c0,1.2-1.3,1.8-2.6,1.8
|
||||
c-1.3,0-2.7-0.6-2.7-1.8v-5.5c0-1.2,1.3-1.8,2.6-1.8c1.3,0,2.7,0.6,2.7,1.8V18.6z M115.2,13.1c-0.1-3.8-2.7-5.3-6.1-5.3h-6.6v16.1
|
||||
h4.2v-5.1h0.7l3.8,5.1h5.2l-4.5-5.5C114,17.8,115.2,16.1,115.2,13.1z M109.2,15.3h-2.4v-3.7h2.4C111.8,11.6,111.8,15.3,109.2,15.3z"
|
||||
/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path d="M0 0h18v18H0z"/>
|
||||
<path d="M0 0h18v18H0z"/>
|
||||
<path fill="#737F8D" fill-rule="nonzero" d="M3 2h4v4H3V2zm8 5h5v4h-5V7zm0 5h5v4h-5v-4zm-1-2H6v3h4v2H4V7h2v1h4v2z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 296 B |
@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><defs><style>.cls-1{fill:#4f81ff;}.cls-2{fill:#2f3136;}.cls-3{fill:#ffd836;}.cls-4,.cls-6{fill:#fff;}.cls-5{fill:#f47fff;}.cls-6{font-size:10.71px;font-family:Whitney-Bold, Whitney;font-weight:700;}</style></defs><circle class="cls-1" cx="24" cy="24" r="20"/><rect class="cls-2" x="15.5" y="11" width="17" height="26" rx="1.94"/><rect class="cls-2" x="17.39" y="13" width="13.22" height="22"/><path class="cls-2" d="M25.51,26.42,26,27a2.61,2.61,0,0,0,2.18-1.09,9.53,9.53,0,0,0-1-4.16,3.53,3.53,0,0,0-2-.75l-.1.11a4.84,4.84,0,0,1,1.77.91,5.58,5.58,0,0,0-2.15-.68,5.75,5.75,0,0,0-1.44,0H23.1a5.46,5.46,0,0,0-1.62.45l-.42.21a4.9,4.9,0,0,1,1.88-.94L22.86,21a3.53,3.53,0,0,0-2,.75,9.53,9.53,0,0,0-1,4.16A2.59,2.59,0,0,0,22,27l.48-.59a2.19,2.19,0,0,1-1.25-.85l.2.13,0,0,.07,0c.18.1.36.18.52.25a6.41,6.41,0,0,0,1.05.3,5,5,0,0,0,1.85,0A4.88,4.88,0,0,0,26,26a4.26,4.26,0,0,0,.82-.42A2.25,2.25,0,0,1,25.51,26.42Zm-2.85-1.17a.8.8,0,1,1,.73-.79A.76.76,0,0,1,22.66,25.25Zm2.61,0a.8.8,0,1,1,.73-.79A.77.77,0,0,1,25.27,25.25Z"/><rect class="cls-3" x="15.5" y="11" width="17" height="26" rx="1.94"/><rect class="cls-4" x="17.39" y="13" width="13.22" height="22"/><path class="cls-1" d="M25.51,26.42,26,27a2.61,2.61,0,0,0,2.18-1.09,9.53,9.53,0,0,0-1-4.16,3.53,3.53,0,0,0-2-.75l-.1.11a4.84,4.84,0,0,1,1.77.91,5.58,5.58,0,0,0-2.15-.68,5.75,5.75,0,0,0-1.44,0H23.1a5.46,5.46,0,0,0-1.62.45l-.42.21a4.9,4.9,0,0,1,1.88-.94L22.86,21a3.53,3.53,0,0,0-2,.75,9.53,9.53,0,0,0-1,4.16A2.59,2.59,0,0,0,22,27l.48-.59a2.19,2.19,0,0,1-1.25-.85l.2.13,0,0,.07,0c.18.1.36.18.52.25a6.41,6.41,0,0,0,1.05.3,5,5,0,0,0,1.85,0A4.88,4.88,0,0,0,26,26a4.26,4.26,0,0,0,.82-.42A2.25,2.25,0,0,1,25.51,26.42Zm-2.85-1.17a.8.8,0,1,1,.73-.79A.76.76,0,0,1,22.66,25.25Zm2.61,0a.8.8,0,1,1,.73-.79A.77.77,0,0,1,25.27,25.25Z"/><circle class="cls-5" cx="41" cy="11" r="7"/><text class="cls-6" transform="translate(38.63 14.61)">1</text></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
|
||||
<path fill="#99AAB5" d="M8,0.9C4.1,0.9,0.9,4.1,0.9,8c0,3.9,3.2,7.1,7.1,7.1s7.1-3.2,7.1-7.1C15.1,4.1,11.9,0.9,8,0.9z M8.7,8.4
|
||||
l2.7,4h-0.8L8.8,9.7L8,8.6L7.2,9.7l-1.9,2.8H4.6l2.7-4L7.6,8L7.3,7.6l-2.7-4h0.8l1.9,2.8L8,7.4l0.8-1.1l1.9-2.8h0.8l-2.7,4L8.4,8
|
||||
L8.7,8.4z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 709 B |
3
assets/public/client/5975ff2a26b9e9ebe5be.js
Normal file
|
After Width: | Height: | Size: 9.1 KiB |
2
assets/public/client/5ca4d4e888e24c4376b2.js
Normal file
BIN
assets/public/client/5ccabf62108d5a8074ddd95af2211727.png
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
assets/public/client/5d69e29f0d71aaa04ed9725100199b4e.png
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
BIN
assets/public/client/5eed3f20bc3c75fd5ff63c60df8f679d.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
22
assets/public/client/5fb477ca84edd15d9a2888ac28365acd.svg
Normal file
@ -0,0 +1,22 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="272" height="310" viewBox="0 0 272 310">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<g transform="translate(0 64)">
|
||||
<path fill="#1F2225" d="M265.95466,246 L6.04534005,246 C2.70629723,246 0,243.365938 0,240.11821 L0,1.42108547e-14 L272,1.42108547e-14 L272,240.11821 C272,243.365938 269.292695,246 265.95466,246"/>
|
||||
<g transform="translate(10 10)">
|
||||
<path fill="#4F545C" d="M145.999709,192 L248.000291,192 C250.21013,192 252,193.791 252,196 L252,222 C252,224.209 250.21013,226 248.000291,226 L145.999709,226 C143.79087,226 142,224.209 142,222 L142,196 C142,193.791 143.79087,192 145.999709,192"/>
|
||||
<path fill="#36393F" d="M5.02234705,198 L130.977653,198 C132.648003,198 134,199.343611 134,201.001364 L134,216.998636 C134,218.656389 132.648003,220 130.977653,220 L5.02234705,220 C3.35300403,220 2,218.656389 2,216.998636 L2,201.001364 C2,199.343611 3.35300403,198 5.02234705,198"/>
|
||||
<path fill="#72767D" d="M1.99557697,0 L132.004423,0 C133.105982,0 134,0.977543413 134,2.18201655 L134,9.81798345 C134,11.0235476 133.105982,12 132.004423,12 L1.99557697,12 C0.894018481,12 0,11.0235476 0,9.81798345 L0,2.18201655 C0,0.977543413 0.894018481,0 1.99557697,0"/>
|
||||
<path fill="#36393F" d="M27.020769 16L58.979231 16C60.0946955 16 61 16.9775434 61 18.1820165L61 25.8179835C61 27.0235476 60.0946955 28 58.979231 28L27.020769 28C25.9053045 28 25 27.0235476 25 25.8179835L25 18.1820165C25 16.9775434 25.9053045 16 27.020769 16M67 16L159.966 16C161.07 16 161.966 16.9775434 161.966 18.1820165L161.966 25.8179835C161.966 27.0235476 161.07 28 159.966 28L67 28C65.896 28 65 27.0235476 65 25.8179835L65 18.1820165C65 16.9775434 65.896 16 67 16M243.998202 17L250.001798 17C251.104806 17 252 17.8146195 252 18.8183471L252 25.1816529C252 26.1862897 251.104806 27 250.001798 27L243.998202 27C242.895194 27 242 26.1862897 242 25.1816529L242 18.8183471C242 17.8146195 242.895194 17 243.998202 17M229.998401 17L236.001599 17C237.104716 17 238 17.8146195 238 18.8183471L238 25.1816529C238 26.1862897 237.104716 27 236.001599 27L229.998401 27C228.895284 27 228 26.1862897 228 25.1816529L228 18.8183471C228 17.8146195 228.895284 17 229.998401 17M27.0228199 32L86.9771801 32C88.0947881 32 89 32.9775434 89 34.1820165L89 41.8179835C89 43.0235476 88.0947881 44 86.9771801 44L27.0228199 44C25.9062233 44 25 43.0235476 25 41.8179835L25 34.1820165C25 32.9775434 25.9062233 32 27.0228199 32M26.971322 48L65.028678 48C66.1178334 48 67 48.9775434 67 50.1820165L67 57.8179835C67 59.0235476 66.1178334 60 65.028678 60L26.971322 60C25.8831522 60 25 59.0235476 25 57.8179835L25 50.1820165C25 48.9775434 25.8831522 48 26.971322 48M94.9725892 32L139.027411 32C140.11628 32 141 32.9775434 141 34.1820165L141 41.8179835C141 43.0235476 140.11628 44 139.027411 44L94.9725892 44C93.88372 44 93 43.0235476 93 41.8179835L93 34.1820165C93 32.9775434 93.88372 32 94.9725892 32M243.998202 33L250.001798 33C251.104806 33 252 33.8146195 252 34.8183471L252 41.1816529C252 42.1862897 251.104806 43 250.001798 43L243.998202 43C242.895194 43 242 42.1862897 242 41.1816529L242 34.8183471C242 33.8146195 242.895194 33 243.998202 33"/>
|
||||
<path fill="#B9BBBE" d="M15.0005455 16L15.0005455 16C18.3139376 16 21 18.6860624 21 21.9994545 21 25.3139376 18.3139376 28 15.0005455 28 11.6860624 28 9 25.3139376 9 21.9994545 9 18.6860624 11.6860624 16 15.0005455 16M15.0005455 32L15.0005455 32C18.3139376 32 21 34.6860624 21 37.9994545 21 41.3139376 18.3139376 44 15.0005455 44 11.6860624 44 9 41.3139376 9 37.9994545 9 34.6860624 11.6860624 32 15.0005455 32M15.0005455 48L15.0005455 48C18.3139376 48 21 50.6860624 21 53.9994545 21 57.3139376 18.3139376 60 15.0005455 60 11.6860624 60 9 57.3139376 9 53.9994545 9 50.6860624 11.6860624 48 15.0005455 48"/>
|
||||
<path fill="#36393F" d="M243.998202,49 L250.001798,49 C251.104806,49 252,49.8146195 252,50.8183471 L252,57.1816529 C252,58.1862897 251.104806,59 250.001798,59 L243.998202,59 C242.895194,59 242,58.1862897 242,57.1816529 L242,50.8183471 C242,49.8146195 242.895194,49 243.998202,49"/>
|
||||
<path fill="#72767D" d="M1.99180999 68L150.00819 68C151.107669 68 152 68.9775434 152 70.1820165L152 77.8179835C152 79.0235476 151.107669 80 150.00819 80L1.99180999 80C.892330876 80 0 79.0235476 0 77.8179835L0 70.1820165C0 68.9775434.892330876 68 1.99180999 68M1.99025424 88L182.009746 88C183.109361 88 184 88.9774545 184 90.1818182L184 97.8181818C184 99.0225455 183.109361 100 182.009746 100L1.99025424 100C.891633901 100 0 99.0225455 0 97.8181818L0 90.1818182C0 88.9774545.891633901 88 1.99025424 88"/>
|
||||
<path fill="#4F545C" d="M2.00298976,116 L133.99701,116 C135.102661,116 136,116.977543 136,118.182017 L136,125.817983 C136,127.023548 135.102661,128 133.99701,128 L2.00298976,128 C0.897339411,128 0,127.023548 0,125.817983 L0,118.182017 C0,116.977543 0.897339411,116 2.00298976,116"/>
|
||||
<path fill="#36393F" d="M26.9732762 132L93.0267238 132C94.1169589 132 95 132.977543 95 134.182017L95 141.817983C95 143.023548 94.1169589 144 93.0267238 144L26.9732762 144C25.8840277 144 25 143.023548 25 141.817983L25 134.182017C25 132.977543 25.8840277 132 26.9732762 132M26.9924979 148L155.007502 148C156.108357 148 157 148.977543 157 150.182017L157 157.817983C157 159.023548 156.108357 160 155.007502 160L26.9924979 160C25.8926391 160 25 159.023548 25 157.817983L25 150.182017C25 148.977543 25.8926391 148 26.9924979 148M27.022756 164L54.977244 164C56.0938053 164 57 164.977543 57 166.182017L57 173.817983C57 175.023548 56.0938053 176 54.977244 176L27.022756 176C25.9061947 176 25 175.023548 25 173.817983L25 166.182017C25 164.977543 25.9061947 164 27.022756 164"/>
|
||||
<path fill="#B9BBBE" d="M15.0005455 132L15.0005455 132C18.3139376 132 21 134.686062 21 137.999454 21 141.313938 18.3139376 144 15.0005455 144 11.6860624 144 9 141.313938 9 137.999454 9 134.686062 11.6860624 132 15.0005455 132M15.0005455 148L15.0005455 148C18.3139376 148 21 150.686062 21 153.999454 21 157.313938 18.3139376 160 15.0005455 160 11.6860624 160 9 157.313938 9 153.999454 9 150.686062 11.6860624 148 15.0005455 148M15.0005455 164L15.0005455 164C18.3139376 164 21 166.686062 21 169.999454 21 173.313938 18.3139376 176 15.0005455 176 11.6860624 176 9 173.313938 9 169.999454 9 166.686062 11.6860624 164 15.0005455 164"/>
|
||||
<path fill="#36393F" d="M73.9800755,48 L166.019925,48 C167.112926,48 168,48.9775434 168,50.1820165 L168,57.8179835 C168,59.0235476 167.112926,60 166.019925,60 L73.9800755,60 C72.8870738,60 72,59.0235476 72,57.8179835 L72,50.1820165 C72,48.9775434 72.8870738,48 73.9800755,48"/>
|
||||
</g>
|
||||
</g>
|
||||
<path fill="#738AD6" d="M272,64 L0,64 L0,6.01928051 C0,2.69563445 2.70629723,0 6.04534005,0 L265.95466,0 C269.292695,0 272,2.69563445 272,6.01928051 L272,64 Z"/>
|
||||
<path fill="#FFFFFF" d="M20.007 14C18 14 16 16 16 18.752L16 45C16 48 18 49.007 20.007 49.007L40 49.007C40.665 49.007 41.6021 47.8696 41.4171 47.2296L41 45 48 51C49 52 50 51.858 50 51L50 18C50 16 49 14 46 14L20.007 14zM210.028855 18L259.971145 18C261.092087 18 262 18.9775434 262 20.1820165L262 27.8179835C262 29.0235476 261.092087 30 259.971145 30L210.028855 30C208.908927 30 208 29.0235476 208 27.8179835L208 20.1820165C208 18.9775434 208.908927 18 210.028855 18M199.992497 34L260.007503 34C261.108358 34 262 34.9775434 262 36.1820165L262 43.8179835C262 45.0235476 261.108358 46 260.007503 46L199.992497 46C198.892639 46 198 45.0235476 198 43.8179835L198 36.1820165C198 34.9775434 198.892639 34 199.992497 34"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.3 KiB |
83
assets/public/client/616e078b351d0df460971441949c53a3.svg
Normal file
@ -0,0 +1,83 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="184" height="110" viewBox="0 0 184 110" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<polygon id="a" points="0 107 182 107 182 .383 0 .383"/>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<g transform="translate(1 1)">
|
||||
<g stroke="#1E2126" stroke-width="2" transform="translate(9 105.617)" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M138.4623.8503L.7103.8503M146.1146.8503L142.7986.8503"/>
|
||||
</g>
|
||||
<polygon fill="#E4E9F8" points="67.788 25.389 71.963 25.389 71.963 13.836 67.788 13.836"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="67.788 25.389 71.963 25.389 71.963 13.836 67.788 13.836" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<polygon fill="#7687B2" points="58.049 14.487 81.703 14.487 81.703 6.883 58.049 6.883"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="58.049 14.487 81.703 14.487 81.703 6.883 58.049 6.883" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<polygon fill="#FFFFFF" points="64.385 16.176 75.367 16.176 75.367 5.194 64.385 5.194"/>
|
||||
<g transform="translate(0 .617)">
|
||||
<path fill="#7687B2" d="M72.3109,10.0681 C72.3109,11.4131 71.2199,12.5041 69.8749,12.5041 C68.5309,12.5041 67.4409,11.4131 67.4409,10.0681 C67.4409,8.7231 68.5309,7.6331 69.8749,7.6331 C71.2199,7.6331 72.3109,8.7231 72.3109,10.0681 Z"/>
|
||||
<path stroke="#1E2126" stroke-width="2" d="M72.4105,10.0681 C72.4105,11.4681 71.2755,12.6021 69.8755,12.6021 C68.4755,12.6021 67.3415,11.4681 67.3415,10.0681 C67.3415,8.6691 68.4755,7.5341 69.8755,7.5341 C71.2755,7.5341 72.4105,8.6691 72.4105,10.0681 Z" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<mask id="b" fill="white">
|
||||
<use xlink:href="#a"/>
|
||||
</mask>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="64.385 15.559 75.367 15.559 75.367 4.577 64.385 4.577" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="62.223 106 98.4 106 98.4 101.13 62.223 101.13" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="62.223 106 98.4 106 98.4 101.13 62.223 101.13" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="59.439 103.189 83.79 103.189 83.79 78.839 59.439 78.839" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="59.439 103.189 83.79 103.189 83.79 78.839 59.439 78.839" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="49.7 106 91.443 106 91.443 101.13 49.7 101.13" mask="url(#b)"/>
|
||||
<polyline stroke="#1E2126" stroke-width="2" points="73.027 101.13 91.443 101.13 91.443 106 49.7 106 49.7 101.13 65.951 101.13" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon fill="#FFFFFF" points="1 91.711 140.143 91.711 140.143 19.357 1 19.357" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="1 91.711 140.143 91.711 140.143 19.357 1 19.357" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon fill="#7687B2" points="7.957 84.753 133.186 84.753 133.186 26.314 7.957 26.314" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="7.957 84.753 133.186 84.753 133.186 26.314 7.957 26.314" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="36.407 103.218 41.973 103.218 41.973 97.652 36.407 97.652" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="44.756 103.218 50.322 103.218 50.322 97.652 44.756 97.652" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="53.104 103.218 58.669 103.218 58.669 97.652 53.104 97.652" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="61.453 103.218 92.064 103.218 92.064 97.652 61.453 97.652" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="111.545 103.218 117.11 103.218 117.11 97.652 111.545 97.652" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="103.196 103.218 108.761 103.218 108.761 97.652 103.196 97.652" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="94.847 103.218 100.412 103.218 100.412 97.652 94.847 97.652" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="36.407 103.218 41.973 103.218 41.973 97.652 36.407 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="44.756 103.218 50.322 103.218 50.322 97.652 44.756 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="53.104 103.218 58.669 103.218 58.669 97.652 53.104 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="61.453 103.218 92.064 103.218 92.064 97.652 61.453 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="111.545 103.218 117.11 103.218 117.11 97.652 111.545 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="103.196 103.218 108.761 103.218 108.761 97.652 103.196 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="94.847 103.218 100.412 103.218 100.412 97.652 94.847 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon fill="#FFFFFF" points="34.32 106 119.197 106 119.197 101.13 34.32 101.13" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="34.32 106 119.197 106 119.197 101.13 34.32 101.13" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="30.842 103.218 36.407 103.218 36.407 97.652 30.842 97.652" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="39.19 103.218 44.755 103.218 44.755 97.652 39.19 97.652" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="47.539 103.218 53.104 103.218 53.104 97.652 47.539 97.652" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="55.887 103.218 86.498 103.218 86.498 97.652 55.887 97.652" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="105.978 103.218 111.544 103.218 111.544 97.652 105.978 97.652" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="97.631 103.218 103.196 103.218 103.196 97.652 97.631 97.652" mask="url(#b)"/>
|
||||
<polygon fill="#E4E9F8" points="89.282 103.218 94.847 103.218 94.847 97.652 89.282 97.652" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="30.842 103.218 36.407 103.218 36.407 97.652 30.842 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="39.19 103.218 44.755 103.218 44.755 97.652 39.19 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="47.539 103.218 53.104 103.218 53.104 97.652 47.539 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="55.887 103.218 86.498 103.218 86.498 97.652 55.887 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="105.978 103.218 111.544 103.218 111.544 97.652 105.978 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="97.631 103.218 103.196 103.218 103.196 97.652 97.631 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="89.282 103.218 94.847 103.218 94.847 97.652 89.282 97.652" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<polygon fill="#FFFFFF" points="28.754 106 113.631 106 113.631 101.13 28.754 101.13" mask="url(#b)"/>
|
||||
<polyline stroke="#1E2126" stroke-width="2" points="113.631 106 28.754 106 28.754 101.13 113.631 101.13" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<path fill="#7687B2" d="M130.0648,84.283 L114.8898,84.283 L114.8898,63.417 C114.8898,59.226 118.2868,55.829 122.4768,55.829 C126.6688,55.829 130.0648,59.226 130.0648,63.417 L130.0648,84.283 Z" mask="url(#b)"/>
|
||||
<polygon fill="#D5DBED" points="119.316 101.207 125.639 101.207 125.639 81.009 119.316 81.009" mask="url(#b)"/>
|
||||
<polygon stroke="#1E2126" stroke-width="2" points="119.316 101.207 125.639 101.207 125.639 81.009 119.316 81.009" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<path fill="#FFFFFF" d="M127.8519,105.8503 L117.1029,105.8503 C115.8799,105.8503 114.8899,104.8593 114.8899,103.6373 C114.8899,102.4143 115.8799,101.4243 117.1029,101.4243 L127.8519,101.4243 C129.0749,101.4243 130.0649,102.4143 130.0649,103.6373 C130.0649,104.8593 129.0749,105.8503 127.8519,105.8503" mask="url(#b)"/>
|
||||
<path stroke="#1E2126" stroke-width="2" d="M127.8519 105.8503L117.1029 105.8503C115.8799 105.8503 114.8899 104.8593 114.8899 103.6373 114.8899 102.4143 115.8799 101.4243 117.1029 101.4243L127.8519 101.4243C129.0749 101.4243 130.0649 102.4143 130.0649 103.6373 130.0649 104.8593 129.0749 105.8503 127.8519 105.8503zM130.0648 84.283L114.8898 84.283 114.8898 63.417C114.8898 59.226 118.2868 55.829 122.4768 55.829 126.6688 55.829 130.0648 59.226 130.0648 63.417L130.0648 84.283z" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<path fill="#FFFFFF" d="M123.7826,91.2019 L121.1726,91.2019 C116.6546,91.2019 112.9926,87.5399 112.9926,83.0219 L112.9926,73.4549 C112.9926,72.4509 113.8056,71.6369 114.8096,71.6369 L130.1436,71.6369 C131.1476,71.6369 131.9626,72.4509 131.9626,73.4549 L131.9626,83.0219 C131.9626,87.5399 128.3006,91.2019 123.7826,91.2019" mask="url(#b)"/>
|
||||
<path stroke="#1E2126" stroke-width="2" d="M123.7826,91.2019 L121.1726,91.2019 C116.6546,91.2019 112.9926,87.5399 112.9926,83.0219 L112.9926,73.4549 C112.9926,72.4509 113.8056,71.6369 114.8096,71.6369 L130.1436,71.6369 C131.1476,71.6369 131.9626,72.4509 131.9626,73.4549 L131.9626,83.0219 C131.9626,87.5399 128.3006,91.2019 123.7826,91.2019 Z" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<path fill="#EFEFF4" d="M126.2709,80.5447 C126.2709,82.6407 124.5729,84.3387 122.4769,84.3387 C120.3819,84.3387 118.6829,82.6407 118.6829,80.5447 C118.6829,78.4487 120.3819,76.7507 122.4769,76.7507 C124.5729,76.7507 126.2709,78.4487 126.2709,80.5447" mask="url(#b)"/>
|
||||
<path stroke="#1E2126" stroke-width="2" d="M126.2709 80.5447C126.2709 82.6407 124.5729 84.3387 122.4769 84.3387 120.3819 84.3387 118.6829 82.6407 118.6829 80.5447 118.6829 78.4487 120.3819 76.7507 122.4769 76.7507 124.5729 76.7507 126.2709 78.4487 126.2709 80.5447zM114.89 63.0105L124.234 71.6365M117.433 57.1082L130.075 68.7772M143.9457 88.1726L143.9457 90.1246C143.9457 93.6166 141.1147 96.4476 137.6227 96.4476L119.3157 96.4476" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<path fill="#E4E9F8" d="M140.1517,75.2878 L147.7397,75.2878 L147.7397,87.6048 C147.7397,88.1068 147.3337,88.5148 146.8317,88.5148 L141.0607,88.5148 C140.5587,88.5148 140.1517,88.1068 140.1517,87.6048 L140.1517,75.2878 Z" mask="url(#b)"/>
|
||||
<path stroke="#1E2126" stroke-width="2" d="M140.1517,75.2878 L147.7397,75.2878 L147.7397,87.6048 C147.7397,88.1068 147.3337,88.5148 146.8317,88.5148 L141.0607,88.5148 C140.5587,88.5148 140.1517,88.1068 140.1517,87.6048 L140.1517,75.2878 Z" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<path fill="#FFFFFF" d="M123.7699,64.615 C123.7699,53.471 132.8029,44.439 143.9459,44.439 C155.0889,44.439 164.1219,53.471 164.1219,64.615 C164.1219,75.758 155.0889,84.79 143.9459,84.79 C132.8029,84.79 123.7699,75.758 123.7699,64.615" mask="url(#b)"/>
|
||||
<path stroke="#1E2126" stroke-width="2" d="M123.7699,64.615 C123.7699,53.471 132.8029,44.439 143.9459,44.439 C155.0889,44.439 164.1219,53.471 164.1219,64.615 C164.1219,75.758 155.0889,84.79 143.9459,84.79 C132.8029,84.79 123.7699,75.758 123.7699,64.615 Z" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
<path fill="#7687B2" d="M128.2924,64.615 C128.2924,55.969 135.3014,48.961 143.9454,48.961 C152.5914,48.961 159.6004,55.969 159.6004,64.615 C159.6004,73.26 152.5914,80.268 143.9454,80.268 C135.3014,80.268 128.2924,73.26 128.2924,64.615" mask="url(#b)"/>
|
||||
<path stroke="#1E2126" stroke-width="2" d="M147.7679 49.4314C146.5449 49.1234 145.2639 48.9604 143.9459 48.9604 135.3009 48.9604 128.2919 55.9694 128.2919 64.6154 128.2919 73.2594 135.3009 80.2684 143.9459 80.2684 152.5909 80.2684 159.5999 73.2594 159.5999 64.6154 159.5999 60.5514 158.0509 56.8504 155.5129 54.0684M151.6859 51.0046C152.2669 51.3366 152.8249 51.7036 153.3559 52.1046M179.2533 79.4431L179.2533 82.9351M181.0004 81.1892L177.5074 81.1892M139.0531 1.3826L139.0531 4.8746M140.7992 3.1287L137.3072 3.1287M102.8822 35.8054L102.0592 36.6284M98.766 39.9216L97.943 40.7446M102.8822 40.7449L102.0592 39.9219M98.766 36.6287L97.943 35.8057M157.0824 12.7898C157.0824 13.7548 156.3004 14.5368 155.3364 14.5368 154.3714 14.5368 153.5904 13.7548 153.5904 12.7898 153.5904 11.8258 154.3714 11.0438 155.3364 11.0438 156.3004 11.0438 157.0824 11.8258 157.0824 12.7898z" stroke-linecap="round" stroke-linejoin="round" mask="url(#b)"/>
|
||||
</g>
|
||||
</g>
|
||||
<rect width="184" height="110"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
BIN
assets/public/client/62ac6016dc438a1fe4926ed43d3fe280.webm
Normal file
BIN
assets/public/client/64f37efd5319b9b581557604864f042a.png
Normal file
|
After Width: | Height: | Size: 268 B |
16
assets/public/client/676bfec9f4343f6fcdf0a12ae313a3de.svg
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" fill="#738BD7" d="M78.1,66.5c-2.7,0-4.9-2.2-4.9-4.8V41.2c0-2.7,2.2-4.8,4.9-4.8
|
||||
c2.7,0,4.9,2.2,4.9,4.8v20.4C83,64.3,80.8,66.5,78.1,66.5z M65.7,73.9h-2.2v10.3c0,2.7-2.2,4.8-4.9,4.8c-2.7,0-4.9-2.2-4.9-4.8
|
||||
V73.9h-6.5v10.3c0,2.7-2.2,4.8-4.9,4.8c-2.7,0-4.9-2.2-4.9-4.8V73.9h-2.2c-2.5,0-4.7-1.4-5.8-3.5h-0.5V69c-0.1-0.5-0.2-1-0.2-1.5
|
||||
V38.7h0.2v-0.1h41.8v31.7h-0.6C69.7,72.4,68.2,73.9,65.7,73.9z M70.7,36H29c0.5-7.2,4.6-13.5,10.5-17l-4.1-6.8l2-1.3l4.6,6.8
|
||||
c2.6-1.1,5.5-1.8,8.6-1.8c3.2,0,6,0.7,8.6,1.9l4.1-6.5l2.2,0.9l-3.9,7C66.9,22.8,70.3,29,70.7,36z M40.9,24.4c-1.3,0-2.3,1-2.3,2.3
|
||||
c0,1.2,1,2.3,2.3,2.3c1.3,0,2.3-1,2.3-2.3C43.2,25.4,42.2,24.4,40.9,24.4z M60.2,24.5c-1.2,0-2.2,1-2.2,2.1c0,1.2,1,2.1,2.2,2.1
|
||||
c1.2,0,2.2-1,2.2-2.1C62.4,25.5,61.4,24.5,60.2,24.5z M21.2,66.5c-3,0-4.2-2.4-4.2-5.4V41.8c0-3,1.3-5.4,4.2-5.4
|
||||
c3,0,5.4,2.4,5.4,5.4v19.3C26.7,64.1,24.2,66.5,21.2,66.5z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
13
assets/public/client/6793e022dc1b065b21f12d6df02f91bd.svg
Normal file
@ -0,0 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="94" height="120">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<path fill="#424549" d="M91.11725 73.1472903c0 24.5560774-19.94925 44.4624257-44.559 44.4624257C21.94925 117.609716 2 97.7033677 2 73.1472903c0-24.5560774 19.94925-44.4631742 44.55825-44.4631742 24.60975 0 44.559 19.9070968 44.559 44.4631742"/>
|
||||
<path stroke="#222426" stroke-width="3" d="M80.185775 43.9741135c6.8085 7.8079226 10.93125 18.0099355 10.93125 29.1728775 0 24.5560774-19.94925 44.463174-44.55825 44.463174s-44.559-19.9070966-44.559-44.463174c0-24.5560775 19.95-44.4624258 44.559-44.4624258" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path fill="#222426" d="M24.279275 74.9720077c0 3.0698839-2.49375 5.5575226-5.5695 5.5575226-3.0765 0-5.57025-2.4876387-5.57025-5.5575226 0-3.0698838 2.49375-5.5575225 5.57025-5.5575225 3.07575 0 5.5695 2.4876387 5.5695 5.5575225m55.6983 0c0 3.0698839-2.49375 5.5575226-5.5695 5.5575226-3.0765 0-5.57025-2.4876387-5.57025-5.5575226 0-3.0698838 2.49375-5.5575225 5.57025-5.5575225 3.07575 0 5.5695 2.4876387 5.5695 5.5575225"/>
|
||||
<path stroke="#222426" stroke-width="3" d="M57.6983 94.8037419c-6.513-5.1990451-15.7665-5.1990451-22.2795 0" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path fill="#3B3E42" d="M63.522875 34.4979613l-14.77575 11.9352774c-.9255.7483871-2.145-.4684903-1.39575-1.392l5.26425-6.4892645 6.6975-8.2547097m26.1864-17.980449l6.09075 6.0776516c.387.3861677.387 1.0133161 0 1.4002323l-1.404 1.4002322c-1.5495 1.5469161-4.06275 1.5469161-5.613 0L72.644525 9.29183484c-1.55025-1.54691613-1.55025-4.0547613 0-5.60092903l1.40325-1.40023223c.38775-.38691613 1.01625-.38691613 1.404 0l3.64125 3.63341935"/>
|
||||
<path fill="#3B3E42" d="M66.284075 37.2532232l-14.3385-14.3076645c-.38775-.3869161-.38775-1.0140645 0-1.4009806l1.05225-1.0499871c3.1005-3.0938323 8.12625-3.0938323 11.22675 0l9.1215 9.1018838c3.1005 3.0938323 3.1005 8.1095226 0 11.2033549l-1.05225 1.0499871c-.38775.3869161-1.0155.3869161-1.40325 0l-2.001-1.9966968"/>
|
||||
<path fill="#3B3E42" d="M72.995525 29.2467535l-8.42025-8.4021419 9.8235-9.80237418 8.42025 8.40214198"/>
|
||||
<path stroke="#222426" stroke-width="3" d="M85.499525 12.3168155l6.09075 6.0776516c.387.3861677.387 1.0133161 0 1.4002323l-1.404 1.4002322c-1.5495 1.5469161-4.06275 1.5469161-5.613 0L72.644525 9.29183484c-1.55025-1.54691613-1.55025-4.0547613 0-5.60092903l1.40325-1.40023223c.38775-.38691613 1.01625-.38691613 1.404 0l3.64125 3.63341935m-12.80895 31.3291303l-14.3385-14.3076645c-.38775-.3869161-.38775-1.0140645 0-1.4009806l1.05225-1.0499871c3.1005-3.0938323 8.12625-3.0938323 11.22675 0l9.1215 9.1018838c3.1005 3.0938323 3.1005 8.1095226 0 11.2033549l-1.05225 1.0499871c-.38775.3869161-1.0155.3869161-1.40325 0l-2.001-1.9966968m-4.31415-19.0084335l9.8235-9.80237424m8.4201 8.40206714l-9.8235 9.8023741" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path stroke="#222426" stroke-width="3" d="M59.312825 30.2969652l-11.961 14.7439742c-.75.9235096.4695 2.1403871 1.395 1.3927483l14.77575-11.9360258" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
BIN
assets/public/client/6906eb345e3aeb89322c5167db31c1f6.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
16
assets/public/client/69599bf4774238ea687b769da6a9595e.svg
Normal file
@ -0,0 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 180 200" width="42" height="33">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1{fill:#aabff2}.cls-3{fill:#7d94df}
|
||||
</style>
|
||||
</defs>
|
||||
<path d="M155 165c0-27.5-24.37-50-54.17-50H79.17C49.38 115 25 137.5 25 165v25a36.86 36.86 0 0 0 1.38 10h127.24a36.86 36.86 0 0 0 1.38-10z" class="cls-1"/>
|
||||
<path d="M171.54 70.11c-2.33-7.19-8.77-7.21-15.08-6.9A53.25 53.25 0 0 0 152 49.14c-7.38-14.8-21.8-17.53-37-18.28-24.3-1.2-49.68-1.86-71.64 8.46C33.05 44.16 30 52.2 27.75 58.29c-.41 1.12-.73 2.33-1.08 3.5a8.68 8.68 0 0 0-.89-.14C9.5 60.6 5.5 73.7 5.71 87.63c.1 6.76.53 15.8 3.52 22 3.16 6.54 10.19 6 16.42 5.69a8.85 8.85 0 0 0 1.62-.26c5.18 14.73 18 20.44 32.92 22.39 22.89 3 48.64 3.81 71.45.11 14.21-2.3 20.56-10.78 23.4-22.26a22.34 22.34 0 0 0 5.5-.86c8-2.32 12.44-5.15 13.29-13.9.92-9.43.65-21.37-2.29-30.43z" class="cls-1"/>
|
||||
<path d="M116.72 121.2c-1-5.12-5.53-10.33-10.54-11.53-5.28-1.27-11.52-.21-16.92-.17l-18.3.14c-.51-2.28-3-4.09-5.37-2.26-5.31 4.08-15 14.54-8 21.49 5.65 5.65 13.45 0 18.75-5.14 3 5.38 7.45 10.69 13.66 10.21 3.89-.31 6.24-2.76 7.61-5.9 3.18 3.08 7.17 5.3 11.59 4.8 5.89-.65 8.64-6.26 7.52-11.64z"/>
|
||||
<path fill="#cbdaf7" d="M116.24 69.86c-6-4.62-14.35-4.82-21.53-5.26a135.12 135.12 0 0 0-30.13 1.58 9.87 9.87 0 0 0-2.66.85 8.66 8.66 0 0 0-7.12 6.77c-3.48 14.13-.66 32.13 14.47 38 13.11 5.11 33.08 5.06 43.94-4.21C123 99.26 128 79 116.24 69.86z"/>
|
||||
<path d="M77.7 92.6c-3.19 0-6.39 0-9.58.08a3.58 3.58 0 1 0 .45 7.15c3.19.07 6.39.06 9.59.08 4.71.02 4.24-7.33-.46-7.31zM103.79 94.31c-3.54-.21-7.09-.41-10.64-.57-4.06-.18-4.57 6.87-.48 7.16q5.79.41 11.58.72c2 .1 3.54-2.07 3.42-3.88-.13-2.18-1.9-3.31-3.88-3.43z" class="cls-1"/>
|
||||
<path d="M37 79.42c-8.86 0-7.94 13.72.86 13.72s7.96-13.72-.86-13.72zM138.19 80.06c-9.41 0-8.43 14.57.92 14.57s8.43-14.57-.92-14.57z"/>
|
||||
<path d="M23.76 78.6c0-2.85-3.45-3.85-5.47-2.65a3.52 3.52 0 0 0-4.55 2.65 50.9 50.9 0 0 0-.86 17.87c.57 4.22 1.46 9 6.33 9.9a3.69 3.69 0 0 0 4.35-3.8c-.23-8.01.08-15.97.2-23.97zM163 78.12a3 3 0 0 0-2.59-2.41 3.61 3.61 0 0 0-5.09 3.34c.1 7.48.56 15 1.06 22.43a3.8 3.8 0 0 0 2.94 3.37c11.45 3.09 4.91-21.96 3.68-26.73z" class="cls-3"/>
|
||||
<path fill="#ff766c" d="M122.8 14.85S71.2-5.13 58.2 1.27c-9.89 4.86-24.68 16.09-27.45 27.88-13.13 3.22-21.9 11.71-24.82 19.66-.72 1.95.36 4.2 2 4.2h145.15c2.39 0 4.33-2.58 4.14-5.63-1.04-17.31-16.73-25.45-34.42-32.53z"/>
|
||||
<path fill="#fff" d="M53.64 33.88a297.13 297.13 0 0 1 32.09.79 2.68 2.68 0 0 0 2.84-3.27C87.19 25.35 83 13.74 71.2 13 57.79 12.17 52.7 24.26 51 30.46a2.69 2.69 0 0 0 2.64 3.42z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
BIN
assets/public/client/6a4c3d24e0e1bb9bd102815d01cb3d87.png
Normal file
|
After Width: | Height: | Size: 131 KiB |