Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e792c92c9c | ||
|
|
e2596b0654 | ||
|
|
06734a2f38 | ||
|
|
b1a3fb6dc1 | ||
|
|
de08098409 | ||
|
|
d38d449b58 | ||
|
|
924c56d4f1 | ||
|
|
0d8f3b4922 | ||
|
|
ad9e144d40 | ||
|
|
78c0134daa | ||
|
|
cd977ab955 | ||
|
|
196185aa7e | ||
|
|
5093823b25 | ||
|
|
7d7adc8da2 | ||
|
|
aee06a2c55 | ||
|
|
d6baa6ef3f | ||
|
|
195ddd5af7 | ||
|
|
2a5373c972 | ||
|
|
64f663ed5b | ||
|
|
983128fd74 | ||
|
|
e15f4b919c | ||
|
|
71c29524b1 | ||
|
|
0e26433e29 | ||
|
|
3afd5ef783 | ||
|
|
b2cac81235 | ||
|
|
e48ec4ca73 | ||
|
|
78f9ddff7a | ||
|
|
c1dcca43c8 | ||
|
|
029476fa19 | ||
|
|
6ecdcd981e | ||
|
|
591166e93d | ||
|
|
e30940e7df | ||
|
|
2d0a944097 | ||
|
|
0dd2ecb6d2 | ||
|
|
76819e0839 | ||
|
|
32b375cfa4 | ||
|
|
3dc87e873d | ||
|
|
ed61b3112e | ||
|
|
42f4142307 | ||
|
|
c5e79980d1 | ||
|
|
6e179191d8 |
@@ -0,0 +1,18 @@
|
||||
VITE_BASE_URL=https://v4.testnet.dydx.exchange
|
||||
|
||||
VITE_ALCHEMY_API_KEY=FP275q327Yh7qswtZWenbPXdZZdnAFmC
|
||||
|
||||
VITE_FAUCET_URL_DEV=https://faucet.v4dev.dydx.exchange/
|
||||
VITE_FAUCET_URL_STAGE=https://faucet.v4staging.dydx.exchange/
|
||||
VITE_FAUCET_URL_TESTNET2=https://faucet.v4testnet2.dydx.exchange/
|
||||
|
||||
VITE_VALIDATOR_URL_DEV=http://52.192.187.113:26657/
|
||||
VITE_VALIDATOR_URL_STAGE=https://validator.v4staging.dydx.exchange/
|
||||
VITE_VALIDATOR_URL_TESTNET2=https://validator.v4testnet2.dydx.exchange/
|
||||
|
||||
VITE_INDEXER_URL_DEV=http://dev-indexer-apne1-lb-public-890774175.ap-northeast-1.elb.amazonaws.com
|
||||
VITE_INDEXER_URL_STAGE=https://indexer.v4staging.dydx.exchange
|
||||
VITE_INDEXER_URL_TESTNET2=https://indexer.v4testnet2.dydx.exchange
|
||||
|
||||
VITE_WALLETCONNECT1_BRIDGE=wss://api.dydx.exchange/wc/
|
||||
VITE_WALLETCONNECT2_PROJECT_ID=fbe94eaa691fa8d929561f8567062b32
|
||||
@@ -1,14 +1,17 @@
|
||||
VITE_BASE_URL=
|
||||
|
||||
VITE_ALCHEMY_API_KEY=
|
||||
|
||||
VITE_PK_ENCRYPTION_KEY=
|
||||
VITE_WALLETCONNECT2_PROJECT_ID=
|
||||
|
||||
VITE_V3_TOKEN_ADDRESS=
|
||||
VITE_TOKEN_MIGRATION_URI=
|
||||
VITE_FAUCET_URL_DEV=
|
||||
VITE_FAUCET_URL_STAGE=
|
||||
VITE_FAUCET_URL_TESTNET2=
|
||||
|
||||
AMPLITUDE_API_KEY=
|
||||
BUGSNAG_API_KEY=
|
||||
IOS_APP_ID=
|
||||
INTERCOM_APP_ID=
|
||||
STATUS_PAGE_SCRIPT_URI=
|
||||
VITE_VALIDATOR_URL_DEV=
|
||||
VITE_VALIDATOR_URL_STAGE=
|
||||
VITE_VALIDATOR_URL_TESTNET2=
|
||||
|
||||
VITE_INDEXER_URL_DEV=
|
||||
VITE_INDEXER_URL_STAGE=
|
||||
VITE_INDEXER_URL_TESTNET2=
|
||||
|
||||
@@ -5,10 +5,15 @@ vite.config.ts
|
||||
|
||||
# Temporarily ignore, we will slowly remove each directory as we fix files to follow ESLint rules
|
||||
/src/components
|
||||
/src/dialogs
|
||||
/src/forms
|
||||
/src/hooks
|
||||
/src/history.ts
|
||||
/src/icons
|
||||
/src/lib
|
||||
/src/main.tsx
|
||||
/src/menus
|
||||
/src/pages
|
||||
/src/state
|
||||
/src/styles
|
||||
/src/views
|
||||
|
||||
@@ -33,11 +33,14 @@
|
||||
"jsx-a11y/anchor-is-valid": "off",
|
||||
"jsx-a11y/click-events-have-key-events": "off",
|
||||
"no-continue": "off",
|
||||
"no-console": ["error"],
|
||||
"no-console": [
|
||||
"error",
|
||||
{
|
||||
"devDependencies": ["./scripts/*.js"]
|
||||
}
|
||||
],
|
||||
"no-lonely-if": "off",
|
||||
"no-multi-assign": "off",
|
||||
"no-nested-ternary": "off",
|
||||
"no-param-reassign": ["error", { "props": false }],
|
||||
"no-return-assign": "off",
|
||||
"no-return-await": "off",
|
||||
"no-underscore-dangle": "off",
|
||||
@@ -62,7 +65,6 @@
|
||||
"react/sort-comp": "off",
|
||||
"@typescript-eslint/no-use-before-define": "off",
|
||||
"@typescript-eslint/comma-dangle": "off",
|
||||
"@typescript-eslint/no-unused-vars": "error",
|
||||
"@typescript-eslint/member-delimiter-style": [
|
||||
"error",
|
||||
{
|
||||
|
||||
@@ -33,13 +33,11 @@ jobs:
|
||||
AMPLITUDE_API_KEY: ${{ secrets.AMPLITUDE_API_KEY }}
|
||||
BUGSNAG_API_KEY: ${{ secrets.BUGSNAG_API_KEY }}
|
||||
STATUS_PAGE_SCRIPT_URI: ${{ secrets.STATUS_PAGE_SCRIPT_URI }}
|
||||
IOS_APP_ID: ${{ secrets.IOS_APP_ID }}
|
||||
run: |
|
||||
pnpm run build
|
||||
pnpm run build:inject-amplitude
|
||||
pnpm run build:inject-bugsnag
|
||||
pnpm run build:inject-statuspage
|
||||
sh scripts/inject-app-deeplinks.sh
|
||||
|
||||
- name: Upload to IPFS via web3.storage
|
||||
uses: dydxprotocol/add-to-web3@v1
|
||||
|
||||
@@ -13,7 +13,6 @@ dist
|
||||
dist-ssr
|
||||
*.local
|
||||
*.key
|
||||
.env
|
||||
|
||||
# Editor directories and files
|
||||
.vscode/*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Contributing to V4-web
|
||||
# Contributing to Trader-Fe
|
||||
We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
|
||||
|
||||
- Reporting a bug
|
||||
@@ -18,10 +18,10 @@ Pull requests are the best way to propose changes to the codebase (we use [Githu
|
||||
4. Issue that pull request!
|
||||
|
||||
## Any contributions you make will be under the same License
|
||||
When you submit code changes, your submissions are understood to be under the same [License](https://github.com/dydxprotocol/v4-web/blob/master/LICENSE) that covers the project.
|
||||
When you submit code changes, your submissions are understood to be under the same [License](https://github.com/dydxprotocol/trader-fe/blob/master/LICENSE) that covers the project.
|
||||
|
||||
## Report bugs using Github's [issues](https://github.com/dydxprotocol/v4-web/issues)
|
||||
Report a bug by [opening a new issue](https://github.com/dydxprotocol/v4-web/issues/new).
|
||||
## Report bugs using Github's [issues](https://github.com/dydxprotocol/trader-fe/issues)
|
||||
Report a bug by [opening a new issue](https://github.com/dydxprotocol/trader-fe/issues/new).
|
||||
|
||||
**Great Bug Reports** tend to have:
|
||||
|
||||
|
||||
@@ -1,802 +1,11 @@
|
||||
Copyright (C) 2023 dYdX Trading Inc.
|
||||
Proprietary License © 2023 dYdX Trading Inc.
|
||||
|
||||
Subject to your compliance with applicable law and the v4 Terms of Use, available at dydx.exchange/legal, you are granted the right to use the Program or Licensed Work (defined below) under the terms of the GNU Affero General Public License as set forth below; provided, however, that if you violate any such applicable law in your use of the Program or Licensed Work, all of your rights and licenses to use (including any rights to reproduce, distribute, install or modify) the Program or Licensed Work will automatically and immediately terminate.
|
||||
dYdX Trading Inc. ("dYdX") hereby grants you the right to access, copy and use the code in this repository (the "Licensed Code") solely for purposes of evaluating the Licensed Code and evaluating interoperability of the Licensed Code with your products and services.
|
||||
|
||||
You agree not to (a) access, copy or use the Licensed Code for any purpose other than as expressly licensed above, (b) provide, disclose or distribute the Licensed Code to any third party, or (c) modify or creative derivative works of the Licensed Code. Any violation of these terms will automatically terminate your rights under these terms.
|
||||
|
||||
The “Program” or “Licensed Work” shall mean any of the following: dydxprotocol/cosmos-sdk, dydxprotocol/cometbft, dydxprotocol/v4-chain, dydxprotocol/v4-clients, dydxprotocol/v4-web, dydxprotocol/v4-abacus, dydxprotocol/v4-localization, dydxprotocol/v4-documentation, and any dYdX or dYdX Trading Inc. repository reflecting a copy of, or link to, this license.
|
||||
All copies of the Licensed Code are subject to these terms. You must conspicuously display these terms on each copy of the Licensed Code.
|
||||
|
||||
dYdX intends to make the Licensed Code available under an open source license in the near term. The terms of this license apply unless and until the Licensed Code is made available by dYdX under an open source license.
|
||||
|
||||
The GNU Affero General Public License
|
||||
Version 3, 19 November 2007
|
||||
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
|
||||
Preamble
|
||||
|
||||
|
||||
|
||||
The GNU Affero General Public License is a free, copyleft license for
|
||||
software and other kinds of works, specifically designed to ensure
|
||||
cooperation with the community in the case of network server software.
|
||||
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
our General Public Licenses are intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users.
|
||||
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
|
||||
Developers that use our General Public Licenses protect your rights
|
||||
with two steps: (1) assert copyright on the software, and (2) offer
|
||||
you this License which gives you legal permission to copy, distribute
|
||||
and/or modify the software.
|
||||
|
||||
|
||||
A secondary benefit of defending all users' freedom is that
|
||||
improvements made in alternate versions of the program, if they
|
||||
receive widespread use, become available for other developers to
|
||||
incorporate. Many developers of free software are heartened and
|
||||
encouraged by the resulting cooperation. However, in the case of
|
||||
software used on network servers, this result may fail to come about.
|
||||
The GNU General Public License permits making a modified version and
|
||||
letting the public access it on a server without ever releasing its
|
||||
source code to the public.
|
||||
|
||||
|
||||
The GNU Affero General Public License is designed specifically to
|
||||
ensure that, in such cases, the modified source code becomes available
|
||||
to the community. It requires the operator of a network server to
|
||||
provide the source code of the modified version running there to the
|
||||
users of that server. Therefore, public use of a modified version, on
|
||||
a publicly accessible server, gives the public access to the source
|
||||
code of the modified version.
|
||||
|
||||
|
||||
An older license, called the Affero General Public License and
|
||||
published by Affero, was designed to accomplish similar goals. This is
|
||||
a different license, not a version of the Affero GPL, but Affero has
|
||||
released a new version of the Affero GPL which permits relicensing under
|
||||
this license.
|
||||
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
|
||||
0. Definitions.
|
||||
|
||||
|
||||
"This License" refers to version 3 of the GNU Affero General Public License.
|
||||
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
|
||||
|
||||
1. Source Code.
|
||||
|
||||
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; Section 10
|
||||
makes it unnecessary.
|
||||
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with Section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of Section 4, provided that you also meet all of these conditions:
|
||||
|
||||
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under Section
|
||||
7. This requirement modifies the requirement in Section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable Section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of Sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with Subsection 6b.
|
||||
|
||||
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under Subsection 6d.
|
||||
|
||||
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of Sections 15 and 16 of this License; or
|
||||
|
||||
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of Section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
|
||||
|
||||
8. Termination.
|
||||
|
||||
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of Section 11).
|
||||
|
||||
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under Section 10.
|
||||
|
||||
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
|
||||
|
||||
11. Patents.
|
||||
|
||||
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
|
||||
|
||||
13. Remote Network Interaction; Use with the GNU General Public License.
|
||||
|
||||
|
||||
|
||||
Notwithstanding any other provision of this License, if you modify the
|
||||
Program, your modified version must prominently offer all users
|
||||
interacting with it remotely through a computer network (if your version
|
||||
supports such interaction) an opportunity to receive the Corresponding
|
||||
Source of your version by providing access to the Corresponding Source
|
||||
from a network server at no charge, through some standard or customary
|
||||
means of facilitating copying of software. This Corresponding Source
|
||||
shall include the Corresponding Source for any work covered by version 3
|
||||
of the GNU General Public License that is incorporated pursuant to the
|
||||
following paragraph.
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the work with which it is combined will remain governed by version
|
||||
3 of the GNU General Public License.
|
||||
|
||||
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU Affero General Public License from time to time. Such new versions
|
||||
will be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU Affero General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU Affero General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU Affero General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
|
||||
|
||||
16. Limitation of Liability.
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
|
||||
For more information about this software, see https://dydx.exchange.
|
||||
Copyright (C) 2023 dYdX Trading Inc.
|
||||
These terms do not grant you any right in any trademarks, service marks or logos of dYdX or its affiliates. TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED CODE IS PROVIDED "AS IS". DYDX HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT AND TITLE.
|
||||
|
||||
@@ -1,19 +1,8 @@
|
||||
<p align="center"><img src="https://dydx.exchange/icon.svg?" width="256" /></p>
|
||||
|
||||
<h1 align="center">dYdX Chain Web</h1>
|
||||
|
||||
<div align="center">
|
||||
<a href='https://github.com/dydxprotocol/v4-web/blob/main/LICENSE'>
|
||||
<img src='https://img.shields.io/badge/License-AGPL_v3-blue.svg' alt='License' />
|
||||
</a>
|
||||
</div>
|
||||
# v4 Web App
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Node.js version 18 and `pnpm` installed on your system
|
||||
- Wallet Connect account
|
||||
|
||||
For deploying with Vercel, create an account with [Vercel](https://vercel.com/signup) if you don't have one already.
|
||||
|
||||
For deploying to IPFS, choose one of the following:
|
||||
|
||||
@@ -26,16 +15,16 @@ Alternatively, follow the [IPFS Kubo installation guide](https://docs.ipfs.tech
|
||||
|
||||
## Part 1: Setting up your local environment
|
||||
|
||||
### 1. Clone the repo
|
||||
### Step 1: Clone the repo
|
||||
|
||||
Clone the repository and navigate to its directory:
|
||||
|
||||
```bash
|
||||
git clone https://github.com/dydxprotocol/v4-web.git
|
||||
cd v4-web
|
||||
git clone https://github.com/dydxprotocol/trader-fe.git
|
||||
cd trader-fe
|
||||
```
|
||||
|
||||
### 2. Install pnpm and dependencies
|
||||
### Step 2: Install pnpm and dependencies
|
||||
|
||||
Install pnpm and the project dependencies:
|
||||
|
||||
@@ -62,53 +51,7 @@ pnpm ladle
|
||||
|
||||
This will automatically open your default browser at `http://localhost:61000`.
|
||||
|
||||
## Part 3: Configuring environment
|
||||
|
||||
Add or modify the relevant endpoints, links and options in `/public/configs/env.json`.
|
||||
You'll need to provide a Wallet Connect project id to enable onboarding and wallet connection:
|
||||
- Create a project on https://cloud.walletconnect.com/app
|
||||
- Copy over the project ID into this [field](https://github.com/dydxprotocol/v4-web/blob/67ecbd75b43e0c264b7b4d2d9b3d969830b0621c/public/configs/env.json#L822C33-L822C46)
|
||||
|
||||
## Part 4: Set Enviornment variables
|
||||
Set environment variables via `.env`.
|
||||
|
||||
- `VITE_BASE_URL` (required): The base URL of the deployment (e.g., `https://www.example.com`).
|
||||
- `VITE_ALCHEMY_API_KEY` (optional): Add an Alchemy API key for EVM interactions; the app will fall back to public RPCs if not provided.
|
||||
- `VITE_PK_ENCRYPTION_KEY` (optional): AES encryption key used for signature obfuscation; necessary for enabling the "Remember Me" feature.
|
||||
- `VITE_V3_TOKEN_ADDRESS` (optional): Address of the V3 $DYDX token.
|
||||
- `VITE_TOKEN_MIGRATION_URI` (optional): The URL of the token migration website.
|
||||
- `AMPLITUDE_API_KEY` (optional): Amplitude API key for enabling Amplitude; used with `pnpm run build:inject-amplitude`.
|
||||
- `BUGSNAG_API_KEY` (optional): API key for enabling Bugsnag; used with `pnpm run build:inject-bugsnag`.
|
||||
- `IOS_APP_ID` (optional): iOS app ID used for enabling deep linking to the iOS app; used with `pnpm run build:inject-app-deeplinks`.
|
||||
- `INTERCOM_APP_ID` (optional): Used for enabling Intercom; utilized with `pnpm run build:inject-intercom`.
|
||||
- `STATUS_PAGE_SCRIPT_URI` (optional): Used for enabling the status page; used with `pnpm run build:inject-statuspage`.
|
||||
|
||||
|
||||
# Deployments
|
||||
|
||||
## Deploying with Vercel
|
||||
|
||||
### Step 1: Connect your repository to Vercel
|
||||
|
||||
Select "Import Git Repository" from your dashboard, and provide the URL of this repository or your forked repository.
|
||||
|
||||
### Step 2: Configure your project
|
||||
|
||||
For the "Build & Development Settings", we recommend the following:
|
||||
- Framework Preset: `Vite`
|
||||
- Build Command (override): `pnpm run build`
|
||||
|
||||
By default, the dev server runs in development mode and the build command runs in production mode. To override the default mode, you can pass in the `--mode` option flag. For example, if you want to build your app for testnet:
|
||||
```
|
||||
pnpm run build --mode testnet
|
||||
```
|
||||
|
||||
If you wish to incorporate analytics via Amplitude and Bugsnag, you can use our scripts:
|
||||
`pnpm run build:inject-amplitude` and `pnpm run build:inject-bugsnag`. You will need to provide your own API keys for these services. In the Environment Variables section, name the variables as `AMPLITUDE_API_KEY` and `BUGSNAG_API_KEY` and provide the respective keys as their values.
|
||||
|
||||
For more details, check out Vercel's [official documentation](https://vercel.com/docs).
|
||||
|
||||
## Deploying to IPFS
|
||||
## Part 3: Deploying to IPFS
|
||||
|
||||
### web3.storage: deploy to IPFS via web3.storage using the provided script
|
||||
|
||||
@@ -131,7 +74,7 @@ ipfs add -r dist
|
||||
|
||||
Save the CID provided in the output.
|
||||
|
||||
### Accessing your content on IPFS
|
||||
## Part 4: Accessing your content on IPFS
|
||||
|
||||
To access your content on IPFS:
|
||||
|
||||
@@ -139,19 +82,4 @@ To access your content on IPFS:
|
||||
|
||||
2. **Public IPFS gateway:** Access your content via a public IPFS gateway, such as [https://dweb.link](https://dweb.link/) or [https://w3s.link/](https://w3s.link/). Use the gateway URL with your CID appended, like `https://dweb.link/ipfs/your_cid`.
|
||||
|
||||
Replace `your_cid` with the actual CID.
|
||||
|
||||
## Cloudflare Settings
|
||||
|
||||
We recommend that you add your website to Cloudflare for additional security settings.
|
||||
|
||||
To block OFAC Sanctioned countries:
|
||||
1. Navigate Websites > Domain > Security > WAF
|
||||
|
||||
2. Create Rule with the following settings:
|
||||
* If incoming requests match
|
||||
`(ip.geoip.country eq "CU") or (ip.geoip.country eq "IR") or (ip.geoip.country eq "KP") or (ip.geoip.country eq "SY") or (ip.geoip.country eq "MM") or (ip.geoip.subdivision_1_iso_code eq "UA-09") or (ip.geoip.subdivision_1_iso_code eq "UA-14") or (ip.geoip.subdivision_1_iso_code eq "UA-43")`
|
||||
* This rule will bring up a Cloudflare page when a restricted geography tries to access your site. You will have the option to display:
|
||||
1. Custom Text
|
||||
- (e.g. `Because you appear to be a resident of, or trading from, a jurisdiction that violates our terms of use, or have engaged in activity that violates our terms of use, you have been blocked. You may withdraw your funds from the protocol at any time.`)
|
||||
2. Default Cloudflare WAF block page
|
||||
Replace `your_cid` with the actual CID.
|
||||
@@ -1,19 +1,16 @@
|
||||
{
|
||||
"name": "dydx-chain-web",
|
||||
"private": true,
|
||||
"version": "1.0.0",
|
||||
"version": "0.0.1",
|
||||
"type": "module",
|
||||
"license": "AGPL-3.0",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"build:inject-app-deeplinks": "sh scripts/inject-app-deeplinks.sh",
|
||||
"build:inject-amplitude": "node scripts/inject-amplitude.js",
|
||||
"build:inject-bugsnag": "node scripts/inject-bugsnag.js",
|
||||
"build:inject-intercom": "node scripts/inject-intercom.js",
|
||||
"build:inject-statuspage": "node scripts/inject-statuspage.js",
|
||||
"deploy:ipfs": "node scripts/upload-ipfs.js --verbose",
|
||||
"deploy:update-ipns": "node scripts/update-ipns.js",
|
||||
@@ -32,26 +29,20 @@
|
||||
},
|
||||
"packageManager": "pnpm@8.6.6",
|
||||
"dependencies": {
|
||||
"@0xsquid/sdk": "^1.10.0",
|
||||
"@0xsquid/sdk": "^1.7.2",
|
||||
"@cosmjs/amino": "^0.31.0",
|
||||
"@cosmjs/crypto": "^0.31.0",
|
||||
"@cosmjs/encoding": "^0.31.0",
|
||||
"@cosmjs/proto-signing": "^0.31.0",
|
||||
"@cosmjs/stargate": "^0.31.0",
|
||||
"@dydxprotocol/abacus": "^0.2.37",
|
||||
"@cosmjs/tendermint-rpc": "^0.31.0",
|
||||
"@dydxprotocol/v4-abacus": "^1.2.4",
|
||||
"@dydxprotocol/v4-client-js": "^1.0.11",
|
||||
"@dydxprotocol/v4-localization": "^1.1.11",
|
||||
"@dydxprotocol/v4-client": "^0.29.0",
|
||||
"@ethersproject/providers": "^5.7.2",
|
||||
"@js-joda/core": "^5.5.3",
|
||||
"@privy-io/react-auth": "^1.53.0",
|
||||
"@privy-io/wagmi-connector": "^0.1.12",
|
||||
"@radix-ui/react-accordion": "^1.1.2",
|
||||
"@radix-ui/react-checkbox": "^1.0.4",
|
||||
"@radix-ui/react-collapsible": "^1.0.3",
|
||||
"@radix-ui/react-dialog": "^1.0.4",
|
||||
"@radix-ui/react-dropdown-menu": "^2.0.5",
|
||||
"@radix-ui/react-icons": "^1.3.0",
|
||||
"@radix-ui/react-navigation-menu": "^1.1.3",
|
||||
"@radix-ui/react-popover": "^1.0.6",
|
||||
"@radix-ui/react-radio-group": "^1.1.3",
|
||||
@@ -101,7 +92,6 @@
|
||||
"long": "^5.2.3",
|
||||
"luxon": "^3.3.0",
|
||||
"qr-code-styling": "1.6.0-rc.1",
|
||||
"query-string": "^8.1.0",
|
||||
"react": "^18.2.0",
|
||||
"react-aria": "^3.25.0",
|
||||
"react-dom": "^18.2.0",
|
||||
@@ -113,8 +103,8 @@
|
||||
"reselect": "^4.1.8",
|
||||
"styled-components": "^5.3.11",
|
||||
"use-latest": "^1.2.1",
|
||||
"viem": "^1.20.0",
|
||||
"wagmi": "^1.4.12"
|
||||
"viem": "^1.1.6",
|
||||
"wagmi": "^1.3.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.22.5",
|
||||
|
||||
@@ -4,47 +4,71 @@
|
||||
"details": [
|
||||
{
|
||||
"appIDs": [
|
||||
"{PLACE_YOUR_APP_ID_HERE}"
|
||||
"75C6UARB5H.exchangeV4.dydx.trading"
|
||||
],
|
||||
"components": [
|
||||
{
|
||||
"/": "/"
|
||||
"/": "/trade/*"
|
||||
},
|
||||
{
|
||||
"/": "/#/"
|
||||
"/": "/r/*"
|
||||
},
|
||||
{
|
||||
"/": "*/markets"
|
||||
"/": "/portfolio/overview"
|
||||
},
|
||||
{
|
||||
"/": "*/trade"
|
||||
"/": "/portfolio/positions"
|
||||
},
|
||||
{
|
||||
"/": "*/trade/*"
|
||||
"/": "/portfolio/orders"
|
||||
},
|
||||
{
|
||||
"/": "*/portfolio"
|
||||
"/": "/portfolio/fees"
|
||||
},
|
||||
{
|
||||
"/": "*/portfolio/overview"
|
||||
"/": "/portfolio/history"
|
||||
},
|
||||
{
|
||||
"/": "*/portfolio/positions"
|
||||
"/": "/portfolio/history/trades"
|
||||
},
|
||||
{
|
||||
"/": "*/portfolio/orders"
|
||||
"/": "/portfolio/history/transfers"
|
||||
},
|
||||
{
|
||||
"/": "*/portfolio/fees"
|
||||
"/": "/portfolio/history/funding"
|
||||
},
|
||||
{
|
||||
"/": "*/portfolio/history/trades"
|
||||
"/": "/rewards"
|
||||
},
|
||||
{
|
||||
"/": "*/portfolio/history/transfers"
|
||||
"/": "/my-profile"
|
||||
},
|
||||
{
|
||||
"/": "*/portfolio/history/funding"
|
||||
"/": "/rankings/hedgies"
|
||||
},
|
||||
{
|
||||
"/": "/rankings/competition"
|
||||
},
|
||||
{
|
||||
"/": "/rankings/diamond"
|
||||
},
|
||||
{
|
||||
"/": "/rankings/platinum"
|
||||
},
|
||||
{
|
||||
"/": "/rankings/gold"
|
||||
},
|
||||
{
|
||||
"/": "/rankings/silver"
|
||||
},
|
||||
{
|
||||
"/": "/rankings/bronze"
|
||||
},
|
||||
{
|
||||
"/": "/rankings/pnl-absolute"
|
||||
},
|
||||
{
|
||||
"/": "/rankings/pnl-percent"
|
||||
},
|
||||
{
|
||||
"/": "/walletsegue",
|
||||
|
||||
|
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 193 KiB |
@@ -1,12 +0,0 @@
|
||||
[
|
||||
{
|
||||
"chainId": "1",
|
||||
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
|
||||
"name": "Ethereum"
|
||||
},
|
||||
{
|
||||
"chainId": "5",
|
||||
"tokenAddress": "0x07865c6E87B9F70255377e024ace6630C1Eaa37F",
|
||||
"name": "Ethereum Goerli"
|
||||
}
|
||||
]
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"tradingRewardsFAQs": [
|
||||
{
|
||||
"questionLocalizationKey": "APP.TRADING_REWARDS.FAQ_WHO_IS_ELIGIBLE_QUESTION",
|
||||
"answerLocalizationKey": "APP.TRADING_REWARDS.FAQ_WHO_IS_ELIGIBLE_ANSWER"
|
||||
},
|
||||
{
|
||||
"questionLocalizationKey": "APP.TRADING_REWARDS.FAQ_HOW_DO_TRADING_REWARDS_WORK_QUESTION",
|
||||
"answerLocalizationKey": "APP.TRADING_REWARDS.FAQ_HOW_DO_TRADING_REWARDS_WORK_ANSWER"
|
||||
},
|
||||
{
|
||||
"questionLocalizationKey": "APP.TRADING_REWARDS.FAQ_HOW_DO_I_CLAIM_MY_REWARDS_QUESTION",
|
||||
"answerLocalizationKey": "APP.TRADING_REWARDS.FAQ_HOW_DO_I_CLAIM_MY_REWARDS_ANSWER"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,360 +0,0 @@
|
||||
{
|
||||
"1INCH-USD": {
|
||||
"name": "1inch",
|
||||
"tags": ["Defi"],
|
||||
"websiteLink": "https://1inch.io/",
|
||||
"whitepaperLink": "https://github.com/1inch",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/1inch/"
|
||||
},
|
||||
"AAVE-USD": {
|
||||
"name": "Aave",
|
||||
"tags": ["Defi"],
|
||||
"websiteLink": "https://aave.com/",
|
||||
"whitepaperLink": "https://github.com/aave/protocol-v2/blob/master/aave-v2-whitepaper.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/aave/"
|
||||
},
|
||||
"ADA-USD": {
|
||||
"name": "Cardano",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://cardano.org/",
|
||||
"whitepaperLink": "https://why.cardano.org/en/introduction/motivation/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/cardano/"
|
||||
},
|
||||
"ALGO-USD": {
|
||||
"name": "Algorand",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://algorand.com/",
|
||||
"whitepaperLink": "https://algorand.com/technology/white-papers",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/algorand/"
|
||||
},
|
||||
"APE-USD": {
|
||||
"name": "ApeCoin",
|
||||
"tags": [],
|
||||
"websiteLink": "https://apecoin.com/",
|
||||
"whitepaperLink": "https://apecoin.com/about",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/apecoin-ape/"
|
||||
},
|
||||
"APT-USD": {
|
||||
"name": "Aptos",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://aptoslabs.com/",
|
||||
"whitepaperLink": "https://aptos.dev/aptos-white-paper/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/aptos/"
|
||||
},
|
||||
"ARB-USD": {
|
||||
"name": "Arbitrum",
|
||||
"tags": [],
|
||||
"websiteLink": "https://arbitrum.io/",
|
||||
"whitepaperLink": "https://github.com/OffchainLabs/nitro",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/arbitrum/"
|
||||
},
|
||||
"ATOM-USD": {
|
||||
"name": "Cosmos",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://cosmos.network/",
|
||||
"whitepaperLink": "https://v1.cosmos.network/resources/whitepaper",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/cosmos/"
|
||||
},
|
||||
"AVAX-USD": {
|
||||
"name": "Avalanche",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://www.avalabs.org/",
|
||||
"whitepaperLink": "https://assets.website-files.com/5d80307810123f5ffbb34d6e/6008d7bbf8b10d1eb01e7e16_Avalanche%20Platform%20Whitepaper.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/avalanche/"
|
||||
},
|
||||
"BCH-USD": {
|
||||
"name": "Bitcoin Cash",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://bitcoincash.org/",
|
||||
"whitepaperLink": "https://bitcoincash.org/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/bitcoin-cash/"
|
||||
},
|
||||
"BLUR-USD": {
|
||||
"name": "Blur",
|
||||
"tags": [],
|
||||
"websiteLink": "https://blur.io/",
|
||||
"whitepaperLink": "https://docs.blur.foundation/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/blur-token/"
|
||||
},
|
||||
"CELO-USD": {
|
||||
"name": "Celo",
|
||||
"tags": [],
|
||||
"websiteLink": "https://celo.org",
|
||||
"whitepaperLink": "https://docs.celo.org",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/celo/"
|
||||
},
|
||||
"BTC-USD": {
|
||||
"name": "Bitcoin",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://bitcoin.org/",
|
||||
"whitepaperLink": "https://bitcoin.org/bitcoin.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/bitcoin/"
|
||||
},
|
||||
"COMP-USD": {
|
||||
"name": "Compound",
|
||||
"tags": ["Defi"],
|
||||
"websiteLink": "https://compound.finance/",
|
||||
"whitepaperLink": "https://compound.finance/documents/Compound.Whitepaper.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/compound/"
|
||||
},
|
||||
"CRV-USD": {
|
||||
"name": "Curve",
|
||||
"tags": ["Governance"],
|
||||
"websiteLink": "https://curve.fi/",
|
||||
"whitepaperLink": "https://curve.fi/whitepaper",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/curve-dao-token/"
|
||||
},
|
||||
"DOGE-USD": {
|
||||
"name": "Dogecoin",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://dogecoin.com/",
|
||||
"whitepaperLink": "https://github.com/dogecoin/dogecoin",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/dogecoin/"
|
||||
},
|
||||
"DOT-USD": {
|
||||
"name": "Polkadot",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://polkadot.network/",
|
||||
"whitepaperLink": "https://polkadot.network/PolkaDotPaper.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/polkadot-new/"
|
||||
},
|
||||
"ENJ-USD": {
|
||||
"name": "Enjin",
|
||||
"tags": [],
|
||||
"websiteLink": "https://enjin.io/",
|
||||
"whitepaperLink": "https://cdn.enjin.io/downloads/whitepapers/enjin-coin/en.pdf/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/enjin-coin/"
|
||||
},
|
||||
"EOS-USD": {
|
||||
"name": "EOS",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://eos.io/",
|
||||
"whitepaperLink": "https://github.com/EOSIO/Documentation/blob/master/TechnicalWhitePaper.md",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/eos/"
|
||||
},
|
||||
"ETC-USD": {
|
||||
"name": "Ethereum Classic",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://ethereumclassic.org/",
|
||||
"whitepaperLink": "https://ethereumclassic.org/why-classic",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/ethereum-classic/"
|
||||
},
|
||||
"ETH-USD": {
|
||||
"name": "Ethereum",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://ethereum.org/",
|
||||
"whitepaperLink": "https://ethereum.org/whitepaper/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/ethereum/",
|
||||
"displayStepSize": "0.001",
|
||||
"displayTickSize": "0.1"
|
||||
},
|
||||
"FIL-USD": {
|
||||
"name": "Filecoin",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://filecoin.io/",
|
||||
"whitepaperLink": "https://filecoin.io/filecoin.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/filecoin/"
|
||||
},
|
||||
"HNT-USD": {
|
||||
"name": "Helium",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://www.helium.com",
|
||||
"whitepaperLink": "http://whitepaper.helium.com",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/helium/"
|
||||
},
|
||||
"ICP-USD": {
|
||||
"name": "Internet Computer",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://dfinity.org",
|
||||
"whitepaperLink": "https://dfinity.org/whitepaper.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/internet-computer/"
|
||||
},
|
||||
"LDO-USD": {
|
||||
"name": "Lido DAO",
|
||||
"tags": ["Defi"],
|
||||
"websiteLink": "https://lido.fi/",
|
||||
"whitepaperLink": "https://lido.fi/static/Lido:Ethereum-Liquid-Staking.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/lido-dao/"
|
||||
},
|
||||
"LINK-USD": {
|
||||
"name": "Chainlink",
|
||||
"tags": ["Defi"],
|
||||
"websiteLink": "https://chain.link/",
|
||||
"whitepaperLink": "https://link.smartcontract.com/whitepaper",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/chainlink/"
|
||||
},
|
||||
"LTC-USD": {
|
||||
"name": "Litecoin",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://litecoin.org/",
|
||||
"whitepaperLink": "https://litecoin.info/index.php/Main_Page",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/litecoin/"
|
||||
},
|
||||
"MATIC-USD": {
|
||||
"name": "Polygon",
|
||||
"tags": ["Layer 2"],
|
||||
"websiteLink": "https://polygon.technology/",
|
||||
"whitepaperLink": "https://polygon.technology/lightpaper-polygon.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/polygon/"
|
||||
},
|
||||
"MKR-USD": {
|
||||
"name": "Maker",
|
||||
"tags": ["Governance"],
|
||||
"websiteLink": "https://makerdao.com",
|
||||
"whitepaperLink": "https://makerdao.com/whitepaper",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/maker/"
|
||||
},
|
||||
"NEAR-USD": {
|
||||
"name": "NEAR Protocol",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://near.org",
|
||||
"whitepaperLink": "https://near.org/papers/the-official-near-white-paper/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/near-protocol/"
|
||||
},
|
||||
"OP-USD": {
|
||||
"name": "Optimism",
|
||||
"tags": [],
|
||||
"websiteLink": "https://www.optimism.io/",
|
||||
"whitepaperLink": "https://github.com/ethereum-optimism",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/optimism-ethereum/"
|
||||
},
|
||||
"PEPE-USD": {
|
||||
"name": "Pepe",
|
||||
"tags": [],
|
||||
"websiteLink": "https://www.pepe.vip/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/pepe/"
|
||||
},
|
||||
"RUNE-USD": {
|
||||
"name": "THORChain",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://thorchain.org",
|
||||
"whitepaperLink": "https://whitepaper.io/document/709/thorchain-whitepaper",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/thorchain/"
|
||||
},
|
||||
"SEI-USD": {
|
||||
"name": "Sei",
|
||||
"tags": ["Layer 1", "Defi"],
|
||||
"websiteLink": "https://www.sei.io/",
|
||||
"whitepaperLink": "https://github.com/sei-protocol/sei-chain/blob/3c9576fee3494ce039df684624f918dd8066ba3f/whitepaper/Sei_Whitepaper.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/sei/"
|
||||
},
|
||||
"SHIB-USD": {
|
||||
"name": "Shiba Inu",
|
||||
"tags": [],
|
||||
"websiteLink": "https://shibatoken.com/",
|
||||
"whitepaperLink": "https://docs.shibatoken.com/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/shiba-inu/"
|
||||
},
|
||||
"SNX-USD": {
|
||||
"name": "Synthetix",
|
||||
"tags": ["Defi"],
|
||||
"websiteLink": "https://synthetix.io/",
|
||||
"whitepaperLink": "https://docs.synthetix.io/litepaper",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/synthetix-network-token/"
|
||||
},
|
||||
"SOL-USD": {
|
||||
"name": "Solana",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://solana.com/",
|
||||
"whitepaperLink": "https://solana.com/solana-whitepaper.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/solana/"
|
||||
},
|
||||
"SUI-USD": {
|
||||
"name": "Sui",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://sui.io/",
|
||||
"whitepaperLink": "https://github.com/MystenLabs",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/sui/"
|
||||
},
|
||||
"SUSHI-USD": {
|
||||
"name": "Sushi",
|
||||
"tags": ["Defi"],
|
||||
"websiteLink": "https://sushi.com/",
|
||||
"whitepaperLink": "https://docs.sushi.com/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/sushiswap/"
|
||||
},
|
||||
"TIA-USD": {
|
||||
"name": "Celestia",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://celestia.org/",
|
||||
"whitepaperLink": "https://arxiv.org/pdf/1905.09274.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/celestia/"
|
||||
},
|
||||
"TRX-USD": {
|
||||
"name": "TRON",
|
||||
"tags": ["Defi"],
|
||||
"websiteLink": "https://tron.network/",
|
||||
"whitepaperLink": "https://tron.network/static/doc/white_paper_v_2_0.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/tron/"
|
||||
},
|
||||
"UMA-USD": {
|
||||
"name": "UMA",
|
||||
"tags": ["Defi"],
|
||||
"websiteLink": "https://umaproject.org/",
|
||||
"whitepaperLink": "https://github.com/UMAprotocol/whitepaper",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/uma/"
|
||||
},
|
||||
"UNI-USD": {
|
||||
"name": "Uniswap",
|
||||
"tags": ["Defi"],
|
||||
"websiteLink": "https://uniswap.org/",
|
||||
"whitepaperLink": "https://uniswap.org/whitepaper-v3.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/uniswap/"
|
||||
},
|
||||
"WLD-USD": {
|
||||
"name": "Worldcoin",
|
||||
"tags": [],
|
||||
"websiteLink": "https://worldcoin.org/",
|
||||
"whitepaperLink": "https://whitepaper.worldcoin.org/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/worldcoin-org/"
|
||||
},
|
||||
"XLM-USD": {
|
||||
"name": "Stellar",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://www.stellar.org/",
|
||||
"whitepaperLink": "https://www.stellar.org/papers/stellar-consensus-protocol",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/stellar/"
|
||||
},
|
||||
"XMR-USD": {
|
||||
"name": "Monero",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://www.getmonero.org/",
|
||||
"whitepaperLink": "https://www.getmonero.org/resources/research-lab/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/monero/"
|
||||
},
|
||||
"XRP-USD": {
|
||||
"name": "Ripple",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://ripple.com/currency/",
|
||||
"whitepaperLink": "https://github.com/ripple",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/xrp/"
|
||||
},
|
||||
"XTZ-USD": {
|
||||
"name": "Tezos",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://tezos.com",
|
||||
"whitepaperLink": "https://tezos.com/whitepaper.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/tezos/"
|
||||
},
|
||||
"YFI-USD": {
|
||||
"name": "Yearn",
|
||||
"tags": ["Defi"],
|
||||
"websiteLink": "https://yearn.finance/",
|
||||
"whitepaperLink": "https://docs.yearn.finance/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/yearn-finance/"
|
||||
},
|
||||
"ZEC-USD": {
|
||||
"name": "Zcash",
|
||||
"tags": ["Layer 1"],
|
||||
"websiteLink": "https://z.cash/",
|
||||
"whitepaperLink": "https://z.cash/technology/",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/zcash/"
|
||||
},
|
||||
"ZRX-USD": {
|
||||
"name": "0x",
|
||||
"tags": ["Defi"],
|
||||
"websiteLink": "https://0x.org/",
|
||||
"whitepaperLink": "https://0x.org/pdfs/0x_white_paper.pdf",
|
||||
"coinMarketCapsLink": "https://coinmarketcap.com/currencies/0x/"
|
||||
}
|
||||
}
|
||||
@@ -1,472 +0,0 @@
|
||||
[
|
||||
{
|
||||
"id": "c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96",
|
||||
"name": "MetaMask",
|
||||
"description": "",
|
||||
"homepage": "https://metamask.io/",
|
||||
"chains": [
|
||||
"eip155:1",
|
||||
"eip155:42161",
|
||||
"eip155:43114"
|
||||
],
|
||||
"versions": [
|
||||
"1"
|
||||
],
|
||||
"app": {
|
||||
"browser": "",
|
||||
"ios": "https://apps.apple.com/us/app/metamask/id1438144202",
|
||||
"android": "https://play.google.com/store/apps/details?id=io.metamask",
|
||||
"mac": "",
|
||||
"windows": "",
|
||||
"linux": ""
|
||||
},
|
||||
"mobile": {
|
||||
"native": "metamask:",
|
||||
"universal": "https://metamask.app.link"
|
||||
},
|
||||
"desktop": {
|
||||
"native": "",
|
||||
"universal": ""
|
||||
},
|
||||
"metadata": {
|
||||
"shortName": "MetaMask",
|
||||
"colors": {
|
||||
"primary": "rgb(255, 255, 255)",
|
||||
"secondary": ""
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"comment": "MetaMask",
|
||||
"iosMinVersion": "0",
|
||||
"imageUrl": "",
|
||||
"encoding": "=\"#%/<>?@\\^`{|}:&",
|
||||
"androidPackage": "io.metamask",
|
||||
"connections": [
|
||||
{
|
||||
"type": "walletConnectV2",
|
||||
"native": "metamask:",
|
||||
"universal": "https://metamask.app.link"
|
||||
}
|
||||
],
|
||||
"methods": [
|
||||
"eth_sendTransaction",
|
||||
"personal_sign",
|
||||
"eth_signTypedData",
|
||||
"wallet_addEthereumChain"
|
||||
]
|
||||
},
|
||||
"userFields": {
|
||||
"analyticEvent": "METAMASK",
|
||||
"imageName": "metamask.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "coinbase-wallet",
|
||||
"name": "Coinbase Wallet",
|
||||
"description": "",
|
||||
"homepage": "https://www.coinbase.com/wallet",
|
||||
"chains": [
|
||||
"eip155:1"
|
||||
],
|
||||
"versions": [
|
||||
"1"
|
||||
],
|
||||
"app": {
|
||||
"browser": "",
|
||||
"ios": "https://apps.apple.com/us/app/coinbase-wallet-nfts-crypto/id1278383455",
|
||||
"android": "https://play.google.com/store/apps/details?id=org.toshi",
|
||||
"mac": "",
|
||||
"windows": "",
|
||||
"linux": ""
|
||||
},
|
||||
"mobile": {
|
||||
"native": "cbwallet:",
|
||||
"universal": ""
|
||||
},
|
||||
"desktop": {
|
||||
"native": "",
|
||||
"universal": ""
|
||||
},
|
||||
"metadata": {
|
||||
"shortName": "Coinbase",
|
||||
"colors": {
|
||||
"primary": "rgb(255, 255, 255)",
|
||||
"secondary": ""
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"comment": "Coinbase",
|
||||
"iosMinVersion": "1.8.0",
|
||||
"imageUrl": "",
|
||||
"encoding": "=\"#%/<>?@\\^`{|}:&",
|
||||
"androidPackage": "org.toshi",
|
||||
"connections": [
|
||||
{
|
||||
"type": "walletSegue",
|
||||
"native": "cbwallet:",
|
||||
"universal": ""
|
||||
}
|
||||
],
|
||||
"methods": [
|
||||
"eth_sendTransaction",
|
||||
"personal_sign",
|
||||
"eth_signTypedData",
|
||||
"wallet_addEthereumChain"
|
||||
]
|
||||
},
|
||||
"userFields": {
|
||||
"analyticEvent": "COINBASE_WALLET",
|
||||
"imageName": "coinbase-wallet.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "9d373b43ad4d2cf190fb1a774ec964a1addf406d6fd24af94ab7596e58c291b2",
|
||||
"name": "imToken",
|
||||
"description": "",
|
||||
"homepage": "https://token.im/",
|
||||
"chains": [
|
||||
"eip155:1"
|
||||
],
|
||||
"versions": [
|
||||
"1"
|
||||
],
|
||||
"app": {
|
||||
"browser": "",
|
||||
"ios": "https://itunes.apple.com/us/app/imtoken2/id1384798940",
|
||||
"android": "https://play.google.com/store/apps/details?id=im.token.app",
|
||||
"mac": "",
|
||||
"windows": "",
|
||||
"linux": ""
|
||||
},
|
||||
"mobile": {
|
||||
"native": "imtokenv2:",
|
||||
"universal": ""
|
||||
},
|
||||
"desktop": {
|
||||
"native": "",
|
||||
"universal": ""
|
||||
},
|
||||
"metadata": {
|
||||
"shortName": "imToken",
|
||||
"colors": {
|
||||
"primary": "rgb(255, 255, 255)",
|
||||
"secondary": ""
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"comment": "imToken",
|
||||
"iosMinVersion": "0",
|
||||
"imageUrl": "",
|
||||
"androidPackage": "im.token.app",
|
||||
"connections": [
|
||||
{
|
||||
"type": "walletConnectV2",
|
||||
"native": "imtokenv2:",
|
||||
"universal": ""
|
||||
}
|
||||
],
|
||||
"methods": [
|
||||
"eth_sendTransaction",
|
||||
"personal_sign",
|
||||
"eth_signTypedData"
|
||||
]
|
||||
},
|
||||
"userFields": {
|
||||
"analyticEvent": "IMTOKEN",
|
||||
"imageName": "imtoken.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "4622a2b2d6af1c9844944291e5e7351a6aa24cd7b23099efac1b2fd875da31a0",
|
||||
"name": "Trust Wallet",
|
||||
"description": "",
|
||||
"homepage": "https://trustwallet.com/",
|
||||
"chains": [
|
||||
"eip155:1",
|
||||
"eip155:42161",
|
||||
"eip155:43114"
|
||||
],
|
||||
"versions": [
|
||||
"1"
|
||||
],
|
||||
"app": {
|
||||
"browser": "",
|
||||
"ios": "https://apps.apple.com/app/apple-store/id1288339409",
|
||||
"android": "https://play.google.com/store/apps/details?id=com.wallet.crypto.trustapp",
|
||||
"mac": "",
|
||||
"windows": "",
|
||||
"linux": ""
|
||||
},
|
||||
"mobile": {
|
||||
"native": "trust:",
|
||||
"universal": ""
|
||||
},
|
||||
"desktop": {
|
||||
"native": "",
|
||||
"universal": ""
|
||||
},
|
||||
"metadata": {
|
||||
"shortName": "Trust",
|
||||
"colors": {
|
||||
"primary": "rgb(51, 117, 187)",
|
||||
"secondary": ""
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"comment": "Trust Wallet",
|
||||
"iosMinVersion": "0",
|
||||
"encoding": "=\"#%/<>?@\\^`{|}:&",
|
||||
"imageUrl": "",
|
||||
"androidPackage": "com.wallet.crypto.trustapp",
|
||||
"connections": [
|
||||
{
|
||||
"type": "walletConnectV2",
|
||||
"native": "trust:",
|
||||
"universal": "https://link.trustwallet.com"
|
||||
}
|
||||
],
|
||||
"methods": [
|
||||
"eth_sendTransaction",
|
||||
"personal_sign",
|
||||
"eth_signTypedData"
|
||||
]
|
||||
},
|
||||
"userFields": {
|
||||
"analyticEvent": "TRUST_WALLET",
|
||||
"imageName": "trust-wallet.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Zerion",
|
||||
"name": "Zerion",
|
||||
"description": "",
|
||||
"homepage": "https://zerion.io/",
|
||||
"chains": [
|
||||
"eip155:1"
|
||||
],
|
||||
"versions": [
|
||||
"1"
|
||||
],
|
||||
"app": {
|
||||
"browser": "",
|
||||
"ios": "https://apps.apple.com/app/apple-store/id1456732565",
|
||||
"android": "https://play.google.com/store/apps/details?id=io.zerion.android",
|
||||
"mac": "",
|
||||
"windows": "",
|
||||
"linux": ""
|
||||
},
|
||||
"mobile": {
|
||||
"native": "zerion:",
|
||||
"universal": ""
|
||||
},
|
||||
"desktop": {
|
||||
"native": "",
|
||||
"universal": ""
|
||||
},
|
||||
"metadata": {
|
||||
"shortName": "Zerion",
|
||||
"colors": {
|
||||
"primary": "rgb(51, 117, 187)",
|
||||
"secondary": ""
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"comment": "Zerion Wallet",
|
||||
"iosMinVersion": "0",
|
||||
"encoding": "=\"#%/<>?@\\^`{|}:&",
|
||||
"imageUrl": "",
|
||||
"androidPackage": "io.zerion.android",
|
||||
"connections": [
|
||||
{
|
||||
"type": "walletConnectV2",
|
||||
"native": "zerion:",
|
||||
"universal": ""
|
||||
}
|
||||
],
|
||||
"methods": [
|
||||
"eth_sendTransaction",
|
||||
"personal_sign",
|
||||
"eth_signTypedData"
|
||||
]
|
||||
},
|
||||
"userFields": {
|
||||
"analyticEvent": "ZERION",
|
||||
"imageName": "zerion.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "20459438007b75f4f4acb98bf29aa3b800550309646d375da5fd4aac6c2a2c66",
|
||||
"name": "TokenPocket",
|
||||
"description": "",
|
||||
"homepage": "https://tokenpocket.pro/",
|
||||
"chains": [
|
||||
"eip155:1"
|
||||
],
|
||||
"versions": [
|
||||
"1"
|
||||
],
|
||||
"app": {
|
||||
"browser": "",
|
||||
"ios": "https://apps.apple.com/us/app/tokenpocket-trusted-wallet/id1436028697",
|
||||
"android": "https://play.google.com/store/apps/details?id=vip.mytokenpocket",
|
||||
"mac": "",
|
||||
"windows": "",
|
||||
"linux": ""
|
||||
},
|
||||
"mobile": {
|
||||
"native": "tpoutside:",
|
||||
"universal": ""
|
||||
},
|
||||
"desktop": {
|
||||
"native": "",
|
||||
"universal": ""
|
||||
},
|
||||
"metadata": {
|
||||
"shortName": "TokenPocket",
|
||||
"colors": {
|
||||
"primary": "rgb(41, 128, 254)",
|
||||
"secondary": ""
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"comment": "TokenPocket",
|
||||
"iosMinVersion": "0",
|
||||
"imageUrl": "",
|
||||
"androidPackage": "vip.mytokenpocket",
|
||||
"connections": [
|
||||
{
|
||||
"type": "walletConnectV2",
|
||||
"native": "tpoutside:",
|
||||
"universal": ""
|
||||
}
|
||||
],
|
||||
"methods": [
|
||||
"eth_sendTransaction",
|
||||
"personal_sign",
|
||||
"eth_signTypedData"
|
||||
]
|
||||
},
|
||||
"userFields": {
|
||||
"analyticEvent": "TOKEN_POCKET",
|
||||
"imageName": "tokenpocket.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "1ae92b26df02f0abca6304df07debccd18262fdf5fe82daa81593582dac9a369",
|
||||
"name": "Rainbow",
|
||||
"description": "",
|
||||
"homepage": "https://rainbow.me/",
|
||||
"chains": [
|
||||
"eip155:1"
|
||||
],
|
||||
"versions": [
|
||||
"1"
|
||||
],
|
||||
"app": {
|
||||
"browser": "",
|
||||
"ios": "https://apps.apple.com/us/app/rainbow-ethereum-wallet/id1457119021",
|
||||
"android": "",
|
||||
"mac": "",
|
||||
"windows": "",
|
||||
"linux": ""
|
||||
},
|
||||
"mobile": {
|
||||
"native": "rainbow:",
|
||||
"universal": "https://rnbwapp.com"
|
||||
},
|
||||
"desktop": {
|
||||
"native": "",
|
||||
"universal": ""
|
||||
},
|
||||
"metadata": {
|
||||
"shortName": "Rainbow",
|
||||
"colors": {
|
||||
"primary": "rgb(0, 30, 89)",
|
||||
"secondary": ""
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"comment": "Rainbow",
|
||||
"iosMinVersion": "0",
|
||||
"encoding": "=\"#%/<>?@\\^`{|}:&",
|
||||
"androidPackage": "me.rainbow",
|
||||
"backlinked": true,
|
||||
"imageUrl": "",
|
||||
"connections": [
|
||||
{
|
||||
"type": "walletConnectV2",
|
||||
"native": "rainbow:",
|
||||
"universal": "https://rnbwapp.com"
|
||||
}
|
||||
],
|
||||
"methods": [
|
||||
"eth_sendTransaction",
|
||||
"personal_sign",
|
||||
"eth_signTypedData"
|
||||
]
|
||||
},
|
||||
"userFields": {
|
||||
"analyticEvent": "RAINBOW_WALLET",
|
||||
"imageName": "rainbow-wallet.png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "09102e7bbbd3f92001eda104abe23803181629f695e8f1b95af96d88ff7d5890",
|
||||
"name": "1inch Wallet",
|
||||
"description": "",
|
||||
"homepage": "https://1inch.io/wallet/",
|
||||
"chains": [
|
||||
"eip155:1",
|
||||
"eip155:56"
|
||||
],
|
||||
"versions": [
|
||||
"1"
|
||||
],
|
||||
"app": {
|
||||
"browser": "",
|
||||
"ios": "https://apps.apple.com/us/app/1inch-defi-wallet/id1546049391",
|
||||
"android": "",
|
||||
"mac": "",
|
||||
"windows": "",
|
||||
"linux": ""
|
||||
},
|
||||
"mobile": {
|
||||
"native": "oneinch:",
|
||||
"universal": "https://wallet.1inch.io"
|
||||
},
|
||||
"desktop": {
|
||||
"native": "",
|
||||
"universal": ""
|
||||
},
|
||||
"metadata": {
|
||||
"shortName": "1inch",
|
||||
"colors": {
|
||||
"primary": "rgb(31, 36, 46)",
|
||||
"secondary": ""
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"comment": "1inch",
|
||||
"iosMinVersion": "0",
|
||||
"encoding": "=\"#%/<>?@\\^`{|}:&",
|
||||
"androidPackage": "io.oneinch.android",
|
||||
"imageUrl": "",
|
||||
"connections": [
|
||||
{
|
||||
"type": "walletConnectV2",
|
||||
"native": "oneinch:",
|
||||
"universal": "https://wallet.1inch.io"
|
||||
}
|
||||
],
|
||||
"methods": [
|
||||
"eth_sendTransaction",
|
||||
"personal_sign",
|
||||
"eth_signTypedData"
|
||||
]
|
||||
},
|
||||
"userFields": {
|
||||
"analyticEvent": "1INCH",
|
||||
"imageName": "1inch.png"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
Before Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 423 KiB |
|
Before Width: | Height: | Size: 3.8 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="50" cy="50" r="50" fill="#F49B33"/>
|
||||
<circle cx="50" cy="50" r="50" fill="url(#aave_gradient)"/>
|
||||
<path d="M73.4423 68.0145L56.9794 28.0691C56.6966 27.1891 56.1453 26.4199 55.4028 25.8694C54.6604 25.3189 53.7642 25.0149 52.84 25H51.392C50.4706 25.0181 49.5779 25.3237 48.8386 25.8739C48.0993 26.4242 47.5503 27.1917 47.2684 28.0691L40.1072 45.4764H34.6773C33.8965 45.4846 33.1503 45.7995 32.5997 46.3531C32.0491 46.9066 31.7382 47.6545 31.7341 48.4353V48.4668C31.7382 49.2475 32.0491 49.9954 32.5997 50.549C33.1503 51.1025 33.8965 51.4174 34.6773 51.4257H37.589L30.7583 68.0145C30.6282 68.3784 30.559 68.7613 30.5537 69.1477C30.5217 69.9638 30.8097 70.7601 31.3564 71.3669C31.6391 71.6567 31.9807 71.8825 32.3581 72.0291C32.7354 72.1757 33.1399 72.2397 33.5441 72.2168C34.1556 72.2082 34.7495 72.0102 35.2439 71.6502C35.7585 71.2646 36.1607 70.7484 36.4086 70.155L43.9475 51.4257H49.1571C49.9406 51.4215 50.6908 51.1085 51.2448 50.5545C51.7988 50.0004 52.1119 49.2502 52.116 48.4668V48.3881C52.1119 47.6046 51.7988 46.8544 51.2448 46.3004C50.6908 45.7463 49.9406 45.4333 49.1571 45.4291H46.3713L52.116 31.0752L67.7763 70.155C68.0242 70.7484 68.4263 71.2646 68.941 71.6502C69.4354 72.0102 70.0292 72.2082 70.6408 72.2168C71.0476 72.242 71.455 72.1791 71.8353 72.0324C72.2155 71.8857 72.5597 71.6587 72.8442 71.3669C73.3852 70.7577 73.6675 69.9616 73.6312 69.1477C73.651 68.7608 73.5866 68.3741 73.4423 68.0145Z" fill="white"/>
|
||||
<defs>
|
||||
<linearGradient id="aave_gradient" x1="-5" y1="68" x2="106.944" y2="65.2778" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#30BAC6"/>
|
||||
<stop offset="1" stop-color="#B6509E"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,33 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="148" height="148" rx="74" fill="#0033AD"/>
|
||||
<path d="M51.4155 73.8688C51.2022 77.5753 54.0554 80.7485 57.7619 80.9618C57.8953 80.9618 58.0286 80.9618 58.1619 80.9618C61.8951 80.9618 64.9083 77.9486 64.8816 74.2154C64.8816 70.4822 61.8684 67.469 58.1353 67.4957C54.5621 67.4957 51.6022 70.2956 51.4155 73.8688Z" fill="white"/>
|
||||
<path d="M26.2955 72.1355C25.0955 72.0555 24.0556 72.9888 24.0022 74.1887C23.9489 75.3887 24.8555 76.4287 26.0555 76.482C27.2554 76.562 28.2687 75.6287 28.3487 74.4287C28.4287 73.2288 27.4954 72.2155 26.2955 72.1355Z" fill="white"/>
|
||||
<path d="M50.989 34.777C52.0556 34.2437 52.4823 32.9104 51.9489 31.8438C51.4156 30.7772 50.0824 30.3505 49.0157 30.8838C47.9491 31.4171 47.5225 32.7238 48.0558 33.7904C48.5891 34.8837 49.8957 35.337 50.989 34.777C50.9623 34.777 50.989 34.777 50.989 34.777Z" fill="white"/>
|
||||
<path d="M57.8144 46.6965C59.4677 45.8699 60.1343 43.8433 59.3077 42.19C58.481 40.5368 56.4544 39.8701 54.8012 40.6968C53.1479 41.5234 52.4813 43.55 53.3079 45.2032C54.1345 46.8565 56.1611 47.5232 57.8144 46.6965Z" fill="white"/>
|
||||
<path d="M34.829 54.8829C36.1089 55.7095 37.8155 55.3628 38.6688 54.0829C39.4955 52.803 39.1488 51.0964 37.8689 50.2431C36.5889 49.4164 34.8823 49.7631 34.029 51.043C33.1757 52.323 33.549 54.0562 34.829 54.8829Z" fill="white"/>
|
||||
<path d="M38.9086 70.9355C37.042 70.8289 35.4688 72.2422 35.3621 74.1088C35.2554 75.9753 36.6687 77.5486 38.5353 77.6553C40.4019 77.7619 41.9752 76.3487 42.0818 74.4821C42.1885 72.6421 40.7752 71.0422 38.9086 70.9355Z" fill="white"/>
|
||||
<path d="M35.2004 93.5213C33.8405 94.2146 33.2805 95.8679 33.9738 97.2545C34.6671 98.6144 36.3204 99.1744 37.707 98.4811C39.067 97.7878 39.6269 96.1345 38.9336 94.7479C38.2403 93.388 36.5604 92.828 35.2004 93.5213Z" fill="white"/>
|
||||
<path d="M48.2693 63.9758C50.1092 65.1758 52.5625 64.6691 53.7357 62.8292C54.9357 60.9893 54.4291 58.5361 52.5891 57.3628C50.7492 56.1628 48.296 56.6695 47.1227 58.5094C45.9227 60.3227 46.4294 62.7759 48.2693 63.9758Z" fill="white"/>
|
||||
<path d="M89.7342 46.4299C91.2808 47.4432 93.3874 47.0165 94.4007 45.4699C95.414 43.9233 94.9874 41.8167 93.4408 40.8034C91.8942 39.7901 89.7876 40.2168 88.7743 41.7634C87.7343 43.3367 88.161 45.4166 89.7342 46.4299Z" fill="white"/>
|
||||
<path d="M96.6133 34.5637C97.6266 35.2303 98.9598 34.937 99.6265 33.9237C100.293 32.9104 99.9998 31.5771 98.9865 30.9105C97.9732 30.2439 96.6399 30.5372 95.9733 31.5238C95.3333 32.5371 95.6266 33.897 96.6133 34.5637Z" fill="white"/>
|
||||
<path d="M90.239 67.4424C86.5325 67.229 83.3326 70.0823 83.146 73.7888C82.9327 77.4953 85.7859 80.6952 89.4924 80.8818C89.6257 80.8818 89.7591 80.8818 89.8657 80.8818C93.5722 80.8818 96.5855 77.8686 96.5855 74.1354C96.6121 70.5889 93.8122 67.629 90.239 67.4424Z" fill="white"/>
|
||||
<path d="M60.0279 63.4959C61.1745 65.7624 63.4944 67.2024 66.0543 67.2024C69.7608 67.2024 72.774 64.1892 72.774 60.456C72.774 59.416 72.534 58.3761 72.054 57.4161C70.3741 54.0829 66.3209 52.7496 63.0144 54.4296C59.6812 56.1361 58.3479 60.1893 60.0279 63.4959Z" fill="white"/>
|
||||
<path d="M112.799 54.8829C114.159 54.1896 114.692 52.5096 113.999 51.1497C113.306 49.7897 111.626 49.2564 110.266 49.9497C108.906 50.643 108.373 52.2963 109.039 53.6562C109.759 55.0162 111.413 55.5762 112.799 54.8829Z" fill="white"/>
|
||||
<path d="M95.733 57.0161C93.7864 58.0027 92.9864 60.376 93.973 62.3226C94.9597 64.2692 97.3329 65.0691 99.2795 64.0825C101.226 63.0959 102.026 60.7226 101.039 58.776C100.053 56.8295 97.6795 56.0562 95.733 57.0161Z" fill="white"/>
|
||||
<path d="M73.7343 33.5504C75.2542 33.6304 76.5608 32.4571 76.6675 30.9372C76.7742 29.4172 75.5742 28.1106 74.0543 28.0039C72.5343 27.9239 71.2277 29.0706 71.121 30.5905C71.0411 32.1371 72.2143 33.4437 73.7343 33.5504Z" fill="white"/>
|
||||
<path d="M73.7068 50.963C75.8934 51.0964 77.76 49.4164 77.8667 47.2298C78 45.0433 76.32 43.1767 74.1335 43.07C71.9469 42.9367 70.0803 44.6166 69.9736 46.8032C69.867 48.9898 71.5202 50.8564 73.7068 50.963Z" fill="white"/>
|
||||
<path d="M52.2668 91.388C54.2134 90.4014 55.0133 88.0282 54.0267 86.0816C53.0401 84.135 50.6669 83.335 48.7203 84.3217C46.7737 85.3083 45.9737 87.6815 46.9603 89.6281C47.947 91.5747 50.3202 92.3747 52.2668 91.388Z" fill="white"/>
|
||||
<path d="M76.2669 56.7495C74.2403 59.8693 75.0936 64.0292 78.2135 66.0557C81.3333 68.0823 85.4932 67.229 87.5198 64.1092C89.5463 60.9893 88.693 56.8295 85.5732 54.8029C84.4799 54.0829 83.1999 53.7096 81.8933 53.7096C79.6267 53.7096 77.5202 54.8562 76.2669 56.7495Z" fill="white"/>
|
||||
<path d="M87.973 84.9083C86.2931 81.5751 82.2399 80.2418 78.9334 81.9218C75.6002 83.6017 74.2669 87.6549 75.9468 90.9614C77.6267 94.2946 81.6799 95.6279 84.9864 93.948C88.293 92.2947 89.6529 88.2949 87.9997 84.9617C87.9997 84.935 87.9997 84.935 87.973 84.9083Z" fill="white"/>
|
||||
<path d="M99.7327 84.4283C97.8928 83.2284 95.4395 83.735 94.2662 85.575C93.0663 87.4149 93.5729 89.8681 95.4129 91.0414C97.2528 92.2414 99.706 91.7347 100.879 89.8948C102.079 88.0815 101.573 85.6283 99.7327 84.4283Z" fill="white"/>
|
||||
<path d="M112.638 74.3221C112.745 72.4555 111.332 70.8822 109.465 70.7756C107.599 70.6689 106.025 72.0822 105.919 73.9488C105.812 75.8154 107.225 77.3886 109.092 77.4953C110.932 77.602 112.532 76.162 112.638 74.3221Z" fill="white"/>
|
||||
<path d="M121.944 71.9222C120.744 71.8422 119.704 72.7755 119.651 73.9754C119.597 75.1754 120.504 76.2153 121.704 76.2687C122.904 76.3487 123.917 75.4154 123.997 74.2154C124.05 73.0155 123.144 72.0022 121.944 71.9222Z" fill="white"/>
|
||||
<path d="M113.171 93.5213C111.891 92.6947 110.184 93.0413 109.331 94.3213C108.504 95.6012 108.851 97.3078 110.131 98.1611C111.411 98.9877 113.117 98.6411 113.971 97.3611C114.824 96.0812 114.451 94.3479 113.171 93.5213Z" fill="white"/>
|
||||
<path d="M51.3608 113.84C50.3475 113.174 49.0142 113.467 48.3475 114.454C47.6809 115.467 47.9742 116.8 48.9609 117.467C49.9741 118.134 51.3074 117.84 51.9741 116.854C52.6674 115.867 52.3741 114.507 51.3608 113.84Z" fill="white"/>
|
||||
<path d="M97.0138 113.627C95.9471 114.16 95.5205 115.494 96.0538 116.56C96.5871 117.627 97.9204 118.054 98.987 117.52C100.054 116.987 100.48 115.68 99.947 114.614C99.4137 113.521 98.1071 113.067 97.0138 113.627C97.0404 113.627 97.0138 113.627 97.0138 113.627Z" fill="white"/>
|
||||
<path d="M71.733 91.6547C73.7596 88.5348 72.9063 84.375 69.7864 82.3218C66.6665 80.2952 62.5067 81.1485 60.4534 84.2683C58.4002 87.3882 59.2802 91.5481 62.4 93.6013C63.4933 94.3213 64.7733 94.6946 66.0799 94.6946C68.3731 94.7213 70.4797 93.5746 71.733 91.6547Z" fill="white"/>
|
||||
<path d="M58.2679 101.974C56.7213 100.961 54.6147 101.388 53.6014 102.934C52.5881 104.481 53.0147 106.587 54.5613 107.601C56.1079 108.614 58.2145 108.187 59.2278 106.641C60.2678 105.094 59.8411 102.988 58.2679 101.974Z" fill="white"/>
|
||||
<path d="M73.974 114.854C72.4541 114.774 71.1474 115.947 71.0408 117.467C70.9341 118.987 72.1341 120.294 73.654 120.4C75.1739 120.48 76.4806 119.334 76.5872 117.814C76.6672 116.267 75.4939 114.96 73.974 114.854Z" fill="white"/>
|
||||
<path d="M74.0003 97.4412C71.8137 97.3078 69.9471 98.9878 69.8404 101.174C69.7071 103.361 71.387 105.228 73.5736 105.334C75.7602 105.441 77.6268 103.788 77.7334 101.601C77.8668 99.4411 76.1868 97.5478 74.0003 97.4412Z" fill="white"/>
|
||||
<path d="M90.1863 101.708C88.533 102.561 87.8664 104.588 88.7197 106.241C89.573 107.894 91.5996 108.561 93.2529 107.707C94.9061 106.881 95.5728 104.854 94.7461 103.201C93.8928 101.548 91.8662 100.854 90.1863 101.708Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 148C114.869 148 148 114.869 148 74C148 33.1309 114.869 0 74 0C33.1309 0 0 33.1309 0 74C0 114.869 33.1309 148 74 148Z" fill="black"/>
|
||||
<path d="M49.315 107L59.6195 89.2187L69.9239 71.5L80.1655 53.7187L81.8619 50.9012L82.6159 53.7187L85.7575 65.4268L82.2389 71.5L71.9345 89.2187L61.6929 107H74.008L84.3124 89.2187L89.6531 80.015L92.1664 89.2187L96.9416 107H108L103.225 89.2187L98.4496 71.5L97.1929 66.9295L104.858 53.7187H93.6743L93.2973 52.4039L89.4018 37.8783L88.8991 36H78.1549L77.9035 36.3757L67.8504 53.7187L57.546 71.5L47.3044 89.2187L37 107H49.315Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 693 B |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 148C114.869 148 148 114.869 148 74C148 33.1309 114.869 0 74 0C33.1309 0 0 33.1309 0 74C0 114.869 33.1309 148 74 148Z" fill="#2E3148"/>
|
||||
<path d="M73.9999 116.938C97.7141 116.938 116.938 97.7142 116.938 74C116.938 50.2858 97.7141 31.0616 73.9999 31.0616C50.2857 31.0616 31.0615 50.2858 31.0615 74C31.0615 97.7142 50.2857 116.938 73.9999 116.938Z" fill="#1B1E36"/>
|
||||
<path d="M74.1515 9.44064C66.1636 9.44064 59.6865 38.4131 59.6865 74.1527C59.6865 109.892 66.1636 138.865 74.1515 138.865C82.1393 138.865 88.6164 109.892 88.6164 74.1527C88.6164 38.4131 82.1393 9.44064 74.1515 9.44064ZM75.1502 135.213C74.2367 136.431 73.3233 135.517 73.3233 135.517C69.6446 131.255 67.8052 123.336 67.8052 123.336C61.3708 102.629 62.9023 58.1676 62.9023 58.1676C65.9262 22.8702 71.4271 14.5318 73.299 12.6807C73.4902 12.4917 73.7418 12.3763 74.0097 12.3546C74.2776 12.3329 74.5446 12.4065 74.7636 12.5623C77.4797 14.4868 79.7577 22.5357 79.7577 22.5357C86.4846 47.5068 85.8754 70.9554 85.8754 70.9554C86.4846 91.3586 82.5046 114.198 82.5046 114.198C79.441 131.555 75.1502 135.213 75.1502 135.213Z" fill="#6F7390"/>
|
||||
<path d="M130.282 41.9485C126.305 35.0174 97.9536 43.8181 66.9381 61.6029C35.9227 79.3878 14.0447 99.4252 18.0188 106.353C21.9929 113.282 50.3473 104.484 81.3628 86.699C112.378 68.9141 134.256 48.8767 130.282 41.9485ZM21.688 105.403C20.1654 105.211 20.5094 103.959 20.5094 103.959C22.3771 98.6485 28.3208 93.1121 28.3208 93.1121C43.087 77.2252 82.4172 56.4288 82.4172 56.4288C114.536 41.4856 124.512 42.1161 127.043 42.8128C127.302 42.8854 127.528 43.0475 127.68 43.2705C127.832 43.4934 127.899 43.7629 127.872 44.0312C127.567 47.3464 121.705 53.3256 121.705 53.3256C103.405 71.5941 82.7611 82.7367 82.7611 82.7367C65.3664 93.4223 43.5749 101.331 43.5749 101.331C26.9935 107.306 21.6886 105.403 21.6886 105.403H21.688Z" fill="#6F7390"/>
|
||||
<path d="M130.143 106.584C134.15 99.6714 112.328 79.5423 81.421 61.6236C50.5145 43.705 22.1666 34.7954 18.1623 41.72C14.158 48.6446 35.9773 68.7619 66.9016 86.6806C97.8259 104.599 126.138 113.509 130.143 106.584ZM20.818 44.3911C20.226 42.9875 21.4757 42.6494 21.4757 42.6494C27.0085 41.6046 34.7803 43.9856 34.7803 43.9856C55.9236 48.8003 93.6251 72.4164 93.6251 72.4164C122.653 92.7285 127.104 101.675 127.772 104.215C127.839 104.476 127.813 104.752 127.697 104.995C127.581 105.238 127.383 105.432 127.138 105.543C124.111 106.929 116.004 104.864 116.004 104.864C91.0179 98.1642 71.0349 85.8891 71.0349 85.8891C53.0802 76.2052 35.3261 61.3045 35.3261 61.3045C21.8356 49.9458 20.8221 44.4065 20.8221 44.4065L20.818 44.3911Z" fill="#6F7390"/>
|
||||
<path d="M73.9998 81.6131C78.2045 81.6131 81.613 78.2046 81.613 74C81.613 69.7954 78.2045 66.3869 73.9998 66.3869C69.7952 66.3869 66.3867 69.7954 66.3867 74C66.3867 78.2046 69.7952 81.6131 73.9998 81.6131Z" fill="#B7B9C8"/>
|
||||
<path d="M105.214 49.3331C107.652 49.3331 109.629 47.288 109.629 44.7653C109.629 42.2425 107.652 40.1974 105.214 40.1974C102.775 40.1974 100.798 42.2425 100.798 44.7653C100.798 47.288 102.775 49.3331 105.214 49.3331Z" fill="#B7B9C8"/>
|
||||
<path d="M32.736 64.8643C35.1748 64.8643 37.1518 62.8192 37.1518 60.2964C37.1518 57.7736 35.1748 55.7285 32.736 55.7285C30.2973 55.7285 28.3203 57.7736 28.3203 60.2964C28.3203 62.8192 30.2973 64.8643 32.736 64.8643Z" fill="#B7B9C8"/>
|
||||
<path d="M65.0163 120.897C67.4551 120.897 69.4321 118.852 69.4321 116.329C69.4321 113.806 67.4551 111.761 65.0163 111.761C62.5776 111.761 60.6006 113.806 60.6006 116.329C60.6006 118.852 62.5776 120.897 65.0163 120.897Z" fill="#B7B9C8"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 148C114.869 148 148 114.869 148 74C148 33.1309 114.869 0 74 0C33.1309 0 0 33.1309 0 74C0 114.869 33.1309 148 74 148Z" fill="#E84142"/>
|
||||
<path d="M95.6566 75.475C97.8326 71.7272 101.344 71.7272 103.52 75.475L117.071 99.1948C119.247 102.943 117.467 106 113.115 106H85.8147C81.512 106 79.7315 102.943 81.8582 99.1948L95.6566 75.475ZM69.4446 29.8109C71.6207 26.063 75.0826 26.063 77.2587 29.8109L80.2756 35.2353L87.3973 47.7116C89.1283 51.2622 89.1283 55.4538 87.3973 59.0044L63.5098 100.28C61.3337 103.633 57.7233 105.753 53.7174 106H33.8853C29.5331 106 27.7527 102.992 29.9287 99.1948L69.4446 29.8109Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 743 B |
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 148C114.869 148 148 114.869 148 74C148 33.1309 114.869 0 74 0C33.1309 0 0 33.1309 0 74C0 114.869 33.1309 148 74 148Z" fill="#8DC351"/>
|
||||
<path d="M95.312 51.0435C92.0582 42.7748 83.8972 42.0306 74.3981 43.8743L71.0153 32.0784L63.8397 34.1395L67.1306 45.6254C65.2432 46.1632 63.329 46.7552 61.4184 47.3451L58.1079 35.7833L50.9302 37.8408L54.3109 49.6331C52.7654 50.1091 51.2459 50.5797 49.7574 51.0034L49.7458 50.9666L39.8424 53.8038L42.042 61.4707C42.042 61.4707 47.3167 59.8486 47.2564 59.9706C50.1649 59.1386 51.593 60.5556 52.2882 61.9357L56.1432 75.3713C56.3426 75.3143 56.6055 75.2497 56.9163 75.201L56.1575 75.4212L61.555 94.2453C61.6871 95.1953 61.568 96.8085 59.5352 97.3963C59.6529 97.4493 54.3186 98.8928 54.3186 98.8928L55.3498 107.873L64.6953 105.194C66.4332 104.699 68.1524 104.239 69.8316 103.768L73.2561 115.694L80.4281 113.635L77.0452 101.84C79.0253 101.311 80.9356 100.78 82.797 100.247L86.1619 111.995L93.3375 109.934L89.9256 98.0291C101.799 93.8752 109.374 88.4129 107.173 76.777C105.404 67.4087 99.9422 64.564 92.619 64.8852C96.1769 61.5724 97.7056 57.0927 95.312 51.0435ZM92.5792 79.4318C95.1447 88.3447 79.5852 91.7073 74.7198 93.1076L70.1927 77.3005C75.0623 75.9075 89.9174 70.134 92.5792 79.4318ZM82.8475 58.0898C85.1733 66.2018 72.1699 68.902 68.1204 70.0636L64.0107 55.7342C68.0602 54.5726 80.4218 49.6287 82.8475 58.0898Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 8.0 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="50" cy="50" r="50" fill="#F49B33"/>
|
||||
<path d="M68.4212 39.7851C67.9297 33.5124 62.5575 31.3189 55.7435 30.6008L55.8949 21.9128L50.6092 21.823L50.4598 30.282C49.0704 30.2554 47.6516 30.26 46.2358 30.2639L46.3876 21.7495L41.1013 21.6568L40.9492 30.3418C39.8041 30.3442 38.6778 30.3483 37.5821 30.327L37.5819 30.2997L30.2884 30.1706L30.1906 35.8177C30.1906 35.8177 34.0982 35.8113 34.0321 35.8814C36.1739 35.9201 36.8475 37.1753 37.0325 38.2538L36.8615 48.1498C37.0083 48.1525 37.1997 48.1631 37.4202 48.1945L36.8608 48.1865L36.6187 62.0507C36.5115 62.7214 36.0968 63.7891 34.5986 63.7663C34.6674 63.8266 30.7564 63.6997 30.7564 63.6997L29.5954 69.9943L36.4786 70.1145C37.7578 70.1391 39.0173 70.1835 40.2518 70.2123L40.1015 78.9975L45.3843 79.088L45.5357 70.4001C46.9859 70.4522 48.3895 70.4877 49.7602 70.5125L49.6066 79.1644L54.8923 79.2542L55.0466 70.4864C63.9468 70.1317 70.2066 68.001 71.1251 59.6661C71.8672 52.9562 68.7575 49.8991 63.732 48.6006C66.8271 47.0938 68.7897 44.3769 68.4212 39.7851ZM60.6936 58.4426C60.5856 65.0091 49.3533 64.0649 45.7688 64.0058L45.9757 52.3648C49.5616 52.4296 60.816 51.5955 60.6936 58.4426ZM58.522 41.9761C58.4176 47.9506 49.0533 47.087 46.0707 47.0353L46.2544 36.4813C49.237 36.533 58.6312 35.7445 58.522 41.9761Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,5 @@
|
||||
<svg width="142" height="142" viewBox="0 0 142 142" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M71 142C110.212 142 142 110.212 142 71C142 31.7878 110.212 0 71 0C31.7878 0 0 31.7878 0 71C0 110.212 31.7878 142 71 142Z" fill="#F4CE6F"/>
|
||||
<path d="M61.9103 105.541C75.9665 105.541 87.3612 94.1458 87.3612 80.0896C87.3612 66.0334 75.9665 54.6387 61.9103 54.6387C47.8541 54.6387 36.4594 66.0334 36.4594 80.0896C36.4594 94.1458 47.8541 105.541 61.9103 105.541ZM61.9103 114.176C43.0857 114.176 27.8242 98.9142 27.8242 80.0896C27.8242 61.265 43.0857 46.0036 61.9103 46.0036C80.7349 46.0036 95.9963 61.265 95.9963 80.0896C95.9963 98.9142 80.7349 114.176 61.9103 114.176Z" fill="white"/>
|
||||
<path d="M80.0861 87.3613C94.1422 87.3613 105.537 75.9666 105.537 61.9104C105.537 47.8542 94.1422 36.4595 80.0861 36.4595C66.0299 36.4595 54.6351 47.8542 54.6351 61.9104C54.6351 75.9666 66.0299 87.3613 80.0861 87.3613ZM80.0861 95.9965C61.2615 95.9965 46 80.735 46 61.9104C46 43.0858 61.2615 27.8243 80.0861 27.8243C98.9107 27.8243 114.172 43.0858 114.172 61.9104C114.172 80.735 98.9107 95.9965 80.0861 95.9965Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="74" cy="74" r="74" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M42.7346 99.7151C40.6809 98.4594 39.4248 96.2223 39.4248 93.8205V80.4073C39.4248 79.8935 39.5624 79.3984 39.819 78.9584C40.6167 77.5834 42.3862 77.1159 43.7614 77.9227L74.035 95.5714C75.8045 96.6071 76.8962 98.4959 76.8962 100.549V114.449C76.8962 115.081 76.7217 115.714 76.3914 116.255C75.3922 117.886 73.2655 118.4 71.6332 117.401L42.7346 99.7151ZM87.8614 74.2462C89.6309 75.2822 90.7218 77.1711 90.7218 79.2247V107.426C90.7218 108.261 90.2721 109.03 89.5481 109.433L82.9198 113.165C82.837 113.211 82.7453 113.248 82.6536 113.275V97.616C82.6536 95.59 81.5902 93.7102 79.8483 92.6647L53.2598 76.758V59.0819C53.2598 58.5685 53.3974 58.0735 53.6541 57.6334C54.4517 56.2581 56.2212 55.7906 57.5965 56.5974L87.8614 74.2462ZM101.11 53.416C102.888 54.4429 103.979 56.3499 103.979 58.4035V99.5965C103.979 100.44 103.512 101.219 102.769 101.623L96.4888 105.015V76.3367C96.4888 74.3104 95.4248 72.4401 93.6926 71.3948L66.5173 55.0938V38.3252C66.5173 37.8118 66.6548 37.3166 66.9024 36.8766C67.7 35.5014 69.4695 35.0338 70.8447 35.8314L101.11 53.416Z" fill="#00D395"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 1C114.32 1 147 33.6861 147 74C147 114.32 114.32 147 74 147C33.6861 147 1 114.317 1 74C1 33.6861 33.6861 1 74 1Z" fill="#F5AC37"/>
|
||||
<path d="M75.6908 78.1548H103.43C104.021 78.1548 104.3 78.1548 104.343 77.3796C104.57 74.5577 104.57 71.7194 104.343 68.8943C104.343 68.3457 104.07 68.119 103.476 68.119H48.2706C47.5873 68.119 47.4034 68.3457 47.4034 68.9863V77.1069C47.4034 78.1548 47.4034 78.1548 48.4973 78.1548H75.6908V78.1548ZM101.245 58.6286C101.324 58.4216 101.324 58.195 101.245 57.9913C100.782 56.9828 100.233 56.0203 99.596 55.1169C98.6367 53.5729 97.5067 52.1505 96.219 50.8726C95.6112 50.1006 94.9082 49.4075 94.1198 48.8195C90.1712 45.4589 85.4769 43.0805 80.4311 41.8848C77.8852 41.3132 75.2834 41.0405 72.6751 41.0635H48.1753C47.4921 41.0635 47.4001 41.3362 47.4001 41.9308V58.126C47.4001 58.8093 47.4001 58.9932 48.2673 58.9932H100.917C100.917 58.9932 101.373 58.9012 101.465 58.6286H101.242H101.245ZM101.245 87.6453C100.47 87.5599 99.688 87.5599 98.9127 87.6453H48.3166C47.6333 87.6453 47.4034 87.6453 47.4034 88.5585V104.392C47.4034 105.122 47.4034 105.306 48.3166 105.306H71.6765C72.7934 105.391 73.9103 105.312 75.0042 105.079C78.3944 104.836 81.7287 104.1 84.9086 102.888C86.0649 102.487 87.1818 101.965 88.2363 101.337H88.555C94.0311 98.4892 98.4791 94.015 101.284 88.5224C101.284 88.5224 101.603 87.8325 101.245 87.6518V87.6453ZM38.2348 113.515V113.242V102.612V99.0082V88.2859C38.2348 87.6913 38.2348 87.6026 37.5056 87.6026H27.6045C27.0559 87.6026 26.8292 87.6026 26.8292 86.8733V78.2041H37.4136C38.0049 78.2041 38.2348 78.2041 38.2348 77.4288V68.8516C38.2348 68.303 38.2348 68.1683 37.5056 68.1683H27.6045C27.0559 68.1683 26.8292 68.1683 26.8292 67.439V59.4104C26.8292 58.9078 26.8292 58.7731 27.5585 58.7731H37.3676C38.0509 58.7731 38.2348 58.7731 38.2348 57.9059V33.3141C38.2348 32.5848 38.2348 32.4009 39.1481 32.4009H73.365C75.8485 32.4994 78.3155 32.7721 80.7563 33.2221C85.7857 34.1518 90.618 35.9487 95.0363 38.5143C97.9666 40.239 100.664 42.3217 103.065 44.7198C104.872 46.5955 106.501 48.6257 107.947 50.7872C109.382 52.9783 110.575 55.3206 111.511 57.7679C111.626 58.4052 112.237 58.8355 112.874 58.7271H121.041C122.089 58.7271 122.089 58.7271 122.135 59.7324V67.2157C122.135 67.9449 121.862 68.1289 121.129 68.1289H114.832C114.195 68.1289 114.011 68.1289 114.057 68.9502C114.306 71.7293 114.306 74.5183 114.057 77.2974C114.057 78.0727 114.057 78.1647 114.927 78.1647H122.131C122.45 78.5753 122.131 78.9859 122.131 79.3998C122.177 79.9287 122.177 80.4642 122.131 80.9931V86.5152C122.131 87.2905 121.905 87.5204 121.218 87.5204H112.595C111.994 87.4055 111.409 87.7898 111.271 88.3877C109.218 93.7259 105.933 98.5122 101.689 102.349C100.138 103.745 98.5086 105.059 96.807 106.271C94.9805 107.323 93.2033 108.417 91.3308 109.284C87.8848 110.834 84.2713 111.978 80.5625 112.703C77.0409 113.334 73.4701 113.62 69.8861 113.571H38.2217V113.525L38.2348 113.515Z" fill="#FEFEFD"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
|
Before Width: | Height: | Size: 5.6 KiB |
|
After Width: | Height: | Size: 766 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 3.9 KiB |
@@ -0,0 +1,31 @@
|
||||
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="60" cy="60" r="60" fill="url(#dydx_paint0_linear)"/>
|
||||
<g filter="url(#filter0_d)">
|
||||
<path d="M74.0552 29.7773L31.6661 90.217H44.6805L87.2894 29.7773H74.0552Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M46.0373 29.7773L58.5094 47.5869L52.0022 57.3012L32.7518 29.7773H46.0373Z" fill="url(#dydx_paint1_linear)"/>
|
||||
<path d="M75.3194 90.2227L61.4916 70.5242L68.7011 61.0798L88.3337 90.2227H75.3194Z" fill="url(#dydx_paint2_linear)"/>
|
||||
<defs>
|
||||
<filter id="filter0_d" x="11.6661" y="9.77734" width="95.6233" height="100.44" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="10"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.206647 0 0 0 0 0.198416 0 0 0 0 0.330111 0 0 0 1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="dydx_paint0_linear" x1="90" y1="8" x2="50" y2="118" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#4D4C6A"/>
|
||||
<stop offset="1" stop-color="#282844"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="dydx_paint1_linear" x1="43.0549" y1="33.5551" x2="60.8082" y2="55.0899" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="white"/>
|
||||
<stop offset="1" stop-color="white" stop-opacity="0.55"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="dydx_paint2_linear" x1="80.2385" y1="90.2227" x2="35.9888" y2="23.5518" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7370FF"/>
|
||||
<stop offset="1" stop-color="#6966FF" stop-opacity="0.31"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,5 @@
|
||||
<svg width="142" height="142" viewBox="0 0 142 142" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M71 142C110.212 142 142 110.212 142 71C142 31.7878 110.212 0 71 0C31.7878 0 0 31.7878 0 71C0 110.212 31.7878 142 71 142Z" fill="#7866D5"/>
|
||||
<path d="M99.7406 36.4513C102.144 36.7518 104.647 36.952 107.051 37.3526C111.757 38.2539 113.36 40.6573 112.559 45.464C112.358 47.2666 110.956 48.6685 109.154 48.969C108.052 49.1693 106.851 49.2694 105.749 49.1692C90.127 49.1692 74.6052 49.2694 58.9831 49.2694C56.6799 49.2694 54.2765 49.4697 51.9733 49.8702C44.2624 51.0719 41.2582 54.2764 40.6573 62.0874C40.3569 65.6925 40.3569 65.6925 44.0621 65.6925H106.15C106.75 65.6925 107.351 65.6925 107.952 65.6925C108.954 65.6925 109.855 65.9929 110.756 66.4937C113.56 68.2962 112.859 71.2003 112.759 73.8039C112.659 75.9069 111.357 77.1086 109.154 77.5092C108.253 77.7094 107.351 77.7094 106.35 77.7094C85.12 77.7094 63.8901 77.7094 42.6602 77.7094C40.3569 77.7094 40.3569 77.7094 40.5572 80.0127C40.6573 82.1157 40.8576 84.2186 41.3583 86.3216C42.3597 90.1269 44.663 92.5303 48.5685 93.6319C52.7744 94.8336 57.1806 95.0339 61.4867 95.134C76.608 95.134 91.8294 95.134 107.051 95.134C108.954 95.134 110.756 95.3343 111.958 97.1368C113.86 100.141 112.859 104.047 109.855 105.949C109.454 106.25 109.054 106.45 108.553 106.55C105.248 107.652 101.844 107.852 98.3386 107.952C84.0184 108.252 69.7984 108.252 55.5784 107.952C51.1721 107.852 46.7659 107.351 42.4599 106.45C32.3456 104.347 27.2384 99.1396 25.536 88.9253C25.1355 86.622 24.9352 84.2186 24.6348 81.8152V63.189C24.835 61.3865 25.0353 59.4838 25.2356 57.6812C26.5374 46.165 31.7448 40.457 43.0607 37.8533C47.0664 36.952 51.2723 36.7518 55.2779 36.3512L99.7406 36.4513Z" fill="white"/>
|
||||
<path d="M76.9082 109.955C69.698 109.955 62.588 109.855 55.478 109.755C50.9717 109.654 46.4653 109.154 42.0591 108.152C31.1437 105.849 25.5358 100.041 23.7333 89.2257C23.4329 87.5233 23.2326 85.8209 23.1325 84.2186C23.0323 83.5176 22.9322 82.8166 22.832 82.0155V81.8152V62.9887L23.0323 61.1862C23.1325 59.8843 23.3327 58.6826 23.4329 57.4809C24.8349 45.1636 30.643 38.8547 42.7601 36.1509C45.9646 35.4499 49.069 35.1495 52.1734 34.8491C53.1748 34.7489 54.1762 34.6488 55.1776 34.5486H55.3779H99.9406H100.041C100.742 34.6488 101.543 34.7489 102.244 34.7489C103.946 34.9492 105.649 35.0494 107.451 35.4499C113.159 36.5515 115.362 39.756 114.361 45.5642C114.061 48.0677 112.058 50.1706 109.354 50.5712C108.152 50.7715 106.951 50.8716 105.649 50.8716C90.1268 50.9718 74.5048 51.0719 58.9829 51.0719C56.7798 51.0719 54.4766 51.2722 52.2735 51.6728C45.3638 52.7743 43.0605 55.2778 42.4597 62.2877C42.4597 62.8886 42.3595 63.4894 42.3595 63.9901C42.7601 63.9901 43.4611 63.9901 44.0619 63.9901H107.952C109.254 63.9901 110.556 64.3907 111.657 64.9915C115.062 67.1946 114.762 70.4993 114.561 72.9027C114.561 73.2031 114.461 73.6037 114.461 73.9041C114.261 76.708 112.558 78.6107 109.454 79.2116C108.352 79.4118 107.351 79.4118 106.35 79.4118H42.7601C42.66 79.4118 42.4597 79.4118 42.3595 79.4118C42.3595 79.512 42.3595 79.6121 42.3595 79.7123V79.8124C42.4597 81.9154 42.66 83.9182 43.1607 85.921C43.9618 89.0254 45.8645 90.9281 49.069 91.8293C53.375 93.031 57.7813 93.2313 61.5866 93.2313C73.4033 93.3314 85.4202 93.3314 97.1367 93.3314H107.151C108.653 93.3314 111.757 93.3314 113.56 96.2355C114.762 98.1382 115.062 100.341 114.561 102.444C114.061 104.547 112.759 106.35 110.856 107.551C110.355 107.852 109.754 108.152 109.154 108.353C105.448 109.554 101.643 109.755 98.4385 109.855C91.3285 109.855 84.1184 109.955 76.9082 109.955ZM26.4371 81.7151C26.5373 82.4161 26.6374 83.1171 26.6374 83.818C26.8377 85.4203 27.038 87.0226 27.2382 88.6248C28.8405 98.0381 33.3468 102.645 42.7601 104.647C46.966 105.549 51.2721 106.049 55.5782 106.149C69.698 106.45 84.1183 106.45 98.3384 106.149C101.242 106.049 104.747 105.849 107.952 104.848C108.252 104.748 108.553 104.547 108.853 104.447C109.855 103.746 110.656 102.745 110.956 101.543C111.257 100.341 111.056 99.1396 110.355 98.0381C109.754 97.1368 108.953 96.8364 107.051 96.8364H97.0365C85.4202 96.8364 73.3031 96.8364 61.4865 96.7362C57.4808 96.7362 52.7742 96.536 48.0676 95.134C43.5612 93.9323 40.7573 91.0282 39.6557 86.5219C39.155 84.3187 38.8546 82.0155 38.8546 79.8124V79.7123C38.7545 78.3103 38.6543 77.3089 39.4554 76.4076C40.2566 75.5063 41.3581 75.5063 42.7601 75.5063H106.45C107.251 75.5063 108.152 75.5063 108.953 75.306C110.556 75.0056 110.956 74.3046 111.056 73.3032C111.056 72.9027 111.156 72.6022 111.156 72.2017C111.357 69.6982 111.357 68.4965 109.955 67.5952C109.454 67.2948 108.753 67.0945 108.152 67.0945H44.0619C41.8588 67.0945 40.557 67.0945 39.5556 66.0931C38.5542 65.0917 38.7545 63.6897 38.8546 61.5867C39.5556 52.9746 43.1607 49.0691 51.6726 47.7673C54.076 47.3667 56.4794 47.1664 58.9829 47.0663C74.6049 47.0663 90.1268 46.9661 105.749 46.9661C106.85 46.9661 107.852 46.9661 108.853 46.7659C109.855 46.6657 110.656 45.8646 110.756 44.8632C111.457 40.8575 110.455 39.5557 106.65 38.7546C105.048 38.4541 103.446 38.2539 101.843 38.1537C101.142 38.0536 100.341 37.9534 99.6402 37.9534H55.3779C54.3765 38.0536 53.375 38.1537 52.3736 38.2539C49.2693 38.5543 46.3652 38.7546 43.3609 39.4556C32.8461 42.0592 28.2396 47.1664 27.038 57.9817C26.9378 59.1833 26.7375 60.385 26.6374 61.6869L26.4371 63.3893V81.7151Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 148C114.869 148 148 114.869 148 74C148 33.1309 114.869 0 74 0C33.1309 0 0 33.1309 0 74C0 114.869 33.1309 148 74 148Z" fill="black"/>
|
||||
<path d="M74.3571 22L50.1416 55.488L40 104.992L74.3571 126L108.714 104.992L98.3658 55.28L74.3571 22ZM45.5882 102.704L53.2461 65.056L70.6317 118.096L45.5882 102.704ZM55.7298 56.528L74.3571 30.736L92.9845 56.528L74.3571 113.104L55.7298 56.528ZM77.8756 118.096L95.2612 65.056L102.919 102.704L77.8756 118.096Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 579 B |
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,9 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 148C114.869 148 148 114.869 148 74C148 33.1309 114.869 0 74 0C33.1309 0 0 33.1309 0 74C0 114.869 33.1309 148 74 148Z" fill="#3AB83A"/>
|
||||
<path d="M73.9922 24.6667V61.1322L104.813 74.9044L73.9922 24.6667Z" fill="white" fill-opacity="0.602"/>
|
||||
<path d="M73.9911 24.6667L43.166 74.9044L73.9911 61.1322V24.6667Z" fill="white"/>
|
||||
<path d="M73.9922 98.5352V123.313L104.834 80.6436L73.9922 98.5352Z" fill="white" fill-opacity="0.602"/>
|
||||
<path d="M73.9911 123.313V98.5311L43.166 80.6436L73.9911 123.313Z" fill="white"/>
|
||||
<path d="M73.9922 92.8001L104.813 74.9045L73.9922 61.1405V92.8001Z" fill="white" fill-opacity="0.2"/>
|
||||
<path d="M43.166 74.9045L73.9911 92.8001V61.1405L43.166 74.9045Z" fill="white" fill-opacity="0.602"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 831 B |
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,9 @@
|
||||
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="50" cy="50" r="50" fill="#7A57DD"/>
|
||||
<path d="M49.9945 16.6667V41.3056L70.8195 50.6111L49.9945 16.6667Z" fill="white" fill-opacity="0.602"/>
|
||||
<path d="M49.9944 16.6667L29.1666 50.6111L49.9944 41.3056V16.6667Z" fill="white"/>
|
||||
<path d="M49.9945 66.5777V83.3194L70.8334 54.4888L49.9945 66.5777Z" fill="white" fill-opacity="0.602"/>
|
||||
<path d="M49.9944 83.3194V66.5749L29.1666 54.4888L49.9944 83.3194Z" fill="white"/>
|
||||
<path d="M49.9945 62.7027L70.8195 50.611L49.9945 41.311V62.7027Z" fill="white" fill-opacity="0.2"/>
|
||||
<path d="M29.1666 50.611L49.9944 62.7027V41.311L29.1666 50.611Z" fill="white" fill-opacity="0.602"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 744 B |
|
Before Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="74" cy="74" r="74" fill="#0090FF"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M79.2051 67.5505L77.4205 77.0457L94.3744 79.4195L93.1846 83.8704L76.5282 81.4966C75.3385 85.3541 74.7436 89.5082 73.2564 93.069C71.7692 97.2231 70.2821 101.377 68.4974 105.235C66.1179 110.279 61.9538 113.84 56.3026 114.73C53.0308 115.323 49.4615 115.027 46.7846 112.95C45.8923 112.356 45 111.169 45 110.279C45 109.092 45.5949 107.609 46.4872 107.015C47.0821 106.718 48.5692 107.015 49.4615 107.312C50.3538 108.202 51.2462 109.389 51.841 110.576C53.6256 112.95 56.0051 113.246 58.3846 111.466C61.0615 109.092 62.5487 105.828 63.441 102.564C65.2256 95.4428 67.0103 88.6181 68.4974 81.4966V80.3097L52.7333 77.9359L53.3282 73.485L69.6872 75.8588L71.7692 66.6603L54.8154 63.9897L55.4103 59.2421L72.959 61.6159C73.5538 59.8356 73.8513 58.3519 74.4462 56.8683C75.9333 51.5272 77.4205 46.1862 80.9897 41.4385C84.559 36.6909 88.7231 33.7236 94.9692 34.0204C97.6462 34.0204 100.323 34.9106 102.108 36.9876C102.405 37.2844 103 37.8778 103 38.4713C103 39.6582 103 41.1418 102.108 42.032C100.918 42.9222 99.4308 42.6254 98.241 41.4385C97.3487 40.5484 96.7538 39.6582 95.8615 38.768C94.0769 36.3942 91.4 36.0975 89.3179 38.1745C87.8308 39.6582 86.3436 41.7353 85.4513 43.8123C83.3692 50.0436 81.8821 56.5716 79.8 63.0996L96.159 65.4734L94.9692 69.9243L79.2051 67.5505Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,16 @@
|
||||
<svg width="142" height="142" viewBox="0 0 142 142" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M71 142C110.212 142 142 110.212 142 71C142 31.7878 110.212 0 71 0C31.7878 0 0 31.7878 0 71C0 110.212 31.7878 142 71 142Z" fill="white"/>
|
||||
<path d="M95.6691 47C90.3179 47 84.4584 49.9099 78.2778 55.6496C75.3614 58.3459 72.7928 61.2825 70.9199 63.6051C70.9199 63.6051 73.9166 67.0489 77.2075 70.7597C79.0002 68.5172 81.542 65.4739 84.5119 62.7241C89.9968 57.5984 93.5821 56.5573 95.6423 56.5573C103.348 56.5573 109.609 63.0178 109.609 71C109.609 78.9021 103.348 85.3626 95.6423 85.4427C95.2677 85.4427 94.8397 85.3893 94.3045 85.2825C96.552 86.3237 98.9868 87.0712 101.261 87.0712C115.388 87.0712 118.171 77.327 118.331 76.6329C118.733 74.8443 118.973 72.9755 118.973 71.0534C118.947 57.7853 108.512 47 95.6691 47Z" fill="url(#paint0_linear_2948_423)"/>
|
||||
<path d="M46.3044 95C51.6555 95 57.5151 92.0901 63.6957 86.3504C66.6121 83.654 69.1806 80.7174 71.0535 78.3949C71.0535 78.3949 68.0569 74.951 64.7659 71.2403C62.9733 73.4827 60.4315 76.5261 57.4616 79.2758C51.9766 84.3481 48.3646 85.4427 46.3311 85.4427C38.6254 85.4427 32.3646 78.9822 32.3646 71C32.3646 63.0979 38.6254 56.6374 46.3311 56.5573C46.7057 56.5573 47.1338 56.6107 47.6689 56.7175C45.4214 55.6763 42.9866 54.9288 40.7124 54.9288C26.5853 54.9021 23.8027 64.6463 23.6421 65.3671C23.2408 67.1557 23 69.0245 23 70.9466C23 84.2147 33.4348 95 46.3044 95Z" fill="url(#paint1_linear_2948_423)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M57.0605 62.9377C55.5086 61.4427 47.9635 55.3293 40.7394 55.1157C27.8431 54.7953 24.0705 64.139 23.7227 65.3404C26.211 54.8754 35.415 47.0534 46.3314 47C55.2411 47 64.2578 55.7297 70.92 63.6051L70.9468 63.5784C70.9468 63.5784 73.9434 67.0222 77.2344 70.733C77.2344 70.733 80.9802 75.1379 84.9401 79.0089C86.4919 80.5039 94.0103 86.5373 101.234 86.7508C114.479 87.1246 118.144 77.2469 118.331 76.4994C115.897 87.0445 106.666 94.8932 95.6959 94.9466C86.7862 94.9466 77.7695 86.2169 71.0805 78.3415C71.0805 78.3682 71.0538 78.3682 71.0538 78.3949C71.0538 78.3949 68.0571 74.9511 64.7662 71.2403C64.7929 71.2403 61.0471 66.8087 57.0605 62.9377ZM23.7227 65.4472C23.7227 65.4205 23.7227 65.3938 23.7494 65.3671C23.7227 65.3938 23.7227 65.4205 23.7227 65.4472Z" fill="#29ABE2"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_2948_423" x1="83.1434" y1="50.8033" x2="116.054" y2="84.0589" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.21" stop-color="#F15A24"/>
|
||||
<stop offset="0.6841" stop-color="#FBB03B"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_2948_423" x1="58.8384" y1="91.2021" x2="25.9277" y2="57.9465" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.21" stop-color="#ED1E79"/>
|
||||
<stop offset="0.8929" stop-color="#522785"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M50 100C77.6142 100 100 77.6142 100 50C100 22.3858 77.6142 0 50 0C22.3858 0 0 22.3858 0 50C0 77.6142 22.3858 100 50 100Z" fill="#335DD2"/>
|
||||
<path d="M49.8522 16.6687L43.7916 20.1536L27.2764 29.699L21.2158 33.1839V66.2144L27.2764 69.6988L43.9431 79.2444L50.0037 82.7294L56.0643 79.2444L72.4281 69.6988L78.4887 66.2144V33.1839L72.4281 29.699L55.9128 20.1536L49.8522 16.6687ZM33.3371 59.2444V40.1536L49.8522 30.6081L66.3675 40.1536V59.2444L49.8522 68.79L33.3371 59.2444Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 603 B |
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74 148C114.869 148 148 114.869 148 74C148 33.1309 114.869 0 74 0C33.1309 0 0 33.1309 0 74C0 114.869 33.1309 148 74 148Z" fill="#B5B5B5"/>
|
||||
<path d="M47.8658 109.21L52.8932 87.7085L46.7373 90.317L49.1932 79.217L55.5803 76.5715L64.3447 38.9471H84.7132L78.7932 66.7572L86.9332 63.8759L84.6716 74.3885L76.6888 77.5057L73.1831 94.4101H104.73L100.878 109.21H47.8658Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 497 B |
@@ -0,0 +1,6 @@
|
||||
<svg width="142" height="142" viewBox="0 0 142 142" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M71 142C110.212 142 142 110.212 142 71C142 31.7878 110.212 0 71 0C31.7878 0 0 31.7878 0 71C0 110.212 31.7878 142 71 142Z" fill="#172852"/>
|
||||
<path d="M57.189 31.7299C65.5031 28.6201 74.8608 28.613 83.3312 31.169C94.3575 34.5912 103.666 42.9124 108.529 53.3565C109.871 56.3314 111.156 59.4341 111.284 62.7427C105.086 59.1501 98.2909 56.8213 91.482 54.6984C80.5906 50.7721 69.188 48.0457 58.8788 42.6497C56.479 41.2155 53.4189 39.7458 52.7657 36.7567C52.503 34.1723 55.2365 32.731 57.189 31.7299Z" fill="#FFD83D"/>
|
||||
<path d="M32.0906 56.8639C34.4975 50.3319 38.4451 44.2685 43.8056 39.7742C45.1688 50.9851 49.94 61.8197 57.821 69.9705C67.2711 79.7898 80.7327 85.8177 94.4286 85.5905C99.8672 85.7609 105.185 84.5042 110.489 83.4889C105.27 102.347 84.6022 114.864 65.4535 111.853C53.8947 110.377 43.2234 103.532 36.7837 93.8691C29.5204 83.1907 27.6886 69.012 32.0906 56.8639Z" fill="#FFD83D"/>
|
||||
<path d="M91.4824 54.6984C98.2913 56.8213 105.086 59.1501 111.284 62.7427L111.703 62.9628C112.278 67.2867 112.697 71.6958 111.93 76.0268C108.814 74.7062 106.286 72.3845 103.645 70.3326C98.5611 66.101 93.371 61.2588 91.4824 54.6984Z" fill="#FF6F03"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="148" height="148" rx="74" fill="#8247E5"/>
|
||||
<g clip-path="url(#matic_clip0)">
|
||||
<path d="M98.2552 57.8806C96.487 56.8657 94.2135 56.8657 92.1927 57.8806L78.0469 66.2537L68.4479 71.5821L54.5547 79.9552C52.7865 80.9701 50.513 80.9701 48.4922 79.9552L37.6302 73.3582C35.862 72.3433 34.599 70.3134 34.599 68.0299V55.3433C34.599 53.3134 35.6094 51.2836 37.6302 50.0149L48.4922 43.6716C50.2604 42.6567 52.5339 42.6567 54.5547 43.6716L65.4167 50.2687C67.1849 51.2836 68.4479 53.3134 68.4479 55.597V63.9702L78.0469 58.3881V49.7612C78.0469 47.7313 77.0365 45.7015 75.0156 44.4328L54.8073 32.5075C53.0391 31.4925 50.7656 31.4925 48.7448 32.5075L28.0312 44.6866C26.0104 45.7015 25 47.7313 25 49.7612V73.6119C25 75.6418 26.0104 77.6716 28.0312 78.9403L48.4922 90.8657C50.2604 91.8806 52.5339 91.8806 54.5547 90.8657L68.4479 82.7463L78.0469 77.1642L91.9401 69.0448C93.7083 68.0299 95.9818 68.0299 98.0026 69.0448L108.865 75.3881C110.633 76.403 111.896 78.4328 111.896 80.7164V93.403C111.896 95.4328 110.885 97.4627 108.865 98.7313L98.2552 105.075C96.487 106.09 94.2135 106.09 92.1927 105.075L81.3307 98.7313C79.5625 97.7164 78.2995 95.6866 78.2995 93.403V85.2836L68.7005 90.8657V99.2388C68.7005 101.269 69.7109 103.299 71.7318 104.567L92.1927 116.493C93.9609 117.507 96.2344 117.507 98.2552 116.493L118.716 104.567C120.484 103.552 121.747 101.522 121.747 99.2388V75.1343C121.747 73.1045 120.737 71.0746 118.716 69.806L98.2552 57.8806Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="matic_clip0">
|
||||
<rect width="97" height="85" fill="white" transform="translate(25 32)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,5 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="148" height="148" rx="74" fill="#1AAB9B"/>
|
||||
<path d="M37.6239 96V61.4858L63.5676 81.1831V96H70.1917V79.7937C70.1917 78.5688 69.6212 77.4152 68.6511 76.6788L37.1873 52.7906C34.641 50.8572 31 52.6902 31 55.9054V96H37.6239Z" fill="white"/>
|
||||
<path d="M109.376 96V61.4858L83.4325 81.1831V96H76.8086V79.7937C76.8086 78.5688 77.3791 77.4152 78.3492 76.6788L109.813 52.7906C112.359 50.8572 116 52.6902 116 55.9054V96H109.376Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 558 B |
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="143" height="142" viewBox="0 0 143 142" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M71.2031 142C110.415 142 142.203 110.212 142.203 71C142.203 31.7878 110.415 0 71.2031 0C31.9909 0 0.203125 31.7878 0.203125 71C0.203125 110.212 31.9909 142 71.2031 142Z" fill="white"/>
|
||||
<path d="M94.1287 36.9231L78.1129 60.7177C77.0054 62.3381 79.1352 64.2997 80.6686 62.9351L96.4289 49.2042C96.8548 48.8631 97.4512 49.1189 97.4512 49.7159V92.6144C97.4512 93.2114 96.6845 93.4673 96.3437 93.0408L48.6369 35.8997C47.1035 34.0234 44.8885 33 42.418 33H40.7142C36.2843 33 32.6211 36.6673 32.6211 41.1874V101.569C32.6211 106.089 36.2843 109.757 40.7994 109.757C43.6107 109.757 46.2516 108.307 47.785 105.834L63.8009 82.039C64.9083 80.4186 62.7786 78.4571 61.2451 79.8216L45.4849 93.4673C45.0589 93.8084 44.4626 93.5526 44.4626 92.9556V50.1423C44.4626 49.5453 45.2293 49.2895 45.5701 49.7159L93.2768 106.857C94.8103 108.733 97.1104 109.757 99.4957 109.757H101.2C105.715 109.757 109.378 106.089 109.378 101.569V41.1874C109.378 36.6673 105.715 33 101.2 33C98.3031 33 95.6622 34.4498 94.1287 36.9231Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="142" height="142" viewBox="0 0 142 142" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M71 142C110.212 142 142 110.212 142 71C142 31.7878 110.212 0 71 0C31.7878 0 0 31.7878 0 71C0 110.212 31.7878 142 71 142Z" fill="black"/>
|
||||
<path d="M34 112L92.4461 87.6L73.9439 69L34 112ZM55.4706 50.4286L73.9728 69L107 29L55.4706 50.4286Z" fill="url(#paint0_linear_2948_450)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_2948_450" x1="34.0013" y1="70.5009" x2="106.99" y2="70.5009" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#00CCFF"/>
|
||||
<stop offset="1" stop-color="#33FF99"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 649 B |
|
Before Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 3.0 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="148" height="148" rx="74" fill="#170659"/>
|
||||
<path d="M54.2998 59.0542C53.7733 58.4368 52.9743 58.0938 52.1209 58.0938H34.5266C34.3813 58.0938 34.2542 58.0423 34.1453 57.9566C34.0545 57.8708 34 57.7679 34 57.6479V46.4492C34 46.3292 34.0545 46.2263 34.1453 46.1405C34.2542 46.0376 34.3813 45.9862 34.5266 46.0033H53.1196C57.8042 46.0033 61.8532 47.8212 65.2668 51.4397L69.788 56.6532L60.9817 66.7886L54.2998 59.0542ZM86.8013 51.3883C90.1967 47.804 94.2639 46.0033 99.003 46.0033H117.542C117.669 45.9862 117.796 46.0376 117.887 46.1062C117.977 46.192 118.014 46.312 117.995 46.4492V57.6479C117.995 57.7679 117.959 57.8708 117.887 57.9566C117.796 58.0595 117.669 58.1109 117.542 58.0938H99.9472C99.1119 58.0766 98.313 58.4368 97.7683 59.0542L84.804 73.9572L97.8228 88.9631C98.3493 89.529 99.1301 89.872 99.929 89.8548H117.523C117.65 89.8377 117.796 89.9063 117.868 89.992C117.941 90.0949 117.995 90.2321 117.977 90.3522V101.551C117.977 101.671 117.941 101.774 117.868 101.86C117.778 101.962 117.65 102.014 117.523 101.997H99.003C94.2639 101.997 90.233 100.179 86.8558 96.5603L76.0704 84.1269L65.2849 96.5603C61.8895 100.179 57.8223 101.997 53.0833 101.997H34.5266C34.3995 102.014 34.2542 101.945 34.1816 101.86C34.0908 101.757 34.0545 101.619 34.0726 101.499V90.3007C34.0726 90.1807 34.1089 90.0778 34.1816 89.992C34.2724 89.8891 34.3995 89.8377 34.5266 89.8548H52.1209C52.9562 89.8548 53.7551 89.4947 54.2998 88.8945L67.028 74.2144L86.8013 51.3883Z" fill="#00D1FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,20 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="74" cy="74" r="74" fill="black"/>
|
||||
<path d="M44.8098 91.1367C45.3227 90.6208 46.0279 90.3199 46.7759 90.3199H114.607C115.846 90.3199 116.466 91.8245 115.59 92.7058L102.19 106.183C101.677 106.699 100.972 107 100.224 107H32.3934C31.1539 107 30.5342 105.495 31.4104 104.614L44.8098 91.1367Z" fill="url(#sol_gradient0)"/>
|
||||
<path d="M44.8098 40.8168C45.3441 40.3009 46.0493 40 46.7759 40H114.607C115.846 40 116.466 41.5047 115.59 42.3859L102.19 55.8633C101.677 56.3792 100.972 56.6801 100.224 56.6801H32.3934C31.1539 56.6801 30.5342 55.1755 31.4104 54.2942L44.8098 40.8168Z" fill="url(#sol_gradient1)"/>
|
||||
<path d="M102.19 65.8155C101.677 65.2996 100.972 64.9987 100.224 64.9987H32.3934C31.1539 64.9987 30.5342 66.5034 31.4104 67.3847L44.8098 80.862C45.3227 81.3779 46.0279 81.6789 46.7759 81.6789H114.607C115.846 81.6789 116.466 80.1742 115.59 79.2929L102.19 65.8155Z" fill="url(#sol_gradient2)"/>
|
||||
<defs>
|
||||
<linearGradient id="sol_gradient0" x1="97.7982" y1="26.5252" x2="50.4246" y2="116.74" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#00FFA3"/>
|
||||
<stop offset="1" stop-color="#DC1FFF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="sol_gradient1" x1="97.7982" y1="26.5252" x2="50.4246" y2="116.74" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#00FFA3"/>
|
||||
<stop offset="1" stop-color="#DC1FFF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="sol_gradient2" x1="97.7982" y1="26.5252" x2="50.4246" y2="116.74" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#00FFA3"/>
|
||||
<stop offset="1" stop-color="#DC1FFF"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 4.9 KiB |
@@ -0,0 +1,30 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="74" cy="74" r="74" fill="url(#sushi_gradient0)"/>
|
||||
<path d="M45.2079 34.1705L121.29 86.119L102.474 113.934L26.3919 61.5764L45.2079 34.1705Z" fill="url(#sushi_gradient1)"/>
|
||||
<path d="M121.292 86.1192C114.747 95.5272 92.6587 91.8458 71.7975 77.1202C50.5272 62.8037 39.074 43.5787 45.2097 34.1707C51.7544 24.7627 73.8427 28.4441 94.7039 43.1696C115.974 57.0771 127.427 76.7112 121.292 86.1192Z" fill="url(#sushi_gradient2)"/>
|
||||
<path d="M102.475 113.525C95.9304 122.933 73.8421 119.252 52.9809 104.526C32.1196 89.8005 20.2574 70.9845 26.8021 61.1674C33.3468 51.7595 55.4351 55.4408 76.2963 70.1664C97.1575 84.892 108.611 104.117 102.475 113.525Z" fill="url(#sushi_gradient3)"/>
|
||||
<path d="M121.291 86.1192L102.475 113.934C95.9301 123.342 73.8418 119.252 52.9806 104.935C48.8901 102.072 45.2087 99.2086 41.5274 95.9362C44.3907 95.5272 48.0721 93.891 51.7534 89.8006C58.2981 82.8468 61.5705 81.2107 64.4338 81.6197C67.2971 81.6197 70.5694 84.483 75.887 91.4367C81.2046 98.3905 88.5674 100.436 93.0668 96.7543C93.4759 96.3453 93.8849 96.3453 94.294 95.9362C97.9753 93.0729 99.2025 91.8458 106.156 78.7564C107.792 75.4841 113.519 70.1665 121.291 72.6208C123.336 77.9383 123.336 82.4378 121.291 86.1192Z" fill="#0E0F23"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M118.429 84.4832C112.702 92.6641 92.6588 88.5737 73.4337 75.0752C53.7996 61.5768 42.3464 44.397 48.073 36.2161C53.7996 28.0352 73.8428 32.1257 93.0678 45.6241C112.293 59.1225 123.746 76.3024 118.429 84.4832ZM100.431 72.2119C97.5673 76.3024 87.7503 74.2572 77.9332 67.7125C68.5252 61.1678 62.7986 52.5779 65.6619 48.4874C68.5252 44.397 78.3423 46.4422 88.1593 52.9869C97.5673 59.5316 103.294 68.1215 100.431 72.2119Z" fill="white"/>
|
||||
<path d="M43.573 43.5784C43.573 43.1694 43.1639 42.7603 42.7549 43.1694C42.3458 43.5784 41.9368 43.5784 41.9368 43.9875C42.3458 45.2146 42.7549 46.0327 42.7549 46.8508C42.7549 47.2598 43.1639 47.6689 43.573 47.2598C43.982 47.2598 44.3911 46.8508 43.982 46.4417C43.982 45.6236 43.982 44.8056 43.573 43.5784Z" fill="white"/>
|
||||
<path d="M45.6188 50.1235C45.6188 49.7145 45.2097 49.3054 44.8007 49.7145C44.3916 50.1235 44.3916 50.1235 44.3916 50.5326C48.8911 60.7586 58.2991 71.8028 70.5704 79.9837C70.9795 80.3927 71.3885 79.9837 71.7975 79.9837C72.2066 79.5746 71.7975 79.1656 71.7975 78.7565C59.1172 70.5757 50.1182 59.9406 45.6188 50.1235Z" fill="white"/>
|
||||
<path d="M95.1116 90.2097C94.7026 90.2097 94.2935 90.2097 94.2935 90.6188C94.2935 91.0278 94.2935 91.4369 94.7026 91.4369C95.9297 91.8459 97.5659 92.255 98.793 92.664C99.202 92.664 99.6111 92.664 99.6111 92.255C99.6111 91.8459 99.6111 91.4369 99.202 91.4369C97.9749 91.0278 96.3387 90.6188 95.1116 90.2097Z" fill="white"/>
|
||||
<path d="M102.476 91.846C102.067 91.846 101.658 92.255 101.658 92.664C101.658 93.0731 102.067 93.4821 102.476 93.4821C105.748 93.8912 109.429 94.3002 112.293 93.8912C112.702 93.8912 113.111 93.4821 113.111 93.0731C113.111 92.664 112.702 92.255 112.293 92.255C109.02 92.664 105.748 92.255 102.476 91.846Z" fill="white"/>
|
||||
<defs>
|
||||
<linearGradient id="sushi_gradient0" x1="133.5" y1="-4.5" x2="38.5" y2="153" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CCCFFF"/>
|
||||
<stop offset="1" stop-color="#FFBEDC"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="sushi_gradient1" x1="60.1142" y1="26.7844" x2="75.2022" y2="78.5946" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#03B8FF"/>
|
||||
<stop offset="1" stop-color="#FA52A0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="sushi_gradient2" x1="72.5411" y1="23.1658" x2="87.6295" y2="74.9764" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#03B8FF"/>
|
||||
<stop offset="1" stop-color="#FA52A0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="sushi_gradient3" x1="47.7287" y1="30.3914" x2="62.8171" y2="82.2021" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#03B8FF"/>
|
||||
<stop offset="1" stop-color="#FA52A0"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="149" height="142" viewBox="0 0 149 142" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M74.6016 141.8C115.471 141.8 148.602 110.057 148.602 70.9C148.602 31.743 115.471 0 74.6016 0C33.7325 0 0.601562 31.743 0.601562 70.9C0.601562 110.057 33.7325 141.8 74.6016 141.8Z" fill="#FF060A"/>
|
||||
<path d="M116.211 58.1836C112.121 54.5655 106.464 49.0406 101.856 45.1221L101.583 44.9393C101.13 44.5902 100.618 44.3165 100.07 44.1295C88.9598 42.1441 37.2516 32.8836 36.2428 33.0011C35.9601 33.039 35.6899 33.1372 35.4521 33.2885L35.1931 33.4844C34.8741 33.7947 34.6319 34.1696 34.4842 34.5815L34.416 34.7513V35.6787V35.8224C40.2371 51.3524 63.2215 102.227 67.7476 114.165C68.0202 114.975 68.5382 116.516 69.5061 116.594H69.7243C70.2423 116.594 72.4508 113.799 72.4508 113.799C72.4508 113.799 111.931 67.9274 115.925 63.0424C116.442 62.4407 116.898 61.7934 117.288 61.1093C117.388 60.5741 117.341 60.0232 117.152 59.5105C116.963 58.9978 116.639 58.5406 116.211 58.1836ZM82.5797 63.5257L99.4296 50.1377L109.313 58.8627L82.5797 63.5257ZM76.0361 62.6506L47.0261 39.8714L93.9629 48.1654L76.0361 62.6506ZM78.6536 68.6196L108.345 64.0351L74.4002 103.219L78.6536 68.6196ZM43.0863 42.1441L73.6095 66.9608L69.1926 103.246L43.0863 42.1441Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,14 @@
|
||||
<svg width="148" height="148" viewBox="0 0 148 148" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="74" cy="74" r="74" fill="#FF4A4A"/>
|
||||
<g clip-path="url(#uma_clip0)">
|
||||
<path d="M88.915 87H84.3052C84.0996 87.0003 83.8959 86.9606 83.7058 86.883C83.5157 86.8055 83.3429 86.6917 83.1973 86.5481C83.0517 86.4046 82.9361 86.2341 82.8571 86.0463C82.7781 85.8586 82.7373 85.6573 82.737 85.4539V73.4402L74.6455 78.4435C74.3125 78.6493 73.9276 78.7585 73.5349 78.7585C73.1421 78.7585 72.7572 78.6493 72.4242 78.4435L64.3311 73.4394V85.4539C64.3308 85.6573 64.29 85.8586 64.211 86.0463C64.132 86.2341 64.0164 86.4046 63.8708 86.5481C63.7252 86.6917 63.5524 86.8055 63.3623 86.883C63.1722 86.9606 62.9686 87.0003 62.763 87H58.1531C57.9475 87.0003 57.7438 86.9606 57.5537 86.883C57.3637 86.8055 57.1909 86.6917 57.0453 86.5481C56.8996 86.4046 56.784 86.2341 56.7051 86.0463C56.6261 85.8586 56.5853 85.6573 56.585 85.4539V62.2983C56.5861 61.9224 56.6908 61.554 56.8878 61.2326C57.0848 60.9112 57.3667 60.649 57.7031 60.4741C58.0396 60.2993 58.4178 60.2184 58.7972 60.2402C59.1767 60.2621 59.5429 60.3857 59.8566 60.598L72.6485 69.2379C72.9096 69.4144 73.2186 69.5088 73.5349 69.5088C73.8511 69.5088 74.1601 69.4144 74.4212 69.2379L87.2108 60.598C87.5243 60.3853 87.8906 60.2612 88.2702 60.2391C88.6498 60.217 89.0282 60.2977 89.3649 60.4725C89.7015 60.6473 89.9835 60.9097 90.1806 61.2312C90.3776 61.5528 90.4823 61.9215 90.4832 62.2975V85.4539C90.4829 85.6573 90.442 85.8586 90.3631 86.0463C90.2841 86.2341 90.1685 86.4046 90.0229 86.5481C89.8773 86.6917 89.7045 86.8055 89.5144 86.883C89.3243 86.9606 89.1206 87.0003 88.915 87Z" fill="white"/>
|
||||
<path d="M49.6401 86.7939H21.0805C20.8076 86.7942 20.5372 86.7413 20.2849 86.6382C20.0326 86.5352 19.8033 86.384 19.6101 86.1933C19.4169 86.0026 19.2636 85.7761 19.1589 85.5268C19.0542 85.2775 19.0002 85.0102 19 84.7403V61.5398C19.0002 61.3374 19.0407 61.137 19.1193 60.95C19.1978 60.7631 19.3128 60.5933 19.4576 60.4503C19.6025 60.3074 19.7745 60.194 19.9636 60.1167C20.1528 60.0395 20.3555 59.9998 20.5602 60H25.1486C25.3532 59.9998 25.556 60.0395 25.7451 60.1167C25.9343 60.194 26.1063 60.3074 26.2511 60.4503C26.396 60.5933 26.511 60.7631 26.5895 60.95C26.668 61.137 26.7086 61.3374 26.7088 61.5398V79.1878H44.0119V61.5398C44.012 61.3372 44.0525 61.1366 44.1311 60.9496C44.2097 60.7625 44.3248 60.5926 44.4699 60.4495C44.6149 60.3065 44.7871 60.1932 44.9765 60.1161C45.1659 60.0389 45.3689 59.9995 45.5737 60H50.1621C50.3667 59.9998 50.5695 60.0395 50.7586 60.1167C50.9478 60.194 51.1198 60.3074 51.2646 60.4503C51.4095 60.5933 51.5245 60.7631 51.603 60.95C51.6815 61.137 51.7221 61.3374 51.7223 61.5398V84.7411C51.722 85.011 51.6679 85.2781 51.5632 85.5274C51.4584 85.7766 51.3051 86.003 51.1119 86.1936C50.9187 86.3842 50.6894 86.5353 50.4372 86.6383C50.1849 86.7413 49.9146 86.7942 49.6417 86.7939" fill="white"/>
|
||||
<path d="M97.3598 60H125.923C126.196 59.9997 126.466 60.0525 126.718 60.1555C126.97 60.2585 127.2 60.4096 127.393 60.6003C127.586 60.7909 127.739 61.0173 127.844 61.2665C127.949 61.5157 128.003 61.7829 128.003 62.0528V85.2564C128.003 85.4588 127.962 85.6592 127.884 85.8462C127.805 86.0331 127.69 86.2029 127.546 86.3459C127.401 86.4889 127.229 86.6022 127.04 86.6795C126.85 86.7568 126.648 86.7964 126.443 86.7962H121.853C121.648 86.7966 121.445 86.7571 121.256 86.6799C121.067 86.6028 120.894 86.4894 120.749 86.3464C120.604 86.2034 120.489 86.0336 120.411 85.8465C120.332 85.6595 120.291 85.459 120.291 85.2564V68.632C120.29 68.3601 120.18 68.0997 119.985 67.9079C119.79 67.7162 119.526 67.6088 119.251 67.6092H104.031C103.756 67.6088 103.492 67.7162 103.297 67.9079C103.102 68.0997 102.992 68.3601 102.99 68.632V85.2564C102.99 85.4588 102.95 85.6592 102.871 85.8462C102.793 86.0331 102.678 86.2029 102.533 86.3459C102.388 86.4889 102.216 86.6022 102.027 86.6795C101.838 86.7568 101.635 86.7964 101.43 86.7962H96.8395C96.6348 86.7964 96.4321 86.7568 96.2429 86.6795C96.0537 86.6022 95.8818 86.4889 95.7369 86.3459C95.5921 86.2029 95.4771 86.0331 95.3985 85.8462C95.32 85.6592 95.2795 85.4588 95.2793 85.2564V62.0528C95.2796 61.7829 95.3337 61.5157 95.4384 61.2665C95.5431 61.0173 95.6965 60.7909 95.8897 60.6003C96.0829 60.4096 96.3121 60.2585 96.5644 60.1555C96.8166 60.0525 97.0869 59.9997 97.3598 60Z" fill="white"/>
|
||||
<path d="M107.784 74.1011V78.6693C107.785 78.8711 107.826 79.0707 107.905 79.2567C107.985 79.4428 108.1 79.6116 108.245 79.7536C108.39 79.8955 108.562 80.0078 108.751 80.0841C108.94 80.1604 109.142 80.1991 109.346 80.1981H113.934C114.138 80.1991 114.34 80.1604 114.529 80.0841C114.718 80.0078 114.89 79.8955 115.035 79.7536C115.18 79.6116 115.295 79.4428 115.374 79.2567C115.453 79.0707 115.494 78.8711 115.495 78.6693V74.1011C115.494 73.8993 115.453 73.6997 115.374 73.5137C115.295 73.3276 115.18 73.1588 115.035 73.0168C114.89 72.8749 114.718 72.7626 114.529 72.6863C114.34 72.61 114.138 72.5713 113.934 72.5723H109.346C109.142 72.5713 108.94 72.61 108.751 72.6863C108.562 72.7626 108.39 72.8749 108.245 73.0168C108.1 73.1588 107.985 73.3276 107.905 73.5137C107.826 73.6997 107.785 73.8993 107.784 74.1011" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="uma_clip0">
|
||||
<rect width="109" height="27" fill="white" transform="translate(19 60)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
|
Before Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,12 @@
|
||||
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="50" cy="50" r="50" fill="#DC6BE5"/>
|
||||
<path d="M40.3783 25.1906C39.6818 25.0832 39.6525 25.0706 39.9802 25.0206C40.6083 24.9246 42.0915 25.0554 43.1135 25.2969C45.4995 25.8606 47.6706 27.3047 49.9882 29.8693L50.6039 30.5506L51.4846 30.4099C55.1952 29.8172 58.97 30.2883 62.1273 31.7379C62.9958 32.1367 64.3655 32.9306 64.5366 33.1346C64.591 33.1996 64.691 33.6181 64.7588 34.0647C64.9932 35.6097 64.8758 36.794 64.4006 37.6786C64.1418 38.1599 64.1273 38.3125 64.3014 38.7244C64.4403 39.0532 64.8273 39.2964 65.2106 39.2959C65.9951 39.2949 66.8395 38.0343 67.231 36.2802L67.3866 35.5835L67.6943 35.9302C69.3832 37.832 70.7099 40.4257 70.9377 42.2719L70.9969 42.7532L70.7132 42.3156C70.2247 41.5626 69.7336 41.05 69.1051 40.6366C67.9717 39.8914 66.7736 39.6378 63.6006 39.4716C60.7347 39.3215 59.1127 39.0782 57.5044 38.5569C54.768 37.6702 53.3885 36.4892 50.138 32.2506C48.6943 30.3679 47.8019 29.3263 46.9142 28.4874C44.8972 26.5813 42.9153 25.5817 40.3783 25.1906Z" fill="white"/>
|
||||
<path d="M65.1831 29.3941C65.2553 28.1326 65.4271 27.3005 65.7734 26.5406C65.9105 26.2398 66.0386 25.9936 66.0586 25.9936C66.0782 25.9936 66.0186 26.2156 65.926 26.4869C65.6745 27.2244 65.6331 28.2331 65.8064 29.4068C66.0264 30.8959 66.1516 31.1107 67.7353 32.7193C68.4779 33.4738 69.342 34.4254 69.6549 34.8339L70.2245 35.5768L69.6549 35.0459C68.9586 34.3967 67.3571 33.1306 67.0034 32.9496C66.766 32.8282 66.7308 32.8303 66.5845 32.975C66.4497 33.1084 66.4212 33.3088 66.4027 34.2563C66.3734 35.733 66.1708 36.6808 65.6823 37.6285C65.4179 38.1411 65.376 38.0317 65.6153 37.4531C65.7938 37.0211 65.812 36.8313 65.8108 35.4017C65.8079 32.5295 65.4649 31.839 63.4531 30.6561C62.9434 30.3564 62.1034 29.9243 61.5867 29.6957C61.07 29.4671 60.6595 29.268 60.6745 29.2531C60.7314 29.1967 62.6934 29.7659 63.4834 30.0679C64.6582 30.517 64.852 30.5752 64.9945 30.521C65.0905 30.4847 65.1368 30.2079 65.1831 29.3941Z" fill="white"/>
|
||||
<path d="M41.7315 34.3078C40.3176 32.373 39.4427 29.4066 39.6321 27.1891L39.6907 26.5029L40.0125 26.5612C40.6169 26.6708 41.659 27.0563 42.147 27.3509C43.4861 28.1592 44.0659 29.2234 44.6556 31.9562C44.8284 32.7566 45.0551 33.6624 45.1594 33.9691C45.3273 34.4627 45.9617 35.6156 46.4776 36.3644C46.8492 36.9037 46.6023 37.1593 45.781 37.0856C44.5267 36.9731 42.8276 35.8076 41.7315 34.3078Z" fill="white"/>
|
||||
<path d="M63.4678 48.7072C56.8602 46.0629 54.533 43.7677 54.533 39.8949C54.533 39.325 54.5527 38.8587 54.5767 38.8587C54.6008 38.8587 54.8565 39.0468 55.1448 39.2767C56.4848 40.3449 57.9852 40.8011 62.1389 41.4034C64.5834 41.7578 65.9589 42.0441 67.2278 42.4623C71.2608 43.7917 73.7559 46.4896 74.3511 50.1641C74.5241 51.2319 74.4226 53.2342 74.1422 54.2895C73.9211 55.123 73.2456 56.6254 73.0663 56.6832C73.0167 56.6991 72.9682 56.5099 72.9552 56.2524C72.8874 54.8726 72.1859 53.5293 71.0078 52.523C69.6682 51.379 67.8685 50.4681 63.4678 48.7072Z" fill="white"/>
|
||||
<path d="M58.8289 49.8058C58.7461 49.3162 58.6025 48.6908 58.5098 48.4162L58.3412 47.9169L58.6544 48.2663C59.0878 48.7497 59.4302 49.3684 59.7205 50.1924C59.942 50.8213 59.9669 51.0083 59.9653 52.0302C59.9636 53.0335 59.9359 53.2439 59.7313 53.8099C59.4088 54.7025 59.0085 55.3355 58.3368 56.0148C57.1297 57.2359 55.5779 57.9118 53.3385 58.1922C52.9492 58.2407 51.8147 58.3229 50.8172 58.3744C48.3036 58.5044 46.6492 58.7729 45.1626 59.2918C44.9489 59.3663 44.758 59.4118 44.7386 59.3926C44.6785 59.3329 45.6906 58.7333 46.5266 58.3329C47.7054 57.7685 48.8789 57.4607 51.508 57.0255C52.8067 56.8103 54.1479 56.5496 54.4885 56.4459C57.7048 55.4657 59.358 52.9365 58.8289 49.8058Z" fill="white"/>
|
||||
<path d="M61.8581 55.1524C60.9802 53.2766 60.7786 51.4655 61.2596 49.7765C61.3111 49.5961 61.3938 49.4484 61.4436 49.4484C61.4933 49.4484 61.7005 49.5597 61.9039 49.6957C62.3085 49.9664 63.12 50.4223 65.2815 51.5937C67.9789 53.0554 69.5171 54.1873 70.563 55.4804C71.4789 56.6128 72.0456 57.9028 72.3185 59.4758C72.473 60.3665 72.3823 62.5102 72.1523 63.4073C71.4271 66.2361 69.7415 68.458 67.3374 69.7547C66.9852 69.9447 66.6689 70.1006 66.6348 70.1013C66.6004 70.1021 66.7289 69.7776 66.92 69.3806C67.7285 67.7002 67.8208 66.0658 67.2093 64.2465C66.8348 63.1324 66.0715 61.7732 64.5304 59.4758C62.7382 56.805 62.2989 56.0943 61.8581 55.1524Z" fill="white"/>
|
||||
<path d="M37.0389 65.2731C39.4909 63.2154 42.5419 61.7535 45.3211 61.3046C46.5188 61.1113 48.5141 61.188 49.6232 61.4702C51.401 61.9224 52.9914 62.9354 53.8184 64.142C54.6267 65.3213 54.9735 66.3491 55.3345 68.6357C55.477 69.5379 55.6319 70.4435 55.6788 70.6487C55.9499 71.8339 56.4775 72.7809 57.1314 73.2568C58.1699 74.0124 59.9581 74.0591 61.7172 73.3772C62.0158 73.2613 62.2749 73.1813 62.2931 73.1994C62.3572 73.2624 61.4712 73.8516 60.8463 74.162C60.0054 74.5794 59.3368 74.7409 58.4483 74.7409C56.8372 74.7409 55.4996 73.9265 54.3835 72.2654C54.1638 71.9383 53.6701 70.9594 53.2864 70.0894C52.1079 67.418 51.526 66.6043 50.1577 65.7135C48.9669 64.9387 47.4313 64.7998 46.276 65.3628C44.7585 66.1024 44.3351 68.0298 45.4219 69.2513C45.8539 69.7368 46.6595 70.1554 47.3182 70.2368C48.5505 70.3894 49.6096 69.4576 49.6096 68.2209C49.6096 67.4179 49.2991 66.9598 48.5174 66.6091C47.4498 66.1302 46.3022 66.6902 46.3077 67.6868C46.3101 68.112 46.4963 68.3787 46.925 68.5717C47.2 68.6954 47.2064 68.705 46.9821 68.6587C46.0026 68.4568 45.7731 67.2831 46.5607 66.5039C47.5063 65.5687 49.4616 65.9813 50.1331 67.2583C50.4152 67.7946 50.4479 68.8628 50.202 69.5076C49.6516 70.9513 48.0466 71.7102 46.4185 71.2972C45.3101 71.0157 44.8587 70.7113 43.5222 69.3431C41.1999 66.9654 40.2984 66.5046 36.9504 65.9854L36.3088 65.8857L37.0389 65.2731Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.1422 22.7187C33.8976 32.0741 39.2391 35.934 39.8327 36.7495C40.3228 37.4229 40.1384 38.0282 39.2988 38.5027C38.8318 38.7665 37.8719 39.0337 37.3913 39.0337C36.8477 39.0337 36.661 38.8253 36.661 38.8253C36.3458 38.5282 36.1683 38.5801 34.5496 35.7245C32.3024 32.2588 30.4218 29.3838 30.3705 29.3357C30.2519 29.2244 30.2539 29.2281 34.3205 36.46C34.9776 37.9672 34.4512 38.5205 34.4512 38.7352C34.4512 39.1719 34.3313 39.4015 33.7893 40.0024C32.8857 41.0043 32.4818 42.13 32.1902 44.4598C31.8633 47.0715 30.9441 48.9164 28.3969 52.0739C26.9058 53.9222 26.6618 54.261 26.2856 55.0059C25.8116 55.944 25.6813 56.4694 25.6285 57.6539C25.5727 58.9065 25.6814 59.7158 26.0664 60.9132C26.4035 61.9617 26.7553 62.6539 27.6547 64.0384C28.4309 65.2332 28.8779 66.1213 28.8779 66.4687C28.8779 66.745 28.931 66.7454 30.1337 66.4754C33.0121 65.8295 35.3494 64.6932 36.6639 63.3006C37.4774 62.4387 37.6684 61.9628 37.6746 60.7821C37.6787 60.0095 37.6514 59.8476 37.4413 59.4032C37.0993 58.6798 36.4766 58.0784 35.1043 57.1461C33.3063 55.9244 32.5383 54.9409 32.3262 53.5883C32.1521 52.4785 32.354 51.6954 33.3487 49.6234C34.3783 47.4786 34.6334 46.5646 34.806 44.4028C34.9175 43.0061 35.0719 42.4552 35.4756 42.0131C35.8967 41.5521 36.2758 41.3959 37.3179 41.2544C39.0169 41.0237 40.0988 40.5868 40.988 39.7724C41.7594 39.0658 42.0823 38.3851 42.1318 37.3602L42.1694 36.5834L41.7383 36.0839C40.1771 34.2747 25.0967 21.2965 25.0006 21.2965C24.9801 21.2965 25.4938 21.9365 26.1422 22.7187ZM29.7542 59.0713C30.1072 58.4498 29.9196 57.6513 29.3292 57.261C28.7714 56.8924 27.9047 57.0661 27.9047 57.5465C27.9047 57.6932 27.9863 57.7998 28.1701 57.8939C28.4797 58.0521 28.5022 58.2302 28.2586 58.5939C28.012 58.9624 28.0319 59.2865 28.3148 59.5065C28.7707 59.8613 29.4162 59.6661 29.7542 59.0713Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M43.2416 41.662C42.444 41.9055 41.6686 42.7457 41.4286 43.6266C41.2822 44.1641 41.3653 45.1068 41.5846 45.398C41.9389 45.8682 42.2815 45.9921 43.2093 45.9856C45.0256 45.9731 46.6047 45.1988 46.7883 44.2309C46.9388 43.4374 46.2452 42.3378 45.29 41.8551C44.7971 41.6061 43.7488 41.5073 43.2416 41.662ZM45.3649 43.3123C45.645 42.9167 45.5225 42.4892 45.0461 42.2C44.1389 41.6494 42.7669 42.105 42.7669 42.9569C42.7669 43.3809 43.4824 43.8435 44.1382 43.8435C44.5746 43.8435 45.172 43.5848 45.3649 43.3123Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.9 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="9" cy="9" r="9" fill="#366EDD"/>
|
||||
<path d="M9 15C5.68596 15 3 12.314 3 9C3 5.68596 5.68596 3 9 3C12.314 3 15 5.68596 15 9C15 10.5913 14.3679 12.1174 13.2426 13.2426C12.1174 14.3679 10.5913 15 9 15ZM8.64255 6.77362C8.31427 6.7899 8.00392 6.9283 7.77245 7.16167C7.54098 7.39503 7.4051 7.70649 7.39149 8.03489C7.39149 8.65277 7.76936 9.05617 8.57106 9.22468L9.13277 9.35745C9.67915 9.48511 9.90383 9.66894 9.90383 9.98043C9.90383 10.2919 9.51064 10.5983 9 10.5983C8.81862 10.6149 8.63622 10.5802 8.47368 10.498C8.31113 10.4158 8.17499 10.2895 8.08085 10.1336C8.05296 10.0745 8.00892 10.0244 7.95382 9.98914C7.89871 9.95391 7.83477 9.93496 7.76936 9.93447H7.46809C7.44492 9.93876 7.42283 9.94759 7.40308 9.96045C7.38334 9.97331 7.36634 9.98995 7.35305 10.0094C7.33976 10.0289 7.33045 10.0508 7.32565 10.0738C7.32086 10.0969 7.32067 10.1207 7.32511 10.1438C7.39849 10.4433 7.56912 10.7101 7.81029 10.9023C8.05145 11.0945 8.34953 11.2013 8.65787 11.206V11.6349C8.65787 11.7304 8.6958 11.8219 8.76331 11.8895C8.83083 11.957 8.9224 11.9949 9.01787 11.9949C9.11335 11.9949 9.20492 11.957 9.27243 11.8895C9.33994 11.8219 9.37787 11.7304 9.37787 11.6349V11.2009C9.72653 11.1969 10.0599 11.057 10.3069 10.8109C10.5539 10.5648 10.6951 10.232 10.7004 9.8834C10.7004 9.23489 10.3277 8.86213 9.44426 8.67319L8.93362 8.56085C8.42298 8.43319 8.18298 8.26468 8.18298 7.97872C8.18298 7.69277 8.48936 7.37617 9 7.37617C9.16082 7.35937 9.32306 7.38949 9.46714 7.46289C9.61121 7.53628 9.73096 7.64982 9.81192 7.78979C9.84473 7.85969 9.89669 7.91885 9.96176 7.96043C10.0268 8.002 10.1024 8.02428 10.1796 8.02468H10.4196C10.4741 8.01133 10.5213 7.97711 10.5509 7.92937C10.5805 7.88162 10.5902 7.82417 10.5779 7.76936C10.5087 7.49282 10.3539 7.24519 10.1357 7.06179C9.91746 6.8784 9.64688 6.76861 9.36255 6.74809V6.39574C9.36255 6.30027 9.32463 6.2087 9.25711 6.14119C9.1896 6.07367 9.09803 6.03574 9.00255 6.03574C8.90708 6.03574 8.81551 6.07367 8.748 6.14119C8.68048 6.2087 8.64255 6.30027 8.64255 6.39574V6.77362ZM4.50128 9C4.50186 9.94063 4.79794 10.8573 5.3477 11.6206C5.89746 12.3838 6.67312 12.9551 7.56511 13.2536H7.6366C7.69754 13.2536 7.75599 13.2294 7.79908 13.1863C7.84217 13.1432 7.86638 13.0848 7.86638 13.0238V12.9166C7.86655 12.8215 7.83849 12.7286 7.78577 12.6495C7.73304 12.5704 7.65802 12.5087 7.57021 12.4723C6.87554 12.1919 6.28052 11.7104 5.86151 11.0894C5.4425 10.4684 5.21863 9.73636 5.21863 8.98724C5.21863 8.23811 5.4425 7.50608 5.86151 6.8851C6.28052 6.26412 6.87554 5.78252 7.57021 5.50213C7.65762 5.46662 7.73246 5.40589 7.78521 5.32768C7.83796 5.24947 7.86622 5.15732 7.86638 5.06298V4.94553C7.86671 4.91105 7.85872 4.87699 7.84309 4.84625C7.82746 4.81552 7.80464 4.789 7.77658 4.76896C7.74852 4.74891 7.71604 4.73593 7.68189 4.73111C7.64774 4.72629 7.61294 4.72978 7.58043 4.74128C6.68475 5.03749 5.90517 5.60839 5.35242 6.37289C4.79968 7.13739 4.50186 8.05661 4.50128 9ZM13.4987 9C13.4971 8.06024 13.2005 7.14471 12.6508 6.38248C12.1011 5.62025 11.3261 5.04977 10.4349 4.75149H10.3583C10.2946 4.75149 10.2336 4.77678 10.1886 4.82178C10.1436 4.86679 10.1183 4.92784 10.1183 4.99149V5.06809C10.1204 5.16657 10.1509 5.26236 10.2061 5.3439C10.2614 5.42545 10.3391 5.48926 10.4298 5.52766C11.1229 5.80887 11.7163 6.2905 12.1341 6.9109C12.5519 7.5313 12.7751 8.26225 12.7751 9.01021C12.7751 9.75818 12.5519 10.4891 12.1341 11.1095C11.7163 11.7299 11.1229 12.2116 10.4298 12.4928C10.3408 12.5316 10.2647 12.5949 10.2105 12.6754C10.1562 12.7559 10.126 12.8502 10.1234 12.9472V13.034C10.1238 13.0719 10.1332 13.1091 10.1508 13.1427C10.1684 13.1762 10.1936 13.2051 10.2245 13.227C10.2554 13.2489 10.291 13.2632 10.3284 13.2687C10.3659 13.2742 10.4041 13.2708 10.44 13.2587C11.3319 12.959 12.107 12.3866 12.6559 11.6224C13.2047 10.8582 13.4996 9.94088 13.4987 9Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |