@espressif/dashboard-ui-components 1.2.2 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +126 -0
- package/README.md +15 -6
- package/dist/{app-logo.props-TKCDuodn.d.ts → app-logo.props-Ct7QBdTd.d.ts} +1 -1
- package/dist/{chunk-F5P6S7K2.js → chunk-7BO76CNB.js} +75 -14
- package/dist/{chunk-JPMN2UMF.js → chunk-KCMVLNM5.js} +12 -12
- package/dist/{chunk-YWRID3U3.js → chunk-O5BFYRPY.js} +1541 -339
- package/dist/{chunk-XDY5H3S3.js → chunk-RCRU3JW2.js} +40 -28
- package/dist/{chunk-IEHT62YM.js → chunk-RKAFXJRD.js} +3 -3
- package/dist/{chunk-4J5RO6E2.js → chunk-TSNA6BHK.js} +30 -8
- package/dist/{chunk-KGOWRVSU.js → chunk-UHRNPXO5.js} +404 -225
- package/dist/common/index.d.ts +4 -4
- package/dist/common/index.js +6 -6
- package/dist/components/index.d.ts +201 -13
- package/dist/components/index.js +4 -4
- package/dist/core/index.d.ts +2 -2
- package/dist/core/index.js +2 -2
- package/dist/{index-Cv9vHALn.d.ts → index-BQANnKs9.d.ts} +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/index.js +7 -7
- package/dist/layouts/index.d.ts +20 -7
- package/dist/layouts/index.js +4 -4
- package/dist/{list.props-DBDJt4C1.d.ts → list.props-x1j3CbcF.d.ts} +1 -1
- package/dist/{popover-CRznb4Q7.d.ts → popover-ByLD3-Qv.d.ts} +21 -3
- package/dist/{types-4i2wWAqP.d.ts → types-DtUxK-Am.d.ts} +2 -2
- package/dist/utils/index.d.ts +1 -1
- package/package.json +4 -1
- package/src/assets/logos/launchpad/launchpad-no-text-dm.svg +1 -0
- package/src/assets/logos/launchpad/launchpad-no-text.svg +1 -1
- package/src/assets/logos/launchpad/launchpad-with-text-dm.svg +1 -1
- package/src/assets/logos/launchpad/launchpad-with-text.svg +46 -1
- package/src/assets/logos/zerocode-ai/zerocode-ai-no-text.svg +1 -0
- package/src/assets/logos/zerocode-ai/zerocode-ai-with-text-dm.svg +186 -0
- package/src/assets/logos/zerocode-ai/zerocode-ai-with-text.svg +246 -0
- package/src/styles/globals.css +93 -15
|
@@ -4,7 +4,7 @@ import { VariantProps } from 'class-variance-authority';
|
|
|
4
4
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
5
5
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
6
6
|
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
7
|
-
import { P as PresetColor, C as Color } from './index-
|
|
7
|
+
import { P as PresetColor, C as Color } from './index-BQANnKs9.js';
|
|
8
8
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
9
9
|
|
|
10
10
|
type Variant = "outline" | "solid" | "soft" | "gradient";
|
|
@@ -83,7 +83,25 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, V
|
|
|
83
83
|
}
|
|
84
84
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
85
85
|
|
|
86
|
-
|
|
86
|
+
interface SeparatorProps extends React$1.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> {
|
|
87
|
+
/**
|
|
88
|
+
* Optional text displayed between two separator lines.
|
|
89
|
+
* When provided, the component renders a compound layout instead of a single line.
|
|
90
|
+
*/
|
|
91
|
+
label?: string;
|
|
92
|
+
/**
|
|
93
|
+
* When `true` and `orientation` is `"vertical"`, each character in the label
|
|
94
|
+
* is rendered upright and stacked top-to-bottom. Has no effect on horizontal
|
|
95
|
+
* separators. Defaults to `false` (normal horizontal text).
|
|
96
|
+
*/
|
|
97
|
+
stackLabel?: boolean;
|
|
98
|
+
/**
|
|
99
|
+
* Additional class names applied to the label `<span>`.
|
|
100
|
+
* Use this to override the default label typography or color.
|
|
101
|
+
*/
|
|
102
|
+
labelClassName?: string;
|
|
103
|
+
}
|
|
104
|
+
declare const Separator: React$1.ForwardRefExoticComponent<SeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
87
105
|
|
|
88
106
|
declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types.ClassProp | undefined) => string> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
89
107
|
|
|
@@ -183,4 +201,4 @@ declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrim
|
|
|
183
201
|
portal?: boolean;
|
|
184
202
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
185
203
|
|
|
186
|
-
export {
|
|
204
|
+
export { VARIANT_GRADIENT_BACKDROP_BASE as A, Badge as B, Card as C, VARIANT_GRADIENT_DURATION_CLASS as D, VARIANT_GRADIENT_HOVER_OVERLAY_CLASS as E, VARIANT_GRADIENT_TRANSITION_DURATION_MS as F, type Variant as G, type VariantStyles as H, arbitraryGradientBackgroundImage as I, badgeVariants as J, buttonGroupVariants as K, Label as L, buttonVariants as M, resolveVariantStyles as N, useIsMobile as O, PRESET_GRADIENT_BACKDROP as P, Button as Q, type ButtonProps as R, Separator as S, VARIANTS as V, type BadgeProps as a, Breadcrumb as b, BreadcrumbEllipsis as c, BreadcrumbItem as d, BreadcrumbLink as e, BreadcrumbList as f, BreadcrumbPage as g, BreadcrumbSeparator as h, ButtonGroup as i, ButtonGroupSeparator as j, ButtonGroupText as k, CardContent as l, CardDescription as m, CardFooter as n, CardHeader as o, CardTitle as p, Collapsible as q, CollapsibleContent as r, CollapsibleTrigger as s, PRESET_GRADIENT_FRAME as t, Popover as u, PopoverAnchor as v, PopoverContent as w, PopoverTrigger as x, type SeparatorProps as y, Skeleton as z };
|
|
@@ -47,7 +47,7 @@ type SidebarTopLevelLinkConfig = SidebarItemConfig;
|
|
|
47
47
|
type SidebarNavEntry = SidebarGroupConfig | SidebarTopLevelLinkConfig;
|
|
48
48
|
declare function isSidebarGroup(entry: SidebarNavEntry): entry is SidebarGroupConfig;
|
|
49
49
|
/**
|
|
50
|
-
* Props for the
|
|
50
|
+
* Props for the `linkComponent` passed to Sidebar.
|
|
51
51
|
*
|
|
52
52
|
* These three are all the sidebar needs — a component that renders only them stays fully
|
|
53
53
|
* correct, selected rows included. Rows are rendered with Radix `asChild`, though, so the
|
|
@@ -76,7 +76,7 @@ type SidebarProps = {
|
|
|
76
76
|
/** Custom footer content */
|
|
77
77
|
footer?: React.ReactNode;
|
|
78
78
|
/** Router-agnostic Link component */
|
|
79
|
-
|
|
79
|
+
linkComponent: ComponentType<SidebarLinkComponentProps>;
|
|
80
80
|
/** Collapse mode */
|
|
81
81
|
collapsible?: "icon" | "offcanvas" | "none";
|
|
82
82
|
/** Sidebar variant */
|
package/dist/utils/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@espressif/dashboard-ui-components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Reusable React UI components, page layouts, and utilities — Espressif's dashboard design system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -93,6 +93,7 @@
|
|
|
93
93
|
"dev:lib": "tsup --watch",
|
|
94
94
|
"prepublishOnly": "tsup",
|
|
95
95
|
"typecheck": "tsc --noEmit",
|
|
96
|
+
"lint": "eslint",
|
|
96
97
|
"test": "vitest run",
|
|
97
98
|
"clean": "rm -rf dist",
|
|
98
99
|
"dev:demo": "cd demo && npm run dev",
|
|
@@ -160,6 +161,7 @@
|
|
|
160
161
|
"@types/lodash-es": "^4.17.12",
|
|
161
162
|
"@types/react": "^19.0.0",
|
|
162
163
|
"@types/react-dom": "^19.0.0",
|
|
164
|
+
"eslint": "10.10.0",
|
|
163
165
|
"jsdom": "29.1.1",
|
|
164
166
|
"react": "^19.0.0",
|
|
165
167
|
"react-dom": "^19.0.0",
|
|
@@ -168,6 +170,7 @@
|
|
|
168
170
|
"tailwindcss": "^4.2.1",
|
|
169
171
|
"tsup": "^8.0.0",
|
|
170
172
|
"typescript": "^5.5.0",
|
|
173
|
+
"typescript-eslint": "8.70.0",
|
|
171
174
|
"vitest": "4.1.6"
|
|
172
175
|
}
|
|
173
176
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="launchpad-with-text" xmlns="http://www.w3.org/2000/svg" width="41.22" height="40.89" viewBox="0 0 41.22 40.89"><g id="rocket-logo"><g id="rocket"><path d="M40.75,1.8c-.11-.55-.49-.99-1.03-1.17-.16-.05-14.25-4.4-25.93,10.38-.11-.01-.23-.03-.36-.01l-4.88.44c-1.96.16-3.68,1.37-4.48,3.15l-3.2,6.97c-.22.48-.18,1.04.12,1.49.29.43.75.67,1.26.67h.07l4.38-.19c-.07.16-.14.33-.21.49-.23.56-.1,1.22.34,1.65l8.64,8.64c.29.29.69.45,1.08.45.16,0,.33-.03.48-.08.03-.01.26-.08.67-.25l.11,4.46c.01.53.3,1.01.77,1.29.23.14.51.21.77.21.25,0,.49-.05.73-.18l6.75-3.65c1.73-.93,2.83-2.73,2.87-4.69l.1-4.24c6.75-5.27,13.28-13.69,10.96-25.84ZM4.68,20.57l2.15-4.7c.36-.78,1.11-1.32,1.97-1.4l2.66-.23c-1.18,1.82-2.33,3.88-3.41,6.19l-3.37.15ZM16.94,31.48l-7.23-7.23c.6-1.44,1.22-2.78,1.87-4.05l9.31,9.49c-1.7.86-3.11,1.45-3.95,1.78ZM26.61,31.82c-.01.86-.51,1.66-1.26,2.07l-4.54,2.45-.07-3.2c1.66-.78,3.73-1.88,5.92-3.31l-.05,1.97ZM28.58,24.75c-1.65,1.34-3.35,2.47-4.94,3.41l-10.56-10.77C22.52,1.36,34.57,2.61,37.89,3.31c1.25,8.2-1.88,15.4-9.31,21.44Z" style="fill:#fff;"/><path d="M11.34,34.35l-3.94,3.92c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l3.94-3.94c.6-.6.6-1.56,0-2.17s-1.58-.59-2.17.01Z" style="fill:#fff;"/><path d="M9.98,31.39c-.6-.6-1.56-.6-2.17,0l-5.97,5.97c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l5.97-5.97c.59-.6.59-1.58,0-2.17Z" style="fill:#fff;"/><path d="M2.61,33.99l3.94-3.94c.6-.6.6-1.56,0-2.17-.6-.6-1.56-.6-2.17,0l-3.92,3.95c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45.38-.01.77-.16,1.07-.47Z" style="fill:#fff;"/></g><g id="espressif-logo"><path d="M23.22,18.89c0,.48-.42.9-.9.9s-.9-.42-.9-.9.42-.9.9-.9h0c.54.06.9.42.9.9" style="fill:#e7352c;"/><path d="M30.95,17.99c-.6-4.02-3.78-7.2-7.8-7.8-.42.24-.9.54-1.26.96v.84c4.02,0,7.32,3.24,7.32,7.32h.84c.36-.42.66-.84.9-1.32" style="fill:#e7352c;"/><path d="M31.67,15.29c0-3.18-2.58-5.76-5.76-5.76h-.06c-.18,0-.42,0-.6.06l-.12.36c2.82,1.02,5.1,3.24,6.06,6.06l.36-.12c.06-.18.06-.42.12-.6" style="fill:#e7352c;"/><path d="M25.92,22.13c-3.78,0-6.84-3.06-6.84-6.84,0-1.8.72-3.54,1.98-4.86l.42.36c-2.46,2.46-2.52,6.48-.06,8.94l.06.06c2.46,2.46,6.48,2.52,8.94.06l.06-.06.36.36c-1.32,1.32-3.06,2.04-4.92,1.98" style="fill:#e7352c;"/><path d="M25.86,19.67c.12-1.38-.48-2.7-1.56-3.54-.6-.48-1.26-.72-1.98-.84-.24,0-.36-.18-.36-.36s.18-.36.36-.3h0c2.58.24,4.44,2.58,4.2,5.16,0,.3-.06.54-.18.84l1.02.3c.3-.06.6-.18.9-.36.06-.42.12-.84.12-1.2,0-3.24-2.4-6-5.58-6.54-.36-.06-.72-.06-1.08,0-.36.06-.72.3-1.02.66-.84.96-.72,2.34.24,3.18.24.18.48.36.78.42.18.06.36.06.54.12h0c1.02.12,1.74,1.02,1.74,2.04,0,.42-.12.78-.36,1.14l.72.48c.36.12.72.18,1.08.18.24-.48.36-.9.42-1.38" style="fill:#e7352c;"/></g></g></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="launchpad-with-text" xmlns="http://www.w3.org/2000/svg" width="41.22" height="40.89" viewBox="0 0 41.22 40.89"><g id="rocket-logo"><g id="rocket"><path d="M40.75,1.8c-.11-.55-.49-.99-1.03-1.17-.16-.05-14.25-4.4-25.93,10.38-.11-.01-.23-.03-.36-.01l-4.88.44c-1.96.16-3.68,1.37-4.48,3.15l-3.2,6.97c-.22.48-.18,1.04.12,1.49.29.43.75.67,1.26.67h.07l4.38-.19c-.07.16-.14.33-.21.49-.23.56-.1,1.22.34,1.65l8.64,8.64c.29.29.69.45,1.08.45.16,0,.33-.03.48-.08.03-.01.26-.08.67-.25l.11,4.46c.01.53.3,1.01.77,1.29.23.14.51.21.77.21.25,0,.49-.05.73-.18l6.75-3.65c1.73-.93,2.83-2.73,2.87-4.69l.1-4.24c6.75-5.27,13.28-13.69,10.96-25.84ZM4.68,20.57l2.15-4.7c.36-.78,1.11-1.32,1.97-1.4l2.66-.23c-1.18,1.82-2.33,3.88-3.41,6.19l-3.37.15ZM16.94,31.48l-7.23-7.23c.6-1.44,1.22-2.78,1.87-4.05l9.31,9.49c-1.7.86-3.11,1.45-3.95,1.78ZM26.61,31.82c-.01.86-.51,1.66-1.26,2.07l-4.54,2.45-.07-3.2c1.66-.78,3.73-1.88,5.92-3.31l-.05,1.97ZM28.58,24.75c-1.65,1.34-3.35,2.47-4.94,3.41l-10.56-10.77C22.52,1.36,34.57,2.61,37.89,3.31c1.25,8.2-1.88,15.4-9.31,21.44Z" style="fill:#2b2b2b;"/><path d="M11.34,34.35l-3.94,3.92c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l3.94-3.94c.6-.6.6-1.56,0-2.17s-1.58-.59-2.17.01Z" style="fill:#2b2b2b;"/><path d="M9.98,31.39c-.6-.6-1.56-.6-2.17,0l-5.97,5.97c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l5.97-5.97c.59-.6.59-1.58,0-2.17Z" style="fill:#2b2b2b;"/><path d="M2.61,33.99l3.94-3.94c.6-.6.6-1.56,0-2.17-.6-.6-1.56-.6-2.17,0l-3.92,3.95c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45.38-.01.77-.16,1.07-.47Z" style="fill:#2b2b2b;"/></g><g id="espressif-logo"><path d="M23.22,18.89c0,.48-.42.9-.9.9s-.9-.42-.9-.9.42-.9.9-.9h0c.54.06.9.42.9.9" style="fill:#e7352c;"/><path d="M30.95,17.99c-.6-4.02-3.78-7.2-7.8-7.8-.42.24-.9.54-1.26.96v.84c4.02,0,7.32,3.24,7.32,7.32h.84c.36-.42.66-.84.9-1.32" style="fill:#e7352c;"/><path d="M31.67,15.29c0-3.18-2.58-5.76-5.76-5.76h-.06c-.18,0-.42,0-.6.06l-.12.36c2.82,1.02,5.1,3.24,6.06,6.06l.36-.12c.06-.18.06-.42.12-.6" style="fill:#e7352c;"/><path d="M25.92,22.13c-3.78,0-6.84-3.06-6.84-6.84,0-1.8.72-3.54,1.98-4.86l.42.36c-2.46,2.46-2.52,6.48-.06,8.94l.06.06c2.46,2.46,6.48,2.52,8.94.06l.06-.06.36.36c-1.32,1.32-3.06,2.04-4.92,1.98" style="fill:#e7352c;"/><path d="M25.86,19.67c.12-1.38-.48-2.7-1.56-3.54-.6-.48-1.26-.72-1.98-.84-.24,0-.36-.18-.36-.36s.18-.36.36-.3h0c2.58.24,4.44,2.58,4.2,5.16,0,.3-.06.54-.18.84l1.02.3c.3-.06.6-.18.9-.36.06-.42.12-.84.12-1.2,0-3.24-2.4-6-5.58-6.54-.36-.06-.72-.06-1.08,0-.36.06-.72.3-1.02.66-.84.96-.72,2.34.24,3.18.24.18.48.36.78.42.18.06.36.06.54.12h0c1.02.12,1.74,1.02,1.74,2.04,0,.42-.12.78-.36,1.14l.72.48c.36.12.72.18,1.08.18.24-.48.36-.9.42-1.38" style="fill:#e7352c;"/></g></g></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="launchpad-with-text" xmlns="http://www.w3.org/2000/svg" width="
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="launchpad-with-text" xmlns="http://www.w3.org/2000/svg" width="319.42" height="40.89" viewBox="0 0 319.42 40.89"><g id="esp"><path d="M71.37,7.53v4.79h-13.68v5.55h12.55v4.43h-12.55v6.35h13.97v4.79h-19.66V7.53h19.37Z" style="fill:#e7352c;"/><path d="M79.86,27.05c.31.6.73,1.09,1.25,1.47s1.13.65,1.83.83,1.43.27,2.18.27c.51,0,1.05-.04,1.63-.13.58-.08,1.12-.25,1.63-.49.51-.24.93-.57,1.27-1,.34-.42.51-.96.51-1.61,0-.7-.22-1.27-.67-1.71s-1.03-.8-1.76-1.09-1.55-.54-2.47-.76-1.85-.46-2.79-.73c-.97-.24-1.91-.54-2.83-.89-.92-.35-1.74-.8-2.47-1.36-.73-.56-1.31-1.25-1.76-2.09-.45-.83-.67-1.84-.67-3.03,0-1.33.28-2.49.85-3.46.57-.98,1.31-1.8,2.23-2.45s1.96-1.14,3.12-1.45c1.16-.31,2.32-.47,3.48-.47,1.35,0,2.65.15,3.9.45s2.35.79,3.32,1.47,1.74,1.54,2.3,2.59c.57,1.05.85,2.33.85,3.83h-5.51c-.05-.77-.21-1.41-.49-1.92s-.65-.91-1.11-1.2-.99-.5-1.58-.62-1.24-.18-1.94-.18c-.46,0-.92.05-1.38.14-.46.1-.88.27-1.25.51-.38.24-.68.54-.92.91-.24.36-.36.82-.36,1.38,0,.51.1.92.29,1.23s.57.6,1.14.87,1.35.53,2.36.8c1,.27,2.32.6,3.94,1.02.48.1,1.15.27,2.01.53.86.25,1.71.66,2.56,1.22s1.58,1.3,2.19,2.23c.62.93.93,2.12.93,3.57,0,1.19-.23,2.29-.69,3.3-.46,1.02-1.14,1.89-2.05,2.63s-2.03,1.31-3.37,1.72-2.9.62-4.66.62c-1.43,0-2.81-.18-4.15-.53s-2.53-.9-3.56-1.65-1.84-1.71-2.45-2.87c-.6-1.16-.89-2.54-.87-4.14h5.51c0,.87.16,1.61.47,2.21v.03s.01,0,0,0h.01Z" style="fill:#e7352c;"/><path d="M110.73,7.53c1.62,0,3,.24,4.14.71,1.14.47,2.06,1.09,2.78,1.87.71.77,1.23,1.66,1.56,2.65.33.99.49,2.02.49,3.08s-.16,2.06-.49,3.07c-.33,1-.85,1.89-1.56,2.67-.71.77-1.64,1.4-2.78,1.87-1.14.47-2.52.71-4.14.71h-5.99v9.29h-5.7V7.53s11.69,0,11.69,0ZM109.17,19.72c.65,0,1.28-.05,1.89-.15.6-.1,1.14-.28,1.6-.56.46-.28.83-.67,1.11-1.18s.42-1.17.42-2-.14-1.49-.42-2-.65-.9-1.11-1.18-.99-.47-1.6-.56c-.61-.1-1.23-.14-1.89-.14h-4.43v7.76h4.43Z" style="fill:#e7352c;"/></g><g id="launchpad"><path d="M122.92,33.55V7.34h3.47v23.11h12.91v3.09h-16.37Z" style="fill:#fff;"/><path d="M137.8,33.55l10.06-26.21h3.74l10.73,26.21h-3.95l-3.06-7.94h-10.96l-2.88,7.94h-3.68ZM145.37,22.79h8.88l-2.74-7.26c-.83-2.2-1.45-4.02-1.86-5.43-.33,1.68-.8,3.35-1.41,5.01l-2.88,7.69Z" style="fill:#fff;"/><path d="M179.55,7.34h3.47v15.14c0,2.63-.3,4.73-.89,6.27s-1.67,2.81-3.23,3.78-3.6,1.46-6.12,1.46-4.46-.42-6.02-1.27-2.68-2.07-3.34-3.67-1-3.79-1-6.57V7.34h3.47v15.12c0,2.28.21,3.95.63,5.03s1.15,1.91,2.18,2.49,2.29.88,3.78.88c2.55,0,4.37-.58,5.45-1.73s1.63-3.38,1.63-6.67V7.34Z" style="fill:#fff;"/><path d="M186.01,33.55V7.34h3.56l13.76,20.58V7.34h3.32v26.21h-3.56l-13.76-20.59v20.59h-3.32Z" style="fill:#fff;"/><path d="M228.44,24.36l3.47.88c-.73,2.85-2.03,5.02-3.92,6.52s-4.2,2.24-6.93,2.24-5.12-.58-6.89-1.73-3.12-2.82-4.04-5-1.39-4.52-1.39-7.03c0-2.73.52-5.11,1.56-7.14s2.53-3.58,4.45-4.63,4.04-1.58,6.35-1.58c2.62,0,4.83.67,6.61,2s3.03,3.21,3.74,5.63l-3.41.8c-.61-1.91-1.49-3.3-2.65-4.17s-2.61-1.3-4.36-1.3c-2.01,0-3.7.48-5.05,1.45s-2.3,2.26-2.85,3.89-.82,3.3-.82,5.03c0,2.23.32,4.17.97,5.84s1.66,2.9,3.03,3.73,2.85,1.23,4.45,1.23c1.94,0,3.59-.56,4.93-1.68s2.26-2.78,2.74-4.99Z" style="fill:#fff;"/><path d="M233.54,33.55V7.34h3.47v10.76h13.62V7.34h3.47v26.21h-3.47v-12.35h-13.62v12.35h-3.47Z" style="fill:#fff;"/><path d="M257.13,33.55V7.34h9.89c1.74,0,3.07.08,3.99.25,1.29.21,2.37.62,3.24,1.22s1.57,1.44,2.1,2.53.8,2.28.8,3.58c0,2.23-.71,4.11-2.13,5.66s-3.98,2.31-7.69,2.31h-6.72v10.65h-3.47ZM260.59,19.8h6.77c2.24,0,3.83-.42,4.77-1.25s1.41-2.01,1.41-3.52c0-1.1-.28-2.03-.83-2.82s-1.28-1.3-2.19-1.55c-.58-.15-1.66-.23-3.24-.23h-6.7v9.37Z" style="fill:#fff;"/><path d="M273.2,33.55l10.06-26.21h3.74l10.73,26.21h-3.95l-3.06-7.94h-10.96l-2.88,7.94h-3.68ZM280.77,22.79h8.88l-2.74-7.26c-.83-2.2-1.45-4.02-1.86-5.43-.33,1.68-.8,3.35-1.41,5.01l-2.88,7.69Z" style="fill:#fff;"/><path d="M297.75,33.55V7.34h9.03c2.04,0,3.59.13,4.67.38,1.5.35,2.78.97,3.84,1.88,1.38,1.17,2.42,2.66,3.1,4.48s1.03,3.89,1.03,6.23c0,1.99-.23,3.75-.7,5.29s-1.06,2.81-1.79,3.82-1.52,1.8-2.39,2.38-1.91,1.02-3.13,1.31-2.62.45-4.21.45h-9.46ZM301.22,30.46h5.6c1.73,0,3.08-.16,4.07-.48s1.77-.77,2.35-1.36c.82-.82,1.46-1.93,1.92-3.32s.69-3.07.69-5.05c0-2.74-.45-4.85-1.35-6.32s-1.99-2.46-3.28-2.96c-.93-.36-2.43-.54-4.49-.54h-5.51v20.02Z" style="fill:#fff;"/></g><g id="rocket-logo"><g id="rocket"><path d="M40.75,1.8c-.11-.55-.49-.99-1.03-1.17-.16-.05-14.25-4.4-25.93,10.38-.11-.01-.23-.03-.36-.01l-4.88.44c-1.96.16-3.68,1.37-4.48,3.15l-3.2,6.97c-.22.48-.18,1.04.12,1.49.29.43.75.67,1.26.67h.07l4.38-.19c-.07.16-.14.33-.21.49-.23.56-.1,1.22.34,1.65l8.64,8.64c.29.29.69.45,1.08.45.16,0,.33-.03.48-.08.03-.01.26-.08.67-.25l.11,4.46c.01.53.3,1.01.77,1.29.23.14.51.21.77.21.25,0,.49-.05.73-.18l6.75-3.65c1.73-.93,2.83-2.73,2.87-4.69l.1-4.24c6.75-5.27,13.28-13.69,10.96-25.84ZM4.68,20.57l2.15-4.7c.36-.78,1.11-1.32,1.97-1.4l2.66-.23c-1.18,1.82-2.33,3.88-3.41,6.19l-3.37.15ZM16.94,31.48l-7.23-7.23c.6-1.44,1.22-2.78,1.87-4.05l9.31,9.49c-1.7.86-3.11,1.45-3.95,1.78ZM26.61,31.82c-.01.86-.51,1.66-1.26,2.07l-4.54,2.45-.07-3.2c1.66-.78,3.73-1.88,5.92-3.31l-.05,1.97ZM28.58,24.75c-1.65,1.34-3.35,2.47-4.94,3.41l-10.56-10.77C22.52,1.36,34.57,2.61,37.89,3.31c1.25,8.2-1.88,15.4-9.31,21.44Z" style="fill:#fff;"/><path d="M11.34,34.35l-3.94,3.92c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l3.94-3.94c.6-.6.6-1.56,0-2.17s-1.58-.59-2.17.01Z" style="fill:#fff;"/><path d="M9.98,31.39c-.6-.6-1.56-.6-2.17,0l-5.97,5.97c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l5.97-5.97c.59-.6.59-1.58,0-2.17Z" style="fill:#fff;"/><path d="M2.61,33.99l3.94-3.94c.6-.6.6-1.56,0-2.17-.6-.6-1.56-.6-2.17,0l-3.92,3.95c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45.38-.01.77-.16,1.07-.47Z" style="fill:#fff;"/></g><g id="espressif-logo"><path d="M23.22,18.89c0,.48-.42.9-.9.9s-.9-.42-.9-.9.42-.9.9-.9h0c.54.06.9.42.9.9" style="fill:#e7352c;"/><path d="M30.95,17.99c-.6-4.02-3.78-7.2-7.8-7.8-.42.24-.9.54-1.26.96v.84c4.02,0,7.32,3.24,7.32,7.32h.84c.36-.42.66-.84.9-1.32" style="fill:#e7352c;"/><path d="M31.67,15.29c0-3.18-2.58-5.76-5.76-5.76h-.06c-.18,0-.42,0-.6.06l-.12.36c2.82,1.02,5.1,3.24,6.06,6.06l.36-.12c.06-.18.06-.42.12-.6" style="fill:#e7352c;"/><path d="M25.92,22.13c-3.78,0-6.84-3.06-6.84-6.84,0-1.8.72-3.54,1.98-4.86l.42.36c-2.46,2.46-2.52,6.48-.06,8.94l.06.06c2.46,2.46,6.48,2.52,8.94.06l.06-.06.36.36c-1.32,1.32-3.06,2.04-4.92,1.98" style="fill:#e7352c;"/><path d="M25.86,19.67c.12-1.38-.48-2.7-1.56-3.54-.6-.48-1.26-.72-1.98-.84-.24,0-.36-.18-.36-.36s.18-.36.36-.3h0c2.58.24,4.44,2.58,4.2,5.16,0,.3-.06.54-.18.84l1.02.3c.3-.06.6-.18.9-.36.06-.42.12-.84.12-1.2,0-3.24-2.4-6-5.58-6.54-.36-.06-.72-.06-1.08,0-.36.06-.72.3-1.02.66-.84.96-.72,2.34.24,3.18.24.18.48.36.78.42.18.06.36.06.54.12h0c1.02.12,1.74,1.02,1.74,2.04,0,.42-.12.78-.36,1.14l.72.48c.36.12.72.18,1.08.18.24-.48.36-.9.42-1.38" style="fill:#e7352c;"/></g></g></svg>
|
|
@@ -1 +1,46 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="launchpad-with-text" xmlns="http://www.w3.org/2000/svg" width="319.42" height="46.05" version="1.1" viewBox="0 0 319.42 46.05">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 30.2.0, SVG Export Plug-In . SVG Version: 2.1.1 Build 105) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: #2b2b2b;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.st1 {
|
|
11
|
+
fill: #e7352c;
|
|
12
|
+
}
|
|
13
|
+
</style>
|
|
14
|
+
</defs>
|
|
15
|
+
<g id="esp">
|
|
16
|
+
<path class="st1" d="M71.37,10.11v4.79h-13.68v5.55h12.55v4.43h-12.55v6.35h13.97v4.79h-19.66V10.11h19.37Z"/>
|
|
17
|
+
<path class="st1" d="M79.86,29.63c.31.6.73,1.09,1.25,1.47s1.13.65,1.83.83,1.43.27,2.18.27c.51,0,1.05-.04,1.63-.13.58-.08,1.12-.25,1.63-.49.51-.24.93-.57,1.27-1,.34-.42.51-.96.51-1.61,0-.7-.22-1.27-.67-1.71s-1.03-.8-1.76-1.09-1.55-.54-2.47-.76-1.85-.46-2.79-.73c-.97-.24-1.91-.54-2.83-.89-.92-.35-1.74-.8-2.47-1.36-.73-.56-1.31-1.25-1.76-2.09-.45-.83-.67-1.84-.67-3.03,0-1.33.28-2.49.85-3.46.57-.98,1.31-1.8,2.23-2.45s1.96-1.14,3.12-1.45c1.16-.31,2.32-.47,3.48-.47,1.35,0,2.65.15,3.9.45s2.35.79,3.32,1.47,1.74,1.54,2.3,2.59c.57,1.05.85,2.33.85,3.83h-5.51c-.05-.77-.21-1.41-.49-1.92s-.65-.91-1.11-1.2-.99-.5-1.58-.62-1.24-.18-1.94-.18c-.46,0-.92.05-1.38.14-.46.1-.88.27-1.25.51-.38.24-.68.54-.92.91-.24.36-.36.82-.36,1.38,0,.51.1.92.29,1.23s.57.6,1.14.87,1.35.53,2.36.8c1,.27,2.32.6,3.94,1.02.48.1,1.15.27,2.01.53.86.25,1.71.66,2.56,1.22s1.58,1.3,2.19,2.23c.62.93.93,2.12.93,3.57,0,1.19-.23,2.29-.69,3.3-.46,1.02-1.14,1.89-2.05,2.63s-2.03,1.31-3.37,1.72-2.9.62-4.66.62c-1.43,0-2.81-.18-4.15-.53s-2.53-.9-3.56-1.65-1.84-1.71-2.45-2.87c-.6-1.16-.89-2.54-.87-4.14h5.51c0,.87.16,1.61.47,2.21v.03s.01,0,0,0h.01Z"/>
|
|
18
|
+
<path class="st1" d="M110.73,10.11c1.62,0,3,.24,4.14.71,1.14.47,2.06,1.09,2.78,1.87.71.77,1.23,1.66,1.56,2.65.33.99.49,2.02.49,3.08s-.16,2.06-.49,3.07c-.33,1-.85,1.89-1.56,2.67-.71.77-1.64,1.4-2.78,1.87-1.14.47-2.52.71-4.14.71h-5.99v9.29h-5.7V10.11s11.69,0,11.69,0ZM109.17,22.3c.65,0,1.28-.05,1.89-.15.6-.1,1.14-.28,1.6-.56.46-.28.83-.67,1.11-1.18s.42-1.17.42-2-.14-1.49-.42-2-.65-.9-1.11-1.18-.99-.47-1.6-.56c-.61-.1-1.23-.14-1.89-.14h-4.43v7.76h4.43Z"/>
|
|
19
|
+
</g>
|
|
20
|
+
<g id="launchpad">
|
|
21
|
+
<path class="st0" d="M122.92,36.13V9.92h3.47v23.11h12.91v3.09h-16.37Z"/>
|
|
22
|
+
<path class="st0" d="M137.8,36.13l10.06-26.21h3.74l10.73,26.21h-3.95l-3.06-7.94h-10.96l-2.88,7.94h-3.68ZM145.37,25.37h8.88l-2.74-7.26c-.83-2.2-1.45-4.02-1.86-5.43-.33,1.68-.8,3.35-1.41,5.01l-2.88,7.69Z"/>
|
|
23
|
+
<path class="st0" d="M179.55,9.92h3.47v15.14c0,2.63-.3,4.73-.89,6.27s-1.67,2.81-3.23,3.78-3.6,1.46-6.12,1.46-4.46-.42-6.02-1.27-2.68-2.07-3.34-3.67-1-3.79-1-6.57v-15.14h3.47v15.12c0,2.28.21,3.95.63,5.03s1.15,1.91,2.18,2.49,2.29.88,3.78.88c2.55,0,4.37-.58,5.45-1.73s1.63-3.38,1.63-6.67v-15.12Z"/>
|
|
24
|
+
<path class="st0" d="M186.01,36.13V9.92h3.56l13.76,20.58V9.92h3.32v26.21h-3.56l-13.76-20.59v20.59h-3.32Z"/>
|
|
25
|
+
<path class="st0" d="M228.44,26.94l3.47.88c-.73,2.85-2.03,5.02-3.92,6.52s-4.2,2.24-6.93,2.24-5.12-.58-6.89-1.73-3.12-2.82-4.04-5-1.39-4.52-1.39-7.03c0-2.73.52-5.11,1.56-7.14s2.53-3.58,4.45-4.63,4.04-1.58,6.35-1.58c2.62,0,4.83.67,6.61,2s3.03,3.21,3.74,5.63l-3.41.8c-.61-1.91-1.49-3.3-2.65-4.17s-2.61-1.3-4.36-1.3c-2.01,0-3.7.48-5.05,1.45s-2.3,2.26-2.85,3.89-.82,3.3-.82,5.03c0,2.23.32,4.17.97,5.84s1.66,2.9,3.03,3.73,2.85,1.23,4.45,1.23c1.94,0,3.59-.56,4.93-1.68s2.26-2.78,2.74-4.99Z"/>
|
|
26
|
+
<path class="st0" d="M233.54,36.13V9.92h3.47v10.76h13.62v-10.76h3.47v26.21h-3.47v-12.35h-13.62v12.35h-3.47Z"/>
|
|
27
|
+
<path class="st0" d="M257.13,36.13V9.92h9.89c1.74,0,3.07.08,3.99.25,1.29.21,2.37.62,3.24,1.22s1.57,1.44,2.1,2.53.8,2.28.8,3.58c0,2.23-.71,4.11-2.13,5.66s-3.98,2.31-7.69,2.31h-6.72v10.65h-3.47ZM260.59,22.38h6.77c2.24,0,3.83-.42,4.77-1.25s1.41-2.01,1.41-3.52c0-1.1-.28-2.03-.83-2.82s-1.28-1.3-2.19-1.55c-.58-.15-1.66-.23-3.24-.23h-6.7v9.37Z"/>
|
|
28
|
+
<path class="st0" d="M273.2,36.13l10.06-26.21h3.74l10.73,26.21h-3.95l-3.06-7.94h-10.96l-2.88,7.94h-3.68ZM280.77,25.37h8.88l-2.74-7.26c-.83-2.2-1.45-4.02-1.86-5.43-.33,1.68-.8,3.35-1.41,5.01l-2.88,7.69Z"/>
|
|
29
|
+
<path class="st0" d="M297.75,36.13V9.92h9.03c2.04,0,3.59.13,4.67.38,1.5.35,2.78.97,3.84,1.88,1.38,1.17,2.42,2.66,3.1,4.48s1.03,3.89,1.03,6.23c0,1.99-.23,3.75-.7,5.29s-1.06,2.81-1.79,3.82-1.52,1.8-2.39,2.38-1.91,1.02-3.13,1.31-2.62.45-4.21.45h-9.46ZM301.22,33.04h5.6c1.73,0,3.08-.16,4.07-.48s1.77-.77,2.35-1.36c.82-.82,1.46-1.93,1.92-3.32s.69-3.07.69-5.05c0-2.74-.45-4.85-1.35-6.32s-1.99-2.46-3.28-2.96c-.93-.36-2.43-.54-4.49-.54h-5.51v20.02Z"/>
|
|
30
|
+
</g>
|
|
31
|
+
<g id="rocket-logo">
|
|
32
|
+
<g id="rocket">
|
|
33
|
+
<path class="st0" d="M40.75,4.38c-.11-.55-.49-.99-1.03-1.17-.16-.05-14.25-4.4-25.93,10.38-.11-.01-.23-.03-.36-.01l-4.88.44c-1.96.16-3.68,1.37-4.48,3.15l-3.2,6.97c-.22.48-.18,1.04.12,1.49.29.43.75.67,1.26.67h.07l4.38-.19c-.07.16-.14.33-.21.49-.23.56-.1,1.22.34,1.65l8.64,8.64c.29.29.69.45,1.08.45.16,0,.33-.03.48-.08.03-.01.26-.08.67-.25l.11,4.46c.01.53.3,1.01.77,1.29.23.14.51.21.77.21.25,0,.49-.05.73-.18l6.75-3.65c1.73-.93,2.83-2.73,2.87-4.69l.1-4.24c6.75-5.27,13.28-13.69,10.96-25.84ZM4.68,23.14l2.15-4.7c.36-.78,1.11-1.32,1.97-1.4l2.66-.23c-1.18,1.82-2.33,3.88-3.41,6.19l-3.37.15ZM16.94,34.06l-7.23-7.23c.6-1.44,1.22-2.78,1.87-4.05l9.31,9.49c-1.7.86-3.11,1.45-3.95,1.78ZM26.61,34.4c-.01.86-.51,1.66-1.26,2.07l-4.54,2.45-.07-3.2c1.66-.78,3.73-1.88,5.92-3.31l-.05,1.97ZM28.58,27.33c-1.65,1.34-3.35,2.47-4.94,3.41l-10.56-10.77C22.52,3.94,34.57,5.19,37.89,5.89c1.25,8.2-1.88,15.4-9.31,21.44Z"/>
|
|
34
|
+
<path class="st0" d="M11.34,36.93l-3.94,3.92c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l3.94-3.94c.6-.6.6-1.56,0-2.17s-1.58-.59-2.17.01Z"/>
|
|
35
|
+
<path class="st0" d="M9.98,33.97c-.6-.6-1.56-.6-2.17,0l-5.97,5.97c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45s.78-.15,1.08-.45l5.97-5.97c.59-.6.59-1.58,0-2.17Z"/>
|
|
36
|
+
<path class="st0" d="M2.61,36.57l3.94-3.94c.6-.6.6-1.56,0-2.17-.6-.6-1.56-.6-2.17,0l-3.92,3.95c-.6.6-.6,1.56,0,2.17.3.3.69.45,1.08.45.38-.01.77-.16,1.07-.47Z"/>
|
|
37
|
+
</g>
|
|
38
|
+
<g id="espressif-logo">
|
|
39
|
+
<path class="st1" d="M23.22,21.47c0,.48-.42.9-.9.9s-.9-.42-.9-.9.42-.9.9-.9h0c.54.06.9.42.9.9"/>
|
|
40
|
+
<path class="st1" d="M30.95,20.57c-.6-4.02-3.78-7.2-7.8-7.8-.42.24-.9.54-1.26.96v.84c4.02,0,7.32,3.24,7.32,7.32h.84c.36-.42.66-.84.9-1.32"/>
|
|
41
|
+
<path class="st1" d="M31.67,17.87c0-3.18-2.58-5.76-5.76-5.76h-.06c-.18,0-.42,0-.6.06l-.12.36c2.82,1.02,5.1,3.24,6.06,6.06l.36-.12c.06-.18.06-.42.12-.6"/>
|
|
42
|
+
<path class="st1" d="M25.92,24.71c-3.78,0-6.84-3.06-6.84-6.84,0-1.8.72-3.54,1.98-4.86l.42.36c-2.46,2.46-2.52,6.48-.06,8.94l.06.06c2.46,2.46,6.48,2.52,8.94.06l.06-.06.36.36c-1.32,1.32-3.06,2.04-4.92,1.98"/>
|
|
43
|
+
<path class="st1" d="M25.86,22.25c.12-1.38-.48-2.7-1.56-3.54-.6-.48-1.26-.72-1.98-.84-.24,0-.36-.18-.36-.36s.18-.36.36-.3h0c2.58.24,4.44,2.58,4.2,5.16,0,.3-.06.54-.18.84l1.02.3c.3-.06.6-.18.9-.36.06-.42.12-.84.12-1.2,0-3.24-2.4-6-5.58-6.54-.36-.06-.72-.06-1.08,0-.36.06-.72.3-1.02.66-.84.96-.72,2.34.24,3.18.24.18.48.36.78.42.18.06.36.06.54.12h0c1.02.12,1.74,1.02,1.74,2.04,0,.42-.12.78-.36,1.14l.72.48c.36.12.72.18,1.08.18.24-.48.36-.9.42-1.38"/>
|
|
44
|
+
</g>
|
|
45
|
+
</g>
|
|
46
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" width="59" height="52.1" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 59 52.1"><defs><linearGradient id="linear-gradient" x1="4.3" y1="9007.9" x2="14.1" y2="9007.9" gradientTransform="translate(0 -8982.1)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#d63129"/><stop offset="1" stop-color="#fb4939"/></linearGradient><linearGradient id="linear-gradient-2" x1="2.2" y1="9008.85" x2="11.8" y2="9008.85" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-3" x1="0" y1="9009.8" x2="10.6" y2="9009.8" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-4" x1="6.5" y1="9006.9" x2="16.6" y2="9006.9" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-5" x1="8.7" y1="9005.95" x2="19.1" y2="9005.95" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-6" x1="44.2" y1="9008.75" x2="54.4" y2="9008.75" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-7" x1="41.7" y1="9009.75" x2="52.1" y2="9009.75" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-8" x1="46.6" y1="9007.8" x2="56.7" y2="9007.8" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-9" x1="48.3" y1="9006.8" x2="59" y2="9006.8" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-10" x1="39.2" y1="9010.7" x2="49.8" y2="9010.7" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-11" x1="51.99" y1="9040.91" x2="16.99" y2="8990.61" gradientTransform="translate(0 -8982.1)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#3283f2"/><stop offset=".6" stop-color="#8d75d3"/><stop offset=".9" stop-color="#ec3f33"/></linearGradient></defs><g style="opacity:.5;"><polygon points="6 26 13.1 38.4 12.2 39.9 4.3 26 12.3 11.7 14.1 11.7 6 26" style="fill:url(#linear-gradient);"/><polygon points="11.8 40.5 11.1 41.8 2.2 26 10.1 11.7 11.6 11.7 3.6 26 11.8 40.5" style="fill:url(#linear-gradient-2);"/><polygon points="10.6 42.6 9.9 43.7 0 26 7.8 11.7 9.1 11.7 1.2 26 10.6 42.6" style="fill:url(#linear-gradient-3);"/><polygon points="8.4 26 14.3 36.3 13.4 37.9 6.5 26 14.6 11.7 16.6 11.7 8.4 26 8.4 26" style="fill:url(#linear-gradient-4);"/><polygon points="10.7 26.1 15.6 34.1 14.5 36 8.7 26 16.9 11.7 19.1 11.7 10.8 26 10.7 26.1" style="fill:url(#linear-gradient-5);"/></g><g style="opacity:.5;"><polygon points="54.4 26 46.7 12.8 45.8 14.3 52.6 26 44.2 40.5 45.9 40.5 54.4 26" style="fill:url(#linear-gradient-6);"/><polygon points="41.7 40.5 43.6 40.5 52.1 26 45.6 14.8 44.6 16.5 50.2 26 50.1 26.1 41.7 40.5" style="fill:url(#linear-gradient-7);"/><polygon points="56.7 26 47.9 10.9 47.1 12.2 55.1 26 46.6 40.5 48.2 40.5 56.7 26" style="fill:url(#linear-gradient-8);"/><polygon points="50.5 40.5 59 26 49 8.9 48.3 10.1 57.6 26 49.1 40.5 50.5 40.5 50.5 40.5" style="fill:url(#linear-gradient-9);"/><polygon points="49.8 26 44.4 16.7 43.3 18.6 47.7 26 47.6 26.1 40.1 38.9 39.2 40.5 41.3 40.5 49.8 26" style="fill:url(#linear-gradient-10);"/></g><polygon points="49.6 43 44.4 52.1 14 52.1 11 46.9 13.3 43 33.2 9.2 8.7 9.2 14 0 44.4 0 47.8 5.9 45.9 9.1 25.9 43 25.9 43.1 49.6 43" style="fill:url(#linear-gradient-11);"/></svg>
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="_图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 592.8 78.4">
|
|
3
|
+
<!-- Generator: Adobe Illustrator 29.0.0, SVG Export Plug-In . SVG Version: 2.1.0 Build 186) -->
|
|
4
|
+
<defs>
|
|
5
|
+
<style>
|
|
6
|
+
.st0 {
|
|
7
|
+
fill: url(#_未命名的渐变_8);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.st1 {
|
|
11
|
+
fill: url(#_未命名的渐变_217);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.st2 {
|
|
15
|
+
fill: url(#_未命名的渐变_214);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.st3 {
|
|
19
|
+
fill: url(#_未命名的渐变_219);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.st4 {
|
|
23
|
+
fill: url(#_未命名的渐变_213);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.st5 {
|
|
27
|
+
fill: url(#_未命名的渐变_215);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.st6 {
|
|
31
|
+
fill: url(#_未命名的渐变_216);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.st7 {
|
|
35
|
+
fill: url(#_未命名的渐变_218);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.st8 {
|
|
39
|
+
fill: url(#_未命名的渐变_212);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.st9 {
|
|
43
|
+
fill: url(#_未命名的渐变_211);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.st10 {
|
|
47
|
+
fill: url(#_未命名的渐变_271);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.st11 {
|
|
51
|
+
fill: #fff;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.st12 {
|
|
55
|
+
opacity: .5;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.st13 {
|
|
59
|
+
fill: url(#_未命名的渐变_86);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.st14 {
|
|
63
|
+
fill: url(#_未命名的渐变_87);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.st15 {
|
|
67
|
+
fill: url(#_未命名的渐变_84);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.st16 {
|
|
71
|
+
fill: url(#_未命名的渐变_85);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.st17 {
|
|
75
|
+
fill: url(#_未命名的渐变_82);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.st18 {
|
|
79
|
+
fill: url(#_未命名的渐变_83);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.st19 {
|
|
83
|
+
fill: url(#_未命名的渐变_81);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.st20 {
|
|
87
|
+
fill: url(#_未命名的渐变_27);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.st21 {
|
|
91
|
+
fill: url(#_未命名的渐变_21);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.st22 {
|
|
95
|
+
fill: url(#_未命名的渐变_22);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.st23 {
|
|
99
|
+
opacity: 0;
|
|
100
|
+
}
|
|
101
|
+
</style>
|
|
102
|
+
<linearGradient id="_未命名的渐变_8" data-name="未命名的渐变 8" x1="431.7" y1="-7642.9" x2="485" y2="-7681.7" gradientTransform="translate(0 -7632.1) scale(1 -1)" gradientUnits="userSpaceOnUse">
|
|
103
|
+
<stop offset="0" stop-color="#e54c3c"/>
|
|
104
|
+
<stop offset=".4" stop-color="#8d75d3"/>
|
|
105
|
+
<stop offset=".9" stop-color="#3283f2"/>
|
|
106
|
+
</linearGradient>
|
|
107
|
+
<linearGradient id="_未命名的渐变_81" data-name="未命名的渐变 8" x1="421" y1="-7657.6" x2="474.2" y2="-7696.4" xlink:href="#_未命名的渐变_8"/>
|
|
108
|
+
<linearGradient id="_未命名的渐变_82" data-name="未命名的渐变 8" x1="433.3" y1="-7640.6" x2="486.6" y2="-7679.4" xlink:href="#_未命名的渐变_8"/>
|
|
109
|
+
<linearGradient id="_未命名的渐变_83" data-name="未命名的渐变 8" x1="419.3" y1="-7659.9" x2="472.6" y2="-7698.6" xlink:href="#_未命名的渐变_8"/>
|
|
110
|
+
<linearGradient id="_未命名的渐变_84" data-name="未命名的渐变 8" x1="422.6" y1="-7655.4" x2="475.9" y2="-7694.2" xlink:href="#_未命名的渐变_8"/>
|
|
111
|
+
<linearGradient id="_未命名的渐变_85" data-name="未命名的渐变 8" x1="430.1" y1="-7645.1" x2="483.4" y2="-7683.8" xlink:href="#_未命名的渐变_8"/>
|
|
112
|
+
<linearGradient id="_未命名的渐变_86" data-name="未命名的渐变 8" x1="424.4" y1="-7652.9" x2="477.7" y2="-7691.7" xlink:href="#_未命名的渐变_8"/>
|
|
113
|
+
<linearGradient id="_未命名的渐变_87" data-name="未命名的渐变 8" x1="428.3" y1="-7647.7" x2="481.5" y2="-7686.5" xlink:href="#_未命名的渐变_8"/>
|
|
114
|
+
<linearGradient id="_未命名的渐变_21" data-name="未命名的渐变 21" x1="165.4" y1="-7669.9" x2="175.2" y2="-7669.9" gradientTransform="translate(0 -7632.1) scale(1 -1)" gradientUnits="userSpaceOnUse">
|
|
115
|
+
<stop offset="0" stop-color="#d63129"/>
|
|
116
|
+
<stop offset="1" stop-color="#fb4939"/>
|
|
117
|
+
</linearGradient>
|
|
118
|
+
<linearGradient id="_未命名的渐变_211" data-name="未命名的渐变 21" x1="163.3" y1="-7670.9" x2="172.9" y2="-7670.9" xlink:href="#_未命名的渐变_21"/>
|
|
119
|
+
<linearGradient id="_未命名的渐变_212" data-name="未命名的渐变 21" x1="161.1" y1="-7671.8" x2="171.7" y2="-7671.8" xlink:href="#_未命名的渐变_21"/>
|
|
120
|
+
<linearGradient id="_未命名的渐变_213" data-name="未命名的渐变 21" x1="167.6" y1="-7668.9" x2="177.7" y2="-7668.9" xlink:href="#_未命名的渐变_21"/>
|
|
121
|
+
<linearGradient id="_未命名的渐变_214" data-name="未命名的渐变 21" x1="169.8" y1="-7668" x2="180.2" y2="-7668" xlink:href="#_未命名的渐变_21"/>
|
|
122
|
+
<linearGradient id="_未命名的渐变_215" data-name="未命名的渐变 21" x1="205.3" y1="-7670.8" x2="215.5" y2="-7670.8" xlink:href="#_未命名的渐变_21"/>
|
|
123
|
+
<linearGradient id="_未命名的渐变_216" data-name="未命名的渐变 21" x1="202.8" y1="-7671.8" x2="213.2" y2="-7671.8" xlink:href="#_未命名的渐变_21"/>
|
|
124
|
+
<linearGradient id="_未命名的渐变_217" data-name="未命名的渐变 21" x1="207.7" y1="-7669.8" x2="217.8" y2="-7669.8" xlink:href="#_未命名的渐变_21"/>
|
|
125
|
+
<linearGradient id="_未命名的渐变_218" data-name="未命名的渐变 21" x1="209.4" y1="-7668.8" x2="220.1" y2="-7668.8" xlink:href="#_未命名的渐变_21"/>
|
|
126
|
+
<linearGradient id="_未命名的渐变_219" data-name="未命名的渐变 21" x1="200.3" y1="-7672.7" x2="210.9" y2="-7672.7" xlink:href="#_未命名的渐变_21"/>
|
|
127
|
+
<linearGradient id="_未命名的渐变_22" data-name="未命名的渐变 22" x1="213.1" y1="-7702.9" x2="178.1" y2="-7652.6" gradientTransform="translate(0 -7632.1) scale(1 -1)" gradientUnits="userSpaceOnUse">
|
|
128
|
+
<stop offset="0" stop-color="#3283f2"/>
|
|
129
|
+
<stop offset=".6" stop-color="#8d75d3"/>
|
|
130
|
+
<stop offset=".9" stop-color="#ec3f33"/>
|
|
131
|
+
</linearGradient>
|
|
132
|
+
<linearGradient id="_未命名的渐变_27" data-name="未命名的渐变 27" x1="441.6" y1="33.6" x2="462" y2="51.4" gradientUnits="userSpaceOnUse">
|
|
133
|
+
<stop offset="0" stop-color="#ec3f33"/>
|
|
134
|
+
<stop offset=".4" stop-color="#8d75d3"/>
|
|
135
|
+
<stop offset="1" stop-color="#3283f2"/>
|
|
136
|
+
</linearGradient>
|
|
137
|
+
<linearGradient id="_未命名的渐变_271" data-name="未命名的渐变 27" x1="449.7" y1="24.3" x2="470.1" y2="42.2" xlink:href="#_未命名的渐变_27"/>
|
|
138
|
+
</defs>
|
|
139
|
+
<path class="st23" d="M-573.3-2757.9c-1.3-3.1-3.2-5.9-5.5-8.2s-5.2-4.1-8.4-5.4c-3.2-1.3-6.7-1.9-10.5-1.9h-18.8s0,51.9,0,51.9h18.9c3.7,0,7.2-.7,10.4-2s6-3.1,8.3-5.5c2.4-2.3,4.2-5.1,5.5-8.3,1.3-3.2,2-6.6,2-10.3,0-3.8-.7-7.2-2-10.4h0ZM-579.7-2736.8c-1.8,3.1-4.2,5.6-7.3,7.4s-6.7,2.7-10.8,2.7h-13.1v-41.7s13.1,0,13.1,0c4.1,0,7.7.9,10.8,2.7,3.1,1.8,5.6,4.2,7.3,7.4,1.8,3.1,2.6,6.7,2.7,10.8,0,4.1-.9,7.7-2.6,10.8h0Z"/>
|
|
140
|
+
<polygon class="st11" points="50.5 64.2 50.5 54.2 24.6 54.2 24.6 42.4 47.9 42.4 47.9 32.7 24.6 32.7 24.6 22 50.1 22 50.1 12 21.8 12 21.8 12 13 12 13 64.3 24.6 64.3 24.6 64.3 50.5 64.2"/>
|
|
141
|
+
<path class="st11" d="M72.9,65.1c-4.3,0-8-.7-11.1-2.1s-5.9-3.5-8.5-6.4l7.5-7.5c1.7,1.9,3.5,3.4,5.6,4.5,2.1,1.1,4.4,1.6,7.1,1.6s4.4-.5,5.7-1.3c1.4-.9,2-2.1,2-3.7s-.4-2.6-1.3-3.5c-.9-.9-2.1-1.7-3.5-2.3s-3.1-1.3-4.8-1.8c-1.8-.6-3.5-1.3-5.2-2-1.7-.8-3.3-1.7-4.8-2.9-1.5-1.2-2.6-2.6-3.5-4.4s-1.3-4-1.3-6.6c0-3.2.8-6,2.3-8.3,1.6-2.3,3.7-4.1,6.5-5.3,2.8-1.2,5.9-1.8,9.5-1.8s7,.6,10,1.9c3,1.3,5.5,3,7.5,5.2l-7.5,7.5c-1.6-1.6-3.2-2.8-4.8-3.6-1.6-.8-3.4-1.2-5.4-1.2s-3.6.4-4.8,1.1c-1.2.8-1.8,1.9-1.8,3.3s.4,2.4,1.3,3.2c.9.8,2.1,1.5,3.5,2.1,1.5.6,3.1,1.2,4.8,1.8,1.8.6,3.5,1.3,5.2,2.1,1.7.8,3.3,1.8,4.8,3,1.5,1.2,2.6,2.7,3.5,4.6s1.3,4.1,1.3,6.8c0,5-1.8,8.9-5.3,11.7-3.6,2.8-8.5,4.3-14.7,4.3h0Z"/>
|
|
142
|
+
<path class="st11" d="M137.4,19.7c-1.6-2.5-3.7-4.4-6.3-5.7-2.7-1.3-5.7-2-9-2h-21.8s0,52.3,0,52.3h11.6v-19s10.2,0,10.2,0c3.3,0,6.3-.7,9-2s4.8-3.3,6.3-5.8c1.6-2.5,2.3-5.4,2.3-8.8s-.8-6.4-2.3-8.8h0ZM127.2,32.7c-.7,1.1-1.6,2-2.8,2.6s-2.5.9-3.9.9h-8.5v-15.2s8.5,0,8.5,0c1.4,0,2.7.3,3.9.9,1.2.6,2.1,1.5,2.8,2.6.7,1.1,1,2.5,1,4.1s-.3,3-1,4.1Z"/>
|
|
143
|
+
<polygon class="st11" points="262.2 64.2 262.2 59.1 233.3 59.2 233.3 40 259.7 40 259.7 35 233.3 35 233.3 17.1 261.7 17.1 261.7 12 231.4 12.1 231.4 12.1 227.8 12.1 227.8 64.2 233.3 64.2 233.3 64.2 262.2 64.2"/>
|
|
144
|
+
<path class="st11" d="M304,64.2h7.1l-19.3-23.4c3.1,0,5.8-.7,8-1.8,2.4-1.2,4.3-2.9,5.6-5,1.3-2.2,1.9-4.7,1.9-7.6s-.6-5.3-1.9-7.4-3.1-3.9-5.6-5.1c-2.4-1.2-5.3-1.9-8.7-1.9h-18.7v52.2h5.6v-23.4s7,0,7,0l19,23.3h0ZM278,16.9h13.2c3.4,0,6.1.9,7.9,2.7,1.8,1.8,2.7,4.1,2.7,6.9,0,2.9-.9,5.3-2.7,7-1.8,1.8-4.5,2.6-7.9,2.6h-13.2v-19.3s0,0,0,0Z"/>
|
|
145
|
+
<path class="st11" d="M341.3,64.9c-3.7,0-7.1-.7-10.2-2.1-3.1-1.4-5.9-3.3-8.3-5.7-2.4-2.4-4.2-5.3-5.5-8.5s-2-6.7-2-10.4c0-3.8.6-7.3,2-10.5,1.3-3.2,3.1-6,5.5-8.5,2.4-2.4,5.1-4.3,8.2-5.7,3.1-1.4,6.5-2,10.2-2s7.1.7,10.2,2,5.9,3.2,8.3,5.6c2.4,2.4,4.2,5.2,5.5,8.5,1.3,3.2,2,6.8,2,10.5s-.6,7.2-2,10.5c-1.3,3.2-3.1,6.1-5.5,8.5-2.3,2.4-5.1,4.3-8.2,5.7-3.1,1.4-6.5,2.1-10.2,2.1h0ZM341.2,59.6c3.9,0,7.4-.9,10.4-2.8s5.4-4.4,7.2-7.6c1.7-3.2,2.6-6.9,2.6-11,0-3.1-.5-5.9-1.5-8.5-1-2.6-2.4-4.9-4.2-6.8-1.8-1.9-3.9-3.4-6.4-4.5s-5.1-1.6-8.1-1.6-7.3.9-10.4,2.8c-3,1.8-5.4,4.4-7.2,7.6-1.7,3.2-2.6,6.9-2.6,11,0,3.1.5,5.9,1.5,8.5,1,2.6,2.4,4.9,4.2,6.8s4,3.4,6.4,4.5,5.1,1.6,8,1.6h0Z"/>
|
|
146
|
+
<path class="st11" d="M401.6,64.9c-3.7,0-7.2-.7-10.4-2-3.2-1.4-6-3.3-8.3-5.7-2.4-2.5-4.2-5.3-5.5-8.6-1.3-3.2-1.9-6.7-1.9-10.4s.6-7.2,1.9-10.5c1.3-3.2,3.1-6.1,5.4-8.5,2.3-2.4,5.1-4.3,8.2-5.7,3.2-1.4,6.6-2,10.3-2s7.5.7,10.7,2.1c3.1,1.4,5.9,3.3,8.3,5.8l-3.8,3.8c-1.8-2-4-3.6-6.6-4.7-2.6-1.1-5.4-1.7-8.6-1.7s-5.6.5-8,1.6-4.6,2.6-6.4,4.5c-1.8,1.9-3.2,4.2-4.2,6.8-1,2.6-1.5,5.4-1.5,8.5,0,3.1.5,5.9,1.5,8.5,1,2.6,2.4,4.9,4.2,6.8,1.8,1.9,4,3.4,6.4,4.5,2.5,1,5.1,1.6,8.1,1.6s6.3-.6,8.9-1.7,4.8-2.7,6.6-4.8l3.8,3.8c-2.3,2.5-5.1,4.4-8.3,5.8-3.2,1.4-6.8,2.1-10.8,2.2h0Z"/>
|
|
147
|
+
<path class="st11" d="M531.3,27.7c-1.3-3.1-3.2-5.9-5.5-8.2s-5.2-4.1-8.4-5.4c-3.2-1.3-6.7-1.9-10.5-1.9h-18.8s0,51.9,0,51.9h18.9c3.7,0,7.2-.7,10.4-2,3.2-1.3,6-3.1,8.3-5.5,2.4-2.3,4.2-5.1,5.5-8.3,1.3-3.2,2-6.6,2-10.3,0-3.8-.7-7.2-2-10.4h0ZM524.9,48.8c-1.8,3.1-4.2,5.6-7.3,7.4s-6.7,2.7-10.8,2.7h-13.1V17.2s13.1,0,13.1,0c4.1,0,7.7.9,10.8,2.7s5.6,4.2,7.3,7.4c1.8,3.1,2.6,6.7,2.7,10.8,0,4.1-.9,7.7-2.6,10.8h0Z"/>
|
|
148
|
+
<polygon class="st11" points="578 64 578 58.9 549.4 59 549.4 39.9 575.6 39.9 575.6 35 549.4 35 549.3 17.2 577.6 17.2 577.5 12.1 549.3 12.1 549.3 12.1 543.8 12.1 543.9 64 547.5 64 547.5 64 578 64"/>
|
|
149
|
+
<g class="st12">
|
|
150
|
+
<g>
|
|
151
|
+
<g>
|
|
152
|
+
<path class="st0" d="M469.5,55.7c9.7-8.5,10.7-23.8,2.2-33.5,4.6,5.1,6.8,11.9,6.1,18.7-.4,3.4-1.4,6.7-3.2,9.6-.8,1.4-1.7,2.7-2.8,3.8-.4.5-1.2,1.6-1.8,1.8-.4,0-.8,0-.5-.6v.2Z"/>
|
|
153
|
+
<path class="st19" d="M438.2,20.6c-9.7,8.5-10.7,23.8-2.2,33.5-4.6-5.1-6.8-11.9-6.1-18.7.4-3.4,1.4-6.7,3.2-9.6.8-1.4,1.7-2.7,2.8-3.8.4-.5,1.2-1.6,1.8-1.8.4-.1.8.1.5.6v-.2Z"/>
|
|
154
|
+
<path class="st17" d="M473.3,53.5c8.6-10.6,6.7-26.6-3.8-35.1,5.6,4.3,9.1,10.9,9.7,17.9.3,3.6-.2,7.3-1.4,10.7-.6,1.6-1.4,3.2-2.3,4.7-.4.6-.9,1.6-1.4,2.1-.3.3-1.1.4-.7-.3h-.1Z"/>
|
|
155
|
+
<path class="st18" d="M434.4,22.8c-8.6,10.6-6.7,26.6,3.8,35.1-5.6-4.3-9.1-10.9-9.7-17.9-.3-3.6.2-7.3,1.4-10.7.6-1.6,1.4-3.2,2.3-4.7.4-.6.9-1.6,1.4-2.1.3-.3,1.1-.4.7.3h.1Z"/>
|
|
156
|
+
</g>
|
|
157
|
+
<path class="st15" d="M449.3,63.9c14.1,2.6,28-7,30.6-21.1-1.2,7.3-5.5,13.9-11.7,17.9s-6.5,3.4-10.1,4c-1.9.3-3.7.4-5.6.4s-2,0-2.9-.3c-.3,0-.9,0-.8-.6,0-.3.3-.4.5-.3Z"/>
|
|
158
|
+
<path class="st16" d="M458.4,12.4c-14.1-2.6-28,7-30.6,21.1,1.2-7.3,5.5-13.9,11.7-17.9s6.5-3.4,10.1-4c1.9-.3,3.7-.4,5.6-.4s2,0,2.9.3c.3,0,.9,0,.8.6,0,.3-.3.4-.5.3Z"/>
|
|
159
|
+
<path class="st13" d="M453.8,65.6c15.1,0,27.8-12.4,27.9-27.5,0,8-3.3,15.7-9.2,21.1-2.9,2.6-6.3,4.6-10,5.8-1.9.6-3.9,1.1-5.9,1.3-.5,0-2.5.5-3,0-.3-.3-.3-.8.2-.8Z"/>
|
|
160
|
+
<path class="st14" d="M453.8,10.7c-15.1-.1-27.8,12.4-27.9,27.5,0-8,3.3-15.7,9.2-21.1,2.9-2.6,6.3-4.6,10-5.8,1.9-.6,3.9-1.1,5.9-1.3.5,0,2.5-.5,3-.1.3.3.3.8-.2.8Z"/>
|
|
161
|
+
</g>
|
|
162
|
+
</g>
|
|
163
|
+
<g class="st12">
|
|
164
|
+
<polygon class="st21" points="167.1 38 174.2 50.4 173.3 51.9 165.4 38 173.4 23.7 175.2 23.7 167.1 38"/>
|
|
165
|
+
<polygon class="st9" points="172.9 52.5 172.2 53.8 163.3 38 171.2 23.7 172.7 23.7 164.7 38 172.9 52.5"/>
|
|
166
|
+
<polygon class="st8" points="171.7 54.6 171 55.7 161.1 38 168.9 23.7 170.2 23.7 162.3 38 171.7 54.6"/>
|
|
167
|
+
<polygon class="st4" points="169.5 38 175.4 48.3 174.5 49.9 167.6 38 175.7 23.7 177.7 23.7 169.5 38 169.5 38"/>
|
|
168
|
+
<polygon class="st2" points="171.8 38.1 176.7 46.1 175.6 48 169.8 38 178 23.7 180.2 23.7 171.9 38 171.8 38.1"/>
|
|
169
|
+
</g>
|
|
170
|
+
<g class="st12">
|
|
171
|
+
<polygon class="st5" points="215.5 38 207.8 24.8 206.9 26.3 213.7 38 205.3 52.5 207 52.5 215.5 38"/>
|
|
172
|
+
<polygon class="st6" points="202.8 52.5 204.7 52.5 213.2 38 206.7 26.8 205.7 28.5 211.3 38 211.2 38.1 202.8 52.5"/>
|
|
173
|
+
<polygon class="st1" points="217.8 38 209 22.9 208.2 24.2 216.2 38 207.7 52.5 209.3 52.5 217.8 38"/>
|
|
174
|
+
<polygon class="st7" points="211.6 52.5 220.1 38 210.1 20.9 209.4 22.1 218.7 38 210.2 52.5 211.6 52.5 211.6 52.5"/>
|
|
175
|
+
<polygon class="st3" points="210.9 38 205.5 28.7 204.4 30.6 208.8 38 208.7 38.1 201.2 50.9 200.3 52.5 202.4 52.5 210.9 38"/>
|
|
176
|
+
</g>
|
|
177
|
+
<polygon class="st22" points="210.7 55 205.5 64.1 175.1 64.1 172.1 58.9 174.4 55 194.3 21.2 169.8 21.2 175.1 12 205.5 12 208.9 17.9 207 21.1 187 55 187 55.1 210.7 55"/>
|
|
178
|
+
<g>
|
|
179
|
+
<path d="M452.1,26.4l8,21.4h-4.9l-1.6-4.8h-8l-1.7,4.8h-4.7l8.1-21.4h4.8ZM452.4,39.5l-2.7-7.9h0l-2.8,7.9h5.6-.1Z"/>
|
|
180
|
+
<path d="M466.7,26.4v21.4h-4.7v-21.4h4.7Z"/>
|
|
181
|
+
</g>
|
|
182
|
+
<g>
|
|
183
|
+
<path class="st20" d="M452.1,26.4l8,21.4h-4.9l-1.6-4.8h-8l-1.7,4.8h-4.7l8.1-21.4h4.8ZM452.4,39.5l-2.7-7.9h0l-2.8,7.9h5.6-.1Z"/>
|
|
184
|
+
<path class="st10" d="M466.7,26.4v21.4h-4.7v-21.4h4.7Z"/>
|
|
185
|
+
</g>
|
|
186
|
+
</svg>
|