Serve all static asset files over the CDN (#7795)
@@ -1,7 +1,7 @@
|
||||
[](https://github.com/compiler-explorer/compiler-explorer/actions?query=workflow%3A%22Compiler+Explorer%22)
|
||||
[](https://codecov.io/gh/compiler-explorer/compiler-explorer)
|
||||
|
||||
[](https://godbolt.org/)
|
||||
[](https://godbolt.org/)
|
||||
|
||||
# Compiler Explorer
|
||||
|
||||
|
||||
@@ -12,8 +12,8 @@ If you want to add a new language to the site, you should follow this steps:
|
||||
monaco: MONACO_MODE_ID,
|
||||
extensions: ARRAY_OF_FILE_EXTENSIONS_OF_YOUR_LANGUAGE,
|
||||
alias: [], // Leave empty unless needed,
|
||||
logoUrl: PATH_TO_LOGO,
|
||||
logoUrlDark: PATH_TO_DARK_LOGO, // Optional if not needed
|
||||
logoFilename: NAME_OF_LOGO_FILE, // Name of the logo file in views/resources/logos/
|
||||
logoFilenameDark: NAME_OF_DARK_LOGO_FILE, // Optional, if there is a dark version of the logo
|
||||
}
|
||||
```
|
||||
|
||||
@@ -24,8 +24,9 @@ If you want to add a new language to the site, you should follow this steps:
|
||||
_require_ your mode file in `static/modes/_all.ts`, in alphabetical order
|
||||
- `language-key` is how your language will be referred internally by the code. In the rest of this document, replace
|
||||
`{language-key}` by the corresponding value in the real files.
|
||||
- Add a logo file to the `views/resources/logos/` folder and add its path to the `logoUrl{Dark}` key(s) in the
|
||||
- Add a logo file to the `views/resources/logos/` folder and add its path to the `logoFilename{Dark}` key(s) in the
|
||||
language object
|
||||
- Add the logo keys to the `static/logos.ts` file, in alphabetical order.
|
||||
|
||||
- Add `{language-key}` to type list in `types/languages.interfaces.ts`
|
||||
- Add a `lib/compilers/{language-key}.ts` file using the template below:
|
||||
|
||||
@@ -30,5 +30,5 @@ npm i puppeteer --no-save && npx node --no-warnings=ExperimentalWarning --import
|
||||
The script uses puppeteer and chrome to generate screenshots. The script will take a little while to run as it generates
|
||||
multiple screenshots per template and gives pages ample time to load.
|
||||
|
||||
Screenshots are located in [`views/resources/template_screenshots/`](../views/resources/template_screenshots/). The
|
||||
Screenshots are located in [`views/resources/template_screenshots/`](../public/template_screenshots/). The
|
||||
script won't regenerate everything by default, to regenerate delete the screenshot images you want deleted.
|
||||
|
||||
@@ -6603,8 +6603,8 @@ tools.strings.stdinHint=disabled
|
||||
|
||||
tools.Sonar.name=Sonar
|
||||
tools.Sonar.exe=/opt/compiler-explorer/sonar/sonar.sh
|
||||
tools.Sonar.icon=./Sonar.svg
|
||||
tools.Sonar.darkIcon=./Sonar-dark.svg
|
||||
tools.Sonar.icon=sonar.svg
|
||||
tools.Sonar.darkIcon=sonar-dark.svg
|
||||
tools.Sonar.type=independent
|
||||
tools.Sonar.class=sonar-tool
|
||||
tools.Sonar.stdinHint=disabled
|
||||
|
||||
@@ -4253,8 +4253,8 @@ tools.nm.stdinHint=disabled
|
||||
|
||||
tools.Sonar.name=Sonar
|
||||
tools.Sonar.exe=/opt/compiler-explorer/sonar/sonar.sh
|
||||
tools.Sonar.icon=./Sonar.svg
|
||||
tools.Sonar.darkIcon=./Sonar-dark.svg
|
||||
tools.Sonar.icon=./sonar.svg
|
||||
tools.Sonar.darkIcon=./sonar-dark.svg
|
||||
tools.Sonar.type=independent
|
||||
tools.Sonar.class=sonar-tool
|
||||
tools.Sonar.stdinHint=disabled
|
||||
|
||||
@@ -169,7 +169,7 @@ export function loadConfiguration(appArgs: AppArguments): AppConfiguration {
|
||||
const httpRoot = urljoin(ceProps('httpRoot', '/'), '/');
|
||||
|
||||
const staticUrl = ceProps<string | undefined>('staticUrl');
|
||||
const staticRoot = urljoin(staticUrl || urljoin(httpRoot, 'static'), '/');
|
||||
const staticRoot = urljoin(staticUrl || httpRoot, '/');
|
||||
|
||||
return {
|
||||
ceProps,
|
||||
|
||||
@@ -104,7 +104,7 @@ export async function initialiseApplication(options: ApplicationOptions): Promis
|
||||
staticRoot: config.staticRoot,
|
||||
httpRoot: config.httpRoot,
|
||||
sentrySlowRequestMs: ceProps('sentrySlowRequestMs', 0),
|
||||
distPath: distPath,
|
||||
manifestPath: distPath,
|
||||
extraBodyClass: config.extraBodyClass,
|
||||
maxUploadSize: config.maxUploadSize,
|
||||
};
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
import express, {Request, Response} from 'express';
|
||||
import _ from 'underscore';
|
||||
|
||||
import {AppArguments} from '../app.interfaces.js';
|
||||
import {GoldenLayoutRootStruct} from '../clientstate-normalizer.js';
|
||||
import * as normalizer from '../clientstate-normalizer.js';
|
||||
import type {ShortLinkMetaData} from '../handlers/handler.interfaces.js';
|
||||
@@ -37,6 +38,7 @@ import {
|
||||
ServerDependencies,
|
||||
ServerOptions,
|
||||
} from './server.interfaces.js';
|
||||
import {getFaviconFilename} from './static-assets.js';
|
||||
import {isMobileViewer} from './url-handlers.js';
|
||||
|
||||
/**
|
||||
@@ -44,12 +46,14 @@ import {isMobileViewer} from './url-handlers.js';
|
||||
* @param pugRequireHandler - Handler for Pug requires
|
||||
* @param options - Server options
|
||||
* @param dependencies - Server dependencies
|
||||
* @param appArgs - App arguments
|
||||
* @returns Rendering functions
|
||||
*/
|
||||
export function createRenderHandlers(
|
||||
pugRequireHandler: PugRequireHandler,
|
||||
options: ServerOptions,
|
||||
dependencies: ServerDependencies,
|
||||
appArgs: AppArguments,
|
||||
): {
|
||||
renderConfig: RenderConfigFunction;
|
||||
renderGoldenLayout: RenderGoldenLayoutHandler;
|
||||
@@ -80,7 +84,7 @@ export function createRenderHandlers(
|
||||
allExtraOptions.slides = glnormalizer.generatePresentationModeMobileViewerSlides(clientstate);
|
||||
}
|
||||
|
||||
const options = _.extend({}, allExtraOptions, clientOptionsHandler.get());
|
||||
const options: RenderConfig = _.extend({}, allExtraOptions, clientOptionsHandler.get());
|
||||
options.optionsHash = clientOptionsHandler.getHash();
|
||||
options.compilerExplorerOptions = JSON.stringify(allExtraOptions);
|
||||
options.extraBodyClass = options.embedded ? 'embedded' : extraBodyClass;
|
||||
@@ -89,6 +93,7 @@ export function createRenderHandlers(
|
||||
options.storageSolution = options.storageSolution || storageSolution;
|
||||
options.require = pugRequireHandler;
|
||||
options.sponsors = sponsorConfig;
|
||||
options.faviconFilename = getFaviconFilename(appArgs.devMode, appArgs.env);
|
||||
return options;
|
||||
};
|
||||
|
||||
|
||||
@@ -28,7 +28,6 @@ import express from 'express';
|
||||
import type {NextFunction, Request, Response, Router} from 'express';
|
||||
import morgan from 'morgan';
|
||||
import sanitize from 'sanitize-filename';
|
||||
import sFavicon from 'serve-favicon';
|
||||
|
||||
import {cached, csp} from '../handlers/middleware.js';
|
||||
import {logger, makeLogStream} from '../logger.js';
|
||||
@@ -119,25 +118,36 @@ export function setupLoggingMiddleware(isDevMode: boolean, router: Router): void
|
||||
morgan(morganFormat, {
|
||||
stream: makeLogStream('info'),
|
||||
// Skip for non errors (2xx, 3xx)
|
||||
skip: (req: Request, res: Response) => res.statusCode >= 400,
|
||||
skip: (req: Request, res: Response) => res.statusCode >= 400 || isFaviconRequest(req),
|
||||
}),
|
||||
);
|
||||
router.use(
|
||||
morgan(morganFormat, {
|
||||
stream: makeLogStream('warn'),
|
||||
// Skip for non user errors (4xx)
|
||||
skip: (req: Request, res: Response) => res.statusCode < 400 || res.statusCode >= 500,
|
||||
skip: (req: Request, res: Response) =>
|
||||
res.statusCode < 400 || res.statusCode >= 500 || isFaviconRequest(req),
|
||||
}),
|
||||
);
|
||||
router.use(
|
||||
morgan(morganFormat, {
|
||||
stream: makeLogStream('error'),
|
||||
// Skip for non server errors (5xx)
|
||||
skip: (req: Request, res: Response) => res.statusCode < 500,
|
||||
skip: (req: Request, res: Response) => res.statusCode < 500 || isFaviconRequest(req),
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
||||
function isFaviconRequest(req: Request): boolean {
|
||||
return [
|
||||
'favicon.ico',
|
||||
'favicon-beta.ico',
|
||||
'favicon-dev.ico',
|
||||
'favicon-staging.ico',
|
||||
'favicon-suspend.ico',
|
||||
].includes(req.path);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setup basic routes for the web server
|
||||
* @param router - Express router
|
||||
@@ -145,7 +155,6 @@ export function setupLoggingMiddleware(isDevMode: boolean, router: Router): void
|
||||
* @param embeddedHandler - Handler for embedded mode
|
||||
* @param ceProps - Compiler Explorer properties
|
||||
* @param awsProps - AWS properties
|
||||
* @param faviconFilename - Favicon filename
|
||||
* @param options - Server options
|
||||
* @param clientOptionsHandler - Client options handler
|
||||
*/
|
||||
@@ -155,7 +164,6 @@ export function setupBasicRoutes(
|
||||
embeddedHandler: express.Handler,
|
||||
ceProps: PropertyGetter,
|
||||
awsProps: PropertyGetter,
|
||||
faviconFilename: string,
|
||||
options: ServerOptions,
|
||||
clientOptionsHandler: ClientOptionsSource,
|
||||
): void {
|
||||
@@ -199,14 +207,6 @@ export function setupBasicRoutes(
|
||||
res.render('sitemap');
|
||||
});
|
||||
|
||||
// Try to add favicon support, but don't fail if it's not available (useful for tests)
|
||||
try {
|
||||
router.use(sFavicon(utils.resolvePathFromAppRoot('static/favicons', faviconFilename)));
|
||||
} catch (err: unknown) {
|
||||
const error = err as Error;
|
||||
logger.warn(`Could not set up favicon: ${error.message}`);
|
||||
}
|
||||
|
||||
router
|
||||
.get('/client-options.js', cached, (req, res) => {
|
||||
res.set('Content-Type', 'application/javascript');
|
||||
|
||||
@@ -37,7 +37,7 @@ export interface ServerOptions {
|
||||
staticRoot: string;
|
||||
httpRoot: string;
|
||||
sentrySlowRequestMs: number;
|
||||
distPath: string;
|
||||
manifestPath: string;
|
||||
extraBodyClass: string;
|
||||
maxUploadSize: string;
|
||||
}
|
||||
@@ -57,6 +57,7 @@ export interface RenderConfig extends PugOptions {
|
||||
readOnly?: boolean;
|
||||
config?: GoldenLayoutRootStruct;
|
||||
metadata?: ShortLinkMetaData;
|
||||
faviconFilename: string;
|
||||
storedStateId?: string | false;
|
||||
require?: PugRequireHandler;
|
||||
sponsors?: Sponsors;
|
||||
|
||||
@@ -28,13 +28,11 @@ import type {AppArguments} from '../app.interfaces.js';
|
||||
import {logger} from '../logger.js';
|
||||
import {createRenderHandlers} from './rendering.js';
|
||||
import {setupBaseServerConfig, setupBasicRoutes, setupLoggingMiddleware} from './server-config.js';
|
||||
import {startListening} from './server-listening.js';
|
||||
import {ServerDependencies, ServerOptions, WebServerResult} from './server.interfaces.js';
|
||||
import {getFaviconFilename, setupStaticMiddleware, setupWebPackDevMiddleware} from './static-assets.js';
|
||||
import {isMobileViewer} from './url-handlers.js';
|
||||
import {setupStaticMiddleware, setupWebPackDevMiddleware} from './static-assets.js';
|
||||
|
||||
// Re-exporting functions that are used by other modules
|
||||
export {getFaviconFilename, isMobileViewer, startListening};
|
||||
export {startListening} from './server-listening.js';
|
||||
export {isMobileViewer} from './url-handlers.js';
|
||||
|
||||
/**
|
||||
* Configure a web server and its routes
|
||||
@@ -67,6 +65,7 @@ export async function setupWebServer(
|
||||
pugRequireHandler,
|
||||
options,
|
||||
dependencies,
|
||||
appArgs,
|
||||
);
|
||||
|
||||
// Add healthcheck before logging middleware to prevent excessive log entries
|
||||
@@ -81,7 +80,6 @@ export async function setupWebServer(
|
||||
embeddedHandler,
|
||||
dependencies.ceProps,
|
||||
dependencies.awsProps,
|
||||
getFaviconFilename(appArgs.devMode, appArgs.env),
|
||||
options,
|
||||
dependencies.clientOptionsHandler,
|
||||
);
|
||||
|
||||
@@ -74,7 +74,7 @@ export async function setupWebPackDevMiddleware(options: ServerOptions, router:
|
||||
const webpackCompiler = webpack([webpackConfig as WebpackConfiguration]);
|
||||
router.use(
|
||||
webpackDevMiddleware(webpackCompiler, {
|
||||
publicPath: '/static',
|
||||
publicPath: '/',
|
||||
stats: {
|
||||
preset: 'errors-only',
|
||||
timings: true,
|
||||
@@ -82,7 +82,7 @@ export async function setupWebPackDevMiddleware(options: ServerOptions, router:
|
||||
}),
|
||||
);
|
||||
|
||||
return path => urljoin(options.httpRoot, 'static', path);
|
||||
return path => urljoin(options.httpRoot, path);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -92,14 +92,14 @@ export async function setupWebPackDevMiddleware(options: ServerOptions, router:
|
||||
* @returns Function to handle Pug requires
|
||||
*/
|
||||
export async function setupStaticMiddleware(options: ServerOptions, router: Router): Promise<PugRequireHandler> {
|
||||
const staticManifest = JSON.parse(await fs.readFile(path.join(options.distPath, 'manifest.json'), 'utf-8'));
|
||||
const staticManifest = JSON.parse(await fs.readFile(path.join(options.manifestPath, 'manifest.json'), 'utf-8'));
|
||||
|
||||
if (options.staticUrl) {
|
||||
logger.info(` using static files from '${options.staticUrl}'`);
|
||||
} else {
|
||||
logger.info(` serving static files from '${options.staticPath}'`);
|
||||
router.use(
|
||||
'/static',
|
||||
'/',
|
||||
express.static(options.staticPath, {
|
||||
maxAge: options.staticMaxAgeSecs * 1000,
|
||||
}),
|
||||
|
||||
348
lib/languages.ts
@@ -35,8 +35,8 @@ type DefKeys =
|
||||
| 'alias'
|
||||
| 'previewFilter'
|
||||
| 'formatter'
|
||||
| 'logoUrl'
|
||||
| 'logoUrlDark'
|
||||
| 'logoFilename'
|
||||
| 'logoFilenameDark'
|
||||
| 'monacoDisassembly'
|
||||
| 'tooltip'
|
||||
| 'digitSeparator';
|
||||
@@ -48,8 +48,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'jakt',
|
||||
extensions: ['.jakt'],
|
||||
alias: [],
|
||||
logoUrl: '',
|
||||
logoUrlDark: null,
|
||||
logoFilename: null,
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: 'cppp',
|
||||
@@ -59,8 +59,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'cppp',
|
||||
extensions: ['.cpp', '.cxx', '.h', '.hpp', '.hxx', '.c', '.cc', '.ixx'],
|
||||
alias: ['gcc', 'cpp'],
|
||||
logoUrl: 'c++.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'c++.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: 'clangformat',
|
||||
previewFilter: /^\s*#include/,
|
||||
monacoDisassembly: null,
|
||||
@@ -71,8 +71,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'ada',
|
||||
extensions: ['.adb', '.ads'],
|
||||
alias: [],
|
||||
logoUrl: 'ada.svg',
|
||||
logoUrlDark: 'ada-dark.svg',
|
||||
logoFilename: 'ada.svg',
|
||||
logoFilenameDark: 'ada-dark.svg',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -82,8 +82,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'algol68',
|
||||
extensions: ['.a68'],
|
||||
alias: [],
|
||||
logoUrl: '',
|
||||
logoUrlDark: '',
|
||||
logoFilename: null,
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -93,8 +93,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'asm',
|
||||
extensions: ['.asm'], // maybe add more? Change to a unique one?
|
||||
alias: ['tool', 'tools'],
|
||||
logoUrl: 'analysis.png', // TODO: Find a better alternative
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'analysis.png', // TODO: Find a better alternative
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -105,8 +105,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'java',
|
||||
extensions: ['.java'],
|
||||
alias: [],
|
||||
logoUrl: 'android.svg',
|
||||
logoUrlDark: 'android-dark.svg',
|
||||
logoFilename: 'android.svg',
|
||||
logoFilenameDark: 'android-dark.svg',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -117,8 +117,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'kotlin',
|
||||
extensions: ['.kt'],
|
||||
alias: [],
|
||||
logoUrl: 'android.svg',
|
||||
logoUrlDark: 'android-dark.svg',
|
||||
logoFilename: 'android.svg',
|
||||
logoFilenameDark: 'android-dark.svg',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -129,8 +129,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'asm',
|
||||
extensions: ['.asm', '.6502', '.s'],
|
||||
alias: ['asm'],
|
||||
logoUrl: 'assembly.png', // TODO: Find a better alternative
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'assembly.png', // TODO: Find a better alternative
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -140,8 +140,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'nc',
|
||||
extensions: ['.c', '.h'],
|
||||
alias: [],
|
||||
logoUrl: 'c.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'c.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: 'clangformat',
|
||||
previewFilter: /^\s*#include/,
|
||||
monacoDisassembly: null,
|
||||
@@ -152,8 +152,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'c3',
|
||||
extensions: ['.c3'],
|
||||
alias: [],
|
||||
logoUrl: 'c3.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'c3.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -163,8 +163,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'carbon',
|
||||
extensions: ['.carbon'],
|
||||
alias: [],
|
||||
logoUrl: 'carbon.png',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'carbon.png',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -174,8 +174,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'nc',
|
||||
extensions: ['.c', '.h'],
|
||||
alias: [],
|
||||
logoUrl: 'c.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'c.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: 'clangformat',
|
||||
previewFilter: /^\s*#include/,
|
||||
monacoDisassembly: null,
|
||||
@@ -186,8 +186,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'cppp',
|
||||
extensions: ['.cpp', '.h'],
|
||||
alias: [],
|
||||
logoUrl: 'c++.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'c++.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: 'clangformat',
|
||||
previewFilter: /^\s*#include/,
|
||||
monacoDisassembly: null,
|
||||
@@ -199,8 +199,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
extensions: ['.cpp', '.cxx', '.h', '.hpp', '.hxx', '.c'],
|
||||
alias: [],
|
||||
previewFilter: /^\s*#include/,
|
||||
logoUrl: 'c++.svg', // TODO: Find a better alternative
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'c++.svg', // TODO: Find a better alternative
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
monacoDisassembly: null,
|
||||
digitSeparator: "'",
|
||||
@@ -210,9 +210,9 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'mlir',
|
||||
extensions: ['.mlir'],
|
||||
alias: [],
|
||||
logoUrl: 'circt.svg',
|
||||
logoFilename: 'circt.svg',
|
||||
formatter: null,
|
||||
logoUrlDark: null,
|
||||
logoFilenameDark: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: 'mlir',
|
||||
},
|
||||
@@ -221,8 +221,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'clean',
|
||||
extensions: ['.icl'],
|
||||
alias: [],
|
||||
logoUrl: 'clean.svg', // TODO: Find a better alternative
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'clean.svg', // TODO: Find a better alternative
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -232,8 +232,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'cmake',
|
||||
extensions: ['.txt'],
|
||||
alias: [],
|
||||
logoUrl: 'cmake.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'cmake.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -243,8 +243,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'cmake',
|
||||
extensions: ['.cmake'],
|
||||
alias: [],
|
||||
logoUrl: 'cmake.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'cmake.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -254,9 +254,9 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'cobol',
|
||||
extensions: ['.cob', '.cbl', '.cobol'],
|
||||
alias: [],
|
||||
logoUrl: null, // TODO: Find a better alternative
|
||||
logoFilename: null, // TODO: Find a better alternative
|
||||
formatter: null,
|
||||
logoUrlDark: null,
|
||||
logoFilenameDark: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
},
|
||||
@@ -265,8 +265,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'cpp-for-opencl',
|
||||
extensions: ['.clcpp', '.cl', '.ocl'],
|
||||
alias: [],
|
||||
logoUrl: 'opencl.svg', // TODO: Find a better alternative
|
||||
logoUrlDark: 'opencl-dark.svg',
|
||||
logoFilename: 'opencl.svg', // TODO: Find a better alternative
|
||||
logoFilenameDark: 'opencl-dark.svg',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -277,9 +277,9 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'mlir',
|
||||
extensions: ['.mlir'],
|
||||
alias: [],
|
||||
logoUrl: 'mlir.svg',
|
||||
logoFilename: 'mlir.svg',
|
||||
formatter: null,
|
||||
logoUrlDark: null,
|
||||
logoFilenameDark: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
},
|
||||
@@ -288,8 +288,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'cppp',
|
||||
extensions: ['.cpp', '.cxx', '.h', '.hpp', '.hxx', '.c'],
|
||||
alias: [],
|
||||
logoUrl: 'c++.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'c++.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: /^\s*#include/,
|
||||
monacoDisassembly: null,
|
||||
@@ -300,8 +300,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'cppx-blue',
|
||||
extensions: ['.blue', '.cpp', '.cxx', '.h', '.hpp', '.hxx', '.c'],
|
||||
alias: [],
|
||||
logoUrl: 'c++.svg', // TODO: Find a better alternative
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'c++.svg', // TODO: Find a better alternative
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -311,8 +311,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'cppx-gold',
|
||||
extensions: ['.usyntax', '.cpp', '.cxx', '.h', '.hpp', '.hxx', '.c'],
|
||||
alias: [],
|
||||
logoUrl: 'c++.svg', // TODO: Find a better alternative
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'c++.svg', // TODO: Find a better alternative
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -323,8 +323,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'cpp2-cppfront',
|
||||
extensions: ['.cpp2'],
|
||||
alias: [],
|
||||
logoUrl: 'c++.svg', // TODO: Find a better alternative
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'c++.svg', // TODO: Find a better alternative
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: 'cppp',
|
||||
@@ -335,8 +335,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'crystal',
|
||||
extensions: ['.cr'],
|
||||
alias: [],
|
||||
logoUrl: 'crystal.svg',
|
||||
logoUrlDark: 'crystal-dark.svg',
|
||||
logoFilename: 'crystal.svg',
|
||||
logoFilenameDark: 'crystal-dark.svg',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -347,8 +347,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'csharp',
|
||||
extensions: ['.cs'],
|
||||
alias: [],
|
||||
logoUrl: 'dotnet.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'dotnet.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -359,8 +359,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'cuda',
|
||||
extensions: ['.cu'],
|
||||
alias: ['nvcc'],
|
||||
logoUrl: 'cuda.svg',
|
||||
logoUrlDark: 'cuda-dark.svg',
|
||||
logoFilename: 'cuda.svg',
|
||||
logoFilenameDark: 'cuda-dark.svg',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -371,8 +371,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'd',
|
||||
extensions: ['.d'],
|
||||
alias: [],
|
||||
logoUrl: 'd.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'd.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -382,8 +382,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'dart',
|
||||
extensions: ['.dart'],
|
||||
alias: [],
|
||||
logoUrl: 'dart.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'dart.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: 'dartformat',
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -393,8 +393,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'elixir',
|
||||
extensions: ['.ex'],
|
||||
alias: [],
|
||||
logoUrl: 'elixir.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'elixir.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -404,8 +404,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'erlang',
|
||||
extensions: ['.erl', '.hrl'],
|
||||
alias: [],
|
||||
logoUrl: 'erlang.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'erlang.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -415,8 +415,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'fortran',
|
||||
extensions: ['.f90', '.F90', '.f95', '.F95', '.f'],
|
||||
alias: [],
|
||||
logoUrl: 'fortran.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'fortran.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -426,8 +426,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'fsharp',
|
||||
extensions: ['.fs'],
|
||||
alias: [],
|
||||
logoUrl: 'fsharp.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'fsharp.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -437,8 +437,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'glsl',
|
||||
extensions: ['.glsl'],
|
||||
alias: [],
|
||||
logoUrl: 'glsl.svg',
|
||||
logoUrlDark: 'glsl-dark.svg',
|
||||
logoFilename: 'glsl.svg',
|
||||
logoFilenameDark: 'glsl-dark.svg',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -448,8 +448,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'go',
|
||||
extensions: ['.go'],
|
||||
alias: [],
|
||||
logoUrl: 'go.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'go.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -460,8 +460,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'haskell',
|
||||
extensions: ['.hs', '.haskell'],
|
||||
alias: [],
|
||||
logoUrl: 'haskell.png',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'haskell.png',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -472,8 +472,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'hlsl',
|
||||
extensions: ['.hlsl', '.hlsli'],
|
||||
alias: [],
|
||||
logoUrl: 'hlsl.png',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'hlsl.png',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -483,8 +483,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'hook',
|
||||
extensions: ['.hk', '.hook'],
|
||||
alias: [],
|
||||
logoUrl: 'hook.png',
|
||||
logoUrlDark: 'hook-dark.png',
|
||||
logoFilename: 'hook.png',
|
||||
logoFilenameDark: 'hook-dark.png',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -494,8 +494,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'hylo',
|
||||
extensions: ['.hylo'],
|
||||
alias: [],
|
||||
logoUrl: 'hylo.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'hylo.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -505,8 +505,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'asm',
|
||||
extensions: ['.il'],
|
||||
alias: [],
|
||||
logoUrl: 'dotnet.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'dotnet.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -516,8 +516,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'ispc',
|
||||
extensions: ['.ispc'],
|
||||
alias: [],
|
||||
logoUrl: 'ispc.png',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'ispc.png',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -527,8 +527,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'java',
|
||||
extensions: ['.java'],
|
||||
alias: [],
|
||||
logoUrl: 'java.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'java.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -539,8 +539,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'julia',
|
||||
extensions: ['.jl'],
|
||||
alias: [],
|
||||
logoUrl: 'julia.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'julia.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -551,8 +551,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'kotlin',
|
||||
extensions: ['.kt'],
|
||||
alias: [],
|
||||
logoUrl: 'kotlin.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'kotlin.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -563,8 +563,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'llvm-ir',
|
||||
extensions: ['.ll'],
|
||||
alias: [],
|
||||
logoUrl: 'llvm.png',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'llvm.png',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -574,8 +574,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'llvm-ir',
|
||||
extensions: ['.mir'],
|
||||
alias: [],
|
||||
logoUrl: 'llvm.png',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'llvm.png',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -585,8 +585,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'modula2',
|
||||
extensions: ['.mod'],
|
||||
alias: [],
|
||||
logoUrl: null,
|
||||
logoUrlDark: null,
|
||||
logoFilename: null,
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -596,8 +596,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'mojo',
|
||||
extensions: ['.mojo', '.🔥'],
|
||||
alias: [],
|
||||
logoUrl: 'mojo.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'mojo.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: 'mblack',
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -608,8 +608,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'nim',
|
||||
extensions: ['.nim'],
|
||||
alias: [],
|
||||
logoUrl: 'nim.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'nim.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -619,8 +619,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'python',
|
||||
extensions: ['.py'],
|
||||
alias: [],
|
||||
logoUrl: 'numba.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'numba.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -630,8 +630,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'nix',
|
||||
extensions: ['.nix'],
|
||||
alias: [],
|
||||
logoUrl: 'nix.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'nix.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -641,8 +641,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'objective-c',
|
||||
extensions: ['.m'],
|
||||
alias: [],
|
||||
logoUrl: null,
|
||||
logoUrlDark: null,
|
||||
logoFilename: null,
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -652,8 +652,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'objective-c',
|
||||
extensions: ['.mm'],
|
||||
alias: [],
|
||||
logoUrl: null,
|
||||
logoUrlDark: null,
|
||||
logoFilename: null,
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -664,8 +664,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'ocaml',
|
||||
extensions: ['.ml', '.mli'],
|
||||
alias: [],
|
||||
logoUrl: 'ocaml.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'ocaml.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -675,8 +675,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'odin',
|
||||
extensions: ['.odin'],
|
||||
alias: [],
|
||||
logoUrl: 'odin.png',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'odin.png',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -686,8 +686,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'openclc',
|
||||
extensions: ['.cl', '.ocl'],
|
||||
alias: [],
|
||||
logoUrl: 'opencl.svg',
|
||||
logoUrlDark: 'opencl-dark.svg',
|
||||
logoFilename: 'opencl.svg',
|
||||
logoFilenameDark: 'opencl-dark.svg',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -697,8 +697,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'pascal',
|
||||
extensions: ['.pas', '.dpr'],
|
||||
alias: [],
|
||||
logoUrl: 'pascal.svg', // TODO: Find a better alternative
|
||||
logoUrlDark: 'pascal-dark.svg',
|
||||
logoFilename: 'pascal.svg', // TODO: Find a better alternative
|
||||
logoFilenameDark: 'pascal-dark.svg',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -708,8 +708,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'pony',
|
||||
extensions: ['.pony'],
|
||||
alias: [],
|
||||
logoUrl: 'pony.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'pony.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -719,8 +719,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'ptx',
|
||||
extensions: ['.ptx'],
|
||||
alias: [],
|
||||
logoUrl: 'cuda.svg',
|
||||
logoUrlDark: 'cuda-dark.svg',
|
||||
logoFilename: 'cuda.svg',
|
||||
logoFilenameDark: 'cuda-dark.svg',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -730,8 +730,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'python',
|
||||
extensions: ['.py'],
|
||||
alias: [],
|
||||
logoUrl: 'python.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'python.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -742,8 +742,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'scheme',
|
||||
extensions: ['.rkt'],
|
||||
alias: [],
|
||||
logoUrl: 'racket.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'racket.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: 'scheme',
|
||||
@@ -753,8 +753,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'perl',
|
||||
extensions: ['.raku', '.rakutest', '.rakumod', '.rakudoc'],
|
||||
alias: ['Perl 6'],
|
||||
logoUrl: 'camelia.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'camelia.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -764,8 +764,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'ruby',
|
||||
extensions: ['.rb'],
|
||||
alias: [],
|
||||
logoUrl: 'ruby.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'ruby.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: 'asmruby',
|
||||
@@ -776,8 +776,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'rustp',
|
||||
extensions: ['.rs'],
|
||||
alias: [],
|
||||
logoUrl: 'rust.svg',
|
||||
logoUrlDark: 'rust-dark.svg',
|
||||
logoFilename: 'rust.svg',
|
||||
logoFilenameDark: 'rust-dark.svg',
|
||||
formatter: 'rustfmt',
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -788,8 +788,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'sail',
|
||||
extensions: ['.sail'],
|
||||
alias: [],
|
||||
logoUrl: 'sail.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'sail.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -799,8 +799,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'swift',
|
||||
extensions: ['.sn'],
|
||||
alias: [],
|
||||
logoUrl: 'snowball.svg',
|
||||
logoUrlDark: 'snowball.svg',
|
||||
logoFilename: 'snowball.svg',
|
||||
logoFilenameDark: 'snowball.svg',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -810,8 +810,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'scala',
|
||||
extensions: ['.scala'],
|
||||
alias: [],
|
||||
logoUrl: 'scala.png',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'scala.png',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -822,8 +822,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'slang',
|
||||
extensions: ['.slang'],
|
||||
alias: [],
|
||||
logoUrl: 'slang.svg',
|
||||
logoUrlDark: 'slang-dark.svg',
|
||||
logoFilename: 'slang.svg',
|
||||
logoFilenameDark: 'slang-dark.svg',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -833,8 +833,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'sol',
|
||||
extensions: ['.sol'],
|
||||
alias: [],
|
||||
logoUrl: 'solidity.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'solidity.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -844,8 +844,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'spice',
|
||||
extensions: ['.spice'],
|
||||
alias: [],
|
||||
logoUrl: 'spice.png',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'spice.png',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -855,8 +855,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'spirv',
|
||||
extensions: ['.spvasm'],
|
||||
alias: [],
|
||||
logoUrl: 'spirv.svg',
|
||||
logoUrlDark: 'spirv-dark.svg',
|
||||
logoFilename: 'spirv.svg',
|
||||
logoFilenameDark: 'spirv-dark.svg',
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -866,8 +866,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'swift',
|
||||
extensions: ['.swift'],
|
||||
alias: [],
|
||||
logoUrl: 'swift.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'swift.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -878,8 +878,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'tablegen',
|
||||
extensions: ['.td'],
|
||||
alias: [],
|
||||
logoUrl: 'llvm.png',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'llvm.png',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -889,8 +889,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'toit',
|
||||
extensions: ['.toit'],
|
||||
alias: [],
|
||||
logoUrl: 'toit.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'toit.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -900,8 +900,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'typescript',
|
||||
extensions: ['.ts', '.d.ts'],
|
||||
alias: [],
|
||||
logoUrl: 'ts.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'ts.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -912,8 +912,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'v',
|
||||
extensions: ['.v', '.vsh'],
|
||||
alias: [],
|
||||
logoUrl: 'v.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'v.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: 'vfmt',
|
||||
previewFilter: null,
|
||||
monacoDisassembly: 'nc',
|
||||
@@ -923,8 +923,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'vala',
|
||||
extensions: ['.vala'],
|
||||
alias: [],
|
||||
logoUrl: 'vala.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'vala.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -934,8 +934,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'vb',
|
||||
extensions: ['.vb'],
|
||||
alias: [],
|
||||
logoUrl: 'dotnet.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'dotnet.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -945,8 +945,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'python',
|
||||
extensions: ['.vy'],
|
||||
alias: [],
|
||||
logoUrl: 'vyper.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'vyper.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -956,8 +956,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'wat',
|
||||
extensions: ['.wat'],
|
||||
alias: [],
|
||||
logoUrl: 'wasm.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'wasm.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -967,8 +967,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'zig',
|
||||
extensions: ['.zig'],
|
||||
alias: [],
|
||||
logoUrl: 'zig.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'zig.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -979,8 +979,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'typescript',
|
||||
extensions: ['.mjs'],
|
||||
alias: [],
|
||||
logoUrl: 'js.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'js.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -991,8 +991,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'nc',
|
||||
extensions: ['.c'],
|
||||
alias: [],
|
||||
logoUrl: 'gimple.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'gimple.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: /^\s*#include/,
|
||||
monacoDisassembly: null,
|
||||
@@ -1002,8 +1002,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'llvm-ir',
|
||||
extensions: ['.yl'],
|
||||
alias: [],
|
||||
logoUrl: null, // ygen does not yet have a logo ping me if it requires one (@Cr0a3)
|
||||
logoUrlDark: null,
|
||||
logoFilename: null, // ygen does not yet have a logo ping me if it requires one (@Cr0a3)
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
@@ -1013,8 +1013,8 @@ const definitions: Record<LanguageKey, LanguageDefinition> = {
|
||||
monaco: 'sway',
|
||||
extensions: ['.sw'],
|
||||
alias: [],
|
||||
logoUrl: 'sway.svg',
|
||||
logoUrlDark: null,
|
||||
logoFilename: 'sway.svg',
|
||||
logoFilenameDark: null,
|
||||
formatter: null,
|
||||
previewFilter: null,
|
||||
monacoDisassembly: null,
|
||||
|
||||
34
package-lock.json
generated
@@ -56,7 +56,6 @@
|
||||
"sanitize-filename": "^1.6.3",
|
||||
"scroll-into-view-if-needed": "^3.1.0",
|
||||
"semver": "^7.7.2",
|
||||
"serve-favicon": "^2.5.1",
|
||||
"systemd-socket": "0.0.0",
|
||||
"tar-stream": "^3.1.7",
|
||||
"tom-select": "^2.4.3",
|
||||
@@ -89,7 +88,6 @@
|
||||
"@types/node-targz": "^0.2.4",
|
||||
"@types/request": "^2.48.12",
|
||||
"@types/response-time": "^2.3.9",
|
||||
"@types/serve-favicon": "^2.5.7",
|
||||
"@types/temp": "^0.9.4",
|
||||
"@types/underscore": "^1.13.0",
|
||||
"@types/webpack-env": "^1.18.8",
|
||||
@@ -4816,15 +4814,6 @@
|
||||
"@types/node": "*"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/serve-favicon": {
|
||||
"version": "2.5.7",
|
||||
"resolved": "https://registry.npmjs.org/@types/serve-favicon/-/serve-favicon-2.5.7.tgz",
|
||||
"integrity": "sha512-z9TNUQXdQ+W/OJMP1e3KOYUZ99qJS4+ZfFOIrPGImcayqKoyifbJSEFkVq1MCKBbqjMZpjPj3B5ilrQAR2+TOw==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"@types/express": "*"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/serve-static": {
|
||||
"version": "1.15.8",
|
||||
"resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.8.tgz",
|
||||
@@ -12625,29 +12614,6 @@
|
||||
"randombytes": "^2.1.0"
|
||||
}
|
||||
},
|
||||
"node_modules/serve-favicon": {
|
||||
"version": "2.5.1",
|
||||
"resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.1.tgz",
|
||||
"integrity": "sha512-JndLBslCLA/ebr7rS3d+/EKkzTsTi1jI2T9l+vHfAaGJ7A7NhtDpSZ0lx81HCNWnnE0yHncG+SSnVf9IMxOwXQ==",
|
||||
"dependencies": {
|
||||
"etag": "~1.8.1",
|
||||
"fresh": "~0.5.2",
|
||||
"ms": "~2.1.3",
|
||||
"parseurl": "~1.3.2",
|
||||
"safe-buffer": "~5.2.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.8.0"
|
||||
}
|
||||
},
|
||||
"node_modules/serve-favicon/node_modules/fresh": {
|
||||
"version": "0.5.2",
|
||||
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
|
||||
"integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
|
||||
"engines": {
|
||||
"node": ">= 0.6"
|
||||
}
|
||||
},
|
||||
"node_modules/serve-static": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.0.tgz",
|
||||
|
||||
@@ -65,7 +65,6 @@
|
||||
"sanitize-filename": "^1.6.3",
|
||||
"scroll-into-view-if-needed": "^3.1.0",
|
||||
"semver": "^7.7.2",
|
||||
"serve-favicon": "^2.5.1",
|
||||
"systemd-socket": "0.0.0",
|
||||
"tar-stream": "^3.1.7",
|
||||
"tom-select": "^2.4.3",
|
||||
@@ -98,7 +97,6 @@
|
||||
"@types/node-targz": "^0.2.4",
|
||||
"@types/request": "^2.48.12",
|
||||
"@types/response-time": "^2.3.9",
|
||||
"@types/serve-favicon": "^2.5.7",
|
||||
"@types/temp": "^0.9.4",
|
||||
"@types/underscore": "^1.13.0",
|
||||
"@types/webpack-env": "^1.18.8",
|
||||
|
||||
|
Before Width: | Height: | Size: 843 B After Width: | Height: | Size: 843 B |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@@ -1,25 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="306px" height="344.35px" viewBox="0 0 306 344.35" enable-background="new 0 0 306 344.35" xml:space="preserve">
|
||||
<path fill="#00599C" d="M302.107,258.262c2.401-4.159,3.893-8.845,3.893-13.053V99.14c0-4.208-1.49-8.893-3.892-13.052L153,172.175
|
||||
L302.107,258.262z"/>
|
||||
<path fill="#004482" d="M166.25,341.193l126.5-73.034c3.644-2.104,6.956-5.737,9.357-9.897L153,172.175L3.893,258.263
|
||||
c2.401,4.159,5.714,7.793,9.357,9.896l126.5,73.034C147.037,345.401,158.963,345.401,166.25,341.193z"/>
|
||||
<path fill="#659AD2" d="M302.108,86.087c-2.402-4.16-5.715-7.793-9.358-9.897L166.25,3.156c-7.287-4.208-19.213-4.208-26.5,0
|
||||
L13.25,76.19C5.962,80.397,0,90.725,0,99.14v146.069c0,4.208,1.491,8.894,3.893,13.053L153,172.175L302.108,86.087z"/>
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M153,274.175c-56.243,0-102-45.757-102-102s45.757-102,102-102c36.292,0,70.139,19.53,88.331,50.968
|
||||
l-44.143,25.544c-9.105-15.736-26.038-25.512-44.188-25.512c-28.122,0-51,22.878-51,51c0,28.121,22.878,51,51,51
|
||||
c18.152,0,35.085-9.776,44.191-25.515l44.143,25.543C223.142,254.644,189.294,274.175,153,274.175z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#FFFFFF" points="255,166.508 243.666,166.508 243.666,155.175 232.334,155.175 232.334,166.508 221,166.508
|
||||
221,177.841 232.334,177.841 232.334,189.175 243.666,189.175 243.666,177.841 255,177.841 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#FFFFFF" points="297.5,166.508 286.166,166.508 286.166,155.175 274.834,155.175 274.834,166.508 263.5,166.508
|
||||
263.5,177.841 274.834,177.841 274.834,189.175 286.166,189.175 286.166,177.841 297.5,177.841 "/>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="306px" height="344.35px" viewBox="0 0 306 344.35" enable-background="new 0 0 306 344.35" xml:space="preserve">
|
||||
<path fill="#00599C" d="M302.107,258.262c2.401-4.159,3.893-8.845,3.893-13.053V99.14c0-4.208-1.49-8.893-3.892-13.052L153,172.175
|
||||
L302.107,258.262z"/>
|
||||
<path fill="#004482" d="M166.25,341.193l126.5-73.034c3.644-2.104,6.956-5.737,9.357-9.897L153,172.175L3.893,258.263
|
||||
c2.401,4.159,5.714,7.793,9.357,9.896l126.5,73.034C147.037,345.401,158.963,345.401,166.25,341.193z"/>
|
||||
<path fill="#659AD2" d="M302.108,86.087c-2.402-4.16-5.715-7.793-9.358-9.897L166.25,3.156c-7.287-4.208-19.213-4.208-26.5,0
|
||||
L13.25,76.19C5.962,80.397,0,90.725,0,99.14v146.069c0,4.208,1.491,8.894,3.893,13.053L153,172.175L302.108,86.087z"/>
|
||||
<g>
|
||||
<path fill="#FFFFFF" d="M153,274.175c-56.243,0-102-45.757-102-102s45.757-102,102-102c36.292,0,70.139,19.53,88.331,50.968
|
||||
l-44.143,25.544c-9.105-15.736-26.038-25.512-44.188-25.512c-28.122,0-51,22.878-51,51c0,28.121,22.878,51,51,51
|
||||
c18.152,0,35.085-9.776,44.191-25.515l44.143,25.543C223.142,254.644,189.294,274.175,153,274.175z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#FFFFFF" points="255,166.508 243.666,166.508 243.666,155.175 232.334,155.175 232.334,166.508 221,166.508
|
||||
221,177.841 232.334,177.841 232.334,189.175 243.666,189.175 243.666,177.841 255,177.841 "/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon fill="#FFFFFF" points="297.5,166.508 286.166,166.508 286.166,155.175 274.834,155.175 274.834,166.508 263.5,166.508
|
||||
263.5,177.841 274.834,177.841 274.834,189.175 286.166,189.175 286.166,177.841 297.5,177.841 "/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 551 B After Width: | Height: | Size: 551 B |
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 9.7 KiB |
|
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 621 B After Width: | Height: | Size: 621 B |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@@ -1,18 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 193.2 206.7" style="enable-background:new 0 0 193.2 206.7;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill:none;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M165.4,122l-50,49.9c-0.2,0.2-0.5,0.3-0.7,0.2l-68.3-18.3c-0.3-0.1-0.5-0.3-0.5-0.5L27.5,85.1
|
||||
c-0.1-0.3,0-0.5,0.2-0.7l50-49.9c0.2-0.2,0.5-0.3,0.7-0.2l68.3,18.3c0.3,0.1,0.5,0.3,0.5,0.5l18.3,68.2
|
||||
C165.7,121.6,165.6,121.8,165.4,122z M98.4,67.7L31.3,85.6c-0.1,0-0.2,0.2-0.1,0.3l49.1,49c0.1,0.1,0.3,0.1,0.3-0.1l18-67
|
||||
C98.7,67.8,98.5,67.6,98.4,67.7z"/>
|
||||
<g>
|
||||
<rect y="0" class="st1" width="193.2" height="206.7"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 193.2 206.7" style="enable-background:new 0 0 193.2 206.7;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill:none;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M165.4,122l-50,49.9c-0.2,0.2-0.5,0.3-0.7,0.2l-68.3-18.3c-0.3-0.1-0.5-0.3-0.5-0.5L27.5,85.1
|
||||
c-0.1-0.3,0-0.5,0.2-0.7l50-49.9c0.2-0.2,0.5-0.3,0.7-0.2l68.3,18.3c0.3,0.1,0.5,0.3,0.5,0.5l18.3,68.2
|
||||
C165.7,121.6,165.6,121.8,165.4,122z M98.4,67.7L31.3,85.6c-0.1,0-0.2,0.2-0.1,0.3l49.1,49c0.1,0.1,0.3,0.1,0.3-0.1l18-67
|
||||
C98.7,67.8,98.5,67.6,98.4,67.7z"/>
|
||||
<g>
|
||||
<rect y="0" class="st1" width="193.2" height="206.7"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 903 B After Width: | Height: | Size: 885 B |
@@ -1,16 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 193.2 206.7" style="enable-background:new 0 0 193.2 206.7;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
</style>
|
||||
<g>
|
||||
<path d="M165.4,122l-50,49.9c-0.2,0.2-0.5,0.3-0.7,0.2l-68.3-18.3c-0.3-0.1-0.5-0.3-0.5-0.5L27.5,85.1c-0.1-0.3,0-0.5,0.2-0.7
|
||||
l50-49.9c0.2-0.2,0.5-0.3,0.7-0.2l68.3,18.3c0.3,0.1,0.5,0.3,0.5,0.5l18.3,68.2C165.7,121.6,165.6,121.8,165.4,122z M98.4,67.7
|
||||
L31.3,85.6c-0.1,0-0.2,0.2-0.1,0.3l49.1,49c0.1,0.1,0.3,0.1,0.3-0.1l18-67C98.7,67.8,98.5,67.6,98.4,67.7z"/>
|
||||
<g>
|
||||
<rect class="st0" width="193.2" height="206.7"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 193.2 206.7" style="enable-background:new 0 0 193.2 206.7;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
</style>
|
||||
<g>
|
||||
<path d="M165.4,122l-50,49.9c-0.2,0.2-0.5,0.3-0.7,0.2l-68.3-18.3c-0.3-0.1-0.5-0.3-0.5-0.5L27.5,85.1c-0.1-0.3,0-0.5,0.2-0.7
|
||||
l50-49.9c0.2-0.2,0.5-0.3,0.7-0.2l68.3,18.3c0.3,0.1,0.5,0.3,0.5,0.5l18.3,68.2C165.7,121.6,165.6,121.8,165.4,122z M98.4,67.7
|
||||
L31.3,85.6c-0.1,0-0.2,0.2-0.1,0.3l49.1,49c0.1,0.1,0.3,0.1,0.3-0.1l18-67C98.7,67.8,98.5,67.6,98.4,67.7z"/>
|
||||
<g>
|
||||
<rect class="st0" width="193.2" height="206.7"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 859 B After Width: | Height: | Size: 843 B |
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,32 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="svg2" xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="351.46px"
|
||||
height="258.785px" viewBox="35.188 31.512 351.46 258.785" enable-background="new 35.188 31.512 351.46 258.785"
|
||||
xml:space="preserve">
|
||||
<title id="title4">generated by pstoedit version:3.44 from NVBadge_2D.eps</title>
|
||||
<path id="path17" d="M384.195,282.109c0,3.771-2.769,6.302-6.047,6.302v-0.023c-3.371,0.023-6.089-2.508-6.089-6.278
|
||||
c0-3.769,2.718-6.293,6.089-6.293C381.427,275.816,384.195,278.34,384.195,282.109z M386.648,282.109c0-5.175-4.02-8.179-8.5-8.179
|
||||
c-4.511,0-8.531,3.004-8.531,8.179c0,5.172,4.021,8.188,8.531,8.188C382.629,290.297,386.648,287.281,386.648,282.109
|
||||
M376.738,282.801h0.91l2.109,3.703h2.316l-2.336-3.859c1.207-0.086,2.2-0.661,2.2-2.286c0-2.019-1.392-2.668-3.75-2.668h-3.411
|
||||
v8.813h1.961V282.801 M376.738,281.309v-2.122h1.364c0.742,0,1.753,0.06,1.753,0.965c0,0.985-0.523,1.157-1.398,1.157H376.738"/>
|
||||
<path id="path19" d="M329.406,237.027l10.598,28.993H318.48L329.406,237.027z M318.056,225.738l-24.423,61.88h17.246l3.863-10.934
|
||||
h28.903l3.656,10.934h18.722l-24.605-61.888L318.056,225.738z M269.023,287.641h17.497v-61.922l-17.5-0.004L269.023,287.641z
|
||||
M147.556,225.715l-14.598,49.078l-13.984-49.074l-18.879-0.004l19.972,61.926h25.207l20.133-61.926H147.556z M218.281,239.199h7.52
|
||||
c10.91,0,17.966,4.898,17.966,17.609c0,12.714-7.056,17.613-17.966,17.613h-7.52V239.199z M200.931,225.715v61.926h28.366
|
||||
c15.113,0,20.048-2.512,25.384-8.148c3.769-3.957,6.207-12.641,6.207-22.134c0-8.707-2.063-16.468-5.66-21.304
|
||||
c-6.481-8.649-15.817-10.34-29.75-10.34H200.931z M35.188,225.629v62.012h17.645v-47.086l13.672,0.004
|
||||
c4.527,0,7.754,1.128,9.934,3.457c2.765,2.945,3.894,7.699,3.894,16.395v27.23h17.098v-34.262c0-24.453-15.586-27.75-30.836-27.75
|
||||
H35.188z M172.771,225.715l0.007,61.926h17.489v-61.926H172.771z"/>
|
||||
<path id="path21" fill="#77B900" d="M82.211,102.414c0,0,22.504-33.203,67.437-36.638V53.73
|
||||
c-49.769,3.997-92.867,46.149-92.867,46.149s24.41,70.565,92.867,77.026v-12.804C99.411,157.781,82.211,102.414,82.211,102.414z
|
||||
M149.648,138.637v11.726c-37.968-6.769-48.507-46.237-48.507-46.237s18.23-20.195,48.507-23.47v12.867
|
||||
c-0.023,0-0.039-0.007-0.058-0.007c-15.891-1.907-28.305,12.938-28.305,12.938S128.243,131.445,149.648,138.637 M149.648,31.512
|
||||
V53.73c1.461-0.112,2.922-0.207,4.391-0.257c56.582-1.907,93.449,46.406,93.449,46.406s-42.343,51.488-86.457,51.488
|
||||
c-4.043,0-7.828-0.375-11.383-1.005v13.739c3.04,0.386,6.192,0.613,9.481,0.613c41.051,0,70.738-20.965,99.484-45.778
|
||||
c4.766,3.817,24.278,13.103,28.289,17.168c-27.332,22.883-91.031,41.329-127.144,41.329c-3.481,0-6.824-0.211-10.11-0.528v19.306
|
||||
h156.032V31.512H149.648z M149.648,80.656V65.777c1.446-0.101,2.903-0.179,4.391-0.226c40.688-1.278,67.382,34.965,67.382,34.965
|
||||
s-28.832,40.043-59.746,40.043c-4.449,0-8.438-0.715-12.028-1.922V93.523c15.84,1.914,19.028,8.911,28.551,24.786l21.18-17.859
|
||||
c0,0-15.461-20.277-41.524-20.277C155.021,80.172,152.31,80.371,149.648,80.656"/>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="svg2" xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="351.46px"
|
||||
height="258.785px" viewBox="35.188 31.512 351.46 258.785" enable-background="new 35.188 31.512 351.46 258.785"
|
||||
xml:space="preserve">
|
||||
<title id="title4">generated by pstoedit version:3.44 from NVBadge_2D.eps</title>
|
||||
<path id="path17" d="M384.195,282.109c0,3.771-2.769,6.302-6.047,6.302v-0.023c-3.371,0.023-6.089-2.508-6.089-6.278
|
||||
c0-3.769,2.718-6.293,6.089-6.293C381.427,275.816,384.195,278.34,384.195,282.109z M386.648,282.109c0-5.175-4.02-8.179-8.5-8.179
|
||||
c-4.511,0-8.531,3.004-8.531,8.179c0,5.172,4.021,8.188,8.531,8.188C382.629,290.297,386.648,287.281,386.648,282.109
|
||||
M376.738,282.801h0.91l2.109,3.703h2.316l-2.336-3.859c1.207-0.086,2.2-0.661,2.2-2.286c0-2.019-1.392-2.668-3.75-2.668h-3.411
|
||||
v8.813h1.961V282.801 M376.738,281.309v-2.122h1.364c0.742,0,1.753,0.06,1.753,0.965c0,0.985-0.523,1.157-1.398,1.157H376.738"/>
|
||||
<path id="path19" d="M329.406,237.027l10.598,28.993H318.48L329.406,237.027z M318.056,225.738l-24.423,61.88h17.246l3.863-10.934
|
||||
h28.903l3.656,10.934h18.722l-24.605-61.888L318.056,225.738z M269.023,287.641h17.497v-61.922l-17.5-0.004L269.023,287.641z
|
||||
M147.556,225.715l-14.598,49.078l-13.984-49.074l-18.879-0.004l19.972,61.926h25.207l20.133-61.926H147.556z M218.281,239.199h7.52
|
||||
c10.91,0,17.966,4.898,17.966,17.609c0,12.714-7.056,17.613-17.966,17.613h-7.52V239.199z M200.931,225.715v61.926h28.366
|
||||
c15.113,0,20.048-2.512,25.384-8.148c3.769-3.957,6.207-12.641,6.207-22.134c0-8.707-2.063-16.468-5.66-21.304
|
||||
c-6.481-8.649-15.817-10.34-29.75-10.34H200.931z M35.188,225.629v62.012h17.645v-47.086l13.672,0.004
|
||||
c4.527,0,7.754,1.128,9.934,3.457c2.765,2.945,3.894,7.699,3.894,16.395v27.23h17.098v-34.262c0-24.453-15.586-27.75-30.836-27.75
|
||||
H35.188z M172.771,225.715l0.007,61.926h17.489v-61.926H172.771z"/>
|
||||
<path id="path21" fill="#77B900" d="M82.211,102.414c0,0,22.504-33.203,67.437-36.638V53.73
|
||||
c-49.769,3.997-92.867,46.149-92.867,46.149s24.41,70.565,92.867,77.026v-12.804C99.411,157.781,82.211,102.414,82.211,102.414z
|
||||
M149.648,138.637v11.726c-37.968-6.769-48.507-46.237-48.507-46.237s18.23-20.195,48.507-23.47v12.867
|
||||
c-0.023,0-0.039-0.007-0.058-0.007c-15.891-1.907-28.305,12.938-28.305,12.938S128.243,131.445,149.648,138.637 M149.648,31.512
|
||||
V53.73c1.461-0.112,2.922-0.207,4.391-0.257c56.582-1.907,93.449,46.406,93.449,46.406s-42.343,51.488-86.457,51.488
|
||||
c-4.043,0-7.828-0.375-11.383-1.005v13.739c3.04,0.386,6.192,0.613,9.481,0.613c41.051,0,70.738-20.965,99.484-45.778
|
||||
c4.766,3.817,24.278,13.103,28.289,17.168c-27.332,22.883-91.031,41.329-127.144,41.329c-3.481,0-6.824-0.211-10.11-0.528v19.306
|
||||
h156.032V31.512H149.648z M149.648,80.656V65.777c1.446-0.101,2.903-0.179,4.391-0.226c40.688-1.278,67.382,34.965,67.382,34.965
|
||||
s-28.832,40.043-59.746,40.043c-4.449,0-8.438-0.715-12.028-1.922V93.523c15.84,1.914,19.028,8.911,28.551,24.786l21.18-17.859
|
||||
c0,0-15.461-20.277-41.524-20.277C155.021,80.172,152.31,80.371,149.648,80.656"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 8.1 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 692 B After Width: | Height: | Size: 692 B |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
|
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.5 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 320 KiB After Width: | Height: | Size: 320 KiB |
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,49 +1,49 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
|
||||
<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
|
||||
width="233.549683248" height="320" viewBox="0 0 300 350" style="enable-background:new 0 0 300 350;" xml:space="preserve">
|
||||
|
||||
<path style="fill:#5382A1;" d="M102.681,291.324c0,0-14.178,8.245,10.09,11.035c29.4,3.354,44.426,2.873,76.825-3.259
|
||||
|
||||
c0,0,8.518,5.341,20.414,9.967C137.38,340.195,45.634,307.264,102.681,291.324"/>
|
||||
|
||||
<path style="fill:#5382A1;" d="M93.806,250.704c0,0-15.902,11.771,8.384,14.283c31.406,3.24,56.208,3.505,99.125-4.759
|
||||
|
||||
c0,0,5.936,6.018,15.27,9.309C128.771,295.215,30.962,271.562,93.806,250.704"/>
|
||||
|
||||
<path style="fill:#F8981D;" d="M168.625,181.799c17.896,20.604-4.702,39.145-4.702,39.145s45.441-23.458,24.572-52.833
|
||||
|
||||
c-19.491-27.394-34.438-41.005,46.479-87.934C234.974,80.177,107.961,111.899,168.625,181.799"/>
|
||||
|
||||
<path style="fill:#5382A1;" d="M264.684,321.369c0,0,10.492,8.645-11.555,15.333c-41.923,12.7-174.488,16.535-211.314,0.506
|
||||
|
||||
c-13.238-5.759,11.587-13.751,19.396-15.428c8.144-1.766,12.798-1.437,12.798-1.437c-14.722-10.371-95.157,20.364-40.857,29.166
|
||||
|
||||
C181.236,373.524,303.095,338.695,264.684,321.369"/>
|
||||
|
||||
<path style="fill:#5382A1;" d="M109.499,208.617c0,0-67.431,16.016-23.879,21.832c18.389,2.462,55.047,1.905,89.193-0.956
|
||||
|
||||
c27.906-2.354,55.927-7.359,55.927-7.359s-9.84,4.214-16.959,9.075c-68.475,18.009-200.756,9.631-162.674-8.79
|
||||
|
||||
C83.313,206.851,109.499,208.617,109.499,208.617"/>
|
||||
|
||||
<path style="fill:#5382A1;" d="M230.462,276.231c69.608-36.171,37.424-70.931,14.96-66.248c-5.506,1.146-7.961,2.139-7.961,2.139
|
||||
|
||||
s2.044-3.202,5.948-4.588c44.441-15.624,78.619,46.081-14.346,70.52C229.063,278.055,230.14,277.092,230.462,276.231"/>
|
||||
|
||||
<path style="fill:#F8981D;" d="M188.495,4.399c0,0,38.55,38.563-36.563,97.862c-60.233,47.568-13.735,74.69-0.025,105.678
|
||||
|
||||
c-35.159-31.722-60.961-59.647-43.651-85.637C133.663,84.151,204.049,65.654,188.495,4.399"/>
|
||||
|
||||
<path style="fill:#5382A1;" d="M116.339,374.246c66.815,4.277,169.417-2.373,171.847-33.988c0,0-4.671,11.985-55.219,21.503
|
||||
|
||||
c-57.028,10.732-127.364,9.479-169.081,2.601C63.887,364.361,72.426,371.43,116.339,374.246"/>
|
||||
|
||||
|
||||
</svg>
|
||||
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
|
||||
<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
|
||||
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
|
||||
width="233.549683248" height="320" viewBox="0 0 300 350" style="enable-background:new 0 0 300 350;" xml:space="preserve">
|
||||
|
||||
<path style="fill:#5382A1;" d="M102.681,291.324c0,0-14.178,8.245,10.09,11.035c29.4,3.354,44.426,2.873,76.825-3.259
|
||||
|
||||
c0,0,8.518,5.341,20.414,9.967C137.38,340.195,45.634,307.264,102.681,291.324"/>
|
||||
|
||||
<path style="fill:#5382A1;" d="M93.806,250.704c0,0-15.902,11.771,8.384,14.283c31.406,3.24,56.208,3.505,99.125-4.759
|
||||
|
||||
c0,0,5.936,6.018,15.27,9.309C128.771,295.215,30.962,271.562,93.806,250.704"/>
|
||||
|
||||
<path style="fill:#F8981D;" d="M168.625,181.799c17.896,20.604-4.702,39.145-4.702,39.145s45.441-23.458,24.572-52.833
|
||||
|
||||
c-19.491-27.394-34.438-41.005,46.479-87.934C234.974,80.177,107.961,111.899,168.625,181.799"/>
|
||||
|
||||
<path style="fill:#5382A1;" d="M264.684,321.369c0,0,10.492,8.645-11.555,15.333c-41.923,12.7-174.488,16.535-211.314,0.506
|
||||
|
||||
c-13.238-5.759,11.587-13.751,19.396-15.428c8.144-1.766,12.798-1.437,12.798-1.437c-14.722-10.371-95.157,20.364-40.857,29.166
|
||||
|
||||
C181.236,373.524,303.095,338.695,264.684,321.369"/>
|
||||
|
||||
<path style="fill:#5382A1;" d="M109.499,208.617c0,0-67.431,16.016-23.879,21.832c18.389,2.462,55.047,1.905,89.193-0.956
|
||||
|
||||
c27.906-2.354,55.927-7.359,55.927-7.359s-9.84,4.214-16.959,9.075c-68.475,18.009-200.756,9.631-162.674-8.79
|
||||
|
||||
C83.313,206.851,109.499,208.617,109.499,208.617"/>
|
||||
|
||||
<path style="fill:#5382A1;" d="M230.462,276.231c69.608-36.171,37.424-70.931,14.96-66.248c-5.506,1.146-7.961,2.139-7.961,2.139
|
||||
|
||||
s2.044-3.202,5.948-4.588c44.441-15.624,78.619,46.081-14.346,70.52C229.063,278.055,230.14,277.092,230.462,276.231"/>
|
||||
|
||||
<path style="fill:#F8981D;" d="M188.495,4.399c0,0,38.55,38.563-36.563,97.862c-60.233,47.568-13.735,74.69-0.025,105.678
|
||||
|
||||
c-35.159-31.722-60.961-59.647-43.651-85.637C133.663,84.151,204.049,65.654,188.495,4.399"/>
|
||||
|
||||
<path style="fill:#5382A1;" d="M116.339,374.246c66.815,4.277,169.417-2.373,171.847-33.988c0,0-4.671,11.985-55.219,21.503
|
||||
|
||||
c-57.028,10.732-127.364,9.479-169.081,2.601C63.887,364.361,72.426,371.43,116.339,374.246"/>
|
||||
|
||||
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 904 B After Width: | Height: | Size: 904 B |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 126 KiB After Width: | Height: | Size: 126 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 8.4 KiB |
|
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
@@ -1,94 +1,94 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 900 900" style="enable-background:new 0 0 900 900;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{fill:url(#SVGID_00000114785271791017510400000007784813128375659396_);}
|
||||
.st2{fill:#FF6633;}
|
||||
.st3{fill:#1FBEC9;}
|
||||
.st4{fill:url(#SVGID_00000010270431243208880550000013207390290232441783_);}
|
||||
.st5{fill:url(#SVGID_00000026147318369302246490000007494975795837699460_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="508.1032" y1="469.6421" x2="553.6288" y2="410.4037" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="0" style="stop-color:#15768C"/>
|
||||
<stop offset="0.1694" style="stop-color:#188B9D"/>
|
||||
<stop offset="0.3807" style="stop-color:#1A9EAC"/>
|
||||
<stop offset="0.5982" style="stop-color:#1CA9B5"/>
|
||||
<stop offset="0.8297" style="stop-color:#1CADB8"/>
|
||||
</linearGradient>
|
||||
<path class="st0" d="M374.8,482.7c47.2,32.1,102.5,43.4,153,25.9c57.9-20,96.1-73.3,107.6-138.4c-38,28.2-87.3,55.5-142.9,77.6
|
||||
C451.2,464.1,411.1,475.8,374.8,482.7z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000095327665278567640320000000576271776753346716_" gradientUnits="userSpaceOnUse" x1="274.8267" y1="722.6879" x2="453.1015" y2="816.0701" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="6.610756e-02" style="stop-color:#FF6633"/>
|
||||
<stop offset="0.2371" style="stop-color:#FF7133"/>
|
||||
<stop offset="0.6373" style="stop-color:#FF8733"/>
|
||||
<stop offset="0.8966" style="stop-color:#FF8F33"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000095327665278567640320000000576271776753346716_);" d="M514.4,99.8
|
||||
c-44.8-27-95.9-35.6-142.8-19.3C316.4,99.6,279,148.9,265.8,210c38-28.2,87.3-55.5,143-77.7C445.5,117.7,481.3,106.9,514.4,99.8z"
|
||||
/>
|
||||
<path class="st2" d="M687,127.8c-11.5-38.4-81.6-47.5-172.6-28c-33,7.1-68.9,17.9-105.6,32.6c-55.7,22.1-105,49.5-143,77.7
|
||||
c-56.2,41.7-87.6,85.2-78.2,116.4c7.7,25.8,43.3,38.3,93.2,36.6c49.7-1.7,113.6-17.6,178.7-48.9c-78.2,17.3-137.5,14.8-136.1-7.8
|
||||
c2.1-33.1,81.7-96.1,200.5-140.4c17.2-6.4,33.3-12,48.4-16.7c50.9-16,89.7-22.8,115-20.3C687.2,128.5,687.1,128.1,687,127.8z"/>
|
||||
<path class="st3" d="M713.7,253.6c-8-26.7-45.9-39.2-98.7-36.4c-48.9,2.7-110.5,18.5-173.1,48.6c78.2-17.3,137.5-14.8,136.1,7.8
|
||||
c-2.1,33.1-81.7,96.1-200.5,140.4c-20,7.5-38.6,13.8-55.8,19c-47.3,14.4-83.6,20.4-107.6,18c0.1,0.3,0.2,0.7,0.3,1
|
||||
c11,36.7,75.5,46.6,160.5,30.5c36.3-6.9,76.4-18.6,117.7-35c55.6-22.1,104.9-49.4,142.9-77.6C691.6,328.4,723.1,284.9,713.7,253.6
|
||||
z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000085240449827552643330000018036528118404686484_" gradientUnits="userSpaceOnUse" x1="271.8158" y1="600.7686" x2="533.2855" y2="724.712" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="0" style="stop-color:#ED5F2F"/>
|
||||
<stop offset="1" style="stop-color:#FF6633"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000085240449827552643330000018036528118404686484_);" d="M323.3,306.2
|
||||
c2.1-33.1,81.7-96.1,200.5-140.4c17.2-6.4,33.3-12,48.4-16.7c-17.2-20.1-36.9-36.7-57.9-49.4c-33,7.1-68.9,17.9-105.6,32.6
|
||||
c-55.7,22.1-105,49.5-143,77.7c-9.6,44.2-6.6,94.6,11.5,144.2c1.1,3,2.2,5.9,3.4,8.8c49.7-1.7,113.6-17.6,178.7-48.9
|
||||
C381.2,331.4,321.9,328.9,323.3,306.2z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000098219625937688146990000000243755141506980534_" gradientUnits="userSpaceOnUse" x1="327.1469" y1="490.9255" x2="576.7316" y2="586.0054" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="0" style="stop-color:#1BACB5"/>
|
||||
<stop offset="0.9115" style="stop-color:#1FBEC9"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000098219625937688146990000000243755141506980534_);" d="M622.1,234.8c-2.2-6-4.6-11.8-7.1-17.5
|
||||
c-48.9,2.7-110.5,18.5-173.1,48.6c78.2-17.3,137.5-14.8,136.1,7.8c-2.1,33.1-81.7,96.1-200.5,140.4c-20,7.5-38.6,13.8-55.8,19
|
||||
c15.8,19.7,33.8,36.3,53.2,49.5c36.3-6.9,76.4-18.6,117.7-35c55.6-22.1,104.9-49.4,142.9-77.6C642.7,328.1,639,281.1,622.1,234.8z
|
||||
"/>
|
||||
</g>
|
||||
<g id="Layer_3">
|
||||
<g>
|
||||
<path class="st6" d="M161,764.9c-12.4-4.1-23.1-9.9-32.1-17.2l19.9-28c14.5,11.4,31.4,17.2,50.7,17.2c9.6,0,17.3-1.7,23-4.9
|
||||
c5.7-3.3,8.5-7.8,8.5-13.5c0-5.3-2.7-9.5-7.9-12.5c-5.3-3-13.7-5.1-25.2-6.3c-22.3-2.5-38.6-7.8-48.9-15.8
|
||||
c-10.3-8-15.6-19.5-15.6-34.3c0-10,2.7-18.9,8.4-26.5c5.6-7.7,13.5-13.6,23.6-17.9s21.9-6.3,35-6.3c11.4,0,22.5,1.7,33.3,4.9
|
||||
c10.8,3.2,20.4,7.9,28.7,13.9l-18.1,27c-12.8-8.9-26.9-13.5-42.3-13.5c-9.5,0-17.2,1.6-22.7,4.7c-5.7,3.2-8.5,7.3-8.5,12.7
|
||||
c0,5.2,2.5,9.1,7.4,12c4.9,2.8,13.1,4.9,24.6,6.3c22.1,2.5,38.6,8,49.6,16.6c10.9,8.5,16.3,20.2,16.3,35.1
|
||||
c0,10.4-2.8,19.5-8.7,27.3c-5.8,7.9-13.8,14-24.3,18.4c-10.4,4.3-22.4,6.5-36,6.5C186.2,771.1,173.3,769,161,764.9z"/>
|
||||
<path class="st6" d="M289.2,602.8h36.7v164.5h-36.7V602.8z"/>
|
||||
<path class="st6" d="M474.5,651.2v116.2h-31.8l-2.3-13.9c-9.8,10.9-22.6,16.2-38.3,16.2c-10.8,0-20.3-2.5-28.7-7.6
|
||||
c-8.3-5.1-14.8-12.2-19.5-21.4c-4.7-9.1-7-19.6-7-31.3c0-11.7,2.3-22.2,7-31.3c4.7-9.1,11.1-16.3,19.5-21.4
|
||||
c8.3-5.1,17.9-7.6,28.7-7.6c7.8,0,15,1.4,21.5,4.1c6.5,2.8,12.2,6.7,16.9,11.9l2.3-13.6h31.8V651.2z M430.7,730.6
|
||||
c5.2-5.4,7.8-12.5,7.8-21.2c0-8.8-2.6-15.8-7.8-21.2c-5.2-5.4-11.8-8-19.9-8s-14.7,2.8-19.8,8.3c-5.1,5.4-7.5,12.5-7.5,21.1
|
||||
s2.5,15.7,7.5,21.1c5.1,5.4,11.6,8.3,19.8,8.3C418.8,738.6,425.5,735.9,430.7,730.6z"/>
|
||||
<path class="st6" d="M607.7,662.7c8.5,9.4,12.7,22.5,12.7,39v65.5h-36.7v-63.5c0-7.5-1.9-13.5-5.6-17.6
|
||||
c-3.8-4.2-8.9-6.3-15.4-6.3c-7.2,0-12.9,2.4-17.3,7.3c-4.3,4.8-6.5,11.2-6.5,19v61.1h-36.7v-116H534l2.3,13.6
|
||||
c4.5-5.2,10-9.1,16.2-12c6.3-2.8,13.2-4.3,20.9-4.3C587.8,648.6,599.2,653.3,607.7,662.7z"/>
|
||||
<path class="st6" d="M760.8,763.2c4.2,6.3,6.4,13.6,6.4,22c0,9.7-2.7,18.3-7.9,25.8c-5.3,7.4-12.8,13.2-22.4,17.2
|
||||
c-9.6,4-20.9,6-33.6,6c-12.5,0-23.4-2-32.7-6.1c-9.3-4.1-16.6-9.9-21.6-17.4c-5.1-7.5-7.5-16.2-7.5-26c0-2.5,0.1-4.3,0.3-5.7H677
|
||||
c-0.3,7.7,1.9,13.6,6.4,17.9c4.6,4.3,11.2,6.3,20,6.3c7.8,0,14.1-1.7,18.9-5.3c4.8-3.5,7.3-8.1,7.3-14s-2.2-10.6-6.7-13.7
|
||||
c-4.4-3.2-10.8-4.8-19.1-4.8c-12.8,0-24-2.4-33.6-7.3c-9.6-4.8-16.9-11.7-22.2-20.6c-5.3-8.8-7.8-19.2-7.8-30.9
|
||||
c0-11.3,2.7-21.3,8-30.2c5.3-8.8,12.8-15.8,22.4-20.6c9.6-4.9,20.5-7.4,32.8-7.4c9.5,0,18.3,1.9,26.2,5.7l13.6-16.9l26.9,19.5
|
||||
l-15.4,18c7.8,8.9,11.7,19.5,11.7,32c0,8.6-2,16.6-6.2,23.8c-4.2,7.3-10,13.2-17.4,18C750.5,751.9,756.5,756.9,760.8,763.2z
|
||||
M723,726.4c5-5,7.4-11.7,7.4-20s-2.5-14.9-7.4-19.9c-4.9-4.9-11.5-7.4-19.8-7.4c-8.1,0-14.7,2.5-19.6,7.4
|
||||
c-5,4.9-7.4,11.6-7.4,19.9c0,8.1,2.5,14.7,7.4,19.9c5,5.1,11.5,7.6,19.6,7.6C711.5,734,718,731.5,723,726.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st6" d="M813.3,651.4v5.2h-7.8v20.3h-6v-20.3h-7.7v-5.2H813.3z"/>
|
||||
<path class="st6" d="M839.3,651.4h5.3v25.5h-5.9v-15.9l-7.4,9.1h-1.2l-7.5-9.2v15.9h-5.9v-25.5h5.3l8.6,10.8L839.3,651.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 900 900" style="enable-background:new 0 0 900 900;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{fill:url(#SVGID_00000114785271791017510400000007784813128375659396_);}
|
||||
.st2{fill:#FF6633;}
|
||||
.st3{fill:#1FBEC9;}
|
||||
.st4{fill:url(#SVGID_00000010270431243208880550000013207390290232441783_);}
|
||||
.st5{fill:url(#SVGID_00000026147318369302246490000007494975795837699460_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="508.1032" y1="469.6421" x2="553.6288" y2="410.4037" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="0" style="stop-color:#15768C"/>
|
||||
<stop offset="0.1694" style="stop-color:#188B9D"/>
|
||||
<stop offset="0.3807" style="stop-color:#1A9EAC"/>
|
||||
<stop offset="0.5982" style="stop-color:#1CA9B5"/>
|
||||
<stop offset="0.8297" style="stop-color:#1CADB8"/>
|
||||
</linearGradient>
|
||||
<path class="st0" d="M374.8,482.7c47.2,32.1,102.5,43.4,153,25.9c57.9-20,96.1-73.3,107.6-138.4c-38,28.2-87.3,55.5-142.9,77.6
|
||||
C451.2,464.1,411.1,475.8,374.8,482.7z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000095327665278567640320000000576271776753346716_" gradientUnits="userSpaceOnUse" x1="274.8267" y1="722.6879" x2="453.1015" y2="816.0701" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="6.610756e-02" style="stop-color:#FF6633"/>
|
||||
<stop offset="0.2371" style="stop-color:#FF7133"/>
|
||||
<stop offset="0.6373" style="stop-color:#FF8733"/>
|
||||
<stop offset="0.8966" style="stop-color:#FF8F33"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000095327665278567640320000000576271776753346716_);" d="M514.4,99.8
|
||||
c-44.8-27-95.9-35.6-142.8-19.3C316.4,99.6,279,148.9,265.8,210c38-28.2,87.3-55.5,143-77.7C445.5,117.7,481.3,106.9,514.4,99.8z"
|
||||
/>
|
||||
<path class="st2" d="M687,127.8c-11.5-38.4-81.6-47.5-172.6-28c-33,7.1-68.9,17.9-105.6,32.6c-55.7,22.1-105,49.5-143,77.7
|
||||
c-56.2,41.7-87.6,85.2-78.2,116.4c7.7,25.8,43.3,38.3,93.2,36.6c49.7-1.7,113.6-17.6,178.7-48.9c-78.2,17.3-137.5,14.8-136.1-7.8
|
||||
c2.1-33.1,81.7-96.1,200.5-140.4c17.2-6.4,33.3-12,48.4-16.7c50.9-16,89.7-22.8,115-20.3C687.2,128.5,687.1,128.1,687,127.8z"/>
|
||||
<path class="st3" d="M713.7,253.6c-8-26.7-45.9-39.2-98.7-36.4c-48.9,2.7-110.5,18.5-173.1,48.6c78.2-17.3,137.5-14.8,136.1,7.8
|
||||
c-2.1,33.1-81.7,96.1-200.5,140.4c-20,7.5-38.6,13.8-55.8,19c-47.3,14.4-83.6,20.4-107.6,18c0.1,0.3,0.2,0.7,0.3,1
|
||||
c11,36.7,75.5,46.6,160.5,30.5c36.3-6.9,76.4-18.6,117.7-35c55.6-22.1,104.9-49.4,142.9-77.6C691.6,328.4,723.1,284.9,713.7,253.6
|
||||
z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000085240449827552643330000018036528118404686484_" gradientUnits="userSpaceOnUse" x1="271.8158" y1="600.7686" x2="533.2855" y2="724.712" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="0" style="stop-color:#ED5F2F"/>
|
||||
<stop offset="1" style="stop-color:#FF6633"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000085240449827552643330000018036528118404686484_);" d="M323.3,306.2
|
||||
c2.1-33.1,81.7-96.1,200.5-140.4c17.2-6.4,33.3-12,48.4-16.7c-17.2-20.1-36.9-36.7-57.9-49.4c-33,7.1-68.9,17.9-105.6,32.6
|
||||
c-55.7,22.1-105,49.5-143,77.7c-9.6,44.2-6.6,94.6,11.5,144.2c1.1,3,2.2,5.9,3.4,8.8c49.7-1.7,113.6-17.6,178.7-48.9
|
||||
C381.2,331.4,321.9,328.9,323.3,306.2z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000098219625937688146990000000243755141506980534_" gradientUnits="userSpaceOnUse" x1="327.1469" y1="490.9255" x2="576.7316" y2="586.0054" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="0" style="stop-color:#1BACB5"/>
|
||||
<stop offset="0.9115" style="stop-color:#1FBEC9"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000098219625937688146990000000243755141506980534_);" d="M622.1,234.8c-2.2-6-4.6-11.8-7.1-17.5
|
||||
c-48.9,2.7-110.5,18.5-173.1,48.6c78.2-17.3,137.5-14.8,136.1,7.8c-2.1,33.1-81.7,96.1-200.5,140.4c-20,7.5-38.6,13.8-55.8,19
|
||||
c15.8,19.7,33.8,36.3,53.2,49.5c36.3-6.9,76.4-18.6,117.7-35c55.6-22.1,104.9-49.4,142.9-77.6C642.7,328.1,639,281.1,622.1,234.8z
|
||||
"/>
|
||||
</g>
|
||||
<g id="Layer_3">
|
||||
<g>
|
||||
<path class="st6" d="M161,764.9c-12.4-4.1-23.1-9.9-32.1-17.2l19.9-28c14.5,11.4,31.4,17.2,50.7,17.2c9.6,0,17.3-1.7,23-4.9
|
||||
c5.7-3.3,8.5-7.8,8.5-13.5c0-5.3-2.7-9.5-7.9-12.5c-5.3-3-13.7-5.1-25.2-6.3c-22.3-2.5-38.6-7.8-48.9-15.8
|
||||
c-10.3-8-15.6-19.5-15.6-34.3c0-10,2.7-18.9,8.4-26.5c5.6-7.7,13.5-13.6,23.6-17.9s21.9-6.3,35-6.3c11.4,0,22.5,1.7,33.3,4.9
|
||||
c10.8,3.2,20.4,7.9,28.7,13.9l-18.1,27c-12.8-8.9-26.9-13.5-42.3-13.5c-9.5,0-17.2,1.6-22.7,4.7c-5.7,3.2-8.5,7.3-8.5,12.7
|
||||
c0,5.2,2.5,9.1,7.4,12c4.9,2.8,13.1,4.9,24.6,6.3c22.1,2.5,38.6,8,49.6,16.6c10.9,8.5,16.3,20.2,16.3,35.1
|
||||
c0,10.4-2.8,19.5-8.7,27.3c-5.8,7.9-13.8,14-24.3,18.4c-10.4,4.3-22.4,6.5-36,6.5C186.2,771.1,173.3,769,161,764.9z"/>
|
||||
<path class="st6" d="M289.2,602.8h36.7v164.5h-36.7V602.8z"/>
|
||||
<path class="st6" d="M474.5,651.2v116.2h-31.8l-2.3-13.9c-9.8,10.9-22.6,16.2-38.3,16.2c-10.8,0-20.3-2.5-28.7-7.6
|
||||
c-8.3-5.1-14.8-12.2-19.5-21.4c-4.7-9.1-7-19.6-7-31.3c0-11.7,2.3-22.2,7-31.3c4.7-9.1,11.1-16.3,19.5-21.4
|
||||
c8.3-5.1,17.9-7.6,28.7-7.6c7.8,0,15,1.4,21.5,4.1c6.5,2.8,12.2,6.7,16.9,11.9l2.3-13.6h31.8V651.2z M430.7,730.6
|
||||
c5.2-5.4,7.8-12.5,7.8-21.2c0-8.8-2.6-15.8-7.8-21.2c-5.2-5.4-11.8-8-19.9-8s-14.7,2.8-19.8,8.3c-5.1,5.4-7.5,12.5-7.5,21.1
|
||||
s2.5,15.7,7.5,21.1c5.1,5.4,11.6,8.3,19.8,8.3C418.8,738.6,425.5,735.9,430.7,730.6z"/>
|
||||
<path class="st6" d="M607.7,662.7c8.5,9.4,12.7,22.5,12.7,39v65.5h-36.7v-63.5c0-7.5-1.9-13.5-5.6-17.6
|
||||
c-3.8-4.2-8.9-6.3-15.4-6.3c-7.2,0-12.9,2.4-17.3,7.3c-4.3,4.8-6.5,11.2-6.5,19v61.1h-36.7v-116H534l2.3,13.6
|
||||
c4.5-5.2,10-9.1,16.2-12c6.3-2.8,13.2-4.3,20.9-4.3C587.8,648.6,599.2,653.3,607.7,662.7z"/>
|
||||
<path class="st6" d="M760.8,763.2c4.2,6.3,6.4,13.6,6.4,22c0,9.7-2.7,18.3-7.9,25.8c-5.3,7.4-12.8,13.2-22.4,17.2
|
||||
c-9.6,4-20.9,6-33.6,6c-12.5,0-23.4-2-32.7-6.1c-9.3-4.1-16.6-9.9-21.6-17.4c-5.1-7.5-7.5-16.2-7.5-26c0-2.5,0.1-4.3,0.3-5.7H677
|
||||
c-0.3,7.7,1.9,13.6,6.4,17.9c4.6,4.3,11.2,6.3,20,6.3c7.8,0,14.1-1.7,18.9-5.3c4.8-3.5,7.3-8.1,7.3-14s-2.2-10.6-6.7-13.7
|
||||
c-4.4-3.2-10.8-4.8-19.1-4.8c-12.8,0-24-2.4-33.6-7.3c-9.6-4.8-16.9-11.7-22.2-20.6c-5.3-8.8-7.8-19.2-7.8-30.9
|
||||
c0-11.3,2.7-21.3,8-30.2c5.3-8.8,12.8-15.8,22.4-20.6c9.6-4.9,20.5-7.4,32.8-7.4c9.5,0,18.3,1.9,26.2,5.7l13.6-16.9l26.9,19.5
|
||||
l-15.4,18c7.8,8.9,11.7,19.5,11.7,32c0,8.6-2,16.6-6.2,23.8c-4.2,7.3-10,13.2-17.4,18C750.5,751.9,756.5,756.9,760.8,763.2z
|
||||
M723,726.4c5-5,7.4-11.7,7.4-20s-2.5-14.9-7.4-19.9c-4.9-4.9-11.5-7.4-19.8-7.4c-8.1,0-14.7,2.5-19.6,7.4
|
||||
c-5,4.9-7.4,11.6-7.4,19.9c0,8.1,2.5,14.7,7.4,19.9c5,5.1,11.5,7.6,19.6,7.6C711.5,734,718,731.5,723,726.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="st6" d="M813.3,651.4v5.2h-7.8v20.3h-6v-20.3h-7.7v-5.2H813.3z"/>
|
||||
<path class="st6" d="M839.3,651.4h5.3v25.5h-5.9v-15.9l-7.4,9.1h-1.2l-7.5-9.2v15.9h-5.9v-25.5h5.3l8.6,10.8L839.3,651.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 6.9 KiB |
@@ -1,93 +1,93 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 900 900" style="enable-background:new 0 0 900 900;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{fill:url(#SVGID_00000019674646477668803660000004853486206102334595_);}
|
||||
.st2{fill:#FF6633;}
|
||||
.st3{fill:#1FBEC9;}
|
||||
.st4{fill:url(#SVGID_00000094601211090812083030000011770382400873951901_);}
|
||||
.st5{fill:url(#SVGID_00000145742574544887165730000000051871512990356112_);}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="508.1032" y1="469.6421" x2="553.6288" y2="410.4037" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="0" style="stop-color:#15768C"/>
|
||||
<stop offset="0.1694" style="stop-color:#188B9D"/>
|
||||
<stop offset="0.3807" style="stop-color:#1A9EAC"/>
|
||||
<stop offset="0.5982" style="stop-color:#1CA9B5"/>
|
||||
<stop offset="0.8297" style="stop-color:#1CADB8"/>
|
||||
</linearGradient>
|
||||
<path class="st0" d="M374.8,482.7c47.2,32.1,102.5,43.4,153,25.9c57.9-20,96.1-73.3,107.6-138.4c-38,28.2-87.3,55.5-142.9,77.6
|
||||
C451.2,464.1,411.1,475.8,374.8,482.7z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000110450548971295283910000010371313037166367672_" gradientUnits="userSpaceOnUse" x1="274.8267" y1="722.6879" x2="453.1015" y2="816.0701" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="6.610756e-02" style="stop-color:#FF6633"/>
|
||||
<stop offset="0.2371" style="stop-color:#FF7133"/>
|
||||
<stop offset="0.6373" style="stop-color:#FF8733"/>
|
||||
<stop offset="0.8966" style="stop-color:#FF8F33"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000110450548971295283910000010371313037166367672_);" d="M514.4,99.8
|
||||
c-44.8-27-95.9-35.6-142.8-19.3C316.4,99.6,279,148.9,265.8,210c38-28.2,87.3-55.5,143-77.7C445.5,117.7,481.3,106.9,514.4,99.8z"
|
||||
/>
|
||||
<path class="st2" d="M687,127.8c-11.5-38.4-81.6-47.5-172.6-28c-33,7.1-68.9,17.9-105.6,32.6c-55.7,22.1-105,49.5-143,77.7
|
||||
c-56.2,41.7-87.6,85.2-78.2,116.4c7.7,25.8,43.3,38.3,93.2,36.6c49.7-1.7,113.6-17.6,178.7-48.9c-78.2,17.3-137.5,14.8-136.1-7.8
|
||||
c2.1-33.1,81.7-96.1,200.5-140.4c17.2-6.4,33.3-12,48.4-16.7c50.9-16,89.7-22.8,115-20.3C687.2,128.5,687.1,128.1,687,127.8z"/>
|
||||
<path class="st3" d="M713.7,253.6c-8-26.7-45.9-39.2-98.7-36.4c-48.9,2.7-110.5,18.5-173.1,48.6c78.2-17.3,137.5-14.8,136.1,7.8
|
||||
c-2.1,33.1-81.7,96.1-200.5,140.4c-20,7.5-38.6,13.8-55.8,19c-47.3,14.4-83.6,20.4-107.6,18c0.1,0.3,0.2,0.7,0.3,1
|
||||
c11,36.7,75.5,46.6,160.5,30.5c36.3-6.9,76.4-18.6,117.7-35c55.6-22.1,104.9-49.4,142.9-77.6C691.6,328.4,723.1,284.9,713.7,253.6
|
||||
z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000176743141088842700890000008363157872437393296_" gradientUnits="userSpaceOnUse" x1="271.8158" y1="600.7686" x2="533.2855" y2="724.712" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="0" style="stop-color:#ED5F2F"/>
|
||||
<stop offset="1" style="stop-color:#FF6633"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000176743141088842700890000008363157872437393296_);" d="M323.3,306.2
|
||||
c2.1-33.1,81.7-96.1,200.5-140.4c17.2-6.4,33.3-12,48.4-16.7c-17.2-20.1-36.9-36.7-57.9-49.4c-33,7.1-68.9,17.9-105.6,32.6
|
||||
c-55.7,22.1-105,49.5-143,77.7c-9.6,44.2-6.6,94.6,11.5,144.2c1.1,3,2.2,5.9,3.4,8.8c49.7-1.7,113.6-17.6,178.7-48.9
|
||||
C381.2,331.4,321.9,328.9,323.3,306.2z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000013914580096290273190000001191777895756599742_" gradientUnits="userSpaceOnUse" x1="327.1469" y1="490.9255" x2="576.7316" y2="586.0054" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="0" style="stop-color:#1BACB5"/>
|
||||
<stop offset="0.9115" style="stop-color:#1FBEC9"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000013914580096290273190000001191777895756599742_);" d="M622.1,234.8c-2.2-6-4.6-11.8-7.1-17.5
|
||||
c-48.9,2.7-110.5,18.5-173.1,48.6c78.2-17.3,137.5-14.8,136.1,7.8c-2.1,33.1-81.7,96.1-200.5,140.4c-20,7.5-38.6,13.8-55.8,19
|
||||
c15.8,19.7,33.8,36.3,53.2,49.5c36.3-6.9,76.4-18.6,117.7-35c55.6-22.1,104.9-49.4,142.9-77.6C642.7,328.1,639,281.1,622.1,234.8z
|
||||
"/>
|
||||
</g>
|
||||
<g id="Layer_3">
|
||||
<g>
|
||||
<path d="M161,764.9c-12.4-4.1-23.1-9.9-32.1-17.2l19.9-28c14.5,11.4,31.4,17.2,50.7,17.2c9.6,0,17.3-1.7,23-4.9
|
||||
c5.7-3.3,8.5-7.8,8.5-13.5c0-5.3-2.7-9.5-7.9-12.5c-5.3-3-13.7-5.1-25.2-6.3c-22.3-2.5-38.6-7.8-48.9-15.8
|
||||
c-10.3-8-15.6-19.5-15.6-34.3c0-10,2.7-18.9,8.4-26.5c5.6-7.7,13.5-13.6,23.6-17.9s21.9-6.3,35-6.3c11.4,0,22.5,1.7,33.3,4.9
|
||||
c10.8,3.2,20.4,7.9,28.7,13.9l-18.1,27c-12.8-8.9-26.9-13.5-42.3-13.5c-9.5,0-17.2,1.6-22.7,4.7c-5.7,3.2-8.5,7.3-8.5,12.7
|
||||
c0,5.2,2.5,9.1,7.4,12c4.9,2.8,13.1,4.9,24.6,6.3c22.1,2.5,38.6,8,49.6,16.6c10.9,8.5,16.3,20.2,16.3,35.1
|
||||
c0,10.4-2.8,19.5-8.7,27.3c-5.8,7.9-13.8,14-24.3,18.4c-10.4,4.3-22.4,6.5-36,6.5C186.2,771.1,173.3,769,161,764.9z"/>
|
||||
<path d="M289.2,602.8h36.7v164.5h-36.7V602.8z"/>
|
||||
<path d="M474.5,651.2v116.2h-31.8l-2.3-13.9c-9.8,10.9-22.6,16.2-38.3,16.2c-10.8,0-20.3-2.5-28.7-7.6
|
||||
c-8.3-5.1-14.8-12.2-19.5-21.4c-4.7-9.1-7-19.6-7-31.3c0-11.7,2.3-22.2,7-31.3c4.7-9.1,11.1-16.3,19.5-21.4
|
||||
c8.3-5.1,17.9-7.6,28.7-7.6c7.8,0,15,1.4,21.5,4.1c6.5,2.8,12.2,6.7,16.9,11.9l2.3-13.6h31.8V651.2z M430.7,730.6
|
||||
c5.2-5.4,7.8-12.5,7.8-21.2c0-8.8-2.6-15.8-7.8-21.2c-5.2-5.4-11.8-8-19.9-8s-14.7,2.8-19.8,8.3c-5.1,5.4-7.5,12.5-7.5,21.1
|
||||
s2.5,15.7,7.5,21.1c5.1,5.4,11.6,8.3,19.8,8.3C418.8,738.6,425.5,735.9,430.7,730.6z"/>
|
||||
<path d="M607.7,662.7c8.5,9.4,12.7,22.5,12.7,39v65.5h-36.7v-63.5c0-7.5-1.9-13.5-5.6-17.6c-3.8-4.2-8.9-6.3-15.4-6.3
|
||||
c-7.2,0-12.9,2.4-17.3,7.3c-4.3,4.8-6.5,11.2-6.5,19v61.1h-36.7v-116H534l2.3,13.6c4.5-5.2,10-9.1,16.2-12
|
||||
c6.3-2.8,13.2-4.3,20.9-4.3C587.8,648.6,599.2,653.3,607.7,662.7z"/>
|
||||
<path d="M760.8,763.2c4.2,6.3,6.4,13.6,6.4,22c0,9.7-2.7,18.3-7.9,25.8c-5.3,7.4-12.8,13.2-22.4,17.2c-9.6,4-20.9,6-33.6,6
|
||||
c-12.5,0-23.4-2-32.7-6.1c-9.3-4.1-16.6-9.9-21.6-17.4c-5.1-7.5-7.5-16.2-7.5-26c0-2.5,0.1-4.3,0.3-5.7H677
|
||||
c-0.3,7.7,1.9,13.6,6.4,17.9c4.6,4.3,11.2,6.3,20,6.3c7.8,0,14.1-1.7,18.9-5.3c4.8-3.5,7.3-8.1,7.3-14s-2.2-10.6-6.7-13.7
|
||||
c-4.4-3.2-10.8-4.8-19.1-4.8c-12.8,0-24-2.4-33.6-7.3c-9.6-4.8-16.9-11.7-22.2-20.6c-5.3-8.8-7.8-19.2-7.8-30.9
|
||||
c0-11.3,2.7-21.3,8-30.2c5.3-8.8,12.8-15.8,22.4-20.6c9.6-4.9,20.5-7.4,32.8-7.4c9.5,0,18.3,1.9,26.2,5.7l13.6-16.9l26.9,19.5
|
||||
l-15.4,18c7.8,8.9,11.7,19.5,11.7,32c0,8.6-2,16.6-6.2,23.8c-4.2,7.3-10,13.2-17.4,18C750.5,751.9,756.5,756.9,760.8,763.2z
|
||||
M723,726.4c5-5,7.4-11.7,7.4-20s-2.5-14.9-7.4-19.9c-4.9-4.9-11.5-7.4-19.8-7.4c-8.1,0-14.7,2.5-19.6,7.4
|
||||
c-5,4.9-7.4,11.6-7.4,19.9c0,8.1,2.5,14.7,7.4,19.9c5,5.1,11.5,7.6,19.6,7.6C711.5,734,718,731.5,723,726.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M813.3,651.4v5.2h-7.8v20.3h-6v-20.3h-7.7v-5.2H813.3z"/>
|
||||
<path d="M839.3,651.4h5.3v25.5h-5.9v-15.9l-7.4,9.1h-1.2l-7.5-9.2v15.9h-5.9v-25.5h5.3l8.6,10.8L839.3,651.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 900 900" style="enable-background:new 0 0 900 900;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{fill:url(#SVGID_00000019674646477668803660000004853486206102334595_);}
|
||||
.st2{fill:#FF6633;}
|
||||
.st3{fill:#1FBEC9;}
|
||||
.st4{fill:url(#SVGID_00000094601211090812083030000011770382400873951901_);}
|
||||
.st5{fill:url(#SVGID_00000145742574544887165730000000051871512990356112_);}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="508.1032" y1="469.6421" x2="553.6288" y2="410.4037" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="0" style="stop-color:#15768C"/>
|
||||
<stop offset="0.1694" style="stop-color:#188B9D"/>
|
||||
<stop offset="0.3807" style="stop-color:#1A9EAC"/>
|
||||
<stop offset="0.5982" style="stop-color:#1CA9B5"/>
|
||||
<stop offset="0.8297" style="stop-color:#1CADB8"/>
|
||||
</linearGradient>
|
||||
<path class="st0" d="M374.8,482.7c47.2,32.1,102.5,43.4,153,25.9c57.9-20,96.1-73.3,107.6-138.4c-38,28.2-87.3,55.5-142.9,77.6
|
||||
C451.2,464.1,411.1,475.8,374.8,482.7z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000110450548971295283910000010371313037166367672_" gradientUnits="userSpaceOnUse" x1="274.8267" y1="722.6879" x2="453.1015" y2="816.0701" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="6.610756e-02" style="stop-color:#FF6633"/>
|
||||
<stop offset="0.2371" style="stop-color:#FF7133"/>
|
||||
<stop offset="0.6373" style="stop-color:#FF8733"/>
|
||||
<stop offset="0.8966" style="stop-color:#FF8F33"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000110450548971295283910000010371313037166367672_);" d="M514.4,99.8
|
||||
c-44.8-27-95.9-35.6-142.8-19.3C316.4,99.6,279,148.9,265.8,210c38-28.2,87.3-55.5,143-77.7C445.5,117.7,481.3,106.9,514.4,99.8z"
|
||||
/>
|
||||
<path class="st2" d="M687,127.8c-11.5-38.4-81.6-47.5-172.6-28c-33,7.1-68.9,17.9-105.6,32.6c-55.7,22.1-105,49.5-143,77.7
|
||||
c-56.2,41.7-87.6,85.2-78.2,116.4c7.7,25.8,43.3,38.3,93.2,36.6c49.7-1.7,113.6-17.6,178.7-48.9c-78.2,17.3-137.5,14.8-136.1-7.8
|
||||
c2.1-33.1,81.7-96.1,200.5-140.4c17.2-6.4,33.3-12,48.4-16.7c50.9-16,89.7-22.8,115-20.3C687.2,128.5,687.1,128.1,687,127.8z"/>
|
||||
<path class="st3" d="M713.7,253.6c-8-26.7-45.9-39.2-98.7-36.4c-48.9,2.7-110.5,18.5-173.1,48.6c78.2-17.3,137.5-14.8,136.1,7.8
|
||||
c-2.1,33.1-81.7,96.1-200.5,140.4c-20,7.5-38.6,13.8-55.8,19c-47.3,14.4-83.6,20.4-107.6,18c0.1,0.3,0.2,0.7,0.3,1
|
||||
c11,36.7,75.5,46.6,160.5,30.5c36.3-6.9,76.4-18.6,117.7-35c55.6-22.1,104.9-49.4,142.9-77.6C691.6,328.4,723.1,284.9,713.7,253.6
|
||||
z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000176743141088842700890000008363157872437393296_" gradientUnits="userSpaceOnUse" x1="271.8158" y1="600.7686" x2="533.2855" y2="724.712" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="0" style="stop-color:#ED5F2F"/>
|
||||
<stop offset="1" style="stop-color:#FF6633"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000176743141088842700890000008363157872437393296_);" d="M323.3,306.2
|
||||
c2.1-33.1,81.7-96.1,200.5-140.4c17.2-6.4,33.3-12,48.4-16.7c-17.2-20.1-36.9-36.7-57.9-49.4c-33,7.1-68.9,17.9-105.6,32.6
|
||||
c-55.7,22.1-105,49.5-143,77.7c-9.6,44.2-6.6,94.6,11.5,144.2c1.1,3,2.2,5.9,3.4,8.8c49.7-1.7,113.6-17.6,178.7-48.9
|
||||
C381.2,331.4,321.9,328.9,323.3,306.2z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000013914580096290273190000001191777895756599742_" gradientUnits="userSpaceOnUse" x1="327.1469" y1="490.9255" x2="576.7316" y2="586.0054" gradientTransform="matrix(1 0 0 -1 0 900)">
|
||||
<stop offset="0" style="stop-color:#1BACB5"/>
|
||||
<stop offset="0.9115" style="stop-color:#1FBEC9"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000013914580096290273190000001191777895756599742_);" d="M622.1,234.8c-2.2-6-4.6-11.8-7.1-17.5
|
||||
c-48.9,2.7-110.5,18.5-173.1,48.6c78.2-17.3,137.5-14.8,136.1,7.8c-2.1,33.1-81.7,96.1-200.5,140.4c-20,7.5-38.6,13.8-55.8,19
|
||||
c15.8,19.7,33.8,36.3,53.2,49.5c36.3-6.9,76.4-18.6,117.7-35c55.6-22.1,104.9-49.4,142.9-77.6C642.7,328.1,639,281.1,622.1,234.8z
|
||||
"/>
|
||||
</g>
|
||||
<g id="Layer_3">
|
||||
<g>
|
||||
<path d="M161,764.9c-12.4-4.1-23.1-9.9-32.1-17.2l19.9-28c14.5,11.4,31.4,17.2,50.7,17.2c9.6,0,17.3-1.7,23-4.9
|
||||
c5.7-3.3,8.5-7.8,8.5-13.5c0-5.3-2.7-9.5-7.9-12.5c-5.3-3-13.7-5.1-25.2-6.3c-22.3-2.5-38.6-7.8-48.9-15.8
|
||||
c-10.3-8-15.6-19.5-15.6-34.3c0-10,2.7-18.9,8.4-26.5c5.6-7.7,13.5-13.6,23.6-17.9s21.9-6.3,35-6.3c11.4,0,22.5,1.7,33.3,4.9
|
||||
c10.8,3.2,20.4,7.9,28.7,13.9l-18.1,27c-12.8-8.9-26.9-13.5-42.3-13.5c-9.5,0-17.2,1.6-22.7,4.7c-5.7,3.2-8.5,7.3-8.5,12.7
|
||||
c0,5.2,2.5,9.1,7.4,12c4.9,2.8,13.1,4.9,24.6,6.3c22.1,2.5,38.6,8,49.6,16.6c10.9,8.5,16.3,20.2,16.3,35.1
|
||||
c0,10.4-2.8,19.5-8.7,27.3c-5.8,7.9-13.8,14-24.3,18.4c-10.4,4.3-22.4,6.5-36,6.5C186.2,771.1,173.3,769,161,764.9z"/>
|
||||
<path d="M289.2,602.8h36.7v164.5h-36.7V602.8z"/>
|
||||
<path d="M474.5,651.2v116.2h-31.8l-2.3-13.9c-9.8,10.9-22.6,16.2-38.3,16.2c-10.8,0-20.3-2.5-28.7-7.6
|
||||
c-8.3-5.1-14.8-12.2-19.5-21.4c-4.7-9.1-7-19.6-7-31.3c0-11.7,2.3-22.2,7-31.3c4.7-9.1,11.1-16.3,19.5-21.4
|
||||
c8.3-5.1,17.9-7.6,28.7-7.6c7.8,0,15,1.4,21.5,4.1c6.5,2.8,12.2,6.7,16.9,11.9l2.3-13.6h31.8V651.2z M430.7,730.6
|
||||
c5.2-5.4,7.8-12.5,7.8-21.2c0-8.8-2.6-15.8-7.8-21.2c-5.2-5.4-11.8-8-19.9-8s-14.7,2.8-19.8,8.3c-5.1,5.4-7.5,12.5-7.5,21.1
|
||||
s2.5,15.7,7.5,21.1c5.1,5.4,11.6,8.3,19.8,8.3C418.8,738.6,425.5,735.9,430.7,730.6z"/>
|
||||
<path d="M607.7,662.7c8.5,9.4,12.7,22.5,12.7,39v65.5h-36.7v-63.5c0-7.5-1.9-13.5-5.6-17.6c-3.8-4.2-8.9-6.3-15.4-6.3
|
||||
c-7.2,0-12.9,2.4-17.3,7.3c-4.3,4.8-6.5,11.2-6.5,19v61.1h-36.7v-116H534l2.3,13.6c4.5-5.2,10-9.1,16.2-12
|
||||
c6.3-2.8,13.2-4.3,20.9-4.3C587.8,648.6,599.2,653.3,607.7,662.7z"/>
|
||||
<path d="M760.8,763.2c4.2,6.3,6.4,13.6,6.4,22c0,9.7-2.7,18.3-7.9,25.8c-5.3,7.4-12.8,13.2-22.4,17.2c-9.6,4-20.9,6-33.6,6
|
||||
c-12.5,0-23.4-2-32.7-6.1c-9.3-4.1-16.6-9.9-21.6-17.4c-5.1-7.5-7.5-16.2-7.5-26c0-2.5,0.1-4.3,0.3-5.7H677
|
||||
c-0.3,7.7,1.9,13.6,6.4,17.9c4.6,4.3,11.2,6.3,20,6.3c7.8,0,14.1-1.7,18.9-5.3c4.8-3.5,7.3-8.1,7.3-14s-2.2-10.6-6.7-13.7
|
||||
c-4.4-3.2-10.8-4.8-19.1-4.8c-12.8,0-24-2.4-33.6-7.3c-9.6-4.8-16.9-11.7-22.2-20.6c-5.3-8.8-7.8-19.2-7.8-30.9
|
||||
c0-11.3,2.7-21.3,8-30.2c5.3-8.8,12.8-15.8,22.4-20.6c9.6-4.9,20.5-7.4,32.8-7.4c9.5,0,18.3,1.9,26.2,5.7l13.6-16.9l26.9,19.5
|
||||
l-15.4,18c7.8,8.9,11.7,19.5,11.7,32c0,8.6-2,16.6-6.2,23.8c-4.2,7.3-10,13.2-17.4,18C750.5,751.9,756.5,756.9,760.8,763.2z
|
||||
M723,726.4c5-5,7.4-11.7,7.4-20s-2.5-14.9-7.4-19.9c-4.9-4.9-11.5-7.4-19.8-7.4c-8.1,0-14.7,2.5-19.6,7.4
|
||||
c-5,4.9-7.4,11.6-7.4,19.9c0,8.1,2.5,14.7,7.4,19.9c5,5.1,11.5,7.6,19.6,7.6C711.5,734,718,731.5,723,726.4z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M813.3,651.4v5.2h-7.8v20.3h-6v-20.3h-7.7v-5.2H813.3z"/>
|
||||
<path d="M839.3,651.4h5.3v25.5h-5.9v-15.9l-7.4,9.1h-1.2l-7.5-9.2v15.9h-5.9v-25.5h5.3l8.6,10.8L839.3,651.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.8 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
@@ -1,55 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1500 500" style="enable-background:new 0 0 1500 500;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{display:none;}
|
||||
.st1{display:inline;fill:#004BA9;}
|
||||
.st2{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g id="Layer_1">
|
||||
</g>
|
||||
<g id="Layer_2" class="st0">
|
||||
<path class="st1" d="M-439.5,519.3c-88.8-42.7-122.5-77.4-114.7-109c7.2-29.5,79.2-61,147.6-65.1c140.4-8.4,202.4,12.1,344.6,52.5
|
||||
c-124.1-86.3-246.9-125.4-392.2-114.6c-128.9,9.6-198.5,63.6-200.6,113.9C-657.9,467-529.5,507.4-439.5,519.3z"/>
|
||||
</g>
|
||||
<g id="Layer_3">
|
||||
<g>
|
||||
<path class="st2" d="M540.4,190H648c14.9,0,27.6,2.1,38.1,6.5c10.5,4.4,18.9,10,25.6,17.2c6.5,7.1,11.4,15.3,14.4,24.5
|
||||
s4.5,18.6,4.5,28.5c0,9.5-1.5,18.9-4.5,28.2c-3,9.3-7.8,17.4-14.4,24.6c-6.5,7.1-15,12.9-25.6,17.2c-10.4,4.4-23.2,6.5-38.1,6.5
|
||||
h-55.2v85.5h-52.4L540.4,190L540.4,190z M592.8,302.4h40.8c6,0,11.8-0.5,17.4-1.4c5.5-0.9,10.4-2.6,14.7-5.1
|
||||
c4.3-2.5,7.6-6.1,10.2-10.9c2.5-4.6,3.9-10.8,3.9-18.4c0-7.5-1.3-13.7-3.9-18.4c-2.5-4.6-6-8.3-10.2-10.9
|
||||
c-4.3-2.5-9.2-4.3-14.7-5.1c-5.5-0.9-11.4-1.4-17.4-1.4h-40.8V302.4L592.8,302.4z"/>
|
||||
<path class="st2" d="M1033.8,416.3c-1.1-4.8-2.1-9.8-2.6-15.2c-0.5-5.3-0.9-10.5-1.1-15.7c-0.1-5.1-0.4-9.7-0.6-13.4
|
||||
c-0.5-6-1.3-12-2.5-18.1c-1.3-6-3.3-11.5-5.9-16.6c-2.8-5-6.1-9.4-10.4-13c-4.3-3.6-9.5-6.4-16.1-8.2v-0.6
|
||||
c13.4-5.4,23.1-13.2,29-23.5c5.9-10.2,8.9-22.3,8.9-36.4c0-9.2-1.6-17.7-4.9-25.6c-3.3-8-7.9-14.9-14-20.9
|
||||
c-6.1-6-13.5-10.7-22.1-14.2c-8.7-3.4-18.3-5.1-29-5.1H856.4c10.2,11.3,21.4,24.8,32.3,40.8h55c12,0,21.1,2.6,27.1,7.9
|
||||
c6,5.3,9,13.7,9,25.2c0,12-3,20.7-9,26.1c-6,5.4-15,8-27.1,8h-57.4v-64c-15-6.6-32.4-13.3-52.4-20.1v214.5h52.4v-93.2h52.4
|
||||
c13.2,0,22.7,2.9,28.5,8.7c5.9,5.9,9.7,15,11.4,27.5c1.4,9.7,2.4,19.7,3,30.1c0.8,10.5,2.5,19.6,5.4,27.1h52.4
|
||||
C1036.9,425.3,1035.1,421.1,1033.8,416.3z"/>
|
||||
<path class="st2" d="M1052.3,297.8h92.2l12.1,37h-92.2L1052.3,297.8z"/>
|
||||
<path class="st2" d="M1289.4,428.4H1230L1152.2,189h54.3l53.3,168.4h0.7l54-168.4h54.3L1289.4,428.4z"/>
|
||||
<g>
|
||||
<polygon class="st2" points="1362.2,404.9 1352.9,404.9 1352.9,428.9 1344.9,428.9 1344.9,404.9 1335.7,404.9 1335.7,398
|
||||
1362.2,398 "/>
|
||||
<polygon class="st2" points="1365.7,398 1377.6,398 1382.9,418.6 1383,418.6 1388.2,398 1400.2,398 1400.2,428.9 1392.6,428.9
|
||||
1392.6,405.4 1392.5,405.4 1386,428.9 1379.8,428.9 1373.3,405.4 1373.3,405.4 1373.3,428.9 1365.7,428.9 "/>
|
||||
</g>
|
||||
<path class="st2" d="M751.9,190h-2.6v238.6h52.4v-225C786.4,199.1,769.8,194.5,751.9,190z"/>
|
||||
<path class="st2" d="M515.1,325.2c-5.6-8.7-12.4-15.4-20.2-20.6c-7.8-5.1-15.7-8.8-23.6-11.2c-7.9-2.4-14-4-18.6-4.9
|
||||
c-14.9-3.9-27-6.9-36.2-9.4c-9.3-2.5-16.4-4.9-21.7-7.4c-5.3-2.5-8.8-5.1-10.5-8c-1.8-2.9-2.6-6.8-2.6-11.4
|
||||
c0-5.1,1.1-9.3,3.4-12.7c2.3-3.4,5-6.1,8.5-8.4c3.5-2.1,7.3-3.8,11.5-4.6c4.1-0.9,8.4-1.4,12.7-1.4c6.5,0,12.4,0.5,17.9,1.6
|
||||
c5.5,1.1,10.3,3,14.5,5.6c4.1,2.6,7.6,6.4,10.2,11c2.5,4.6,4,10.5,4.5,17.7h50.8c0-13.8-2.6-25.6-7.9-35.2
|
||||
c-5.3-9.8-12.3-17.7-21.2-24c-8.9-6.3-19.2-10.8-30.6-13.5c-11.4-2.8-23.5-4.1-35.9-4.1c-10.7,0-21.4,1.5-32.1,4.4
|
||||
c-10.7,3-20.2,7.4-28.7,13.4c-8.5,6-15.3,13.5-20.6,22.6c-5.3,8.9-7.9,19.6-7.9,31.9c0,11,2,20.3,6.1,28c4.1,7.6,9.5,14,16.2,19.2
|
||||
c6.6,5.1,14.2,9.3,22.7,12.5c8.5,3.1,17.2,5.9,26.1,8.2c8.7,2.4,17.2,4.6,25.7,6.6c8.4,2,16.1,4.4,22.7,7c6.6,2.6,12,6,16.2,10
|
||||
c4.1,4,6.1,9.2,6.1,15.7c0,6-1.5,11-4.6,14.9c-3.1,3.9-7,6.9-11.7,9.2c-4.6,2.3-9.7,3.8-15,4.5c-5.4,0.8-10.4,1.1-15,1.1
|
||||
c-6.9,0-13.5-0.9-20.1-2.5c-6.5-1.6-12.2-4.1-16.9-7.6c-3.9-2.8-7.1-6.4-9.8-10.5c-15.6-2.5-34.9-5.8-56.1-9.5
|
||||
c1.1,9,3.6,17.1,7.3,24.3c5.6,10.8,13,19.6,22.6,26.5c9.4,6.9,20.3,11.9,32.7,15.2c12.3,3.3,25.1,4.9,38.2,4.9
|
||||
c16.2,0,30.5-1.9,42.9-5.6c12.4-3.9,22.7-9.2,31.1-15.9c8.4-6.8,14.7-14.8,18.9-24.2c4.3-9.3,6.4-19.4,6.4-30.3
|
||||
C523.6,344.7,520.7,333.7,515.1,325.2z"/>
|
||||
<path class="st2" d="M216,219.8c7.9-73.5,163.8-119.6,348.2-103c84,7.6,181.2,36.3,261.5,72.2c-81.8-63-252-123.5-385.9-128.7
|
||||
c-184.4-7.1-337.2,51.2-341.1,130.2c-3.3,65.9,98,125.4,238.7,147.4C259.4,306.4,211.4,263.2,216,219.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1500 500" style="enable-background:new 0 0 1500 500;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{display:none;}
|
||||
.st1{display:inline;fill:#004BA9;}
|
||||
.st2{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g id="Layer_1">
|
||||
</g>
|
||||
<g id="Layer_2" class="st0">
|
||||
<path class="st1" d="M-439.5,519.3c-88.8-42.7-122.5-77.4-114.7-109c7.2-29.5,79.2-61,147.6-65.1c140.4-8.4,202.4,12.1,344.6,52.5
|
||||
c-124.1-86.3-246.9-125.4-392.2-114.6c-128.9,9.6-198.5,63.6-200.6,113.9C-657.9,467-529.5,507.4-439.5,519.3z"/>
|
||||
</g>
|
||||
<g id="Layer_3">
|
||||
<g>
|
||||
<path class="st2" d="M540.4,190H648c14.9,0,27.6,2.1,38.1,6.5c10.5,4.4,18.9,10,25.6,17.2c6.5,7.1,11.4,15.3,14.4,24.5
|
||||
s4.5,18.6,4.5,28.5c0,9.5-1.5,18.9-4.5,28.2c-3,9.3-7.8,17.4-14.4,24.6c-6.5,7.1-15,12.9-25.6,17.2c-10.4,4.4-23.2,6.5-38.1,6.5
|
||||
h-55.2v85.5h-52.4L540.4,190L540.4,190z M592.8,302.4h40.8c6,0,11.8-0.5,17.4-1.4c5.5-0.9,10.4-2.6,14.7-5.1
|
||||
c4.3-2.5,7.6-6.1,10.2-10.9c2.5-4.6,3.9-10.8,3.9-18.4c0-7.5-1.3-13.7-3.9-18.4c-2.5-4.6-6-8.3-10.2-10.9
|
||||
c-4.3-2.5-9.2-4.3-14.7-5.1c-5.5-0.9-11.4-1.4-17.4-1.4h-40.8V302.4L592.8,302.4z"/>
|
||||
<path class="st2" d="M1033.8,416.3c-1.1-4.8-2.1-9.8-2.6-15.2c-0.5-5.3-0.9-10.5-1.1-15.7c-0.1-5.1-0.4-9.7-0.6-13.4
|
||||
c-0.5-6-1.3-12-2.5-18.1c-1.3-6-3.3-11.5-5.9-16.6c-2.8-5-6.1-9.4-10.4-13c-4.3-3.6-9.5-6.4-16.1-8.2v-0.6
|
||||
c13.4-5.4,23.1-13.2,29-23.5c5.9-10.2,8.9-22.3,8.9-36.4c0-9.2-1.6-17.7-4.9-25.6c-3.3-8-7.9-14.9-14-20.9
|
||||
c-6.1-6-13.5-10.7-22.1-14.2c-8.7-3.4-18.3-5.1-29-5.1H856.4c10.2,11.3,21.4,24.8,32.3,40.8h55c12,0,21.1,2.6,27.1,7.9
|
||||
c6,5.3,9,13.7,9,25.2c0,12-3,20.7-9,26.1c-6,5.4-15,8-27.1,8h-57.4v-64c-15-6.6-32.4-13.3-52.4-20.1v214.5h52.4v-93.2h52.4
|
||||
c13.2,0,22.7,2.9,28.5,8.7c5.9,5.9,9.7,15,11.4,27.5c1.4,9.7,2.4,19.7,3,30.1c0.8,10.5,2.5,19.6,5.4,27.1h52.4
|
||||
C1036.9,425.3,1035.1,421.1,1033.8,416.3z"/>
|
||||
<path class="st2" d="M1052.3,297.8h92.2l12.1,37h-92.2L1052.3,297.8z"/>
|
||||
<path class="st2" d="M1289.4,428.4H1230L1152.2,189h54.3l53.3,168.4h0.7l54-168.4h54.3L1289.4,428.4z"/>
|
||||
<g>
|
||||
<polygon class="st2" points="1362.2,404.9 1352.9,404.9 1352.9,428.9 1344.9,428.9 1344.9,404.9 1335.7,404.9 1335.7,398
|
||||
1362.2,398 "/>
|
||||
<polygon class="st2" points="1365.7,398 1377.6,398 1382.9,418.6 1383,418.6 1388.2,398 1400.2,398 1400.2,428.9 1392.6,428.9
|
||||
1392.6,405.4 1392.5,405.4 1386,428.9 1379.8,428.9 1373.3,405.4 1373.3,405.4 1373.3,428.9 1365.7,428.9 "/>
|
||||
</g>
|
||||
<path class="st2" d="M751.9,190h-2.6v238.6h52.4v-225C786.4,199.1,769.8,194.5,751.9,190z"/>
|
||||
<path class="st2" d="M515.1,325.2c-5.6-8.7-12.4-15.4-20.2-20.6c-7.8-5.1-15.7-8.8-23.6-11.2c-7.9-2.4-14-4-18.6-4.9
|
||||
c-14.9-3.9-27-6.9-36.2-9.4c-9.3-2.5-16.4-4.9-21.7-7.4c-5.3-2.5-8.8-5.1-10.5-8c-1.8-2.9-2.6-6.8-2.6-11.4
|
||||
c0-5.1,1.1-9.3,3.4-12.7c2.3-3.4,5-6.1,8.5-8.4c3.5-2.1,7.3-3.8,11.5-4.6c4.1-0.9,8.4-1.4,12.7-1.4c6.5,0,12.4,0.5,17.9,1.6
|
||||
c5.5,1.1,10.3,3,14.5,5.6c4.1,2.6,7.6,6.4,10.2,11c2.5,4.6,4,10.5,4.5,17.7h50.8c0-13.8-2.6-25.6-7.9-35.2
|
||||
c-5.3-9.8-12.3-17.7-21.2-24c-8.9-6.3-19.2-10.8-30.6-13.5c-11.4-2.8-23.5-4.1-35.9-4.1c-10.7,0-21.4,1.5-32.1,4.4
|
||||
c-10.7,3-20.2,7.4-28.7,13.4c-8.5,6-15.3,13.5-20.6,22.6c-5.3,8.9-7.9,19.6-7.9,31.9c0,11,2,20.3,6.1,28c4.1,7.6,9.5,14,16.2,19.2
|
||||
c6.6,5.1,14.2,9.3,22.7,12.5c8.5,3.1,17.2,5.9,26.1,8.2c8.7,2.4,17.2,4.6,25.7,6.6c8.4,2,16.1,4.4,22.7,7c6.6,2.6,12,6,16.2,10
|
||||
c4.1,4,6.1,9.2,6.1,15.7c0,6-1.5,11-4.6,14.9c-3.1,3.9-7,6.9-11.7,9.2c-4.6,2.3-9.7,3.8-15,4.5c-5.4,0.8-10.4,1.1-15,1.1
|
||||
c-6.9,0-13.5-0.9-20.1-2.5c-6.5-1.6-12.2-4.1-16.9-7.6c-3.9-2.8-7.1-6.4-9.8-10.5c-15.6-2.5-34.9-5.8-56.1-9.5
|
||||
c1.1,9,3.6,17.1,7.3,24.3c5.6,10.8,13,19.6,22.6,26.5c9.4,6.9,20.3,11.9,32.7,15.2c12.3,3.3,25.1,4.9,38.2,4.9
|
||||
c16.2,0,30.5-1.9,42.9-5.6c12.4-3.9,22.7-9.2,31.1-15.9c8.4-6.8,14.7-14.8,18.9-24.2c4.3-9.3,6.4-19.4,6.4-30.3
|
||||
C523.6,344.7,520.7,333.7,515.1,325.2z"/>
|
||||
<path class="st2" d="M216,219.8c7.9-73.5,163.8-119.6,348.2-103c84,7.6,181.2,36.3,261.5,72.2c-81.8-63-252-123.5-385.9-128.7
|
||||
c-184.4-7.1-337.2,51.2-341.1,130.2c-3.3,65.9,98,125.4,238.7,147.4C259.4,306.4,211.4,263.2,216,219.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@@ -1,55 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1500 500" style="enable-background:new 0 0 1500 500;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{display:none;}
|
||||
.st1{display:inline;fill:#004BA9;}
|
||||
.st2{fill:#004BA9;}
|
||||
</style>
|
||||
<g id="Layer_1">
|
||||
</g>
|
||||
<g id="Layer_2" class="st0">
|
||||
<path class="st1" d="M-439.5,519.3c-88.8-42.7-122.5-77.4-114.7-109c7.2-29.5,79.2-61,147.6-65.1c140.4-8.4,202.4,12.1,344.6,52.5
|
||||
c-124.1-86.3-246.9-125.4-392.2-114.6c-128.9,9.6-198.5,63.6-200.6,113.9C-657.9,467-529.5,507.4-439.5,519.3z"/>
|
||||
</g>
|
||||
<g id="Layer_3">
|
||||
<g>
|
||||
<path class="st2" d="M540.4,190H648c14.9,0,27.6,2.1,38.1,6.5c10.5,4.4,18.9,10,25.6,17.2c6.5,7.1,11.4,15.3,14.4,24.5
|
||||
s4.5,18.6,4.5,28.5c0,9.5-1.5,18.9-4.5,28.2c-3,9.3-7.8,17.4-14.4,24.6c-6.5,7.1-15,12.9-25.6,17.2c-10.4,4.4-23.2,6.5-38.1,6.5
|
||||
h-55.2v85.5h-52.4L540.4,190L540.4,190z M592.8,302.4h40.8c6,0,11.8-0.5,17.4-1.4c5.5-0.9,10.4-2.6,14.7-5.1
|
||||
c4.3-2.5,7.6-6.1,10.2-10.9c2.5-4.6,3.9-10.8,3.9-18.4c0-7.5-1.3-13.7-3.9-18.4c-2.5-4.6-6-8.3-10.2-10.9
|
||||
c-4.3-2.5-9.2-4.3-14.7-5.1c-5.5-0.9-11.4-1.4-17.4-1.4h-40.8V302.4L592.8,302.4z"/>
|
||||
<path class="st2" d="M1033.8,416.3c-1.1-4.8-2.1-9.8-2.6-15.2c-0.5-5.3-0.9-10.5-1.1-15.7c-0.1-5.1-0.4-9.7-0.6-13.4
|
||||
c-0.5-6-1.3-12-2.5-18.1c-1.3-6-3.3-11.5-5.9-16.6c-2.8-5-6.1-9.4-10.4-13c-4.3-3.6-9.5-6.4-16.1-8.2v-0.6
|
||||
c13.4-5.4,23.1-13.2,29-23.5c5.9-10.2,8.9-22.3,8.9-36.4c0-9.2-1.6-17.7-4.9-25.6c-3.3-8-7.9-14.9-14-20.9
|
||||
c-6.1-6-13.5-10.7-22.1-14.2c-8.7-3.4-18.3-5.1-29-5.1H856.4c10.2,11.3,21.4,24.8,32.3,40.8h55c12,0,21.1,2.6,27.1,7.9
|
||||
c6,5.3,9,13.7,9,25.2c0,12-3,20.7-9,26.1c-6,5.4-15,8-27.1,8h-57.4v-64c-15-6.6-32.4-13.3-52.4-20.1v214.5h52.4v-93.2h52.4
|
||||
c13.2,0,22.7,2.9,28.5,8.7c5.9,5.9,9.7,15,11.4,27.5c1.4,9.7,2.4,19.7,3,30.1c0.8,10.5,2.5,19.6,5.4,27.1h52.4
|
||||
C1036.9,425.3,1035.1,421.1,1033.8,416.3z"/>
|
||||
<path class="st2" d="M1052.3,297.8h92.2l12.1,37h-92.2L1052.3,297.8z"/>
|
||||
<path class="st2" d="M1289.4,428.4H1230L1152.2,189h54.3l53.3,168.4h0.7l54-168.4h54.3L1289.4,428.4z"/>
|
||||
<g>
|
||||
<polygon class="st2" points="1362.2,404.9 1352.9,404.9 1352.9,428.9 1344.9,428.9 1344.9,404.9 1335.7,404.9 1335.7,398
|
||||
1362.2,398 "/>
|
||||
<polygon class="st2" points="1365.7,398 1377.6,398 1382.9,418.6 1383,418.6 1388.2,398 1400.2,398 1400.2,428.9 1392.6,428.9
|
||||
1392.6,405.4 1392.5,405.4 1386,428.9 1379.8,428.9 1373.3,405.4 1373.3,405.4 1373.3,428.9 1365.7,428.9 "/>
|
||||
</g>
|
||||
<path class="st2" d="M751.9,190h-2.6v238.6h52.4v-225C786.4,199.1,769.8,194.5,751.9,190z"/>
|
||||
<path class="st2" d="M515.1,325.2c-5.6-8.7-12.4-15.4-20.2-20.6c-7.8-5.1-15.7-8.8-23.6-11.2c-7.9-2.4-14-4-18.6-4.9
|
||||
c-14.9-3.9-27-6.9-36.2-9.4c-9.3-2.5-16.4-4.9-21.7-7.4c-5.3-2.5-8.8-5.1-10.5-8c-1.8-2.9-2.6-6.8-2.6-11.4
|
||||
c0-5.1,1.1-9.3,3.4-12.7c2.3-3.4,5-6.1,8.5-8.4c3.5-2.1,7.3-3.8,11.5-4.6c4.1-0.9,8.4-1.4,12.7-1.4c6.5,0,12.4,0.5,17.9,1.6
|
||||
c5.5,1.1,10.3,3,14.5,5.6c4.1,2.6,7.6,6.4,10.2,11c2.5,4.6,4,10.5,4.5,17.7h50.8c0-13.8-2.6-25.6-7.9-35.2
|
||||
c-5.3-9.8-12.3-17.7-21.2-24c-8.9-6.3-19.2-10.8-30.6-13.5c-11.4-2.8-23.5-4.1-35.9-4.1c-10.7,0-21.4,1.5-32.1,4.4
|
||||
c-10.7,3-20.2,7.4-28.7,13.4c-8.5,6-15.3,13.5-20.6,22.6c-5.3,8.9-7.9,19.6-7.9,31.9c0,11,2,20.3,6.1,28c4.1,7.6,9.5,14,16.2,19.2
|
||||
c6.6,5.1,14.2,9.3,22.7,12.5c8.5,3.1,17.2,5.9,26.1,8.2c8.7,2.4,17.2,4.6,25.7,6.6c8.4,2,16.1,4.4,22.7,7c6.6,2.6,12,6,16.2,10
|
||||
c4.1,4,6.1,9.2,6.1,15.7c0,6-1.5,11-4.6,14.9c-3.1,3.9-7,6.9-11.7,9.2c-4.6,2.3-9.7,3.8-15,4.5c-5.4,0.8-10.4,1.1-15,1.1
|
||||
c-6.9,0-13.5-0.9-20.1-2.5c-6.5-1.6-12.2-4.1-16.9-7.6c-3.9-2.8-7.1-6.4-9.8-10.5c-15.6-2.5-34.9-5.8-56.1-9.5
|
||||
c1.1,9,3.6,17.1,7.3,24.3c5.6,10.8,13,19.6,22.6,26.5c9.4,6.9,20.3,11.9,32.7,15.2c12.3,3.3,25.1,4.9,38.2,4.9
|
||||
c16.2,0,30.5-1.9,42.9-5.6c12.4-3.9,22.7-9.2,31.1-15.9c8.4-6.8,14.7-14.8,18.9-24.2c4.3-9.3,6.4-19.4,6.4-30.3
|
||||
C523.6,344.7,520.7,333.7,515.1,325.2z"/>
|
||||
<path class="st2" d="M216,219.8c7.9-73.5,163.8-119.6,348.2-103c84,7.6,181.2,36.3,261.5,72.2c-81.8-63-252-123.5-385.9-128.7
|
||||
c-184.4-7.1-337.2,51.2-341.1,130.2c-3.3,65.9,98,125.4,238.7,147.4C259.4,306.4,211.4,263.2,216,219.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 28.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1500 500" style="enable-background:new 0 0 1500 500;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{display:none;}
|
||||
.st1{display:inline;fill:#004BA9;}
|
||||
.st2{fill:#004BA9;}
|
||||
</style>
|
||||
<g id="Layer_1">
|
||||
</g>
|
||||
<g id="Layer_2" class="st0">
|
||||
<path class="st1" d="M-439.5,519.3c-88.8-42.7-122.5-77.4-114.7-109c7.2-29.5,79.2-61,147.6-65.1c140.4-8.4,202.4,12.1,344.6,52.5
|
||||
c-124.1-86.3-246.9-125.4-392.2-114.6c-128.9,9.6-198.5,63.6-200.6,113.9C-657.9,467-529.5,507.4-439.5,519.3z"/>
|
||||
</g>
|
||||
<g id="Layer_3">
|
||||
<g>
|
||||
<path class="st2" d="M540.4,190H648c14.9,0,27.6,2.1,38.1,6.5c10.5,4.4,18.9,10,25.6,17.2c6.5,7.1,11.4,15.3,14.4,24.5
|
||||
s4.5,18.6,4.5,28.5c0,9.5-1.5,18.9-4.5,28.2c-3,9.3-7.8,17.4-14.4,24.6c-6.5,7.1-15,12.9-25.6,17.2c-10.4,4.4-23.2,6.5-38.1,6.5
|
||||
h-55.2v85.5h-52.4L540.4,190L540.4,190z M592.8,302.4h40.8c6,0,11.8-0.5,17.4-1.4c5.5-0.9,10.4-2.6,14.7-5.1
|
||||
c4.3-2.5,7.6-6.1,10.2-10.9c2.5-4.6,3.9-10.8,3.9-18.4c0-7.5-1.3-13.7-3.9-18.4c-2.5-4.6-6-8.3-10.2-10.9
|
||||
c-4.3-2.5-9.2-4.3-14.7-5.1c-5.5-0.9-11.4-1.4-17.4-1.4h-40.8V302.4L592.8,302.4z"/>
|
||||
<path class="st2" d="M1033.8,416.3c-1.1-4.8-2.1-9.8-2.6-15.2c-0.5-5.3-0.9-10.5-1.1-15.7c-0.1-5.1-0.4-9.7-0.6-13.4
|
||||
c-0.5-6-1.3-12-2.5-18.1c-1.3-6-3.3-11.5-5.9-16.6c-2.8-5-6.1-9.4-10.4-13c-4.3-3.6-9.5-6.4-16.1-8.2v-0.6
|
||||
c13.4-5.4,23.1-13.2,29-23.5c5.9-10.2,8.9-22.3,8.9-36.4c0-9.2-1.6-17.7-4.9-25.6c-3.3-8-7.9-14.9-14-20.9
|
||||
c-6.1-6-13.5-10.7-22.1-14.2c-8.7-3.4-18.3-5.1-29-5.1H856.4c10.2,11.3,21.4,24.8,32.3,40.8h55c12,0,21.1,2.6,27.1,7.9
|
||||
c6,5.3,9,13.7,9,25.2c0,12-3,20.7-9,26.1c-6,5.4-15,8-27.1,8h-57.4v-64c-15-6.6-32.4-13.3-52.4-20.1v214.5h52.4v-93.2h52.4
|
||||
c13.2,0,22.7,2.9,28.5,8.7c5.9,5.9,9.7,15,11.4,27.5c1.4,9.7,2.4,19.7,3,30.1c0.8,10.5,2.5,19.6,5.4,27.1h52.4
|
||||
C1036.9,425.3,1035.1,421.1,1033.8,416.3z"/>
|
||||
<path class="st2" d="M1052.3,297.8h92.2l12.1,37h-92.2L1052.3,297.8z"/>
|
||||
<path class="st2" d="M1289.4,428.4H1230L1152.2,189h54.3l53.3,168.4h0.7l54-168.4h54.3L1289.4,428.4z"/>
|
||||
<g>
|
||||
<polygon class="st2" points="1362.2,404.9 1352.9,404.9 1352.9,428.9 1344.9,428.9 1344.9,404.9 1335.7,404.9 1335.7,398
|
||||
1362.2,398 "/>
|
||||
<polygon class="st2" points="1365.7,398 1377.6,398 1382.9,418.6 1383,418.6 1388.2,398 1400.2,398 1400.2,428.9 1392.6,428.9
|
||||
1392.6,405.4 1392.5,405.4 1386,428.9 1379.8,428.9 1373.3,405.4 1373.3,405.4 1373.3,428.9 1365.7,428.9 "/>
|
||||
</g>
|
||||
<path class="st2" d="M751.9,190h-2.6v238.6h52.4v-225C786.4,199.1,769.8,194.5,751.9,190z"/>
|
||||
<path class="st2" d="M515.1,325.2c-5.6-8.7-12.4-15.4-20.2-20.6c-7.8-5.1-15.7-8.8-23.6-11.2c-7.9-2.4-14-4-18.6-4.9
|
||||
c-14.9-3.9-27-6.9-36.2-9.4c-9.3-2.5-16.4-4.9-21.7-7.4c-5.3-2.5-8.8-5.1-10.5-8c-1.8-2.9-2.6-6.8-2.6-11.4
|
||||
c0-5.1,1.1-9.3,3.4-12.7c2.3-3.4,5-6.1,8.5-8.4c3.5-2.1,7.3-3.8,11.5-4.6c4.1-0.9,8.4-1.4,12.7-1.4c6.5,0,12.4,0.5,17.9,1.6
|
||||
c5.5,1.1,10.3,3,14.5,5.6c4.1,2.6,7.6,6.4,10.2,11c2.5,4.6,4,10.5,4.5,17.7h50.8c0-13.8-2.6-25.6-7.9-35.2
|
||||
c-5.3-9.8-12.3-17.7-21.2-24c-8.9-6.3-19.2-10.8-30.6-13.5c-11.4-2.8-23.5-4.1-35.9-4.1c-10.7,0-21.4,1.5-32.1,4.4
|
||||
c-10.7,3-20.2,7.4-28.7,13.4c-8.5,6-15.3,13.5-20.6,22.6c-5.3,8.9-7.9,19.6-7.9,31.9c0,11,2,20.3,6.1,28c4.1,7.6,9.5,14,16.2,19.2
|
||||
c6.6,5.1,14.2,9.3,22.7,12.5c8.5,3.1,17.2,5.9,26.1,8.2c8.7,2.4,17.2,4.6,25.7,6.6c8.4,2,16.1,4.4,22.7,7c6.6,2.6,12,6,16.2,10
|
||||
c4.1,4,6.1,9.2,6.1,15.7c0,6-1.5,11-4.6,14.9c-3.1,3.9-7,6.9-11.7,9.2c-4.6,2.3-9.7,3.8-15,4.5c-5.4,0.8-10.4,1.1-15,1.1
|
||||
c-6.9,0-13.5-0.9-20.1-2.5c-6.5-1.6-12.2-4.1-16.9-7.6c-3.9-2.8-7.1-6.4-9.8-10.5c-15.6-2.5-34.9-5.8-56.1-9.5
|
||||
c1.1,9,3.6,17.1,7.3,24.3c5.6,10.8,13,19.6,22.6,26.5c9.4,6.9,20.3,11.9,32.7,15.2c12.3,3.3,25.1,4.9,38.2,4.9
|
||||
c16.2,0,30.5-1.9,42.9-5.6c12.4-3.9,22.7-9.2,31.1-15.9c8.4-6.8,14.7-14.8,18.9-24.2c4.3-9.3,6.4-19.4,6.4-30.3
|
||||
C523.6,344.7,520.7,333.7,515.1,325.2z"/>
|
||||
<path class="st2" d="M216,219.8c7.9-73.5,163.8-119.6,348.2-103c84,7.6,181.2,36.3,261.5,72.2c-81.8-63-252-123.5-385.9-128.7
|
||||
c-184.4-7.1-337.2,51.2-341.1,130.2c-3.3,65.9,98,125.4,238.7,147.4C259.4,306.4,211.4,263.2,216,219.8z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 8.7 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 1010 B After Width: | Height: | Size: 1010 B |
|
Before Width: | Height: | Size: 709 B After Width: | Height: | Size: 709 B |
|
Before Width: | Height: | Size: 831 B After Width: | Height: | Size: 831 B |
|
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 7.0 KiB |
|
Before Width: | Height: | Size: 352 B After Width: | Height: | Size: 352 B |