create-docusaurus 2.4.1 → 3.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/lib/index.d.ts +3 -3
- package/package.json +8 -8
- package/templates/classic/docusaurus.config.js +7 -4
- package/templates/classic/package.json +7 -7
- package/templates/classic/src/components/HomepageFeatures/index.js +2 -2
- package/templates/classic/src/pages/index.js +4 -2
- package/templates/classic-typescript/package.json +9 -9
- package/templates/classic-typescript/src/components/HomepageFeatures/index.tsx +2 -2
- package/templates/classic-typescript/src/pages/index.tsx +4 -2
- package/templates/classic-typescript/tsconfig.json +1 -1
- package/templates/shared/docs/tutorial-extras/translate-your-site.md +1 -1
- package/templates/facebook/.eslintrc.js +0 -66
- package/templates/facebook/.prettierignore +0 -3
- package/templates/facebook/.prettierrc +0 -9
- package/templates/facebook/.stylelintrc.js +0 -13
- package/templates/facebook/README.md +0 -49
- package/templates/facebook/babel.config.js +0 -12
- package/templates/facebook/docusaurus.config.js +0 -166
- package/templates/facebook/gitignore +0 -23
- package/templates/facebook/package.json +0 -56
- package/templates/facebook/sidebars.js +0 -37
- package/templates/facebook/src/css/custom.css +0 -37
- package/templates/facebook/src/pages/index.js +0 -109
- package/templates/facebook/src/pages/styles.module.css +0 -44
- package/templates/facebook/static/img/meta_opensource_logo.svg +0 -1
- package/templates/facebook/static/img/meta_opensource_logo_negative.svg +0 -1
package/README.md
CHANGED
|
@@ -35,5 +35,18 @@ cd `git rev-parse --show-toplevel` # Back to repo root
|
|
|
35
35
|
rm -rf test-website-in-workspace
|
|
36
36
|
yarn create-docusaurus test-website-in-workspace classic
|
|
37
37
|
cd test-website-in-workspace
|
|
38
|
+
yarn build
|
|
39
|
+
yarn start
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
For the TypeScript template:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
cd `git rev-parse --show-toplevel` # Back to repo root
|
|
46
|
+
rm -rf test-website-in-workspace
|
|
47
|
+
yarn create-docusaurus test-website-in-workspace classic --typescript
|
|
48
|
+
cd test-website-in-workspace
|
|
49
|
+
yarn typecheck
|
|
50
|
+
yarn build
|
|
38
51
|
yarn start
|
|
39
52
|
```
|
package/lib/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
|
-
|
|
7
|
+
type CLIOptions = {
|
|
8
8
|
packageManager?: PackageManager;
|
|
9
9
|
skipInstall?: boolean;
|
|
10
10
|
typescript?: boolean;
|
|
@@ -15,8 +15,8 @@ declare const lockfileNames: {
|
|
|
15
15
|
yarn: string;
|
|
16
16
|
pnpm: string;
|
|
17
17
|
};
|
|
18
|
-
|
|
18
|
+
type PackageManager = keyof typeof lockfileNames;
|
|
19
19
|
declare const gitStrategies: readonly ["deep", "shallow", "copy", "custom"];
|
|
20
|
-
|
|
20
|
+
type GitStrategy = (typeof gitStrategies)[number];
|
|
21
21
|
export default function init(rootDir: string, reqName?: string, reqTemplate?: string, cliOptions?: CLIOptions): Promise<void>;
|
|
22
22
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-docusaurus",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-alpha.0",
|
|
4
4
|
"description": "Create Docusaurus apps easily.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
},
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@docusaurus/logger": "
|
|
26
|
-
"@docusaurus/utils": "
|
|
25
|
+
"@docusaurus/logger": "3.0.0-alpha.0",
|
|
26
|
+
"@docusaurus/utils": "3.0.0-alpha.0",
|
|
27
27
|
"commander": "^5.1.0",
|
|
28
|
-
"fs-extra": "^
|
|
28
|
+
"fs-extra": "^11.1.0",
|
|
29
29
|
"lodash": "^4.17.21",
|
|
30
30
|
"prompts": "^2.4.2",
|
|
31
|
-
"semver": "^7.3.
|
|
31
|
+
"semver": "^7.3.8",
|
|
32
32
|
"shelljs": "^0.8.5",
|
|
33
|
-
"supports-color": "^9.
|
|
34
|
-
"tslib": "^2.
|
|
33
|
+
"supports-color": "^9.3.1",
|
|
34
|
+
"tslib": "^2.5.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/supports-color": "^8.1.1"
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=16.14"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "7327f7ff880ed97ad7855744e59c9c55d467a950"
|
|
43
43
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
// @ts-check
|
|
2
|
-
//
|
|
2
|
+
// `@type` JSDoc annotations allow editor autocompletion and type checking
|
|
3
|
+
// (when paired with `@ts-check`).
|
|
4
|
+
// There are various equivalent ways to declare your Docusaurus config.
|
|
5
|
+
// See: https://docusaurus.io/docs/api/docusaurus-config
|
|
3
6
|
|
|
4
7
|
const lightCodeTheme = require('prism-react-renderer/themes/github');
|
|
5
8
|
const darkCodeTheme = require('prism-react-renderer/themes/dracula');
|
|
@@ -24,9 +27,9 @@ const config = {
|
|
|
24
27
|
onBrokenLinks: 'throw',
|
|
25
28
|
onBrokenMarkdownLinks: 'warn',
|
|
26
29
|
|
|
27
|
-
// Even if you don't use
|
|
28
|
-
// metadata like html lang. For example, if your site is Chinese, you
|
|
29
|
-
// to replace "en" with "zh-Hans".
|
|
30
|
+
// Even if you don't use internationalization, you can use this field to set
|
|
31
|
+
// useful metadata like html lang. For example, if your site is Chinese, you
|
|
32
|
+
// may want to replace "en" with "zh-Hans".
|
|
30
33
|
i18n: {
|
|
31
34
|
defaultLocale: 'en',
|
|
32
35
|
locales: ['en'],
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docusaurus-2-classic-template",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-alpha.0",
|
|
4
4
|
"private": true,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"docusaurus": "docusaurus",
|
|
@@ -14,16 +14,16 @@
|
|
|
14
14
|
"write-heading-ids": "docusaurus write-heading-ids"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@docusaurus/core": "
|
|
18
|
-
"@docusaurus/preset-classic": "
|
|
19
|
-
"@mdx-js/react": "^
|
|
17
|
+
"@docusaurus/core": "3.0.0-alpha.0",
|
|
18
|
+
"@docusaurus/preset-classic": "3.0.0-alpha.0",
|
|
19
|
+
"@mdx-js/react": "^2.3.0",
|
|
20
20
|
"clsx": "^1.2.1",
|
|
21
21
|
"prism-react-renderer": "^1.3.5",
|
|
22
|
-
"react": "^
|
|
23
|
-
"react-dom": "^
|
|
22
|
+
"react": "^18.0.0",
|
|
23
|
+
"react-dom": "^18.0.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@docusaurus/module-type-aliases": "
|
|
26
|
+
"@docusaurus/module-type-aliases": "3.0.0-alpha.0"
|
|
27
27
|
},
|
|
28
28
|
"browserslist": {
|
|
29
29
|
"production": [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import clsx from 'clsx';
|
|
2
|
+
import Heading from '@theme/Heading';
|
|
3
3
|
import styles from './styles.module.css';
|
|
4
4
|
|
|
5
5
|
const FeatureList = [
|
|
@@ -42,7 +42,7 @@ function Feature({Svg, title, description}) {
|
|
|
42
42
|
<Svg className={styles.featureSvg} role="img" />
|
|
43
43
|
</div>
|
|
44
44
|
<div className="text--center padding-horiz--md">
|
|
45
|
-
<h3>{title}</
|
|
45
|
+
<Heading as="h3">{title}</Heading>
|
|
46
46
|
<p>{description}</p>
|
|
47
47
|
</div>
|
|
48
48
|
</div>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import clsx from 'clsx';
|
|
3
2
|
import Link from '@docusaurus/Link';
|
|
4
3
|
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
|
5
4
|
import Layout from '@theme/Layout';
|
|
6
5
|
import HomepageFeatures from '@site/src/components/HomepageFeatures';
|
|
7
6
|
|
|
7
|
+
import Heading from '@theme/Heading';
|
|
8
8
|
import styles from './index.module.css';
|
|
9
9
|
|
|
10
10
|
function HomepageHeader() {
|
|
@@ -12,7 +12,9 @@ function HomepageHeader() {
|
|
|
12
12
|
return (
|
|
13
13
|
<header className={clsx('hero hero--primary', styles.heroBanner)}>
|
|
14
14
|
<div className="container">
|
|
15
|
-
<h1 className="hero__title">
|
|
15
|
+
<Heading as="h1" className="hero__title">
|
|
16
|
+
{siteConfig.title}
|
|
17
|
+
</Heading>
|
|
16
18
|
<p className="hero__subtitle">{siteConfig.tagline}</p>
|
|
17
19
|
<div className={styles.buttons}>
|
|
18
20
|
<Link
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docusaurus-2-classic-typescript-template",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-alpha.0",
|
|
4
4
|
"private": true,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"docusaurus": "docusaurus",
|
|
@@ -15,18 +15,18 @@
|
|
|
15
15
|
"typecheck": "tsc"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@docusaurus/core": "
|
|
19
|
-
"@docusaurus/preset-classic": "
|
|
20
|
-
"@mdx-js/react": "^
|
|
18
|
+
"@docusaurus/core": "3.0.0-alpha.0",
|
|
19
|
+
"@docusaurus/preset-classic": "3.0.0-alpha.0",
|
|
20
|
+
"@mdx-js/react": "^2.3.0",
|
|
21
21
|
"clsx": "^1.2.1",
|
|
22
22
|
"prism-react-renderer": "^1.3.5",
|
|
23
|
-
"react": "^
|
|
24
|
-
"react-dom": "^
|
|
23
|
+
"react": "^18.0.0",
|
|
24
|
+
"react-dom": "^18.0.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@docusaurus/module-type-aliases": "
|
|
28
|
-
"@tsconfig
|
|
29
|
-
"typescript": "^
|
|
27
|
+
"@docusaurus/module-type-aliases": "3.0.0-alpha.0",
|
|
28
|
+
"@docusaurus/tsconfig": "3.0.0-alpha.0",
|
|
29
|
+
"typescript": "^5.0.4"
|
|
30
30
|
},
|
|
31
31
|
"browserslist": {
|
|
32
32
|
"production": [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import clsx from 'clsx';
|
|
2
|
+
import Heading from '@theme/Heading';
|
|
3
3
|
import styles from './styles.module.css';
|
|
4
4
|
|
|
5
5
|
type FeatureItem = {
|
|
@@ -48,7 +48,7 @@ function Feature({title, Svg, description}: FeatureItem) {
|
|
|
48
48
|
<Svg className={styles.featureSvg} role="img" />
|
|
49
49
|
</div>
|
|
50
50
|
<div className="text--center padding-horiz--md">
|
|
51
|
-
<h3>{title}</
|
|
51
|
+
<Heading as="h3">{title}</Heading>
|
|
52
52
|
<p>{description}</p>
|
|
53
53
|
</div>
|
|
54
54
|
</div>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import clsx from 'clsx';
|
|
3
2
|
import Link from '@docusaurus/Link';
|
|
4
3
|
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
|
5
4
|
import Layout from '@theme/Layout';
|
|
6
5
|
import HomepageFeatures from '@site/src/components/HomepageFeatures';
|
|
6
|
+
import Heading from '@theme/Heading';
|
|
7
7
|
|
|
8
8
|
import styles from './index.module.css';
|
|
9
9
|
|
|
@@ -12,7 +12,9 @@ function HomepageHeader() {
|
|
|
12
12
|
return (
|
|
13
13
|
<header className={clsx('hero hero--primary', styles.heroBanner)}>
|
|
14
14
|
<div className="container">
|
|
15
|
-
<h1 className="hero__title">
|
|
15
|
+
<Heading as="h1" className="hero__title">
|
|
16
|
+
{siteConfig.title}
|
|
17
|
+
</Heading>
|
|
16
18
|
<p className="hero__subtitle">{siteConfig.tagline}</p>
|
|
17
19
|
<div className={styles.buttons}>
|
|
18
20
|
<Link
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
-
*
|
|
4
|
-
* This source code is licensed under the MIT license found in the
|
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
|
6
|
-
*
|
|
7
|
-
* @format
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
const OFF = 0;
|
|
11
|
-
const WARNING = 1;
|
|
12
|
-
const ERROR = 2;
|
|
13
|
-
|
|
14
|
-
module.exports = {
|
|
15
|
-
root: true,
|
|
16
|
-
env: {
|
|
17
|
-
browser: true,
|
|
18
|
-
commonjs: true,
|
|
19
|
-
jest: true,
|
|
20
|
-
node: true,
|
|
21
|
-
},
|
|
22
|
-
parser: '@babel/eslint-parser',
|
|
23
|
-
parserOptions: {
|
|
24
|
-
allowImportExportEverywhere: true,
|
|
25
|
-
},
|
|
26
|
-
extends: ['airbnb', 'prettier'],
|
|
27
|
-
plugins: ['react-hooks', 'header'],
|
|
28
|
-
rules: {
|
|
29
|
-
// Ignore certain webpack alias because it can't be resolved
|
|
30
|
-
'import/no-unresolved': [
|
|
31
|
-
ERROR,
|
|
32
|
-
{ignore: ['^@theme', '^@docusaurus', '^@generated']},
|
|
33
|
-
],
|
|
34
|
-
'import/extensions': OFF,
|
|
35
|
-
'header/header': [
|
|
36
|
-
ERROR,
|
|
37
|
-
'block',
|
|
38
|
-
|
|
39
|
-
[
|
|
40
|
-
'*',
|
|
41
|
-
' * Copyright (c) Meta Platforms, Inc. and affiliates.',
|
|
42
|
-
' *',
|
|
43
|
-
' * This source code is licensed under the MIT license found in the',
|
|
44
|
-
' * LICENSE file in the root directory of this source tree.',
|
|
45
|
-
' *',
|
|
46
|
-
// Unfortunately eslint-plugin-header doesn't support optional lines.
|
|
47
|
-
// If you want to enforce your website JS files to have @flow or @format,
|
|
48
|
-
// modify these lines accordingly.
|
|
49
|
-
{
|
|
50
|
-
pattern: '.* @format',
|
|
51
|
-
},
|
|
52
|
-
' ',
|
|
53
|
-
],
|
|
54
|
-
],
|
|
55
|
-
'react/jsx-filename-extension': OFF,
|
|
56
|
-
'react-hooks/rules-of-hooks': ERROR,
|
|
57
|
-
'react/prop-types': OFF, // PropTypes aren't used much these days.
|
|
58
|
-
'react/function-component-definition': [
|
|
59
|
-
WARNING,
|
|
60
|
-
{
|
|
61
|
-
namedComponents: 'function-declaration',
|
|
62
|
-
unnamedComponents: 'arrow-function',
|
|
63
|
-
},
|
|
64
|
-
],
|
|
65
|
-
},
|
|
66
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
-
*
|
|
4
|
-
* This source code is licensed under the MIT license found in the
|
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
module.exports = {
|
|
9
|
-
plugins: ['stylelint-copyright'],
|
|
10
|
-
rules: {
|
|
11
|
-
'docusaurus/copyright-header': true,
|
|
12
|
-
},
|
|
13
|
-
};
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
# Website
|
|
2
|
-
|
|
3
|
-
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
|
|
4
|
-
|
|
5
|
-
### Installation
|
|
6
|
-
|
|
7
|
-
```
|
|
8
|
-
$ yarn
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
### Local Development
|
|
12
|
-
|
|
13
|
-
```
|
|
14
|
-
$ yarn start
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
|
|
18
|
-
|
|
19
|
-
### Build
|
|
20
|
-
|
|
21
|
-
```
|
|
22
|
-
$ yarn build
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
This command generates static content into the `build` directory and can be served using any static contents hosting service.
|
|
26
|
-
|
|
27
|
-
### Deployment
|
|
28
|
-
|
|
29
|
-
Using SSH:
|
|
30
|
-
|
|
31
|
-
```
|
|
32
|
-
$ USE_SSH=true yarn deploy
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
Not using SSH:
|
|
36
|
-
|
|
37
|
-
```
|
|
38
|
-
$ GIT_USER=<Your GitHub username> yarn deploy
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
|
|
42
|
-
|
|
43
|
-
### Continuous Integration
|
|
44
|
-
|
|
45
|
-
Some common defaults for linting/formatting have been set for you. If you integrate your project with an open source Continuous Integration system (e.g. Travis CI, CircleCI), you may check for issues using the following command.
|
|
46
|
-
|
|
47
|
-
```
|
|
48
|
-
$ yarn ci
|
|
49
|
-
```
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
-
*
|
|
4
|
-
* This source code is licensed under the MIT license found in the
|
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
|
6
|
-
*
|
|
7
|
-
* @format
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
module.exports = {
|
|
11
|
-
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
|
|
12
|
-
};
|
|
@@ -1,166 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
-
*
|
|
4
|
-
* This source code is licensed under the MIT license found in the
|
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
|
6
|
-
*
|
|
7
|
-
* @format
|
|
8
|
-
*/
|
|
9
|
-
// @ts-check
|
|
10
|
-
// Note: type annotations allow type checking and IDEs autocompletion
|
|
11
|
-
|
|
12
|
-
/** @type {import('@docusaurus/types').Config} */
|
|
13
|
-
const config = {
|
|
14
|
-
title: 'My Site',
|
|
15
|
-
tagline: 'The tagline of my site',
|
|
16
|
-
favicon: 'img/favicon.ico',
|
|
17
|
-
|
|
18
|
-
// Set the production url of your site here
|
|
19
|
-
url: 'https://your-docusaurus-test-site.com',
|
|
20
|
-
// Set the /<baseUrl>/ pathname under which your site is served
|
|
21
|
-
// For GitHub pages deployment, it is often '/<projectName>/'
|
|
22
|
-
baseUrl: '/',
|
|
23
|
-
|
|
24
|
-
// GitHub pages deployment config.
|
|
25
|
-
// If you aren't using GitHub pages, you don't need these.
|
|
26
|
-
organizationName: 'facebook', // Usually your GitHub org/user name.
|
|
27
|
-
projectName: 'docusaurus', // Usually your repo name.
|
|
28
|
-
|
|
29
|
-
onBrokenLinks: 'throw',
|
|
30
|
-
onBrokenMarkdownLinks: 'warn',
|
|
31
|
-
|
|
32
|
-
presets: [
|
|
33
|
-
[
|
|
34
|
-
'classic',
|
|
35
|
-
/** @type {import('@docusaurus/preset-classic').Options} */
|
|
36
|
-
({
|
|
37
|
-
docs: {
|
|
38
|
-
sidebarPath: require.resolve('./sidebars.js'),
|
|
39
|
-
// Please change this to your repo.
|
|
40
|
-
// Remove this to remove the "edit this page" links.
|
|
41
|
-
editUrl:
|
|
42
|
-
'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
|
|
43
|
-
},
|
|
44
|
-
blog: {
|
|
45
|
-
showReadingTime: true,
|
|
46
|
-
// Please change this to your repo.
|
|
47
|
-
// Remove this to remove the "edit this page" links.
|
|
48
|
-
editUrl:
|
|
49
|
-
'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
|
|
50
|
-
},
|
|
51
|
-
theme: {
|
|
52
|
-
customCss: require.resolve('./src/css/custom.css'),
|
|
53
|
-
},
|
|
54
|
-
}),
|
|
55
|
-
],
|
|
56
|
-
],
|
|
57
|
-
|
|
58
|
-
themeConfig:
|
|
59
|
-
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
|
|
60
|
-
({
|
|
61
|
-
image: 'img/docusaurus-social-card.jpg',
|
|
62
|
-
navbar: {
|
|
63
|
-
title: 'My Meta Project',
|
|
64
|
-
logo: {
|
|
65
|
-
alt: 'My Meta Project Logo',
|
|
66
|
-
src: 'img/logo.svg',
|
|
67
|
-
},
|
|
68
|
-
items: [
|
|
69
|
-
{
|
|
70
|
-
type: 'docSidebar',
|
|
71
|
-
sidebarId: 'tutorialSidebar',
|
|
72
|
-
position: 'left',
|
|
73
|
-
label: 'Tutorial',
|
|
74
|
-
},
|
|
75
|
-
{to: 'blog', label: 'Blog', position: 'left'},
|
|
76
|
-
// Please keep GitHub link to the right for consistency.
|
|
77
|
-
{
|
|
78
|
-
href: 'https://github.com/facebook/docusaurus',
|
|
79
|
-
label: 'GitHub',
|
|
80
|
-
position: 'right',
|
|
81
|
-
},
|
|
82
|
-
],
|
|
83
|
-
},
|
|
84
|
-
footer: {
|
|
85
|
-
style: 'dark',
|
|
86
|
-
links: [
|
|
87
|
-
{
|
|
88
|
-
title: 'Learn',
|
|
89
|
-
items: [
|
|
90
|
-
{
|
|
91
|
-
label: 'Style Guide',
|
|
92
|
-
to: 'docs/',
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
label: 'Second Doc',
|
|
96
|
-
to: 'docs/doc2',
|
|
97
|
-
},
|
|
98
|
-
],
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
title: 'Community',
|
|
102
|
-
items: [
|
|
103
|
-
{
|
|
104
|
-
label: 'Stack Overflow',
|
|
105
|
-
href: 'https://stackoverflow.com/questions/tagged/docusaurus',
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
label: 'Twitter',
|
|
109
|
-
href: 'https://twitter.com/docusaurus',
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
label: 'Discord',
|
|
113
|
-
href: 'https://discordapp.com/invite/docusaurus',
|
|
114
|
-
},
|
|
115
|
-
],
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
title: 'More',
|
|
119
|
-
items: [
|
|
120
|
-
{
|
|
121
|
-
label: 'Blog',
|
|
122
|
-
to: 'blog',
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
label: 'GitHub',
|
|
126
|
-
href: 'https://github.com/facebook/docusaurus',
|
|
127
|
-
},
|
|
128
|
-
],
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
title: 'Legal',
|
|
132
|
-
// Please do not remove the privacy and terms, it's a legal requirement.
|
|
133
|
-
items: [
|
|
134
|
-
{
|
|
135
|
-
label: 'Privacy',
|
|
136
|
-
href: 'https://opensource.fb.com/legal/privacy/',
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
label: 'Terms',
|
|
140
|
-
href: 'https://opensource.fb.com/legal/terms/',
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
label: 'Data Policy',
|
|
144
|
-
href: 'https://opensource.fb.com/legal/data-policy/',
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
label: 'Cookie Policy',
|
|
148
|
-
href: 'https://opensource.fb.com/legal/cookie-policy/',
|
|
149
|
-
},
|
|
150
|
-
],
|
|
151
|
-
},
|
|
152
|
-
],
|
|
153
|
-
logo: {
|
|
154
|
-
alt: 'Meta Open Source Logo',
|
|
155
|
-
// This default includes a positive & negative version, allowing for
|
|
156
|
-
// appropriate use depending on your site's style.
|
|
157
|
-
src: '/img/meta_opensource_logo_negative.svg',
|
|
158
|
-
href: 'https://opensource.fb.com',
|
|
159
|
-
},
|
|
160
|
-
// Please do not remove the credits, help to publicize Docusaurus :)
|
|
161
|
-
copyright: `Copyright © ${new Date().getFullYear()} Meta Platforms, Inc. Built with Docusaurus.`,
|
|
162
|
-
},
|
|
163
|
-
}),
|
|
164
|
-
};
|
|
165
|
-
|
|
166
|
-
module.exports = config;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# Dependencies
|
|
2
|
-
/node_modules
|
|
3
|
-
|
|
4
|
-
# Production
|
|
5
|
-
/build
|
|
6
|
-
|
|
7
|
-
# Generated files
|
|
8
|
-
.docusaurus
|
|
9
|
-
.cache-loader
|
|
10
|
-
|
|
11
|
-
# Misc
|
|
12
|
-
.DS_Store
|
|
13
|
-
.env.local
|
|
14
|
-
.env.development.local
|
|
15
|
-
.env.test.local
|
|
16
|
-
.env.production.local
|
|
17
|
-
|
|
18
|
-
npm-debug.log*
|
|
19
|
-
yarn-debug.log*
|
|
20
|
-
yarn-error.log*
|
|
21
|
-
|
|
22
|
-
# ESLint
|
|
23
|
-
.eslintcache
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "docusaurus-2-facebook-template",
|
|
3
|
-
"version": "2.4.1",
|
|
4
|
-
"private": true,
|
|
5
|
-
"scripts": {
|
|
6
|
-
"docusaurus": "docusaurus",
|
|
7
|
-
"start": "docusaurus start",
|
|
8
|
-
"build": "docusaurus build",
|
|
9
|
-
"swizzle": "docusaurus swizzle",
|
|
10
|
-
"deploy": "docusaurus deploy",
|
|
11
|
-
"clear": "docusaurus clear",
|
|
12
|
-
"serve": "docusaurus serve",
|
|
13
|
-
"write-translations": "docusaurus write-translations",
|
|
14
|
-
"write-heading-ids": "docusaurus write-heading-ids",
|
|
15
|
-
"ci": "yarn lint && yarn format:diff",
|
|
16
|
-
"lint": "eslint --cache \"**/*.js\" && stylelint \"**/*.css\"",
|
|
17
|
-
"format": "prettier --config .prettierrc --write \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
|
|
18
|
-
"format:diff": "prettier --config .prettierrc --list-different \"**/*.{js,jsx,ts,tsx,md,mdx}\""
|
|
19
|
-
},
|
|
20
|
-
"dependencies": {
|
|
21
|
-
"@docusaurus/core": "2.4.1",
|
|
22
|
-
"@docusaurus/preset-classic": "2.4.1",
|
|
23
|
-
"@mdx-js/react": "^1.6.22",
|
|
24
|
-
"clsx": "^1.2.1",
|
|
25
|
-
"react": "^17.0.2",
|
|
26
|
-
"react-dom": "^17.0.2"
|
|
27
|
-
},
|
|
28
|
-
"devDependencies": {
|
|
29
|
-
"@babel/eslint-parser": "^7.18.2",
|
|
30
|
-
"eslint": "^8.19.0",
|
|
31
|
-
"eslint-config-airbnb": "^19.0.4",
|
|
32
|
-
"eslint-config-prettier": "^8.5.0",
|
|
33
|
-
"eslint-plugin-header": "^3.1.1",
|
|
34
|
-
"eslint-plugin-import": "^2.26.0",
|
|
35
|
-
"eslint-plugin-jsx-a11y": "^6.6.0",
|
|
36
|
-
"eslint-plugin-react": "^7.30.1",
|
|
37
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
38
|
-
"prettier": "^2.7.1",
|
|
39
|
-
"stylelint": "^14.9.1"
|
|
40
|
-
},
|
|
41
|
-
"browserslist": {
|
|
42
|
-
"production": [
|
|
43
|
-
">0.5%",
|
|
44
|
-
"not dead",
|
|
45
|
-
"not op_mini all"
|
|
46
|
-
],
|
|
47
|
-
"development": [
|
|
48
|
-
"last 1 chrome version",
|
|
49
|
-
"last 1 firefox version",
|
|
50
|
-
"last 1 safari version"
|
|
51
|
-
]
|
|
52
|
-
},
|
|
53
|
-
"engines": {
|
|
54
|
-
"node": ">=16.14"
|
|
55
|
-
}
|
|
56
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
-
*
|
|
4
|
-
* This source code is licensed under the MIT license found in the
|
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
|
6
|
-
*
|
|
7
|
-
* @format
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Creating a sidebar enables you to:
|
|
12
|
-
- create an ordered group of docs
|
|
13
|
-
- render a sidebar for each doc of that group
|
|
14
|
-
- provide next/previous navigation
|
|
15
|
-
|
|
16
|
-
The sidebars can be generated from the filesystem, or explicitly defined here.
|
|
17
|
-
|
|
18
|
-
Create as many sidebars as you want.
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
module.exports = {
|
|
22
|
-
// By default, Docusaurus generates a sidebar from the docs folder structure
|
|
23
|
-
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
|
|
24
|
-
|
|
25
|
-
// But you can create a sidebar manually
|
|
26
|
-
/*
|
|
27
|
-
tutorialSidebar: [
|
|
28
|
-
'intro',
|
|
29
|
-
'hello',
|
|
30
|
-
{
|
|
31
|
-
type: 'category',
|
|
32
|
-
label: 'Tutorial',
|
|
33
|
-
items: ['tutorial-basics/create-a-document'],
|
|
34
|
-
},
|
|
35
|
-
],
|
|
36
|
-
*/
|
|
37
|
-
};
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
-
*
|
|
4
|
-
* This source code is licensed under the MIT license found in the
|
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
|
6
|
-
*
|
|
7
|
-
* @format
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Any CSS included here will be global. The classic template
|
|
12
|
-
* bundles Infima by default. Infima is a CSS framework designed to
|
|
13
|
-
* work well for content-centric websites.
|
|
14
|
-
*/
|
|
15
|
-
|
|
16
|
-
/* You can override the default Infima variables here. */
|
|
17
|
-
:root {
|
|
18
|
-
--ifm-color-primary: #2e8555;
|
|
19
|
-
--ifm-color-primary-dark: #29784c;
|
|
20
|
-
--ifm-color-primary-darker: #277148;
|
|
21
|
-
--ifm-color-primary-darkest: #205d3b;
|
|
22
|
-
--ifm-color-primary-light: #33925d;
|
|
23
|
-
--ifm-color-primary-lighter: #359962;
|
|
24
|
-
--ifm-color-primary-lightest: #3cad6e;
|
|
25
|
-
--ifm-code-font-size: 95%;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
/* For readability concerns, you should choose a lighter palette in dark mode. */
|
|
29
|
-
[data-theme='dark'] {
|
|
30
|
-
--ifm-color-primary: #25c2a0;
|
|
31
|
-
--ifm-color-primary-dark: #21af90;
|
|
32
|
-
--ifm-color-primary-darker: #1fa588;
|
|
33
|
-
--ifm-color-primary-darkest: #1a8870;
|
|
34
|
-
--ifm-color-primary-light: #29d5b0;
|
|
35
|
-
--ifm-color-primary-lighter: #32d8b4;
|
|
36
|
-
--ifm-color-primary-lightest: #4fddbf;
|
|
37
|
-
}
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
-
*
|
|
4
|
-
* This source code is licensed under the MIT license found in the
|
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
|
6
|
-
*
|
|
7
|
-
* @format
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
import React from 'react';
|
|
11
|
-
import clsx from 'clsx';
|
|
12
|
-
import Layout from '@theme/Layout';
|
|
13
|
-
import Link from '@docusaurus/Link';
|
|
14
|
-
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
|
15
|
-
import useBaseUrl from '@docusaurus/useBaseUrl';
|
|
16
|
-
import styles from './styles.module.css';
|
|
17
|
-
|
|
18
|
-
const features = [
|
|
19
|
-
{
|
|
20
|
-
title: 'Easy to Use',
|
|
21
|
-
imageUrl: 'img/undraw_docusaurus_mountain.svg',
|
|
22
|
-
description: (
|
|
23
|
-
<>
|
|
24
|
-
Docusaurus was designed from the ground up to be easily installed and
|
|
25
|
-
used to get your website up and running quickly.
|
|
26
|
-
</>
|
|
27
|
-
),
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
title: 'Focus on What Matters',
|
|
31
|
-
imageUrl: 'img/undraw_docusaurus_tree.svg',
|
|
32
|
-
description: (
|
|
33
|
-
<>
|
|
34
|
-
Docusaurus lets you focus on your docs, and we'll do the chores. Go
|
|
35
|
-
ahead and move your docs into the <code>docs</code> directory.
|
|
36
|
-
</>
|
|
37
|
-
),
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
title: 'Powered by React',
|
|
41
|
-
imageUrl: 'img/undraw_docusaurus_react.svg',
|
|
42
|
-
description: (
|
|
43
|
-
<>
|
|
44
|
-
Extend or customize your website layout by reusing React. Docusaurus can
|
|
45
|
-
be extended while reusing the same header and footer.
|
|
46
|
-
</>
|
|
47
|
-
),
|
|
48
|
-
},
|
|
49
|
-
];
|
|
50
|
-
|
|
51
|
-
function Feature({imageUrl, title, description}) {
|
|
52
|
-
const imgUrl = useBaseUrl(imageUrl);
|
|
53
|
-
return (
|
|
54
|
-
<div className={clsx('col col--4', styles.feature)}>
|
|
55
|
-
{imgUrl && (
|
|
56
|
-
<div className="text--center">
|
|
57
|
-
<img className={styles.featureImage} src={imgUrl} alt={title} />
|
|
58
|
-
</div>
|
|
59
|
-
)}
|
|
60
|
-
<h3>{title}</h3>
|
|
61
|
-
<p>{description}</p>
|
|
62
|
-
</div>
|
|
63
|
-
);
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
export default function Home() {
|
|
67
|
-
const context = useDocusaurusContext();
|
|
68
|
-
const {siteConfig = {}} = context;
|
|
69
|
-
return (
|
|
70
|
-
<Layout
|
|
71
|
-
title={`Hello from ${siteConfig.title}`}
|
|
72
|
-
description="Description will go into a meta tag in <head />">
|
|
73
|
-
<header className={clsx('hero hero--primary', styles.heroBanner)}>
|
|
74
|
-
<div className="container">
|
|
75
|
-
<h1 className="hero__title">{siteConfig.title}</h1>
|
|
76
|
-
<p className="hero__subtitle">{siteConfig.tagline}</p>
|
|
77
|
-
<div className={styles.buttons}>
|
|
78
|
-
<Link
|
|
79
|
-
className={clsx(
|
|
80
|
-
'button button--outline button--secondary button--lg',
|
|
81
|
-
styles.getStarted,
|
|
82
|
-
)}
|
|
83
|
-
to={useBaseUrl('docs/')}>
|
|
84
|
-
Get Started
|
|
85
|
-
</Link>
|
|
86
|
-
</div>
|
|
87
|
-
</div>
|
|
88
|
-
</header>
|
|
89
|
-
<main>
|
|
90
|
-
{features && features.length > 0 && (
|
|
91
|
-
<section className={styles.features}>
|
|
92
|
-
<div className="container">
|
|
93
|
-
<div className="row">
|
|
94
|
-
{features.map(({title, imageUrl, description}) => (
|
|
95
|
-
<Feature
|
|
96
|
-
key={title}
|
|
97
|
-
title={title}
|
|
98
|
-
imageUrl={imageUrl}
|
|
99
|
-
description={description}
|
|
100
|
-
/>
|
|
101
|
-
))}
|
|
102
|
-
</div>
|
|
103
|
-
</div>
|
|
104
|
-
</section>
|
|
105
|
-
)}
|
|
106
|
-
</main>
|
|
107
|
-
</Layout>
|
|
108
|
-
);
|
|
109
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
-
*
|
|
4
|
-
* This source code is licensed under the MIT license found in the
|
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
|
6
|
-
*
|
|
7
|
-
* @format
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* CSS files with the .module.css suffix will be treated as CSS modules
|
|
12
|
-
* and scoped locally.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
.heroBanner {
|
|
16
|
-
padding: 4rem 0;
|
|
17
|
-
text-align: center;
|
|
18
|
-
position: relative;
|
|
19
|
-
overflow: hidden;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
@media screen and (max-width: 996px) {
|
|
23
|
-
.heroBanner {
|
|
24
|
-
padding: 2rem;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.buttons {
|
|
29
|
-
display: flex;
|
|
30
|
-
align-items: center;
|
|
31
|
-
justify-content: center;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.features {
|
|
35
|
-
display: flex;
|
|
36
|
-
align-items: center;
|
|
37
|
-
padding: 2rem 0;
|
|
38
|
-
width: 100%;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.featureImage {
|
|
42
|
-
height: 200px;
|
|
43
|
-
width: 200px;
|
|
44
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 6090.9521 1307.1739" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="739.4327" x2="604.5946" y1="604.6622" y2="427.9775"><stop offset=".0006" stop-color="#0867df"/><stop offset=".4539" stop-color="#0668e1"/><stop offset=".8591" stop-color="#0064e0"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="476.93" x2="569.3698" y1="490.2073" y2="420.0277"><stop offset=".1323" stop-color="#0064df"/><stop offset=".9988" stop-color="#0064e0"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="437.7486" x2="474.8296" y1="593.1932" y2="499.849"><stop offset=".0147" stop-color="#0072ec"/><stop offset=".6881" stop-color="#0064df"/></linearGradient><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="432.7129" x2="437.0034" y1="660.6261" y2="603.6183"><stop offset=".0731" stop-color="#007cf6"/><stop offset=".9943" stop-color="#0072ec"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="435.0724" x2="432.0034" y1="691.5921" y2="668.7519"><stop offset=".0731" stop-color="#007ff9"/><stop offset="1" stop-color="#007cf6"/></linearGradient><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="433.2708" x2="452.3974" y1="697.5917" y2="738.159"><stop offset=".0731" stop-color="#007ff9"/><stop offset="1" stop-color="#0082fb"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="727.2435" x2="752.5295" y1="501.3039" y2="466.3321"><stop offset=".2799" stop-color="#007ff8"/><stop offset=".9141" stop-color="#0082fb"/></linearGradient><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="919.4945" x2="972.3929" y1="455.9788" y2="650.5693"><stop offset="0" stop-color="#0082fb"/><stop offset=".9995" stop-color="#0081fa"/></linearGradient><linearGradient id="i" gradientUnits="userSpaceOnUse" x1="985.1641" x2="951.6867" y1="658.0135" y2="725.6651"><stop offset=".0619" stop-color="#0081fa"/><stop offset="1" stop-color="#0080f9"/></linearGradient><linearGradient id="j" gradientUnits="userSpaceOnUse" x1="925.0793" x2="956.3733" y1="761.5316" y2="740.2173"><stop offset="0" stop-color="#027af3"/><stop offset="1" stop-color="#0080f9"/></linearGradient><linearGradient id="k" gradientUnits="userSpaceOnUse" x1="875.9993" x2="919.4855" y1="765.6962" y2="765.6962"><stop offset="0" stop-color="#0377ef"/><stop offset=".9994" stop-color="#0279f1"/></linearGradient><linearGradient id="l" gradientUnits="userSpaceOnUse" x1="838.1927" x2="869.456" y1="741.7469" y2="760.1399"><stop offset=".0019" stop-color="#0471e9"/><stop offset="1" stop-color="#0377ef"/></linearGradient><linearGradient id="m" gradientUnits="userSpaceOnUse" x1="742.8261" x2="842.9741" y1="606.1226" y2="732.0393"><stop offset=".2765" stop-color="#0867df"/><stop offset="1" stop-color="#0471e9"/></linearGradient><path d="m0 0h6090.9521v1307.1739h-6090.9521z" fill="none"/><g fill="#1c2b33"><path d="m1128.7222 412.9337h75.2227l127.9067 231.3674 127.9022-231.3674h73.5962v380.1863h-61.37v-291.3869l-112.1616 201.7691h-57.57l-112.1513-201.7691v291.3869h-61.3749z"/><path d="m1731.3132 799.9078q-42.6371 0-74.9516-18.8712a131.99 131.99 0 0 1 -50.3722-52.2794q-18.0643-33.4014-18.0622-76.5786 0-43.7174 17.6532-77.3966 17.6509-33.6683 49.0208-52.684 31.3609-19.0045 72.0976-19.009 40.4631 0 69.6525 19.1468 29.1937 19.1448 44.9442 53.6353 15.7506 34.4884 15.755 80.9219v16.84h-208.2905q5.7014 34.7618 28.1046 54.72 22.4055 19.9581 56.6227 19.96 27.4266 0 47.2515-8.1487 19.8182-8.1486 37.2046-24.7127l32.59 39.9209q-48.6185 44.5375-119.2202 44.5353zm44.8109-225.53q-19.2846-19.6914-50.51-19.6892-30.4207 0-50.9191 20.0938-20.5116 20.1048-25.9352 54.0442h149.3608q-2.7206-34.7621-21.9965-54.4492z"/><path d="m1931.46 560.1206h-56.4849v-50.2389h56.4849v-83.1h59.2055v83.1h85.812v50.2389h-85.812v127.36q0 31.7744 10.86 45.3532 10.8627 13.5834 37.2046 13.5767a174.3473 174.3473 0 0 0 19.8226-.9514q8.1487-.9468 17.9244-2.5784v49.6966a168.0043 168.0043 0 0 1 -22.6766 4.8856 177.849 177.849 0 0 1 -26.4776 1.9027q-95.8634 0-95.8633-104.8211z"/><path d="m2384.9789 793.12h-58.1164v-39.65a105.0015 105.0015 0 0 1 -39.374 34.355q-23.899 12.0764-54.311 12.0829-37.4757 0-66.3983-19.1424-28.9271-19.1513-45.4867-52.6839-16.564-33.5349-16.564-76.7165 0-43.45 16.8352-76.8542 16.8375-33.4016 46.5758-52.4128 29.7271-19.0045 68.2922-19.009 29.06 0 52.146 11.2694a103.1259 103.1259 0 0 1 38.2848 31.91v-36.3868h58.1164zm-59.2011-184.12q-9.5089-24.1659-30.0073-38.156-20.505-13.9767-47.3893-13.9812-38.0226 0-60.5569 25.5263-22.5388 25.5261-22.5388 68.9767 0 43.7241 21.7252 69.248 21.7186 25.5262 58.9255 25.5262 27.4334 0 48.883-14.1234a79.7842 79.7842 0 0 0 30.9586-38.0182z"/><path d="m2529.4452 681.9147q-14.1236-35.9822-14.119-78.89 0-42.9037 14.119-78.8859a185.3686 185.3686 0 0 1 39.9208-62.46 180.4166 180.4166 0 0 1 60.8281-41.0055q35.0286-14.53 76.85-14.5325 41.8236 0 76.8543 14.5325a180.4785 180.4785 0 0 1 60.8326 41.0055 185.574 185.574 0 0 1 39.9208 62.46q14.11 35.9822 14.119 78.8859 0 42.91-14.119 78.89a185.5731 185.5731 0 0 1 -39.9208 62.46 180.4146 180.4146 0 0 1 -60.8326 41.0056q-35.0286 14.5234-76.8543 14.5279-41.8168 0-76.85-14.5279a180.3528 180.3528 0 0 1 -60.8281-41.0056 185.3677 185.3677 0 0 1 -39.9208-62.46zm304.4207-78.89q0-40.9967-16.2929-72.3687-16.2906-31.3677-44.9442-49.0164-28.6537-17.6509-65.5849-17.6532-36.929 0-65.58 17.6532-28.6536 17.651-44.9442 49.0164-16.2907 31.361-16.2929 72.3687 0 41.01 16.2929 72.3732 16.2972 31.3675 44.9442 49.0163 28.647 17.6577 65.58 17.6532 36.9289 0 65.5849-17.6532 28.6536-17.6509 44.9442-49.0163 16.2908-31.3679 16.2929-72.3735z"/><path d="m2953.0816 509.8817h58.3831v39.3741a104.2357 104.2357 0 0 1 39.2451-34.2173q23.7523-11.9429 54.1731-11.9495 37.4758 0 66.5318 19.1468 29.06 19.1448 45.4866 52.5462 16.4307 33.4014 16.4307 76.8542 0 43.1772-16.8352 76.7165-16.8375 33.5415-46.5758 52.5461-29.7273 19.0045-68.2922 19.009-28.5136 0-51.328-10.86a101.94 101.94 0 0 1 -38.0182-30.9586v149.0847h-59.201zm89.2084 222.2719q20.4984 13.99 47.3893 13.9856 38.0093 0 60.557-25.5262 22.5389-25.5263 22.5388-68.9768 0-43.724-21.7253-69.2479-21.7319-25.5262-58.9254-25.5263-27.4333 0-48.883 14.119a79.776 79.776 0 0 0 -30.9587 38.0182v84.9984q9.5022 24.1724 30.0073 38.156z"/><path d="m3414.7361 799.9078q-42.6371 0-74.9516-18.8712a131.9708 131.9708 0 0 1 -50.3767-52.2794q-18.0643-33.4014-18.0577-76.5786 0-43.7174 17.6487-77.3966 17.6509-33.6683 49.0164-52.684 31.3677-19.0045 72.102-19.009 40.4565 0 69.6569 19.1468 29.1871 19.1448 44.9443 53.6353 15.7438 34.4884 15.7461 80.9219v16.84h-208.2863q5.7015 34.7618 28.1091 54.72 22.4055 19.9581 56.6182 19.96 27.4268 0 47.2515-8.1487t37.2046-24.7127l32.5857 39.9209q-48.6118 44.5375-119.2112 44.5353zm44.802-225.53q-19.2848-19.6914-50.51-19.6892-30.414 0-50.9146 20.0938-20.505 20.1048-25.9352 54.0442h149.3564q-2.7142-34.7621-21.9966-54.4492z"/><path d="m3590.4322 509.8817h58.3878v41.2767q32.8547-48.0717 91.5156-48.0694 50.5123 0 77.6678 31.501 27.1533 31.5076 27.1577 90.16v168.37h-59.2011v-161.31q0-39.6431-14.1234-58.3831-14.1234-18.7378-44.2641-18.7379-26.3465 0-46.4335 13.5766-20.1049 13.5834-31.501 38.0182v186.8362h-59.2055z"/><path d="m4264.7207 685.5823q0 54.04-37.3425 84.1849-37.3423 30.1407-107.1282 30.1406-52.4128 0-93.285-19.8226-40.8765-19.8181-63.6777-57.574l46.1624-36.3866q19.0045 28.787 47.5226 42.77 28.5137 13.99 65.4471 13.9856 37.209 0 57.8452-14.1234 20.6316-14.1168 20.6361-38.2893 0-20.905-14.39-34.6218-14.3969-13.71-48.8785-20.7739l-57.0317-11.95q-104.8255-21.7253-104.821-105.91 0-33.4014 17.3775-58.3875 17.3776-24.98 49.2876-38.8317 31.9077-13.85 74.8182-13.8523 95.3164 0 142.568 73.8669l-46.7047 33.4037q-16.8441-25.5263-40.0586-37.8848-23.2191-12.3564-56.3471-12.3541-36.6622 0-56.8938 13.4388-20.2317 13.4433-20.2316 38.4271 0 19.0113 13.1721 30.6875 13.1631 11.6761 46.0289 18.7379l57.0273 11.95q108.8929 22.8123 108.8974 109.169z"/><path d="m4324.3263 729.0328q-18.3378-33.4081-18.3334-77.3966 0-44.2641 18.3334-77.6678a132.13 132.13 0 0 1 51.0524-52.1415q32.7145-18.738 75.9029-18.7379 43.17 0 75.8985 18.7379a132.2284 132.2284 0 0 1 51.0568 52.1415q18.3245 33.4016 18.3289 77.6678 0 43.9908-18.3289 77.3966a132.2174 132.2174 0 0 1 -51.0569 52.1372q-32.7213 18.7378-75.8985 18.7378-42.9171 0-75.77-18.7378a131.86 131.86 0 0 1 -51.1852-52.1372zm211.6781-77.3966q0-42.63-23.2145-68.4344-23.219-25.8-61.5083-25.7974-38.2893 0-61.5083 25.7974-23.2189 25.8-23.2234 68.4344 0 42.3636 23.2234 68.1633 23.2189 25.8 61.5083 25.7974 38.2893 0 61.5083-25.7974 23.219-25.7995 23.2145-68.1633z"/><path d="m4894.1982 793.12h-58.3875v-40.7348q-32.588 47.5248-90.16 47.5226-49.9654 0-76.7164-31.501-26.7532-31.5009-26.7488-90.16v-168.3651h59.2011v161.3059q0 39.3764 13.8478 58.25 13.85 18.8779 43.4506 18.8757 25.5195 0 45.3488-13.4433 19.8248-13.4433 30.9586-37.6136v-187.3747h59.2055z"/><path d="m4959.3652 509.8817h58.3831v43.4462q27.4333-47.5183 74.9516-47.5227 15.4838 0 25.26 2.7162v54.5866a193.9055 193.9055 0 0 0 -26.8866-1.9027q-53.2263 0-72.5065 47.7939v184.1208h-59.2011z"/><path d="m5153.1235 573.8306a128.6625 128.6625 0 0 1 49.8343-52.1371q32.0344-18.5979 74.9516-18.6045 79.8327 0 118.9445 63.2776l-46.1668 31.23q-13.85-20.9118-30.9587-30.5541-17.104-9.6357-41.2767-9.6379-36.9355 0-59.7478 25.9308-22.8056 25.94-22.8056 68.03 0 44.2641 22.2632 69.248 22.2722 24.9861 62.7353 24.9839a87.9291 87.9291 0 0 0 41.2767-9.9136 84.7972 84.7972 0 0 0 30.6874-26.4775l41.2723 36.3911q-41.5432 54.3127-114.5968 54.3105-43.724 0-76.17-18.3289a126.49 126.49 0 0 1 -50.2433-51.5992q-17.791-33.2615-17.7866-78.0723.0004-44.5374 17.787-78.0768z"/><path d="m5565.2193 799.9078q-42.637 0-74.9516-18.8712a131.9592 131.9592 0 0 1 -50.3722-52.2794q-18.0711-33.4014-18.0622-76.5786 0-43.7174 17.6532-77.3966 17.6442-33.6683 49.0163-52.684 31.3677-19.0045 72.0976-19.009 40.4631 0 69.6569 19.1468 29.1871 19.1448 44.9443 53.6353 15.7438 34.4884 15.7505 80.9219v16.84h-208.2907q5.7081 34.7618 28.1091 54.72 22.4054 19.9581 56.6226 19.96 27.42 0 47.2471-8.1487 19.8248-8.1486 37.209-24.7127l32.5857 39.9209q-48.6117 44.5375-119.2156 44.5353zm44.8064-225.53q-19.2846-19.6914-50.51-19.6892-30.4207 0-50.9191 20.0938-20.505 20.1048-25.9352 54.0442h149.3608q-2.7207-34.7621-21.9965-54.4492z"/></g><path d="m572.964 400c-.1936 0-.3861.0007-.58.0017l-.7915 65.381c.1812-.002.362-.0035.5434-.0035 43.0344 0 76.4142 33.9309 148.9659 156.1376l4.4226 7.44.2895.4869 40.6134-60.9371-.2812-.4706q-14.3361-23.318-27.5456-42.9083c-10.2131-15.132-19.98-28.65-29.4588-40.7194-47.9952-61.1099-88.1438-84.4083-136.1777-84.4083z" fill="url(#a)"/><path d="m572.3845 400.0017c-48.2672.2483-90.9387 31.46-121.7513 79.22q-.1352.21-.2706.42l56.56 30.7847c.0918-.139.1842-.2785.2763-.417 17.9927-27.0905 40.3838-44.3693 64.3942-44.6265.1812-.002.362-.0035.5434-.0035l.8275-65.3794c-.194 0-.3861.0007-.5795.0017z" fill="url(#b)"/><path d="m450.6332 479.2213q-.1352.21-.2706.42c-20.2472 31.5183-35.3409 70.1951-43.498 111.92q-.053.2707-.1056.5423l63.5428 14.9929c.0332-.1811.0667-.3627.1-.5437 6.7921-36.6691 19.723-70.6787 36.5205-96.1268.0918-.139.1842-.2785.2763-.417z" fill="url(#c)"/><path d="m470.402 606.553-63.5374-14.9915q-.053.2707-.1056.5423a369.895 369.895 0 0 0 -6.7584 69.6377q0 .2835 0 .5667l65.1657 5.83c-.0052-.19-.0106-.3771-.0151-.5675q-.048-2.0334-.0487-4.1221a313.7856 313.7856 0 0 1 5.2-56.3519c.0325-.1811.066-.3627.0995-.5437z" fill="url(#d)"/><path d="m467.1479 688.47a136.1327 136.1327 0 0 1 -1.982-20.3313c-.0052-.19-.0106-.3771-.0151-.5675l-65.15-5.8292q0 .2835 0 .5667v.0369a221.5681 221.5681 0 0 0 3.5708 40.75c.0341.1821.0676.3608.1022.5424l63.5733-14.6239c-.0342-.181-.0666-.363-.0992-.5441z" fill="url(#e)"/><path d="m481.9945 722.1974c-7.0911-7.74-12.11-18.9047-14.7482-33.1836-.0334-.1807-.0658-.3627-.0984-.5443l-63.5771 14.6258c.0341.1821.0676.3608.1022.5424 4.8054 25.23 14.23 46.2568 27.7259 62.1639q.18.2122.3613.4238l50.613-43.6206c-.1265-.1348-.2532-.2707-.3787-.4074z" fill="url(#f)"/><path d="m670.3464 541.3443c-38.3114 58.764-61.52 95.6216-61.52 95.6216-51.0344 80-68.69 97.93-97.1033 97.93-11.8562 0-21.7613-4.2213-29.3495-12.291-.1265-.1345-.2534-.2707-.3787-.4074l-50.5956 43.6042q.18.2122.3613.4238c18.6348 21.7219 44.9388 33.7745 77.4794 33.7745 49.232 0 84.64-23.21 147.5858-133.2411 0 0 26.24-46.3371 44.2912-78.2559-11.1817-18.053-21.357-33.683-30.7706-47.1587z" fill="#0082fb"/><path d="m738.6331 448.5921c-.1292.1371-.2609.2772-.39.4147a394.765 394.765 0 0 0 -29.1093 35.39c9.4789 12.0693 19.2641 25.6138 29.4772 40.7458 12.0373-18.5788 23.2732-33.6261 34.286-45.1591.13-.1367.2585-.27.389-.4054z" fill="url(#g)"/><path d="m924.631 442.8317c-26.7175-26.9926-58.5755-42.8308-92.6329-42.8308-35.9117 0-66.1191 19.68-93.365 48.5912-.1292.1371-.2609.2772-.39.4147l34.6539 30.9768c.13-.1367.2585-.27.389-.4054 17.9489-18.67 35.3187-27.9912 54.5746-27.9912h-.0006c20.725 0 40.1279 9.7563 56.9318 26.86.1316.134.2623.2669.3937.4019l39.8437-35.6155c-.1326-.1345-.2654-.2676-.3982-.4017z" fill="#0082fb"/><path d="m1001.8721 653.1374c-1.4969-86.668-31.8252-164.1484-76.8429-209.9038-.1326-.1347-.2654-.2678-.3982-.4019l-39.8392 35.6155c.1316.134.2623.2669.3937.4019 33.8664 34.7875 57.095 99.4932 59.2077 174.27q.0082.2821.0159.5647l57.4721.0185q-.0046-.2823-.0091-.5649z" fill="url(#h)"/><path d="m1001.8812 653.7021q-.0047-.2823-.0091-.5647l-57.4789-.0185q.0082.2821.0159.5647.1413 5.2644.14 10.5925c0 20.3878-3.045 36.8685-9.2379 48.767-.0918.1764-.1856.3536-.2787.528l42.8543 44.57c.1059-.1615.2105-.3226.3158-.485 15.5578-24.0056 23.7256-57.3536 23.7256-97.7933q.0004-3.0881-.047-6.1607z" fill="url(#i)"/><path d="m935.3116 713.0431c-.0918.1764-.1856.3536-.2787.528-5.36 10.0295-13.01 16.7188-23.0094 19.644l19.5365 61.5686q3.88-1.3176 7.5555-2.9589 1.098-.4887 2.1775-1.0062.6225-.298 1.2395-.6049a89.159 89.159 0 0 0 32.6635-28.1691c.539-.7469 1.073-1.5 1.5965-2.2677q.553-.8106 1.0944-1.6362c.1059-.1615.2105-.3226.3158-.485z" fill="url(#j)"/><path d="m899.5853 734.8958a42.6954 42.6954 0 0 1 -17.987-3.5026l-20.0032 63.034c11.2427 3.8411 23.2363 5.572 36.6109 5.572a102.9692 102.9692 0 0 0 33.8892-5.399l-19.5311-61.5476a43.8483 43.8483 0 0 1 -12.9788 1.8432z" fill="url(#k)"/><path d="m859.5578 713.3374q-.1845-.213-.37-.4293l-46.0273 47.87q.1929.2067.386.412c15.9934 17.0436 31.2643 27.6164 48.5844 33.4188l19.9875-62.9874c-7.2991-3.1355-14.3574-8.8181-22.5606-18.2841z" fill="url(#l)"/><path d="m859.1875 712.9081c-13.8065-16.0555-30.8851-42.7869-57.75-86.0134l-35.0088-58.3885-.2812-.4706-40.6217 60.9208.2895.4869 24.8063 41.73c24.0455 40.2379 43.6347 69.3476 62.5391 89.604q.1929.2067.386.412l46.0116-47.8522q-.185-.2127-.3708-.429z" fill="url(#m)"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 6090.9521 1307.1739" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="739.4327" x2="604.5946" y1="604.6622" y2="427.9775"><stop offset=".0006" stop-color="#0867df"/><stop offset=".4539" stop-color="#0668e1"/><stop offset=".8591" stop-color="#0064e0"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="476.93" x2="569.3698" y1="490.2073" y2="420.0277"><stop offset=".1323" stop-color="#0064df"/><stop offset=".9988" stop-color="#0064e0"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="437.7486" x2="474.8296" y1="593.1932" y2="499.849"><stop offset=".0147" stop-color="#0072ec"/><stop offset=".6881" stop-color="#0064df"/></linearGradient><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="432.7129" x2="437.0034" y1="660.6261" y2="603.6183"><stop offset=".0731" stop-color="#007cf6"/><stop offset=".9943" stop-color="#0072ec"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="435.0724" x2="432.0034" y1="691.5921" y2="668.7519"><stop offset=".0731" stop-color="#007ff9"/><stop offset="1" stop-color="#007cf6"/></linearGradient><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="433.2708" x2="452.3974" y1="697.5917" y2="738.159"><stop offset=".0731" stop-color="#007ff9"/><stop offset="1" stop-color="#0082fb"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="727.2435" x2="752.5295" y1="501.3039" y2="466.3321"><stop offset=".2799" stop-color="#007ff8"/><stop offset=".9141" stop-color="#0082fb"/></linearGradient><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="919.4945" x2="972.3929" y1="455.9788" y2="650.5693"><stop offset="0" stop-color="#0082fb"/><stop offset=".9995" stop-color="#0081fa"/></linearGradient><linearGradient id="i" gradientUnits="userSpaceOnUse" x1="985.1641" x2="951.6867" y1="658.0135" y2="725.6651"><stop offset=".0619" stop-color="#0081fa"/><stop offset="1" stop-color="#0080f9"/></linearGradient><linearGradient id="j" gradientUnits="userSpaceOnUse" x1="925.0793" x2="956.3733" y1="761.5316" y2="740.2173"><stop offset="0" stop-color="#027af3"/><stop offset="1" stop-color="#0080f9"/></linearGradient><linearGradient id="k" gradientUnits="userSpaceOnUse" x1="875.9993" x2="919.4855" y1="765.6962" y2="765.6962"><stop offset="0" stop-color="#0377ef"/><stop offset=".9994" stop-color="#0279f1"/></linearGradient><linearGradient id="l" gradientUnits="userSpaceOnUse" x1="838.1927" x2="869.456" y1="741.7469" y2="760.1399"><stop offset=".0019" stop-color="#0471e9"/><stop offset="1" stop-color="#0377ef"/></linearGradient><linearGradient id="m" gradientUnits="userSpaceOnUse" x1="742.8261" x2="842.9741" y1="606.1226" y2="732.0393"><stop offset=".2765" stop-color="#0867df"/><stop offset="1" stop-color="#0471e9"/></linearGradient><path d="m0 0h6090.9521v1307.1739h-6090.9521z" fill="none"/><g fill="#fff"><path d="m1128.7222 412.9337h75.2227l127.9067 231.3674 127.9022-231.3674h73.5962v380.1863h-61.37v-291.3869l-112.1616 201.7691h-57.57l-112.1513-201.7691v291.3869h-61.3749z"/><path d="m1731.3132 799.9078q-42.6371 0-74.9516-18.8712a131.99 131.99 0 0 1 -50.3722-52.2794q-18.0643-33.4014-18.0622-76.5786 0-43.7174 17.6532-77.3966 17.6509-33.6683 49.0208-52.684 31.3609-19.0045 72.0976-19.009 40.4631 0 69.6525 19.1468 29.1937 19.1448 44.9442 53.6353 15.7506 34.4884 15.755 80.9219v16.84h-208.2905q5.7014 34.7618 28.1046 54.72 22.4055 19.9581 56.6227 19.96 27.4266 0 47.2515-8.1487 19.8182-8.1486 37.2046-24.7127l32.59 39.9209q-48.6185 44.5375-119.2202 44.5353zm44.8109-225.53q-19.2846-19.6914-50.51-19.6892-30.4207 0-50.9191 20.0938-20.5116 20.1048-25.9352 54.0442h149.3608q-2.7206-34.7621-21.9965-54.4492z"/><path d="m1931.46 560.1206h-56.4849v-50.2389h56.4849v-83.1h59.2055v83.1h85.812v50.2389h-85.812v127.36q0 31.7744 10.86 45.3532 10.8627 13.5834 37.2046 13.5767a174.3473 174.3473 0 0 0 19.8226-.9514q8.1487-.9468 17.9244-2.5784v49.6966a168.0043 168.0043 0 0 1 -22.6766 4.8856 177.849 177.849 0 0 1 -26.4776 1.9027q-95.8634 0-95.8633-104.8211z"/><path d="m2384.9789 793.12h-58.1164v-39.65a105.0015 105.0015 0 0 1 -39.374 34.355q-23.899 12.0764-54.311 12.0829-37.4757 0-66.3983-19.1424-28.9271-19.1513-45.4867-52.6839-16.564-33.5349-16.564-76.7165 0-43.45 16.8352-76.8542 16.8375-33.4016 46.5758-52.4128 29.7271-19.0045 68.2922-19.009 29.06 0 52.146 11.2694a103.1259 103.1259 0 0 1 38.2848 31.91v-36.3868h58.1164zm-59.2011-184.12q-9.5089-24.1659-30.0073-38.156-20.505-13.9767-47.3893-13.9812-38.0226 0-60.5569 25.5263-22.5388 25.5261-22.5388 68.9767 0 43.7241 21.7252 69.248 21.7186 25.5262 58.9255 25.5262 27.4334 0 48.883-14.1234a79.7842 79.7842 0 0 0 30.9586-38.0182z"/><path d="m2529.4452 681.9147q-14.1236-35.9822-14.119-78.89 0-42.9037 14.119-78.8859a185.3686 185.3686 0 0 1 39.9208-62.46 180.4166 180.4166 0 0 1 60.8281-41.0055q35.0286-14.53 76.85-14.5325 41.8236 0 76.8543 14.5325a180.4785 180.4785 0 0 1 60.8326 41.0055 185.574 185.574 0 0 1 39.9208 62.46q14.11 35.9822 14.119 78.8859 0 42.91-14.119 78.89a185.5731 185.5731 0 0 1 -39.9208 62.46 180.4146 180.4146 0 0 1 -60.8326 41.0056q-35.0286 14.5234-76.8543 14.5279-41.8168 0-76.85-14.5279a180.3528 180.3528 0 0 1 -60.8281-41.0056 185.3677 185.3677 0 0 1 -39.9208-62.46zm304.4207-78.89q0-40.9967-16.2929-72.3687-16.2906-31.3677-44.9442-49.0164-28.6537-17.6509-65.5849-17.6532-36.929 0-65.58 17.6532-28.6536 17.651-44.9442 49.0164-16.2907 31.361-16.2929 72.3687 0 41.01 16.2929 72.3732 16.2972 31.3675 44.9442 49.0163 28.647 17.6577 65.58 17.6532 36.9289 0 65.5849-17.6532 28.6536-17.6509 44.9442-49.0163 16.2908-31.3679 16.2929-72.3735z"/><path d="m2953.0816 509.8817h58.3831v39.3741a104.2357 104.2357 0 0 1 39.2451-34.2173q23.7523-11.9429 54.1731-11.9495 37.4758 0 66.5318 19.1468 29.06 19.1448 45.4866 52.5462 16.4307 33.4014 16.4307 76.8542 0 43.1772-16.8352 76.7165-16.8375 33.5415-46.5758 52.5461-29.7273 19.0045-68.2922 19.009-28.5136 0-51.328-10.86a101.94 101.94 0 0 1 -38.0182-30.9586v149.0847h-59.201zm89.2084 222.2719q20.4984 13.99 47.3893 13.9856 38.0093 0 60.557-25.5262 22.5389-25.5263 22.5388-68.9768 0-43.724-21.7253-69.2479-21.7319-25.5262-58.9254-25.5263-27.4333 0-48.883 14.119a79.776 79.776 0 0 0 -30.9587 38.0182v84.9984q9.5022 24.1724 30.0073 38.156z"/><path d="m3414.7361 799.9078q-42.6371 0-74.9516-18.8712a131.9708 131.9708 0 0 1 -50.3767-52.2794q-18.0643-33.4014-18.0577-76.5786 0-43.7174 17.6487-77.3966 17.6509-33.6683 49.0164-52.684 31.3677-19.0045 72.102-19.009 40.4565 0 69.6569 19.1468 29.1871 19.1448 44.9443 53.6353 15.7438 34.4884 15.7461 80.9219v16.84h-208.2863q5.7015 34.7618 28.1091 54.72 22.4055 19.9581 56.6182 19.96 27.4268 0 47.2515-8.1487t37.2046-24.7127l32.5857 39.9209q-48.6118 44.5375-119.2112 44.5353zm44.802-225.53q-19.2848-19.6914-50.51-19.6892-30.414 0-50.9146 20.0938-20.505 20.1048-25.9352 54.0442h149.3564q-2.7142-34.7621-21.9966-54.4492z"/><path d="m3590.4322 509.8817h58.3878v41.2767q32.8547-48.0717 91.5156-48.0694 50.5123 0 77.6678 31.501 27.1533 31.5076 27.1577 90.16v168.37h-59.2011v-161.31q0-39.6431-14.1234-58.3831-14.1234-18.7378-44.2641-18.7379-26.3465 0-46.4335 13.5766-20.1049 13.5834-31.501 38.0182v186.8362h-59.2055z"/><path d="m4264.7207 685.5823q0 54.04-37.3425 84.1849-37.3423 30.1407-107.1282 30.1406-52.4128 0-93.285-19.8226-40.8765-19.8181-63.6777-57.574l46.1624-36.3866q19.0045 28.787 47.5226 42.77 28.5137 13.99 65.4471 13.9856 37.209 0 57.8452-14.1234 20.6316-14.1168 20.6361-38.2893 0-20.905-14.39-34.6218-14.3969-13.71-48.8785-20.7739l-57.0317-11.95q-104.8255-21.7253-104.821-105.91 0-33.4014 17.3775-58.3875 17.3776-24.98 49.2876-38.8317 31.9077-13.85 74.8182-13.8523 95.3164 0 142.568 73.8669l-46.7047 33.4037q-16.8441-25.5263-40.0586-37.8848-23.2191-12.3564-56.3471-12.3541-36.6622 0-56.8938 13.4388-20.2317 13.4433-20.2316 38.4271 0 19.0113 13.1721 30.6875 13.1631 11.6761 46.0289 18.7379l57.0273 11.95q108.8929 22.8123 108.8974 109.169z"/><path d="m4324.3263 729.0328q-18.3378-33.4081-18.3334-77.3966 0-44.2641 18.3334-77.6678a132.13 132.13 0 0 1 51.0524-52.1415q32.7145-18.738 75.9029-18.7379 43.17 0 75.8985 18.7379a132.2284 132.2284 0 0 1 51.0568 52.1415q18.3245 33.4016 18.3289 77.6678 0 43.9908-18.3289 77.3966a132.2174 132.2174 0 0 1 -51.0569 52.1372q-32.7213 18.7378-75.8985 18.7378-42.9171 0-75.77-18.7378a131.86 131.86 0 0 1 -51.1852-52.1372zm211.6781-77.3966q0-42.63-23.2145-68.4344-23.219-25.8-61.5083-25.7974-38.2893 0-61.5083 25.7974-23.2189 25.8-23.2234 68.4344 0 42.3636 23.2234 68.1633 23.2189 25.8 61.5083 25.7974 38.2893 0 61.5083-25.7974 23.219-25.7995 23.2145-68.1633z"/><path d="m4894.1982 793.12h-58.3875v-40.7348q-32.588 47.5248-90.16 47.5226-49.9654 0-76.7164-31.501-26.7532-31.5009-26.7488-90.16v-168.3651h59.2011v161.3059q0 39.3764 13.8478 58.25 13.85 18.8779 43.4506 18.8757 25.5195 0 45.3488-13.4433 19.8248-13.4433 30.9586-37.6136v-187.3747h59.2055z"/><path d="m4959.3652 509.8817h58.3831v43.4462q27.4333-47.5183 74.9516-47.5227 15.4838 0 25.26 2.7162v54.5866a193.9055 193.9055 0 0 0 -26.8866-1.9027q-53.2263 0-72.5065 47.7939v184.1208h-59.2011z"/><path d="m5153.1235 573.8306a128.6625 128.6625 0 0 1 49.8343-52.1371q32.0344-18.5979 74.9516-18.6045 79.8327 0 118.9445 63.2776l-46.1668 31.23q-13.85-20.9118-30.9587-30.5541-17.104-9.6357-41.2767-9.6379-36.9355 0-59.7478 25.9308-22.8056 25.94-22.8056 68.03 0 44.2641 22.2632 69.248 22.2722 24.9861 62.7353 24.9839a87.9291 87.9291 0 0 0 41.2767-9.9136 84.7972 84.7972 0 0 0 30.6874-26.4775l41.2723 36.3911q-41.5432 54.3127-114.5968 54.3105-43.724 0-76.17-18.3289a126.49 126.49 0 0 1 -50.2433-51.5992q-17.791-33.2615-17.7866-78.0723.0004-44.5374 17.787-78.0768z"/><path d="m5565.2193 799.9078q-42.637 0-74.9516-18.8712a131.9592 131.9592 0 0 1 -50.3722-52.2794q-18.0711-33.4014-18.0622-76.5786 0-43.7174 17.6532-77.3966 17.6442-33.6683 49.0163-52.684 31.3677-19.0045 72.0976-19.009 40.4631 0 69.6569 19.1468 29.1871 19.1448 44.9443 53.6353 15.7438 34.4884 15.7505 80.9219v16.84h-208.2907q5.7081 34.7618 28.1091 54.72 22.4054 19.9581 56.6226 19.96 27.42 0 47.2471-8.1487 19.8248-8.1486 37.209-24.7127l32.5857 39.9209q-48.6117 44.5375-119.2156 44.5353zm44.8064-225.53q-19.2846-19.6914-50.51-19.6892-30.4207 0-50.9191 20.0938-20.505 20.1048-25.9352 54.0442h149.3608q-2.7207-34.7621-21.9965-54.4492z"/></g><path d="m572.964 400c-.1936 0-.3861.0007-.58.0017l-.7915 65.381c.1812-.002.362-.0035.5434-.0035 43.0344 0 76.4142 33.9309 148.9659 156.1376l4.4226 7.44.2895.4869 40.6134-60.9371-.2812-.4706q-14.3361-23.318-27.5456-42.9083c-10.2131-15.132-19.98-28.65-29.4588-40.7194-47.9952-61.1099-88.1438-84.4083-136.1777-84.4083z" fill="url(#a)"/><path d="m572.3845 400.0017c-48.2672.2483-90.9387 31.46-121.7513 79.22q-.1352.21-.2706.42l56.56 30.7847c.0918-.139.1842-.2785.2763-.417 17.9927-27.0905 40.3838-44.3693 64.3942-44.6265.1812-.002.362-.0035.5434-.0035l.8275-65.3794c-.194 0-.3861.0007-.5795.0017z" fill="url(#b)"/><path d="m450.6332 479.2213q-.1352.21-.2706.42c-20.2472 31.5183-35.3409 70.1951-43.498 111.92q-.053.2707-.1056.5423l63.5428 14.9929c.0332-.1811.0667-.3627.1-.5437 6.7921-36.6691 19.723-70.6787 36.5205-96.1268.0918-.139.1842-.2785.2763-.417z" fill="url(#c)"/><path d="m470.402 606.553-63.5374-14.9915q-.053.2707-.1056.5423a369.895 369.895 0 0 0 -6.7584 69.6377q0 .2835 0 .5667l65.1657 5.83c-.0052-.19-.0106-.3771-.0151-.5675q-.048-2.0334-.0487-4.1221a313.7856 313.7856 0 0 1 5.2-56.3519c.0325-.1811.066-.3627.0995-.5437z" fill="url(#d)"/><path d="m467.1479 688.47a136.1327 136.1327 0 0 1 -1.982-20.3313c-.0052-.19-.0106-.3771-.0151-.5675l-65.15-5.8292q0 .2835 0 .5667v.0369a221.5681 221.5681 0 0 0 3.5708 40.75c.0341.1821.0676.3608.1022.5424l63.5733-14.6239c-.0342-.181-.0666-.363-.0992-.5441z" fill="url(#e)"/><path d="m481.9945 722.1974c-7.0911-7.74-12.11-18.9047-14.7482-33.1836-.0334-.1807-.0658-.3627-.0984-.5443l-63.5771 14.6258c.0341.1821.0676.3608.1022.5424 4.8054 25.23 14.23 46.2568 27.7259 62.1639q.18.2122.3613.4238l50.613-43.6206c-.1265-.1348-.2532-.2707-.3787-.4074z" fill="url(#f)"/><path d="m670.3464 541.3443c-38.3114 58.764-61.52 95.6216-61.52 95.6216-51.0344 80-68.69 97.93-97.1033 97.93-11.8562 0-21.7613-4.2213-29.3495-12.291-.1265-.1345-.2534-.2707-.3787-.4074l-50.5956 43.6042q.18.2122.3613.4238c18.6348 21.7219 44.9388 33.7745 77.4794 33.7745 49.232 0 84.64-23.21 147.5858-133.2411 0 0 26.24-46.3371 44.2912-78.2559-11.1817-18.053-21.357-33.683-30.7706-47.1587z" fill="#0082fb"/><path d="m738.6331 448.5921c-.1292.1371-.2609.2772-.39.4147a394.765 394.765 0 0 0 -29.1093 35.39c9.4789 12.0693 19.2641 25.6138 29.4772 40.7458 12.0373-18.5788 23.2732-33.6261 34.286-45.1591.13-.1367.2585-.27.389-.4054z" fill="url(#g)"/><path d="m924.631 442.8317c-26.7175-26.9926-58.5755-42.8308-92.6329-42.8308-35.9117 0-66.1191 19.68-93.365 48.5912-.1292.1371-.2609.2772-.39.4147l34.6539 30.9768c.13-.1367.2585-.27.389-.4054 17.9489-18.67 35.3187-27.9912 54.5746-27.9912h-.0006c20.725 0 40.1279 9.7563 56.9318 26.86.1316.134.2623.2669.3937.4019l39.8437-35.6155c-.1326-.1345-.2654-.2676-.3982-.4017z" fill="#0082fb"/><path d="m1001.8721 653.1374c-1.4969-86.668-31.8252-164.1484-76.8429-209.9038-.1326-.1347-.2654-.2678-.3982-.4019l-39.8392 35.6155c.1316.134.2623.2669.3937.4019 33.8664 34.7875 57.095 99.4932 59.2077 174.27q.0082.2821.0159.5647l57.4721.0185q-.0046-.2823-.0091-.5649z" fill="url(#h)"/><path d="m1001.8812 653.7021q-.0047-.2823-.0091-.5647l-57.4789-.0185q.0082.2821.0159.5647.1413 5.2644.14 10.5925c0 20.3878-3.045 36.8685-9.2379 48.767-.0918.1764-.1856.3536-.2787.528l42.8543 44.57c.1059-.1615.2105-.3226.3158-.485 15.5578-24.0056 23.7256-57.3536 23.7256-97.7933q.0004-3.0881-.047-6.1607z" fill="url(#i)"/><path d="m935.3116 713.0431c-.0918.1764-.1856.3536-.2787.528-5.36 10.0295-13.01 16.7188-23.0094 19.644l19.5365 61.5686q3.88-1.3176 7.5555-2.9589 1.098-.4887 2.1775-1.0062.6225-.298 1.2395-.6049a89.159 89.159 0 0 0 32.6635-28.1691c.539-.7469 1.073-1.5 1.5965-2.2677q.553-.8106 1.0944-1.6362c.1059-.1615.2105-.3226.3158-.485z" fill="url(#j)"/><path d="m899.5853 734.8958a42.6954 42.6954 0 0 1 -17.987-3.5026l-20.0032 63.034c11.2427 3.8411 23.2363 5.572 36.6109 5.572a102.9692 102.9692 0 0 0 33.8892-5.399l-19.5311-61.5476a43.8483 43.8483 0 0 1 -12.9788 1.8432z" fill="url(#k)"/><path d="m859.5578 713.3374q-.1845-.213-.37-.4293l-46.0273 47.87q.1929.2067.386.412c15.9934 17.0436 31.2643 27.6164 48.5844 33.4188l19.9875-62.9874c-7.2991-3.1355-14.3574-8.8181-22.5606-18.2841z" fill="url(#l)"/><path d="m859.1875 712.9081c-13.8065-16.0555-30.8851-42.7869-57.75-86.0134l-35.0088-58.3885-.2812-.4706-40.6217 60.9208.2895.4869 24.8063 41.73c24.0455 40.2379 43.6347 69.3476 62.5391 89.604q.1929.2067.386.412l46.0116-47.8522q-.185-.2127-.3708-.429z" fill="url(#m)"/></svg>
|