Merge remote-tracking branch 'origin/develop' into master-sync
@ -56,9 +56,6 @@ workflows:
|
||||
- prep-build-test-flask:
|
||||
requires:
|
||||
- prep-deps
|
||||
- prep-build-test-metrics:
|
||||
requires:
|
||||
- prep-deps
|
||||
- test-storybook:
|
||||
requires:
|
||||
- prep-deps
|
||||
@ -87,12 +84,6 @@ workflows:
|
||||
- test-e2e-firefox-snaps:
|
||||
requires:
|
||||
- prep-build-test-flask
|
||||
- test-e2e-chrome-metrics:
|
||||
requires:
|
||||
- prep-build-test-metrics
|
||||
- test-e2e-firefox-metrics:
|
||||
requires:
|
||||
- prep-build-test-metrics
|
||||
- test-unit:
|
||||
requires:
|
||||
- prep-deps
|
||||
@ -137,8 +128,6 @@ workflows:
|
||||
- test-mozilla-lint-flask
|
||||
- test-e2e-chrome
|
||||
- test-e2e-firefox
|
||||
- test-e2e-chrome-metrics
|
||||
- test-e2e-firefox-metrics
|
||||
- test-e2e-chrome-snaps
|
||||
- test-e2e-firefox-snaps
|
||||
- benchmark:
|
||||
@ -338,27 +327,6 @@ jobs:
|
||||
- dist-test
|
||||
- builds-test
|
||||
|
||||
prep-build-test-metrics:
|
||||
executor: node-browsers-medium-plus
|
||||
steps:
|
||||
- checkout
|
||||
- attach_workspace:
|
||||
at: .
|
||||
- run:
|
||||
name: Build extension for testing metrics
|
||||
command: yarn build:test:metrics
|
||||
- run:
|
||||
name: Move test build to 'dist-test-metrics' to avoid conflict with production build
|
||||
command: mv ./dist ./dist-test-metrics
|
||||
- run:
|
||||
name: Move test zips to 'builds-test' to avoid conflict with production build
|
||||
command: mv ./builds ./builds-test-metrics
|
||||
- persist_to_workspace:
|
||||
root: .
|
||||
paths:
|
||||
- dist-test-metrics
|
||||
- builds-test-metrics
|
||||
|
||||
prep-build-storybook:
|
||||
executor: node-browsers
|
||||
steps:
|
||||
@ -553,33 +521,6 @@ jobs:
|
||||
path: test-artifacts
|
||||
destination: test-artifacts
|
||||
|
||||
test-e2e-chrome-metrics:
|
||||
executor: node-browsers
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: Re-Install Chrome
|
||||
command: ./.circleci/scripts/chrome-install.sh
|
||||
- attach_workspace:
|
||||
at: .
|
||||
- run:
|
||||
name: Move test build to dist
|
||||
command: mv ./dist-test-metrics ./dist
|
||||
- run:
|
||||
name: Move test zips to builds
|
||||
command: mv ./builds-test-metrics ./builds
|
||||
- run:
|
||||
name: test:e2e:chrome:metrics
|
||||
command: |
|
||||
if .circleci/scripts/test-run-e2e.sh
|
||||
then
|
||||
yarn test:e2e:chrome:metrics --retries 2
|
||||
fi
|
||||
no_output_timeout: 20m
|
||||
- store_artifacts:
|
||||
path: test-artifacts
|
||||
destination: test-artifacts
|
||||
|
||||
test-e2e-firefox:
|
||||
executor: node-browsers-medium-plus
|
||||
steps:
|
||||
@ -607,33 +548,6 @@ jobs:
|
||||
path: test-artifacts
|
||||
destination: test-artifacts
|
||||
|
||||
test-e2e-firefox-metrics:
|
||||
executor: node-browsers
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: Install Firefox
|
||||
command: ./.circleci/scripts/firefox-install.sh
|
||||
- attach_workspace:
|
||||
at: .
|
||||
- run:
|
||||
name: Move test build to dist
|
||||
command: mv ./dist-test-metrics ./dist
|
||||
- run:
|
||||
name: Move test zips to builds
|
||||
command: mv ./builds-test-metrics ./builds
|
||||
- run:
|
||||
name: test:e2e:firefox:metrics
|
||||
command: |
|
||||
if .circleci/scripts/test-run-e2e.sh
|
||||
then
|
||||
yarn test:e2e:firefox:metrics --retries 2
|
||||
fi
|
||||
no_output_timeout: 20m
|
||||
- store_artifacts:
|
||||
path: test-artifacts
|
||||
destination: test-artifacts
|
||||
|
||||
benchmark:
|
||||
executor: node-browsers-medium-plus
|
||||
steps:
|
||||
|
@ -18,6 +18,8 @@ ignores:
|
||||
- '@metamask/auto-changelog' # invoked as `auto-changelog`
|
||||
- '@metamask/forwarder'
|
||||
- '@metamask/test-dapp'
|
||||
- '@metamask/design-tokens' # Only imported in index.css
|
||||
- '@tsconfig/node14' # required dynamically by TS, used in tsconfig.json
|
||||
- '@sentry/cli' # invoked as `sentry-cli`
|
||||
- 'chromedriver'
|
||||
- 'depcheck' # ooo meta
|
||||
@ -34,6 +36,7 @@ ignores:
|
||||
- '@storybook/core'
|
||||
- '@storybook/addon-essentials'
|
||||
- '@storybook/addon-a11y'
|
||||
- 'storybook-dark-mode'
|
||||
- 'style-loader'
|
||||
- 'css-loader'
|
||||
- 'sass-loader'
|
||||
|
9
.eslintrc.babel.js
Normal file
@ -0,0 +1,9 @@
|
||||
module.exports = {
|
||||
parser: '@babel/eslint-parser',
|
||||
plugins: ['@babel'],
|
||||
rules: {
|
||||
'@babel/no-invalid-this': 'error',
|
||||
// Prettier handles this
|
||||
'@babel/semi': 'off',
|
||||
},
|
||||
};
|
67
.eslintrc.base.js
Normal file
@ -0,0 +1,67 @@
|
||||
const path = require('path');
|
||||
|
||||
module.exports = {
|
||||
extends: [
|
||||
'@metamask/eslint-config',
|
||||
path.resolve(__dirname, '.eslintrc.jsdoc.js'),
|
||||
],
|
||||
|
||||
globals: {
|
||||
document: 'readonly',
|
||||
window: 'readonly',
|
||||
},
|
||||
|
||||
rules: {
|
||||
'default-param-last': 'off',
|
||||
'prefer-object-spread': 'error',
|
||||
'require-atomic-updates': 'off',
|
||||
|
||||
// This is the same as our default config, but for the noted exceptions
|
||||
'spaced-comment': [
|
||||
'error',
|
||||
'always',
|
||||
{
|
||||
markers: [
|
||||
'global',
|
||||
'globals',
|
||||
'eslint',
|
||||
'eslint-disable',
|
||||
'*package',
|
||||
'!',
|
||||
',',
|
||||
// Local additions
|
||||
'/:', // This is for our code fences
|
||||
],
|
||||
exceptions: ['=', '-'],
|
||||
},
|
||||
],
|
||||
|
||||
'no-invalid-this': 'off',
|
||||
|
||||
// TODO: remove this override
|
||||
'padding-line-between-statements': [
|
||||
'error',
|
||||
{
|
||||
blankLine: 'always',
|
||||
prev: 'directive',
|
||||
next: '*',
|
||||
},
|
||||
{
|
||||
blankLine: 'any',
|
||||
prev: 'directive',
|
||||
next: 'directive',
|
||||
},
|
||||
// Disabled temporarily to reduce conflicts while PR queue is large
|
||||
// {
|
||||
// blankLine: 'always',
|
||||
// prev: ['multiline-block-like', 'multiline-expression'],
|
||||
// next: ['multiline-block-like', 'multiline-expression'],
|
||||
// },
|
||||
],
|
||||
|
||||
// It is common to import modules without assigning them to variables in
|
||||
// a browser context. For instance, we may import polyfills which change
|
||||
// global variables, or we may import stylesheets.
|
||||
'import/no-unassigned-import': 'off',
|
||||
},
|
||||
};
|
471
.eslintrc.js
@ -1,132 +1,203 @@
|
||||
const path = require('path');
|
||||
const { version: reactVersion } = require('react/package.json');
|
||||
|
||||
module.exports = {
|
||||
root: true,
|
||||
parser: '@babel/eslint-parser',
|
||||
parserOptions: {
|
||||
sourceType: 'module',
|
||||
ecmaVersion: 2017,
|
||||
ecmaFeatures: {
|
||||
experimentalObjectRestSpread: true,
|
||||
impliedStrict: true,
|
||||
modules: true,
|
||||
blockBindings: true,
|
||||
arrowFunctions: true,
|
||||
objectLiteralShorthandMethods: true,
|
||||
objectLiteralShorthandProperties: true,
|
||||
templateStrings: true,
|
||||
classes: true,
|
||||
jsx: true,
|
||||
},
|
||||
},
|
||||
|
||||
// Ignore files which are also in .prettierignore
|
||||
ignorePatterns: [
|
||||
'!.eslintrc.js',
|
||||
'!.mocharc.js',
|
||||
'node_modules/**',
|
||||
'dist/**',
|
||||
'builds/**',
|
||||
'test-*/**',
|
||||
'docs/**',
|
||||
'coverage/',
|
||||
'jest-coverage/',
|
||||
'development/chromereload.js',
|
||||
'app/vendor/**',
|
||||
'test/e2e/send-eth-with-private-key-test/**',
|
||||
'nyc_output/**',
|
||||
'.vscode/**',
|
||||
'lavamoat/*/policy.json',
|
||||
'storybook-build/**',
|
||||
'builds/**/*',
|
||||
'development/chromereload.js',
|
||||
'dist/**/*',
|
||||
'node_modules/**/*',
|
||||
],
|
||||
|
||||
extends: ['@metamask/eslint-config', '@metamask/eslint-config-nodejs'],
|
||||
|
||||
plugins: ['@babel', 'import', 'jsdoc'],
|
||||
|
||||
globals: {
|
||||
document: 'readonly',
|
||||
window: 'readonly',
|
||||
},
|
||||
|
||||
rules: {
|
||||
'default-param-last': 'off',
|
||||
'prefer-object-spread': 'error',
|
||||
'require-atomic-updates': 'off',
|
||||
|
||||
// This is the same as our default config, but for the noted exceptions
|
||||
'spaced-comment': [
|
||||
'error',
|
||||
'always',
|
||||
{
|
||||
markers: [
|
||||
'global',
|
||||
'globals',
|
||||
'eslint',
|
||||
'eslint-disable',
|
||||
'*package',
|
||||
'!',
|
||||
',',
|
||||
// Local additions
|
||||
'/:', // This is for our code fences
|
||||
],
|
||||
exceptions: ['=', '-'],
|
||||
},
|
||||
],
|
||||
|
||||
'import/no-unassigned-import': 'off',
|
||||
|
||||
'no-invalid-this': 'off',
|
||||
'@babel/no-invalid-this': 'error',
|
||||
|
||||
// Prettier handles this
|
||||
'@babel/semi': 'off',
|
||||
|
||||
'node/no-process-env': 'off',
|
||||
|
||||
// Allow tag `jest-environment` to work around Jest bug
|
||||
// See: https://github.com/facebook/jest/issues/7780
|
||||
'jsdoc/check-tag-names': ['error', { definedTags: ['jest-environment'] }],
|
||||
|
||||
// TODO: remove this override
|
||||
'padding-line-between-statements': [
|
||||
'error',
|
||||
{
|
||||
blankLine: 'always',
|
||||
prev: 'directive',
|
||||
next: '*',
|
||||
},
|
||||
{
|
||||
blankLine: 'any',
|
||||
prev: 'directive',
|
||||
next: 'directive',
|
||||
},
|
||||
// Disabled temporarily to reduce conflicts while PR queue is large
|
||||
// {
|
||||
// blankLine: 'always',
|
||||
// prev: ['multiline-block-like', 'multiline-expression'],
|
||||
// next: ['multiline-block-like', 'multiline-expression'],
|
||||
// },
|
||||
],
|
||||
|
||||
// TODO: re-enable these rules
|
||||
'node/no-sync': 'off',
|
||||
'node/no-unpublished-import': 'off',
|
||||
'node/no-unpublished-require': 'off',
|
||||
'jsdoc/match-description': 'off',
|
||||
'jsdoc/require-description': 'off',
|
||||
'jsdoc/require-jsdoc': 'off',
|
||||
'jsdoc/require-param-description': 'off',
|
||||
'jsdoc/require-param-type': 'off',
|
||||
'jsdoc/require-returns-description': 'off',
|
||||
'jsdoc/require-returns-type': 'off',
|
||||
'jsdoc/require-returns': 'off',
|
||||
'jsdoc/valid-types': 'off',
|
||||
},
|
||||
overrides: [
|
||||
/**
|
||||
* == Modules ==
|
||||
*
|
||||
* The first two sections here, which cover module syntax, are mutually
|
||||
* exclusive: the set of files covered between them may NOT overlap. This is
|
||||
* because we do not allow a file to use two different styles for specifying
|
||||
* imports and exports (however theoretically possible it may be).
|
||||
*/
|
||||
|
||||
{
|
||||
files: ['ui/**/*.js', 'test/lib/render-helpers.js', 'test/jest/*.js'],
|
||||
plugins: ['react'],
|
||||
/**
|
||||
* Modules (CommonJS module syntax)
|
||||
*
|
||||
* This is code that uses `require()` and `module.exports` to import and
|
||||
* export other modules.
|
||||
*/
|
||||
files: [
|
||||
'.eslintrc.js',
|
||||
'.eslintrc.*.js',
|
||||
'.mocharc.js',
|
||||
'*.config.js',
|
||||
'development/**/*.js',
|
||||
'test/e2e/**/*.js',
|
||||
'test/helpers/*.js',
|
||||
'test/lib/wait-until-called.js',
|
||||
],
|
||||
extends: [
|
||||
path.resolve(__dirname, '.eslintrc.base.js'),
|
||||
path.resolve(__dirname, '.eslintrc.node.js'),
|
||||
path.resolve(__dirname, '.eslintrc.babel.js'),
|
||||
path.resolve(__dirname, '.eslintrc.typescript-compat.js'),
|
||||
],
|
||||
parserOptions: {
|
||||
sourceType: 'module',
|
||||
},
|
||||
rules: {
|
||||
// This rule does not work with CommonJS modules. We will just have to
|
||||
// trust that all of the files specified above are indeed modules.
|
||||
'import/unambiguous': 'off',
|
||||
},
|
||||
settings: {
|
||||
'import/resolver': {
|
||||
// When determining the location of a `require()` call, use Node's
|
||||
// resolution algorithm, then fall back to TypeScript's. This allows
|
||||
// TypeScript files (which Node's algorithm doesn't recognize) to be
|
||||
// imported from JavaScript files, while also preventing issues when
|
||||
// using packages like `prop-types` (where we would otherwise get "No
|
||||
// default export found in imported module 'prop-types'" from
|
||||
// TypeScript because imports work differently there).
|
||||
node: {},
|
||||
typescript: {
|
||||
// Always try to resolve types under `<root>/@types` directory even
|
||||
// it doesn't contain any source code, like `@types/unist`
|
||||
alwaysTryTypes: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
/**
|
||||
* Modules (ES module syntax)
|
||||
*
|
||||
* This is code that explicitly uses `import`/`export` instead of
|
||||
* `require`/`module.exports`.
|
||||
*/
|
||||
{
|
||||
files: [
|
||||
'app/**/*.js',
|
||||
'shared/**/*.js',
|
||||
'ui/**/*.js',
|
||||
'**/*.test.js',
|
||||
'test/lib/**/*.js',
|
||||
'test/mocks/**/*.js',
|
||||
'test/jest/**/*.js',
|
||||
'test/stub/**/*.js',
|
||||
'test/unit-global/**/*.js',
|
||||
],
|
||||
// TODO: Convert these files to modern JS
|
||||
excludedFiles: ['test/lib/wait-until-called.js'],
|
||||
extends: [
|
||||
path.resolve(__dirname, '.eslintrc.base.js'),
|
||||
path.resolve(__dirname, '.eslintrc.node.js'),
|
||||
path.resolve(__dirname, '.eslintrc.babel.js'),
|
||||
path.resolve(__dirname, '.eslintrc.typescript-compat.js'),
|
||||
],
|
||||
parserOptions: {
|
||||
sourceType: 'module',
|
||||
},
|
||||
settings: {
|
||||
'import/resolver': {
|
||||
// When determining the location of an `import`, use Node's resolution
|
||||
// algorithm, then fall back to TypeScript's. This allows TypeScript
|
||||
// files (which Node's algorithm doesn't recognize) to be imported
|
||||
// from JavaScript files, while also preventing issues when using
|
||||
// packages like `prop-types` (where we would otherwise get "No
|
||||
// default export found in imported module 'prop-types'" from
|
||||
// TypeScript because imports work differently there).
|
||||
node: {},
|
||||
typescript: {
|
||||
// Always try to resolve types under `<root>/@types` directory even
|
||||
// it doesn't contain any source code, like `@types/unist`
|
||||
alwaysTryTypes: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
/**
|
||||
* TypeScript files
|
||||
*/
|
||||
{
|
||||
files: ['*.{ts,tsx}'],
|
||||
extends: [
|
||||
path.resolve(__dirname, '.eslintrc.base.js'),
|
||||
'@metamask/eslint-config-typescript',
|
||||
path.resolve(__dirname, '.eslintrc.typescript-compat.js'),
|
||||
],
|
||||
rules: {
|
||||
// Turn these off, as it's recommended by typescript-eslint.
|
||||
// See: <https://typescript-eslint.io/docs/linting/troubleshooting#eslint-plugin-import>
|
||||
'import/named': 'off',
|
||||
'import/namespace': 'off',
|
||||
'import/default': 'off',
|
||||
'import/no-named-as-default-member': 'off',
|
||||
|
||||
// Disabled due to incompatibility with Record<string, unknown>.
|
||||
// See: <https://github.com/Microsoft/TypeScript/issues/15300#issuecomment-702872440>
|
||||
'@typescript-eslint/consistent-type-definitions': 'off',
|
||||
|
||||
// Modified to include the 'ignoreRestSiblings' option.
|
||||
// TODO: Migrate this rule change back into `@metamask/eslint-config`
|
||||
'@typescript-eslint/no-unused-vars': [
|
||||
'error',
|
||||
{
|
||||
vars: 'all',
|
||||
args: 'all',
|
||||
argsIgnorePattern: '[_]+',
|
||||
ignoreRestSiblings: true,
|
||||
},
|
||||
],
|
||||
},
|
||||
settings: {
|
||||
'import/resolver': {
|
||||
// When determining the location of an `import`, prefer TypeScript's
|
||||
// resolution algorithm. Note that due to how we've configured
|
||||
// TypeScript in `tsconfig.json`, we are able to import JavaScript
|
||||
// files from TypeScript files.
|
||||
typescript: {
|
||||
// Always try to resolve types under `<root>/@types` directory even
|
||||
// it doesn't contain any source code, like `@types/unist`
|
||||
alwaysTryTypes: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
files: ['*.d.ts'],
|
||||
parserOptions: {
|
||||
sourceType: 'script',
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
* == Everything else ==
|
||||
*
|
||||
* The sections from here on out may overlap with each other in various
|
||||
* ways depending on their function.
|
||||
*/
|
||||
|
||||
/**
|
||||
* React-specific code
|
||||
*
|
||||
* Code in this category contains JSX and hence needs to be run through the
|
||||
* React plugin.
|
||||
*/
|
||||
{
|
||||
files: [
|
||||
'test/lib/render-helpers.js',
|
||||
'test/jest/rendering.js',
|
||||
'ui/**/*.js',
|
||||
],
|
||||
extends: ['plugin:react/recommended', 'plugin:react-hooks/recommended'],
|
||||
parserOptions: {
|
||||
ecmaFeatures: {
|
||||
jsx: true,
|
||||
},
|
||||
},
|
||||
plugins: ['react'],
|
||||
rules: {
|
||||
'react/no-unused-prop-types': 'error',
|
||||
'react/no-unused-state': 'error',
|
||||
@ -139,74 +210,100 @@ module.exports = {
|
||||
'react/default-props-match-prop-types': 'error',
|
||||
'react/jsx-no-duplicate-props': 'error',
|
||||
},
|
||||
},
|
||||
{
|
||||
files: ['test/e2e/**/*.spec.js'],
|
||||
extends: ['@metamask/eslint-config-mocha'],
|
||||
rules: {
|
||||
'mocha/no-hooks-for-single-case': 'off',
|
||||
'mocha/no-setup-in-describe': 'off',
|
||||
settings: {
|
||||
react: {
|
||||
// If this is set to 'detect', ESLint will import React in order to
|
||||
// find its version. Because we run ESLint in the build system under
|
||||
// LavaMoat, this means that detecting the React version requires a
|
||||
// LavaMoat policy for all of React, in the build system. That's a
|
||||
// no-go, so we grab it from React's package.json.
|
||||
version: reactVersion,
|
||||
},
|
||||
},
|
||||
},
|
||||
/**
|
||||
* Mocha tests
|
||||
*
|
||||
* These are files that make use of globals and syntax introduced by the
|
||||
* Mocha library.
|
||||
*/
|
||||
{
|
||||
files: ['app/scripts/migrations/*.js', '*.stories.js'],
|
||||
rules: {
|
||||
'import/no-anonymous-default-export': ['error', { allowObject: true }],
|
||||
},
|
||||
},
|
||||
{
|
||||
files: ['app/scripts/migrations/*.js'],
|
||||
rules: {
|
||||
'node/global-require': 'off',
|
||||
},
|
||||
},
|
||||
{
|
||||
files: ['**/*.test.js'],
|
||||
files: [
|
||||
'**/*.test.js',
|
||||
'test/lib/wait-until-called.js',
|
||||
'test/e2e/**/*.spec.js',
|
||||
],
|
||||
excludedFiles: [
|
||||
'ui/**/*.test.js',
|
||||
'ui/__mocks__/*.js',
|
||||
'shared/**/*.test.js',
|
||||
'development/**/*.test.js',
|
||||
'app/scripts/controllers/network/**/*.test.js',
|
||||
'app/scripts/controllers/permissions/**/*.test.js',
|
||||
'app/scripts/lib/**/*.test.js',
|
||||
'app/scripts/migrations/*.test.js',
|
||||
'app/scripts/platforms/*.test.js',
|
||||
'app/scripts/controllers/network/**/*.test.js',
|
||||
'app/scripts/controllers/permissions/**/*.test.js',
|
||||
'development/**/*.test.js',
|
||||
'shared/**/*.test.js',
|
||||
'ui/**/*.test.js',
|
||||
'ui/__mocks__/*.js',
|
||||
],
|
||||
extends: ['@metamask/eslint-config-mocha'],
|
||||
rules: {
|
||||
// In Mocha tests, it is common to use `this` to store values or do
|
||||
// things like force the test to fail.
|
||||
'@babel/no-invalid-this': 'off',
|
||||
'mocha/no-setup-in-describe': 'off',
|
||||
},
|
||||
},
|
||||
/**
|
||||
* Jest tests
|
||||
*
|
||||
* These are files that make use of globals and syntax introduced by the
|
||||
* Jest library.
|
||||
*/
|
||||
{
|
||||
files: ['**/__snapshots__/*.snap'],
|
||||
plugins: ['jest'],
|
||||
files: [
|
||||
'**/__snapshots__/*.snap',
|
||||
'app/scripts/controllers/network/**/*.test.js',
|
||||
'app/scripts/controllers/permissions/**/*.test.js',
|
||||
'app/scripts/lib/**/*.test.js',
|
||||
'app/scripts/migrations/*.test.js',
|
||||
'app/scripts/platforms/*.test.js',
|
||||
'development/**/*.test.js',
|
||||
'shared/**/*.test.js',
|
||||
'test/jest/*.js',
|
||||
'test/helpers/*.js',
|
||||
'ui/**/*.test.js',
|
||||
'ui/__mocks__/*.js',
|
||||
],
|
||||
extends: ['@metamask/eslint-config-jest'],
|
||||
parserOptions: {
|
||||
sourceType: 'module',
|
||||
},
|
||||
rules: {
|
||||
'import/unambiguous': 'off',
|
||||
'import/named': 'off',
|
||||
'jest/no-large-snapshots': [
|
||||
'error',
|
||||
{ maxSize: 50, inlineMaxSize: 50 },
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
files: [
|
||||
'ui/**/*.test.js',
|
||||
'ui/__mocks__/*.js',
|
||||
'shared/**/*.test.js',
|
||||
'development/**/*.test.js',
|
||||
'app/scripts/lib/**/*.test.js',
|
||||
'app/scripts/migrations/*.test.js',
|
||||
'app/scripts/platforms/*.test.js',
|
||||
'app/scripts/controllers/network/**/*.test.js',
|
||||
'app/scripts/controllers/permissions/**/*.test.js',
|
||||
],
|
||||
extends: ['@metamask/eslint-config-jest'],
|
||||
rules: {
|
||||
'jest/no-restricted-matchers': 'off',
|
||||
'import/unambiguous': 'off',
|
||||
'import/named': 'off',
|
||||
},
|
||||
},
|
||||
/**
|
||||
* Migrations
|
||||
*/
|
||||
{
|
||||
files: ['app/scripts/migrations/*.js', '**/*.stories.js'],
|
||||
rules: {
|
||||
'import/no-anonymous-default-export': ['error', { allowObject: true }],
|
||||
},
|
||||
},
|
||||
/**
|
||||
* Executables and related files
|
||||
*
|
||||
* These are files that run in a Node context. They are either designed to
|
||||
* run as executables (in which case they will have a shebang at the top) or
|
||||
* are dependencies of executables (in which case they may use
|
||||
* `process.exit` to exit).
|
||||
*/
|
||||
{
|
||||
files: [
|
||||
'development/**/*.js',
|
||||
@ -218,27 +315,9 @@ module.exports = {
|
||||
'node/shebang': 'off',
|
||||
},
|
||||
},
|
||||
{
|
||||
files: [
|
||||
'.eslintrc.js',
|
||||
'.mocharc.js',
|
||||
'babel.config.js',
|
||||
'jest.config.js',
|
||||
'nyc.config.js',
|
||||
'stylelint.config.js',
|
||||
'app/scripts/lockdown-run.js',
|
||||
'app/scripts/lockdown-more.js',
|
||||
'development/**/*.js',
|
||||
'test/e2e/**/*.js',
|
||||
'test/env.js',
|
||||
'test/setup.js',
|
||||
'test/helpers/protect-intrinsics-helpers.js',
|
||||
'test/lib/wait-until-called.js',
|
||||
],
|
||||
parserOptions: {
|
||||
sourceType: 'script',
|
||||
},
|
||||
},
|
||||
/**
|
||||
* Lockdown files
|
||||
*/
|
||||
{
|
||||
files: [
|
||||
'app/scripts/lockdown-run.js',
|
||||
@ -251,19 +330,11 @@ module.exports = {
|
||||
Compartment: 'readonly',
|
||||
},
|
||||
},
|
||||
{
|
||||
files: ['app/scripts/lockdown-run.js', 'app/scripts/lockdown-more.js'],
|
||||
parserOptions: {
|
||||
sourceType: 'script',
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
settings: {
|
||||
jsdoc: {
|
||||
mode: 'typescript',
|
||||
},
|
||||
react: {
|
||||
// If this is set to 'detect', ESLint will import React in order to find
|
||||
// its version. Because we run ESLint in the build system under LavaMoat,
|
||||
// this means that detecting the React version requires a LavaMoat policy
|
||||
// for all of React, in the build system. That's a no-go, so we grab it
|
||||
// from React's package.json.
|
||||
version: reactVersion,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
23
.eslintrc.jsdoc.js
Normal file
@ -0,0 +1,23 @@
|
||||
module.exports = {
|
||||
// Note that jsdoc is already in the `plugins` array thanks to
|
||||
// @metamask/eslint-config — this just extends the config there
|
||||
rules: {
|
||||
// Allow tag `jest-environment` to work around Jest bug
|
||||
// See: https://github.com/facebook/jest/issues/7780
|
||||
'jsdoc/check-tag-names': ['error', { definedTags: ['jest-environment'] }],
|
||||
'jsdoc/match-description': 'off',
|
||||
'jsdoc/require-description': 'off',
|
||||
'jsdoc/require-jsdoc': 'off',
|
||||
'jsdoc/require-param-description': 'off',
|
||||
'jsdoc/require-param-type': 'off',
|
||||
'jsdoc/require-returns-description': 'off',
|
||||
'jsdoc/require-returns-type': 'off',
|
||||
'jsdoc/require-returns': 'off',
|
||||
'jsdoc/valid-types': 'off',
|
||||
},
|
||||
settings: {
|
||||
jsdoc: {
|
||||
mode: 'typescript',
|
||||
},
|
||||
},
|
||||
};
|
10
.eslintrc.node.js
Normal file
@ -0,0 +1,10 @@
|
||||
module.exports = {
|
||||
extends: ['@metamask/eslint-config-nodejs'],
|
||||
rules: {
|
||||
'node/no-process-env': 'off',
|
||||
// TODO: re-enable these rules
|
||||
'node/no-sync': 'off',
|
||||
'node/no-unpublished-import': 'off',
|
||||
'node/no-unpublished-require': 'off',
|
||||
},
|
||||
};
|
8
.eslintrc.typescript-compat.js
Normal file
@ -0,0 +1,8 @@
|
||||
module.exports = {
|
||||
settings: {
|
||||
'import/extensions': ['.js', '.ts', '.tsx'],
|
||||
'import/parsers': {
|
||||
'@typescript-eslint/parser': ['.ts', '.tsx'],
|
||||
},
|
||||
},
|
||||
};
|
1
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
@ -89,6 +89,7 @@ body:
|
||||
- Trezor
|
||||
- Keystone
|
||||
- GridPlus Lattice1
|
||||
- AirGap Vault
|
||||
- Other (please elaborate in the "Additional Context" section)
|
||||
- type: textarea
|
||||
id: additional
|
||||
|
51
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -1,8 +1,47 @@
|
||||
Fixes: #
|
||||
## Explanation
|
||||
|
||||
Explanation:
|
||||
<!--
|
||||
Thanks for the pull request. Take a moment to answer these questions so that reviewers have the information they need to properly understand your changes:
|
||||
|
||||
Manual testing steps:
|
||||
-
|
||||
-
|
||||
-
|
||||
* What is the current state of things and why does it need to change?
|
||||
* What is the solution your changes offer and how does it work?
|
||||
|
||||
Below is a template to give you some ideas. Feel free to use your own words!
|
||||
|
||||
Currently, ...
|
||||
|
||||
This is a problem because ...
|
||||
|
||||
In order to solve this problem, this pull request ...
|
||||
-->
|
||||
|
||||
## More information
|
||||
|
||||
<!--
|
||||
Are there any issues, Slack conversations, Zendesk issues, user stories, etc. reviewers should consult to understand this pull request better? For instance:
|
||||
|
||||
* Fixes #12345
|
||||
* See: #67890
|
||||
-->
|
||||
|
||||
## Screenshots/Screencaps
|
||||
|
||||
<!-- If you're making a change to the UI, make sure to capture a screenshot or a short video showing off your work! -->
|
||||
|
||||
### Before
|
||||
|
||||
<!-- How did the UI you changed look before your changes? Drag your file(s) below this line: -->
|
||||
|
||||
### After
|
||||
|
||||
<!-- How does it look now? Drag your file(s) below this line: -->
|
||||
|
||||
## Manual testing steps
|
||||
|
||||
<!--
|
||||
How should reviewers and QA manually test your changes? For instance:
|
||||
|
||||
- Go to this screen
|
||||
- Do this
|
||||
- Then do this
|
||||
-->
|
||||
|
3
.gitignore
vendored
@ -46,3 +46,6 @@ notes.txt
|
||||
.nyc_output
|
||||
|
||||
.metamaskrc
|
||||
|
||||
# TypeScript
|
||||
tsout/
|
||||
|
@ -5,3 +5,4 @@ SEGMENT_WRITE_KEY=
|
||||
ONBOARDING_V2=
|
||||
SWAPS_USE_DEV_APIS=
|
||||
COLLECTIBLES_V1=
|
||||
TOKEN_DETECTION_V2=
|
||||
|
@ -10,3 +10,4 @@ app/vendor/**
|
||||
.vscode/**
|
||||
test/e2e/send-eth-with-private-key-test/**
|
||||
*.scss
|
||||
development/chromereload.js
|
||||
|
201
.storybook/3.COLORS.stories.mdx
Normal file
@ -0,0 +1,201 @@
|
||||
import { Meta } from '@storybook/addon-docs';
|
||||
import ActionaleMessage from '../ui/components/ui/actionable-message';
|
||||
import designTokenDiagramImage from './images/design.token.graphic.svg';
|
||||
|
||||
<Meta title="Design Tokens / Color" />
|
||||
|
||||
# Color
|
||||
|
||||
Color is used to express style and communicate meaning.
|
||||
|
||||
<ActionaleMessage
|
||||
type="warning"
|
||||
message="We are in the process of consolidating all of our colors, making them accessible and enabling theming. Many of the colors used throughout the codebase are deprecated please follow the guide below to ensure you are using the correct colors when building MetaMask UI"
|
||||
/>
|
||||
|
||||
<br />
|
||||
|
||||
## Design tokens
|
||||
|
||||
We are importing design tokens as CSS variables from [@metamask/design-tokens](https://github.com/MetaMask/design-tokens) repo to help consolidate colors and enable theming across all MetaMask products.
|
||||
|
||||
### Token tiers
|
||||
|
||||
We follow a 3 tiered system for color design tokens and css variables.
|
||||
|
||||
<div
|
||||
style={{
|
||||
textAlign: 'center',
|
||||
backgroundColor: 'var(--color-background-alternative)',
|
||||
padding: 32,
|
||||
}}
|
||||
>
|
||||
<img width="80%" src={designTokenDiagramImage} />
|
||||
</div>
|
||||
|
||||
<br />
|
||||
<br />
|
||||
|
||||
### **Brand colors** (tier 1)
|
||||
|
||||
These colors **SHOULD NOT** be used in your styles directly. They are used as a reference for the [theme colors](#theme-colors-tier-2). Brand colors should just keep track of every color used in our app.
|
||||
|
||||
#### Example of brand color css variables
|
||||
|
||||
```css
|
||||
/** !!!DO NOT USE BRAND COLORS DIRECTLY IN YOUR CODE!!! */
|
||||
var(--brand-colors-white-white000)
|
||||
var(--brand-colors-white-white010)
|
||||
var(--brand-colors-grey-grey030)
|
||||
```
|
||||
|
||||
### **Theme colors** (tier 2)
|
||||
|
||||
Theme colors are color agnostic, semantically neutral and theme compatible design tokens that you can use in your code and styles. Please refer to the description of each token for it's intended purpose in [@metamask/design-tokens](https://github.com/MetaMask/design-tokens/blob/main/src/figma/tokens.json#L329-L554).
|
||||
|
||||
#### Example of theme color css variables
|
||||
|
||||
```css
|
||||
/** Backgrounds */
|
||||
var(--color-background-default)
|
||||
var(--color-background-alternative)
|
||||
|
||||
/** Text */
|
||||
var(--color-text-default)
|
||||
var(--color-text-alternative)
|
||||
var(--color-text-muted)
|
||||
|
||||
/** Icons */
|
||||
var(--color-icon-default)
|
||||
var(--color-icon-muted)
|
||||
|
||||
/** Borders */
|
||||
var(--color-border-default)
|
||||
var(--color-border-muted)
|
||||
|
||||
/** Overlays */
|
||||
var(--color-overlay-default)
|
||||
var(--color-overlay-inverse)
|
||||
|
||||
/** User Actions */
|
||||
var(--color-primary-default)
|
||||
var(--color-primary-alternative)
|
||||
var(--color-primary-muted)
|
||||
var(--color-primary-inverse)
|
||||
var(--color-primary-disabled)
|
||||
|
||||
var(--color-secondary-default)
|
||||
var(--color-secondary-alternative)
|
||||
var(--color-secondary-muted)
|
||||
var(--color-secondary-inverse)
|
||||
var(--color-secondary-disabled)
|
||||
|
||||
/** States */
|
||||
/** Error */
|
||||
var(--color-error-default)
|
||||
var(--color-error-alternative)
|
||||
var(--color-error-muted)
|
||||
var(--color-error-inverse)
|
||||
var(--color-error-disabled)
|
||||
|
||||
/** Warning */
|
||||
var(--color-warning-default)
|
||||
var(--color-warning-alternative)
|
||||
var(--color-warning-muted)
|
||||
var(--color-warning-inverse)
|
||||
var(--color-warning-disabled)
|
||||
|
||||
/** Success */
|
||||
var(--color-success-default)
|
||||
var(--color-success-alternative)
|
||||
var(--color-success-muted)
|
||||
var(--color-success-inverse)
|
||||
var(--color-success-disabled)
|
||||
|
||||
/** Info */
|
||||
var(--color-info-default)
|
||||
var(--color-info-alternative)
|
||||
var(--color-info-muted)
|
||||
var(--color-info-inverse)
|
||||
var(--color-info-disabled)
|
||||
```
|
||||
|
||||
### **Component colors** (tier 3)
|
||||
|
||||
Another level of abstraction is component tier colors that you can define at the top of your styles and use at the component specific level.
|
||||
|
||||
```scss
|
||||
.button {
|
||||
--color-background-primary: var(--color-primary-default);
|
||||
--color-text-primary: var(--color-primary-inverse);
|
||||
--color-border-primary: var(--color-primary-default);
|
||||
|
||||
--color-background-primary-hover: var(--color-primary-alternative);
|
||||
--color-border-primary-hover: var(--color-primary-alternative);
|
||||
|
||||
.btn-primary {
|
||||
background-color: var(--color-background-primary);
|
||||
color: var(--color-text-primary);
|
||||
border: 1px solid var(--color-border-primary);
|
||||
|
||||
&:hover {
|
||||
background-color: var(--color-background-primary-hover);
|
||||
border: 1px solid var(--color-border-primary-hover);
|
||||
}
|
||||
|
||||
/** btn-primary css continued... */
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Takeaways
|
||||
|
||||
- Do not use static HEX values in your code. Use the [theme colors](#theme-colors-tier-2). If one does not exist for your use case ask the designer or [create an issue](https://github.com/MetaMask/metamask-extension/issues/new) and tag it with a `design-system` label.
|
||||
- Make sure the design token you are using is for it's intended purpose. Please refer to the description of each token in [@metamask/design-tokens](https://github.com/MetaMask/design-tokens/blob/main/src/figma/tokens.json#L329-L554).
|
||||
|
||||
### ❌ Don't do this
|
||||
|
||||
Don't use static hex values or brand color tokens in your code.
|
||||
|
||||
```css
|
||||
/**
|
||||
* Don't do this
|
||||
* Static hex values create inconsistency and will break UI when using dark mode
|
||||
**/
|
||||
.card {
|
||||
background-color: #ffffff;
|
||||
color: #24272a;
|
||||
}
|
||||
|
||||
/**
|
||||
* Don't do this
|
||||
* Not theme compatible and will break UI when using dark theme
|
||||
**/
|
||||
.card {
|
||||
background-color: var(--brand-colors-white-white000);
|
||||
color: var(--brand-colors-grey-grey800);
|
||||
}
|
||||
```
|
||||
|
||||
### ✅ Do this
|
||||
|
||||
Do use component tiered and [theme colors](#theme-colors-tier-2) in your styles and code
|
||||
|
||||
```css
|
||||
.card {
|
||||
--color-background: var(--color-background-default);
|
||||
--color-text: var(--color-text-default);
|
||||
|
||||
background-color: var(--color-background);
|
||||
color: var(--color-text);
|
||||
}
|
||||
```
|
||||
|
||||
<br />
|
||||
|
||||
## References
|
||||
|
||||
- [@metamask/design-tokens](https://github.com/MetaMask/design-tokens)
|
||||
- [Figma brand colors library](https://www.figma.com/file/cBAUPFMnbv6tHR1J8KvBI2/Brand-Colors?node-id=0%3A1) (internal use only)
|
||||
- [Figma theme colors library](https://www.figma.com/file/kdFzEC7xzSNw7cXteqgzDW/Light-Theme-Colors?node-id=0%3A1) (internal use only)
|
||||
- [Figma dark theme colors library](https://www.figma.com/file/rLKsoqpjyoKauYnFDcBIbO/Dark-Theme-Colors?node-id=0%3A1) (internal use only)
|
4
.storybook/__mocks__/webextension-polyfill.js
Normal file
@ -0,0 +1,4 @@
|
||||
module.exports = {
|
||||
runtime: {},
|
||||
};
|
||||
|
1
.storybook/images/design.token.graphic.svg
Normal file
After Width: | Height: | Size: 19 KiB |
@ -14,6 +14,7 @@ module.exports = {
|
||||
'@storybook/addon-a11y',
|
||||
'@storybook/addon-knobs',
|
||||
'./i18n-party-addon/register.js',
|
||||
'storybook-dark-mode',
|
||||
],
|
||||
// Uses babel.config.js settings and prevents "Missing class properties transform" error
|
||||
babel: async (options) => ({ overrides: options.overrides }),
|
||||
@ -22,6 +23,7 @@ module.exports = {
|
||||
config.node = {
|
||||
__filename: true,
|
||||
};
|
||||
config.resolve.alias['webextension-polyfill'] = require.resolve('./__mocks__/webextension-polyfill.js')
|
||||
config.module.strictExportPresence = true;
|
||||
config.module.rules.push({
|
||||
test: /\.scss$/,
|
||||
|
@ -1,12 +1,10 @@
|
||||
// .storybook/YourTheme.js
|
||||
|
||||
import { create } from '@storybook/theming';
|
||||
import logo from '../app/images/logo/metamask-logo-horizontal.svg';
|
||||
|
||||
export default create({
|
||||
base: 'light',
|
||||
brandTitle: 'MetaMask Storybook',
|
||||
brandImage: logo,
|
||||
|
||||
// Typography
|
||||
fontBase: 'Euclid, Roboto, Helvetica, Arial, sans-serif',
|
||||
|
@ -1,4 +1,4 @@
|
||||
import React, { useEffect } from 'react';
|
||||
import React, { useEffect, useState } from 'react';
|
||||
import { addDecorator, addParameters } from '@storybook/react';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { Provider } from 'react-redux';
|
||||
@ -13,13 +13,14 @@ import { Router } from 'react-router-dom';
|
||||
import { createBrowserHistory } from 'history';
|
||||
import { _setBackgroundConnection } from '../ui/store/actions';
|
||||
import MetaMaskStorybookTheme from './metamask-storybook-theme';
|
||||
import addons from '@storybook/addons';
|
||||
|
||||
addParameters({
|
||||
backgrounds: {
|
||||
default: 'light',
|
||||
default: 'default',
|
||||
values: [
|
||||
{ name: 'light', value: '#FFFFFF' },
|
||||
{ name: 'dark', value: '#333333' },
|
||||
{ name: 'default', value: 'var(--color-background-default)' },
|
||||
{ name: 'alternative', value: 'var(--color-background-alternative)' },
|
||||
],
|
||||
},
|
||||
docs: {
|
||||
@ -27,7 +28,13 @@ addParameters({
|
||||
},
|
||||
options: {
|
||||
storySort: {
|
||||
order: ['Getting Started', 'Components', ['UI', 'App'], 'Pages'],
|
||||
order: [
|
||||
'Getting Started',
|
||||
'Design Tokens',
|
||||
'Components',
|
||||
['UI', 'App'],
|
||||
'Pages',
|
||||
],
|
||||
},
|
||||
},
|
||||
});
|
||||
@ -66,8 +73,29 @@ const proxiedBackground = new Proxy(
|
||||
_setBackgroundConnection(proxiedBackground);
|
||||
|
||||
const metamaskDecorator = (story, context) => {
|
||||
const [isDark, setDark] = useState(false);
|
||||
const channel = addons.getChannel();
|
||||
const currentLocale = context.globals.locale;
|
||||
const current = allLocales[currentLocale];
|
||||
|
||||
useEffect(() => {
|
||||
channel.on('DARK_MODE', setDark);
|
||||
return () => channel.off('DARK_MODE', setDark);
|
||||
}, [channel, setDark]);
|
||||
|
||||
useEffect(() => {
|
||||
const currentTheme = document.documentElement.getAttribute('data-theme');
|
||||
|
||||
if (!currentTheme)
|
||||
document.documentElement.setAttribute('data-theme', 'light');
|
||||
|
||||
if (currentTheme === 'light' && isDark) {
|
||||
document.documentElement.setAttribute('data-theme', 'dark');
|
||||
} else if (currentTheme === 'dark' && !isDark) {
|
||||
document.documentElement.setAttribute('data-theme', 'light');
|
||||
}
|
||||
}, [isDark]);
|
||||
|
||||
return (
|
||||
<Provider store={store}>
|
||||
<Router history={history}>
|
||||
|
12
app/_locales/am/messages.json
generated
@ -38,12 +38,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "የተጠቆሙ ተለዋጭ ስሞችን አክል"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "በአድራሻ መዝገብ ላይ አክል"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "ለምሳሌ፡ ጆን ዲ."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "ተለዋጭ ስም አክል"
|
||||
},
|
||||
@ -331,9 +325,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "በ ENS የስም ምዝገባ ላይ የተፈጠረ ስህተት"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "ተለዋጭ ስም ያስገቡ"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "የይለፍ ቃል ያስገቡ"
|
||||
},
|
||||
@ -750,9 +741,6 @@
|
||||
"restore": {
|
||||
"message": "እነበረበት መልስ"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "መለያዎን በዘር ሐረግ ወደነበረበት ይመልሱ"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "የዘር ቃላትን ይግለጹ"
|
||||
},
|
||||
|
12
app/_locales/ar/messages.json
generated
@ -52,12 +52,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "أضف العملات الرمزية المقترحة"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "إضافة إلى دفتر العناوين"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "مثلا جون دي"
|
||||
},
|
||||
"addToken": {
|
||||
"message": "إضافة عملة رمزية"
|
||||
},
|
||||
@ -348,9 +342,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "خطأ في تسجيل اسم ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "أدخل اسمًا مستعارًا"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "أدخل كلمة مرور"
|
||||
},
|
||||
@ -766,9 +757,6 @@
|
||||
"restore": {
|
||||
"message": "استعادة"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "قم باستعادة حسابك بواسطة عبارة الأمان"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "كشف كلمات عبارات الأمان"
|
||||
},
|
||||
|
12
app/_locales/bg/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Добавете препоръчани жетони"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Добавяне към адресната книга"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "напр. Джон Д."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Добавяне на жетон"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Грешка при регистрацията на име на ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Въведете псевдоним"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Въведете парола"
|
||||
},
|
||||
@ -761,9 +752,6 @@
|
||||
"restore": {
|
||||
"message": "Възстановяване"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Възстановете акаунта си с фраза зародиш"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Разкрий думите зародиш"
|
||||
},
|
||||
|
12
app/_locales/bn/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "প্রস্তাবিত টোকেনগুলি যোগ করুন"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "অ্যাড্রেস বুকে যোগ করুন"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "যেমন জন.ডি."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "টোকেন যোগ করুন"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "ENS নাম নিবন্ধীকরণে ত্রুটি হয়েছে"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "একটি উপনাম লিখুন"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "পাসওয়ার্ড লিখুন"
|
||||
},
|
||||
@ -765,9 +756,6 @@
|
||||
"restore": {
|
||||
"message": "পুনরুদ্ধার করুন"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "সীড ফ্রেজ দিয়ে আপনার অ্যাকাউন্ট রিস্টোর করুন"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "সীড শব্দগুলি প্রকাশ করুন"
|
||||
},
|
||||
|
12
app/_locales/ca/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Afegir Fitxes Suggerides"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Afegir al llibre d'adreces"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "p. ex. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Afegir Fitxa"
|
||||
},
|
||||
@ -337,9 +331,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Error al registre de nom ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Introdueix Àlies"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Introdueix contrasenya"
|
||||
},
|
||||
@ -743,9 +734,6 @@
|
||||
"restore": {
|
||||
"message": "Restaura"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Restaura el teu compte amb Frase de Recuperació"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Revelar Paraules de Recuperació"
|
||||
},
|
||||
|
12
app/_locales/da/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Tilføj foreslåede tokens"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Føj til adressebogen"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "f.eks. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Tilføj Polet"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Fejl i ENS-navneregistrering"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Indtast et alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Indtast kodeord"
|
||||
},
|
||||
@ -746,9 +737,6 @@
|
||||
"restore": {
|
||||
"message": "Gendan"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Gendan din konto med Seed-sætning"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Vis Seedord"
|
||||
},
|
||||
|
27
app/_locales/de/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Vorgeschlagene Token hinzufügen"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Zum Adressbuch hinzufügen"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "z.B. Max M."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Token hinzufügen"
|
||||
},
|
||||
@ -962,9 +956,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENS Lookup fehlgeschlagen."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Ein Alias eingeben"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Max. Ausgabelimit eingeben"
|
||||
},
|
||||
@ -1279,19 +1270,12 @@
|
||||
"importAccountError": {
|
||||
"message": "Fehler beim Importieren des Kontos."
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "mit einer Geheime Wiederherstellungsphrase importieren"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": " Importierte Accounts werden nicht mit der Seed-Wörterfolge deines ursprünglichen MetaMask Accounts verknüpft. Erfahre mehr über importierte Accounts."
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "Ein Konto mit einem Seed-Schlüssel importieren"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "oder $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "Geben Sie die Geheime Wiederherstellungsphrase (alias Seed Phrase) ein, die Sie beim Erstellen Ihrer Wallet erhalten haben. $1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1532,7 +1516,7 @@
|
||||
"message": "niedrig"
|
||||
},
|
||||
"mainnet": {
|
||||
"message": "Athereum Hauptnetz"
|
||||
"message": "Ethereum Hauptnetz"
|
||||
},
|
||||
"makeAnotherSwap": {
|
||||
"message": "Eine neue Wallet erstellen"
|
||||
@ -1745,9 +1729,6 @@
|
||||
"message": "Konto $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "Sammelobjekt wurde nicht hinzugefügt, weil: $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "Sammelobjekt wurde erfolgreich hinzugefügt!"
|
||||
},
|
||||
@ -2229,9 +2210,6 @@
|
||||
"restore": {
|
||||
"message": "Wiederherstellen"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Ihr Konto mit mnemonischer Phrase wiederherstellen"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "$1 hat ein Backup Ihrer Daten gefunden. Möchten Sie die Präferenzen Ihrer Wallet wiederherstellen?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2299,9 +2277,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "Nur das erste Konto auf dieser Wallet wird automatisch geladen. Wenn Sie nach Abschluss dieses Vorgangs weitere Konten hinzufügen möchten, klicken Sie auf das Dropdown-Menü und wählen Sie dann Konto erstellen."
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "Wenn Sie eine andere geheime Wiederherstellungsphrase verwenden, werden Ihre aktuelle Wallet, Ihre Konten und Vermögenswerte dauerhaft aus dieser App entfernt. Diese Aktion kann nicht rückgängig gemacht werden."
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "Geheime Wiederherstellungsphrase"
|
||||
},
|
||||
|
25
app/_locales/el/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Προσθέστε τα Προτεινόμενα Tokens"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Προσθήκη στο βιβλίο διευθύνσεων"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "π.χ. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Προσθήκη Token"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Η αναζήτηση ENS απέτυχε."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Δώστε ένα ψευδώνυμο"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Εισάγετε Το Μέγιστο Όριο Δαπάνης"
|
||||
},
|
||||
@ -1273,19 +1264,12 @@
|
||||
"importAccountError": {
|
||||
"message": "Σφάλμα εισαγωγής λογαριασμού."
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "εισαγωγή χρησιμοποιώντας τη Μυστική Φράση Ανάκτησης"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": "Οι λογαριασμοί που εισάγονται δεν θα συσχετιστούν με τη Μυστική Φράση Ανάκτησης του λογαριασμού σας MetaTask που δημιουργήθηκε αρχικά. Μάθετε περισσότερα για τους εισηγμένους λογαριασμούς"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "Εισαγωγή λογαριασμού με Μυστική Φράση Ανάκτησης"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "ή $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "Εισάγετε τη Μυστική Φράση Ανάκτησης (δλδ Seed Phrase) που σας δόθηκε όταν δημιουργήσατε το πορτοφόλι σας. $1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1745,9 +1729,6 @@
|
||||
"message": "Λογαριασμός $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "Το Collectible δεν προστέθηκε επειδή: $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "Το Collectible προστέθηκε με επιτυχία!"
|
||||
},
|
||||
@ -2229,9 +2210,6 @@
|
||||
"restore": {
|
||||
"message": "Επαναφορά"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Επαναφέρετε τον Λογαριασμό σας με Φράση Επαναφοράς"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "Βρέθηκε ένα αντίγραφο ασφαλείας των δεδομένων σας από το $1. Θα θέλατε να επαναφέρετε τις προτιμήσεις του πορτοφολιού σας;",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2299,9 +2277,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "Μόνο ο πρώτος λογαριασμός σε αυτό το πορτοφόλι θα φορτώσει αυτόματα. Μετά την ολοκλήρωση αυτής της διαδικασίας, για να προσθέσετε επιπλέον λογαριασμούς, κάντε κλικ στο αναπτυσσόμενο μενού και, στη συνέχεια, επιλέξτε Δημιουργία Λογαριασμού."
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "Αν κάνετε επαναφορά χρησιμοποιώντας μια άλλη Μυστική Φράση Ανάκτησης, το τρέχον πορτοφόλι, οι λογαριασμοί και τα περιουσιακά στοιχεία σας θα αφαιρεθούν από αυτή την εφαρμογή μόνιμα. Αυτή η ενέργεια δεν μπορεί να αναιρεθεί."
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "Μυστική Φράση Ανάκτησης"
|
||||
},
|
||||
|
238
app/_locales/en/messages.json
generated
@ -42,7 +42,7 @@
|
||||
"message": "QR-based HW Wallet"
|
||||
},
|
||||
"QRHardwareWalletSteps2Description": {
|
||||
"message": "AirGap Vault & Ngrave (Coming Soon)"
|
||||
"message": "Ngrave (Coming Soon)"
|
||||
},
|
||||
"about": {
|
||||
"message": "About"
|
||||
@ -58,6 +58,10 @@
|
||||
"message": "$1 may access and spend up to this max amount",
|
||||
"description": "$1 is the url of the site requesting ability to spend"
|
||||
},
|
||||
"accessAndSpendNoticeNFT": {
|
||||
"message": "$1 may access and spend this asset",
|
||||
"description": "$1 is the url of the site requesting ability to spend"
|
||||
},
|
||||
"accessingYourCamera": {
|
||||
"message": "Accessing your camera..."
|
||||
},
|
||||
@ -98,6 +102,9 @@
|
||||
"addANetwork": {
|
||||
"message": "Add a network"
|
||||
},
|
||||
"addANetworkManually": {
|
||||
"message": "Add a network manually"
|
||||
},
|
||||
"addANickname": {
|
||||
"message": "Add a nickname"
|
||||
},
|
||||
@ -137,6 +144,9 @@
|
||||
"addFriendsAndAddresses": {
|
||||
"message": "Add friends and addresses you trust"
|
||||
},
|
||||
"addFromAListOfPopularNetworks": {
|
||||
"message": "Add from a list of popular networks or add a network manually. Only interact with the entities you trust."
|
||||
},
|
||||
"addMemo": {
|
||||
"message": "Add memo"
|
||||
},
|
||||
@ -146,12 +156,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Add Suggested Tokens"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Add to address book"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "e.g. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Add Token"
|
||||
},
|
||||
@ -191,6 +195,12 @@
|
||||
"aggregatorFeeCost": {
|
||||
"message": "Aggregator network fee"
|
||||
},
|
||||
"airgapVault": {
|
||||
"message": "AirGap Vault"
|
||||
},
|
||||
"airgapVaultTutorial": {
|
||||
"message": " (Tutorials)"
|
||||
},
|
||||
"alertDisableTooltip": {
|
||||
"message": "This can be changed in \"Settings > Alerts\""
|
||||
},
|
||||
@ -267,6 +277,9 @@
|
||||
"approvedAmountWithColon": {
|
||||
"message": "Approved amount:"
|
||||
},
|
||||
"approvedAsset": {
|
||||
"message": "Approved asset"
|
||||
},
|
||||
"areYouDeveloper": {
|
||||
"message": "Are you a developer?"
|
||||
},
|
||||
@ -392,13 +405,27 @@
|
||||
"buy": {
|
||||
"message": "Buy"
|
||||
},
|
||||
"buyCryptoWithMoonPay": {
|
||||
"message": "Buy $1 with MoonPay",
|
||||
"description": "$1 represents the cypto symbol to be purchased"
|
||||
},
|
||||
"buyCryptoWithMoonPayDescription": {
|
||||
"message": "MoonPay supports popular payment methods, including Visa, Mastercard, Apple / Google / Samsung Pay, and bank transfers in 145+ countries. Tokens deposit into your MetaMask account."
|
||||
},
|
||||
"buyCryptoWithTransak": {
|
||||
"message": "Buy $1 with Transak",
|
||||
"description": "$1 represents the cypto symbol to be purchased"
|
||||
},
|
||||
"buyCryptoWithTransakDescription": {
|
||||
"message": "Transak supports debit card and bank transfers (depending on location) in 59+ countries. $1 deposits into your MetaMask account.",
|
||||
"description": "$1 represents the cypto symbol to be purchased"
|
||||
"message": "Transak supports credit & debit cards, Apple Pay, MobiKwik, and bank transfers (depending on location) in 100+ countries. $1 deposits directly into your MetaMask account.",
|
||||
"description": "$1 represents the crypto symbol to be purchased"
|
||||
},
|
||||
"buyEth": {
|
||||
"message": "Buy ETH"
|
||||
},
|
||||
"buyOther": {
|
||||
"message": "Buy $1 or deposit from another account.",
|
||||
"description": "$1 is a token symbol"
|
||||
},
|
||||
"buyWithWyre": {
|
||||
"message": "Buy ETH with Wyre"
|
||||
@ -422,7 +449,7 @@
|
||||
"message": "Cancel transaction"
|
||||
},
|
||||
"cancelSpeedUp": {
|
||||
"message": "cancel or speed up a tranaction."
|
||||
"message": "cancel or speed up a transaction."
|
||||
},
|
||||
"cancelSpeedUpLabel": {
|
||||
"message": "This gas fee will $1 the original.",
|
||||
@ -467,6 +494,9 @@
|
||||
"close": {
|
||||
"message": "Close"
|
||||
},
|
||||
"collectibleAddFailedMessage": {
|
||||
"message": "NFT can’t be added as the ownership details do not match. Make sure you have entered correct information."
|
||||
},
|
||||
"collectibleAddressError": {
|
||||
"message": "This token is an NFT. Add on the $1",
|
||||
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
|
||||
@ -588,6 +618,9 @@
|
||||
"continue": {
|
||||
"message": "Continue"
|
||||
},
|
||||
"continueToMoonPay": {
|
||||
"message": "Continue to MoonPay"
|
||||
},
|
||||
"continueToTransak": {
|
||||
"message": "Continue to Transak"
|
||||
},
|
||||
@ -612,6 +645,9 @@
|
||||
"convertTokenToNFTDescription": {
|
||||
"message": "We've detected that this asset is an NFT. Metamask now has full native support for NFTs. Would you like to remove it from your token list and add it as an NFT?"
|
||||
},
|
||||
"convertTokenToNFTExistDescription": {
|
||||
"message": "We’ve detected that this asset has been added as an NFT. Would you like to remove it from your token list?"
|
||||
},
|
||||
"copiedExclamation": {
|
||||
"message": "Copied!"
|
||||
},
|
||||
@ -691,6 +727,9 @@
|
||||
"customGasSubTitle": {
|
||||
"message": "Increasing fee may decrease processing times, but it is not guaranteed."
|
||||
},
|
||||
"customNetworks": {
|
||||
"message": "Custom networks"
|
||||
},
|
||||
"customSpendLimit": {
|
||||
"message": "Custom Spend Limit"
|
||||
},
|
||||
@ -714,6 +753,9 @@
|
||||
"message": "$1 has recommended this price.",
|
||||
"description": "$1 represents the Dapp's origin"
|
||||
},
|
||||
"darkTheme": {
|
||||
"message": "Dark"
|
||||
},
|
||||
"data": {
|
||||
"message": "Data"
|
||||
},
|
||||
@ -749,6 +791,9 @@
|
||||
"decryptRequest": {
|
||||
"message": "Decrypt request"
|
||||
},
|
||||
"defaultTheme": {
|
||||
"message": "Default"
|
||||
},
|
||||
"delete": {
|
||||
"message": "Delete"
|
||||
},
|
||||
@ -814,6 +859,9 @@
|
||||
"dontShowThisAgain": {
|
||||
"message": "Don't show this again"
|
||||
},
|
||||
"downArrow": {
|
||||
"message": "down arrow"
|
||||
},
|
||||
"downloadGoogleChrome": {
|
||||
"message": "Download Google Chrome"
|
||||
},
|
||||
@ -989,7 +1037,7 @@
|
||||
"message": "Use OpenSea's API to fetch NFT data. NFT auto-detection relies on OpenSea's API, and will not be available when this is turned off."
|
||||
},
|
||||
"enableSmartTransactions": {
|
||||
"message": "Enable smart transactions"
|
||||
"message": "Enable Smart Transactions"
|
||||
},
|
||||
"enableToken": {
|
||||
"message": "enable $1",
|
||||
@ -1052,9 +1100,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENS Lookup failed."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Enter an alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Enter Max Spend Limit"
|
||||
},
|
||||
@ -1206,6 +1251,9 @@
|
||||
"forgetDevice": {
|
||||
"message": "Forget this device"
|
||||
},
|
||||
"forgotPassword": {
|
||||
"message": "Forgot password?"
|
||||
},
|
||||
"from": {
|
||||
"message": "From"
|
||||
},
|
||||
@ -1334,6 +1382,9 @@
|
||||
"goerli": {
|
||||
"message": "Goerli Test Network"
|
||||
},
|
||||
"gotIt": {
|
||||
"message": "Got it!"
|
||||
},
|
||||
"grantedToWithColon": {
|
||||
"message": "Granted to:"
|
||||
},
|
||||
@ -1372,6 +1423,9 @@
|
||||
"hide": {
|
||||
"message": "Hide"
|
||||
},
|
||||
"hideSeedPhrase": {
|
||||
"message": "Hide seed phrase"
|
||||
},
|
||||
"hideToken": {
|
||||
"message": "Hide token"
|
||||
},
|
||||
@ -1408,19 +1462,12 @@
|
||||
"importAccountError": {
|
||||
"message": "Error importing account."
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "import using Secret Recovery Phrase"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": "Imported accounts will not be associated with your originally created MetaMask account Secret Recovery Phrase. Learn more about imported accounts"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "Import a wallet with Secret Recovery Phrase"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "or $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "Enter your Secret Recovery Phrase (aka Seed Phrase) that you were given when you created your wallet. $1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1478,6 +1525,10 @@
|
||||
"insufficientBalance": {
|
||||
"message": "Insufficient balance."
|
||||
},
|
||||
"insufficientCurrency": {
|
||||
"message": "You do not have enough $1 in your account to pay for transaction fees on $2 network.",
|
||||
"description": "$1 is currency, $2 is network"
|
||||
},
|
||||
"insufficientFunds": {
|
||||
"message": "Insufficient funds."
|
||||
},
|
||||
@ -1647,6 +1698,9 @@
|
||||
"letsGoSetUp": {
|
||||
"message": "Yes, let’s get set up!"
|
||||
},
|
||||
"levelArrow": {
|
||||
"message": "level arrow"
|
||||
},
|
||||
"likeToImportTokens": {
|
||||
"message": "Would you like to import these tokens?"
|
||||
},
|
||||
@ -1677,6 +1731,10 @@
|
||||
"lockTimeTooGreat": {
|
||||
"message": "Lock time is too great"
|
||||
},
|
||||
"logo": {
|
||||
"message": "$1 logo",
|
||||
"description": "$1 is the name of the ticker"
|
||||
},
|
||||
"low": {
|
||||
"message": "Low"
|
||||
},
|
||||
@ -1815,6 +1873,12 @@
|
||||
"missingNFT": {
|
||||
"message": "Don't see your NFT?"
|
||||
},
|
||||
"missingSetting": {
|
||||
"message": "Can't find a setting?"
|
||||
},
|
||||
"missingSettingRequest": {
|
||||
"message": "Request here"
|
||||
},
|
||||
"missingToken": {
|
||||
"message": "Don't see your token?"
|
||||
},
|
||||
@ -1926,9 +1990,6 @@
|
||||
"message": "Account $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "Collectible was not added because: $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "Collectible was successfully added!"
|
||||
},
|
||||
@ -1948,7 +2009,7 @@
|
||||
"message": "“$1” was successfully added!"
|
||||
},
|
||||
"newPassword": {
|
||||
"message": "New password (min 8 chars)"
|
||||
"message": "New password (8 characters min)"
|
||||
},
|
||||
"newToMetaMask": {
|
||||
"message": "New to MetaMask?"
|
||||
@ -2199,6 +2260,9 @@
|
||||
"onlyConnectTrust": {
|
||||
"message": "Only connect with sites you trust."
|
||||
},
|
||||
"onlyInteractWith": {
|
||||
"message": "Only interact with entities you trust."
|
||||
},
|
||||
"openFullScreenForLedgerWebHid": {
|
||||
"message": "Open MetaMask in full screen to connect your ledger via WebHID.",
|
||||
"description": "Shown to the user on the confirm screen when they are viewing MetaMask in a popup window but need to connect their ledger via webhid."
|
||||
@ -2215,6 +2279,9 @@
|
||||
"or": {
|
||||
"message": "or"
|
||||
},
|
||||
"orDeposit": {
|
||||
"message": "or deposit from another account."
|
||||
},
|
||||
"origin": {
|
||||
"message": "Origin"
|
||||
},
|
||||
@ -2236,11 +2303,18 @@
|
||||
"passwordSetupDetails": {
|
||||
"message": "This password will unlock your MetaMask wallet only on this device. MetaMask can not recover this password."
|
||||
},
|
||||
"passwordStrength": {
|
||||
"message": "Password strength: $1",
|
||||
"description": "Return password strength to the user when user wants to create password."
|
||||
},
|
||||
"passwordStrengthDescription": {
|
||||
"message": "A strong password can improve the security of your wallet should your device be stolen or compromised."
|
||||
},
|
||||
"passwordTermsWarning": {
|
||||
"message": "I understand that MetaMask cannot recover this password for me. $1"
|
||||
},
|
||||
"passwordsDontMatch": {
|
||||
"message": "Passwords Don't Match"
|
||||
"message": "Passwords don't match"
|
||||
},
|
||||
"pastePrivateKey": {
|
||||
"message": "Enter your private key string here:",
|
||||
@ -2289,6 +2363,10 @@
|
||||
"message": "Store and manage its data on your device.",
|
||||
"description": "The description for the `snap_manageState` permission"
|
||||
},
|
||||
"permission_notifications": {
|
||||
"message": "Show notifications.",
|
||||
"description": "The description for the `snap_notify` permission"
|
||||
},
|
||||
"permission_unknown": {
|
||||
"message": "Unknown permission: $1",
|
||||
"description": "$1 is the name of a requested permission that is not recognized."
|
||||
@ -2359,6 +2437,12 @@
|
||||
"queued": {
|
||||
"message": "Queued"
|
||||
},
|
||||
"reAddAccounts": {
|
||||
"message": "re-add any other accounts"
|
||||
},
|
||||
"reAdded": {
|
||||
"message": "re-added"
|
||||
},
|
||||
"readdToken": {
|
||||
"message": "You can add this token back in the future by going to “Import token” in your accounts options menu."
|
||||
},
|
||||
@ -2462,12 +2546,21 @@
|
||||
"resetAccountDescription": {
|
||||
"message": "Resetting your account will clear your transaction history. This will not change the balances in your accounts or require you to re-enter your Secret Recovery Phrase."
|
||||
},
|
||||
"resetWallet": {
|
||||
"message": "Reset Wallet"
|
||||
},
|
||||
"resetWalletSubHeader": {
|
||||
"message": "MetaMask does not keep a copy of your password. If you’re having trouble unlocking your account, you will need to reset your wallet. You can do this by providing the Secret Recovery Phrase you used when you set up your wallet."
|
||||
},
|
||||
"resetWalletUsingSRP": {
|
||||
"message": "This action will delete your current wallet and Secret Recovery Phrase from this device, along with the list of accounts you’ve curated. After resetting with a Secret Recovery Phrase, you’ll see a list of accounts based on the Secret Recovery Phrase you use to reset. This new list will automatically include accounts that have a balance. You’ll also be able to $1 created previously. Custom accounts that you’ve imported will need to be $2, and any custom tokens you’ve added to an account will need to be $3 as well."
|
||||
},
|
||||
"resetWalletWarning": {
|
||||
"message": "Make sure you’re using the correct Secret Recovery Phrase before proceeding. You will not be able to undo this."
|
||||
},
|
||||
"restore": {
|
||||
"message": "Restore"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Restore your Account with Secret Recovery Phrase"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "A backup of your data from $1 has been found. Would you like to restore your wallet preferences?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2490,6 +2583,9 @@
|
||||
"revealSeedWordsWarningTitle": {
|
||||
"message": "DO NOT share this phrase with anyone!"
|
||||
},
|
||||
"revealTheSeedPhrase": {
|
||||
"message": "Reveal seed phrase"
|
||||
},
|
||||
"rinkeby": {
|
||||
"message": "Rinkeby Test Network"
|
||||
},
|
||||
@ -2499,6 +2595,9 @@
|
||||
"rpcUrl": {
|
||||
"message": "New RPC URL"
|
||||
},
|
||||
"safeTransferFrom": {
|
||||
"message": "Safe Transfer From"
|
||||
},
|
||||
"save": {
|
||||
"message": "Save"
|
||||
},
|
||||
@ -2523,6 +2622,9 @@
|
||||
"searchResults": {
|
||||
"message": "Search Results"
|
||||
},
|
||||
"searchSettings": {
|
||||
"message": "Search in settings"
|
||||
},
|
||||
"searchTokens": {
|
||||
"message": "Search Tokens"
|
||||
},
|
||||
@ -2535,9 +2637,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "Only the first account on this wallet will auto load. After completing this process, to add additional accounts, click the drop down menu, then select Create Account."
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "If you restore using another Secret Recovery Phrase, your current wallet, accounts and assets will be removed from this app permanently. This action cannot be undone."
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "Secret Recovery Phrase"
|
||||
},
|
||||
@ -2560,22 +2659,22 @@
|
||||
"message": "Secure my wallet (recommended)"
|
||||
},
|
||||
"seedPhraseIntroSidebarBulletFour": {
|
||||
"message": "Write down and store in multiple secret places."
|
||||
"message": "Write down and store in multiple secret places"
|
||||
},
|
||||
"seedPhraseIntroSidebarBulletOne": {
|
||||
"message": "Save in a password manager"
|
||||
},
|
||||
"seedPhraseIntroSidebarBulletThree": {
|
||||
"message": "Store in a safe-deposit box."
|
||||
"message": "Store in a safe deposit box"
|
||||
},
|
||||
"seedPhraseIntroSidebarBulletTwo": {
|
||||
"message": "Store in a bank vault."
|
||||
"message": "Store in a bank vault"
|
||||
},
|
||||
"seedPhraseIntroSidebarCopyOne": {
|
||||
"message": "Your Secret Recovery Phrase is a 12-word phrase that is the “master key” to your wallet and your funds"
|
||||
},
|
||||
"seedPhraseIntroSidebarCopyThree": {
|
||||
"message": "If someone asks for your recovery phrase they are likely trying to scam you and steal your wallet funds"
|
||||
"message": "If someone asks for your recovery phrase they are likely trying to scam you and steal your wallet funds."
|
||||
},
|
||||
"seedPhraseIntroSidebarCopyTwo": {
|
||||
"message": "Never, ever share your Secret Recovery Phrase, not even with MetaMask!"
|
||||
@ -2669,6 +2768,9 @@
|
||||
"settings": {
|
||||
"message": "Settings"
|
||||
},
|
||||
"settingsSearchMatchingNotFound": {
|
||||
"message": "No matching results found"
|
||||
},
|
||||
"shorthandVersion": {
|
||||
"message": "v$1",
|
||||
"description": "$1 is replaced by a version string (e.g. 1.2.3)"
|
||||
@ -2755,7 +2857,7 @@
|
||||
"message": "Slow"
|
||||
},
|
||||
"smartTransaction": {
|
||||
"message": "Smart transaction"
|
||||
"message": "Smart Transaction"
|
||||
},
|
||||
"snapAccess": {
|
||||
"message": "$1 snap has access to:",
|
||||
@ -2915,20 +3017,23 @@
|
||||
"storePhrase": {
|
||||
"message": "Store this phrase in a password manager like 1Password."
|
||||
},
|
||||
"strong": {
|
||||
"message": "Strong"
|
||||
},
|
||||
"stxAreHere": {
|
||||
"message": "Smart transactions are here!"
|
||||
"message": "Smart Transactions are here!"
|
||||
},
|
||||
"stxBenefit1": {
|
||||
"message": "Decrease transaction costs"
|
||||
"message": "Minimize transaction costs"
|
||||
},
|
||||
"stxBenefit2": {
|
||||
"message": "Reduce failures & minimize costs"
|
||||
"message": "Reduce transaction failures"
|
||||
},
|
||||
"stxBenefit3": {
|
||||
"message": "Protect from front-running"
|
||||
"message": "Eliminate stuck transactions"
|
||||
},
|
||||
"stxBenefit4": {
|
||||
"message": "Eliminate stuck transactions"
|
||||
"message": "Prevent front-running"
|
||||
},
|
||||
"stxCancelled": {
|
||||
"message": "Swap would have failed"
|
||||
@ -2940,7 +3045,13 @@
|
||||
"message": "Try your swap again. We’ll be here to protect you against similar risks next time."
|
||||
},
|
||||
"stxDescription": {
|
||||
"message": "Smart transactions use MetaMask smart contracts to simulate transactions before submitting in order to..."
|
||||
"message": "MetaMask Swaps just got a whole lot smarter! Enabling Smart Transactions will allow MetaMask to programmatically optimize your Swap to help:"
|
||||
},
|
||||
"stxErrorNotEnoughFunds": {
|
||||
"message": "Not enough funds for a smart transaction."
|
||||
},
|
||||
"stxErrorUnavailable": {
|
||||
"message": "Smart Transactions are temporarily unavailable."
|
||||
},
|
||||
"stxFailure": {
|
||||
"message": "Swap failed"
|
||||
@ -2949,8 +3060,11 @@
|
||||
"message": "Sudden market changes can cause failures. If the problem persists, please reach out to $1.",
|
||||
"description": "This message is shown to a user if their swap fails. The $1 will be replaced by support.metamask.io"
|
||||
},
|
||||
"stxFallbackToNormal": {
|
||||
"message": "You can still swap using the normal method or wait for cheaper gas fees and less failures with smart transactions."
|
||||
"stxFallbackPendingTx": {
|
||||
"message": "Smart Transactions are temporarily unavailable because you have a pending transaction."
|
||||
},
|
||||
"stxFallbackUnavailable": {
|
||||
"message": "You can still swap your tokens even while Smart Transactions are unavailable."
|
||||
},
|
||||
"stxPendingFinalizing": {
|
||||
"message": "Finalizing..."
|
||||
@ -2962,7 +3076,7 @@
|
||||
"message": "Privately submitting the Swap..."
|
||||
},
|
||||
"stxSubDescription": {
|
||||
"message": "Enabling allows MetaMask to simulate transactions, proactively cancel bad transactions and sign MetaMask Swaps transactions for you."
|
||||
"message": "* Smart Transactions will attempt to submit your transaction privately, multiple times. If all attempts fail, the transaction will be broadcast publicly to ensure your Swap successfully goes through."
|
||||
},
|
||||
"stxSuccess": {
|
||||
"message": "Swap complete!"
|
||||
@ -2977,8 +3091,11 @@
|
||||
"stxTryRegular": {
|
||||
"message": "Try a regular swap."
|
||||
},
|
||||
"stxTryingToCancel": {
|
||||
"message": "Trying to cancel your transaction..."
|
||||
},
|
||||
"stxUnavailable": {
|
||||
"message": "Smart transactions temporarily unavailable"
|
||||
"message": "Smart Transactions are disabled"
|
||||
},
|
||||
"stxUnknown": {
|
||||
"message": "Status unknown"
|
||||
@ -3393,6 +3510,12 @@
|
||||
"testFaucet": {
|
||||
"message": "Test Faucet"
|
||||
},
|
||||
"theme": {
|
||||
"message": "Theme"
|
||||
},
|
||||
"themeDescription": {
|
||||
"message": "Choose your preferred MetaMask theme."
|
||||
},
|
||||
"thisWillCreate": {
|
||||
"message": "This will create a new wallet and Secret Recovery Phrase"
|
||||
},
|
||||
@ -3431,12 +3554,21 @@
|
||||
"tokenDetails": {
|
||||
"message": "Token details"
|
||||
},
|
||||
"tokenDetection": {
|
||||
"message": "Token detection"
|
||||
},
|
||||
"tokenDetectionAnnouncement": {
|
||||
"message": "New! Improved token detection is available on Ethereum Mainnet as an experimental feature. $1"
|
||||
},
|
||||
"tokenDetectionToggleDescription": {
|
||||
"message": "ConsenSys’ token API aggregates a list of tokens from various third party token lists. Turning it off will stop detecting new tokens added to your wallet, but will keep the option to search for tokens to import."
|
||||
},
|
||||
"tokenId": {
|
||||
"message": "Token ID"
|
||||
},
|
||||
"tokenList": {
|
||||
"message": "Token lists:"
|
||||
},
|
||||
"tokenSymbol": {
|
||||
"message": "Token Symbol"
|
||||
},
|
||||
@ -3632,6 +3764,12 @@
|
||||
"message": "Sending collectible (ERC-721) tokens is not currently supported",
|
||||
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
|
||||
},
|
||||
"unverifiedContractAddressMessage": {
|
||||
"message": "We cannot verify this contract. Make sure you trust this address."
|
||||
},
|
||||
"upArrow": {
|
||||
"message": "up arrow"
|
||||
},
|
||||
"updatedWithDate": {
|
||||
"message": "Updated $1"
|
||||
},
|
||||
@ -3659,6 +3797,9 @@
|
||||
"useTokenDetectionDescription": {
|
||||
"message": "We use third-party APIs to detect and display new tokens sent to your wallet. Turn off if you don’t want MetaMask to pull data from those services."
|
||||
},
|
||||
"useTokenDetectionPrivacyDesc": {
|
||||
"message": "Automatically displaying tokens sent to your account involves communication with third party servers to fetch token’s images. Those serves will have access to your IP address."
|
||||
},
|
||||
"usedByClients": {
|
||||
"message": "Used by a variety of different clients"
|
||||
},
|
||||
@ -3736,6 +3877,9 @@
|
||||
"walletCreationSuccessTitle": {
|
||||
"message": "Wallet creation successful"
|
||||
},
|
||||
"weak": {
|
||||
"message": "Weak"
|
||||
},
|
||||
"web3ShimUsageNotification": {
|
||||
"message": "We noticed that the current website tried to use the removed window.web3 API. If the site appears to be broken, please click $1 for more information.",
|
||||
"description": "$1 is a clickable link."
|
||||
|
19
app/_locales/es/messages.json
generated
@ -79,12 +79,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Agregar tokens sugeridos"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Agregar a la libreta de direcciones"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "p. ej., John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Agregar token"
|
||||
},
|
||||
@ -612,9 +606,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Error en el registro del nombre de ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Escribir un alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Escribir límite máximo de gastos"
|
||||
},
|
||||
@ -826,19 +817,12 @@
|
||||
"importAccount": {
|
||||
"message": "Importar cuenta"
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "importar con la frase secreta de recuperación"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": " Las cuentas importadas no se asociarán con la frase secreta de recuperación de la cuenta original de MetaMask. Más información sobre las cuentas importadas "
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "Importar una cuenta con la frase secreta de recuperación"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "o $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importTokenQuestion": {
|
||||
"message": "¿Desea importar el token?"
|
||||
},
|
||||
@ -1421,9 +1405,6 @@
|
||||
"restore": {
|
||||
"message": "Restaurar"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Restaurar la cuenta con la frase secreta de recuperación"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "Se encontró una copia de seguridad de los datos de $1. ¿Desea restaurar las preferencias de cartera?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
|
27
app/_locales/es_419/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Agregar tokens sugeridos"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Agregar a la libreta de direcciones"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "p. ej., John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Agregar token"
|
||||
},
|
||||
@ -982,9 +976,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Error al buscar ENS."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Escribir un alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Escribir límite máximo de gastos"
|
||||
},
|
||||
@ -1322,19 +1313,12 @@
|
||||
"importAccountError": {
|
||||
"message": "Error al importar la cuenta."
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "importar con la frase secreta de recuperación"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": "Las cuentas importadas no se asociarán con la frase secreta de recuperación de la cuenta original de MetaMask. Aprenda más sobre las cuentas importadas"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "Importar una cartera con la frase secreta de recuperación"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "o $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "Ingrese su frase secreta de recuperación (también conocida como Frase Semilla) que recibió al crear su cartera. $1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1794,9 +1778,6 @@
|
||||
"message": "Cuenta $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "No se añadió el coleccionable porque: $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "¡El coleccionable fue añadido con éxito!"
|
||||
},
|
||||
@ -2278,9 +2259,6 @@
|
||||
"restore": {
|
||||
"message": "Restaurar"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Restaurar la cuenta con la frase secreta de recuperación"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "Se encontró una copia de seguridad de los datos de $1. ¿Desea restaurar las preferencias de cartera?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2346,10 +2324,7 @@
|
||||
"message": "ADVERTENCIA: No revele su frase de respaldo. Cualquier persona que tenga esta frase puede robarle los ethers."
|
||||
},
|
||||
"secretPhrase": {
|
||||
"message": "Solo la primera cuenta de esta cartera se cargará automáticamente. Después de llevar a cabo este proceso, para agregar cuentas adicionales haga clic en el menú desplegable y luego seleccione Crear cuenta."
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "Si restablece utilizando otra frase secreta de recuperación, su cartera actual, sus cuentas y sus activos se eliminarán de esta aplicación de forma permanente. Esta acción es irreversible."
|
||||
"message": "Ingrese su frase secreta aquí para restaurar su bóveda."
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "Frase secreta de recuperación"
|
||||
|
12
app/_locales/et/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Lisa soovitatud lube"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Lisage aadressiraamatusse"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "nt John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Lisage luba"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Tõrge ENS-i nime registreerimisel"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Sisestage alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Sisestage parool"
|
||||
},
|
||||
@ -755,9 +746,6 @@
|
||||
"restore": {
|
||||
"message": "Taasta"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Taastage konto seemnefraasi abil"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Kuva seemnesõnu"
|
||||
},
|
||||
|
12
app/_locales/fa/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "اضافه رمزیاب های پیشنهاد شده"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "به کتاب آدرسها اضافه کنید"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "مثلًا. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "یک رمز یاب اضافه کنید"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "خطا در ثبت نام ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "یک نام مستعار را وارد کنید"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "رمز عبور را وارد کنید"
|
||||
},
|
||||
@ -765,9 +756,6 @@
|
||||
"restore": {
|
||||
"message": "بازیابی"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "حساب تان را با عبارت بازیاب، بازیابی کنید"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "کلمات بازیاب را آشکار کنید"
|
||||
},
|
||||
|
12
app/_locales/fi/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Lisää ehdotetut käyttötunnukset"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Lisää osoitekirjaan"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "esim. Jukka E."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Lisää tietue"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Virhe ENS-nimen rekisteröinnissä"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Anna peitenimi"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Kirjoita salasana"
|
||||
},
|
||||
@ -762,9 +753,6 @@
|
||||
"restore": {
|
||||
"message": "Palauta"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Palauta tilisi käyttäen salaustekstiä (seed phrase)"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Paljasta salaussanat"
|
||||
},
|
||||
|
12
app/_locales/fil/messages.json
generated
@ -41,12 +41,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Magdagdag ng Mga Iminungkahing Token"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Idagdag sa address book"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "hal. Juan D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Magdagdag ng Token"
|
||||
},
|
||||
@ -316,9 +310,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "May error sa pagrerehistro ng ENS name"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Maglagay ng alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Ilagay ang password"
|
||||
},
|
||||
@ -689,9 +680,6 @@
|
||||
"restore": {
|
||||
"message": "Ipanumbalik"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "I-restore ang iyong Account gamit ang Seed Phrase"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Ipakita ang Seed Words"
|
||||
},
|
||||
|
25
app/_locales/fr/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Ajouter les jetons suggérés"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Ajouter au carnet d’adresses"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "p. ex. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Ajouter un jeton"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "La recherche d’ENS a échoué."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Saisissez un pseudonyme"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Saisissez la limite de dépenses maximale"
|
||||
},
|
||||
@ -1273,19 +1264,12 @@
|
||||
"importAccountError": {
|
||||
"message": "Erreur d’importation de compte."
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "importer en utilisant la phrase secrète de récupération"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": "Les comptes importés ne seront pas associés à la phrase secrète de récupération que vous avez créée au départ dans MetaMask. En savoir plus sur les comptes importés"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "Importez un compte avec une phrase mnémotechnique"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "ou $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "Saisissez la phrase secrète de récupération (aussi appelée « phrase mnémonique » ou « seed ») qui vous a été attribuée lors de la création de votre portefeuille. $1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1745,9 +1729,6 @@
|
||||
"message": "Compte $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "Le collectible n’a pas été ajouté, car : $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "Le collectible a été ajouté avec succès !"
|
||||
},
|
||||
@ -2229,9 +2210,6 @@
|
||||
"restore": {
|
||||
"message": "Restaurer"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Restaurer votre compte avec une phrase Seed."
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "Une sauvegarde de vos données de $1 a été trouvée. Voulez-vous restaurer vos préférences de portefeuille ?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2299,9 +2277,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "Seul le premier compte de ce portefeuille sera chargé automatiquement. Après avoir terminé ce processus, pour ajouter des comptes supplémentaires, cliquez sur le menu déroulant, puis sélectionnez Créer un compte."
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "Si vous effectuez une restauration à l’aide d’une autre phrase secrète de récupération, votre portefeuille, vos comptes et vos actifs actuels seront définitivement supprimés de cette application. Cette action est irréversible."
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "Phrase secrète de récupération"
|
||||
},
|
||||
|
12
app/_locales/he/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "הוסף/י אסימונים מוצעים"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "הוסף לפנקס הכתובות"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "למשל ג'ון ד'"
|
||||
},
|
||||
"addToken": {
|
||||
"message": "הוסף/י אסימון"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "שגיאה ברישום שם ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "יש להזין כינוי"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "יש להזין ססמה"
|
||||
},
|
||||
@ -762,9 +753,6 @@
|
||||
"restore": {
|
||||
"message": "שחזר"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "שחזר את חשבונך באמצעות צירוף הגרעין"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "גלה מילות Seed"
|
||||
},
|
||||
|
25
app/_locales/hi/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "सुझाए गए टोकन जोड़ें"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "पता पुस्तिका में जोड़ें"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "जैसे जॉन डी."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "टोकन जोड़ें"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENS लुकअप विफल हुआ।"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "एक उपनाम दर्ज करें"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "अधिकतम खर्च सीमा दर्ज करें"
|
||||
},
|
||||
@ -1273,19 +1264,12 @@
|
||||
"importAccountError": {
|
||||
"message": "खाता आयात करने में त्रुटि।"
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "गुप्त रिकवरी फ्रेज का उपयोग करके आयात करें"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": "आयातित खाते आपके मूल रूप से बनाए गए MetaMask खाते के गुप्त रिकवरी फ्रेज से संबद्ध नहीं होंगे। आयातित खातों के बारे में अधिक जानें"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "गुप्त रिकवरी फ्रेज के साथ एक खाता आयात करें"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "या $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "अपना सीक्रेट रिकवरी फ्रेज (उर्फ सीड फ्रेज) दर्ज करें जो आपको अपना वॉलेट बनाने पर दिया गया था। $1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1745,9 +1729,6 @@
|
||||
"message": "खाता $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "संग्रहणीय नहीं जोड़ा गया था क्योंकि: $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "संग्रहणीय सफलतापूर्वक जोड़ा गया!"
|
||||
},
|
||||
@ -2229,9 +2210,6 @@
|
||||
"restore": {
|
||||
"message": "पुनर्स्थापित करें"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "गुप्त रिकवरी फ्रेज के साथ अपने खाते को पुनर्स्थापित करें"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "$1 से आपके डेटा का बैकअप मिला है। क्या आप अपनी वॉलेट वरीयताओं को पुनर्स्थापित करना चाहते हैं?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2299,9 +2277,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "इस वॉलेट पर केवल पहला खाता स्वतः लोड होगा। इस प्रक्रिया को पूरा करने के बाद, अतिरिक्त खाते जोड़ने के लिए, ड्रॉप डाउन मेन्यू पर क्लिक करें, फिर खाता बनाएं चुनें।"
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "यदि आप किसी दूसरे सीक्रेट रिकवरी फ्रेज का उपयोग कर पुनर्स्थापित करते हैं, तो इस ऐप से आपके वर्तमान वॉलेट, अकाउंट, और संपति स्थायी रूप से हटा दिये जाएंगे। यह क्रिया पूर्ववत नहीं की जा सकती।"
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "सीक्रेट रिकवरी फ्रेज"
|
||||
},
|
||||
|
12
app/_locales/hr/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Dodaj predložene tokene"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Dodaj u imenik"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "npr. Ivan M."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Dodaj token"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Greška u registraciji naziva ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Upiši pseudonim"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Upiši lozinku"
|
||||
},
|
||||
@ -758,9 +749,6 @@
|
||||
"restore": {
|
||||
"message": "Vrati"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Obnovite svoj račun početnom rečenicom"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Otkrij početne riječi"
|
||||
},
|
||||
|
3
app/_locales/ht/messages.json
generated
@ -479,9 +479,6 @@
|
||||
"restore": {
|
||||
"message": "Retabli"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Retabli kont ou avèk yo Seed Fraz"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Revele Seed Mo Yo"
|
||||
},
|
||||
|
12
app/_locales/hu/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Javasolt tokenek hozzáadása"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Hozzáadás a címjegyzékhez"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "pl. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Token hozzáadása"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Hiba történt az ENS név regisztrációjakor"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Adjon meg álnevet"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Adja meg a jelszót"
|
||||
},
|
||||
@ -758,9 +749,6 @@
|
||||
"restore": {
|
||||
"message": "Visszaállítás"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Fiók helyreállítása a seed mondat segítségével"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Seed szavak megjelenítése"
|
||||
},
|
||||
|
25
app/_locales/id/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Tambahkan Token yang Disarankan"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Tambahkan ke buku alamat"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "contoh: John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Tambahkan Token"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Pencarian ENS gagal."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Masukkan alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Masukkan Batas Penggunaan Maksimum"
|
||||
},
|
||||
@ -1273,19 +1264,12 @@
|
||||
"importAccountError": {
|
||||
"message": "Galat saat mengimpor akun."
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "impor menggunakan Frasa Pemulihan Rahasia"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": "Akun yang diimpor tidak akan dikaitkan dengan Frasa Pemulihan Rahasia akun MetaMask yang asli dibuat. Pelajari selengkapnya tentang akun yang diimpor"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "Impor dompet dengan Frasa Pemulihan Rahasia"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "atau $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "Masukkan Frasa Pemulihan Rahasia Anda (alias Frasa Benih) yang diberikan saat Anda membuat dompet. $1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1745,9 +1729,6 @@
|
||||
"message": "Akun $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "Koleksi tidak ditambahkan karena: $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "Koleksi berhasil ditambahkan!"
|
||||
},
|
||||
@ -2229,9 +2210,6 @@
|
||||
"restore": {
|
||||
"message": "Pulihkan"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Pulihkan Akun dengan Frasa Pemulihan Rahasia"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "Cadangan data Anda dari $1 telah ditemukan. Pulihkan preferensi dompet Anda?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2299,9 +2277,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "Hanya akun pertama di dompet ini yang akan dimuat secara otomatis. Setelah proses ini selesai, untuk menambahkan akun tambahan, klik menu drop down, lalu pilih Buat Akun."
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "Jika Anda memulihkan menggunakan Frasa Pemulihan Rahasia lainnya, dompet, akun, dan aset Anda saat ini akan dihapus dari aplikasi ini secara permanen. Tindakan ini tidak dapat dibatalkan."
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "Frasa Pemulihan Rahasia"
|
||||
},
|
||||
|
12
app/_locales/it/messages.json
generated
@ -55,12 +55,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Aggiungi Token Suggeriti"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Aggiungi alla rubrica"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "Ad esempio, John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Aggiungi Token"
|
||||
},
|
||||
@ -527,9 +521,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Errore nella registrazione del nome ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Inserisci un alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Inserisici Limite Spesa"
|
||||
},
|
||||
@ -1152,9 +1143,6 @@
|
||||
"restore": {
|
||||
"message": "Ripristina"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Ripristina Account con la Frase Seed"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "È stato trovato un backup dei tuoi dati da $1. Vuoi ripristinare le preferenze del portafoglio?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
|
25
app/_locales/ja/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "推奨されたトークンを追加"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "アドレス帳に追加"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "例: John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "トークンを追加"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENSの検索に失敗しました。"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "別名を入力してください"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "使用限度額の最大値を入力してください"
|
||||
},
|
||||
@ -1273,19 +1264,12 @@
|
||||
"importAccountError": {
|
||||
"message": "アカウントのインポート中にエラーが発生しました。"
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "シークレットリカバリーフレーズを使用してインポート"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": " インポートされたアカウントは、最初に作成したMetaMaskアカウントのシークレットリカバリーフレーズと関連付けられません。インポートされたアカウントの詳細を表示"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "シークレットリカバリーフレーズを使用してウォレットをインポート"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "または$1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "ウォレットの作成時に提供されたシークレットリカバリーフレーズ (シードフレーズ) を入力してください。$1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1745,9 +1729,6 @@
|
||||
"message": "アカウント$1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "次の理由により、コレクティブルは追加されませんでした: $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "コレクティブルが追加されました!"
|
||||
},
|
||||
@ -2229,9 +2210,6 @@
|
||||
"restore": {
|
||||
"message": "復元"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "シークレットリカバリーフレーズでアカウントを復元"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "$1のデータのバックアップが見つかりました。ウォレットの基本設定を復元しますか?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2299,9 +2277,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "このウォレットの最初のアカウントのみが自動的に読み込まれます。 このプロセスの完了後、他のアカウントを追加するには、ドロップダウンメニューをクリックし、[アカウントを作成] を選択します。"
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "別のシークレットリカバリーフレーズを使用して復元すると、現在のウォレット、アカウント、アセットは永久にこのアプリから削除されます。この操作は元に戻せません。"
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "シークレットリカバリーフレーズ"
|
||||
},
|
||||
|
12
app/_locales/kn/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "ಸೂಚಿಸಲಾದ ಟೋಕನ್ಗಳನ್ನು ಸೇರಿಸಿ"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "ವಿಳಾಸ ಪುಸ್ತಕಕ್ಕೆ ಸೇರಿಸಿ"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "ಉದಾ. ಜಾನ್ ಡಿ."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "ಟೋಕನ್ ಸೇರಿಸಿ"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "ENS ಹೆಸರಿನ ನೋಂದಣಿಯಲ್ಲಿ ದೋಷ"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "ಆಲಿಯಾಸ್ ಅನ್ನು ನಮೂದಿಸಿ"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನಮೂದಿಸಿ"
|
||||
},
|
||||
@ -765,9 +756,6 @@
|
||||
"restore": {
|
||||
"message": "ಮರುಸ್ಥಾಪನೆ"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "ಸೀಡ್ ಫ್ರೇಸ್ನೊಂದಿಗೆ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಮರುಸ್ಥಾಪಿಸಿ"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "ಸೀಡ್ ವರ್ಡ್ಸ್ ಬಹಿರಂಗಪಡಿಸಿ"
|
||||
},
|
||||
|
25
app/_locales/ko/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "추천 토큰 추가"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "주소록에 추가"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "예: John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "토큰 추가"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENS를 조회하지 못했습니다."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "별칭 입력"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "최대 지출 한도 입력"
|
||||
},
|
||||
@ -1273,19 +1264,12 @@
|
||||
"importAccountError": {
|
||||
"message": "계정 가져오기 오류"
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "비밀 복구 구문을 사용해 가져오기"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": "가져온 계정은 본래 생성한 MetaMask 계정 비밀 복구 구문과 연결하지 못합니다. 가져온 계정에 대해 자세히 알아보기"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "비밀 복구 구문으로 계정 가져오기"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "또는 $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "지갑을 만들 때 받은 비밀 복구 구문(시드 구문)을 입력하세요. $1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1745,9 +1729,6 @@
|
||||
"message": "계정 $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "다음 이유 때문에 수집 금액이 추가되지 않았습니다: $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "수집이 성공적으로 추가되었습니다!"
|
||||
},
|
||||
@ -2229,9 +2210,6 @@
|
||||
"restore": {
|
||||
"message": "복구"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "비밀 복구 구문으로 계정 복구"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "$1의 데이터 백업이 발견되었습니다. 지갑 환경설정을 복원할까요?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2299,9 +2277,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "금고를 복구하려면 비밀 구문을 여기에 입력하세요."
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "다른 비밀 복구 구문을 사용하여 복구하면 현재 지갑, 계정 및 자산이 이 앱에서 영구적으로 제거됩니다. 이 작업은 취소할 수 없습니다."
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "비밀 복구 구문"
|
||||
},
|
||||
|
12
app/_locales/lt/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Pridėti siūlomų žetonų"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Pridėti į adresų knygelę"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "pvz., John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Pridėti žetoną"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "ENS pavadinimo registracijos klaida"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Įveskite alternatyvųjį vardą"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Įveskite slaptažodį"
|
||||
},
|
||||
@ -765,9 +756,6 @@
|
||||
"restore": {
|
||||
"message": "Atkurti"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Atkurti paskyrą naudojant atkūrimo frazę"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Atskleisti atkūrimo žodžius"
|
||||
},
|
||||
|
12
app/_locales/lv/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Pievienot ieteiktos marķierus"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Pievienot adrešu grāmatai"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "piemēram, Džons D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Pievienot žetonu"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Kļūda ENS vārda reģistrācijā"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Ievadiet segvārdu"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Ievadiet paroli"
|
||||
},
|
||||
@ -761,9 +752,6 @@
|
||||
"restore": {
|
||||
"message": "Atjaunot"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Atjaunojiet savu kontu ar atkopšanas frāzi"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Parādīt atkopšanas vārdus"
|
||||
},
|
||||
|
12
app/_locales/ms/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Tambah Token yang Disyorkan"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Tambah kepada buku alamat"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "cth. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Tambah Token"
|
||||
},
|
||||
@ -337,9 +331,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Ralat dalam pendaftaran nama ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Masukkan alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Masukkan kata laluan"
|
||||
},
|
||||
@ -745,9 +736,6 @@
|
||||
"restore": {
|
||||
"message": "Pulihkan"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Pulihkan Akaun anda dengan Ungkapan Benih"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Dedahkan Ungkapan Benih"
|
||||
},
|
||||
|
12
app/_locales/no/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Legg til foreslåtte tokener "
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Legg til adressebok "
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "dvs. John D. "
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Legg til token "
|
||||
},
|
||||
@ -337,9 +331,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Feil i ENS-navneregistrering"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Oppgi et alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Skriv inn passord "
|
||||
},
|
||||
@ -752,9 +743,6 @@
|
||||
"restore": {
|
||||
"message": "Gjenopprett"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Gjenopprett konto med frøfrase"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Vis frøord"
|
||||
},
|
||||
|
19
app/_locales/ph/messages.json
generated
@ -79,12 +79,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Magdagdag ng Mga Iminumungkahing Token"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Idagdag sa address book"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "hal. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Magdagdag ng Token"
|
||||
},
|
||||
@ -615,9 +609,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Nagka-error sa pag-register ng ENS name"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Maglagay ng alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Ilagay ang Max na Limitasyon sa Paggastos"
|
||||
},
|
||||
@ -842,19 +833,12 @@
|
||||
"importAccount": {
|
||||
"message": "Mag-import ng Account"
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "i-import gamit ang Secret Recovery Phrase"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": " Ang mga na-import na account ay hindi mauugnay sa orihinal mong nagawang Secret Recovery Phrase ng MetaMask account. Matuto pa tungkol sa mga na-import account "
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "Mag-import ng account gamit ang Secret Recovery Phrase"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "o $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importTokenQuestion": {
|
||||
"message": "Mag-import ng token?"
|
||||
},
|
||||
@ -1446,9 +1430,6 @@
|
||||
"restore": {
|
||||
"message": "I-restore"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "I-restore ang iyong Account gamit ang Secret Recovery Phrase"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "Nakita ang backup ng iyong data mula sa $1. Gusto mo bang i-restore ang mga kagustuhan mo sa wallet?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
|
12
app/_locales/pl/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Dodaj sugerowane tokeny."
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Dodaj do książki adresowej"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "np. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Dodaj token"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Błąd w rejestracji nazwy ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Wpisz alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Wpisz hasło"
|
||||
},
|
||||
@ -759,9 +750,6 @@
|
||||
"restore": {
|
||||
"message": "Przywróć"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Przywróć konto frazą seed"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Pokaż słowa seed"
|
||||
},
|
||||
|
25
app/_locales/pt_BR/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Adicionar tokens sugeridos"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Adicionar à agenda de endereços"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "por ex., João S."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Adicionar token"
|
||||
},
|
||||
@ -966,9 +960,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Falha na busca de ENS."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Digite um pseudônimo"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Digite um limite máximo de gastos"
|
||||
},
|
||||
@ -1306,19 +1297,12 @@
|
||||
"importAccountError": {
|
||||
"message": "Erro de importação de conta."
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "importe usando a Frase de Recuperação Secreta"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": "As contas importadas não estarão associadas à Frase de Recuperação Secreta da conta da MetaMask criada originalmente. Saiba mais sobre as contas importadas"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "Importe uma carteira com a Frase de Recuperação Secreta"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "ou $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "Digite sua Frase de Recuperação Secreta (ou seja, a frase seed) que lhe foi dada quando você criou a sua carteira. $1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1778,9 +1762,6 @@
|
||||
"message": "Conta $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "O colecionável não foi adicionado pelo seguinte motivo: $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "O colecionável foi adicionado com sucesso!"
|
||||
},
|
||||
@ -2262,9 +2243,6 @@
|
||||
"restore": {
|
||||
"message": "Restaurar"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Restaure sua conta com a Frase de Recuperação Secreta"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "Encontramos um backup dos seus dados de $1. Gostaria de restaurar as preferências da sua carteira?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2332,9 +2310,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "Somente a primeira conta nessa carteira será carregada automaticamente. Após concluir esse processo, para adicionar mais contas, clique no menu suspenso e selecione Criar Conta."
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "Se você restaurar usando outra Frase de Recuperação Secreta, sua carteira, conta e ativos atuais serão removidos permanentemente deste aplicativo. Essa ação será irreversível."
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "Frase de Recuperação Secreta"
|
||||
},
|
||||
|
12
app/_locales/ro/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Adăugați indicativele sugerate"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Adăugați în agendă"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "de ex. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Adăugare simbol"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Eroare la înregistrarea numelui ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Introduceți un alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Introduceți parola"
|
||||
},
|
||||
@ -752,9 +743,6 @@
|
||||
"restore": {
|
||||
"message": "Restabilește"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Restaurați-vă contul folosind fraza inițială"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Arată cuvintele din seed"
|
||||
},
|
||||
|
25
app/_locales/ru/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Добавить рекомендованные токены"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Добавить в адресную книгу"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "напр., Джон Д."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Добавить токен"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Ошибка поиска ENS."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Ввести псевдоним"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Введите максимальный лимит расходов"
|
||||
},
|
||||
@ -1273,19 +1264,12 @@
|
||||
"importAccountError": {
|
||||
"message": "Ошибка импорта счета."
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "импортировать с использованием секретной фразы для восстановления"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": "Импортированные счета не будут связаны с секретной фразой для восстановления вашего изначально созданного счета MetaMask. Узнайте больше об импортированных счетах"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "Импорт кошелька с помощью секретной фразы для восстановления"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "или $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "Введите секретную фразу для восстановления (также известную как «сид-фраза»), которую вы получили при создании кошелька. $1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1745,9 +1729,6 @@
|
||||
"message": "Счет $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "Причина, по которой не был добавлен коллекционный актив: $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "Коллекционный актив успешно добавлен!"
|
||||
},
|
||||
@ -2229,9 +2210,6 @@
|
||||
"restore": {
|
||||
"message": "Восстановить"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Восстановите свой счет с помощью секретной фразы для восстановления"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "Найдена резервная копия ваших данных из $1. Хотите восстановить настройки кошелька?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2299,9 +2277,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "Автоматически загружается только первый счет в этом кошельке. Для добавления дополнительных счетов, после завершения этого процесса нажмите на выпадающее меню, а затем выберите «Создать счет»."
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "Если вы выполняете восстановление с использованием другой секретной фразы для восстановления, ваш текущий кошелек, счета и активы будут удалены из этого приложения без возможности восстановления. Это действие нельзя отменить."
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "Секретная фраза для восстановления"
|
||||
},
|
||||
|
12
app/_locales/sk/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Pridať navrhované tokeny"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Pridať do adresára"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "napr. Ján D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Přidat token"
|
||||
},
|
||||
@ -334,9 +328,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Chyba pri registrácii názvu ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Zadať alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Zadejte heslo"
|
||||
},
|
||||
@ -734,9 +725,6 @@
|
||||
"restore": {
|
||||
"message": "Obnoviť"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Obnoviť účet pomocou seed frázy"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Zobrazit slova klíčové fráze"
|
||||
},
|
||||
|
12
app/_locales/sl/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Dodaj priporočene žetone"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Dodaj stik v imenik"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "npr. Jaka N."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Dodaj žeton"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Napaka pri registraciji imena ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Vnesite vzdevek"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Vnesite geslo"
|
||||
},
|
||||
@ -753,9 +744,6 @@
|
||||
"restore": {
|
||||
"message": "Obnovi"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Obnovi račun z seed phrase"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Razkrij seed words"
|
||||
},
|
||||
|
12
app/_locales/sr/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Dodajte sugerisane tokene"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Dodaj u adresar"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "npr. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Dodaj token"
|
||||
},
|
||||
@ -337,9 +331,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Greška u registraciji ENS imena."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Unesite pseudonim"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Unesite lozinku"
|
||||
},
|
||||
@ -756,9 +747,6 @@
|
||||
"restore": {
|
||||
"message": "Поново отвори"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Povratite svoj nalog uz pomoć seed fraze"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Otkrivanje početnih reči"
|
||||
},
|
||||
|
12
app/_locales/sv/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Lägg till föreslagna tokens"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Lägg till i adressbok"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "exempelvis John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Lägg till token"
|
||||
},
|
||||
@ -334,9 +328,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Fel i ENS-namnregistrering"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Ange ett alias"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Ange lösenord"
|
||||
},
|
||||
@ -749,9 +740,6 @@
|
||||
"restore": {
|
||||
"message": "Återställ"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Återställ ditt konto med seedphrase"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Visa seed-ord"
|
||||
},
|
||||
|
12
app/_locales/sw/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Ongeza Vianzio Vilivyopendekezwa"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Ongeza kwenye kitabu cha anwani"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "k.m John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Ongeza Kianzio"
|
||||
},
|
||||
@ -334,9 +328,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Hitilafu imetokea kwenye usajili wa jina la ENS"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Ingiza majina mengine"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Ingiza nenosiri"
|
||||
},
|
||||
@ -743,9 +734,6 @@
|
||||
"restore": {
|
||||
"message": "Rejesha"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Rejesha Akaunti yako kwa kutumia Kirai Kianzio."
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Onyesha Maneno ya Kianzio"
|
||||
},
|
||||
|
25
app/_locales/tl/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Magdagdag ng Mga Iminumungkahing Token"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Idagdag sa address book"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "hal. John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Magdagdag ng Token"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Bigong Makita ang ENS."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Maglagay ng alias"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Ilagay ang Max na Limitasyon sa Paggastos"
|
||||
},
|
||||
@ -1273,19 +1264,12 @@
|
||||
"importAccountError": {
|
||||
"message": "Error sa pag-import ng account."
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "i-import gamit ang Secret Recovery Phrase"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": "Ang mga na-import na account ay hindi mauugnay sa orihinal mong nagawang Secret Recovery Phrase ng MetaMask account. Matuto pa tungkol sa mga na-import account"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "Mag-import ng account gamit ang Secret Recovery Phrase"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "o $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "Ilagay ang iyong Secret Recovery Phrase (kilala rin bilang Seed Phrase) na ibinigay sa iyo noong gumawa ka ng iyong wallet. $1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1745,9 +1729,6 @@
|
||||
"message": "Account $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "Ang collectible ay hindi idinagdag dahil: $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "Ang collectible ay tagumpay na naidagdag!"
|
||||
},
|
||||
@ -2229,9 +2210,6 @@
|
||||
"restore": {
|
||||
"message": "I-restore"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "I-restore ang iyong Account gamit ang Secret Recovery Phrase"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "Nakita ang backup ng iyong data mula sa $1. Gusto mo bang i-restore ang mga kagustuhan mo sa wallet?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2299,9 +2277,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "Ang unang account lang sa wallet na ito ang awtomatikong maglo-load. Pagkatapos makumpleto ang prosesong ito, upang magdagdag ng mga karagdagang account, i-click ang drop down na menu, pagkatapos ay piliin ang Gumawa ng Account."
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "Kapag nagre-restore ka gamit ang isa pang Secret Recovery Phrase, permanenteng aalisin sa app na ito ang iyong kasalukuyang wallet, mga account, at asset. Ang gawaing ito ay hindi pwedeng baguhin."
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "Secret Recovery Phrase"
|
||||
},
|
||||
|
25
app/_locales/tr/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Önerilen Tokenleri ekle"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Adres defterine ekle"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "ör. Hüseyin M."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Token ekle"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENS Arama başarısız oldu."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Bir diğer ad girin"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Maks. Harcama Limiti Gir"
|
||||
},
|
||||
@ -1273,19 +1264,12 @@
|
||||
"importAccountError": {
|
||||
"message": "Hesap içe aktarılırken hata oluştu."
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "Gizli Kurtarma İfadesi kullanarak içe aktar"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": "İçe aktarılan hesaplar ilk olarak oluşturduğunuz MetaMask hesabı Gizli Kurtarma ifadenizle ilişkilendirilmez. İçe aktarılan hesaplar hakkında daha fazla bilgi edinin"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "Gizli Kurtarma İfadesi ile bir cüzdanı içe aktarın"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "veya $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "Cüzdanınızı oluşturduğunuzda size verilen Gizli Kurtarma İfadenizi (başka bir deyişle Tohum İfadesi) girin. $1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1745,9 +1729,6 @@
|
||||
"message": "Hesap $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "Tahsil edilebilir tutar eklenmedi ve sebebi: $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "Tahsil edilebilir tutar başarılı bir şekilde eklendi!"
|
||||
},
|
||||
@ -2229,9 +2210,6 @@
|
||||
"restore": {
|
||||
"message": "Geri Yükle"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Gizli Kurtarma İfadesi ile Hesabınızı geri yükleyin"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "Verilerinizin $1 tarihinden bir yedeği bulundu. Cüzdan tercihlerinizi geri yüklemek ister misiniz?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2299,9 +2277,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "Sadece bu cüzdandaki ilk hesap otomatik olarak yüklenecektir. Bu işlem tamamlandıktan sonra ilave hesaplar eklemek için açılır menüye tıklayın ardından Hesap Oluştur seçeneğini seçin."
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "Başka bir Gizli Kurtarma İfadesini kullanarak geri yükleme işlemi yaparsanız mevcut cüzdan, hesap ve varlıklarınız bu uygulamadan kalıcı olarak silinir. Bu işlem geri alınamaz."
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "Gizli Kurtarma İfadesi"
|
||||
},
|
||||
|
12
app/_locales/uk/messages.json
generated
@ -44,12 +44,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Додати рекомендовані токени"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Додати до адресної книги"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "Напр.: Джон Д."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Додати токен"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "Помилка у реєстрації ENS ім'я"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Введіть псевдонім"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "Введіть пароль"
|
||||
},
|
||||
@ -765,9 +756,6 @@
|
||||
"restore": {
|
||||
"message": "Відновити"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Відновіть ваш обліковий запис за допомогою seed-фрази"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "Показати мнемонічні слова"
|
||||
},
|
||||
|
25
app/_locales/vi/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "Thêm token được đề xuất"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "Thêm vào sổ địa chỉ"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "ví dụ: John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "Thêm token"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "Tra Cứu ENS thất bại."
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "Nhập một biệt danh"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "Nhập giới hạn chi tiêu tối đa"
|
||||
},
|
||||
@ -1273,19 +1264,12 @@
|
||||
"importAccountError": {
|
||||
"message": "Lỗi khi nhập tài khoản."
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "nhập bằng Cụm mật khẩu khôi phục bí mật"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": "Tài khoản đã nhập sẽ không được liên kết với Cụm mật khẩu khôi phục bí mật cho tài khoản MetaMask đã tạo ban đầu của bạn. Tìm hiểu thêm về các tài khoản đã nhập"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "Nhập một ví bằng Cụm mật khẩu khôi phục bí mật"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "hoặc $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "Nhập Cụm Mật Khẩu Khôi Phục Bí Mật (còn được gọi là Cụm Mật Khẩu Gốc) mà bạn được cấp khi tạo ví. $1",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1745,9 +1729,6 @@
|
||||
"message": "Tài khoản $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "Bộ sưu tập đã không được thêm vì: $1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "Bộ sưu tập đã được thêm thành công!"
|
||||
},
|
||||
@ -2229,9 +2210,6 @@
|
||||
"restore": {
|
||||
"message": "Khôi phục"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "Khôi phục tài khoản của bạn bằng cụm mật khẩu khôi phục bí mật"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "Đã tìm thấy bản sao lưu dữ liệu của bạn từ $1. Bạn có muốn khôi phục các tùy chọn ưu tiên trong ví của mình không?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2299,9 +2277,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "Chỉ tự động tải tài khoản đầu tên trên ví. Sau khi hoàn tất quá trình này, để thêm tài khoản bổ sung, hãy nhấn vào trình đơn thả xuống và chọn Tạo tài khoản."
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "Nếu bạn khôi phục bằng cách sử dụng một Cụm Mật Khẩu Khôi Phục Bí Mật khác, thì ví, tài khoản và tài sản hiện tại của bạn sẽ bị xóa khỏi ứng dụng này vĩnh viễn. Không thể hoàn tác hành động này."
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "Cụm Mật Khẩu Khôi Phục Bí Mật"
|
||||
},
|
||||
|
25
app/_locales/zh_CN/messages.json
generated
@ -143,12 +143,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "添加推荐代币"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "添加地址簿"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "如:John D."
|
||||
},
|
||||
"addToken": {
|
||||
"message": "添加代币"
|
||||
},
|
||||
@ -952,9 +946,6 @@
|
||||
"ensUnknownError": {
|
||||
"message": "ENS 查找失败。"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "输入别名"
|
||||
},
|
||||
"enterMaxSpendLimit": {
|
||||
"message": "输入最高消费额度"
|
||||
},
|
||||
@ -1273,19 +1264,12 @@
|
||||
"importAccountError": {
|
||||
"message": "导入帐户时出错。"
|
||||
},
|
||||
"importAccountLinkText": {
|
||||
"message": "使用账户助记词导入"
|
||||
},
|
||||
"importAccountMsg": {
|
||||
"message": "导入的账户将不会与最初创建的 MetaMask 账户助记词相关联。了解更多有关导入账户的信息 。"
|
||||
},
|
||||
"importAccountSeedPhrase": {
|
||||
"message": "使用账户助记词导入账户"
|
||||
},
|
||||
"importAccountText": {
|
||||
"message": "或 $1",
|
||||
"description": "$1 represents the text from `importAccountLinkText` as a link"
|
||||
},
|
||||
"importExistingWalletDescription": {
|
||||
"message": "输入您创建$1钱包时提供的保密恢复短语(或Seed Phrase)。",
|
||||
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
|
||||
@ -1745,9 +1729,6 @@
|
||||
"message": "账户 $1",
|
||||
"description": "Default name of next account to be created on create account screen"
|
||||
},
|
||||
"newCollectibleAddFailed": {
|
||||
"message": "未添加收藏,因为:$1"
|
||||
},
|
||||
"newCollectibleAddedMessage": {
|
||||
"message": "收藏已成功添加!"
|
||||
},
|
||||
@ -2229,9 +2210,6 @@
|
||||
"restore": {
|
||||
"message": "恢复"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "使用账户助记词恢复您的账户"
|
||||
},
|
||||
"restoreWalletPreferences": {
|
||||
"message": "已找到于 $1 的数据备份。您想恢复您的钱包设置吗?",
|
||||
"description": "$1 is the date at which the data was backed up"
|
||||
@ -2299,9 +2277,6 @@
|
||||
"secretPhrase": {
|
||||
"message": "只有这个钱包上的第一个帐户将自动加载。 完成此流程后,点击下拉菜单,然后选择创建账户。"
|
||||
},
|
||||
"secretPhraseWarning": {
|
||||
"message": "如果您使用另一个账户助记词来还原,您当前的钱包、帐户和资产将永久从这个应用中移除。 此操作不能撤消。"
|
||||
},
|
||||
"secretRecoveryPhrase": {
|
||||
"message": "账户助记词"
|
||||
},
|
||||
|
12
app/_locales/zh_TW/messages.json
generated
@ -41,12 +41,6 @@
|
||||
"addSuggestedTokens": {
|
||||
"message": "加入建議的代幣"
|
||||
},
|
||||
"addToAddressBook": {
|
||||
"message": "新增至位址簿中"
|
||||
},
|
||||
"addToAddressBookModalPlaceholder": {
|
||||
"message": "如 John D。"
|
||||
},
|
||||
"addToken": {
|
||||
"message": "加入代幣"
|
||||
},
|
||||
@ -340,9 +334,6 @@
|
||||
"ensRegistrationError": {
|
||||
"message": "ENS 名稱註冊錯誤"
|
||||
},
|
||||
"enterAnAlias": {
|
||||
"message": "輸入化名"
|
||||
},
|
||||
"enterPassword": {
|
||||
"message": "請輸入密碼"
|
||||
},
|
||||
@ -747,9 +738,6 @@
|
||||
"resetAccountDescription": {
|
||||
"message": "重置帳戶將清除您的交易紀錄"
|
||||
},
|
||||
"restoreAccountWithSeed": {
|
||||
"message": "透過助憶詞還原您的帳戶"
|
||||
},
|
||||
"revealSeedWords": {
|
||||
"message": "顯示助憶詞"
|
||||
},
|
||||
|
@ -1,148 +0,0 @@
|
||||
<svg width="1533" height="242" viewBox="0 0 1533 242" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<path d="M1157.95 121.694C1151.15 117.195 1143.65 113.996 1136.55 109.997C1131.95 107.398 1127.05 105.098 1123.05 101.799C1116.24 96.2 1117.64 85.2024 1124.75 80.4035C1134.95 73.605 1151.85 77.4042 1153.65 91.3011C1153.65 91.601 1153.95 91.801 1154.25 91.801H1169.66C1170.06 91.801 1170.36 91.501 1170.26 91.1011C1169.46 81.5033 1165.75 73.505 1158.95 68.4062C1152.45 63.5073 1145.05 60.9078 1137.15 60.9078C1096.44 60.9078 1092.74 103.998 1114.64 117.595C1117.14 119.195 1138.65 129.992 1146.25 134.691C1153.85 139.39 1156.25 147.988 1152.95 154.787C1149.95 160.986 1142.15 165.285 1134.35 164.785C1125.85 164.285 1119.24 159.686 1116.94 152.487C1116.54 151.188 1116.34 148.688 1116.34 147.589C1116.34 147.289 1116.04 146.989 1115.74 146.989H1099.04C1098.74 146.989 1098.44 147.289 1098.44 147.589C1098.44 159.686 1101.44 166.384 1109.64 172.483C1117.34 178.282 1125.75 180.681 1134.45 180.681C1157.25 180.681 1169.06 167.784 1171.46 154.387C1173.56 141.29 1169.66 129.493 1157.95 121.694V121.694Z" fill="white"/>
|
||||
<path d="M432.694 63.1091H425.293H417.191C416.891 63.1091 416.691 63.3091 416.591 63.509L402.888 108.698C402.688 109.298 401.888 109.298 401.688 108.698L387.985 63.509C387.885 63.2091 387.685 63.1091 387.384 63.1091H379.283H371.881H361.879C361.579 63.1091 361.279 63.4091 361.279 63.709V179.082C361.279 179.382 361.579 179.682 361.879 179.682H378.583C378.883 179.682 379.183 179.382 379.183 179.082V91.4025C379.183 90.7027 380.183 90.6027 380.383 91.2025L394.186 136.692L395.186 139.891C395.286 140.191 395.486 140.291 395.786 140.291H408.589C408.889 140.291 409.089 140.091 409.189 139.891L410.189 136.692L423.992 91.2025C424.192 90.5027 425.193 90.7027 425.193 91.4025V179.082C425.193 179.382 425.493 179.682 425.793 179.682H442.496C442.796 179.682 443.097 179.382 443.097 179.082V63.709C443.097 63.4091 442.796 63.1091 442.496 63.1091H432.694Z" fill="white"/>
|
||||
<path d="M902.197 63.1091C901.897 63.1091 901.697 63.3091 901.597 63.509L887.894 108.698C887.694 109.298 886.894 109.298 886.694 108.698L872.991 63.509C872.891 63.2091 872.691 63.1091 872.39 63.1091H846.985C846.685 63.1091 846.385 63.4091 846.385 63.709V179.082C846.385 179.382 846.685 179.682 846.985 179.682H863.689C863.989 179.682 864.289 179.382 864.289 179.082V91.4025C864.289 90.7027 865.289 90.6027 865.489 91.2025L879.292 136.692L880.292 139.891C880.392 140.191 880.592 140.291 880.892 140.291H893.695C893.995 140.291 894.195 140.091 894.295 139.891L895.295 136.692L909.098 91.2025C909.299 90.5027 910.299 90.7027 910.299 91.4025V179.082C910.299 179.382 910.599 179.682 910.899 179.682H927.603C927.903 179.682 928.203 179.382 928.203 179.082V63.709C928.203 63.4091 927.903 63.1091 927.603 63.1091H902.197Z" fill="white"/>
|
||||
<path d="M686.749 63.1091H655.642H638.938H607.832C607.532 63.1091 607.231 63.4091 607.231 63.709V78.1056C607.231 78.4055 607.532 78.7055 607.832 78.7055H638.338V179.082C638.338 179.382 638.638 179.682 638.938 179.682H655.642C655.942 179.682 656.242 179.382 656.242 179.082V78.7055H686.749C687.049 78.7055 687.349 78.4055 687.349 78.1056V63.709C687.349 63.4091 687.149 63.1091 686.749 63.1091V63.1091Z" fill="white"/>
|
||||
<path d="M785.272 179.681H800.475C800.875 179.681 801.175 179.281 801.075 178.881L769.668 63.1082C769.568 62.8082 769.368 62.7083 769.068 62.7083H763.267H753.065H747.264C746.964 62.7083 746.763 62.9082 746.663 63.1082L715.257 178.881C715.157 179.281 715.457 179.681 715.857 179.681H731.06C731.36 179.681 731.56 179.481 731.66 179.281L740.762 145.589C740.862 145.289 741.062 145.189 741.362 145.189H774.97C775.27 145.189 775.47 145.389 775.57 145.589L784.672 179.281C784.772 179.481 785.072 179.681 785.272 179.681V179.681ZM745.363 128.693L757.566 83.6034C757.766 83.0035 758.566 83.0035 758.766 83.6034L770.969 128.693C771.069 129.093 770.769 129.493 770.369 129.493H745.963C745.563 129.493 745.263 129.093 745.363 128.693V128.693Z" fill="white"/>
|
||||
<path d="M1044.53 179.681H1059.73C1060.13 179.681 1060.43 179.281 1060.33 178.881L1028.93 63.1082C1028.83 62.8082 1028.63 62.7083 1028.33 62.7083H1022.52H1012.32H1006.52C1006.22 62.7083 1006.02 62.9082 1005.92 63.1082L974.514 178.881C974.414 179.281 974.714 179.681 975.114 179.681H990.317C990.618 179.681 990.818 179.481 990.918 179.281L1000.02 145.589C1000.12 145.289 1000.32 145.189 1000.62 145.189H1034.23C1034.53 145.189 1034.73 145.389 1034.83 145.589L1043.93 179.281C1044.03 179.481 1044.23 179.681 1044.53 179.681V179.681ZM1004.62 128.693L1016.82 83.6034C1017.02 83.0035 1017.82 83.0035 1018.02 83.6034L1030.23 128.693C1030.33 129.093 1030.03 129.493 1029.63 129.493H1005.22C1004.82 129.493 1004.52 129.093 1004.62 128.693V128.693Z" fill="white"/>
|
||||
<path d="M510.909 162.584V126.793C510.909 126.493 511.209 126.193 511.509 126.193H556.019C556.319 126.193 556.619 125.893 556.619 125.593V111.196C556.619 110.896 556.319 110.596 556.019 110.596H511.509C511.209 110.596 510.909 110.296 510.909 109.997V79.4037C510.909 79.1038 511.209 78.8039 511.509 78.8039H562.121C562.421 78.8039 562.721 78.5039 562.721 78.204V63.8074C562.721 63.5074 562.421 63.2075 562.121 63.2075H510.909H493.606C493.305 63.2075 493.005 63.5074 493.005 63.8074V78.8039V110.696V126.293V163.284V179.08C493.005 179.38 493.305 179.68 493.606 179.68H510.909H564.221C564.521 179.68 564.821 179.38 564.821 179.08V163.884C564.821 163.584 564.521 163.284 564.221 163.284H511.409C511.109 163.184 510.909 162.984 510.909 162.584Z" fill="white"/>
|
||||
<path d="M1310.58 178.681L1252.77 118.995C1252.57 118.795 1252.57 118.395 1252.77 118.195L1304.78 64.2074C1305.18 63.8075 1304.88 63.2076 1304.38 63.2076H1283.08C1282.88 63.2076 1282.78 63.3076 1282.68 63.4076L1238.57 109.197C1238.17 109.597 1237.57 109.297 1237.57 108.797V63.8075C1237.57 63.5076 1237.27 63.2076 1236.97 63.2076H1220.26C1219.96 63.2076 1219.66 63.5076 1219.66 63.8075V179.181C1219.66 179.48 1219.96 179.78 1220.26 179.78H1236.97C1237.27 179.78 1237.57 179.48 1237.57 179.181V128.392C1237.57 127.893 1238.27 127.593 1238.57 127.993L1288.58 179.58C1288.68 179.68 1288.88 179.78 1288.98 179.78H1310.28C1310.68 179.68 1310.98 178.981 1310.58 178.681V178.681Z" fill="white"/>
|
||||
<path d="M1512.38 110.091H1359.98C1348.59 110.091 1339.36 100.86 1339.36 89.4845V44.6061C1339.36 33.231 1348.59 24 1359.98 24H1512.38C1523.76 24 1533 33.231 1533 44.6061V89.4845C1533 100.876 1523.76 110.091 1512.38 110.091Z" fill="#F66A0A"/>
|
||||
<path d="M1371.47 48.027H1386.48C1388.08 48.027 1389.62 48.3377 1391.06 48.9592C1392.5 49.5807 1393.76 50.4149 1394.86 51.478C1395.94 52.5411 1396.79 53.8004 1397.41 55.2397C1398.04 56.679 1398.35 58.2164 1398.35 59.8683C1398.35 61.2912 1398.09 62.567 1397.56 63.7118C1397.04 64.8567 1396.35 65.8544 1395.48 66.7213C1397.17 67.5881 1398.53 68.8311 1399.59 70.483C1400.64 72.1349 1401.17 74.0158 1401.17 76.1583C1401.17 77.8102 1400.85 79.3313 1400.23 80.7542C1399.61 82.1771 1398.76 83.4202 1397.68 84.4833C1396.6 85.5464 1395.3 86.3805 1393.83 86.9856C1392.35 87.5908 1390.75 87.8852 1389.03 87.8852H1371.49V48.027H1371.47ZM1385.46 64.1371C1386.66 64.1371 1387.65 63.7609 1388.44 62.9922C1389.23 62.2235 1389.62 61.3076 1389.62 60.2118C1389.62 59.1323 1389.23 58.1837 1388.44 57.3823C1387.65 56.5809 1386.66 56.172 1385.46 56.172H1380.4V64.1371H1385.46V64.1371ZM1388.28 79.6748C1389.47 79.6748 1390.47 79.2986 1391.26 78.5299C1392.04 77.7612 1392.44 76.8126 1392.44 75.7004C1392.44 74.6209 1392.03 73.6723 1391.22 72.8873C1390.42 72.1022 1389.42 71.7097 1388.21 71.7097H1380.4V79.6748H1388.28Z" fill="white"/>
|
||||
<path d="M1407.16 48.0112H1432.45V56.5488H1416.08V63.6798H1429.07V72.2173H1416.08V79.3483H1432.45V87.8858H1407.16V48.0112Z" fill="white"/>
|
||||
<path d="M1446.43 56.5311H1436.26V47.9935H1465.71V56.5311H1455.42V87.8518H1446.43V56.5311Z" fill="white"/>
|
||||
<path d="M1479.92 48.0112H1488.01L1505.09 87.8531H1495.76L1492.22 79.43H1475.69L1472.16 87.8531H1462.82L1479.92 48.0112ZM1478.92 71.6939H1488.98L1483.98 59.7381L1478.92 71.6939Z" fill="white"/>
|
||||
<g clip-path="url(#clip1)">
|
||||
<path d="M145.555 130.761L149.839 72.3187L167.281 30.6899H92.7188L110.161 72.3187L114.445 130.761L115.771 149.195L115.873 194.572H144.127L144.229 149.195L145.555 130.761Z" fill="url(#paint0_linear)"/>
|
||||
<path d="M240.11 119.518L186.764 104.021L202.88 128.229L178.808 174.821L210.632 174.416H257.96L240.11 119.518Z" fill="url(#paint1_linear)"/>
|
||||
<path d="M73.2366 104.021L19.8902 119.518L2.14209 174.416H49.4705L81.1927 174.821L57.1205 128.229L73.2366 104.021Z" fill="url(#paint2_linear)"/>
|
||||
<path d="M150.859 160.033L144.127 194.572L149.023 197.914L178.807 174.821L179.725 151.626L150.859 160.033Z" fill="url(#paint3_linear)"/>
|
||||
<path d="M80.3765 151.626L81.1925 174.821L110.977 197.914L115.873 194.572L109.141 160.033L80.3765 151.626Z" fill="url(#paint4_linear)"/>
|
||||
<path d="M251.432 79.7125L260 38.3876L247.148 0L149.023 72.3186L185.642 104.933L240.11 119.518L251.84 105.844L246.74 102.198L254.9 94.8042L248.678 89.9425L256.838 83.764L251.432 79.7125Z" fill="url(#paint5_linear)"/>
|
||||
<path d="M0 38.3876L8.67007 79.7125L3.16202 83.764L11.3221 89.9425L5.10004 94.8042L13.2601 102.198L8.16006 105.844L19.8902 119.518L74.4606 104.933L110.977 72.3186L12.8521 0L0 38.3876Z" fill="url(#paint6_linear)"/>
|
||||
<path d="M57.1206 128.229L80.3768 151.626L81.1928 174.821L57.1206 128.229Z" fill="url(#paint7_linear)"/>
|
||||
<path d="M202.88 128.229L178.808 174.821L179.726 151.626L202.88 128.229Z" fill="url(#paint8_linear)"/>
|
||||
<path d="M183.602 214.626L149.023 197.914L151.777 220.298L151.471 229.718L183.602 214.626Z" fill="#D7C1B3" stroke="#D7C1B3" stroke-width="1.42167" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M76.3989 214.626L108.529 229.718L108.325 220.298L110.977 197.914L76.3989 214.626Z" fill="#D7C1B3" stroke="#D7C1B3" stroke-width="1.42167" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M210.632 174.415L183.602 214.626L241.436 230.427L257.96 174.415H210.632Z" fill="url(#paint9_linear)"/>
|
||||
<path d="M2.14209 174.415L18.5642 230.427L76.3987 214.626L49.4705 174.415H2.14209Z" fill="url(#paint10_linear)"/>
|
||||
<path d="M12.8521 0L110.977 72.3186L95.5747 30.6898L12.8521 0Z" fill="url(#paint11_linear)"/>
|
||||
<path d="M164.425 30.6898L149.023 72.3186L247.148 0L164.425 30.6898Z" fill="url(#paint12_linear)"/>
|
||||
<path d="M73.2367 104.021L57.1206 128.229L114.445 130.761L110.977 72.3186L73.2367 104.021Z" fill="url(#paint13_linear)"/>
|
||||
<path d="M186.763 104.021L149.023 72.3186L145.555 130.761L202.879 128.229L186.763 104.021Z" fill="url(#paint14_linear)"/>
|
||||
<path d="M76.3989 214.626L110.977 197.914L81.193 174.821L76.3989 214.626Z" fill="url(#paint15_linear)"/>
|
||||
<path d="M149.023 197.914L183.602 214.626L178.808 174.821L149.023 197.914Z" fill="url(#paint16_linear)"/>
|
||||
<path d="M76.3989 214.626L81.1929 174.82L49.4707 174.415L76.3989 214.626Z" fill="url(#paint17_linear)"/>
|
||||
<path d="M178.808 174.82L183.602 214.626L210.632 174.415L178.808 174.82Z" fill="url(#paint18_linear)"/>
|
||||
<path d="M202.88 128.229L145.556 130.761L150.86 160.033L159.326 142.409L179.726 151.626L202.88 128.229Z" fill="url(#paint19_linear)"/>
|
||||
<path d="M80.3773 151.626L100.675 142.409L109.141 160.033L114.446 130.761L57.1211 128.229L80.3773 151.626Z" fill="url(#paint20_linear)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M144.229 149.195L150.859 160.033L145.555 130.761L144.229 149.195ZM144.229 149.195L144.229 149.195L144.127 194.571L150.859 160.033L144.229 149.195Z" fill="url(#paint21_linear)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.445 130.761L109.141 160.033L115.873 194.571L115.771 149.195L115.771 149.195L114.445 130.761Z" fill="url(#paint22_linear)"/>
|
||||
<path d="M151.655 229.596L151.778 220.298L149.228 218.07H110.773L108.325 220.298L108.529 229.718L76.3989 214.626L87.619 223.742L110.467 239.441H149.534L172.382 223.742L183.602 214.626L151.655 229.596Z" fill="#C0AD9E" stroke="#C0AD9E" stroke-width="1.42167" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M149.023 197.914L144.127 194.571H115.873L110.977 197.914L108.325 220.298L110.773 218.07H149.227L151.777 220.298L149.023 197.914Z" fill="#161616" stroke="#161616" stroke-width="0.142167" stroke-miterlimit="10" stroke-linejoin="round"/>
|
||||
<path d="M159.325 142.409L150.859 160.033L179.726 151.626L159.325 142.409Z" fill="#161616"/>
|
||||
<path d="M100.675 142.409L109.141 160.033L80.377 151.626L100.675 142.409Z" fill="#161616"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="130" y1="30.6899" x2="130" y2="194.572" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#21FF47"/>
|
||||
<stop offset="1" stop-color="#BCD8F0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear" x1="218.384" y1="104.021" x2="218.384" y2="174.821" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1CAD68"/>
|
||||
<stop offset="1" stop-color="#77BDD4"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear" x1="41.6674" y1="104.021" x2="41.6674" y2="174.821" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1CAD68"/>
|
||||
<stop offset="1" stop-color="#77BDD4"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear" x1="161.926" y1="151.626" x2="161.926" y2="197.914" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7BCBC8"/>
|
||||
<stop offset="1" stop-color="#87B9E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear" x1="98.1246" y1="151.626" x2="98.1246" y2="197.914" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7BCBC8"/>
|
||||
<stop offset="1" stop-color="#87B9E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear" x1="204.512" y1="0" x2="204.512" y2="119.518" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007715"/>
|
||||
<stop offset="1" stop-color="#0A3424"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear" x1="55.4884" y1="0" x2="55.4884" y2="119.518" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007715"/>
|
||||
<stop offset="1" stop-color="#0A3424"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear" x1="69.1567" y1="128.229" x2="69.1567" y2="174.821" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#42C4A0"/>
|
||||
<stop offset="1" stop-color="#51ACC7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear" x1="190.844" y1="128.229" x2="190.844" y2="174.821" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#42C4A0"/>
|
||||
<stop offset="1" stop-color="#51ACC7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear" x1="220.781" y1="174.415" x2="220.781" y2="230.427" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#5BAECB"/>
|
||||
<stop offset="1" stop-color="#4160C1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear" x1="39.2704" y1="174.415" x2="39.2704" y2="230.427" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#5BAECB"/>
|
||||
<stop offset="1" stop-color="#4160C1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear" x1="61.9144" y1="0" x2="61.9144" y2="72.3186" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01EA28"/>
|
||||
<stop offset="1" stop-color="#10D24F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear" x1="198.085" y1="0" x2="198.085" y2="72.3186" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01EA28"/>
|
||||
<stop offset="1" stop-color="#10D24F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear" x1="85.7828" y1="72.3186" x2="85.7828" y2="130.761" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#12DB56"/>
|
||||
<stop offset="1" stop-color="#4CC9A3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint14_linear" x1="174.217" y1="72.3186" x2="174.217" y2="130.761" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#12DB56"/>
|
||||
<stop offset="1" stop-color="#4CC9A3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint15_linear" x1="93.6881" y1="174.821" x2="93.6881" y2="214.626" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#5BAECB"/>
|
||||
<stop offset="1" stop-color="#4160C1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint16_linear" x1="166.313" y1="174.821" x2="166.313" y2="214.626" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#5BAECB"/>
|
||||
<stop offset="1" stop-color="#4160C1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint17_linear" x1="65.3318" y1="174.415" x2="65.3318" y2="214.626" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#32809D"/>
|
||||
<stop offset="1" stop-color="#477DD5"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint18_linear" x1="194.72" y1="174.415" x2="194.72" y2="214.626" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#32809D"/>
|
||||
<stop offset="1" stop-color="#477DD5"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint19_linear" x1="174.218" y1="128.229" x2="174.218" y2="160.033" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#239777"/>
|
||||
<stop offset="1" stop-color="#2C8A8D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint20_linear" x1="85.7833" y1="128.229" x2="85.7833" y2="160.033" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#239777"/>
|
||||
<stop offset="1" stop-color="#2C8A8D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint21_linear" x1="147.493" y1="130.761" x2="147.493" y2="194.571" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#42C4A0"/>
|
||||
<stop offset="1" stop-color="#51ACC7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint22_linear" x1="112.507" y1="130.761" x2="112.507" y2="194.571" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#42C4A0"/>
|
||||
<stop offset="1" stop-color="#51ACC7"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0">
|
||||
<rect width="1533" height="242" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1">
|
||||
<rect width="260" height="239.948" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 17 KiB |
@ -1,148 +0,0 @@
|
||||
<svg width="1533" height="242" viewBox="0 0 1533 242" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<path d="M1157.95 121.694C1151.15 117.195 1143.65 113.996 1136.55 109.997C1131.95 107.398 1127.05 105.098 1123.05 101.799C1116.24 96.2 1117.64 85.2024 1124.75 80.4035C1134.95 73.605 1151.85 77.4042 1153.65 91.3011C1153.65 91.601 1153.95 91.801 1154.25 91.801H1169.66C1170.06 91.801 1170.36 91.501 1170.26 91.1011C1169.46 81.5033 1165.75 73.505 1158.95 68.4062C1152.45 63.5073 1145.05 60.9078 1137.15 60.9078C1096.44 60.9078 1092.74 103.998 1114.64 117.595C1117.14 119.195 1138.65 129.992 1146.25 134.691C1153.85 139.39 1156.25 147.988 1152.95 154.787C1149.95 160.986 1142.15 165.285 1134.35 164.785C1125.85 164.285 1119.24 159.686 1116.94 152.487C1116.54 151.188 1116.34 148.688 1116.34 147.589C1116.34 147.289 1116.04 146.989 1115.74 146.989H1099.04C1098.74 146.989 1098.44 147.289 1098.44 147.589C1098.44 159.686 1101.44 166.384 1109.64 172.483C1117.34 178.282 1125.75 180.681 1134.45 180.681C1157.25 180.681 1169.06 167.784 1171.46 154.387C1173.56 141.29 1169.66 129.493 1157.95 121.694V121.694Z" fill="#24292E"/>
|
||||
<path d="M432.694 63.1091H425.293H417.191C416.891 63.1091 416.691 63.3091 416.591 63.509L402.888 108.698C402.688 109.298 401.888 109.298 401.688 108.698L387.985 63.509C387.885 63.2091 387.685 63.1091 387.384 63.1091H379.283H371.881H361.879C361.579 63.1091 361.279 63.4091 361.279 63.709V179.082C361.279 179.382 361.579 179.682 361.879 179.682H378.583C378.883 179.682 379.183 179.382 379.183 179.082V91.4025C379.183 90.7027 380.183 90.6027 380.383 91.2025L394.186 136.692L395.186 139.891C395.286 140.191 395.486 140.291 395.786 140.291H408.589C408.889 140.291 409.089 140.091 409.189 139.891L410.189 136.692L423.992 91.2025C424.192 90.5027 425.193 90.7027 425.193 91.4025V179.082C425.193 179.382 425.493 179.682 425.793 179.682H442.496C442.796 179.682 443.097 179.382 443.097 179.082V63.709C443.097 63.4091 442.796 63.1091 442.496 63.1091H432.694Z" fill="#24292E"/>
|
||||
<path d="M902.197 63.1091C901.897 63.1091 901.697 63.3091 901.597 63.509L887.894 108.698C887.694 109.298 886.894 109.298 886.694 108.698L872.991 63.509C872.891 63.2091 872.691 63.1091 872.39 63.1091H846.985C846.685 63.1091 846.385 63.4091 846.385 63.709V179.082C846.385 179.382 846.685 179.682 846.985 179.682H863.689C863.989 179.682 864.289 179.382 864.289 179.082V91.4025C864.289 90.7027 865.289 90.6027 865.489 91.2025L879.292 136.692L880.292 139.891C880.392 140.191 880.592 140.291 880.892 140.291H893.695C893.995 140.291 894.195 140.091 894.295 139.891L895.295 136.692L909.098 91.2025C909.299 90.5027 910.299 90.7027 910.299 91.4025V179.082C910.299 179.382 910.599 179.682 910.899 179.682H927.603C927.903 179.682 928.203 179.382 928.203 179.082V63.709C928.203 63.4091 927.903 63.1091 927.603 63.1091H902.197Z" fill="#24292E"/>
|
||||
<path d="M686.749 63.1091H655.642H638.938H607.832C607.532 63.1091 607.231 63.4091 607.231 63.709V78.1056C607.231 78.4055 607.532 78.7055 607.832 78.7055H638.338V179.082C638.338 179.382 638.638 179.682 638.938 179.682H655.642C655.942 179.682 656.242 179.382 656.242 179.082V78.7055H686.749C687.049 78.7055 687.349 78.4055 687.349 78.1056V63.709C687.349 63.4091 687.149 63.1091 686.749 63.1091V63.1091Z" fill="#24292E"/>
|
||||
<path d="M785.272 179.681H800.475C800.875 179.681 801.175 179.281 801.075 178.881L769.668 63.1082C769.568 62.8082 769.368 62.7083 769.068 62.7083H763.267H753.065H747.264C746.964 62.7083 746.763 62.9082 746.663 63.1082L715.257 178.881C715.157 179.281 715.457 179.681 715.857 179.681H731.06C731.36 179.681 731.56 179.481 731.66 179.281L740.762 145.589C740.862 145.289 741.062 145.189 741.362 145.189H774.97C775.27 145.189 775.47 145.389 775.57 145.589L784.672 179.281C784.772 179.481 785.072 179.681 785.272 179.681V179.681ZM745.363 128.693L757.566 83.6034C757.766 83.0035 758.566 83.0035 758.766 83.6034L770.969 128.693C771.069 129.093 770.769 129.493 770.369 129.493H745.963C745.563 129.493 745.263 129.093 745.363 128.693V128.693Z" fill="#24292E"/>
|
||||
<path d="M1044.53 179.681H1059.73C1060.13 179.681 1060.43 179.281 1060.33 178.881L1028.93 63.1082C1028.83 62.8082 1028.63 62.7083 1028.33 62.7083H1022.52H1012.32H1006.52C1006.22 62.7083 1006.02 62.9082 1005.92 63.1082L974.514 178.881C974.414 179.281 974.714 179.681 975.114 179.681H990.317C990.618 179.681 990.818 179.481 990.918 179.281L1000.02 145.589C1000.12 145.289 1000.32 145.189 1000.62 145.189H1034.23C1034.53 145.189 1034.73 145.389 1034.83 145.589L1043.93 179.281C1044.03 179.481 1044.23 179.681 1044.53 179.681V179.681ZM1004.62 128.693L1016.82 83.6034C1017.02 83.0035 1017.82 83.0035 1018.02 83.6034L1030.23 128.693C1030.33 129.093 1030.03 129.493 1029.63 129.493H1005.22C1004.82 129.493 1004.52 129.093 1004.62 128.693V128.693Z" fill="#24292E"/>
|
||||
<path d="M510.909 162.584V126.793C510.909 126.493 511.209 126.193 511.509 126.193H556.019C556.319 126.193 556.619 125.893 556.619 125.593V111.196C556.619 110.896 556.319 110.596 556.019 110.596H511.509C511.209 110.596 510.909 110.296 510.909 109.997V79.4037C510.909 79.1038 511.209 78.8039 511.509 78.8039H562.121C562.421 78.8039 562.721 78.5039 562.721 78.204V63.8074C562.721 63.5074 562.421 63.2075 562.121 63.2075H510.909H493.606C493.305 63.2075 493.005 63.5074 493.005 63.8074V78.8039V110.696V126.293V163.284V179.08C493.005 179.38 493.305 179.68 493.606 179.68H510.909H564.221C564.521 179.68 564.821 179.38 564.821 179.08V163.884C564.821 163.584 564.521 163.284 564.221 163.284H511.409C511.109 163.184 510.909 162.984 510.909 162.584Z" fill="#24292E"/>
|
||||
<path d="M1310.58 178.681L1252.77 118.995C1252.57 118.795 1252.57 118.395 1252.77 118.195L1304.78 64.2074C1305.18 63.8075 1304.88 63.2076 1304.38 63.2076H1283.08C1282.88 63.2076 1282.78 63.3076 1282.68 63.4076L1238.57 109.197C1238.17 109.597 1237.57 109.297 1237.57 108.797V63.8075C1237.57 63.5076 1237.27 63.2076 1236.97 63.2076H1220.26C1219.96 63.2076 1219.66 63.5076 1219.66 63.8075V179.181C1219.66 179.48 1219.96 179.78 1220.26 179.78H1236.97C1237.27 179.78 1237.57 179.48 1237.57 179.181V128.392C1237.57 127.893 1238.27 127.593 1238.57 127.993L1288.58 179.58C1288.68 179.68 1288.88 179.78 1288.98 179.78H1310.28C1310.68 179.68 1310.98 178.981 1310.58 178.681V178.681Z" fill="#24292E"/>
|
||||
<path d="M1512.38 110.091H1359.98C1348.59 110.091 1339.36 100.86 1339.36 89.4845V44.6061C1339.36 33.231 1348.59 24 1359.98 24H1512.38C1523.76 24 1533 33.231 1533 44.6061V89.4845C1533 100.876 1523.76 110.091 1512.38 110.091Z" fill="#F66A0A"/>
|
||||
<path d="M1371.47 48.027H1386.48C1388.08 48.027 1389.62 48.3377 1391.06 48.9592C1392.5 49.5807 1393.76 50.4149 1394.86 51.478C1395.94 52.5411 1396.79 53.8004 1397.41 55.2397C1398.04 56.679 1398.35 58.2164 1398.35 59.8683C1398.35 61.2912 1398.09 62.567 1397.56 63.7118C1397.04 64.8567 1396.35 65.8544 1395.48 66.7213C1397.17 67.5881 1398.53 68.8311 1399.59 70.483C1400.64 72.1349 1401.17 74.0158 1401.17 76.1583C1401.17 77.8102 1400.85 79.3313 1400.23 80.7542C1399.61 82.1771 1398.76 83.4202 1397.68 84.4833C1396.6 85.5464 1395.3 86.3805 1393.83 86.9856C1392.35 87.5908 1390.75 87.8852 1389.03 87.8852H1371.49V48.027H1371.47ZM1385.46 64.1371C1386.66 64.1371 1387.65 63.7609 1388.44 62.9922C1389.23 62.2235 1389.62 61.3076 1389.62 60.2118C1389.62 59.1323 1389.23 58.1837 1388.44 57.3823C1387.65 56.5809 1386.66 56.172 1385.46 56.172H1380.4V64.1371H1385.46V64.1371ZM1388.28 79.6748C1389.47 79.6748 1390.47 79.2986 1391.26 78.5299C1392.04 77.7612 1392.44 76.8126 1392.44 75.7004C1392.44 74.6209 1392.03 73.6723 1391.22 72.8873C1390.42 72.1022 1389.42 71.7097 1388.21 71.7097H1380.4V79.6748H1388.28Z" fill="white"/>
|
||||
<path d="M1407.16 48.0112H1432.45V56.5488H1416.08V63.6798H1429.07V72.2173H1416.08V79.3483H1432.45V87.8858H1407.16V48.0112Z" fill="white"/>
|
||||
<path d="M1446.43 56.5311H1436.26V47.9935H1465.71V56.5311H1455.42V87.8518H1446.43V56.5311Z" fill="white"/>
|
||||
<path d="M1479.92 48.0112H1488.01L1505.09 87.8531H1495.76L1492.22 79.43H1475.69L1472.16 87.8531H1462.82L1479.92 48.0112ZM1478.92 71.6939H1488.98L1483.98 59.7381L1478.92 71.6939Z" fill="white"/>
|
||||
<g clip-path="url(#clip1)">
|
||||
<path d="M145.555 130.761L149.839 72.3187L167.281 30.6899H92.7188L110.161 72.3187L114.445 130.761L115.771 149.195L115.873 194.572H144.127L144.229 149.195L145.555 130.761Z" fill="url(#paint0_linear)"/>
|
||||
<path d="M240.11 119.518L186.764 104.021L202.88 128.229L178.808 174.821L210.632 174.416H257.96L240.11 119.518Z" fill="url(#paint1_linear)"/>
|
||||
<path d="M73.2366 104.021L19.8902 119.518L2.14209 174.416H49.4705L81.1927 174.821L57.1205 128.229L73.2366 104.021Z" fill="url(#paint2_linear)"/>
|
||||
<path d="M150.859 160.033L144.127 194.572L149.023 197.914L178.807 174.821L179.725 151.626L150.859 160.033Z" fill="url(#paint3_linear)"/>
|
||||
<path d="M80.3765 151.626L81.1925 174.821L110.977 197.914L115.873 194.572L109.141 160.033L80.3765 151.626Z" fill="url(#paint4_linear)"/>
|
||||
<path d="M251.432 79.7125L260 38.3876L247.148 0L149.023 72.3186L185.642 104.933L240.11 119.518L251.84 105.844L246.74 102.198L254.9 94.8042L248.678 89.9425L256.838 83.764L251.432 79.7125Z" fill="url(#paint5_linear)"/>
|
||||
<path d="M0 38.3876L8.67007 79.7125L3.16202 83.764L11.3221 89.9425L5.10004 94.8042L13.2601 102.198L8.16006 105.844L19.8902 119.518L74.4606 104.933L110.977 72.3186L12.8521 0L0 38.3876Z" fill="url(#paint6_linear)"/>
|
||||
<path d="M57.1206 128.229L80.3768 151.626L81.1928 174.821L57.1206 128.229Z" fill="url(#paint7_linear)"/>
|
||||
<path d="M202.88 128.229L178.808 174.821L179.726 151.626L202.88 128.229Z" fill="url(#paint8_linear)"/>
|
||||
<path d="M183.602 214.626L149.023 197.914L151.777 220.298L151.471 229.718L183.602 214.626Z" fill="#D7C1B3" stroke="#D7C1B3" stroke-width="1.42167" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M76.3989 214.626L108.529 229.718L108.325 220.298L110.977 197.914L76.3989 214.626Z" fill="#D7C1B3" stroke="#D7C1B3" stroke-width="1.42167" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M210.632 174.415L183.602 214.626L241.436 230.427L257.96 174.415H210.632Z" fill="url(#paint9_linear)"/>
|
||||
<path d="M2.14209 174.415L18.5642 230.427L76.3987 214.626L49.4705 174.415H2.14209Z" fill="url(#paint10_linear)"/>
|
||||
<path d="M12.8521 0L110.977 72.3186L95.5747 30.6898L12.8521 0Z" fill="url(#paint11_linear)"/>
|
||||
<path d="M164.425 30.6898L149.023 72.3186L247.148 0L164.425 30.6898Z" fill="url(#paint12_linear)"/>
|
||||
<path d="M73.2367 104.021L57.1206 128.229L114.445 130.761L110.977 72.3186L73.2367 104.021Z" fill="url(#paint13_linear)"/>
|
||||
<path d="M186.763 104.021L149.023 72.3186L145.555 130.761L202.879 128.229L186.763 104.021Z" fill="url(#paint14_linear)"/>
|
||||
<path d="M76.3989 214.626L110.977 197.914L81.193 174.821L76.3989 214.626Z" fill="url(#paint15_linear)"/>
|
||||
<path d="M149.023 197.914L183.602 214.626L178.808 174.821L149.023 197.914Z" fill="url(#paint16_linear)"/>
|
||||
<path d="M76.3989 214.626L81.1929 174.82L49.4707 174.415L76.3989 214.626Z" fill="url(#paint17_linear)"/>
|
||||
<path d="M178.808 174.82L183.602 214.626L210.632 174.415L178.808 174.82Z" fill="url(#paint18_linear)"/>
|
||||
<path d="M202.88 128.229L145.556 130.761L150.86 160.033L159.326 142.409L179.726 151.626L202.88 128.229Z" fill="url(#paint19_linear)"/>
|
||||
<path d="M80.3773 151.626L100.675 142.409L109.141 160.033L114.446 130.761L57.1211 128.229L80.3773 151.626Z" fill="url(#paint20_linear)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M144.229 149.195L150.859 160.033L145.555 130.761L144.229 149.195ZM144.229 149.195L144.229 149.195L144.127 194.571L150.859 160.033L144.229 149.195Z" fill="url(#paint21_linear)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.445 130.761L109.141 160.033L115.873 194.571L115.771 149.195L115.771 149.195L114.445 130.761Z" fill="url(#paint22_linear)"/>
|
||||
<path d="M151.655 229.596L151.778 220.298L149.228 218.07H110.773L108.325 220.298L108.529 229.718L76.3989 214.626L87.619 223.742L110.467 239.441H149.534L172.382 223.742L183.602 214.626L151.655 229.596Z" fill="#C0AD9E" stroke="#C0AD9E" stroke-width="1.42167" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M149.023 197.914L144.127 194.571H115.873L110.977 197.914L108.325 220.298L110.773 218.07H149.227L151.777 220.298L149.023 197.914Z" fill="#161616" stroke="#161616" stroke-width="0.142167" stroke-miterlimit="10" stroke-linejoin="round"/>
|
||||
<path d="M159.325 142.409L150.859 160.033L179.726 151.626L159.325 142.409Z" fill="#161616"/>
|
||||
<path d="M100.675 142.409L109.141 160.033L80.377 151.626L100.675 142.409Z" fill="#161616"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="130" y1="30.6899" x2="130" y2="194.572" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#21FF47"/>
|
||||
<stop offset="1" stop-color="#BCD8F0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear" x1="218.384" y1="104.021" x2="218.384" y2="174.821" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1CAD68"/>
|
||||
<stop offset="1" stop-color="#77BDD4"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear" x1="41.6674" y1="104.021" x2="41.6674" y2="174.821" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1CAD68"/>
|
||||
<stop offset="1" stop-color="#77BDD4"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear" x1="161.926" y1="151.626" x2="161.926" y2="197.914" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7BCBC8"/>
|
||||
<stop offset="1" stop-color="#87B9E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear" x1="98.1246" y1="151.626" x2="98.1246" y2="197.914" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7BCBC8"/>
|
||||
<stop offset="1" stop-color="#87B9E6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear" x1="204.512" y1="0" x2="204.512" y2="119.518" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007715"/>
|
||||
<stop offset="1" stop-color="#0A3424"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear" x1="55.4884" y1="0" x2="55.4884" y2="119.518" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#007715"/>
|
||||
<stop offset="1" stop-color="#0A3424"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear" x1="69.1567" y1="128.229" x2="69.1567" y2="174.821" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#42C4A0"/>
|
||||
<stop offset="1" stop-color="#51ACC7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear" x1="190.844" y1="128.229" x2="190.844" y2="174.821" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#42C4A0"/>
|
||||
<stop offset="1" stop-color="#51ACC7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear" x1="220.781" y1="174.415" x2="220.781" y2="230.427" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#5BAECB"/>
|
||||
<stop offset="1" stop-color="#4160C1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear" x1="39.2704" y1="174.415" x2="39.2704" y2="230.427" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#5BAECB"/>
|
||||
<stop offset="1" stop-color="#4160C1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear" x1="61.9144" y1="0" x2="61.9144" y2="72.3186" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01EA28"/>
|
||||
<stop offset="1" stop-color="#10D24F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear" x1="198.085" y1="0" x2="198.085" y2="72.3186" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#01EA28"/>
|
||||
<stop offset="1" stop-color="#10D24F"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear" x1="85.7828" y1="72.3186" x2="85.7828" y2="130.761" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#12DB56"/>
|
||||
<stop offset="1" stop-color="#4CC9A3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint14_linear" x1="174.217" y1="72.3186" x2="174.217" y2="130.761" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#12DB56"/>
|
||||
<stop offset="1" stop-color="#4CC9A3"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint15_linear" x1="93.6881" y1="174.821" x2="93.6881" y2="214.626" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#5BAECB"/>
|
||||
<stop offset="1" stop-color="#4160C1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint16_linear" x1="166.313" y1="174.821" x2="166.313" y2="214.626" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#5BAECB"/>
|
||||
<stop offset="1" stop-color="#4160C1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint17_linear" x1="65.3318" y1="174.415" x2="65.3318" y2="214.626" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#32809D"/>
|
||||
<stop offset="1" stop-color="#477DD5"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint18_linear" x1="194.72" y1="174.415" x2="194.72" y2="214.626" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#32809D"/>
|
||||
<stop offset="1" stop-color="#477DD5"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint19_linear" x1="174.218" y1="128.229" x2="174.218" y2="160.033" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#239777"/>
|
||||
<stop offset="1" stop-color="#2C8A8D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint20_linear" x1="85.7833" y1="128.229" x2="85.7833" y2="160.033" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#239777"/>
|
||||
<stop offset="1" stop-color="#2C8A8D"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint21_linear" x1="147.493" y1="130.761" x2="147.493" y2="194.571" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#42C4A0"/>
|
||||
<stop offset="1" stop-color="#51ACC7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint22_linear" x1="112.507" y1="130.761" x2="112.507" y2="194.571" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#42C4A0"/>
|
||||
<stop offset="1" stop-color="#51ACC7"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0">
|
||||
<rect width="1533" height="242" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1">
|
||||
<rect width="260" height="239.948" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 17 KiB |
@ -1,116 +0,0 @@
|
||||
<svg width="1532" height="247" viewBox="0 0 1532 247" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<path d="M148.354 134.603L152.72 74.4431L170.498 31.5908H94.5015L112.279 74.4431L116.645 134.603L117.997 153.579L118.101 200.289H146.898L147.002 153.579L148.354 134.603Z" fill="url(#paint0_linear)"/>
|
||||
<path d="M244.727 123.029L190.355 107.077L206.781 131.996L182.246 179.957L214.682 179.54H262.92L244.727 123.029Z" fill="url(#paint1_linear)"/>
|
||||
<path d="M74.6449 107.077L20.2726 123.029L2.18311 179.54H50.4216L82.7539 179.957L58.2188 131.996L74.6449 107.077Z" fill="url(#paint2_linear)"/>
|
||||
<path d="M153.76 164.735L146.899 200.289L151.889 203.729L182.246 179.957L183.182 156.081L153.76 164.735Z" fill="#ACACAC"/>
|
||||
<path d="M81.9224 156.081L82.7541 179.957L113.111 203.729L118.101 200.289L111.24 164.735L81.9224 156.081Z" fill="#ACACAC"/>
|
||||
<path d="M256.267 82.0553L265 39.5158L251.9 0L151.889 74.4441L189.211 108.017L244.727 123.031L256.683 108.955L251.485 105.202L259.802 97.5906L253.46 92.5859L261.777 86.2258L256.267 82.0553Z" fill="url(#paint3_linear)"/>
|
||||
<path d="M8.73266 82.0553L-0.000171178 39.5158L13.0991 0L113.111 74.4441L75.7884 108.017L20.2725 123.031L8.31682 108.955L13.5149 105.202L5.19795 97.5906L11.5396 92.5859L3.22265 86.2258L8.73266 82.0553Z" fill="url(#paint4_linear)"/>
|
||||
<path d="M58.2188 131.997L81.9222 156.082L82.7539 179.958L58.2188 131.997Z" fill="#8D8D8D"/>
|
||||
<path d="M206.781 131.997L182.246 179.958L183.181 156.082L206.781 131.997Z" fill="#8D8D8D"/>
|
||||
<path d="M187.132 220.935L151.889 203.731L154.696 226.774L154.384 236.47L187.132 220.935Z" fill="#FF9F5A"/>
|
||||
<path d="M77.8677 220.934L110.616 236.469L110.408 226.773L113.111 203.73L77.8677 220.934Z" fill="#FF9F5A"/>
|
||||
<path d="M214.682 179.542L187.132 220.935L246.079 237.2L262.921 179.542H214.682Z" fill="url(#paint5_linear)"/>
|
||||
<path d="M2.18311 179.542L18.921 237.2L77.8677 220.935L50.4216 179.542H2.18311Z" fill="url(#paint6_linear)"/>
|
||||
<path d="M13.0991 0L113.111 74.4441L97.4126 31.5918L13.0991 0Z" fill="#757575"/>
|
||||
<path d="M167.587 31.5918L151.889 74.4441L251.9 0L167.587 31.5918Z" fill="#757575"/>
|
||||
<path d="M74.6448 107.079L58.2188 131.998L116.646 134.604L113.111 74.4443L74.6448 107.079Z" fill="url(#paint7_linear)"/>
|
||||
<path d="M190.355 107.079L151.889 74.4443L148.354 134.604L206.781 131.998L190.355 107.079Z" fill="url(#paint8_linear)"/>
|
||||
<path d="M77.8677 220.934L113.111 203.731L82.7539 179.959L77.8677 220.934Z" fill="url(#paint9_linear)"/>
|
||||
<path d="M151.889 203.731L187.132 220.934L182.246 179.959L151.889 203.731Z" fill="url(#paint10_linear)"/>
|
||||
<path d="M182.246 179.958L187.132 220.934L214.682 179.541L182.246 179.958Z" fill="url(#paint11_linear)"/>
|
||||
<path d="M82.7539 179.958L77.8677 220.934L50.3177 179.541L82.7539 179.958Z" fill="url(#paint12_linear)"/>
|
||||
<path d="M206.781 131.997L148.354 134.604L153.761 164.736L162.389 146.594L183.182 156.082L206.781 131.997Z" fill="#666666"/>
|
||||
<path d="M81.9222 156.082L102.611 146.594L111.24 164.736L116.646 134.604L58.2188 131.997L81.9222 156.082Z" fill="#666666"/>
|
||||
<path d="M153.76 164.736L147.002 153.579L148.354 134.604L153.76 164.736Z" fill="#8D8D8D"/>
|
||||
<path d="M111.24 164.736L116.646 134.604L117.997 153.579L111.24 164.736Z" fill="#8D8D8D"/>
|
||||
<path d="M147.003 153.58L153.76 164.736L146.899 200.29L147.003 153.58Z" fill="#8D8D8D"/>
|
||||
<path d="M117.997 153.58L118.101 200.29L111.24 164.736L117.997 153.58Z" fill="#8D8D8D"/>
|
||||
<path d="M154.571 236.345L154.696 226.773L152.097 224.48H112.903L110.408 226.773L110.616 236.47L77.8677 220.935L89.3035 230.318L112.591 246.479H152.409L175.696 230.318L187.132 220.935L154.571 236.345Z" fill="#DF7554"/>
|
||||
<path d="M151.889 203.731L146.899 200.29H118.101L113.111 203.731L110.408 226.773L112.903 224.479H152.097L154.696 226.773L151.889 203.731Z" fill="#161616" stroke="#161616" stroke-width="0.0657594" stroke-miterlimit="10" stroke-linejoin="round"/>
|
||||
<path d="M162.389 146.594L153.76 164.736L183.182 156.082L162.389 146.594Z" fill="#161616"/>
|
||||
<path d="M102.611 146.594L111.24 164.736L81.9224 156.082L102.611 146.594Z" fill="#161616"/>
|
||||
<path d="M256.683 108.955L251.485 105.202L259.802 97.5905L253.46 92.5859L261.777 86.2258L256.267 82.0553L265 39.5158L251.901 0L167.587 31.5918H97.4127L13.0993 0L0 39.5158L8.8368 82.0553L3.22283 86.2258L11.5398 92.5859L5.19812 97.5905L13.5151 105.202L8.31699 108.955L20.2727 123.031L2.18321 179.542L18.9211 237.199L77.8678 220.934L113.111 203.731L110.231 227.044L112.903 224.583L152.097 224.479L154.696 226.773L151.889 203.731L187.132 220.934L246.079 237.199L262.921 179.542L244.727 123.031L256.683 108.955Z" fill="url(#paint13_linear)" fill-opacity="0.1" style="mix-blend-mode:color-dodge"/>
|
||||
<path d="M256.683 108.955L251.485 105.202L259.802 97.5905L253.46 92.5859L261.777 86.2258L256.267 82.0553L265 39.5158L251.901 0L167.587 31.5918H97.4127L13.0993 0L0 39.5158L8.8368 82.0553L3.22283 86.2258L11.5398 92.5859L5.19812 97.5905L13.5151 105.202L8.31699 108.955L20.2727 123.031L2.18321 179.542L18.9211 237.199L77.8678 220.934L113.111 203.731L117.997 200.186H125.275H139.829H147.107L151.889 203.731L187.132 220.934L246.079 237.199L262.921 179.542L244.727 123.031L256.683 108.955Z" fill="url(#paint14_radial)" style="mix-blend-mode:overlay"/>
|
||||
</g>
|
||||
<path d="M1166.17 120.732C1159.42 116.127 1151.72 112.742 1144.35 108.759C1139.75 106.295 1134.84 103.855 1130.83 100.47C1124.08 94.944 1125.3 83.5933 1132.67 78.6647C1143.11 71.9189 1160.02 75.603 1161.86 89.7167C1161.86 90.0154 1162.16 90.339 1162.48 90.339H1178.15C1178.44 90.339 1178.77 90.0403 1178.77 89.7167C1177.85 79.8844 1174.16 71.9189 1167.41 66.6916C1160.94 61.763 1153.27 59 1145.27 59C1104.11 59 1100.42 102.611 1122.54 116.426C1125 117.969 1146.82 129.021 1154.49 133.626C1162.16 138.53 1164.62 147.143 1161.24 153.888C1158.17 160.335 1150.18 164.318 1142.48 164.019C1133.89 163.721 1127.12 158.792 1124.98 151.424C1124.68 150.204 1124.36 147.74 1124.36 146.52C1124.36 146.222 1124.06 145.898 1123.73 145.898H1106.85C1106.55 145.898 1106.23 146.197 1106.23 146.52C1106.23 158.792 1109.29 165.563 1117.58 171.711C1125.25 177.536 1133.87 180 1142.78 180C1165.82 180 1177.8 166.807 1180.26 153.291C1182.13 140.372 1178.14 128.399 1166.17 120.732Z" fill="white"/>
|
||||
<path d="M433.192 61.4634H425.522H417.229C416.931 61.4634 416.607 61.7621 416.607 61.7621L402.786 107.514C402.487 108.136 401.865 108.136 401.566 107.514L388.044 61.7621C388.044 61.4634 387.745 61.4634 387.421 61.4634H379.129H371.758H361.623C361.299 61.4634 361 61.7621 361 62.0608V178.754C361 179.053 361.299 179.377 361.623 179.377H378.506C378.805 179.377 379.129 179.078 379.129 178.754V90.0145C379.129 89.3922 380.05 89.0935 380.349 89.7158L394.469 135.766L395.39 138.828C395.39 139.126 395.689 139.126 396.013 139.126H408.912C409.211 139.126 409.535 138.828 409.535 138.828L410.456 135.766L424.576 89.7158C424.576 89.0935 425.497 89.4171 425.497 90.0145V178.754C425.497 179.053 425.796 179.377 426.12 179.377H443.003C443.302 179.377 443.626 179.078 443.626 178.754V62.0608C443.626 61.7621 443.327 61.4385 443.003 61.4385L433.192 61.4634Z" fill="white"/>
|
||||
<path d="M907.506 61.4634C907.207 61.4634 906.883 61.7621 906.883 61.7621L893.063 107.514C892.764 108.136 892.141 108.136 891.842 107.514L878.022 61.7621C878.022 61.4634 877.723 61.4634 877.399 61.4634H851.6C851.301 61.4634 850.978 61.7621 850.978 62.0857V178.779C850.978 179.078 851.276 179.402 851.6 179.402H868.484C868.783 179.402 869.106 179.103 869.106 178.779V90.0145C869.106 89.3922 870.028 89.0935 870.327 89.7158L884.446 135.766L885.368 138.828C885.368 139.126 885.667 139.126 885.99 139.126H898.89C899.189 139.126 899.512 138.828 899.512 138.828L900.434 135.766L914.553 89.7158C914.852 89.0935 915.773 89.0935 915.773 90.0145V178.754C915.773 179.053 916.072 179.377 916.396 179.377H933.28C933.579 179.377 933.902 179.078 933.902 178.754V62.0608C933.902 61.7621 933.604 61.4385 933.28 61.4385L907.506 61.4634Z" fill="white"/>
|
||||
<path d="M690.01 61.4648H658.359H641.475H610.148C609.849 61.4648 609.525 61.7635 609.525 62.0871V76.5245C609.525 76.8232 609.824 77.1468 610.148 77.1468H640.877V178.482C640.877 178.781 641.176 179.104 641.5 179.104H658.384C658.683 179.104 659.006 178.806 659.006 178.482V77.1219H689.711C690.01 77.1219 690.333 76.8232 690.333 76.4996V62.0623C690.632 61.7635 690.309 61.4648 690.01 61.4648Z" fill="white"/>
|
||||
<path d="M789.545 179.377H804.91C805.208 179.377 805.532 179.078 805.532 178.456L773.582 61.4637C773.582 61.165 773.284 61.165 772.96 61.165H767.133H756.699H751.17C750.872 61.165 750.548 61.4637 750.548 61.4637L718.897 178.456C718.897 178.755 719.196 179.377 719.52 179.377H734.884C735.183 179.377 735.507 179.078 735.507 179.078L744.721 145.001C744.721 144.703 745.02 144.703 745.343 144.703H779.435C779.733 144.703 780.057 145.001 780.057 145.001L789.271 179.078C788.922 179.054 789.246 179.377 789.545 179.377ZM749.004 127.776L761.281 82.3232C761.58 81.7009 762.202 81.7009 762.501 82.3232L774.778 127.776C774.778 128.075 774.479 128.697 774.155 128.697H749.577C749.303 128.398 749.004 128.1 749.004 127.776Z" fill="white"/>
|
||||
<path d="M1051.59 179.377H1066.96C1067.26 179.377 1067.58 179.078 1067.58 178.456L1035.63 61.4637C1035.63 61.165 1035.33 61.165 1035.01 61.165H1029.18H1018.75H1012.92C1012.62 61.165 1012.3 61.4637 1012.3 61.4637L980.646 178.456C980.646 178.755 980.944 179.377 981.268 179.377H996.633C996.932 179.377 997.255 179.078 997.255 179.078L1006.47 145.001C1006.47 144.703 1006.77 144.703 1007.09 144.703H1041.18C1041.48 144.703 1041.81 145.001 1041.81 145.001L1051.02 179.078C1050.97 179.054 1051.27 179.377 1051.59 179.377ZM1011.03 127.776L1023.3 82.3232C1023.6 81.7009 1024.22 81.7009 1024.52 82.3232L1036.8 127.776C1036.8 128.075 1036.5 128.697 1036.18 128.697H1011.6C1011.35 128.398 1011.03 128.1 1011.03 127.776Z" fill="white"/>
|
||||
<path d="M512.132 162.176V125.934C512.132 125.635 512.431 125.311 512.755 125.311H557.604C557.903 125.311 558.227 125.013 558.227 124.689V110.252C558.227 109.953 557.928 109.629 557.604 109.629H512.755C512.456 109.629 512.132 109.331 512.132 109.007V77.7427C512.132 77.444 512.431 77.1204 512.755 77.1204H563.755C564.054 77.1204 564.377 76.8217 564.377 76.4981V62.0608C564.377 61.7621 564.079 61.4385 563.755 61.4385H512.132H494.626C494.327 61.4385 494.003 61.7372 494.003 62.0608V77.0955V109.331V124.988V162.45V178.406C494.003 178.705 494.302 179.028 494.626 179.028H512.132H566.195C566.494 179.028 566.818 178.73 566.818 178.406V163.048C566.818 162.749 566.519 162.425 566.195 162.425H512.755C512.456 162.799 512.132 162.475 512.132 162.176Z" fill="white"/>
|
||||
<path d="M1320.39 178.132L1262.02 117.645C1261.72 117.346 1261.72 117.022 1262.02 116.724L1314.54 62.3844C1314.83 62.0857 1314.54 61.4634 1314.24 61.4634H1292.72C1292.42 61.4634 1292.42 61.4634 1292.42 61.7621L1247.87 108.136C1247.57 108.435 1246.95 108.136 1246.95 107.837V62.0608C1246.95 61.7621 1246.65 61.4385 1246.33 61.4385H1229.44C1229.15 61.4385 1228.82 61.7372 1228.82 62.0608V178.754C1228.82 179.053 1229.12 179.377 1229.44 179.377H1246.33C1246.63 179.377 1246.95 179.078 1246.95 178.754V127.178C1246.95 126.556 1247.57 126.257 1247.87 126.88L1298.25 179.078L1298.55 179.377H1320.06C1320.69 179.377 1320.99 178.754 1320.39 178.132Z" fill="white"/>
|
||||
<rect x="1338" y="27" width="194" height="84" rx="12" fill="#24292E"/>
|
||||
<path d="M1358 50.6376H1380.89V58.7139H1366.33V65.515H1377.7V73.5913H1366.33V88.3624H1358V50.6376Z" fill="white"/>
|
||||
<path d="M1386.55 50.6376H1394.87V80.2861H1410.28V88.3624H1386.55V50.6376Z" fill="white"/>
|
||||
<path d="M1427.39 50.6376H1434.94L1450.86 88.3624H1442.17L1438.87 80.3924H1423.46L1420.16 88.3624H1411.47L1427.39 50.6376ZM1426.45 73.0599H1435.83L1431.16 61.7425L1426.45 73.0599Z" fill="white"/>
|
||||
<path d="M1464.82 89C1461.85 89 1459.18 88.4155 1456.81 87.2466C1454.43 86.0422 1452.51 84.3774 1451.04 82.252L1457.43 76.7793C1458.34 78.1253 1459.51 79.188 1460.94 79.9673C1462.38 80.7112 1463.77 81.0831 1465.13 81.0831C1466.53 81.0831 1467.63 80.7997 1468.43 80.233C1469.24 79.6308 1469.64 78.8692 1469.64 77.9482C1469.64 76.9918 1469.24 76.1594 1468.43 75.451C1467.67 74.7425 1466.34 74.0695 1464.45 73.4319L1461.83 72.5286C1458.8 71.5014 1456.47 70.0845 1454.87 68.2779C1453.26 66.436 1452.46 64.2221 1452.46 61.6362C1452.46 59.7943 1452.77 58.1649 1453.4 56.748C1454.06 55.2956 1454.95 54.0736 1456.07 53.0817C1457.22 52.0899 1458.59 51.3283 1460.16 50.797C1461.73 50.2657 1463.44 50 1465.29 50C1467.56 50 1469.69 50.3896 1471.68 51.1689C1473.67 51.9482 1475.54 53.2943 1477.29 55.2071L1471.84 61.0518C1470.97 59.9891 1469.97 59.2098 1468.85 58.7139C1467.74 58.1826 1466.58 57.9169 1465.4 57.9169C1464.84 57.9169 1464.28 57.97 1463.72 58.0763C1463.2 58.1826 1462.73 58.3597 1462.31 58.6076C1461.89 58.8556 1461.54 59.1567 1461.26 59.5109C1461.01 59.8651 1460.89 60.2902 1460.89 60.7861C1460.89 61.8134 1461.35 62.6281 1462.25 63.2302C1463.2 63.797 1464.66 64.4346 1466.65 65.1431L1469.27 66.0995C1471.96 67.0913 1474.11 68.5082 1475.72 70.3501C1477.36 72.1921 1478.16 74.53 1478.13 77.3638C1478.13 79.064 1477.79 80.6403 1477.13 82.0926C1476.47 83.5095 1475.54 84.7316 1474.35 85.7589C1473.2 86.7861 1471.81 87.5831 1470.16 88.1499C1468.56 88.7166 1466.78 89 1464.82 89Z" fill="white"/>
|
||||
<path d="M1492.17 71.4659V88.3624H1483.9V50.6376H1492.17V66.4183L1504.8 50.6376H1515.01L1500.35 68.7561L1518 88.3624H1507.31L1492.17 71.4659Z" fill="white"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="132.5" y1="31.5908" x2="132.5" y2="200.289" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8F8F8F"/>
|
||||
<stop offset="1" stop-color="#AEAEAE"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear" x1="222.583" y1="107.077" x2="222.583" y2="179.957" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#696969"/>
|
||||
<stop offset="1" stop-color="#A6A6A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear" x1="42.4685" y1="107.077" x2="42.4685" y2="179.957" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#696969"/>
|
||||
<stop offset="1" stop-color="#A6A6A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear" x1="184.533" y1="102.178" x2="279.867" y2="27.8973" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1B1B1B"/>
|
||||
<stop offset="1" stop-color="#565656"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear" x1="80.4668" y1="102.178" x2="-14.8672" y2="27.8973" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1B1B1B"/>
|
||||
<stop offset="1" stop-color="#565656"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear" x1="225.027" y1="179.542" x2="225.027" y2="237.2" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#787878"/>
|
||||
<stop offset="1" stop-color="#5E5E5E"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear" x1="40.0254" y1="179.542" x2="40.0254" y2="237.2" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#787878"/>
|
||||
<stop offset="1" stop-color="#5E5E5E"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear" x1="87.4322" y1="74.4443" x2="87.4322" y2="134.604" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7A7A7A"/>
|
||||
<stop offset="1" stop-color="#949494"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear" x1="177.568" y1="74.4443" x2="177.568" y2="134.604" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7A7A7A"/>
|
||||
<stop offset="1" stop-color="#949494"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear" x1="95.4893" y1="245.645" x2="95.4893" y2="-25.2885" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7A7C7D"/>
|
||||
<stop offset="1" stop-color="#CECECF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear" x1="169.51" y1="245.645" x2="169.51" y2="-25.2885" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7A7C7D"/>
|
||||
<stop offset="1" stop-color="#CECECF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear" x1="198.464" y1="126.784" x2="198.464" y2="234.065" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3E3E3E"/>
|
||||
<stop offset="1" stop-color="#616161"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear" x1="66.5358" y1="126.784" x2="66.5358" y2="234.065" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3E3E3E"/>
|
||||
<stop offset="1" stop-color="#616161"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear" x1="132.032" y1="31.279" x2="132.032" y2="258.573" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF60DC"/>
|
||||
<stop offset="1" stop-color="#6B71FF"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint14_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(132.032 26.5872) rotate(90) scale(218.953 244.615)">
|
||||
<stop stop-color="#FF60DC"/>
|
||||
<stop offset="1" stop-color="#6B71FF"/>
|
||||
</radialGradient>
|
||||
<clipPath id="clip0">
|
||||
<rect width="265" height="247" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 16 KiB |
@ -1,116 +0,0 @@
|
||||
<svg width="1532" height="247" viewBox="0 0 1532 247" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0)">
|
||||
<path d="M148.354 134.603L152.72 74.4431L170.498 31.5908H94.5015L112.279 74.4431L116.645 134.603L117.997 153.579L118.101 200.289H146.898L147.002 153.579L148.354 134.603Z" fill="url(#paint0_linear)"/>
|
||||
<path d="M244.727 123.029L190.355 107.077L206.781 131.996L182.246 179.957L214.682 179.54H262.92L244.727 123.029Z" fill="url(#paint1_linear)"/>
|
||||
<path d="M74.6449 107.077L20.2726 123.029L2.18311 179.54H50.4216L82.7539 179.957L58.2188 131.996L74.6449 107.077Z" fill="url(#paint2_linear)"/>
|
||||
<path d="M153.76 164.735L146.899 200.289L151.889 203.729L182.246 179.957L183.182 156.081L153.76 164.735Z" fill="#ACACAC"/>
|
||||
<path d="M81.9224 156.081L82.7541 179.957L113.111 203.729L118.101 200.289L111.24 164.735L81.9224 156.081Z" fill="#ACACAC"/>
|
||||
<path d="M256.267 82.0553L265 39.5158L251.9 0L151.889 74.4441L189.211 108.017L244.727 123.031L256.683 108.955L251.485 105.202L259.802 97.5906L253.46 92.5859L261.777 86.2258L256.267 82.0553Z" fill="url(#paint3_linear)"/>
|
||||
<path d="M8.73266 82.0553L-0.000171178 39.5158L13.0991 0L113.111 74.4441L75.7884 108.017L20.2725 123.031L8.31682 108.955L13.5149 105.202L5.19795 97.5906L11.5396 92.5859L3.22265 86.2258L8.73266 82.0553Z" fill="url(#paint4_linear)"/>
|
||||
<path d="M58.2188 131.997L81.9222 156.082L82.7539 179.958L58.2188 131.997Z" fill="#8D8D8D"/>
|
||||
<path d="M206.781 131.997L182.246 179.958L183.181 156.082L206.781 131.997Z" fill="#8D8D8D"/>
|
||||
<path d="M187.132 220.935L151.889 203.731L154.696 226.774L154.384 236.47L187.132 220.935Z" fill="#FF9F5A"/>
|
||||
<path d="M77.8677 220.934L110.616 236.469L110.408 226.773L113.111 203.73L77.8677 220.934Z" fill="#FF9F5A"/>
|
||||
<path d="M214.682 179.542L187.132 220.935L246.079 237.2L262.921 179.542H214.682Z" fill="url(#paint5_linear)"/>
|
||||
<path d="M2.18311 179.542L18.921 237.2L77.8677 220.935L50.4216 179.542H2.18311Z" fill="url(#paint6_linear)"/>
|
||||
<path d="M13.0991 0L113.111 74.4441L97.4126 31.5918L13.0991 0Z" fill="#757575"/>
|
||||
<path d="M167.587 31.5918L151.889 74.4441L251.9 0L167.587 31.5918Z" fill="#757575"/>
|
||||
<path d="M74.6448 107.079L58.2188 131.998L116.646 134.604L113.111 74.4443L74.6448 107.079Z" fill="url(#paint7_linear)"/>
|
||||
<path d="M190.355 107.079L151.889 74.4443L148.354 134.604L206.781 131.998L190.355 107.079Z" fill="url(#paint8_linear)"/>
|
||||
<path d="M77.8677 220.934L113.111 203.731L82.7539 179.959L77.8677 220.934Z" fill="url(#paint9_linear)"/>
|
||||
<path d="M151.889 203.731L187.132 220.934L182.246 179.959L151.889 203.731Z" fill="url(#paint10_linear)"/>
|
||||
<path d="M182.246 179.958L187.132 220.934L214.682 179.541L182.246 179.958Z" fill="url(#paint11_linear)"/>
|
||||
<path d="M82.7539 179.958L77.8677 220.934L50.3177 179.541L82.7539 179.958Z" fill="url(#paint12_linear)"/>
|
||||
<path d="M206.781 131.997L148.354 134.604L153.761 164.736L162.389 146.594L183.182 156.082L206.781 131.997Z" fill="#666666"/>
|
||||
<path d="M81.9222 156.082L102.611 146.594L111.24 164.736L116.646 134.604L58.2188 131.997L81.9222 156.082Z" fill="#666666"/>
|
||||
<path d="M153.76 164.736L147.002 153.579L148.354 134.604L153.76 164.736Z" fill="#8D8D8D"/>
|
||||
<path d="M111.24 164.736L116.646 134.604L117.997 153.579L111.24 164.736Z" fill="#8D8D8D"/>
|
||||
<path d="M147.003 153.58L153.76 164.736L146.899 200.29L147.003 153.58Z" fill="#8D8D8D"/>
|
||||
<path d="M117.997 153.58L118.101 200.29L111.24 164.736L117.997 153.58Z" fill="#8D8D8D"/>
|
||||
<path d="M154.571 236.345L154.696 226.773L152.097 224.48H112.903L110.408 226.773L110.616 236.47L77.8677 220.935L89.3035 230.318L112.591 246.479H152.409L175.696 230.318L187.132 220.935L154.571 236.345Z" fill="#DF7554"/>
|
||||
<path d="M151.889 203.731L146.899 200.29H118.101L113.111 203.731L110.408 226.773L112.903 224.479H152.097L154.696 226.773L151.889 203.731Z" fill="#161616" stroke="#161616" stroke-width="0.0657594" stroke-miterlimit="10" stroke-linejoin="round"/>
|
||||
<path d="M162.389 146.594L153.76 164.736L183.182 156.082L162.389 146.594Z" fill="#161616"/>
|
||||
<path d="M102.611 146.594L111.24 164.736L81.9224 156.082L102.611 146.594Z" fill="#161616"/>
|
||||
<path d="M256.683 108.955L251.485 105.202L259.802 97.5905L253.46 92.5859L261.777 86.2258L256.267 82.0553L265 39.5158L251.901 0L167.587 31.5918H97.4127L13.0993 0L0 39.5158L8.8368 82.0553L3.22283 86.2258L11.5398 92.5859L5.19812 97.5905L13.5151 105.202L8.31699 108.955L20.2727 123.031L2.18321 179.542L18.9211 237.199L77.8678 220.934L113.111 203.731L110.231 227.044L112.903 224.583L152.097 224.479L154.696 226.773L151.889 203.731L187.132 220.934L246.079 237.199L262.921 179.542L244.727 123.031L256.683 108.955Z" fill="url(#paint13_linear)" fill-opacity="0.1" style="mix-blend-mode:color-dodge"/>
|
||||
<path d="M256.683 108.955L251.485 105.202L259.802 97.5905L253.46 92.5859L261.777 86.2258L256.267 82.0553L265 39.5158L251.901 0L167.587 31.5918H97.4127L13.0993 0L0 39.5158L8.8368 82.0553L3.22283 86.2258L11.5398 92.5859L5.19812 97.5905L13.5151 105.202L8.31699 108.955L20.2727 123.031L2.18321 179.542L18.9211 237.199L77.8678 220.934L113.111 203.731L117.997 200.186H125.275H139.829H147.107L151.889 203.731L187.132 220.934L246.079 237.199L262.921 179.542L244.727 123.031L256.683 108.955Z" fill="url(#paint14_radial)" style="mix-blend-mode:overlay"/>
|
||||
</g>
|
||||
<path d="M1166.17 120.732C1159.42 116.127 1151.72 112.742 1144.35 108.759C1139.75 106.295 1134.84 103.855 1130.83 100.47C1124.08 94.944 1125.3 83.5933 1132.67 78.6647C1143.11 71.9189 1160.02 75.603 1161.86 89.7167C1161.86 90.0154 1162.16 90.339 1162.48 90.339H1178.15C1178.44 90.339 1178.77 90.0403 1178.77 89.7167C1177.85 79.8844 1174.16 71.9189 1167.41 66.6916C1160.94 61.763 1153.27 59 1145.27 59C1104.11 59 1100.42 102.611 1122.54 116.426C1125 117.969 1146.82 129.021 1154.49 133.626C1162.16 138.53 1164.62 147.143 1161.24 153.888C1158.17 160.335 1150.18 164.318 1142.48 164.019C1133.89 163.721 1127.12 158.792 1124.98 151.424C1124.68 150.204 1124.36 147.74 1124.36 146.52C1124.36 146.222 1124.06 145.898 1123.73 145.898H1106.85C1106.55 145.898 1106.23 146.197 1106.23 146.52C1106.23 158.792 1109.29 165.563 1117.58 171.711C1125.25 177.536 1133.87 180 1142.78 180C1165.82 180 1177.8 166.807 1180.26 153.291C1182.13 140.372 1178.14 128.399 1166.17 120.732Z" fill="#24292E"/>
|
||||
<path d="M433.192 61.4634H425.522H417.229C416.931 61.4634 416.607 61.7621 416.607 61.7621L402.786 107.514C402.487 108.136 401.865 108.136 401.566 107.514L388.044 61.7621C388.044 61.4634 387.745 61.4634 387.421 61.4634H379.129H371.758H361.623C361.299 61.4634 361 61.7621 361 62.0608V178.754C361 179.053 361.299 179.377 361.623 179.377H378.506C378.805 179.377 379.129 179.078 379.129 178.754V90.0145C379.129 89.3922 380.05 89.0935 380.349 89.7158L394.469 135.766L395.39 138.828C395.39 139.126 395.689 139.126 396.013 139.126H408.912C409.211 139.126 409.535 138.828 409.535 138.828L410.456 135.766L424.576 89.7158C424.576 89.0935 425.497 89.4171 425.497 90.0145V178.754C425.497 179.053 425.796 179.377 426.12 179.377H443.003C443.302 179.377 443.626 179.078 443.626 178.754V62.0608C443.626 61.7621 443.327 61.4385 443.003 61.4385L433.192 61.4634Z" fill="#24292E"/>
|
||||
<path d="M907.506 61.4634C907.207 61.4634 906.883 61.7621 906.883 61.7621L893.063 107.514C892.764 108.136 892.141 108.136 891.842 107.514L878.022 61.7621C878.022 61.4634 877.723 61.4634 877.399 61.4634H851.6C851.301 61.4634 850.978 61.7621 850.978 62.0857V178.779C850.978 179.078 851.276 179.402 851.6 179.402H868.484C868.783 179.402 869.106 179.103 869.106 178.779V90.0145C869.106 89.3922 870.028 89.0935 870.327 89.7158L884.446 135.766L885.368 138.828C885.368 139.126 885.667 139.126 885.99 139.126H898.89C899.189 139.126 899.512 138.828 899.512 138.828L900.434 135.766L914.553 89.7158C914.852 89.0935 915.773 89.0935 915.773 90.0145V178.754C915.773 179.053 916.072 179.377 916.396 179.377H933.28C933.579 179.377 933.902 179.078 933.902 178.754V62.0608C933.902 61.7621 933.604 61.4385 933.28 61.4385L907.506 61.4634Z" fill="#24292E"/>
|
||||
<path d="M690.01 61.4648H658.359H641.475H610.148C609.849 61.4648 609.525 61.7635 609.525 62.0871V76.5245C609.525 76.8232 609.824 77.1468 610.148 77.1468H640.877V178.482C640.877 178.781 641.176 179.104 641.5 179.104H658.384C658.683 179.104 659.006 178.806 659.006 178.482V77.1219H689.711C690.01 77.1219 690.333 76.8232 690.333 76.4996V62.0623C690.632 61.7635 690.309 61.4648 690.01 61.4648Z" fill="#24292E"/>
|
||||
<path d="M789.545 179.377H804.91C805.208 179.377 805.532 179.078 805.532 178.456L773.582 61.4637C773.582 61.165 773.284 61.165 772.96 61.165H767.133H756.699H751.17C750.872 61.165 750.548 61.4637 750.548 61.4637L718.897 178.456C718.897 178.755 719.196 179.377 719.52 179.377H734.884C735.183 179.377 735.507 179.078 735.507 179.078L744.721 145.001C744.721 144.703 745.02 144.703 745.343 144.703H779.435C779.733 144.703 780.057 145.001 780.057 145.001L789.271 179.078C788.922 179.054 789.246 179.377 789.545 179.377ZM749.004 127.776L761.281 82.3232C761.58 81.7009 762.202 81.7009 762.501 82.3232L774.778 127.776C774.778 128.075 774.479 128.697 774.155 128.697H749.577C749.303 128.398 749.004 128.1 749.004 127.776Z" fill="#24292E"/>
|
||||
<path d="M1051.59 179.377H1066.96C1067.26 179.377 1067.58 179.078 1067.58 178.456L1035.63 61.4637C1035.63 61.165 1035.33 61.165 1035.01 61.165H1029.18H1018.75H1012.92C1012.62 61.165 1012.3 61.4637 1012.3 61.4637L980.646 178.456C980.646 178.755 980.944 179.377 981.268 179.377H996.633C996.932 179.377 997.255 179.078 997.255 179.078L1006.47 145.001C1006.47 144.703 1006.77 144.703 1007.09 144.703H1041.18C1041.48 144.703 1041.81 145.001 1041.81 145.001L1051.02 179.078C1050.97 179.054 1051.27 179.377 1051.59 179.377ZM1011.03 127.776L1023.3 82.3232C1023.6 81.7009 1024.22 81.7009 1024.52 82.3232L1036.8 127.776C1036.8 128.075 1036.5 128.697 1036.18 128.697H1011.6C1011.35 128.398 1011.03 128.1 1011.03 127.776Z" fill="#24292E"/>
|
||||
<path d="M512.132 162.176V125.934C512.132 125.635 512.431 125.311 512.755 125.311H557.604C557.903 125.311 558.227 125.013 558.227 124.689V110.252C558.227 109.953 557.928 109.629 557.604 109.629H512.755C512.456 109.629 512.132 109.331 512.132 109.007V77.7427C512.132 77.444 512.431 77.1204 512.755 77.1204H563.755C564.054 77.1204 564.377 76.8217 564.377 76.4981V62.0608C564.377 61.7621 564.079 61.4385 563.755 61.4385H512.132H494.626C494.327 61.4385 494.003 61.7372 494.003 62.0608V77.0955V109.331V124.988V162.45V178.406C494.003 178.705 494.302 179.028 494.626 179.028H512.132H566.195C566.494 179.028 566.818 178.73 566.818 178.406V163.048C566.818 162.749 566.519 162.425 566.195 162.425H512.755C512.456 162.799 512.132 162.475 512.132 162.176Z" fill="#24292E"/>
|
||||
<path d="M1320.39 178.132L1262.02 117.645C1261.72 117.346 1261.72 117.022 1262.02 116.724L1314.54 62.3844C1314.83 62.0857 1314.54 61.4634 1314.24 61.4634H1292.72C1292.42 61.4634 1292.42 61.4634 1292.42 61.7621L1247.87 108.136C1247.57 108.435 1246.95 108.136 1246.95 107.837V62.0608C1246.95 61.7621 1246.65 61.4385 1246.33 61.4385H1229.44C1229.15 61.4385 1228.82 61.7372 1228.82 62.0608V178.754C1228.82 179.053 1229.12 179.377 1229.44 179.377H1246.33C1246.63 179.377 1246.95 179.078 1246.95 178.754V127.178C1246.95 126.556 1247.57 126.257 1247.87 126.88L1298.25 179.078L1298.55 179.377H1320.06C1320.69 179.377 1320.99 178.754 1320.39 178.132Z" fill="#24292E"/>
|
||||
<rect x="1338" y="27" width="194" height="84" rx="12" fill="#24292E"/>
|
||||
<path d="M1358 50.6376H1380.89V58.7139H1366.33V65.515H1377.7V73.5913H1366.33V88.3624H1358V50.6376Z" fill="white"/>
|
||||
<path d="M1386.55 50.6376H1394.87V80.2861H1410.28V88.3624H1386.55V50.6376Z" fill="white"/>
|
||||
<path d="M1427.39 50.6376H1434.94L1450.86 88.3624H1442.17L1438.87 80.3924H1423.46L1420.16 88.3624H1411.47L1427.39 50.6376ZM1426.45 73.0599H1435.83L1431.16 61.7425L1426.45 73.0599Z" fill="white"/>
|
||||
<path d="M1464.82 89C1461.85 89 1459.18 88.4155 1456.81 87.2466C1454.43 86.0422 1452.51 84.3774 1451.04 82.252L1457.43 76.7793C1458.34 78.1253 1459.51 79.188 1460.94 79.9673C1462.38 80.7112 1463.77 81.0831 1465.13 81.0831C1466.53 81.0831 1467.63 80.7997 1468.43 80.233C1469.24 79.6308 1469.64 78.8692 1469.64 77.9482C1469.64 76.9918 1469.24 76.1594 1468.43 75.451C1467.67 74.7425 1466.34 74.0695 1464.45 73.4319L1461.83 72.5286C1458.8 71.5014 1456.47 70.0845 1454.87 68.2779C1453.26 66.436 1452.46 64.2221 1452.46 61.6362C1452.46 59.7943 1452.77 58.1649 1453.4 56.748C1454.06 55.2956 1454.95 54.0736 1456.07 53.0817C1457.22 52.0899 1458.59 51.3283 1460.16 50.797C1461.73 50.2657 1463.44 50 1465.29 50C1467.56 50 1469.69 50.3896 1471.68 51.1689C1473.67 51.9482 1475.54 53.2943 1477.29 55.2071L1471.84 61.0518C1470.97 59.9891 1469.97 59.2098 1468.85 58.7139C1467.74 58.1826 1466.58 57.9169 1465.4 57.9169C1464.84 57.9169 1464.28 57.97 1463.72 58.0763C1463.2 58.1826 1462.73 58.3597 1462.31 58.6076C1461.89 58.8556 1461.54 59.1567 1461.26 59.5109C1461.01 59.8651 1460.89 60.2902 1460.89 60.7861C1460.89 61.8134 1461.35 62.6281 1462.25 63.2302C1463.2 63.797 1464.66 64.4346 1466.65 65.1431L1469.27 66.0995C1471.96 67.0913 1474.11 68.5082 1475.72 70.3501C1477.36 72.1921 1478.16 74.53 1478.13 77.3638C1478.13 79.064 1477.79 80.6403 1477.13 82.0926C1476.47 83.5095 1475.54 84.7316 1474.35 85.7589C1473.2 86.7861 1471.81 87.5831 1470.16 88.1499C1468.56 88.7166 1466.78 89 1464.82 89Z" fill="white"/>
|
||||
<path d="M1492.17 71.4659V88.3624H1483.9V50.6376H1492.17V66.4183L1504.8 50.6376H1515.01L1500.35 68.7561L1518 88.3624H1507.31L1492.17 71.4659Z" fill="white"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="132.5" y1="31.5908" x2="132.5" y2="200.289" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8F8F8F"/>
|
||||
<stop offset="1" stop-color="#AEAEAE"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear" x1="222.583" y1="107.077" x2="222.583" y2="179.957" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#696969"/>
|
||||
<stop offset="1" stop-color="#A6A6A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear" x1="42.4685" y1="107.077" x2="42.4685" y2="179.957" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#696969"/>
|
||||
<stop offset="1" stop-color="#A6A6A6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear" x1="184.533" y1="102.178" x2="279.867" y2="27.8973" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1B1B1B"/>
|
||||
<stop offset="1" stop-color="#565656"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear" x1="80.4668" y1="102.178" x2="-14.8672" y2="27.8973" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1B1B1B"/>
|
||||
<stop offset="1" stop-color="#565656"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint5_linear" x1="225.027" y1="179.542" x2="225.027" y2="237.2" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#787878"/>
|
||||
<stop offset="1" stop-color="#5E5E5E"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint6_linear" x1="40.0254" y1="179.542" x2="40.0254" y2="237.2" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#787878"/>
|
||||
<stop offset="1" stop-color="#5E5E5E"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint7_linear" x1="87.4322" y1="74.4443" x2="87.4322" y2="134.604" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7A7A7A"/>
|
||||
<stop offset="1" stop-color="#949494"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint8_linear" x1="177.568" y1="74.4443" x2="177.568" y2="134.604" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7A7A7A"/>
|
||||
<stop offset="1" stop-color="#949494"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint9_linear" x1="95.4893" y1="245.645" x2="95.4893" y2="-25.2885" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7A7C7D"/>
|
||||
<stop offset="1" stop-color="#CECECF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint10_linear" x1="169.51" y1="245.645" x2="169.51" y2="-25.2885" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7A7C7D"/>
|
||||
<stop offset="1" stop-color="#CECECF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint11_linear" x1="198.464" y1="126.784" x2="198.464" y2="234.065" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3E3E3E"/>
|
||||
<stop offset="1" stop-color="#616161"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint12_linear" x1="66.5358" y1="126.784" x2="66.5358" y2="234.065" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3E3E3E"/>
|
||||
<stop offset="1" stop-color="#616161"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint13_linear" x1="132.032" y1="31.279" x2="132.032" y2="258.573" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF60DC"/>
|
||||
<stop offset="1" stop-color="#6B71FF"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint14_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(132.032 26.5872) rotate(90) scale(218.953 244.615)">
|
||||
<stop stop-color="#FF60DC"/>
|
||||
<stop offset="1" stop-color="#6B71FF"/>
|
||||
</radialGradient>
|
||||
<clipPath id="clip0">
|
||||
<rect width="265" height="247" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 16 KiB |
@ -1 +0,0 @@
|
||||
<svg width="56" height="64" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M54.5 20c.75 0 1.5-.625 1.5-1.5v-5c0-.75-.75-1.5-1.5-1.5H52V6c0-3.25-2.75-6-6-6H6C2.625 0 0 2.75 0 6v52c0 3.375 2.625 6 6 6h40c3.25 0 6-2.625 6-6v-6h2.5c.75 0 1.5-.625 1.5-1.5v-5c0-.75-.75-1.5-1.5-1.5H52v-8h2.5c.75 0 1.5-.625 1.5-1.5v-5c0-.75-.75-1.5-1.5-1.5H52v-8h2.5zM26 16c4.375 0 8 3.625 8 8 0 4.5-3.625 8-8 8-4.5 0-8-3.5-8-8 0-4.375 3.5-8 8-8zm14 29.625C40 47 38.75 48 37.125 48H14.75c-1.5 0-2.75-1-2.75-2.375V43.25c0-4 3.75-7.25 8.375-7.25H21c1.5.75 3.125 1 5 1 1.75 0 3.375-.25 4.875-1h.625c4.625 0 8.5 3.25 8.5 7.25v2.375z" fill="#D6D9DC"/></svg>
|
Before Width: | Height: | Size: 638 B |
@ -1,4 +0,0 @@
|
||||
|
||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.28348 10.8571V12H0.140625V10.8571H3.28348ZM6.42634 9.71429C6.5811 9.71429 6.71503 9.77083 6.82813 9.88393C6.94122 9.99702 6.99777 10.131 6.99777 10.2857V12.5714C6.99777 12.7262 6.94122 12.8601 6.82813 12.9732C6.71503 13.0863 6.5811 13.1429 6.42634 13.1429H4.14062C3.98586 13.1429 3.85193 13.0863 3.73884 12.9732C3.62574 12.8601 3.5692 12.7262 3.5692 12.5714V10.2857C3.5692 10.131 3.62574 9.99702 3.73884 9.88393C3.85193 9.77083 3.98586 9.71429 4.14062 9.71429H6.42634ZM7.85491 6.28571V7.42857H0.140625V6.28571H7.85491ZM2.14062 1.71428V2.85714H0.140625V1.71428H2.14062ZM13.8549 10.8571V12H7.28348V10.8571H13.8549ZM5.28348 0.571428C5.43824 0.571428 5.57217 0.627976 5.68527 0.741071C5.79836 0.854166 5.85491 0.988095 5.85491 1.14286V3.42857C5.85491 3.58333 5.79836 3.71726 5.68527 3.83036C5.57217 3.94345 5.43824 4 5.28348 4H2.99777C2.84301 4 2.70908 3.94345 2.59598 3.83036C2.48289 3.71726 2.42634 3.58333 2.42634 3.42857V1.14286C2.42634 0.988095 2.48289 0.854166 2.59598 0.741071C2.70908 0.627976 2.84301 0.571428 2.99777 0.571428H5.28348ZM10.9978 5.14286C11.1525 5.14286 11.2865 5.1994 11.3996 5.3125C11.5126 5.42559 11.5692 5.55952 11.5692 5.71429V8C11.5692 8.15476 11.5126 8.28869 11.3996 8.40179C11.2865 8.51488 11.1525 8.57143 10.9978 8.57143H8.71205C8.55729 8.57143 8.42336 8.51488 8.31027 8.40179C8.19717 8.28869 8.14062 8.15476 8.14062 8V5.71429C8.14062 5.55952 8.19717 5.42559 8.31027 5.3125C8.42336 5.1994 8.55729 5.14286 8.71205 5.14286H10.9978ZM13.8549 6.28571V7.42857H11.8549V6.28571H13.8549ZM13.8549 1.71428V2.85714H6.14063V1.71428H13.8549Z" fill="#24292E"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,9 +0,0 @@
|
||||
<svg height="16" width="16" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="8" cy="8" fill="#d0021b" r="8"/>
|
||||
<g fill="#fff">
|
||||
<rect height="7" rx="1" width="2" x="7" y="3"/>
|
||||
<rect height="2" rx="1" width="2" x="7" y="11"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 331 B |
@ -1,6 +0,0 @@
|
||||
<svg height="29" width="29" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="14.5" cy="14.5" fill="#605a1c" r="14.5"/>
|
||||
<path d="M16 16.828h-2V7h2zM16 21h-2v-2h2z" fill="#fffcdb"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 251 B |
@ -1,4 +0,0 @@
|
||||
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 15.5714C8.09524 15.5714 8.14286 15.5238 8.14286 15.4286C8.14286 15.3333 8.09524 15.2857 8 15.2857C7.64881 15.2857 7.34524 15.1577 7.08929 14.9018C6.83929 14.6518 6.71429 14.3512 6.71429 14C6.71429 13.9048 6.66667 13.8571 6.57143 13.8571C6.47619 13.8571 6.42857 13.9048 6.42857 14C6.42857 14.4345 6.58036 14.8036 6.88393 15.1071C7.19345 15.4167 7.56548 15.5714 8 15.5714ZM15.4286 12.8571C15.4286 13.1667 15.3155 13.4345 15.0893 13.6607C14.8631 13.8869 14.5952 14 14.2857 14H10.2857C10.2857 14.631 10.0625 15.1696 9.61607 15.6161C9.16964 16.0625 8.63095 16.2857 8 16.2857C7.36905 16.2857 6.83036 16.0625 6.38393 15.6161C5.9375 15.1696 5.71429 14.631 5.71429 14H1.71429C1.40476 14 1.1369 13.8869 0.910714 13.6607C0.684524 13.4345 0.571429 13.1667 0.571429 12.8571C0.869048 12.6071 1.13988 12.3452 1.38393 12.0714C1.62798 11.7976 1.88095 11.4435 2.14286 11.0089C2.40476 10.5685 2.625 10.0952 2.80357 9.58929C2.9881 9.08333 3.1369 8.47024 3.25 7.75C3.36905 7.02976 3.42857 6.25595 3.42857 5.42857C3.42857 4.52381 3.77679 3.68452 4.47321 2.91071C5.16964 2.13095 6.08333 1.65774 7.21429 1.49107C7.16667 1.37798 7.14286 1.2619 7.14286 1.14286C7.14286 0.904762 7.22619 0.702381 7.39286 0.535714C7.55952 0.369047 7.76191 0.285713 8 0.285713C8.2381 0.285713 8.44048 0.369047 8.60714 0.535714C8.77381 0.702381 8.85714 0.904762 8.85714 1.14286C8.85714 1.2619 8.83333 1.37798 8.78572 1.49107C9.91667 1.65774 10.8304 2.13095 11.5268 2.91071C12.2232 3.68452 12.5714 4.52381 12.5714 5.42857C12.5714 6.25595 12.628 7.02976 12.7411 7.75C12.8601 8.47024 13.0089 9.08333 13.1875 9.58929C13.372 10.0952 13.5952 10.5685 13.8571 11.0089C14.119 11.4435 14.372 11.7976 14.6161 12.0714C14.8601 12.3452 15.131 12.6071 15.4286 12.8571Z" fill="#24292E"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.8 KiB |
9
app/images/arbitrum.svg
Normal file
After Width: | Height: | Size: 22 KiB |
@ -1,3 +0,0 @@
|
||||
<svg fill="none" height="10" width="10" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.676.642a.65.65 0 00-.072.006H4.793a.65.65 0 00-.57.975.65.65 0 00.57.322H7.12L.438 8.614a.647.647 0 00.286 1.096.65.65 0 00.632-.179L8.04 2.861v2.324a.648.648 0 00.977.57.648.648 0 00.322-.57V1.38a.647.647 0 00-.662-.737z" fill="#359bdd"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 339 B |
@ -1,3 +0,0 @@
|
||||
<svg height="21" width="25" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.281.467a1.58 1.58 0 000 2.259l5.824 5.743H1.62a1.61 1.61 0 00-1.62 1.597v.001c0 .882.726 1.596 1.62 1.596h16.486l-5.824 5.745a1.58 1.58 0 000 2.258 1.637 1.637 0 002.29 0l9.734-9.6L14.571.467a1.637 1.637 0 00-2.29 0" fill="#5b5b5b" fill-rule="evenodd"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 342 B |
@ -1,3 +0,0 @@
|
||||
<svg height="15" width="9" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.126 14.063L2 7.631 8.315 1" fill="none" stroke="#000" stroke-width="2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 159 B |
@ -1,3 +0,0 @@
|
||||
<svg height="15" width="9" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.126 14.063L2 7.631 8.315 1" fill="none" stroke="#3099f2" stroke-width="2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 162 B |
@ -1,3 +0,0 @@
|
||||
<svg viewBox="0 0 10 14" fill="#6A737D" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.90625 7.53125C9.1875 7.25 9.1875 6.78125 8.90625 6.5L2.84375 0.40625C2.53125 0.125 2.0625 0.125 1.78125 0.40625L1.0625 1.125C0.78125 1.40625 0.78125 1.875 1.0625 2.1875L5.875 7L1.0625 11.8438C0.78125 12.1562 0.78125 12.625 1.0625 12.9062L1.78125 13.625C2.0625 13.9062 2.53125 13.9062 2.84375 13.625L8.90625 7.53125Z" fill="#6A737D"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 429 B |
@ -1,6 +0,0 @@
|
||||
<svg fill="none" height="20" width="20" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-rule="evenodd" fill-rule="evenodd">
|
||||
<path d="M.833 10a9.167 9.167 0 1118.334 0A9.167 9.167 0 01.833 10z" fill="#28a745"/>
|
||||
<path d="M14.426 6.702a.833.833 0 010 1.179l-5.173 5.417a.833.833 0 01-1.178 0l-2.5-2.5a.833.833 0 111.178-1.179l1.91 1.91 4.584-4.827a.833.833 0 011.179 0z" fill="#fff"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 414 B |
@ -1,6 +0,0 @@
|
||||
<svg height="100" width="100" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" fill-rule="evenodd" stroke="#61ba00" stroke-width="4" transform="translate(2 2)">
|
||||
<circle cx="48" cy="48" r="48"/>
|
||||
<path d="M29.76 52.8l11.242 11.52L71.04 34.56" stroke-linecap="round"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 304 B |
@ -1,3 +0,0 @@
|
||||
<svg height="13" width="16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5.2 9.571L1.714 6.014l-1.428 1.4L5.2 12.43l10.514-10.73L14.286.3z" fill="#fff"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 166 B |
@ -1,3 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.75 8C15.75 3.75 12.25 0.25 8 0.25C3.71875 0.25 0.25 3.75 0.25 8C0.25 12.2812 3.71875 15.75 8 15.75C12.25 15.75 15.75 12.2812 15.75 8ZM7.09375 12.125C6.90625 12.3125 6.5625 12.3125 6.375 12.125L3.125 8.875C2.9375 8.6875 2.9375 8.34375 3.125 8.15625L3.84375 7.46875C4.03125 7.25 4.34375 7.25 4.53125 7.46875L6.75 9.65625L11.4375 4.96875C11.625 4.75 11.9375 4.75 12.125 4.96875L12.8438 5.65625C13.0312 5.84375 13.0312 6.1875 12.8438 6.375L7.09375 12.125Z" fill="#4CD964"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 586 B |
@ -1,4 +0,0 @@
|
||||
<svg width="12" height="12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x=".149" y="1.097" width="1.341" height="15.419" rx=".67" transform="rotate(-45 .15 1.097)" fill="#A1A5B3"/>
|
||||
<rect x=".948" y="11.851" width="1.341" height="15.419" rx=".67" transform="rotate(-135 .948 11.85)" fill="#A1A5B3"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 324 B |
@ -1,4 +0,0 @@
|
||||
<svg height="288" width="288" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M-1-1h582v402H-1z" fill="none"/>
|
||||
<path d="M122 25l15-21c4-5 10-5 14 0l16 22c4 5 2 10-5 10h-12v118c0 3 3 3 5 1l25-25c4-4 6-10 6-16V90c-7 0-12-5-12-12V66c0-6 5-12 12-12h12c7 0 12 5 12 12v12c0 7-5 12-12 12v24c0 10-3 18-10 25l-31 31c-4 4-7 6-7 16v49c12 3 21 13 21 26 0 15-12 27-27 27s-27-12-27-27c0-13 9-23 21-26v-13c0-10-3-13-7-17l-31-31c-6-6-10-14-10-24v-25c-7-2-12-9-12-17 0-10 8-18 18-18s18 8 18 18c0 8-5 15-12 17v25c0 7 3 12 7 16l25 25c2 2 4 2 4-1V36h-12c-7 0-9-5-4-11z" fill="#fff"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 576 B |
@ -1,4 +0,0 @@
|
||||
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.2935 11.3393C11.2935 11 11.2757 10.6815 11.24 10.3839C11.2102 10.0863 11.1477 9.78869 11.0525 9.49107C10.9632 9.1875 10.8471 8.93155 10.7042 8.72321C10.5614 8.50893 10.3709 8.33631 10.1328 8.20536C9.89472 8.06845 9.62388 8 9.32031 8C9.2846 8.02381 9.18341 8.08631 9.01674 8.1875C8.85603 8.28274 8.73103 8.35417 8.64174 8.40179C8.55246 8.4494 8.43043 8.50893 8.27567 8.58036C8.12686 8.65179 7.98103 8.70238 7.83817 8.73214C7.70127 8.7619 7.56436 8.77679 7.42746 8.77679C7.29055 8.77679 7.15067 8.7619 7.00781 8.73214C6.87091 8.70238 6.72507 8.65179 6.57031 8.58036C6.4215 8.50893 6.30246 8.4494 6.21317 8.40179C6.12388 8.35417 5.99591 8.28274 5.82924 8.1875C5.66853 8.08631 5.57031 8.02381 5.5346 8C5.23103 8 4.96019 8.06845 4.7221 8.20536C4.484 8.33631 4.29353 8.50893 4.15067 8.72321C4.00781 8.93155 3.88876 9.1875 3.79353 9.49107C3.70424 9.78869 3.64174 10.0863 3.60603 10.3839C3.57626 10.6815 3.56138 11 3.56138 11.3393C3.56138 11.7738 3.68638 12.1369 3.93638 12.4286C4.18638 12.7143 4.49293 12.8571 4.85603 12.8571H9.99888C10.362 12.8571 10.6685 12.7143 10.9185 12.4286C11.1685 12.1369 11.2935 11.7738 11.2935 11.3393ZM9.74888 6.03571C9.74888 5.39286 9.51972 4.84524 9.06138 4.39286C8.609 3.94048 8.06436 3.71428 7.42746 3.71428C6.79055 3.71428 6.24293 3.94048 5.7846 4.39286C5.33222 4.84524 5.10603 5.39286 5.10603 6.03571C5.10603 6.67262 5.33222 7.21726 5.7846 7.66964C6.24293 8.12202 6.79055 8.34821 7.42746 8.34821C8.06436 8.34821 8.609 8.12202 9.06138 7.66964C9.51972 7.21726 9.74888 6.67262 9.74888 6.03571ZM15.4275 10.8571V12.5714C15.4275 12.6548 15.4007 12.7232 15.3471 12.7768C15.2935 12.8304 15.2251 12.8571 15.1417 12.8571H14.2846V14.8571C14.2846 15.25 14.1447 15.5863 13.865 15.8661C13.5852 16.1458 13.2489 16.2857 12.856 16.2857H1.99888C1.60603 16.2857 1.26972 16.1458 0.989955 15.8661C0.710193 15.5863 0.570312 15.25 0.570312 14.8571V1.71428C0.570312 1.32143 0.710193 0.985118 0.989955 0.705357C1.26972 0.425594 1.60603 0.285713 1.99888 0.285713H12.856C13.2489 0.285713 13.5852 0.425594 13.865 0.705357C14.1447 0.985118 14.2846 1.32143 14.2846 1.71428V3.71428H15.1417C15.2251 3.71428 15.2935 3.74107 15.3471 3.79464C15.4007 3.84821 15.4275 3.91667 15.4275 4V5.71428C15.4275 5.79762 15.4007 5.86607 15.3471 5.91964C15.2935 5.97321 15.2251 6 15.1417 6H14.2846V7.14286H15.1417C15.2251 7.14286 15.2935 7.16964 15.3471 7.22321C15.4007 7.27679 15.4275 7.34524 15.4275 7.42857V9.14286C15.4275 9.22619 15.4007 9.29464 15.3471 9.34821C15.2935 9.40179 15.2251 9.42857 15.1417 9.42857H14.2846V10.5714H15.1417C15.2251 10.5714 15.2935 10.5982 15.3471 10.6518C15.4007 10.7054 15.4275 10.7738 15.4275 10.8571Z" fill="#24292E"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.7 KiB |
@ -1 +1 @@
|
||||
<svg width="162" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#a)"><path fill="#fff" d="M.813.082h161v31h-161z"/><path d="M117.469 8.638h1.03l2.39 5.65 2.4-5.65h1.01l-3.02 7.1h-.78l-3.03-7.1ZM126.795 15.838c-.386 0-.74-.067-1.06-.2a2.436 2.436 0 0 1-1.35-1.37 2.91 2.91 0 0 1-.18-1.03c0-.367.064-.707.19-1.02.127-.32.304-.597.53-.83.234-.233.51-.417.83-.55.32-.133.67-.2 1.05-.2.327 0 .634.057.92.17.287.107.537.27.75.49.22.213.394.477.52.79.127.307.19.66.19 1.06v.13c0 .033-.003.077-.01.13h-4.1c.007.233.054.45.14.65.094.2.214.373.36.52.154.147.334.263.54.35.214.08.444.12.69.12.387 0 .704-.077.95-.23.254-.16.457-.373.61-.64l.68.47c-.226.367-.53.657-.91.87-.373.213-.82.32-1.34.32Zm1.51-3.13a1.56 1.56 0 0 0-.19-.55c-.086-.16-.2-.297-.34-.41a1.408 1.408 0 0 0-.46-.26 1.636 1.636 0 0 0-.54-.09 1.732 1.732 0 0 0-1.04.35 1.512 1.512 0 0 0-.38.41c-.106.16-.18.343-.22.55h3.17ZM130.406 10.738h.86v.97c.046-.16.12-.303.22-.43s.213-.233.34-.32a1.59 1.59 0 0 1 .4-.2c.146-.047.293-.07.44-.07.133 0 .263.013.39.04v.89a.782.782 0 0 0-.23-.06 1.348 1.348 0 0 0-.24-.02c-.16 0-.32.037-.48.11-.154.067-.294.17-.42.31-.12.14-.22.32-.3.54-.08.213-.12.467-.12.76v2.48h-.86v-5ZM134.438 17.828l1.09-2.35-2.19-4.74h.95l1.72 3.8 1.71-3.8h.96l-3.28 7.09h-.96ZM141.724 15.738v-7.5h.86v3.27c.173-.3.4-.52.68-.66s.583-.21.91-.21c.28 0 .537.047.77.14.233.093.43.23.59.41.167.173.297.387.39.64.093.247.14.523.14.83v3.08h-.85v-2.95c0-.42-.11-.75-.33-.99-.213-.247-.497-.37-.85-.37-.2 0-.39.04-.57.12-.173.08-.327.2-.46.36-.127.153-.23.343-.31.57-.073.227-.11.487-.11.78v2.48h-.86ZM148.053 9.398a.599.599 0 0 1-.62-.61c0-.167.06-.31.18-.43s.266-.18.44-.18c.173 0 .316.06.43.18.113.12.17.263.17.43 0 .173-.057.32-.17.44a.584.584 0 0 1-.43.17Zm-.44 1.34h.86v5h-.86v-5ZM152.283 14.928c.247 0 .473-.043.68-.13.213-.087.393-.207.54-.36a1.7 1.7 0 0 0 .34-.56c.087-.213.13-.447.13-.7a1.81 1.81 0 0 0-.13-.69 1.573 1.573 0 0 0-.34-.56 1.54 1.54 0 0 0-.54-.36 1.632 1.632 0 0 0-.68-.14c-.253 0-.483.047-.69.14a1.554 1.554 0 0 0-.53.36 1.7 1.7 0 0 0-.35.56c-.08.213-.12.443-.12.69 0 .253.04.487.12.7.087.213.203.4.35.56.147.153.323.273.53.36.207.087.437.13.69.13Zm-.05 3c-.54 0-1.013-.1-1.42-.3-.407-.2-.717-.44-.93-.72l.6-.6c.2.253.443.457.73.61.293.153.633.23 1.02.23.213 0 .42-.033.62-.1s.377-.173.53-.32c.16-.14.287-.32.38-.54.093-.213.14-.47.14-.77v-.57a2.015 2.015 0 0 1-.72.63c-.307.167-.647.25-1.02.25-.347 0-.67-.063-.97-.19-.3-.133-.56-.313-.78-.54a2.643 2.643 0 0 1-.52-.81 2.8 2.8 0 0 1-.18-1.01c0-.353.06-.683.18-.99.127-.313.3-.583.52-.81.22-.233.48-.413.78-.54.3-.133.623-.2.97-.2.373 0 .713.083 1.02.25.307.16.547.367.72.62v-.77h.86v4.71c0 .42-.067.783-.2 1.09-.127.313-.303.57-.53.77a2.17 2.17 0 0 1-.8.46c-.307.107-.64.16-1 .16ZM156.382 15.738v-7.5h.86v3.27c.174-.3.4-.52.68-.66s.584-.21.91-.21c.28 0 .537.047.77.14.234.093.43.23.59.41.167.173.297.387.39.64.094.247.14.523.14.83v3.08h-.85v-2.95c0-.42-.11-.75-.33-.99-.213-.247-.496-.37-.85-.37-.2 0-.39.04-.57.12-.173.08-.326.2-.46.36-.126.153-.23.343-.31.57-.073.227-.11.487-.11.78v2.48h-.86Z" fill="#F66A0A"/><path opacity=".3" d="M45.774 22.738c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#037DD6"/><mask id="b" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="26" y="0" width="111" height="31"><path d="M45.774 22.605c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#EAF6FF"/></mask><g mask="url(#b)"><path fill="#F66A0A" stroke="#fff" stroke-width="2" d="M118.254-5.209h20.706v39.25h-20.706z"/></g></g><defs><clipPath id="a"><path fill="#fff" transform="translate(.813 .082)" d="M0 0h161v31H0z"/></clipPath></defs></svg>
|
||||
<svg width="162" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#a)"><path fill="none" d="M.813.082h161v31h-161z"/><path d="M117.469 8.638h1.03l2.39 5.65 2.4-5.65h1.01l-3.02 7.1h-.78l-3.03-7.1ZM126.795 15.838c-.386 0-.74-.067-1.06-.2a2.436 2.436 0 0 1-1.35-1.37 2.91 2.91 0 0 1-.18-1.03c0-.367.064-.707.19-1.02.127-.32.304-.597.53-.83.234-.233.51-.417.83-.55.32-.133.67-.2 1.05-.2.327 0 .634.057.92.17.287.107.537.27.75.49.22.213.394.477.52.79.127.307.19.66.19 1.06v.13c0 .033-.003.077-.01.13h-4.1c.007.233.054.45.14.65.094.2.214.373.36.52.154.147.334.263.54.35.214.08.444.12.69.12.387 0 .704-.077.95-.23.254-.16.457-.373.61-.64l.68.47c-.226.367-.53.657-.91.87-.373.213-.82.32-1.34.32Zm1.51-3.13a1.56 1.56 0 0 0-.19-.55c-.086-.16-.2-.297-.34-.41a1.408 1.408 0 0 0-.46-.26 1.636 1.636 0 0 0-.54-.09 1.732 1.732 0 0 0-1.04.35 1.512 1.512 0 0 0-.38.41c-.106.16-.18.343-.22.55h3.17ZM130.406 10.738h.86v.97c.046-.16.12-.303.22-.43s.213-.233.34-.32a1.59 1.59 0 0 1 .4-.2c.146-.047.293-.07.44-.07.133 0 .263.013.39.04v.89a.782.782 0 0 0-.23-.06 1.348 1.348 0 0 0-.24-.02c-.16 0-.32.037-.48.11-.154.067-.294.17-.42.31-.12.14-.22.32-.3.54-.08.213-.12.467-.12.76v2.48h-.86v-5ZM134.438 17.828l1.09-2.35-2.19-4.74h.95l1.72 3.8 1.71-3.8h.96l-3.28 7.09h-.96ZM141.724 15.738v-7.5h.86v3.27c.173-.3.4-.52.68-.66s.583-.21.91-.21c.28 0 .537.047.77.14.233.093.43.23.59.41.167.173.297.387.39.64.093.247.14.523.14.83v3.08h-.85v-2.95c0-.42-.11-.75-.33-.99-.213-.247-.497-.37-.85-.37-.2 0-.39.04-.57.12-.173.08-.327.2-.46.36-.127.153-.23.343-.31.57-.073.227-.11.487-.11.78v2.48h-.86ZM148.053 9.398a.599.599 0 0 1-.62-.61c0-.167.06-.31.18-.43s.266-.18.44-.18c.173 0 .316.06.43.18.113.12.17.263.17.43 0 .173-.057.32-.17.44a.584.584 0 0 1-.43.17Zm-.44 1.34h.86v5h-.86v-5ZM152.283 14.928c.247 0 .473-.043.68-.13.213-.087.393-.207.54-.36a1.7 1.7 0 0 0 .34-.56c.087-.213.13-.447.13-.7a1.81 1.81 0 0 0-.13-.69 1.573 1.573 0 0 0-.34-.56 1.54 1.54 0 0 0-.54-.36 1.632 1.632 0 0 0-.68-.14c-.253 0-.483.047-.69.14a1.554 1.554 0 0 0-.53.36 1.7 1.7 0 0 0-.35.56c-.08.213-.12.443-.12.69 0 .253.04.487.12.7.087.213.203.4.35.56.147.153.323.273.53.36.207.087.437.13.69.13Zm-.05 3c-.54 0-1.013-.1-1.42-.3-.407-.2-.717-.44-.93-.72l.6-.6c.2.253.443.457.73.61.293.153.633.23 1.02.23.213 0 .42-.033.62-.1s.377-.173.53-.32c.16-.14.287-.32.38-.54.093-.213.14-.47.14-.77v-.57a2.015 2.015 0 0 1-.72.63c-.307.167-.647.25-1.02.25-.347 0-.67-.063-.97-.19-.3-.133-.56-.313-.78-.54a2.643 2.643 0 0 1-.52-.81 2.8 2.8 0 0 1-.18-1.01c0-.353.06-.683.18-.99.127-.313.3-.583.52-.81.22-.233.48-.413.78-.54.3-.133.623-.2.97-.2.373 0 .713.083 1.02.25.307.16.547.367.72.62v-.77h.86v4.71c0 .42-.067.783-.2 1.09-.127.313-.303.57-.53.77a2.17 2.17 0 0 1-.8.46c-.307.107-.64.16-1 .16ZM156.382 15.738v-7.5h.86v3.27c.174-.3.4-.52.68-.66s.584-.21.91-.21c.28 0 .537.047.77.14.234.093.43.23.59.41.167.173.297.387.39.64.094.247.14.523.14.83v3.08h-.85v-2.95c0-.42-.11-.75-.33-.99-.213-.247-.496-.37-.85-.37-.2 0-.39.04-.57.12-.173.08-.326.2-.46.36-.126.153-.23.343-.31.57-.073.227-.11.487-.11.78v2.48h-.86Z" fill="#F66A0A"/><path opacity=".3" d="M45.774 22.738c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#037DD6"/><mask id="b" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="26" y="0" width="111" height="31"><path d="M45.774 22.605c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#EAF6FF"/></mask><g mask="url(#b)"><path fill="#F66A0A" stroke="#fff" stroke-width="2" d="M118.254-5.209h20.706v39.25h-20.706z"/></g></g><defs><clipPath id="a"><path fill="#fff" transform="translate(.813 .082)" d="M0 0h161v31H0z"/></clipPath></defs></svg>
|
||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
@ -1 +1 @@
|
||||
<svg width="162" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#a)"><path fill="#fff" d="M.813.082h161v31h-161z"/><path d="M26.047 8.638h.93v6.22h3.43v.88h-4.36v-7.1ZM33.46 15.838c-.38 0-.73-.067-1.05-.2a2.573 2.573 0 0 1-1.38-1.38c-.127-.32-.19-.66-.19-1.02s.063-.697.19-1.01c.133-.32.316-.597.55-.83.233-.233.51-.417.83-.55.32-.14.67-.21 1.05-.21.373 0 .72.07 1.04.21.32.133.596.317.83.55.233.233.413.51.54.83.133.313.2.65.2 1.01s-.068.7-.2 1.02a2.438 2.438 0 0 1-.54.82c-.234.233-.51.42-.83.56-.32.133-.667.2-1.04.2Zm0-.8c.26 0 .496-.047.71-.14.212-.093.392-.22.54-.38.152-.167.27-.357.35-.57.086-.22.13-.457.13-.71 0-.247-.044-.48-.13-.7-.08-.22-.198-.41-.35-.57a1.518 1.518 0 0 0-.54-.39 1.752 1.752 0 0 0-.71-.14c-.26 0-.498.047-.71.14a1.62 1.62 0 0 0-.55.39 1.73 1.73 0 0 0-.36.57c-.08.22-.12.453-.12.7 0 .253.04.49.12.71.086.213.206.403.36.57.152.16.336.287.55.38.212.093.45.14.71.14ZM40.284 12.148l-1.23 3.59h-.76l-1.7-5h.9l1.21 3.65 1.25-3.65h.66l1.25 3.65 1.21-3.65h.91l-1.7 5h-.76l-1.24-3.59Z" fill="#F66A0A"/><path opacity=".3" d="M45.774 22.738c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#037DD6"/><mask id="b" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="26" y="0" width="111" height="31"><path d="M45.774 22.605c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#EAF6FF"/></mask><g mask="url(#b)"><path fill="#F66A0A" stroke="#fff" stroke-width="2" d="M24.607 16.738h20.706v17.303H24.607z"/></g></g><defs><clipPath id="a"><path fill="#fff" transform="translate(.813 .082)" d="M0 0h161v31H0z"/></clipPath></defs></svg>
|
||||
<svg width="162" height="32" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#a)"><path fill="none" d="M.813.082h161v31h-161z"/><path d="M26.047 8.638h.93v6.22h3.43v.88h-4.36v-7.1ZM33.46 15.838c-.38 0-.73-.067-1.05-.2a2.573 2.573 0 0 1-1.38-1.38c-.127-.32-.19-.66-.19-1.02s.063-.697.19-1.01c.133-.32.316-.597.55-.83.233-.233.51-.417.83-.55.32-.14.67-.21 1.05-.21.373 0 .72.07 1.04.21.32.133.596.317.83.55.233.233.413.51.54.83.133.313.2.65.2 1.01s-.068.7-.2 1.02a2.438 2.438 0 0 1-.54.82c-.234.233-.51.42-.83.56-.32.133-.667.2-1.04.2Zm0-.8c.26 0 .496-.047.71-.14.212-.093.392-.22.54-.38.152-.167.27-.357.35-.57.086-.22.13-.457.13-.71 0-.247-.044-.48-.13-.7-.08-.22-.198-.41-.35-.57a1.518 1.518 0 0 0-.54-.39 1.752 1.752 0 0 0-.71-.14c-.26 0-.498.047-.71.14a1.62 1.62 0 0 0-.55.39 1.73 1.73 0 0 0-.36.57c-.08.22-.12.453-.12.7 0 .253.04.49.12.71.086.213.206.403.36.57.152.16.336.287.55.38.212.093.45.14.71.14ZM40.284 12.148l-1.23 3.59h-.76l-1.7-5h.9l1.21 3.65 1.25-3.65h.66l1.25 3.65 1.21-3.65h.91l-1.7 5h-.76l-1.24-3.59Z" fill="#F66A0A"/><path opacity=".3" d="M45.774 22.738c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#037DD6"/><mask id="b" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="26" y="0" width="111" height="31"><path d="M45.774 22.605c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#EAF6FF"/></mask><g mask="url(#b)"><path fill="#F66A0A" stroke="#fff" stroke-width="2" d="M24.607 16.738h20.706v17.303H24.607z"/></g></g><defs><clipPath id="a"><path fill="#fff" transform="translate(.813 .082)" d="M0 0h161v31H0z"/></clipPath></defs></svg>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
@ -1 +1 @@
|
||||
<svg width="162" height="47" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="#fff" d="M.813.082h161v46h-161z"/><path d="m64.268 1.505 2.63 3.54 2.65-3.54h.84v7.1h-.92v-5.52l-2.56 3.44-2.56-3.44v5.52h-.93v-7.1h.85ZM74.257 8.705a2.73 2.73 0 0 1-1.06-.2 2.432 2.432 0 0 1-1.35-1.37 2.91 2.91 0 0 1-.18-1.03c0-.367.064-.707.19-1.02.127-.32.304-.596.53-.83.234-.233.51-.417.83-.55.32-.133.67-.2 1.05-.2.327 0 .634.057.92.17.287.107.537.27.75.49.22.213.394.477.52.79.127.307.19.66.19 1.06v.13c0 .034-.003.077-.01.13h-4.1c.007.233.054.45.14.65.094.2.214.373.36.52.154.147.334.263.54.35.214.08.444.12.69.12.387 0 .704-.077.95-.23.254-.16.457-.373.61-.64l.68.47c-.226.367-.53.657-.91.87-.373.213-.82.32-1.34.32Zm1.51-3.13a1.58 1.58 0 0 0-.19-.55c-.086-.16-.2-.296-.34-.41a1.42 1.42 0 0 0-.46-.26 1.639 1.639 0 0 0-.54-.09 1.728 1.728 0 0 0-1.04.35 1.498 1.498 0 0 0-.38.41 1.49 1.49 0 0 0-.22.55h3.17ZM79.928 8.705c-.353 0-.68-.066-.98-.2a2.57 2.57 0 0 1-.77-.56 2.732 2.732 0 0 1-.52-.83 2.8 2.8 0 0 1-.18-1.01c0-.36.06-.697.18-1.01.127-.313.3-.587.52-.82a2.36 2.36 0 0 1 1.75-.77c.38 0 .727.087 1.04.26.313.167.553.37.72.61v-3.27h.86v7.5h-.86v-.77c-.167.24-.407.447-.72.62a2.18 2.18 0 0 1-1.04.25Zm.13-.79a1.606 1.606 0 0 0 1.22-.52c.153-.167.27-.36.35-.58.087-.22.13-.457.13-.71 0-.253-.043-.49-.13-.71-.08-.22-.197-.41-.35-.57a1.542 1.542 0 0 0-.53-.39 1.657 1.657 0 0 0-.69-.14c-.253 0-.487.047-.7.14a1.65 1.65 0 0 0-.54.39c-.147.16-.263.35-.35.57-.08.22-.12.457-.12.71 0 .253.04.49.12.71.087.22.203.413.35.58.153.16.333.287.54.38.213.093.447.14.7.14ZM84.607 2.265a.599.599 0 0 1-.62-.61c0-.167.06-.31.18-.43s.266-.18.44-.18c.173 0 .317.06.43.18.113.12.17.263.17.43 0 .173-.057.32-.17.44a.583.583 0 0 1-.43.17Zm-.44 1.34h.86v5h-.86v-5ZM88.427 8.705c-.273 0-.523-.046-.75-.14-.227-.1-.42-.236-.58-.41a1.916 1.916 0 0 1-.38-.63 2.614 2.614 0 0 1-.13-.85v-3.07h.86v2.94c0 .42.1.753.3 1 .207.247.483.37.83.37.193 0 .373-.04.54-.12.173-.087.32-.207.44-.36.127-.16.227-.353.3-.58.073-.227.11-.483.11-.77v-2.48h.86v5h-.86v-.77a1.654 1.654 0 0 1-.66.66c-.267.14-.56.21-.88.21ZM98.888 5.665c0-.407-.083-.737-.25-.99-.166-.253-.413-.38-.74-.38-.4 0-.727.157-.98.47-.247.314-.377.74-.39 1.28v2.56h-.86v-2.94c0-.407-.083-.737-.25-.99-.16-.253-.403-.38-.73-.38-.407 0-.74.163-1 .49-.253.327-.38.774-.38 1.34v2.48h-.86v-5h.86v.77a1.63 1.63 0 0 1 .61-.63c.26-.16.56-.24.9-.24.374 0 .69.097.95.29.267.187.463.447.59.78.133-.327.343-.587.63-.78.293-.193.63-.29 1.01-.29.273 0 .517.05.73.15.22.094.404.23.55.41.153.173.27.387.35.64.08.247.12.524.12.83v3.07h-.86v-2.94Z" fill="#037DD6"/><path opacity=".3" d="M45.774 37.738c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#037DD6"/><mask id="a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="26" y="15" width="111" height="31"><path d="M45.774 37.605c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#EAF6FF"/></mask><g mask="url(#a)"><path fill="#037DD6" stroke="#fff" stroke-width="2" d="M62.313 9.791h37.343v39.25H62.313z"/></g></svg>
|
||||
<svg width="162" height="47" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="none" d="M.813.082h161v46h-161z"/><path d="m64.268 1.505 2.63 3.54 2.65-3.54h.84v7.1h-.92v-5.52l-2.56 3.44-2.56-3.44v5.52h-.93v-7.1h.85ZM74.257 8.705a2.73 2.73 0 0 1-1.06-.2 2.432 2.432 0 0 1-1.35-1.37 2.91 2.91 0 0 1-.18-1.03c0-.367.064-.707.19-1.02.127-.32.304-.596.53-.83.234-.233.51-.417.83-.55.32-.133.67-.2 1.05-.2.327 0 .634.057.92.17.287.107.537.27.75.49.22.213.394.477.52.79.127.307.19.66.19 1.06v.13c0 .034-.003.077-.01.13h-4.1c.007.233.054.45.14.65.094.2.214.373.36.52.154.147.334.263.54.35.214.08.444.12.69.12.387 0 .704-.077.95-.23.254-.16.457-.373.61-.64l.68.47c-.226.367-.53.657-.91.87-.373.213-.82.32-1.34.32Zm1.51-3.13a1.58 1.58 0 0 0-.19-.55c-.086-.16-.2-.296-.34-.41a1.42 1.42 0 0 0-.46-.26 1.639 1.639 0 0 0-.54-.09 1.728 1.728 0 0 0-1.04.35 1.498 1.498 0 0 0-.38.41 1.49 1.49 0 0 0-.22.55h3.17ZM79.928 8.705c-.353 0-.68-.066-.98-.2a2.57 2.57 0 0 1-.77-.56 2.732 2.732 0 0 1-.52-.83 2.8 2.8 0 0 1-.18-1.01c0-.36.06-.697.18-1.01.127-.313.3-.587.52-.82a2.36 2.36 0 0 1 1.75-.77c.38 0 .727.087 1.04.26.313.167.553.37.72.61v-3.27h.86v7.5h-.86v-.77c-.167.24-.407.447-.72.62a2.18 2.18 0 0 1-1.04.25Zm.13-.79a1.606 1.606 0 0 0 1.22-.52c.153-.167.27-.36.35-.58.087-.22.13-.457.13-.71 0-.253-.043-.49-.13-.71-.08-.22-.197-.41-.35-.57a1.542 1.542 0 0 0-.53-.39 1.657 1.657 0 0 0-.69-.14c-.253 0-.487.047-.7.14a1.65 1.65 0 0 0-.54.39c-.147.16-.263.35-.35.57-.08.22-.12.457-.12.71 0 .253.04.49.12.71.087.22.203.413.35.58.153.16.333.287.54.38.213.093.447.14.7.14ZM84.607 2.265a.599.599 0 0 1-.62-.61c0-.167.06-.31.18-.43s.266-.18.44-.18c.173 0 .317.06.43.18.113.12.17.263.17.43 0 .173-.057.32-.17.44a.583.583 0 0 1-.43.17Zm-.44 1.34h.86v5h-.86v-5ZM88.427 8.705c-.273 0-.523-.046-.75-.14-.227-.1-.42-.236-.58-.41a1.916 1.916 0 0 1-.38-.63 2.614 2.614 0 0 1-.13-.85v-3.07h.86v2.94c0 .42.1.753.3 1 .207.247.483.37.83.37.193 0 .373-.04.54-.12.173-.087.32-.207.44-.36.127-.16.227-.353.3-.58.073-.227.11-.483.11-.77v-2.48h.86v5h-.86v-.77a1.654 1.654 0 0 1-.66.66c-.267.14-.56.21-.88.21ZM98.888 5.665c0-.407-.083-.737-.25-.99-.166-.253-.413-.38-.74-.38-.4 0-.727.157-.98.47-.247.314-.377.74-.39 1.28v2.56h-.86v-2.94c0-.407-.083-.737-.25-.99-.16-.253-.403-.38-.73-.38-.407 0-.74.163-1 .49-.253.327-.38.774-.38 1.34v2.48h-.86v-5h.86v.77a1.63 1.63 0 0 1 .61-.63c.26-.16.56-.24.9-.24.374 0 .69.097.95.29.267.187.463.447.59.78.133-.327.343-.587.63-.78.293-.193.63-.29 1.01-.29.273 0 .517.05.73.15.22.094.404.23.55.41.153.173.27.387.35.64.08.247.12.524.12.83v3.07h-.86v-2.94Z" fill="#037DD6"/><path opacity=".3" d="M45.774 37.738c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#037DD6"/><mask id="a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="26" y="15" width="111" height="31"><path d="M45.774 37.605c-10.764 7.42-19.417 8-19.417 8h110.251s-8.653-.58-19.417-8c-10.764-7.42-23.364-22-35.709-22-12.344 0-24.944 14.58-35.708 22Z" fill="#EAF6FF"/></mask><g mask="url(#a)"><path fill="#037DD6" stroke="#fff" stroke-width="2" d="M62.313 9.791h37.343v39.25H62.313z"/></g></svg>
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
@ -1,12 +0,0 @@
|
||||
<svg height="78" width="80" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<circle cx="34" cy="34" fill="#fff" r="34"/>
|
||||
<circle cx="34" cy="34" r="32.5" stroke="#38393a" stroke-width="3"/>
|
||||
<path d="M34.407 44.95L22 37.7 34.407 55 46.82 37.7l-12.417 7.25zM34.593 15L22.187 35.37l12.406 7.258L47 35.378z" fill="#38393a"/>
|
||||
<g transform="translate(46 44)">
|
||||
<circle cx="17" cy="17" fill="#fff" r="17"/>
|
||||
<circle cx="17" cy="17" r="15.5" stroke="#38393a" stroke-width="3"/>
|
||||
<path d="M19.077 15.423H25.5v4.154h-6.423V26h-4.154v-6.423H8.5v-4.154h6.423V9h4.154z" fill="#38393a"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 696 B |
@ -1,5 +0,0 @@
|
||||
<svg height="8" width="12" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="#5f5c5d" fill-rule="evenodd">
|
||||
<path d="M12 0v8L6 4zM6 0v8L0 4z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 166 B |
@ -1,3 +0,0 @@
|
||||
<svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.00163 15.2045C6.21347 15.1962 6.45833 15.109 6.61275 14.9637L11.6498 10.2232C11.9385 9.90194 12.0577 9.28597 11.7239 8.92693C11.3952 8.57328 10.7576 8.5838 10.4276 8.93611L6.89052 12.2693L6.89052 1.87164C6.89052 1.38076 6.49254 0.982788 6.00163 0.982788C5.51071 0.982788 5.11274 1.38076 5.11274 1.87164L5.11274 12.2693L1.57565 8.93611C1.27181 8.63281 0.611843 8.57675 0.279352 8.92693C-0.0531095 9.27702 0.0531145 9.91513 0.353459 10.2232L5.3905 14.9637C5.56288 15.126 5.76513 15.205 6.00163 15.2045Z" fill="#D6D9DC"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 636 B |
@ -1,7 +0,0 @@
|
||||
<svg fill="none" height="40" width="40" xmlns="http://www.w3.org/2000/svg">
|
||||
<g fill="#979797">
|
||||
<rect height="4.571" rx="2.286" transform="rotate(180 40 40)" width="40" x="40" y="40"/>
|
||||
<rect height="21.714" rx="2.051" transform="rotate(180 22.564 21.714)" width="4.103" x="22.564" y="21.714"/>
|
||||
<path d="M20.5 30L7.077 12h26.846z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 375 B |
@ -1,5 +0,0 @@
|
||||
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.2042 13.2143C14.5376 13.744 14.6001 14.1964 14.3917 14.5714C14.1894 14.9524 13.7727 15.1429 13.1417 15.1429H2.85603C2.22507 15.1429 1.80543 14.9524 1.5971 14.5714C1.39472 14.1964 1.46019 13.744 1.79353 13.2143L6.2846 6.13393V2.57143H5.71317C5.55841 2.57143 5.42448 2.51488 5.31138 2.40178C5.19829 2.28869 5.14174 2.15476 5.14174 2C5.14174 1.84524 5.19829 1.71131 5.31138 1.59821C5.42448 1.48512 5.55841 1.42857 5.71317 1.42857H10.2846C10.4394 1.42857 10.5733 1.48512 10.6864 1.59821C10.7995 1.71131 10.856 1.84524 10.856 2C10.856 2.15476 10.7995 2.28869 10.6864 2.40178C10.5733 2.51488 10.4394 2.57143 10.2846 2.57143H9.71317V6.13393L14.2042 13.2143ZM7.24888 6.74107L4.82031 10.5714H11.1775L8.74888 6.74107L8.57031 6.46429V6.13393V2.57143H7.42746V6.13393V6.46429L7.24888 6.74107Z" fill="#24292E"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 916 B |
@ -1,4 +0,0 @@
|
||||
|
||||
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.61384 8.90179C9.06027 8.45536 9.28348 7.91667 9.28348 7.28571C9.28348 6.65476 9.06027 6.11607 8.61384 5.66964C8.16741 5.22321 7.62872 5 6.99777 5C6.36682 5 5.82813 5.22321 5.3817 5.66964C4.93527 6.11607 4.71205 6.65476 4.71205 7.28571C4.71205 7.91667 4.93527 8.45536 5.3817 8.90179C5.82813 9.34821 6.36682 9.57143 6.99777 9.57143C7.62872 9.57143 8.16741 9.34821 8.61384 8.90179ZM13.8549 6.3125V8.29464C13.8549 8.36607 13.8311 8.43452 13.7835 8.5C13.7359 8.56548 13.6763 8.60417 13.6049 8.61607L11.9531 8.86607C11.84 9.1875 11.724 9.45833 11.6049 9.67857C11.8132 9.97619 12.1317 10.3869 12.5603 10.9107C12.6198 10.9821 12.6496 11.0565 12.6496 11.1339C12.6496 11.2113 12.6228 11.2798 12.5692 11.3393C12.4085 11.5595 12.1138 11.881 11.6853 12.3036C11.2567 12.7262 10.9769 12.9375 10.846 12.9375C10.7746 12.9375 10.6972 12.9107 10.6138 12.8571L9.3817 11.8929C9.11979 12.0298 8.84896 12.1429 8.5692 12.2321C8.47396 13.0417 8.38765 13.5952 8.31027 13.8929C8.2686 14.0595 8.16146 14.1429 7.98884 14.1429H6.0067C5.92336 14.1429 5.84896 14.1161 5.78348 14.0625C5.72396 14.0149 5.69122 13.9524 5.68527 13.875L5.43527 12.2321C5.1436 12.1369 4.87574 12.0268 4.6317 11.9018L3.37277 12.8571C3.31324 12.9107 3.23884 12.9375 3.14955 12.9375C3.06622 12.9375 2.99182 12.9048 2.92634 12.8393C2.17634 12.1607 1.68527 11.6607 1.45312 11.3393C1.41146 11.2798 1.39062 11.2113 1.39062 11.1339C1.39062 11.0625 1.41443 10.994 1.46205 10.9286C1.55134 10.8036 1.70313 10.6071 1.91741 10.3393C2.1317 10.0655 2.29241 9.85417 2.39955 9.70536C2.23884 9.40774 2.11682 9.11309 2.03348 8.82143L0.399554 8.58036C0.322173 8.56845 0.259673 8.53274 0.212054 8.47321C0.164435 8.40774 0.140625 8.33631 0.140625 8.25893V6.27679C0.140625 6.20536 0.164435 6.1369 0.212054 6.07143C0.259673 6.00595 0.31622 5.96726 0.381696 5.95536L2.04241 5.70536C2.12574 5.43155 2.24182 5.15774 2.39062 4.88393C2.15253 4.54464 1.83408 4.13393 1.43527 3.65178C1.37574 3.58036 1.34598 3.50893 1.34598 3.4375C1.34598 3.37798 1.37277 3.30952 1.42634 3.23214C1.5811 3.01786 1.87277 2.6994 2.30134 2.27678C2.73586 1.84821 3.0186 1.63393 3.14955 1.63393C3.22693 1.63393 3.30432 1.66369 3.3817 1.72321L4.61384 2.67857C4.87574 2.54167 5.14658 2.42857 5.42634 2.33928C5.52158 1.52976 5.60789 0.97619 5.68527 0.678571C5.72693 0.511904 5.83408 0.428571 6.0067 0.428571H7.98884C8.07217 0.428571 8.1436 0.455357 8.20312 0.508928C8.2686 0.556547 8.30432 0.619047 8.31027 0.696428L8.56027 2.33928C8.85194 2.43452 9.11979 2.54464 9.36384 2.66964L10.6317 1.71428C10.6853 1.66071 10.7567 1.63393 10.846 1.63393C10.9234 1.63393 10.9978 1.66369 11.0692 1.72321C11.8371 2.43155 12.3281 2.9375 12.5424 3.24107C12.5841 3.28869 12.6049 3.35417 12.6049 3.4375C12.6049 3.50893 12.5811 3.57738 12.5335 3.64286C12.4442 3.76786 12.2924 3.96726 12.0781 4.24107C11.8638 4.50893 11.7031 4.71726 11.596 4.86607C11.7507 5.16369 11.8728 5.45536 11.9621 5.74107L13.596 5.99107C13.6734 6.00298 13.7359 6.04167 13.7835 6.10714C13.8311 6.16667 13.8549 6.23512 13.8549 6.3125Z" fill="#24292E"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.0 KiB |
@ -1 +0,0 @@
|
||||
<svg fill="none" height="8" viewBox="0 0 7 8" width="7" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m1.97959 1.19291c-.31242-.312422-.81896-.312422-1.131375 0-.312419.31242-.312419.81895 0 1.13137l1.675725 1.67572-1.675725 1.67572c-.312419.31242-.312419.81895 0 1.13137.312415.31242.818955.31242 1.131375 0l1.67572-1.67572 1.67591 1.67591c.31242.31242.81895.31242 1.13137 0s.31242-.81895 0-1.13137l-1.67591-1.67591 1.67591-1.67591c.31242-.31242.31242-.81895 0-1.13137-.31242-.312423-.81895-.312423-1.13137 0l-1.67591 1.67591z" fill="#f9fbff" fill-rule="evenodd"/></svg>
|
Before Width: | Height: | Size: 589 B |
@ -1 +0,0 @@
|
||||
<svg fill="none" height="7" viewBox="0 0 11 7" width="11" xmlns="http://www.w3.org/2000/svg"><path d="m1 1 4.57143 4.57143 4.56927-4.56923" stroke="#545556"/></svg>
|
Before Width: | Height: | Size: 164 B |
@ -1,26 +0,0 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="16" height="16" fill="#E5E5E5"/>
|
||||
<g clip-path="url(#clip0_0_1)">
|
||||
<rect width="413" height="679" transform="translate(-57 -402)" fill="white"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M-31 -376C-31 -380.418 -27.4183 -384 -23 -384H321C325.418 -384 329 -380.418 329 -376V252C329 256.418 325.418 260 321 260H-23C-27.4183 260 -31 256.418 -31 252V-376Z" fill="white"/>
|
||||
</g>
|
||||
<circle cx="8" cy="8" r="7.5" fill="#F2F3F4" stroke="#D6D9DC"/>
|
||||
<line x1="4.1001" y1="7.83325" x2="11.7668" y2="7.83325" stroke="#D6D9DC" stroke-linecap="round"/>
|
||||
</g>
|
||||
<rect x="-2918.5" y="-1621.5" width="9747" height="4874" stroke="black"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="-58" y="-409" width="414" height="698" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="13.5"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.12594 0 0 0 0 0.182502 0 0 0 0 0.305378 0 0 0 0.26 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<clipPath id="clip0_0_1">
|
||||
<rect width="413" height="679" fill="white" transform="translate(-57 -402)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1 +0,0 @@
|
||||
<svg fill="none" height="5" viewBox="0 0 7 5" width="7" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m5.97989.212475c.29348.2833.29348.74262 0 1.025915l-3.81928 3.68674-1.940496-1.87315c-.2934852-.2833-.2934852-.74262 0-1.02592.293485-.2833.769318-.2833 1.062806 0l.87769.84723 2.75647-2.660815c.29349-.2833.76932-.2833 1.06281 0z" fill="#fff" fill-rule="evenodd"/></svg>
|
Before Width: | Height: | Size: 390 B |