@oracle-agent/oracle 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -1
- package/docs/cli.md +28 -0
- package/package.json +3 -3
- package/profiles/oracle/SOUL.md +10 -4
- package/protocols/templates/safe-erc20/README.md +9 -0
- package/public/oracle-splash/assets/hero/orb.avif +0 -0
- package/public/oracle-splash/assets/hero/orb.webm +0 -0
- package/public/oracle-splash/assets/llms/claude.svg +1 -0
- package/public/oracle-splash/assets/llms/codex.svg +1 -0
- package/public/oracle-splash/assets/llms/cursor.svg +17 -0
- package/public/oracle-splash/assets/llms/deepseek.svg +1 -0
- package/public/oracle-splash/assets/llms/gemini.svg +1 -0
- package/public/oracle-splash/assets/llms/grok.svg +8 -0
- package/public/oracle-splash/assets/llms/hermes.png +0 -0
- package/public/oracle-splash/assets/llms/kimi.svg +1 -0
- package/public/oracle-splash/assets/llms/manus.svg +18 -0
- package/public/oracle-splash/assets/llms/openclaw.svg +22 -0
- package/public/oracle-splash/assets/llms/perplexity.svg +1 -0
- package/public/oracle-splash/assets/llms/qwen.svg +1 -0
- package/public/oracle-splash/assets/llms/windsurf.svg +1 -0
- package/public/oracle-splash/assets/protocols/abcdex.png +0 -0
- package/public/oracle-splash/assets/protocols/across.png +0 -0
- package/public/oracle-splash/assets/protocols/aerodrome.png +0 -0
- package/public/oracle-splash/assets/protocols/balancer.png +0 -0
- package/public/oracle-splash/assets/protocols/cowswap.png +0 -0
- package/public/oracle-splash/assets/protocols/curve.png +0 -0
- package/public/oracle-splash/assets/protocols/dreamcash.png +0 -0
- package/public/oracle-splash/assets/protocols/felix.png +0 -0
- package/public/oracle-splash/assets/protocols/gmx.png +0 -0
- package/public/oracle-splash/assets/protocols/hyena.png +0 -0
- package/public/oracle-splash/assets/protocols/hyperbeat.png +0 -0
- package/public/oracle-splash/assets/protocols/hyperliquid.png +0 -0
- package/public/oracle-splash/assets/protocols/hyperswap.png +0 -0
- package/public/oracle-splash/assets/protocols/jupiter.png +0 -0
- package/public/oracle-splash/assets/protocols/kinetiq.png +0 -0
- package/public/oracle-splash/assets/protocols/lfj.png +0 -0
- package/public/oracle-splash/assets/protocols/lifi.png +0 -0
- package/public/oracle-splash/assets/protocols/magic-eden.png +0 -0
- package/public/oracle-splash/assets/protocols/morpho.png +0 -0
- package/public/oracle-splash/assets/protocols/odos.png +0 -0
- package/public/oracle-splash/assets/protocols/oneinch.png +0 -0
- package/public/oracle-splash/assets/protocols/opensea.png +0 -0
- package/public/oracle-splash/assets/protocols/pancakeswap.png +0 -0
- package/public/oracle-splash/assets/protocols/paragon.png +0 -0
- package/public/oracle-splash/assets/protocols/paraswap.png +0 -0
- package/public/oracle-splash/assets/protocols/pendle.png +0 -0
- package/public/oracle-splash/assets/protocols/polymarket.png +0 -0
- package/public/oracle-splash/assets/protocols/quickswap.png +0 -0
- package/public/oracle-splash/assets/protocols/relay.png +0 -0
- package/public/oracle-splash/assets/protocols/stargate.png +0 -0
- package/public/oracle-splash/assets/protocols/tradexyz.png +0 -0
- package/public/oracle-splash/assets/protocols/uniswap.png +0 -0
- package/public/oracle-splash/assets/protocols/velodrome.png +0 -0
- package/public/oracle-splash/assets/protocols/ventuals.png +0 -0
- package/public/oracle-splash/assets/wordmarks/hyena.svg +7 -0
- package/public/oracle-splash/assets/wordmarks/opensea.svg +1 -1
- package/public/oracle-splash/assets/wordmarks/outcome.svg +16 -0
- package/public/oracle-splash/assets/wordmarks/xyz.svg +12 -0
- package/public/oracle-splash/index.html +121 -139
- package/skills/oracle-chat/SKILL.md +61 -0
- package/skills/oracle-chat/chain.SKILL.md +31 -0
- package/skills/oracle-chat/setup.SKILL.md +37 -0
- package/skins/oracle.yaml +52 -0
- package/src/cli/chain-catalog.mjs +215 -0
- package/src/cli/chain-state.mjs +74 -0
- package/src/cli/commands/chain.mjs +143 -0
- package/src/cli/commands/chat.mjs +268 -0
- package/src/cli/commands/model.mjs +37 -0
- package/src/cli/commands/setup.mjs +283 -0
- package/src/cli/first-run.mjs +3 -0
- package/src/cli/kernel.mjs +42 -3
- package/src/cli/messaging-platforms.mjs +209 -0
- package/src/cli/oracle-harness.py +148 -0
- package/src/cli/paths.mjs +5 -0
- package/src/cli/setup-state.mjs +168 -0
package/README.md
CHANGED
|
@@ -367,9 +367,18 @@ Oracle ships an installable 8-lane mesh for Hermes:
|
|
|
367
367
|
oracle-init # dry run -- shows exactly what it would do
|
|
368
368
|
oracle-init --apply # create profiles, install SOULs + skills, wire MCP config
|
|
369
369
|
npx oracle-data # keep running — MCP tools call the local read plane on :8787
|
|
370
|
-
|
|
370
|
+
oracle # plain ascii TTY on the same oracle profile as messaging
|
|
371
|
+
oracle model # choose provider/model; persona stays oracle
|
|
372
|
+
oracle chain use hyperliquid
|
|
373
|
+
oracle setup # telegram / discord / slack / other hermes messaging
|
|
371
374
|
```
|
|
372
375
|
|
|
376
|
+
Terminal and configured messaging channels are transports into the same Hermes
|
|
377
|
+
`oracle` profile. When a local operator/MCP is configured, an explicit owner
|
|
378
|
+
trade instruction can execute from either interface. The selected model never
|
|
379
|
+
bypasses signer-owned grants, allowlists, caps, MAC checks, simulation, or
|
|
380
|
+
receipt verification.
|
|
381
|
+
|
|
373
382
|
Lanes: `oracle` (router), `polymarket-agent`, `hyperliquid-agent`,
|
|
374
383
|
`robinhood-agent`, `solana-agent`, `bitcoin-agent`, `stable-agent`,
|
|
375
384
|
`protocol-builder`, plus `_template` for your own. Details in
|
package/docs/cli.md
CHANGED
|
@@ -17,3 +17,31 @@ See also [connectors.md](./connectors.md).
|
|
|
17
17
|
| 2 | operator self-reported error |
|
|
18
18
|
| 3 | operator package not installed |
|
|
19
19
|
| 4 | data server not running |
|
|
20
|
+
|
|
21
|
+
## Chat surface
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
oracle # TTY: one lowercase oracle persona (hermes profile)
|
|
25
|
+
oracle --help # command help
|
|
26
|
+
oracle model # interactive provider/model picker
|
|
27
|
+
oracle -m <model> # launch this session on a selected model
|
|
28
|
+
oracle chain list # working chains
|
|
29
|
+
oracle chain use hyperliquid
|
|
30
|
+
oracle setup # telegram/discord/slack + hermes messaging menu
|
|
31
|
+
oracle setup telegram # writes TELEGRAM_BOT_TOKEN into profile .env
|
|
32
|
+
oracle setup messaging # full hermes gateway setup wizard
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Inside chat:
|
|
36
|
+
|
|
37
|
+
- `/chain` list or select build/trade chain
|
|
38
|
+
- `/setup` configure messaging platforms
|
|
39
|
+
- `/model` switch models; persona stays oracle
|
|
40
|
+
|
|
41
|
+
Terminal and configured messaging channels are transports into the same Hermes
|
|
42
|
+
profile. A configured local operator/MCP can execute an owner-confirmed action
|
|
43
|
+
from either interface. The interface and selected model never bypass grants,
|
|
44
|
+
allowlists, caps, MAC checks, simulation, or receipt verification.
|
|
45
|
+
|
|
46
|
+
Hosted remote models stay read/prepare-only. Local hermes + operator remain the
|
|
47
|
+
only signing path, and only via child process.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oracle-agent/oracle",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Oracle: prepare-only multichain agent control plane. Policy-bounded intents for a user-signed wallet. Self-custody by default — the public package never takes your key. Built for Hermes; no model key required.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -33,8 +33,7 @@
|
|
|
33
33
|
"oracle-init": "./bin/oracle-init.mjs",
|
|
34
34
|
"oracle-upgrade": "./bin/oracle-upgrade.mjs",
|
|
35
35
|
"oracle-scan": "./bin/oracle-scan.mjs",
|
|
36
|
-
"oracle-route": "./bin/oracle-route.mjs"
|
|
37
|
-
"oracle": "./bin/oracle.mjs"
|
|
36
|
+
"oracle-route": "./bin/oracle-route.mjs"
|
|
38
37
|
},
|
|
39
38
|
"exports": {
|
|
40
39
|
".": "./src/index.mjs",
|
|
@@ -88,6 +87,7 @@
|
|
|
88
87
|
"src/",
|
|
89
88
|
"profiles/",
|
|
90
89
|
"skills/",
|
|
90
|
+
"skins/",
|
|
91
91
|
"plugins/",
|
|
92
92
|
"public/",
|
|
93
93
|
"artifacts/",
|
package/profiles/oracle/SOUL.md
CHANGED
|
@@ -68,14 +68,20 @@ the data plane). If it stays ambiguous, ask. Do not guess a chain.
|
|
|
68
68
|
4. **Meme sniping is still guarded.** Fast scan is allowed; blind broadcast is
|
|
69
69
|
not. Resolve exact token/chain, sell-sim when possible, quote net of gas,
|
|
70
70
|
cap spend/fees, and prepare a user-signed ticket.
|
|
71
|
-
5. **
|
|
71
|
+
5. **Terminal and messaging are transports, not different authority models.**
|
|
72
|
+
Bare `oracle` launches this same profile. An owner-confirmed action may route
|
|
73
|
+
through the configured local operator/MCP from either terminal or a messaging
|
|
74
|
+
channel. All signer-owned grants, allowlists, caps, MAC checks, simulations,
|
|
75
|
+
and receipt verification remain mandatory. Changing `/model` never changes
|
|
76
|
+
those walls.
|
|
77
|
+
6. **A grant is authorization; your reasoning is not.** If an action falls
|
|
72
78
|
outside the active grant — chain, venue, destination, spend cap, TTL — refuse
|
|
73
79
|
and say which bound it broke.
|
|
74
|
-
|
|
80
|
+
7. **Receipts or it didn't happen.** No transaction hash, no receipt, no balance
|
|
75
81
|
delta → the action did not succeed. Say so plainly.
|
|
76
|
-
|
|
82
|
+
8. **Never invent chain facts.** If it did not come from a live read, label it
|
|
77
83
|
`unknown`.
|
|
78
|
-
|
|
84
|
+
9. **Balance uses one source of truth.** `/balance` and plain-language balance
|
|
79
85
|
requests call `portfolio_snapshot`; use `portfolio_history` and
|
|
80
86
|
`portfolio_value_graph` for historical requests. Report `knownUsd` as
|
|
81
87
|
incomplete whenever a provider, address, price, token/NFT indexer, or chain
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="110" preserveAspectRatio="xMidYMid" viewBox="0 0 512 110"><path fill="#D97757" d="m21.564 73.123 21.62-12.132.361-1.057-.361-.584h-1.058l-3.617-.223-12.354-.334-10.712-.445-10.379-.556-2.615-.557L0 54.007l.25-1.613 2.199-1.475 3.144.278 6.956.473 10.434.724 7.568.445 11.214 1.168h1.78l.25-.723-.611-.445-.473-.445-10.796-7.318-11.687-7.735-6.12-4.452-3.312-2.254-1.67-2.115-.723-4.619 3.005-3.31 4.035.277 1.03.279 4.09 3.144 8.736 6.761 11.408 8.403 1.67 1.391.668-.473.083-.333-.751-1.253-6.205-11.213-6.622-11.408-2.95-4.73-.779-2.838c-.278-1.169-.473-2.143-.473-3.34L28.771.613 30.663 0l4.563.612 1.92 1.67 2.838 6.483 4.591 10.211 7.123 13.885 2.087 4.118 1.113 3.812.417 1.168h.724v-.667l.584-7.819 1.085-9.6 1.058-12.354.361-3.478 1.725-4.173 3.423-2.254 2.67 1.28 2.2 3.144-.307 2.031-1.308 8.487-2.56 13.3-1.67 8.904h.975l1.113-1.113 4.507-5.983 7.569-9.46 3.339-3.756 3.895-4.146 2.504-1.976h4.73l3.478 5.176-1.558 5.342-4.869 6.177-4.035 5.231-5.787 7.79-3.617 6.234.334.5.862-.083 13.078-2.782 7.067-1.28 8.431-1.447 3.812 1.78.417 1.81-1.502 3.7-9.015 2.226-10.574 2.114-15.748 3.729-.195.139.222.278 7.096.668 3.033.167h7.429l13.829 1.03 3.617 2.392 2.17 2.922-.362 2.226-5.565 2.838-7.512-1.78-17.53-4.174-6.01-1.503h-.835v.5l5.009 4.898 9.182 8.292L97.776 88.12l.584 2.644-1.475 2.087-1.558-.223-10.1-7.596-3.896-3.423-8.82-7.429h-.584v.78l2.03 2.977 10.741 16.138.556 4.953-.779 1.613-2.782.974-3.06-.556-6.29-8.82-6.482-9.934-5.231-8.904-.64.362-3.089 33.25-1.447 1.698-3.339 1.28-2.782-2.115-1.475-3.423 1.475-6.76 1.78-8.821 1.448-7.012 1.307-8.71.78-2.893-.056-.195-.64.084-6.567 9.015-9.989 13.495-7.902 8.459-1.892.75-3.283-1.697.306-3.032 1.836-2.7 10.935-13.912 6.595-8.625 4.257-4.98-.028-.724h-.25L18.92 85.06l-5.175.668-2.226-2.087.279-3.423 1.057-1.113 8.737-6.01-.028.028Z"/><path fill="#ffff" d="M179.413 93.351c-13.968 0-23.512-7.79-28.02-19.783a53.395 53.395 0 0 1-3.422-19.56c0-20.118 9.015-34.086 28.938-34.086 13.383 0 21.647 5.844 26.35 19.784h5.731l-.779-19.227c-8.013-5.175-18.03-7.791-30.217-7.791-17.168 0-31.776 7.68-39.9 21.536a46.662 46.662 0 0 0-6.178 24.068c0 15.387 7.263 29.022 20.897 36.59a48.72 48.72 0 0 0 24.29 5.732c13.3 0 23.846-2.532 33.195-6.956l2.42-21.203h-5.842c-3.506 9.683-7.68 15.498-14.608 18.587-3.395 1.53-7.68 2.31-12.855 2.31Zm60.24-73.429.557-9.46h-3.952l-17.585 5.287v2.866l7.791 3.617v66.167c0 4.507-2.31 5.509-8.347 6.26v4.842h29.911v-4.842c-6.065-.751-8.347-1.753-8.347-6.26V19.95l-.028-.028Zm118.95 80.692h2.31l20.228-3.84V91.82l-2.838-.222c-4.73-.446-5.955-1.42-5.955-5.287V51.03l.557-11.324h-3.2L350.59 42.46v4.842l1.864.334c5.175.75 6.706 2.198 6.706 5.815v31.442c-4.953 3.84-9.683 6.26-15.304 6.26-6.233 0-10.1-3.172-10.1-10.573V51.058l.556-11.325h-3.283l-19.143 2.755v4.842l1.975.333c5.176.752 6.706 2.199 6.706 5.816v29.02c0 12.3 6.956 18.142 18.03 18.142 8.459 0 15.387-4.507 20.59-10.768l-.556 10.768-.028-.027Zm-55.593-39.15c0-15.72-8.348-21.758-23.429-21.758-13.3 0-22.955 5.509-22.955 14.635 0 2.727.974 4.814 2.95 6.26l10.128-1.335c-.446-3.06-.668-4.925-.668-5.704 0-5.175 2.754-7.79 8.347-7.79 8.264 0 12.438 5.815 12.438 15.164v3.06l-20.869 6.261c-6.956 1.892-10.907 3.534-13.55 7.374a13.912 13.912 0 0 0-1.948 7.79c0 8.904 6.121 15.193 16.583 15.193 7.569 0 14.275-3.423 20.118-9.906 2.087 6.483 5.286 9.906 10.99 9.906 4.62 0 8.793-1.865 12.521-5.51l-1.113-3.84a17.782 17.782 0 0 1-4.813.668c-3.2 0-4.73-2.532-4.73-7.484V61.464ZM276.298 91.71c-5.704 0-9.238-3.311-9.238-9.127 0-3.95 1.865-6.26 5.843-7.596l16.918-5.37v16.25c-5.398 4.09-8.57 5.843-13.523 5.843Zm176.13 5.064V91.82l-2.866-.222c-4.73-.446-5.927-1.42-5.927-5.287v-66.39l.557-9.46h-3.98l-17.585 5.287v2.866l7.791 3.617V43.99a24.57 24.57 0 0 0-14.941-4.285c-17.474 0-31.108 13.3-31.108 33.194 0 16.39 9.794 27.714 25.932 27.714 8.348 0 15.61-4.063 20.117-10.351l-.556 10.35h2.337l20.229-3.84ZM415.81 46.3c8.348 0 14.608 4.842 14.608 13.745v25.043a20.034 20.034 0 0 1-14.496 5.843c-11.965 0-18.03-9.46-18.03-22.093 0-14.19 6.928-22.538 17.918-22.538Zm79.384 12.521c-1.558-7.346-6.066-11.52-12.326-11.52-9.35 0-15.833 7.04-15.833 17.14 0 14.943 7.903 24.625 20.674 24.625a23.93 23.93 0 0 0 20.563-12.103L512 77.964c-1.67 12.967-13.411 22.65-27.825 22.65-16.917 0-28.575-12.521-28.575-30.33 0-17.946 12.66-30.578 29.577-30.578 12.632 0 21.536 7.596 24.402 20.785l-44.074 13.522V68.06l29.689-9.21v-.028Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="#fff" fill-rule="evenodd" height="1em" style="flex:none;line-height:1" viewBox="0 0 91 24" xmlns="http://www.w3.org/2000/svg"><title>Codex</title><path d="M79.915 14.964l-5.53-7.548h3.33l3.88 5.256 3.88-5.256h3.24l-5.5 7.486 5.683 7.792h-3.361l-4.003-5.5-4.064 5.5H74.2l5.715-7.73zM66.368 23c-1.345 0-2.567-.326-3.667-.978-1.08-.652-1.935-1.579-2.567-2.78-.631-1.203-.947-2.608-.947-4.217 0-1.59.316-2.974.947-4.156.652-1.202 1.518-2.129 2.597-2.78 1.08-.652 2.272-.978 3.575-.978 1.813 0 3.33.55 4.553 1.65 1.222 1.1 1.956 2.597 2.2 4.491.082.693.112 1.477.092 2.353H62.09c.06 1.548.489 2.76 1.283 3.636.815.876 1.793 1.314 2.933 1.314h.184c.855 0 1.599-.224 2.23-.672.632-.448 1.06-1.06 1.284-1.833h2.933a6.147 6.147 0 01-2.322 3.575C69.433 22.54 68.018 23 66.368 23zm3.819-9.687c-.082-1.16-.469-2.077-1.161-2.75-.693-.692-1.558-1.038-2.597-1.038h-.214c-.978 0-1.844.315-2.597.947-.734.611-1.212 1.558-1.437 2.841h8.006zM47.834 23c-1.324 0-2.516-.326-3.575-.978-1.039-.652-1.854-1.579-2.444-2.78-.591-1.202-.887-2.598-.887-4.187 0-1.588.306-2.984.917-4.186.611-1.201 1.446-2.128 2.506-2.78 1.08-.652 2.281-.978 3.605-.978 1.08 0 2.047.224 2.903.672.855.449 1.497 1.019 1.925 1.711V1.306h2.903v21.388h-2.903v-2.108c-.408.672-1.06 1.242-1.956 1.711-.896.469-1.894.703-2.994.703zm.58-2.475c.856 0 1.62-.234 2.292-.703.672-.468 1.192-1.11 1.558-1.925.387-.835.58-1.782.58-2.841 0-1.06-.193-1.997-.58-2.812-.366-.835-.886-1.487-1.558-1.955a3.911 3.911 0 00-2.292-.703h-.183c-1.304 0-2.363.51-3.178 1.528-.794 1.018-1.191 2.332-1.191 3.941 0 1.61.397 2.924 1.191 3.942.815 1.019 1.874 1.528 3.178 1.528h.183zM31.022 23c-1.406 0-2.679-.337-3.82-1.009a7.367 7.367 0 01-2.688-2.841c-.652-1.223-.978-2.587-.978-4.095 0-1.507.326-2.862.978-4.064.651-1.222 1.548-2.17 2.688-2.841 1.141-.693 2.414-1.04 3.82-1.04 1.405 0 2.668.347 3.789 1.04 1.14.672 2.037 1.62 2.688 2.841.652 1.202.978 2.557.978 4.064 0 1.508-.326 2.872-.977 4.095a7.367 7.367 0 01-2.69 2.841C33.69 22.663 32.428 23 31.023 23zm.06-2.476c.857 0 1.62-.224 2.293-.672.672-.468 1.201-1.11 1.589-1.925.386-.835.58-1.792.58-2.872 0-1.08-.194-2.027-.58-2.841-.388-.836-.917-1.477-1.59-1.925a3.911 3.911 0 00-2.291-.703H30.9c-1.304 0-2.373.51-3.209 1.528-.814.998-1.222 2.312-1.222 3.941 0 1.63.407 2.954 1.222 3.972.835.998 1.905 1.497 3.209 1.497h.183zM12.053 23c-2.037 0-3.82-.469-5.348-1.406-1.507-.957-2.668-2.271-3.483-3.941S2 14.098 2 12c0-2.098.407-3.982 1.222-5.653.835-1.67 2.017-2.974 3.545-3.91C8.294 1.478 10.057 1 12.053 1c1.609 0 3.055.316 4.338.947 1.304.611 2.363 1.477 3.178 2.597.815 1.1 1.304 2.374 1.467 3.82h-3.117c-.244-1.365-.876-2.465-1.894-3.3-1.019-.856-2.302-1.283-3.85-1.283h-.245c-1.385 0-2.597.356-3.636 1.069-1.039.713-1.833 1.69-2.383 2.933-.55 1.243-.825 2.648-.825 4.217 0 1.568.275 2.974.825 4.216.55 1.243 1.344 2.22 2.383 2.934 1.04.713 2.251 1.07 3.636 1.07h.245c1.548 0 2.831-.418 3.85-1.254 1.039-.855 1.68-1.976 1.925-3.36h3.086c-.184 1.446-.683 2.729-1.497 3.85-.795 1.12-1.844 1.996-3.148 2.627-1.303.611-2.75.917-4.338.917z"></path></svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Ebene_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1655.29 278.83">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 29.6.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 9) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: #edecec;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<path class="st0" d="M139.03,4.61h90.64v49.93h-87.57c-47.24,0-84.11,27.27-84.11,84.88s36.87,84.88,84.11,84.88h87.57v49.93h-94.48c-79.12,0-135.19-46.48-135.19-134.82S59.91,4.61,139.03,4.61Z"/>
|
|
12
|
+
<path class="st0" d="M275.75,4.61h56.07v164.76c0,41.09,18.82,60.3,62.99,60.3s62.99-19.2,62.99-60.3V4.61h56.07v176.28c0,59.91-38.02,97.94-119.06,97.94s-119.06-38.41-119.06-98.32V4.61Z"/>
|
|
13
|
+
<path class="st0" d="M806.9,81.04c0,29.96-17.28,53-40.33,62.99v.77c24.2,3.46,36.49,20.74,36.87,44.17l1.15,85.26h-56.07l-1.15-76.04c-.38-16.9-10.37-27.27-30.34-27.27h-93.33v103.31h-56.07V4.61h154.78c50.7,0,84.49,25.73,84.49,76.43h0ZM750.45,88.72c0-23.04-12.29-35.72-35.33-35.72h-91.41v71.43h92.17c21.12,0,34.57-12.67,34.57-35.72h0Z"/>
|
|
14
|
+
<path class="st0" d="M1018.9,195.49c0-19.2-12.29-27.27-30.72-28.8l-62.22-5.76c-53.77-4.99-81.81-26.12-81.81-77.2S878.72,4.61,928.26,4.61h137.49v48.39h-133.65c-19.2,0-31.49,9.99-31.49,29.19s12.67,28.42,31.88,29.96l63.37,5.38c48.01,4.22,79.5,26.12,79.5,77.58s-33.41,79.12-80.65,79.12h-143.64v-48.39h138.26c18.05,0,29.57-12.29,29.57-30.34h0Z"/>
|
|
15
|
+
<path class="st0" d="M1239.35,0c84.49,0,137.88,54.15,137.88,139.03s-55.69,139.8-140.18,139.8-137.88-54.92-137.88-139.8S1154.86,0,1239.35,0ZM1319.24,139.41c0-56.84-33.03-90.25-81.04-90.25s-81.04,33.41-81.04,90.25,33.03,90.25,81.04,90.25,81.04-33.41,81.04-90.25Z"/>
|
|
16
|
+
<path class="st0" d="M1655.29,81.04c0,29.96-17.28,53-40.33,62.99v.77c24.2,3.46,36.49,20.74,36.87,44.17l1.15,85.26h-56.07l-1.15-76.04c-.38-16.9-10.37-27.27-30.34-27.27h-93.33v103.31h-56.07V4.61h154.78c50.7,0,84.49,25.73,84.49,76.43h0ZM1598.83,88.72c0-23.04-12.29-35.72-35.33-35.72h-91.41v71.43h92.17c21.12,0,34.57-12.67,34.57-35.72h0Z"/>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 241 44"><path fill="#4D6BFE" d="M57.25 3.64c-.61-.31-.88.27-1.24.57-.12.09-.22.22-.33.33-.89.98-1.94 1.62-3.31 1.54-1.99-.11-3.7.53-5.21 2.08-.32-1.92-1.39-3.06-3.01-3.8-.85-.38-1.7-.76-2.3-1.59-.41-.6-.53-1.26-.73-1.91-.14-.39-.27-.79-.71-.86-.48-.07-.67.34-.86.68-.75 1.41-1.05 2.96-1.02 4.52.07 3.53 1.53 6.34 4.43 8.34.33.22.42.45.31.79-.19.69-.43 1.35-.64 2.04-.13.44-.33.54-.79.35-1.59-.68-2.97-1.68-4.19-2.9-2.06-2.03-3.93-4.28-6.26-6.04-.54-.41-1.09-.79-1.66-1.15-2.37-2.35.32-4.28.94-4.51.65-.24.22-1.06-1.88-1.06-2.1.01-4.02.73-6.48 1.69-.35.14-.73.25-1.12.33-2.22-.43-4.53-.52-6.95-.25C9.7 3.35 6.07 5.54 3.4 9.27.19 13.76-.56 18.87.36 24.19c.97 5.61 3.78 10.25 8.1 13.88 4.48 3.77 9.64 5.61 15.52 5.26 3.58-.21 7.56-.7 12.04-4.57 1.14.57 2.32.8 4.29.98 1.52.14 2.98-.08 4.12-.32 1.77-.38 1.65-2.05 1-2.36-5.19-2.46-4.05-1.46-5.09-2.27 2.64-3.19 6.62-6.49 8.18-17.2.12-.85.02-1.39 0-2.08-.01-.42.08-.58.55-.63 1.31-.15 2.57-.51 3.73-1.16 3.36-1.88 4.72-4.95 5.04-8.64.05-.57-.01-1.15-.59-1.44ZM27.91 36.83c-5.03-4.03-7.47-5.36-8.48-5.3-.94.06-.78 1.15-.57 1.87.22.71.5 1.2.9 1.82.27.41.46 1.02-.28 1.48-1.62 1.02-4.44-.35-4.57-.41-3.28-1.97-6.02-4.57-7.96-8.13-1.86-3.42-2.95-7.09-3.13-11-.04-.95.23-1.28 1.15-1.46 1.22-.22 2.47-.27 3.69-.09 5.14.76 9.51 3.1 13.18 6.81 2.1 2.11 3.68 4.64 5.31 7.1 1.74 2.62 3.6 5.11 5.98 7.16.84.72 1.51 1.26 2.15 1.66-1.93.22-5.16.27-7.37-1.51Zm2.42-15.81c0-.42.33-.76.74-.76.1 0 .18.02.26.05.1.04.2.1.27.18.13.14.21.33.21.53 0 .42-.33.75-.75.75-.41 0-.73-.33-.73-.75Zm7.49 3.91c-.48.21-.96.38-1.42.4-.72.03-1.5-.26-1.92-.62-.66-.57-1.13-.88-1.33-1.87-.09-.42-.04-1.07.04-1.44.17-.8-.02-1.32-.58-1.79-.45-.38-1.03-.49-1.66-.49-.23 0-.45-.1-.61-.19-.27-.13-.48-.46-.28-.88.07-.13.39-.45.47-.51.85-.5 1.84-.34 2.76.04.85.35 1.49 1 2.41 1.92.95 1.11 1.12 1.41 1.65 2.24.43.65.81 1.32 1.08 2.09.16.47-.05.87-.61 1.1ZM143.32 34.23h-2.49v-3.86h2.49c1.54 0 3.1-.38 4.11-1.45 1.01-1.07 1.38-2.71 1.38-4.35 0-1.63-.37-3.27-1.38-4.34-1.01-1.07-2.57-1.45-4.11-1.45-1.55 0-3.1.38-4.11 1.45-1.02 1.07-1.38 2.71-1.38 4.34v15.87h-4.37V14.92h4.37v1.62h.8c.08-.09.17-.18.27-.27 1.09-1 2.76-1.35 4.42-1.35 2.57 0 5.16.64 6.85 2.42 1.68 1.78 2.29 4.52 2.29 7.24 0 2.71-.61 5.45-2.29 7.23-1.69 1.79-4.28 2.42-6.85 2.42ZM76.79 15.59h2.49v3.86h-2.49c-1.54 0-3.1.38-4.11 1.46-1.01 1.07-1.38 2.71-1.38 4.34s.37 3.27 1.38 4.34c1.01 1.07 2.57 1.46 4.11 1.46 1.55 0 3.1-.39 4.11-1.46 1.02-1.07 1.38-2.71 1.38-4.34V9.39h4.37v25.52h-4.37v-1.63h-.8c-.08.1-.17.19-.27.27-1.09 1-2.76 1.36-4.42 1.36-2.57 0-5.16-.64-6.85-2.43-1.68-1.78-2.29-4.51-2.29-7.23 0-2.72.61-5.45 2.29-7.24 1.69-1.78 4.28-2.42 6.85-2.42ZM108.59 24.91v1.55H96.95v-3.1h7.72c-.18-1.13-.59-2.18-1.31-2.94-1.06-1.11-2.67-1.51-4.28-1.51-1.6 0-3.22.4-4.27 1.51-1.05 1.1-1.43 2.8-1.43 4.49 0 1.69.38 3.39 1.43 4.5 1.05 1.11 2.67 1.5 4.27 1.5 1.61 0 3.22-.39 4.28-1.5.15-.16.28-.33.4-.51h4.32c-.37 1.34-.98 2.55-1.88 3.5-1.75 1.85-4.45 2.51-7.12 2.51s-5.36-.66-7.11-2.51c-1.76-1.85-2.39-4.68-2.39-7.49 0-2.81.63-5.64 2.39-7.49 1.75-1.84 4.44-2.5 7.11-2.5s5.37.66 7.12 2.5c1.76 1.85 2.39 4.68 2.39 7.49ZM130.52 24.91v1.55h-11.64v-3.1h7.73c-.18-1.13-.59-2.18-1.32-2.94-1.05-1.11-2.66-1.51-4.27-1.51-1.6 0-3.22.4-4.27 1.51-1.05 1.1-1.43 2.8-1.43 4.49 0 1.69.38 3.39 1.43 4.5 1.05 1.11 2.67 1.5 4.27 1.5 1.61 0 3.22-.39 4.27-1.5.15-.16.29-.33.41-.51h4.32c-.38 1.34-.98 2.55-1.88 3.5-1.76 1.85-4.45 2.51-7.12 2.51s-5.36-.66-7.12-2.51c-1.75-1.85-2.38-4.68-2.38-7.49 0-2.81.63-5.64 2.38-7.49 1.76-1.84 4.45-2.5 7.12-2.5s5.36.66 7.12 2.5c1.75 1.85 2.38 4.68 2.38 7.49ZM164.9 34.91c2.67 0 5.36-.39 7.11-1.48 1.76-1.09 2.39-2.76 2.39-4.42 0-1.66-.63-3.33-2.39-4.42-1.75-1.09-4.44-1.48-7.11-1.48h.09c-1.14 0-2.29-.15-3.03-.58-.75-.42-1.02-1.07-1.02-1.71 0-.65.27-1.29 1.02-1.72.74-.42 1.89-.57 3.03-.57s2.29.15 3.04.57c.75.43 1.01 1.07 1.01 1.72h4.45c0-1.66-.57-3.33-2.15-4.42-1.59-1.09-4.02-1.48-6.44-1.48-2.42 0-4.85.39-6.44 1.48-1.59 1.09-2.16 2.76-2.16 4.42 0 1.66.57 3.33 2.16 4.42 1.59 1.09 4.02 1.48 6.44 1.48 1.26 0 2.63.15 3.46.57.83.42 1.12 1.07 1.12 1.72 0 .64-.29 1.29-1.12 1.71-.83.42-2.1.58-3.36.58-1.26 0-2.53-.16-3.35-.58-.83-.42-1.13-1.07-1.13-1.71h-5.12c0 1.66.63 3.33 2.38 4.42 1.75 1.09 4.44 1.48 7.12 1.48ZM196.33 24.91v1.55h-11.64v-3.1h7.73c-.18-1.13-.59-2.18-1.32-2.94-1.05-1.11-2.66-1.51-4.27-1.51-1.6 0-3.22.4-4.27 1.51-1.05 1.1-1.43 2.8-1.43 4.49 0 1.69.38 3.39 1.43 4.5 1.05 1.11 2.67 1.5 4.27 1.5 1.61 0 3.22-.39 4.27-1.5.15-.16.29-.33.41-.51h4.32c-.38 1.34-.98 2.55-1.88 3.5-1.76 1.85-4.45 2.51-7.12 2.51s-5.36-.66-7.12-2.51c-1.75-1.85-2.38-4.68-2.38-7.49 0-2.81.63-5.64 2.38-7.49 1.76-1.84 4.45-2.5 7.12-2.5s5.36.66 7.12 2.5c1.75 1.85 2.38 4.68 2.38 7.49ZM218.27 24.91v1.55h-11.64v-3.1h7.73c-.19-1.13-.59-2.18-1.32-2.94-1.05-1.11-2.67-1.51-4.27-1.51-1.6 0-3.22.4-4.27 1.51-1.06 1.1-1.43 2.8-1.43 4.49 0 1.69.37 3.39 1.43 4.5 1.05 1.11 2.67 1.5 4.27 1.5 1.6 0 3.22-.39 4.27-1.5.15-.16.28-.33.41-.51h4.32c-.38 1.34-.98 2.55-1.89 3.5-1.75 1.85-4.44 2.51-7.11 2.51s-5.37-.66-7.12-2.51c-1.75-1.85-2.38-4.68-2.38-7.49 0-2.81.63-5.64 2.38-7.49 1.75-1.84 4.45-2.5 7.12-2.5s5.36.66 7.11 2.5c1.76 1.85 2.39 4.68 2.39 7.49ZM221.211 8.5h4.371v26.416h-4.371zM233.04 24.31l7.17 10.6h-5.42l-7.17-10.6 7.17-8.5h5.42l-7.17 8.5Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 344 127" xmlns="http://www.w3.org/2000/svg" width="344" height="127" fill="none"><mask id="a" width="344" height="127" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="#fff" fill-rule="evenodd" d="M234.123 41.22c1.366 3.115 2.049 6.444 2.049 9.986 0-3.542.661-6.87 1.984-9.986 1.365-3.115 3.2-5.824 5.504-8.128 2.305-2.305 5.014-4.118 8.129-5.441 3.115-1.366 6.444-2.048 9.985-2.048-3.541 0-6.87-.662-9.985-1.985-3.115-1.365-5.824-3.2-8.129-5.504-2.304-2.304-4.139-5.014-5.504-8.129-1.323-3.115-1.984-6.443-1.984-9.985 0 3.542-.683 6.87-2.049 9.985-1.322 3.115-3.136 5.825-5.44 8.129-2.304 2.304-5.014 4.14-8.129 5.505-3.115 1.322-6.443 1.984-9.985 1.984 3.542 0 6.87.682 9.985 2.048 3.115 1.323 5.825 3.136 8.129 5.44 2.304 2.305 4.118 5.014 5.44 8.13Zm-207.97 81.92c5.223 2.151 10.792 3.226 16.706 3.226 5.991 0 11.444-.96 16.36-2.88 4.916-1.92 9.179-4.647 12.789-8.18 3.61-3.533 6.413-7.719 8.41-12.558 1.997-4.916 2.996-10.293 2.996-16.13v-.115c0-1.075-.077-2.074-.23-2.996a41.736 41.736 0 0 0-.346-2.88H43.09v9.563h29.955c-.308 4.608-1.383 8.602-3.226 11.982-1.767 3.303-4.033 6.029-6.798 8.18-2.688 2.15-5.799 3.763-9.332 4.839-3.456.998-7.066 1.498-10.83 1.498-4.148 0-8.18-.769-12.097-2.305a32.1 32.1 0 0 1-10.485-6.682c-2.995-2.919-5.376-6.414-7.143-10.484-1.766-4.148-2.65-8.795-2.65-13.941 0-5.146.845-9.755 2.535-13.826 1.767-4.147 4.148-7.642 7.143-10.484a30.841 30.841 0 0 1 10.37-6.682 34.063 34.063 0 0 1 12.327-2.304c3.15 0 6.145.422 8.987 1.267 2.842.768 5.453 1.882 7.834 3.341 2.458 1.46 4.57 3.226 6.337 5.3l7.143-7.374c-3.456-3.917-7.873-6.951-13.25-9.102-5.3-2.15-10.983-3.225-17.051-3.225-5.837 0-11.368 1.075-16.59 3.225a43.198 43.198 0 0 0-13.71 9.102c-3.918 3.917-6.99 8.487-9.218 13.71C1.114 71.448 0 77.132 0 83.278s1.114 11.828 3.341 17.051c2.228 5.223 5.3 9.793 9.217 13.711a41.862 41.862 0 0 0 13.595 9.101Zm77.905-.806c4.454 2.688 9.524 4.032 15.208 4.032 6.451 0 11.866-1.459 16.245-4.378 4.378-2.918 7.719-6.605 10.023-11.06l-8.756-4.148c-1.613 2.919-3.841 5.377-6.682 7.374-2.766 1.997-6.222 2.995-10.37 2.995-3.226 0-6.336-.806-9.332-2.419-2.995-1.613-5.453-4.033-7.373-7.258-1.659-2.788-2.602-6.206-2.827-10.254h46.262c.077-.384.115-.884.115-1.498.077-.615.115-1.19.115-1.728 0-5.838-1.152-11.022-3.456-15.554-2.228-4.532-5.454-8.065-9.678-10.6-4.225-2.611-9.255-3.917-15.093-3.917-5.761 0-10.791 1.46-15.093 4.378-4.301 2.842-7.642 6.644-10.023 11.406-2.305 4.762-3.457 9.947-3.457 15.554 0 5.991 1.23 11.329 3.687 16.015 2.535 4.685 6.03 8.372 10.485 11.06Zm-3.277-33.527c.362-1.71.879-3.323 1.548-4.839 1.46-3.303 3.572-5.914 6.337-7.834 2.842-1.997 6.145-2.996 9.908-2.996 3.149 0 5.799.538 7.95 1.613 2.151.999 3.917 2.304 5.3 3.917 1.382 1.613 2.381 3.342 2.995 5.185.615 1.767.96 3.418 1.037 4.954h-35.075Zm54.716-23.042v58.758h10.369v-32.72c0-3.226.653-6.26 1.959-9.102 1.306-2.842 3.111-5.108 5.415-6.798 2.304-1.766 4.916-2.65 7.834-2.65 4.071 0 7.22 1.191 9.448 3.572 2.304 2.304 3.456 6.26 3.456 11.867v35.831h10.254v-32.95c0-3.227.653-6.222 1.959-8.987 1.305-2.842 3.11-5.108 5.415-6.798 2.304-1.69 4.915-2.535 7.834-2.535 4.148 0 7.335 1.153 9.563 3.457 2.304 2.304 3.456 6.26 3.456 11.867v35.946h10.254V86.849c0-6.836-1.69-12.367-5.069-16.591-3.303-4.224-8.488-6.337-15.554-6.337-4.685 0-8.718 1.075-12.097 3.226-3.38 2.15-6.068 4.877-8.065 8.18-1.383-3.38-3.649-6.106-6.798-8.18-3.072-2.15-6.797-3.226-11.175-3.226-2.458 0-4.916.5-7.374 1.498-2.381.922-4.493 2.189-6.337 3.802-1.843 1.536-3.302 3.264-4.378 5.185h-.461v-8.641h-9.908Zm96.548 0v58.758h10.254V65.765h-10.254Zm-.115-12.443c1.459 1.382 3.188 2.073 5.185 2.073 2.073 0 3.802-.69 5.184-2.073 1.383-1.46 2.074-3.188 2.074-5.185 0-2.074-.691-3.802-2.074-5.184-1.382-1.46-3.111-2.19-5.184-2.19-1.997 0-3.726.73-5.185 2.19-1.383 1.382-2.074 3.11-2.074 5.184 0 1.997.691 3.725 2.074 5.185Zm19.999 12.443v58.758h10.369v-32.72c0-3.15.653-6.107 1.959-8.872 1.383-2.842 3.264-5.146 5.645-6.912 2.381-1.844 5.185-2.766 8.411-2.766 4.301 0 7.758 1.191 10.369 3.572 2.611 2.304 3.917 6.26 3.917 11.867v35.831h10.369V86.849c0-6.913-1.843-12.443-5.53-16.591-3.687-4.224-9.102-6.337-16.245-6.337-4.224 0-8.065 1.037-11.521 3.111-3.456 2.074-5.953 4.532-7.489 7.374h-.461v-8.641h-9.793Zm59.743 0v58.758h10.254V65.765h-10.254Zm-.115-12.443c1.459 1.382 3.188 2.073 5.185 2.073 2.073 0 3.802-.69 5.184-2.073 1.383-1.46 2.074-3.188 2.074-5.185 0-2.074-.691-3.802-2.074-5.184-1.382-1.46-3.111-2.19-5.184-2.19-1.997 0-3.726.73-5.185 2.19-1.382 1.382-2.074 3.11-2.074 5.184 0 1.997.692 3.725 2.074 5.185Z" clip-rule="evenodd"/></mask><g mask="url(#a)"><path fill="url(#b)" d="M-158.25-455.443h832.09v685.324h-832.09z"/></g><defs><linearGradient id="b" x1="-57.405" x2="354.97" y1="130.441" y2="30.369" gradientUnits="userSpaceOnUse"><stop stop-color="#439DDF"/><stop offset=".524" stop-color="#4F87ED"/><stop offset=".781" stop-color="#9476C5"/><stop offset=".888" stop-color="#BC688E"/><stop offset="1" stop-color="#D6645D"/></linearGradient></defs></svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="1024" height="400" viewBox="0 0 1024 400" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M878.447 292.85V108.548H907.572V230.18L969.173 159.399H1004.48L949.069 220.058L1005 292.85H970.204L924.902 230.304L907.572 230.18V292.85H878.447Z" fill="white"/>
|
|
3
|
+
<path d="M790.12 295.947C746.819 295.947 723.364 265.23 723.364 225.995C723.364 186.502 746.819 156.043 790.12 156.043C833.679 156.043 856.876 186.502 856.876 225.995C856.876 265.23 833.679 295.947 790.12 295.947ZM753.778 225.995C753.778 256.454 770.274 271.683 790.12 271.683C810.224 271.683 826.462 256.454 826.462 225.995C826.462 195.536 810.224 180.049 790.12 180.049C770.274 180.049 753.778 195.536 753.778 225.995Z" fill="white"/>
|
|
4
|
+
<path d="M642.304 292.85V180.565L666.789 159.399H718.854V184.179H671.429V292.85H642.304Z" fill="white"/>
|
|
5
|
+
<path d="M530.938 296.258C475.424 296.258 442.325 255.938 442.325 200.957C442.325 145.46 476.606 104.16 532.021 104.16C575.322 104.16 607.025 126.359 614.5 167.659H581.251C576.353 144.169 556.765 131.005 532.021 131.005C492.07 131.005 474.544 165.594 474.544 200.957C474.544 236.32 492.07 270.651 532.021 270.651C570.168 270.651 586.921 243.031 588.21 220.058H530.732V193.331H617.593L617.451 207.305C617.451 259.231 596.295 296.258 530.938 296.258Z" fill="white"/>
|
|
6
|
+
<path d="M163.591 251.367L288.916 158.716C295.06 154.174 303.842 155.946 306.769 163.001C322.178 200.209 315.294 244.924 284.638 275.625C253.982 306.326 211.328 313.059 172.34 297.724L129.75 317.472C190.837 359.287 265.016 348.946 311.369 302.492C348.137 265.67 359.524 215.479 348.877 170.217L348.973 170.314C333.533 103.822 352.769 77.2447 392.174 22.898C393.107 21.6094 394.04 20.3208 394.973 19L343.119 70.9306V70.7695L163.559 251.399" fill="white"/>
|
|
7
|
+
<path d="M137.728 273.885C93.8835 231.941 101.443 167.028 138.854 129.594C166.518 101.889 211.842 90.5817 251.409 107.205L293.902 87.5535C286.246 82.0125 276.435 76.0528 265.176 71.8648C214.287 50.8929 153.362 61.3305 111.994 102.727C72.2025 142.577 59.6893 203.85 81.1773 256.135C97.229 295.211 70.9158 322.852 44.4097 350.75C35.0167 360.64 25.5916 370.53 18 381L137.696 273.917" fill="white"/>
|
|
8
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="#fff" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 55 24"><path d="M13.998 2h4.277L15.76 7.645a3.9 3.9 0 0 1-2.297 2.104h2.1v.01a3.834 3.834 0 0 1 3.548 3.83V22h-3.825V11.852a2.99 2.99 0 0 1-2.713 1.736H5.825V22H2V2.035h3.825v7.714h4.787L13.998 2zM25.93 2h-3.815v20h3.815V2zm23.468 0h3.815v20h-3.815V2zM28.936 22V2h3.855l4.888 7.828L42.557 2h3.836v20h-3.815V9.183l-4.896 7.855-4.93-7.898V22h-3.816z" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg width="207" height="60" viewBox="0 0 207 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_9205_88649)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.77553 8.5585C3.25768 9.62185 3.69368 10.9067 4.74937 11.4283C6.26569 12.1775 7.58154 12.9163 8.88438 14.3958C9.66463 15.2819 11.0103 15.3631 11.89 14.5772C12.7697 13.7913 12.8503 12.4359 12.07 11.5498C10.2135 9.44143 8.30249 8.40658 6.62468 7.57758C5.56899 7.05597 4.29338 7.49514 3.77553 8.5585Z" fill="white"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2829 2.31436C14.1422 2.60161 13.4486 3.76596 13.7338 4.915C13.933 5.71776 14.1188 6.40418 14.2889 7.03255C14.6145 8.23523 14.8825 9.22524 15.0769 10.4113C15.2684 11.5799 16.3642 12.3708 17.5243 12.1779C18.6845 11.985 19.4697 10.8813 19.2782 9.71271C19.0485 8.31087 18.6907 6.98449 18.3316 5.65319C18.1726 5.06367 18.0133 4.47318 17.8648 3.87474C17.5796 2.7257 16.4237 2.0271 15.2829 2.31436Z" fill="white"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.4536 3.63371C26.4484 3.01931 25.1389 3.3421 24.529 4.35467C23.3975 6.23301 22.8027 8.08251 22.2502 10.3084C21.965 11.4574 22.6586 12.6218 23.7994 12.909C24.9401 13.1963 26.0961 12.4977 26.3813 11.3486C26.8933 9.28543 27.3631 7.91811 28.1694 6.57962C28.7794 5.56705 28.4589 4.24812 27.4536 3.63371Z" fill="white"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.3081 56.6111C42.4367 53.9726 45.2914 39.8222 44.6634 35.6085C44.6634 35.6085 44.009 33.3464 42.4122 33.3463C41.1887 33.3462 40.5127 34.3409 40.2634 34.8062C40.0478 34.7264 39.8283 34.6541 39.6542 34.5979C39.5603 34.5676 39.4287 34.5258 39.3054 34.4865L39.0714 34.412C38.8803 34.3507 38.7005 34.2917 38.5311 34.2332L38.5316 34.1732C38.539 32.8056 38.3999 30.6713 36.9833 28.4475C36.7566 28.0917 36.5427 27.7735 36.3598 27.5037L36.2451 27.3346C36.109 27.1342 36.0022 26.9769 35.8995 26.82C35.6473 26.4349 35.5784 26.2865 35.5517 26.2181L35.5505 26.215C35.5401 26.1885 35.5188 26.1345 35.513 25.9699C35.5059 25.7676 35.5231 25.3847 35.6543 24.715L36.3362 21.9901L36.3387 21.976C36.3837 21.7259 36.4241 21.5011 36.4461 21.135C36.4664 20.798 36.4706 20.3083 36.385 19.7402C36.2228 18.6643 35.6007 16.6247 33.4082 15.4424C32.8724 15.1535 32.2306 14.9805 31.5979 14.8978C31.1726 14.8422 30.604 14.8041 29.9437 14.8551C28.5966 14.9591 26.8289 15.4442 25.2553 16.8869L24.8634 17.2991C23.9487 18.4039 22.9826 19.7718 22.2497 20.9824C20.0245 19.9349 17.4052 18.7324 15.5751 18.0859C13.5665 17.3763 11.3247 16.7825 9.21803 16.8589C6.88494 16.9436 4.26175 17.9217 2.88844 20.6901C2.32428 21.8273 2.08356 23.1555 2.37327 24.5398C2.65011 25.8625 3.33481 26.8743 3.98873 27.5802C5.20287 28.8908 6.82919 29.7027 7.97538 30.1948C8.85298 30.5717 9.75469 30.8852 10.553 31.1389C10.4687 31.2916 10.3842 31.4496 10.3028 31.6098C10.0614 32.0845 9.7726 32.7195 9.58247 33.4461C9.39287 34.1706 9.24339 35.2029 9.51365 36.3674C9.79106 37.5627 10.34 38.4961 10.9939 39.21C10.9691 39.5813 10.9598 39.9726 10.9736 40.3773C11.0656 43.0813 12.7167 44.8839 14.1689 45.9061C15.5526 46.88 17.1821 47.4777 18.4996 47.8796C19.7718 48.2677 21.1152 48.5757 22.2067 48.8259L22.4403 48.8795C23.6036 49.1467 24.7533 49.4559 25.9035 49.7651C27.208 50.1159 28.5131 50.4669 29.8391 50.7569C30.2728 50.8518 30.6942 50.9426 31.0819 51.0254L31.2231 51.3934C32.9433 55.7891 35.2401 58.5717 38.3081 56.6111ZM22.5906 38.6197C22.3551 38.524 22.22 38.4606 22.1001 38.4001C21.0582 37.858 19.7765 38.2667 19.2346 39.3151C18.6915 40.3657 19.098 41.6613 20.1409 42.2083C20.2264 42.2529 20.3131 42.295 20.4003 42.3361C20.5464 42.405 20.7499 42.4967 20.9977 42.5974C21.4864 42.7959 22.1812 43.0431 22.9688 43.2114C24.3667 43.5101 26.9506 43.7379 28.7024 41.7154C29.5434 40.7445 29.9477 39.4688 30.1013 38.276C30.2595 37.0471 30.1806 35.699 29.8718 34.3868C29.2636 31.8021 27.6535 28.9737 24.647 27.6323C22.0709 26.4829 19.5252 26.2127 17.3783 26.4552C15.945 26.617 14.5756 27.0233 13.4756 27.6425V27.5949C10.7855 26.8211 5.43209 25.2812 6.75042 22.6237C7.74981 20.609 10.4879 20.7756 14.2017 22.0876C15.7101 22.6205 17.8062 23.57 19.7834 24.496C20.3963 24.7831 20.9978 25.0679 21.5668 25.3373C22.3961 25.7299 23.7825 26.3767 23.7825 26.3767C25.3595 24.4704 25.9718 23.4204 26.5122 22.4935C26.8839 21.8561 27.2216 21.2769 27.8158 20.5176C28.6568 19.4428 30.0162 18.7786 31.4107 19.1675C32.3826 19.6916 32.1357 21.0154 32.1357 21.0154L31.4602 23.7145C30.8154 26.8909 31.5291 27.9421 32.7055 29.6745C32.9121 29.9788 33.1331 30.3042 33.3634 30.6658C34.3016 32.1385 34.2583 33.5547 34.2229 34.7105C34.2001 35.4539 34.1807 36.0896 34.4278 36.5633C34.9368 37.5391 36.8416 38.1442 38.0904 38.5409C38.3905 38.6362 38.6527 38.7196 38.8486 38.7931L38.9824 38.8461C38.8064 39.3959 38.6465 39.9651 38.4867 40.5336C37.7763 43.0623 37.0691 45.5795 34.9604 46.3338C32.2991 47.2857 29.6377 46.385 29.6377 46.385C29.158 46.2438 28.6695 46.1345 28.181 46.0252C27.5721 45.8889 26.963 45.7525 26.3702 45.5544C25.5441 45.2455 24.3869 44.98 23.1293 44.6914C20.1348 44.0044 16.5708 43.1867 15.5502 41.341C15.3783 41.0301 15.2785 40.69 15.2658 40.3165C15.2081 38.6191 15.7985 37.0994 15.7985 37.0994C15.7985 37.0994 14.8829 37.1032 14.2408 36.481C14.0014 36.2491 13.8001 35.9302 13.6983 35.4917C13.495 34.6157 13.6696 33.346 14.7341 32.2738L15.2676 31.7379C15.5371 31.4664 16.336 30.8888 17.8528 30.7176C19.2926 30.555 21.075 30.7296 22.9224 31.5539C24.3394 32.1861 25.3192 33.6366 25.7284 35.376C25.9284 36.2259 25.9651 37.0512 25.8784 37.7244C25.7871 38.4338 25.586 38.7892 25.4938 38.8956C25.3792 39.0279 24.9756 39.2557 23.8525 39.0157C23.3797 38.9147 22.9306 38.7578 22.5906 38.6197Z" fill="white"/>
|
|
7
|
+
<path d="M191.202 40.9312H189.924V33.4237H191.656C192.124 35.4037 192.797 36.8475 193.677 37.755C194.557 38.6625 195.699 39.1162 197.101 39.1162C198.119 39.1162 198.902 38.91 199.452 38.4975C200.03 38.0575 200.319 37.4662 200.319 36.7237C200.319 35.9537 199.975 35.2112 199.287 34.4962C198.6 33.7537 197.486 32.97 195.946 32.145C193.856 31.0175 192.357 29.9037 191.45 28.8037C190.542 27.6762 190.089 26.4112 190.089 25.0087C190.089 24.1012 190.254 23.2625 190.584 22.4925C190.941 21.695 191.409 21.0075 191.986 20.43C192.591 19.8525 193.306 19.4125 194.131 19.11C194.956 18.78 195.85 18.615 196.812 18.615C197.665 18.615 198.504 18.7387 199.329 18.9862C200.181 19.2337 200.924 19.5775 201.556 20.0175L202.299 19.0275H203.371V25.2562H201.762C201.13 23.6887 200.47 22.5612 199.782 21.8737C199.122 21.1862 198.311 20.8425 197.349 20.8425C196.579 20.8425 195.96 21.0487 195.492 21.4612C195.052 21.8737 194.832 22.4237 194.832 23.1112C194.832 23.8812 195.162 24.61 195.822 25.2975C196.51 25.985 197.637 26.7412 199.205 27.5662C200.305 28.1712 201.254 28.7625 202.051 29.34C202.849 29.9175 203.495 30.5087 203.99 31.1137C204.485 31.6912 204.842 32.31 205.062 32.97C205.31 33.6025 205.434 34.29 205.434 35.0325C205.434 35.995 205.255 36.8612 204.897 37.6312C204.54 38.4012 204.031 39.0612 203.371 39.6112C202.711 40.1612 201.914 40.5875 200.979 40.89C200.071 41.1925 199.054 41.3437 197.926 41.3437C196.744 41.3437 195.644 41.1925 194.626 40.89C193.609 40.56 192.77 40.0925 192.11 39.4875L191.202 40.9312Z" fill="white"/>
|
|
8
|
+
<path d="M178.044 25.8337C178.044 24.7337 178.017 23.8675 177.962 23.235C177.907 22.575 177.756 22.08 177.508 21.75C177.261 21.3925 176.889 21.1587 176.394 21.0487C175.927 20.9112 175.281 20.8012 174.456 20.7187V19.0687H183.778V31.5675C183.778 33.245 183.792 34.565 183.819 35.5275C183.874 36.4625 183.957 37.1637 184.067 37.6312C184.149 37.9887 184.246 38.2775 184.356 38.4975C184.466 38.69 184.644 38.855 184.892 38.9925C185.139 39.1025 185.469 39.185 185.882 39.24C186.322 39.2675 186.886 39.2812 187.573 39.2812V40.89L179.364 41.385L178.911 37.7137H178.746C178.031 38.8687 177.027 39.7625 175.734 40.395C174.442 41.0275 172.998 41.3437 171.403 41.3437C168.461 41.3437 166.219 40.2987 164.679 38.2087C163.497 36.6137 162.906 34.345 162.906 31.4025V25.8337C162.906 24.7062 162.878 23.8262 162.823 23.1937C162.768 22.5337 162.617 22.0387 162.369 21.7087C162.149 21.3787 161.806 21.1587 161.338 21.0487C160.871 20.9112 160.224 20.8012 159.399 20.7187V19.0687H168.639V30.7425C168.639 33.52 168.983 35.5412 169.671 36.8062C170.358 38.0437 171.458 38.6625 172.971 38.6625C174.593 38.6625 175.844 37.92 176.724 36.435C177.604 35.005 178.044 32.9012 178.044 30.1237V25.8337Z" fill="white"/>
|
|
9
|
+
<path d="M139.906 34.2075C139.906 35.335 139.934 36.2287 139.989 36.8887C140.071 37.5212 140.222 38.0162 140.442 38.3737C140.69 38.7037 141.047 38.9237 141.515 39.0337C142.01 39.1437 142.67 39.2262 143.495 39.2812V40.9312H130.501V39.2812C131.299 39.2262 131.931 39.1437 132.399 39.0337C132.894 38.9237 133.265 38.7037 133.512 38.3737C133.787 38.0437 133.966 37.5762 134.049 36.9712C134.131 36.3662 134.172 35.5412 134.172 34.4962V29.34C134.172 27.7175 134.145 26.4112 134.09 25.4212C134.035 24.4037 133.966 23.7162 133.884 23.3587C133.801 23.0012 133.691 22.7125 133.554 22.4925C133.416 22.245 133.21 22.0662 132.935 21.9562C132.66 21.8187 132.316 21.7362 131.904 21.7087C131.491 21.6537 130.969 21.6262 130.336 21.6262V20.2237L138.297 18.6562L138.834 22.2862H138.999C139.906 21.1312 140.979 20.2375 142.216 19.605C143.454 18.9725 144.815 18.6562 146.3 18.6562C148.06 18.6562 149.476 18.9037 150.549 19.3987C151.649 19.8662 152.625 20.6637 153.477 21.7912C153.945 22.4237 154.357 23.2487 154.715 24.2662C155.072 25.2562 155.251 26.6312 155.251 28.3912V34.2075C155.251 35.335 155.279 36.2287 155.334 36.8887C155.416 37.5212 155.567 38.0162 155.787 38.3737C156.035 38.7037 156.392 38.9237 156.86 39.0337C157.327 39.1437 157.96 39.2262 158.757 39.2812V40.9312H145.846V39.2812C146.671 39.2537 147.317 39.185 147.785 39.075C148.28 38.9375 148.651 38.7037 148.899 38.3737C149.146 38.0437 149.311 37.5762 149.394 36.9712C149.476 36.3387 149.517 35.5137 149.517 34.4962V28.8862C149.517 27.4837 149.435 26.3012 149.27 25.3387C149.105 24.3762 148.83 23.6062 148.445 23.0287C148.087 22.4237 147.606 21.9975 147.001 21.75C146.396 21.475 145.64 21.3375 144.732 21.3375C143.852 21.3375 143.096 21.585 142.464 22.08C141.831 22.575 141.281 23.2625 140.814 24.1425C140.566 24.6375 140.346 25.2837 140.154 26.0812C139.989 26.8512 139.906 27.6625 139.906 28.515V34.2075Z" fill="white"/>
|
|
10
|
+
<path d="M120.221 29.175C117.911 30.22 116.165 31.1962 114.982 32.1037C113.827 32.9837 113.25 33.905 113.25 34.8675C113.25 35.665 113.47 36.2975 113.91 36.765C114.35 37.2325 114.9 37.4662 115.56 37.4662C116.22 37.4662 116.838 37.3562 117.416 37.1362C117.993 36.8887 118.488 36.5725 118.901 36.1875C119.313 35.8025 119.63 35.3487 119.85 34.8262C120.097 34.2762 120.221 33.6987 120.221 33.0937V29.175ZM120.221 26.9887V25.2562C120.221 23.6612 119.932 22.5062 119.355 21.7912C118.805 21.0487 117.938 20.6775 116.756 20.6775C115.958 20.6775 115.353 20.8975 114.941 21.3375C114.528 21.75 114.143 22.4512 113.786 23.4412C113.538 24.1287 113.181 24.665 112.713 25.05C112.273 25.435 111.655 25.6275 110.857 25.6275C110.087 25.6275 109.496 25.3937 109.083 24.9262C108.671 24.4587 108.465 23.7987 108.465 22.9462C108.465 21.6262 109.18 20.5812 110.61 19.8112C112.067 19.0412 114.253 18.6562 117.168 18.6562C120.248 18.6562 122.448 19.22 123.768 20.3475C125.088 21.4475 125.748 23.3037 125.748 25.9162V34.95C125.748 37.2875 126.216 38.4562 127.151 38.4562C127.673 38.4562 128.155 38.2775 128.595 37.92L129.213 39.1162C128.828 39.8037 128.223 40.3537 127.398 40.7662C126.601 41.1512 125.693 41.3437 124.676 41.3437C123.411 41.3437 122.448 40.9587 121.788 40.1887C121.128 39.4187 120.798 38.3325 120.798 36.93H120.592C119.795 38.36 118.763 39.4462 117.498 40.1887C116.233 40.9312 114.79 41.3025 113.167 41.3025C111.435 41.3025 110.046 40.8212 109.001 39.8587C107.956 38.8687 107.433 37.59 107.433 36.0225C107.433 34.8125 107.97 33.685 109.042 32.64C110.115 31.5675 111.902 30.5225 114.405 29.505L120.221 26.9887Z" fill="white"/>
|
|
11
|
+
<path d="M71.445 34.125C71.445 35.28 71.4725 36.1875 71.5275 36.8475C71.5825 37.5075 71.7338 38.0162 71.9813 38.3737C72.2287 38.7037 72.5862 38.9237 73.0537 39.0337C73.5213 39.1437 74.1675 39.2262 74.9925 39.2812V40.9312H61.9575V39.2812C62.7825 39.2262 63.4425 39.1437 63.9375 39.0337C64.4325 38.9237 64.8038 38.7037 65.0513 38.3737C65.2988 38.0437 65.4637 37.5762 65.5462 36.9712C65.6287 36.3387 65.67 35.5 65.67 34.455V29.34C65.67 27.7725 65.6425 26.4662 65.5875 25.4212C65.56 24.3762 65.4912 23.6612 65.3813 23.2762C65.2987 22.9187 65.1888 22.6437 65.0513 22.4512C64.9413 22.2312 64.7488 22.0662 64.4737 21.9562C64.2262 21.8187 63.8963 21.7362 63.4837 21.7087C63.0712 21.6537 62.535 21.6262 61.875 21.6262V20.2237L69.8363 18.6562L70.3312 22.245H70.5787C71.7338 20.9525 72.8888 20.0312 74.0437 19.4812C75.2262 18.9312 76.5875 18.6562 78.1275 18.6562C79.9425 18.6562 81.4412 18.9725 82.6237 19.605C83.8062 20.2375 84.7 21.145 85.305 22.3275H85.47C86.46 21.1725 87.6425 20.2787 89.0175 19.6462C90.3925 18.9862 91.8637 18.6562 93.4312 18.6562C95.0812 18.6562 96.5112 18.8625 97.7212 19.275C98.9587 19.6875 99.9212 20.2787 100.609 21.0487C101.159 21.6812 101.557 22.5062 101.805 23.5237C102.08 24.5412 102.217 25.9575 102.217 27.7725V34.125C102.217 35.2525 102.245 36.1462 102.3 36.8062C102.382 37.4662 102.547 37.975 102.795 38.3325C103.042 38.69 103.4 38.9237 103.867 39.0337C104.335 39.1437 104.981 39.2262 105.806 39.2812V40.9312H92.7712V39.2812C93.5963 39.2537 94.2425 39.185 94.71 39.075C95.205 38.9375 95.5762 38.7037 95.8237 38.3737C96.0987 38.0162 96.2637 37.535 96.3187 36.93C96.4012 36.325 96.4425 35.5 96.4425 34.455V29.0512C96.4425 27.6212 96.36 26.4112 96.195 25.4212C96.03 24.4312 95.7687 23.6337 95.4112 23.0287C95.0537 22.4237 94.5725 21.9975 93.9675 21.75C93.39 21.475 92.675 21.3375 91.8225 21.3375C90.86 21.3375 90.0625 21.5712 89.43 22.0387C88.825 22.5062 88.3162 23.1112 87.9037 23.8537C87.1888 25.1462 86.8313 26.755 86.8313 28.68V34.125C86.8313 35.2525 86.8587 36.1462 86.9137 36.8062C86.9687 37.4662 87.12 37.975 87.3675 38.3325C87.615 38.69 87.9725 38.9237 88.44 39.0337C88.935 39.1437 89.6087 39.2262 90.4612 39.2812V40.9312H77.385V39.2812C78.21 39.2262 78.8562 39.1437 79.3237 39.0337C79.8187 38.9237 80.19 38.7037 80.4375 38.3737C80.7125 38.0437 80.8775 37.5762 80.9325 36.9712C81.015 36.3387 81.0563 35.5 81.0563 34.455V29.0512C81.0563 27.6212 80.9737 26.4112 80.8087 25.4212C80.6437 24.4312 80.3688 23.6337 79.9838 23.0287C79.6262 22.4237 79.145 21.9975 78.54 21.75C77.935 21.475 77.1788 21.3375 76.2713 21.3375C75.3638 21.3375 74.6075 21.5575 74.0025 21.9975C73.425 22.4375 72.9437 23.0287 72.5588 23.7712C72.2013 24.4312 71.9263 25.1875 71.7338 26.04C71.5412 26.8925 71.445 27.7725 71.445 28.68V34.125Z" fill="white"/>
|
|
12
|
+
</g>
|
|
13
|
+
<defs>
|
|
14
|
+
<clipPath id="clip0_9205_88649">
|
|
15
|
+
<rect width="206.25" height="60" fill="white"/>
|
|
16
|
+
</clipPath>
|
|
17
|
+
</defs>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<svg viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="lobster-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
+
<stop offset="0%" stop-color="#ff4d4d"/>
|
|
5
|
+
<stop offset="100%" stop-color="#991b1b"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
</defs>
|
|
8
|
+
<!-- Body -->
|
|
9
|
+
<path d="M60 10 C30 10 15 35 15 55 C15 75 30 95 45 100 L45 110 L55 110 L55 100 C55 100 60 102 65 100 L65 110 L75 110 L75 100 C90 95 105 75 105 55 C105 35 90 10 60 10Z" fill="url(#lobster-gradient)"/>
|
|
10
|
+
<!-- Left Claw -->
|
|
11
|
+
<path d="M20 45 C5 40 0 50 5 60 C10 70 20 65 25 55 C28 48 25 45 20 45Z" fill="url(#lobster-gradient)"/>
|
|
12
|
+
<!-- Right Claw -->
|
|
13
|
+
<path d="M100 45 C115 40 120 50 115 60 C110 70 100 65 95 55 C92 48 95 45 100 45Z" fill="url(#lobster-gradient)"/>
|
|
14
|
+
<!-- Antenna -->
|
|
15
|
+
<path d="M45 15 Q35 5 30 8" stroke="#ff4d4d" stroke-width="3" stroke-linecap="round"/>
|
|
16
|
+
<path d="M75 15 Q85 5 90 8" stroke="#ff4d4d" stroke-width="3" stroke-linecap="round"/>
|
|
17
|
+
<!-- Eyes -->
|
|
18
|
+
<circle cx="45" cy="35" r="6" fill="#050810"/>
|
|
19
|
+
<circle cx="75" cy="35" r="6" fill="#050810"/>
|
|
20
|
+
<circle cx="46" cy="34" r="2.5" fill="#00e5cc"/>
|
|
21
|
+
<circle cx="76" cy="34" r="2.5" fill="#00e5cc"/>
|
|
22
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 1588 400"><path fill="#20808d" fill-rule="evenodd" d="m101.008 42 89.982 82.905V42.191h17.516v83.085L298.891 42v94.524H336v136.342h-36.995v84.169l-90.499-79.51v80.423H190.99v-79.112L101.11 358v-85.134H64V136.524h37.008V42Zm76.777 111.826h-96.27v101.738h19.573v-32.092l76.697-69.646Zm-59.16 77.323v88.243l72.365-63.737v-90.234l-72.365 65.728Zm90.385 23.663v-89.476l72.386 65.732v41.798h.093v45.625l-72.479-63.679Zm89.995.752h19.479V153.826h-95.552l76.073 68.925v32.813Zm-17.63-119.04V81.798l-59.398 54.726h59.398Zm-103.454 0h-59.397V81.798l59.397 54.726Z" clip-rule="evenodd"/><path fill="#fff" d="M768.761 134.448h11.121v22.918h-14.396c-11.282 0-19.696 2.714-25.273 8.158-5.544 5.427-8.332 14.353-8.332 26.76v75.148h-22.728V134.971h22.728v21.137c0 1.193.6 1.782 1.767 1.782.665 0 1.167-.164 1.524-.507.356-.344.664-1.014 1.021-2.044 4.377-13.911 15.255-20.875 32.584-20.875h-.016v-.016Zm151.184 28.395c5.966 10.609 8.965 23.393 8.965 38.334 0 14.941-2.983 27.725-8.965 38.334-5.982 10.61-13.731 18.554-23.247 23.818-9.515 5.264-19.745 7.896-30.687 7.896-21.561 0-36.718-8.664-45.472-25.992-.665-1.357-1.524-2.044-2.529-2.044s-1.524.507-1.524 1.537v71.078h-22.728v-180.85h22.728v22.674c0 1.013.503 1.537 1.524 1.537s1.848-.671 2.529-2.044c8.754-17.328 23.911-25.992 45.472-25.992 10.942 0 21.172 2.632 30.687 7.896 9.516 5.264 17.249 13.208 23.247 23.818Zm-13.747 38.334c0-15.628-4.166-27.807-12.499-36.552-8.332-8.746-19.307-13.111-32.973-13.111s-24.641 4.381-32.973 13.111c-8.349 8.745-11.396 20.94-11.396 36.552 0 15.612 3.063 27.807 11.396 36.552 8.332 8.763 19.323 13.111 32.973 13.111 13.65 0 24.641-4.381 32.973-13.111 8.333-8.729 12.499-20.94 12.499-36.552ZM537.17 163.039c5.966 10.609 8.965 23.393 8.965 38.334 0 14.942-2.983 27.725-8.965 38.334-5.982 10.61-13.73 18.555-23.246 23.818-9.516 5.264-19.745 7.896-30.688 7.896-21.56 0-36.718-8.664-45.472-25.992-.664-1.357-1.523-2.043-2.529-2.043-1.005 0-1.523.506-1.523 1.536V316H411V135.151h22.728v22.673c0 1.014.502 1.537 1.524 1.537 1.021 0 1.848-.67 2.529-2.044 8.754-17.328 23.911-25.992 45.472-25.992 10.942 0 21.171 2.632 30.687 7.896 9.516 5.264 17.249 13.209 23.247 23.818h-.017Zm-13.763 38.334c0-15.628-4.166-27.806-12.498-36.552-8.333-8.73-19.324-13.111-32.974-13.111-13.649 0-24.64 4.381-32.973 13.111-8.332 8.762-11.396 20.941-11.396 36.552 0 15.612 3.064 27.807 11.396 36.553 8.333 8.762 19.307 13.11 32.973 13.11s24.641-4.381 32.974-13.11c8.332-8.73 12.498-20.941 12.498-36.553Zm145.575 23.982h23.993c-3.194 12.407-9.727 23.147-19.567 32.22-9.857 9.089-23.96 13.617-42.327 13.617-13.812 0-25.97-2.844-36.491-8.533s-18.643-13.781-24.382-24.325c-5.738-10.527-8.591-22.919-8.591-37.19 0-14.271 2.788-26.662 8.332-37.19 5.544-10.527 13.342-18.636 23.36-24.324 10.019-5.689 21.755-8.534 35.227-8.534 13.471 0 24.64 2.812 33.978 8.403 9.354 5.607 16.324 13.045 20.961 22.281 4.636 9.269 6.938 19.404 6.938 30.439v15.284h-104.82c.826 13.242 5.268 23.786 13.26 31.583 7.992 7.814 18.74 11.721 32.212 11.721 10.942 0 19.339-2.239 25.143-6.751 5.803-4.512 10.051-10.74 12.758-18.734l.016.033Zm-83.859-36.929h79.32c0-11.541-2.95-20.597-8.851-27.136-5.901-6.523-15.157-9.809-27.786-9.809-11.785 0-21.431 3.188-28.92 9.564-7.49 6.359-12.077 15.497-13.763 27.381ZM947.244 267.4h22.744V84h-22.744v183.416-.016Zm319.646-146.913h26.56V91.814h-26.56v28.673Zm98.06 127.182c-4.13.425-6.63.637-7.45.637-1.17 0-2.13-.343-2.79-1.03-.67-.67-1.02-1.602-1.02-2.812 0-.833.22-3.351.65-7.519.4-4.152.63-10.577.63-19.225v-63.378h32.42l-6.39-19.404h-26.02v-35.67h-22.72v35.654h-24.73v19.404h24.73v69.737c0 14.615 3.55 25.485 10.61 32.613 7.07 7.127 17.85 10.707 32.35 10.707h17.68v-20.368h-8.85c-8.59 0-14.95.212-19.08.637l-.02.017Zm137.39-112.731-37.64 111.145c-.5 1.373-1.3 3.155-3.87 3.155-2.58 0-3.39-1.782-3.9-3.155l-37.64-111.145h-23.18L1439.7 267.4h15.42c1 0 1.77.098 2.29.261.5.164.92.589 1.26 1.275.66 1.014.58 2.55-.26 4.578l-7.07 19.355c-1.02 2.55-2.95 3.825-5.8 3.825-1.02 0-3.37-.213-7.07-.638-3.71-.425-8.49-.637-14.39-.637h-18.45v20.368h24.25c14.15 0 22.66-2.419 29.99-7.258 7.33-4.838 13-13.372 17.05-25.599L1524 140.022v-5.084h-21.66Zm-312.38 49.418-35.62-49.418h-25.01v5.084l42.68 57.313-52.04 64.964v5.084h25.52l41.43-53.243 38.65 53.243h24.51v-5.084l-45.23-61.138 49.03-60.877v-5.346h-25.52l-38.39 49.418h-.01Zm79.35 83.044h22.74V134.954h-22.74v132.462-.016Zm-149.65-42.045c-3.21 12.407-9.72 23.147-19.56 32.22-9.86 9.089-23.96 13.617-42.33 13.617-13.81 0-25.97-2.844-36.49-8.533-10.54-5.689-18.64-13.781-24.381-24.325-5.723-10.527-8.576-22.919-8.576-37.19 0-14.271 2.788-26.662 8.333-37.19 5.564-10.527 13.344-18.636 23.364-24.324 10.01-5.689 21.75-8.534 35.24-8.534 13.49 0 24.64 2.812 33.99 8.403 9.34 5.607 16.33 13.045 20.96 22.281 4.64 9.269 6.94 19.404 6.94 30.439v15.284h-104.83c.84 13.242 5.26 23.786 13.26 31.583 7.99 7.814 18.74 11.721 32.21 11.721 10.94 0 19.34-2.239 25.14-6.751 5.8-4.512 10.05-10.74 12.74-18.734h24.01l-.02.033Zm-107.28-36.929h79.32c0-11.541-2.95-20.597-8.83-27.136-5.91-6.523-15.16-9.809-27.79-9.809-11.79 0-21.43 3.188-28.92 9.564-7.49 6.359-12.09 15.497-13.76 27.381h-.02Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="#ffff" fill-rule="evenodd" height="1em" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Qwen</title><path d="M12.604 1.34c.393.69.784 1.382 1.174 2.075a.18.18 0 00.157.091h5.552c.174 0 .322.11.446.327l1.454 2.57c.19.337.24.478.024.837-.26.43-.513.864-.76 1.3l-.367.658c-.106.196-.223.28-.04.512l2.652 4.637c.172.301.111.494-.043.77-.437.785-.882 1.564-1.335 2.34-.159.272-.352.375-.68.37-.777-.016-1.552-.01-2.327.016a.099.099 0 00-.081.05 575.097 575.097 0 01-2.705 4.74c-.169.293-.38.363-.725.364-.997.003-2.002.004-3.017.002a.537.537 0 01-.465-.271l-1.335-2.323a.09.09 0 00-.083-.049H4.982c-.285.03-.553-.001-.805-.092l-1.603-2.77a.543.543 0 01-.002-.54l1.207-2.12a.198.198 0 000-.197 550.951 550.951 0 01-1.875-3.272l-.79-1.395c-.16-.31-.173-.496.095-.965.465-.813.927-1.625 1.387-2.436.132-.234.304-.334.584-.335a338.3 338.3 0 012.589-.001.124.124 0 00.107-.063l2.806-4.895a.488.488 0 01.422-.246c.524-.001 1.053 0 1.583-.006L11.704 1c.341-.003.724.032.9.34zm-3.432.403a.06.06 0 00-.052.03L6.254 6.788a.157.157 0 01-.135.078H3.253c-.056 0-.07.025-.041.074l5.81 10.156c.025.042.013.062-.034.063l-2.795.015a.218.218 0 00-.2.116l-1.32 2.31c-.044.078-.021.118.068.118l5.716.008c.046 0 .08.02.104.061l1.403 2.454c.046.081.092.082.139 0l5.006-8.76.783-1.382a.055.055 0 01.096 0l1.424 2.53a.122.122 0 00.107.062l2.763-.02a.04.04 0 00.035-.02.041.041 0 000-.04l-2.9-5.086a.108.108 0 010-.113l.293-.507 1.12-1.977c.024-.041.012-.062-.035-.062H9.2c-.059 0-.073-.026-.043-.077l1.434-2.505a.107.107 0 000-.114L9.225 1.774a.06.06 0 00-.053-.031zm6.29 8.02c.046 0 .058.02.034.06l-.832 1.465-2.613 4.585a.056.056 0 01-.05.029.058.058 0 01-.05-.029L8.498 9.841c-.02-.034-.01-.052.028-.054l.216-.012 6.722-.012z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="746" height="236" viewBox="0 0 746 236" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M210.028 78.0208H208.758C202.075 78.0104 196.652 83.4233 196.652 90.1062V117.134C196.652 122.532 192.191 126.903 186.883 126.903C183.729 126.903 180.58 125.316 178.711 122.651L151.105 83.2255C148.815 79.9518 145.089 78 141.055 78C134.763 78 129.1 83.3504 129.1 89.9552V117.139C129.1 122.537 124.676 126.909 119.331 126.909C116.166 126.909 113.023 125.321 111.154 122.656L80.264 78.5413C79.5666 77.5472 78 78.0364 78 79.2543V102.826C78 104.018 78.3643 105.174 79.0462 106.152L109.442 149.565C111.237 152.131 113.887 154.036 116.942 154.728C124.587 156.466 131.624 150.58 131.624 143.08V115.911C131.624 110.514 135.996 106.142 141.393 106.142H141.409C144.662 106.142 147.712 107.729 149.58 110.394L177.186 149.815C179.481 153.094 183.016 155.04 187.231 155.04C193.664 155.04 199.176 149.685 199.176 143.085V115.906C199.176 110.509 203.548 106.137 208.945 106.137H210.023C210.699 106.137 211.246 105.59 211.246 104.914V79.2387C211.246 78.5621 210.699 78.0156 210.023 78.0156L210.028 78.0208ZM368.506 98.3608H361.75C361.063 98.3608 360.506 98.9177 360.506 99.6048V153.786C360.506 154.473 361.063 155.03 361.75 155.03H368.506C369.193 155.03 369.75 154.473 369.75 153.786V99.6048C369.75 98.9177 369.193 98.3608 368.506 98.3608ZM361.526 78.0052H368.725C369.412 78.0052 369.968 78.5621 369.968 79.2491V88.0972C369.968 88.7842 369.412 89.3411 368.725 89.3411H361.526C360.839 89.3411 360.282 88.7842 360.282 88.0972V79.2491C360.282 78.5621 360.839 78.0052 361.526 78.0052ZM408.942 96.8203C401.349 96.8203 395.847 99.459 392.324 103.316C391.194 104.461 389.242 103.659 389.242 102.051V99.6048C389.242 98.9177 388.685 98.3608 387.998 98.3608H381.357C380.67 98.3608 380.113 98.9177 380.113 99.6048V153.786C380.113 154.473 380.67 155.03 381.357 155.03H388.004C388.691 155.03 389.248 154.473 389.248 153.786V119.487C389.248 107.599 391.558 104.96 404.216 104.96C416.874 104.96 418.961 107.053 418.961 118.935V153.781C418.961 154.468 419.518 155.025 420.205 155.025H426.961C427.648 155.025 428.205 154.468 428.205 153.781V116.4C428.205 102.863 420.502 96.8098 408.947 96.8098V96.8203H408.942ZM477.957 104.086C479.086 105.231 481.038 104.43 481.038 102.821V79.2543C481.038 78.5673 481.595 78.0104 482.282 78.0104H488.928C489.615 78.0104 490.172 78.5673 490.172 79.2543V153.791C490.172 154.478 489.615 155.035 488.928 155.035H482.282C481.595 155.035 481.038 154.478 481.038 153.791V150.575C481.106 148.93 479.112 148.139 477.957 149.31C474.766 153.271 468.604 156.57 460.349 156.57C445.828 156.57 436.361 146.229 436.361 126.971C436.361 106.616 446.921 96.8203 460.677 96.8203C468.932 96.8203 474.876 100.125 477.957 104.086ZM446.369 126.747C446.369 145.344 448.68 148.097 463.758 148.097C478.727 148.097 481.038 145.344 481.038 126.747C481.038 108.151 478.836 105.288 463.758 105.288C448.68 105.288 446.369 108.151 446.369 126.747ZM528.802 123.234L517.914 121.366C509.878 119.934 508.446 117.514 508.446 113.33C508.556 107.604 510.757 104.747 521.432 104.747C531.43 104.747 534.631 107.703 535.318 114.084C535.386 114.714 535.917 115.198 536.552 115.198H543.157C543.864 115.198 544.442 114.605 544.4 113.892C543.76 102.936 533.731 96.815 521.765 96.815C508.337 96.815 499.427 103.966 499.427 114.204C499.427 123.557 506.692 127.632 515.384 129.282L527.381 131.484C533.986 132.696 536.187 134.898 536.187 139.077C536.187 145.791 533.876 148.654 522.541 148.654C511.205 148.654 508.072 145.385 507.343 138.76C507.275 138.13 506.744 137.651 506.109 137.651H499.463C498.765 137.651 498.198 138.229 498.214 138.926C498.531 150.731 509.232 156.581 521.984 156.581C535.849 156.581 545.421 149.429 545.421 138.64C545.421 129.178 538.155 124.884 528.802 123.234ZM576.903 148.435C589.228 148.435 591.539 145.797 591.539 133.909V99.6204C591.539 98.9334 592.096 98.3765 592.783 98.3765H599.539C600.226 98.3765 600.783 98.9334 600.783 99.6204V153.801C600.783 154.488 600.226 155.045 599.539 155.045H592.783C592.096 155.045 591.539 154.488 591.539 153.801V151.439C591.513 149.757 589.769 148.919 588.567 150.096C585.049 153.947 579.547 156.586 572.172 156.586C560.836 156.586 553.133 150.533 553.133 136.995V99.6152C553.133 98.9282 553.69 98.3713 554.377 98.3713H561.133C561.82 98.3713 562.377 98.9282 562.377 99.6152V134.461C562.377 146.343 564.579 148.435 576.903 148.435ZM654.839 98.3608V91.0951C654.839 88.2377 657.155 85.9216 660.012 85.9216H665.04C665.727 85.9216 666.284 85.3647 666.284 84.6777V79.2439C666.284 78.5569 665.727 78 665.04 78H661.553C651.648 78 645.595 83.5014 645.595 92.9688V98.3608H638.272C631.782 98.3712 626.687 99.2613 623.288 103.316C622.039 104.497 620.316 103.612 620.316 101.895V99.61C620.316 98.923 619.759 98.366 619.072 98.366H612.316C611.629 98.366 611.072 98.923 611.072 99.61V153.791C611.072 154.478 611.629 155.035 612.316 155.035H619.072C619.759 155.035 620.316 154.478 620.316 153.791V119.825C620.316 108.598 623.179 105.96 635.503 105.96H645.595V153.796C645.595 154.483 646.152 155.04 646.839 155.04H653.595C654.282 155.04 654.839 154.483 654.839 153.796V105.96H665.05C665.737 105.96 666.294 105.403 666.294 104.716V99.6152C666.294 98.9282 665.737 98.3713 665.05 98.3713H654.839V98.3608ZM322.892 140.899C323.132 141.893 324.022 142.596 325.042 142.596H325.047C326.062 142.596 326.947 141.903 327.191 140.92L342.686 78.9473C342.826 78.3904 343.326 78 343.898 78H351.633C352.46 78 353.064 78.7807 352.856 79.5822L333.364 154.129C333.224 154.655 332.75 155.025 332.203 155.025H318.406C317.849 155.025 317.365 154.645 317.224 154.109L301.032 91.7508C300.783 90.7776 299.903 90.0958 298.893 90.0958H298.753C297.748 90.0958 296.869 90.7776 296.614 91.7508L280.427 154.109C280.286 154.65 279.802 155.025 279.245 155.025H265.448C264.901 155.025 264.422 154.655 264.287 154.129L244.795 79.5822C244.587 78.7807 245.191 78 246.019 78H253.753C254.325 78 254.825 78.3904 254.965 78.9473L270.455 140.92C270.699 141.903 271.579 142.596 272.599 142.596C273.619 142.596 274.509 141.893 274.749 140.899L289.639 78.9577C289.775 78.3956 290.274 78 290.852 78H306.794C307.372 78 307.871 78.3956 308.007 78.9577L322.892 140.899Z" fill="#fff"/></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="67" height="21" viewBox="0 0 67 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.2939 12.333C17.4521 12.7565 17.6753 13.3187 17.9629 14.0195C18.0059 13.9174 18.0496 13.8046 18.0928 13.6807C18.1359 13.5566 18.1786 13.4429 18.2217 13.3408C18.308 13.151 18.3846 12.9716 18.4492 12.8037C18.5139 12.636 18.5754 12.472 18.6328 12.3115L21.2217 5.38672H22.624L16.7334 20.5498H15.3301L17.2725 15.6416L13.0645 5.38672H14.5322L17.2939 12.333Z" fill="white"/>
|
|
3
|
+
<path d="M48.4473 13.5547L51.0967 1.88281C51.1255 1.76476 51.1396 1.65745 51.1396 1.56152C51.1396 1.27379 51.0161 1.07794 50.7695 0.974609C50.4718 0.856702 50.3225 0.716723 50.3223 0.554688C50.3223 0.532555 50.3258 0.509443 50.333 0.487305C50.3691 0.332441 50.4606 0.25497 50.6055 0.254883H53.3857C53.509 0.254883 53.5713 0.306837 53.5713 0.410156C53.5713 0.432191 53.5677 0.457976 53.5605 0.487305C53.5167 0.679184 53.2984 0.841752 52.9062 0.974609C52.5138 1.10755 52.2631 1.41055 52.1543 1.88281L48.8721 16.2783L47.0518 15.8018L39.6055 2.63574L36.9775 14.1855C36.9488 14.3032 36.9346 14.4102 36.9346 14.5059C36.9346 14.8012 37.062 14.9978 37.3164 15.0938C37.6136 15.2118 37.7625 15.3481 37.7627 15.5029C37.7627 15.525 37.7592 15.5473 37.752 15.5693C37.7159 15.7243 37.6205 15.8018 37.4678 15.8018H34.6992C34.5756 15.8017 34.5137 15.7505 34.5137 15.6475C34.5137 15.6253 34.5182 15.5989 34.5254 15.5693C34.5688 15.3849 34.7871 15.2299 35.1797 15.1045C35.5716 14.9715 35.8228 14.665 35.9316 14.1855L38.7227 1.88281C38.7521 1.76479 38.7666 1.65743 38.7666 1.56152C38.7665 1.27375 38.6381 1.07793 38.3838 0.974609C38.0865 0.856701 37.9378 0.716722 37.9375 0.554688C37.9375 0.532544 37.941 0.509454 37.9482 0.487305C37.9843 0.332513 38.079 0.25502 38.2314 0.254883H41.0342L48.4473 13.5547Z" fill="white"/>
|
|
4
|
+
<path d="M1.42383 7.27148H10.207V0.676758H11.6094V15.9268H10.207V8.49902H1.42383V15.9268H0V0.676758H1.42383V7.27148Z" fill="white"/>
|
|
5
|
+
<path d="M35.209 3.10156C35.1728 3.25607 35.0778 3.33398 34.9258 3.33398C34.8531 3.33354 34.7519 3.18519 34.6211 2.89062C34.3746 2.38149 34.1486 1.98658 33.9453 1.70605C33.7487 1.42552 33.4321 1.28516 32.9961 1.28516H28.3408L26.9668 7.29785H29.4639C29.9292 7.29777 30.278 7.10884 30.5107 6.73242C30.7433 6.34893 30.9538 6.15733 31.1426 6.15723C31.2587 6.15723 31.3174 6.20503 31.3174 6.30078C31.3174 6.33027 31.3129 6.36016 31.3057 6.38965L30.6738 9.20215C30.6372 9.35707 30.5468 9.43454 30.4014 9.43457C30.2125 9.43451 30.0745 9.24646 29.9873 8.87012C29.9073 8.49361 29.6338 8.30566 29.1689 8.30566H26.7383L25.2773 14.7617H29.9326C30.6085 14.7617 31.2414 14.4996 31.8301 13.9756C32.4187 13.4441 32.8654 13.0306 33.1709 12.7354C33.3381 12.573 33.4585 12.4912 33.5312 12.4912C33.6542 12.4914 33.7157 12.5427 33.7158 12.6455C33.7158 12.6676 33.7128 12.6942 33.7051 12.7236C33.6834 12.8195 33.6573 12.897 33.6279 12.9561L32.1895 15.8018H22.1699C22.0685 15.8016 22.0177 15.7538 22.0176 15.6582C22.0176 15.6361 22.021 15.6061 22.0283 15.5693C22.072 15.3849 22.2907 15.2299 22.6826 15.1045C23.0746 14.9716 23.3257 14.665 23.4346 14.1855L26.2256 1.88281C26.255 1.76473 26.2695 1.65746 26.2695 1.56152C26.2695 1.26642 26.1419 1.0672 25.8877 0.963867C25.5903 0.853304 25.4417 0.716766 25.4414 0.554688C25.4414 0.532544 25.4449 0.509454 25.4521 0.487305C25.4883 0.332434 25.5827 0.254883 25.7354 0.254883H35.8535L35.209 3.10156Z" fill="white"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M63.0938 3.2002C63.217 3.83128 63.3438 4.47157 63.4727 5.12109L64.2627 9.0752C64.3915 9.72463 64.5183 10.365 64.6416 10.9961C64.8888 12.2584 65.0995 13.3218 65.2744 14.1855C65.3178 14.4585 65.4745 14.7054 65.7432 14.9268C65.8887 15.0375 66.0342 15.1303 66.1797 15.2041C66.3244 15.2777 66.4408 15.3477 66.5273 15.4141C66.5857 15.4657 66.6233 15.5176 66.6377 15.5693C66.6448 15.5838 66.6474 15.5987 66.6475 15.6133C66.6475 15.628 66.6449 15.6435 66.6377 15.6582C66.6305 15.6803 66.6153 15.7059 66.5938 15.7354C66.5644 15.7795 66.5175 15.8016 66.4521 15.8018H62.7666C62.7011 15.8017 62.6388 15.7796 62.5811 15.7354C62.5233 15.6838 62.4941 15.6283 62.4941 15.5693C62.4869 15.5473 62.4834 15.525 62.4834 15.5029C62.4978 15.4366 62.5602 15.3667 62.6689 15.293C62.7488 15.2266 62.8425 15.1557 62.9512 15.082C63.0606 15.0082 63.1519 14.9086 63.2246 14.7832C63.2612 14.7243 63.2863 14.6576 63.3008 14.584C63.3152 14.5102 63.3223 14.4361 63.3223 14.3623C63.3223 14.3033 63.3187 14.2403 63.3115 14.1738L62.5596 10.3867H56.2031C55.796 11.0215 55.3931 11.6572 54.9932 12.292C54.5934 12.9193 54.1897 13.5465 53.7832 14.1738C53.6816 14.3213 53.6158 14.4543 53.5869 14.5723C53.5653 14.624 53.5467 14.6759 53.5322 14.7275C53.525 14.7792 53.5215 14.8278 53.5215 14.8721V14.9375C53.5215 15.0334 53.5401 15.1152 53.5762 15.1816C53.6128 15.2406 53.6344 15.3038 53.6416 15.3701C53.6344 15.4285 53.6273 15.469 53.6201 15.4912C53.6201 15.5134 53.6086 15.5398 53.5869 15.5693C53.4998 15.7242 53.4017 15.8016 53.293 15.8018H50.4795C50.4074 15.8017 50.3596 15.7796 50.3379 15.7354C50.3451 15.7281 50.3486 15.7202 50.3486 15.7129C50.3485 15.7055 50.345 15.6941 50.3379 15.6797C50.3379 15.6648 50.353 15.6279 50.3818 15.5693C50.4468 15.4734 50.5925 15.3772 50.8174 15.2812C50.934 15.2296 51.061 15.1742 51.1992 15.1152C51.3441 15.0489 51.4934 14.9713 51.6455 14.8828C51.9581 14.691 52.2096 14.4585 52.3984 14.1855L61.7959 0H62.4727C62.6398 0.871075 62.8466 1.93789 63.0938 3.2002ZM58.9072 6.12402C58.1952 7.24604 57.4825 8.36822 56.7705 9.49023H62.3848L61.0664 2.74609C60.3472 3.87556 59.627 5.00195 58.9072 6.12402Z" fill="white"/>
|
|
7
|
+
</svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="#FFFFFF" viewBox="0 0 794 178" width="97"><path d="M65.245,1.42108547e-14 C77.274,1.42108547e-14 88.209,2.7945 98.05,8.3835 C108.013,13.9725 115.85,21.748 121.561,31.711 C127.393,41.553 130.309,52.67 130.309,65.063 C130.309,77.578 127.393,88.816 121.561,98.779 C115.85,108.621 108.013,116.336 98.05,121.925 C88.087,127.514 77.152,130.309 65.245,130.309 C53.338,130.309 42.403,127.514 32.44,121.925 C22.477,116.336 14.58,108.621 8.748,98.779 C2.916,88.816 0,77.578 0,65.063 C0,52.67 2.916,41.553 8.748,31.711 C14.58,21.748 22.477,13.9725 32.44,8.3835 C42.403,2.7945 53.338,1.42108547e-14 65.245,1.42108547e-14 Z M65.245,22.963 C57.591,22.963 50.787,24.664 44.833,28.066 C39.001,31.468 34.445,36.389 31.165,42.829 C27.884,49.147 26.244,56.558 26.244,65.063 C26.244,73.568 27.884,81.04 31.165,87.48 C34.445,93.919 39.001,98.901 44.833,102.424 C50.787,105.826 57.591,107.527 65.245,107.527 C72.9,107.527 79.643,105.826 85.475,102.424 C91.307,98.901 95.863,93.919 99.144,87.48 C102.424,81.04 104.065,73.568 104.065,65.063 C104.065,56.558 102.424,49.147 99.144,42.829 C95.863,36.389 91.307,31.468 85.475,28.066 C79.643,24.664 72.9,22.963 65.245,22.963 Z M167.516,42.646 C170.797,38.029 175.292,34.202 181.003,31.165 C186.835,28.006 193.456,26.426 200.868,26.426 C209.494,26.426 217.27,28.552 224.196,32.805 C231.243,37.057 236.771,43.132 240.781,51.03 C244.912,58.806 246.977,67.858 246.977,78.185 C246.977,88.513 244.912,97.686 240.781,105.705 C236.771,113.602 231.243,119.738 224.196,124.112 C217.27,128.486 209.494,130.673 200.868,130.673 C193.456,130.673 186.895,129.154 181.185,126.117 C175.596,123.079 171.04,119.252 167.516,114.635 L167.516,177.147 L142.001,177.147 L142.001,28.066 L167.516,28.066 L167.516,42.646 Z M220.915,78.185 C220.915,72.11 219.64,66.886 217.088,62.512 C214.658,58.016 211.378,54.614 207.247,52.306 C203.237,49.997 198.863,48.843 194.125,48.843 C189.508,48.843 185.134,50.058 181.003,52.488 C176.993,54.796 173.713,58.198 171.161,62.694 C168.731,67.189 167.516,72.475 167.516,78.55 C167.516,84.625 168.731,89.91 171.161,94.405 C173.713,98.901 176.993,102.364 181.003,104.794 C185.134,107.102 189.508,108.256 194.125,108.256 C198.863,108.256 203.237,107.041 207.247,104.611 C211.378,102.181 214.658,98.719 217.088,94.223 C219.64,89.728 220.915,84.382 220.915,78.185 Z M357.554,76.363 C357.554,80.008 357.311,83.288 356.825,86.204 L283.014,86.204 C283.622,93.494 286.173,99.205 290.669,103.336 C295.164,107.467 300.692,109.532 307.253,109.532 C316.73,109.532 323.474,105.462 327.483,97.321 L355.003,97.321 C352.087,107.041 346.498,115.06 338.236,121.378 C329.974,127.575 319.829,130.673 307.8,130.673 C298.08,130.673 289.332,128.547 281.556,124.294 C273.902,119.92 267.887,113.785 263.513,105.887 C259.261,97.99 257.135,88.877 257.135,78.55 C257.135,68.101 259.261,58.927 263.513,51.03 C267.766,43.132 273.719,37.057 281.374,32.805 C289.028,28.552 297.837,26.426 307.8,26.426 C317.399,26.426 325.964,28.492 333.497,32.623 C341.152,36.754 347.045,42.646 351.176,50.301 C355.428,57.834 357.554,66.521 357.554,76.363 Z M331.128,69.073 C331.007,62.512 328.637,57.287 324.02,53.399 C319.403,49.39 313.754,47.385 307.071,47.385 C300.753,47.385 295.407,49.329 291.033,53.217 C286.781,56.983 284.168,62.269 283.196,69.073 L331.128,69.073 Z M426.661,26.608 C438.69,26.608 448.41,30.436 455.821,38.09 C463.233,45.623 466.939,56.194 466.939,69.802 L466.939,129.033 L441.424,129.033 L441.424,73.264 C441.424,65.245 439.419,59.11 435.409,54.857 C431.4,50.483 425.932,48.296 419.007,48.296 C411.96,48.296 406.371,50.483 402.24,54.857 C398.23,59.11 396.226,65.245 396.226,73.264 L396.226,129.033 L370.711,129.033 L370.711,28.066 L396.226,28.066 L396.226,40.642 C399.628,36.268 403.941,32.866 409.165,30.436 C414.511,27.884 420.343,26.608 426.661,26.608 Z M526.012,130.309 C517.142,130.309 509.123,128.79 501.955,125.752 C494.908,122.715 489.319,118.341 485.188,112.63 C481.057,106.92 478.93,100.177 478.809,92.401 L506.146,92.401 C506.511,97.625 508.333,101.756 511.614,104.794 C515.016,107.831 519.633,109.35 525.465,109.35 C531.418,109.35 536.096,107.953 539.498,105.158 C542.9,102.242 544.601,98.476 544.601,93.859 C544.601,90.092 543.447,86.994 541.138,84.564 C538.83,82.134 535.914,80.251 532.39,78.914 C528.988,77.456 524.25,75.877 518.175,74.176 C509.913,71.746 503.17,69.376 497.945,67.068 C492.842,64.638 488.407,61.054 484.641,56.315 C480.996,51.455 479.173,45.016 479.173,36.997 C479.173,29.464 481.057,22.903 484.823,17.314 C488.59,11.7247 493.875,7.4722 500.679,4.5562 C507.483,1.5187 515.259,1.42108547e-14 524.007,1.42108547e-14 C537.129,1.42108547e-14 547.76,3.2197 555.901,9.6592 C564.163,15.977 568.719,24.847 569.569,36.268 L541.503,36.268 C541.26,31.894 539.377,28.309 535.853,25.515 C532.451,22.599 527.895,21.141 522.184,21.141 C517.203,21.141 513.193,22.417 510.156,24.968 C507.24,27.52 505.782,31.225 505.782,36.085 C505.782,39.487 506.875,42.343 509.062,44.651 C511.371,46.838 514.165,48.661 517.446,50.119 C520.848,51.455 525.586,53.035 531.661,54.857 C539.923,57.287 546.667,59.717 551.891,62.147 C557.116,64.577 561.611,68.222 565.378,73.082 C569.144,77.942 571.027,84.321 571.027,92.218 C571.027,99.022 569.266,105.34 565.742,111.172 C562.219,117.004 557.055,121.682 550.251,125.206 C543.447,128.608 535.367,130.309 526.012,130.309 Z M679.72,76.363 C679.72,80.008 679.47,83.288 678.99,86.204 L605.177,86.204 C605.784,93.494 608.335,99.205 612.831,103.336 C617.326,107.467 622.855,109.532 629.416,109.532 C638.893,109.532 645.64,105.462 649.65,97.321 L677.17,97.321 C674.25,107.041 668.66,115.06 660.4,121.378 C652.14,127.575 641.991,130.673 629.962,130.673 C620.242,130.673 611.495,128.547 603.719,124.294 C596.064,119.92 590.05,113.785 585.676,105.887 C581.423,97.99 579.297,88.877 579.297,78.55 C579.297,68.101 581.423,58.927 585.676,51.03 C589.928,43.132 595.882,37.057 603.536,32.805 C611.191,28.552 619.999,26.426 629.962,26.426 C639.561,26.426 648.13,28.492 655.66,32.623 C663.31,36.754 669.21,42.646 673.34,50.301 C677.59,57.834 679.72,66.521 679.72,76.363 Z M653.29,69.073 C653.17,62.512 650.8,57.287 646.18,53.399 C641.566,49.39 635.916,47.385 629.233,47.385 C622.915,47.385 617.569,49.329 613.195,53.217 C608.943,56.983 606.331,62.269 605.359,69.073 L653.29,69.073 Z M688.13,78.185 C688.13,67.979 690.14,58.927 694.15,51.03 C698.28,43.132 703.81,37.057 710.73,32.805 C717.78,28.552 725.62,26.426 734.24,26.426 C741.78,26.426 748.34,27.945 753.93,30.982 C759.64,34.02 764.19,37.847 767.6,42.464 L767.6,28.066 L793.29,28.066 L793.29,129.033 L767.6,129.033 L767.6,114.271 C764.31,119.009 759.76,122.958 753.93,126.117 C748.22,129.154 741.59,130.673 734.06,130.673 C725.56,130.673 717.78,128.486 710.73,124.112 C703.81,119.738 698.28,113.602 694.15,105.705 C690.14,97.686 688.13,88.513 688.13,78.185 Z M767.6,78.55 C767.6,72.353 766.38,67.068 763.95,62.694 C761.52,58.198 758.24,54.796 754.11,52.488 C749.98,50.058 745.54,48.843 740.8,48.843 C736.07,48.843 731.69,49.997 727.68,52.306 C723.67,54.614 720.39,58.016 717.84,62.512 C715.41,66.886 714.2,72.11 714.2,78.185 C714.2,84.26 715.41,89.606 717.84,94.223 C720.39,98.719 723.67,102.181 727.68,104.611 C731.81,107.041 736.19,108.256 740.8,108.256 C745.54,108.256 749.98,107.102 754.11,104.794 C758.24,102.364 761.52,98.962 763.95,94.588 C766.38,90.092 767.6,84.746 767.6,78.55 Z"></path></svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="#FFFFFF" viewBox="0 0 794 178" width="97" height="22"><path d="M65.245,1.42108547e-14 C77.274,1.42108547e-14 88.209,2.7945 98.05,8.3835 C108.013,13.9725 115.85,21.748 121.561,31.711 C127.393,41.553 130.309,52.67 130.309,65.063 C130.309,77.578 127.393,88.816 121.561,98.779 C115.85,108.621 108.013,116.336 98.05,121.925 C88.087,127.514 77.152,130.309 65.245,130.309 C53.338,130.309 42.403,127.514 32.44,121.925 C22.477,116.336 14.58,108.621 8.748,98.779 C2.916,88.816 0,77.578 0,65.063 C0,52.67 2.916,41.553 8.748,31.711 C14.58,21.748 22.477,13.9725 32.44,8.3835 C42.403,2.7945 53.338,1.42108547e-14 65.245,1.42108547e-14 Z M65.245,22.963 C57.591,22.963 50.787,24.664 44.833,28.066 C39.001,31.468 34.445,36.389 31.165,42.829 C27.884,49.147 26.244,56.558 26.244,65.063 C26.244,73.568 27.884,81.04 31.165,87.48 C34.445,93.919 39.001,98.901 44.833,102.424 C50.787,105.826 57.591,107.527 65.245,107.527 C72.9,107.527 79.643,105.826 85.475,102.424 C91.307,98.901 95.863,93.919 99.144,87.48 C102.424,81.04 104.065,73.568 104.065,65.063 C104.065,56.558 102.424,49.147 99.144,42.829 C95.863,36.389 91.307,31.468 85.475,28.066 C79.643,24.664 72.9,22.963 65.245,22.963 Z M167.516,42.646 C170.797,38.029 175.292,34.202 181.003,31.165 C186.835,28.006 193.456,26.426 200.868,26.426 C209.494,26.426 217.27,28.552 224.196,32.805 C231.243,37.057 236.771,43.132 240.781,51.03 C244.912,58.806 246.977,67.858 246.977,78.185 C246.977,88.513 244.912,97.686 240.781,105.705 C236.771,113.602 231.243,119.738 224.196,124.112 C217.27,128.486 209.494,130.673 200.868,130.673 C193.456,130.673 186.895,129.154 181.185,126.117 C175.596,123.079 171.04,119.252 167.516,114.635 L167.516,177.147 L142.001,177.147 L142.001,28.066 L167.516,28.066 L167.516,42.646 Z M220.915,78.185 C220.915,72.11 219.64,66.886 217.088,62.512 C214.658,58.016 211.378,54.614 207.247,52.306 C203.237,49.997 198.863,48.843 194.125,48.843 C189.508,48.843 185.134,50.058 181.003,52.488 C176.993,54.796 173.713,58.198 171.161,62.694 C168.731,67.189 167.516,72.475 167.516,78.55 C167.516,84.625 168.731,89.91 171.161,94.405 C173.713,98.901 176.993,102.364 181.003,104.794 C185.134,107.102 189.508,108.256 194.125,108.256 C198.863,108.256 203.237,107.041 207.247,104.611 C211.378,102.181 214.658,98.719 217.088,94.223 C219.64,89.728 220.915,84.382 220.915,78.185 Z M357.554,76.363 C357.554,80.008 357.311,83.288 356.825,86.204 L283.014,86.204 C283.622,93.494 286.173,99.205 290.669,103.336 C295.164,107.467 300.692,109.532 307.253,109.532 C316.73,109.532 323.474,105.462 327.483,97.321 L355.003,97.321 C352.087,107.041 346.498,115.06 338.236,121.378 C329.974,127.575 319.829,130.673 307.8,130.673 C298.08,130.673 289.332,128.547 281.556,124.294 C273.902,119.92 267.887,113.785 263.513,105.887 C259.261,97.99 257.135,88.877 257.135,78.55 C257.135,68.101 259.261,58.927 263.513,51.03 C267.766,43.132 273.719,37.057 281.374,32.805 C289.028,28.552 297.837,26.426 307.8,26.426 C317.399,26.426 325.964,28.492 333.497,32.623 C341.152,36.754 347.045,42.646 351.176,50.301 C355.428,57.834 357.554,66.521 357.554,76.363 Z M331.128,69.073 C331.007,62.512 328.637,57.287 324.02,53.399 C319.403,49.39 313.754,47.385 307.071,47.385 C300.753,47.385 295.407,49.329 291.033,53.217 C286.781,56.983 284.168,62.269 283.196,69.073 L331.128,69.073 Z M426.661,26.608 C438.69,26.608 448.41,30.436 455.821,38.09 C463.233,45.623 466.939,56.194 466.939,69.802 L466.939,129.033 L441.424,129.033 L441.424,73.264 C441.424,65.245 439.419,59.11 435.409,54.857 C431.4,50.483 425.932,48.296 419.007,48.296 C411.96,48.296 406.371,50.483 402.24,54.857 C398.23,59.11 396.226,65.245 396.226,73.264 L396.226,129.033 L370.711,129.033 L370.711,28.066 L396.226,28.066 L396.226,40.642 C399.628,36.268 403.941,32.866 409.165,30.436 C414.511,27.884 420.343,26.608 426.661,26.608 Z M526.012,130.309 C517.142,130.309 509.123,128.79 501.955,125.752 C494.908,122.715 489.319,118.341 485.188,112.63 C481.057,106.92 478.93,100.177 478.809,92.401 L506.146,92.401 C506.511,97.625 508.333,101.756 511.614,104.794 C515.016,107.831 519.633,109.35 525.465,109.35 C531.418,109.35 536.096,107.953 539.498,105.158 C542.9,102.242 544.601,98.476 544.601,93.859 C544.601,90.092 543.447,86.994 541.138,84.564 C538.83,82.134 535.914,80.251 532.39,78.914 C528.988,77.456 524.25,75.877 518.175,74.176 C509.913,71.746 503.17,69.376 497.945,67.068 C492.842,64.638 488.407,61.054 484.641,56.315 C480.996,51.455 479.173,45.016 479.173,36.997 C479.173,29.464 481.057,22.903 484.823,17.314 C488.59,11.7247 493.875,7.4722 500.679,4.5562 C507.483,1.5187 515.259,1.42108547e-14 524.007,1.42108547e-14 C537.129,1.42108547e-14 547.76,3.2197 555.901,9.6592 C564.163,15.977 568.719,24.847 569.569,36.268 L541.503,36.268 C541.26,31.894 539.377,28.309 535.853,25.515 C532.451,22.599 527.895,21.141 522.184,21.141 C517.203,21.141 513.193,22.417 510.156,24.968 C507.24,27.52 505.782,31.225 505.782,36.085 C505.782,39.487 506.875,42.343 509.062,44.651 C511.371,46.838 514.165,48.661 517.446,50.119 C520.848,51.455 525.586,53.035 531.661,54.857 C539.923,57.287 546.667,59.717 551.891,62.147 C557.116,64.577 561.611,68.222 565.378,73.082 C569.144,77.942 571.027,84.321 571.027,92.218 C571.027,99.022 569.266,105.34 565.742,111.172 C562.219,117.004 557.055,121.682 550.251,125.206 C543.447,128.608 535.367,130.309 526.012,130.309 Z M679.72,76.363 C679.72,80.008 679.47,83.288 678.99,86.204 L605.177,86.204 C605.784,93.494 608.335,99.205 612.831,103.336 C617.326,107.467 622.855,109.532 629.416,109.532 C638.893,109.532 645.64,105.462 649.65,97.321 L677.17,97.321 C674.25,107.041 668.66,115.06 660.4,121.378 C652.14,127.575 641.991,130.673 629.962,130.673 C620.242,130.673 611.495,128.547 603.719,124.294 C596.064,119.92 590.05,113.785 585.676,105.887 C581.423,97.99 579.297,88.877 579.297,78.55 C579.297,68.101 581.423,58.927 585.676,51.03 C589.928,43.132 595.882,37.057 603.536,32.805 C611.191,28.552 619.999,26.426 629.962,26.426 C639.561,26.426 648.13,28.492 655.66,32.623 C663.31,36.754 669.21,42.646 673.34,50.301 C677.59,57.834 679.72,66.521 679.72,76.363 Z M653.29,69.073 C653.17,62.512 650.8,57.287 646.18,53.399 C641.566,49.39 635.916,47.385 629.233,47.385 C622.915,47.385 617.569,49.329 613.195,53.217 C608.943,56.983 606.331,62.269 605.359,69.073 L653.29,69.073 Z M688.13,78.185 C688.13,67.979 690.14,58.927 694.15,51.03 C698.28,43.132 703.81,37.057 710.73,32.805 C717.78,28.552 725.62,26.426 734.24,26.426 C741.78,26.426 748.34,27.945 753.93,30.982 C759.64,34.02 764.19,37.847 767.6,42.464 L767.6,28.066 L793.29,28.066 L793.29,129.033 L767.6,129.033 L767.6,114.271 C764.31,119.009 759.76,122.958 753.93,126.117 C748.22,129.154 741.59,130.673 734.06,130.673 C725.56,130.673 717.78,128.486 710.73,124.112 C703.81,119.738 698.28,113.602 694.15,105.705 C690.14,97.686 688.13,88.513 688.13,78.185 Z M767.6,78.55 C767.6,72.353 766.38,67.068 763.95,62.694 C761.52,58.198 758.24,54.796 754.11,52.488 C749.98,50.058 745.54,48.843 740.8,48.843 C736.07,48.843 731.69,49.997 727.68,52.306 C723.67,54.614 720.39,58.016 717.84,62.512 C715.41,66.886 714.2,72.11 714.2,78.185 C714.2,84.26 715.41,89.606 717.84,94.223 C720.39,98.719 723.67,102.181 727.68,104.611 C731.81,107.041 736.19,108.256 740.8,108.256 C745.54,108.256 749.98,107.102 754.11,104.794 C758.24,102.364 761.52,98.962 763.95,94.588 C766.38,90.092 767.6,84.746 767.6,78.55 Z"></path></svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg width="152" height="24" viewBox="0 0 152 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<mask id="mask0_573_7748" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="152" height="24">
|
|
3
|
+
<path d="M152 0H0V24H152V0Z" fill="white"/>
|
|
4
|
+
</mask>
|
|
5
|
+
<g mask="url(#mask0_573_7748)">
|
|
6
|
+
<path d="M19.6079 0.838318L13.8672 10.7582H8.29171L6.85653 13.2401H0L4.7937 4.97834H5.67462C8.6294 4.97834 11.3676 3.39335 12.8468 0.838318H19.6079Z" fill="#00FFFF"/>
|
|
7
|
+
<path d="M20.7124 10.759L15.9297 19.0207H15.0488C12.083 19.0207 9.34849 20.5947 7.8656 23.1607H1.10449L6.85253 13.2408H12.4281L13.8632 10.759H20.7124Z" fill="#FF00F2"/>
|
|
8
|
+
<path d="M31.6011 12.004C31.6011 6.46561 35.8699 2.26337 41.5592 2.26337C47.2485 2.26337 51.5174 6.46561 51.5174 12.004C51.5174 17.5423 47.2229 21.7445 41.5592 21.7445C35.8956 21.7445 31.6011 17.5423 31.6011 12.004ZM47.6339 12.004C47.6339 8.51187 45.0095 5.89457 41.5592 5.89457C38.1089 5.89457 35.4588 8.51187 35.4588 12.004C35.4588 15.4961 38.0833 18.1133 41.5592 18.1133C45.0352 18.1133 47.6339 15.4961 47.6339 12.004Z" fill="#F5F8FF"/>
|
|
9
|
+
<path d="M53.7563 16.419V7.49835H57.313V15.3831C57.313 17.1547 58.4619 18.3041 60.1871 18.3041C62.0186 18.3041 63.252 17.1291 63.252 15.3318V7.50195H66.8087V21.4155H63.252V19.8891C62.1838 21.1154 60.734 21.745 59.0125 21.745C55.8668 21.745 53.76 19.6439 53.76 16.4263L53.7563 16.419Z" fill="#F5F8FF"/>
|
|
10
|
+
<path d="M71.2395 17.0167V10.7426H69.0225V7.49579H70.2815C71.0193 7.49579 71.4304 7.11509 71.4304 6.37564V3.784H74.7962V7.49579H78.0226V10.7426H74.7962V16.4164C74.7962 17.5072 75.479 18.1624 76.6278 18.1624H78.0226V21.4093H76.1066C72.9059 21.4093 71.2358 19.8829 71.2358 17.0167H71.2395Z" fill="#F5F8FF"/>
|
|
11
|
+
<path d="M79.4775 14.4565C79.4775 10.3091 82.7039 7.17212 86.9727 7.17212C90.6946 7.17212 93.5943 9.54412 94.1413 12.8458H90.3643C89.8981 11.5098 88.5878 10.6093 86.9727 10.6093C84.7851 10.6093 83.1444 12.2748 83.1444 14.4565C83.1444 16.6381 84.7851 18.3036 86.9727 18.3036C88.5878 18.3036 89.8981 17.4031 90.3643 16.0671H94.1413C93.5943 19.3688 90.6946 21.7408 86.9727 21.7408C82.7039 21.7408 79.4775 18.6038 79.4775 14.4565Z" fill="#F5F8FF"/>
|
|
12
|
+
<path d="M95.5371 14.4565C95.5371 10.3091 98.7635 7.17212 103.032 7.17212C107.301 7.17212 110.528 10.3091 110.528 14.4565C110.528 18.6038 107.301 21.7408 103.032 21.7408C98.7635 21.7408 95.5371 18.6038 95.5371 14.4565ZM106.861 14.4565C106.861 12.2748 105.246 10.6093 103.032 10.6093C100.819 10.6093 99.204 12.2748 99.204 14.4565C99.204 16.6381 100.845 18.3036 103.032 18.3036C105.22 18.3036 106.861 16.6381 106.861 14.4565Z" fill="#F5F8FF"/>
|
|
13
|
+
<path d="M112.8 7.49792H116.356V8.94382C117.395 7.77242 118.79 7.17212 120.486 7.17212C122.483 7.17212 124.068 8.07262 124.916 9.57342C126.01 8.01772 127.651 7.17212 129.702 7.17212C132.767 7.17212 134.819 9.21832 134.819 12.3553V21.4114H131.262V13.4169C131.262 11.7257 130.194 10.6056 128.528 10.6056C126.777 10.6056 125.599 11.7513 125.599 13.4718V21.4114H122.042V13.4169C122.042 11.7257 120.948 10.6056 119.307 10.6056C117.557 10.6056 116.353 11.7513 116.353 13.4718V21.4114H112.796V7.49792H112.8Z" fill="#F5F8FF"/>
|
|
14
|
+
<path d="M137.006 14.4565C137.006 10.3091 140.232 7.17212 144.501 7.17212C148.77 7.17212 151.996 10.3091 151.996 14.5114C151.996 14.8921 151.97 15.3313 151.886 15.6864H140.808C141.274 17.4873 142.724 18.6587 144.637 18.6587C146.086 18.6587 147.29 18.0035 147.918 17.103H151.776C150.708 19.8593 147.947 21.7408 144.552 21.7408C140.228 21.7408 137.002 18.6038 137.002 14.4565H137.006ZM140.834 13.0911H148.193C147.756 11.3999 146.332 10.2542 144.501 10.2542C142.669 10.2542 141.329 11.3743 140.834 13.0911Z" fill="#F5F8FF"/>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg width="155" height="32" viewBox="0 0 155 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.43236 26.6665C4.87822 26.6665 3.17084 24.7849 3.17084 21.6837V11.8228H0V9.17459H1.91644C2.8224 9.17459 3.31022 8.68677 3.31022 7.78081V3.66917H6.09778V9.17459H9.65191V11.8228H6.13262V22.973C6.13262 23.7396 6.44622 24.0183 7.2128 24.0183H10.1746V26.6665H8.43236Z" fill="#F4E9D5"/>
|
|
3
|
+
<path d="M12.5184 12.5197C12.5184 10.3593 13.7031 9.17459 15.7589 9.17459H21.2644V11.8228H15.515V26.6665H12.5184V12.5197Z" fill="#F4E9D5"/>
|
|
4
|
+
<path d="M28.0539 27.1892C24.221 27.1892 21.9909 24.8894 21.9909 21.7883C21.9909 18.722 24.1164 16.8055 28.1932 16.5268L32.6533 16.2132C33.4896 16.1435 33.9077 15.795 33.9077 14.6452C33.9077 12.1712 32.061 11.2304 29.7961 11.2304C27.2176 11.2304 25.6844 12.45 25.4057 14.6452H22.4787C23.0014 10.6729 25.6496 8.65192 29.8658 8.65192C34.2213 8.65192 36.974 10.8123 36.974 15.7253V24.0183V26.6665C35.2318 26.6665 34.3259 26.6665 34.3259 26.6665V23.3563C33.2805 25.7954 31.0505 27.1892 28.0539 27.1892ZM28.472 24.6455C31.6428 24.6455 34.0123 22.4852 34.0123 18.9659V18.3735L28.5765 18.722C26.0329 18.8962 25.0572 19.9067 25.0572 21.6489C25.0572 23.7047 26.3813 24.6455 28.472 24.6455Z" fill="#F4E9D5"/>
|
|
5
|
+
<path d="M47.1537 27.1892C42.4497 27.1892 39.3137 23.5653 39.3137 17.9205C39.3137 12.2757 42.4497 8.65192 47.1537 8.65192C49.8367 8.65192 51.8577 9.80179 53.1121 11.8925V2.27539H56.1087V26.6665H53.356V23.5653C52.1365 25.8999 50.011 27.1892 47.1537 27.1892ZM47.6764 24.541C50.9169 24.541 53.147 21.9277 53.147 17.9205C53.147 13.9134 50.9169 11.3001 47.6764 11.3001C44.4359 11.3001 42.4149 13.9134 42.4149 17.9205C42.4149 21.9277 44.4359 24.541 47.6764 24.541Z" fill="#F4E9D5"/>
|
|
6
|
+
<path d="M66.6698 27.1892C61.478 27.1892 58.2026 23.5653 58.2026 17.9554C58.2026 12.3803 61.4431 8.65192 66.6001 8.65192C71.9662 8.65192 75.1719 12.6939 74.4401 18.7917H61.2689C61.4431 22.4155 63.3944 24.6107 66.6698 24.6107C69.4225 24.6107 70.8163 23.0078 71.2344 21.7186H74.231C73.4296 24.7849 70.886 27.1892 66.6698 27.1892ZM61.3386 16.3874H71.4435C71.548 13.565 69.8058 11.1956 66.4607 11.1956C63.6383 11.1956 61.6871 13.1817 61.3386 16.3874Z" fill="#F4E9D5"/>
|
|
7
|
+
<path d="M151.359 32C152.435 32 153.265 31.7076 153.85 31.1227C154.412 30.5378 154.693 29.7072 154.693 28.631L154.692 3.36898C154.692 2.29278 154.412 1.46223 153.85 0.877339C153.265 0.292446 152.435 0 151.359 0H148.293V2.59692H151.92V16.5284V17.459V18.3074L151.92 29.368H148.293V32H151.359Z" fill="#F9BD29"/>
|
|
8
|
+
<path d="M82.9225 32C81.8463 32 81.0158 31.7076 80.4309 31.1227C79.8694 30.5378 79.5886 29.7072 79.5886 28.631L79.5888 3.36898C79.5888 2.29278 79.8696 1.46223 80.4311 0.877339C81.0159 0.292446 81.8465 0 82.9227 0H85.9883V2.59692H82.3612V16.5284V17.459V18.3074L82.361 29.368H85.9881V32H82.9225Z" fill="#F9BD29"/>
|
|
9
|
+
<path d="M94.0805 17.0268L88.6287 24.296V26.6663H91.3151L96.6089 19.0812C96.7406 18.8968 96.8064 18.7124 96.8064 18.5281C96.8064 18.3437 96.7801 18.1067 96.7274 17.817C96.6484 17.5272 96.6089 17.2507 96.6089 16.9873C96.6089 16.6713 96.6616 16.4737 96.7669 16.3947C96.8986 16.2894 97.1357 16.2235 97.478 16.1972H97.7941H98.1101C98.4525 16.2235 98.6896 16.2894 98.8213 16.3947C98.9266 16.4737 98.9793 16.6713 98.9793 16.9873C98.9793 17.2507 98.9398 17.5272 98.8608 17.817C98.8081 18.1067 98.7817 18.3437 98.7817 18.5281C98.7817 18.7124 98.8476 18.8968 98.9793 19.0812L104.273 26.6663H106.96V24.296L101.508 17.0268C101.455 16.9478 101.36 16.8903 101.241 16.8507C101.123 16.8111 101.004 16.7964 100.915 16.7898C100.826 16.7832 100.691 16.7898 100.52 16.7898C100.349 16.7898 100.112 16.7766 99.9274 16.7503C99.7431 16.724 99.5982 16.6581 99.4929 16.5528C99.3612 16.4211 99.2953 16.2367 99.2953 15.9997C99.2953 15.7626 99.3612 15.5914 99.4929 15.4861C99.5982 15.3544 99.7431 15.2754 99.9274 15.2491C100.112 15.2227 100.309 15.2095 100.52 15.2095H100.915H100.918C101.023 15.2096 101.152 15.2096 101.271 15.17C101.39 15.1302 101.455 15.0515 101.508 14.9725L106.96 7.70338V5.33301H104.273L98.9793 12.9182C98.8476 13.1026 98.7817 13.2869 98.7817 13.4713C98.7817 13.6556 98.8081 13.8927 98.8608 14.1824C98.9398 14.4458 98.9793 14.7223 98.9793 15.012C98.9793 15.3281 98.9266 15.5388 98.8213 15.6441C98.6896 15.7231 98.4525 15.7758 98.1101 15.8021H97.7941H97.478C97.1357 15.7758 96.8986 15.7231 96.7669 15.6441C96.6616 15.5388 96.6089 15.3281 96.6089 15.012C96.6089 14.7223 96.6484 14.4458 96.7274 14.1824C96.7801 13.8927 96.8064 13.6556 96.8064 13.4713C96.8064 13.2869 96.7406 13.1026 96.6089 12.9182L91.3151 5.33301H88.6287V7.70338L94.0805 14.9725C94.1332 15.0515 94.198 15.1302 94.3176 15.17C94.4361 15.2096 94.5655 15.2096 94.6703 15.2095H94.6731H95.0682C95.2789 15.2095 95.4764 15.2227 95.6608 15.2491C95.8451 15.2754 95.99 15.3544 96.0953 15.4861C96.227 15.5914 96.2929 15.7626 96.2929 15.9997C96.2929 16.2367 96.227 16.4211 96.0953 16.5528C95.99 16.6581 95.8451 16.724 95.6608 16.7503C95.4764 16.7766 95.2394 16.7898 95.0682 16.7898C94.897 16.7898 94.7619 16.7832 94.6731 16.7898C94.5843 16.7964 94.4656 16.8111 94.3468 16.8507C94.228 16.8903 94.1332 16.9478 94.0805 17.0268Z" fill="#F9BD29"/>
|
|
10
|
+
<path d="M129.188 22.5501L137.816 12.8135C138.238 12.3386 138.7 12.0351 139.202 11.9032C139.703 11.7449 140.283 11.8108 140.943 12.1011C141.392 12.2858 141.867 12.2462 142.368 11.9824C142.896 11.6921 143.331 11.3095 143.674 10.8346C144.043 10.3332 144.228 9.50544 144.228 9.16242C144.228 8.95132 144.175 8.8062 144.07 8.72704C143.991 8.62149 143.793 8.55553 143.476 8.52914C143.16 8.50276 142.619 8.48956 141.853 8.48956H129.188V5.33301H145.653V9.40969L137.025 19.1858C136.734 19.5025 136.431 19.7531 136.114 19.9378C135.824 20.0961 135.494 20.1753 135.125 20.1753C134.756 20.1753 134.347 20.083 133.898 19.8983C133.449 19.7135 132.961 19.7663 132.434 20.0566C131.932 20.3204 131.497 20.703 131.127 21.2044C130.784 21.6793 130.613 22.4939 130.613 22.8369C130.613 23.048 130.652 23.2063 130.732 23.3119C130.837 23.391 131.048 23.4438 131.365 23.4702C131.681 23.4966 132.222 23.5098 132.988 23.5098H145.653V26.6663H129.188V22.5501Z" fill="#F9BD29"/>
|
|
11
|
+
<path d="M116.444 18.5279C116.444 18.2377 116.421 18.0368 116.377 17.8916C116.332 17.7465 116.265 17.6351 116.209 17.5902C116.153 17.5453 116.042 17.5121 115.941 17.4897C115.841 17.4674 115.797 17.4565 115.707 17.4228C115.617 17.3891 115.529 17.3337 115.439 17.2553C115.349 17.177 115.26 17.0544 115.171 16.9204L108.909 7.67728V5.33301H111.458L116.214 12.3658C116.638 12.9686 116.861 13.538 116.884 14.0738C116.906 14.6096 116.445 15.179 116.311 15.7818C116.221 16.206 116.188 16.5297 116.21 16.753C116.255 16.9539 116.411 17.1214 116.679 17.2553C116.947 17.367 117.405 17.4228 118.052 17.4228C118.722 17.4228 119.191 17.367 119.459 17.2553C119.727 17.1214 119.861 16.9539 119.861 16.753C119.883 16.5297 119.849 16.206 119.76 15.7818C119.626 15.112 119.165 14.5315 119.187 14.0403C119.209 13.5491 119.421 13.0133 119.823 12.4328L124.579 5.33301H127.161V7.67728L120.9 16.8869C120.81 17.0209 120.721 17.1214 120.632 17.1883C120.542 17.2553 120.453 17.3111 120.364 17.3558C120.275 17.4004 120.208 17.4339 120.129 17.4563C120.051 17.4786 119.94 17.5344 119.861 17.5902C119.783 17.6461 119.728 17.7463 119.694 17.8916C119.66 18.037 119.661 18.2377 119.661 18.5279C119.661 18.8182 119.661 26.6656 119.661 26.6656H116.444C116.444 26.6656 116.444 18.8182 116.444 18.5279Z" fill="#F9BD29"/>
|
|
12
|
+
</svg>
|