@betterstart/cli 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +133 -0
- package/dist/cli.d.ts +1 -9
- package/dist/cli.js +13484 -354
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +24 -260
- package/dist/index.js +4 -11373
- package/dist/index.js.map +1 -1
- package/package.json +29 -42
- package/templates/schema.json +959 -0
- package/templates/tiptap/hooks/use-composed-ref.ts +43 -0
- package/templates/tiptap/hooks/use-cursor-visibility.ts +68 -0
- package/templates/tiptap/hooks/use-element-rect.ts +166 -0
- package/templates/tiptap/hooks/use-is-breakpoint.ts +32 -0
- package/templates/tiptap/hooks/use-menu-navigation.ts +182 -0
- package/templates/tiptap/hooks/use-scrolling.ts +64 -0
- package/templates/tiptap/hooks/use-throttled-callback.ts +146 -0
- package/templates/tiptap/hooks/use-tiptap-editor.ts +46 -0
- package/templates/tiptap/hooks/use-unmount.ts +21 -0
- package/templates/tiptap/hooks/use-window-size.ts +87 -0
- package/templates/tiptap/lib/tiptap-utils.ts +587 -0
- package/templates/tiptap/styles/_keyframe-animations.scss +91 -0
- package/templates/tiptap/styles/_variables.scss +296 -0
- package/templates/tiptap/tiptap-extension/node-background-extension.ts +138 -0
- package/templates/tiptap/tiptap-icons/align-center-icon.tsx +38 -0
- package/templates/tiptap/tiptap-icons/align-justify-icon.tsx +38 -0
- package/templates/tiptap/tiptap-icons/align-left-icon.tsx +38 -0
- package/templates/tiptap/tiptap-icons/align-right-icon.tsx +38 -0
- package/templates/tiptap/tiptap-icons/arrow-left-icon.tsx +24 -0
- package/templates/tiptap/tiptap-icons/ban-icon.tsx +26 -0
- package/templates/tiptap/tiptap-icons/blockquote-icon.tsx +44 -0
- package/templates/tiptap/tiptap-icons/bold-icon.tsx +26 -0
- package/templates/tiptap/tiptap-icons/chevron-down-icon.tsx +26 -0
- package/templates/tiptap/tiptap-icons/close-icon.tsx +24 -0
- package/templates/tiptap/tiptap-icons/code-block-icon.tsx +38 -0
- package/templates/tiptap/tiptap-icons/code2-icon.tsx +32 -0
- package/templates/tiptap/tiptap-icons/corner-down-left-icon.tsx +26 -0
- package/templates/tiptap/tiptap-icons/external-link-icon.tsx +28 -0
- package/templates/tiptap/tiptap-icons/heading-five-icon.tsx +28 -0
- package/templates/tiptap/tiptap-icons/heading-four-icon.tsx +28 -0
- package/templates/tiptap/tiptap-icons/heading-icon.tsx +24 -0
- package/templates/tiptap/tiptap-icons/heading-one-icon.tsx +28 -0
- package/templates/tiptap/tiptap-icons/heading-six-icon.tsx +30 -0
- package/templates/tiptap/tiptap-icons/heading-three-icon.tsx +36 -0
- package/templates/tiptap/tiptap-icons/heading-two-icon.tsx +28 -0
- package/templates/tiptap/tiptap-icons/highlighter-icon.tsx +26 -0
- package/templates/tiptap/tiptap-icons/image-plus-icon.tsx +26 -0
- package/templates/tiptap/tiptap-icons/italic-icon.tsx +24 -0
- package/templates/tiptap/tiptap-icons/link-icon.tsx +28 -0
- package/templates/tiptap/tiptap-icons/list-icon.tsx +56 -0
- package/templates/tiptap/tiptap-icons/list-ordered-icon.tsx +56 -0
- package/templates/tiptap/tiptap-icons/list-todo-icon.tsx +50 -0
- package/templates/tiptap/tiptap-icons/moon-star-icon.tsx +30 -0
- package/templates/tiptap/tiptap-icons/redo2-icon.tsx +26 -0
- package/templates/tiptap/tiptap-icons/strike-icon.tsx +28 -0
- package/templates/tiptap/tiptap-icons/subscript-icon.tsx +38 -0
- package/templates/tiptap/tiptap-icons/sun-icon.tsx +58 -0
- package/templates/tiptap/tiptap-icons/superscript-icon.tsx +38 -0
- package/templates/tiptap/tiptap-icons/trash-icon.tsx +26 -0
- package/templates/tiptap/tiptap-icons/underline-icon.tsx +26 -0
- package/templates/tiptap/tiptap-icons/undo2-icon.tsx +26 -0
- package/templates/tiptap/tiptap-node/blockquote-node/blockquote-node.scss +37 -0
- package/templates/tiptap/tiptap-node/code-block-node/code-block-node.scss +54 -0
- package/templates/tiptap/tiptap-node/heading-node/heading-node.scss +45 -0
- package/templates/tiptap/tiptap-node/horizontal-rule-node/horizontal-rule-node-extension.ts +10 -0
- package/templates/tiptap/tiptap-node/horizontal-rule-node/horizontal-rule-node.scss +25 -0
- package/templates/tiptap/tiptap-node/image-node/image-node.scss +35 -0
- package/templates/tiptap/tiptap-node/image-upload-node/image-upload-node-extension.ts +154 -0
- package/templates/tiptap/tiptap-node/image-upload-node/image-upload-node.scss +249 -0
- package/templates/tiptap/tiptap-node/image-upload-node/image-upload-node.tsx +522 -0
- package/templates/tiptap/tiptap-node/image-upload-node/index.tsx +1 -0
- package/templates/tiptap/tiptap-node/list-node/list-node.scss +208 -0
- package/templates/tiptap/tiptap-node/paragraph-node/paragraph-node.scss +273 -0
- package/templates/tiptap/tiptap-ui/blockquote-button/blockquote-button.tsx +104 -0
- package/templates/tiptap/tiptap-ui/blockquote-button/index.tsx +2 -0
- package/templates/tiptap/tiptap-ui/blockquote-button/use-blockquote.ts +252 -0
- package/templates/tiptap/tiptap-ui/code-block-button/code-block-button.tsx +106 -0
- package/templates/tiptap/tiptap-ui/code-block-button/index.tsx +2 -0
- package/templates/tiptap/tiptap-ui/code-block-button/use-code-block.ts +261 -0
- package/templates/tiptap/tiptap-ui/color-highlight-button/color-highlight-button.scss +49 -0
- package/templates/tiptap/tiptap-ui/color-highlight-button/color-highlight-button.tsx +153 -0
- package/templates/tiptap/tiptap-ui/color-highlight-button/index.tsx +2 -0
- package/templates/tiptap/tiptap-ui/color-highlight-button/use-color-highlight.ts +345 -0
- package/templates/tiptap/tiptap-ui/color-highlight-popover/color-highlight-popover.tsx +207 -0
- package/templates/tiptap/tiptap-ui/color-highlight-popover/index.tsx +1 -0
- package/templates/tiptap/tiptap-ui/heading-button/heading-button.tsx +107 -0
- package/templates/tiptap/tiptap-ui/heading-button/index.tsx +2 -0
- package/templates/tiptap/tiptap-ui/heading-button/use-heading.ts +314 -0
- package/templates/tiptap/tiptap-ui/heading-dropdown-menu/heading-dropdown-menu.tsx +131 -0
- package/templates/tiptap/tiptap-ui/heading-dropdown-menu/index.tsx +2 -0
- package/templates/tiptap/tiptap-ui/heading-dropdown-menu/use-heading-dropdown-menu.ts +130 -0
- package/templates/tiptap/tiptap-ui/image-upload-button/image-upload-button.tsx +114 -0
- package/templates/tiptap/tiptap-ui/image-upload-button/index.tsx +2 -0
- package/templates/tiptap/tiptap-ui/image-upload-button/use-image-upload.ts +192 -0
- package/templates/tiptap/tiptap-ui/link-popover/index.tsx +2 -0
- package/templates/tiptap/tiptap-ui/link-popover/link-popover.tsx +285 -0
- package/templates/tiptap/tiptap-ui/link-popover/use-link-popover.ts +286 -0
- package/templates/tiptap/tiptap-ui/list-button/index.tsx +2 -0
- package/templates/tiptap/tiptap-ui/list-button/list-button.tsx +108 -0
- package/templates/tiptap/tiptap-ui/list-button/use-list.ts +329 -0
- package/templates/tiptap/tiptap-ui/list-dropdown-menu/index.tsx +1 -0
- package/templates/tiptap/tiptap-ui/list-dropdown-menu/list-dropdown-menu.tsx +123 -0
- package/templates/tiptap/tiptap-ui/list-dropdown-menu/use-list-dropdown-menu.ts +203 -0
- package/templates/tiptap/tiptap-ui/mark-button/index.tsx +2 -0
- package/templates/tiptap/tiptap-ui/mark-button/mark-button.tsx +107 -0
- package/templates/tiptap/tiptap-ui/mark-button/use-mark.ts +206 -0
- package/templates/tiptap/tiptap-ui/text-align-button/index.tsx +2 -0
- package/templates/tiptap/tiptap-ui/text-align-button/text-align-button.tsx +118 -0
- package/templates/tiptap/tiptap-ui/text-align-button/use-text-align.ts +212 -0
- package/templates/tiptap/tiptap-ui/undo-redo-button/index.tsx +2 -0
- package/templates/tiptap/tiptap-ui/undo-redo-button/undo-redo-button.tsx +105 -0
- package/templates/tiptap/tiptap-ui/undo-redo-button/use-undo-redo.ts +173 -0
- package/templates/tiptap/tiptap-ui-primitive/badge/badge-colors.scss +395 -0
- package/templates/tiptap/tiptap-ui-primitive/badge/badge-group.scss +16 -0
- package/templates/tiptap/tiptap-ui-primitive/badge/badge.scss +99 -0
- package/templates/tiptap/tiptap-ui-primitive/badge/badge.tsx +46 -0
- package/templates/tiptap/tiptap-ui-primitive/badge/index.tsx +1 -0
- package/templates/tiptap/tiptap-ui-primitive/button/button-colors.scss +429 -0
- package/templates/tiptap/tiptap-ui-primitive/button/button-group.scss +22 -0
- package/templates/tiptap/tiptap-ui-primitive/button/button.scss +314 -0
- package/templates/tiptap/tiptap-ui-primitive/button/button.tsx +102 -0
- package/templates/tiptap/tiptap-ui-primitive/button/index.tsx +1 -0
- package/templates/tiptap/tiptap-ui-primitive/card/card.scss +77 -0
- package/templates/tiptap/tiptap-ui-primitive/card/card.tsx +59 -0
- package/templates/tiptap/tiptap-ui-primitive/card/index.tsx +1 -0
- package/templates/tiptap/tiptap-ui-primitive/dropdown-menu/dropdown-menu.scss +63 -0
- package/templates/tiptap/tiptap-ui-primitive/dropdown-menu/dropdown-menu.tsx +95 -0
- package/templates/tiptap/tiptap-ui-primitive/dropdown-menu/index.tsx +1 -0
- package/templates/tiptap/tiptap-ui-primitive/input/index.tsx +1 -0
- package/templates/tiptap/tiptap-ui-primitive/input/input.scss +45 -0
- package/templates/tiptap/tiptap-ui-primitive/input/input.tsx +18 -0
- package/templates/tiptap/tiptap-ui-primitive/popover/index.tsx +1 -0
- package/templates/tiptap/tiptap-ui-primitive/popover/popover.scss +63 -0
- package/templates/tiptap/tiptap-ui-primitive/popover/popover.tsx +33 -0
- package/templates/tiptap/tiptap-ui-primitive/separator/index.tsx +1 -0
- package/templates/tiptap/tiptap-ui-primitive/separator/separator.scss +23 -0
- package/templates/tiptap/tiptap-ui-primitive/separator/separator.tsx +33 -0
- package/templates/tiptap/tiptap-ui-primitive/spacer/index.tsx +1 -0
- package/templates/tiptap/tiptap-ui-primitive/spacer/spacer.tsx +21 -0
- package/templates/tiptap/tiptap-ui-primitive/toolbar/index.tsx +1 -0
- package/templates/tiptap/tiptap-ui-primitive/toolbar/toolbar.scss +98 -0
- package/templates/tiptap/tiptap-ui-primitive/toolbar/toolbar.tsx +113 -0
- package/templates/tiptap/tiptap-ui-primitive/tooltip/index.tsx +1 -0
- package/templates/tiptap/tiptap-ui-primitive/tooltip/tooltip.scss +43 -0
- package/templates/tiptap/tiptap-ui-primitive/tooltip/tooltip.tsx +223 -0
- package/templates/ui/accordion.tsx +52 -0
- package/templates/ui/alert-dialog.tsx +116 -0
- package/templates/ui/alert.tsx +48 -0
- package/templates/ui/aspect-ratio.tsx +7 -0
- package/templates/ui/avatar.tsx +46 -0
- package/templates/ui/badge.tsx +32 -0
- package/templates/ui/breadcrumb.tsx +98 -0
- package/templates/ui/button-group.tsx +77 -0
- package/templates/ui/button.tsx +48 -0
- package/templates/ui/calendar.tsx +176 -0
- package/templates/ui/card.tsx +54 -0
- package/templates/ui/carousel.tsx +234 -0
- package/templates/ui/chart.tsx +349 -0
- package/templates/ui/checkbox.tsx +27 -0
- package/templates/ui/collapsible.tsx +11 -0
- package/templates/ui/command.tsx +142 -0
- package/templates/ui/context-menu.tsx +188 -0
- package/templates/ui/curriculum-editor.tsx +601 -0
- package/templates/ui/date-picker.tsx +70 -0
- package/templates/ui/dialog.tsx +103 -0
- package/templates/ui/drawer.tsx +99 -0
- package/templates/ui/dropdown-menu.tsx +185 -0
- package/templates/ui/dynamic-list-field.tsx +95 -0
- package/templates/ui/empty.tsx +90 -0
- package/templates/ui/field.tsx +231 -0
- package/templates/ui/file-upload-example.tsx +113 -0
- package/templates/ui/form.tsx +172 -0
- package/templates/ui/hover-card.tsx +28 -0
- package/templates/ui/icon-picker.tsx +435 -0
- package/templates/ui/icons-data.ts +6 -0
- package/templates/ui/image-upload-field.tsx +360 -0
- package/templates/ui/input-group.tsx +160 -0
- package/templates/ui/input-otp.tsx +70 -0
- package/templates/ui/input.tsx +21 -0
- package/templates/ui/item.tsx +171 -0
- package/templates/ui/kbd.tsx +28 -0
- package/templates/ui/label.tsx +20 -0
- package/templates/ui/logo.tsx +113 -0
- package/templates/ui/markdown-editor.tsx +303 -0
- package/templates/ui/markdown-utils.ts +128 -0
- package/templates/ui/media-upload-field.tsx +255 -0
- package/templates/ui/menubar.tsx +230 -0
- package/templates/ui/navigation-menu.tsx +119 -0
- package/templates/ui/pagination.tsx +96 -0
- package/templates/ui/placeholder.tsx +25 -0
- package/templates/ui/popover.tsx +32 -0
- package/templates/ui/progress.tsx +24 -0
- package/templates/ui/radio-group.tsx +37 -0
- package/templates/ui/resizable.tsx +41 -0
- package/templates/ui/rich-text-editor.tsx +374 -0
- package/templates/ui/scroll-area.tsx +45 -0
- package/templates/ui/select.tsx +151 -0
- package/templates/ui/separator.tsx +25 -0
- package/templates/ui/sheet.tsx +120 -0
- package/templates/ui/sidebar.tsx +684 -0
- package/templates/ui/skeleton.tsx +7 -0
- package/templates/ui/slider.tsx +24 -0
- package/templates/ui/sonner.tsx +29 -0
- package/templates/ui/spinner.tsx +15 -0
- package/templates/ui/switch.tsx +28 -0
- package/templates/ui/table.tsx +93 -0
- package/templates/ui/tabs.tsx +54 -0
- package/templates/ui/textarea.tsx +20 -0
- package/templates/ui/toast.tsx +127 -0
- package/templates/ui/toggle-group.tsx +56 -0
- package/templates/ui/toggle.tsx +43 -0
- package/templates/ui/tooltip.tsx +31 -0
- package/templates/ui/use-mobile.tsx +19 -0
- package/templates/ui/video-upload-field.tsx +368 -0
- package/dist/chunk-G4KI4DVB.js +0 -179
- package/dist/chunk-G4KI4DVB.js.map +0 -1
- package/dist/chunk-NKRQYAS6.js +0 -260
- package/dist/chunk-NKRQYAS6.js.map +0 -1
- package/dist/chunk-QLVSHP7X.js +0 -235
- package/dist/chunk-QLVSHP7X.js.map +0 -1
- package/dist/chunk-WY6BC55D.js +0 -357
- package/dist/chunk-WY6BC55D.js.map +0 -1
- package/dist/config/index.d.ts +0 -93
- package/dist/config/index.js +0 -58
- package/dist/config/index.js.map +0 -1
- package/dist/core/index.d.ts +0 -415
- package/dist/core/index.js +0 -906
- package/dist/core/index.js.map +0 -1
- package/dist/import-resolver-BaZ-rzkH.d.ts +0 -123
- package/dist/logger-awLb347n.d.ts +0 -81
- package/dist/plugins/index.d.ts +0 -213
- package/dist/plugins/index.js +0 -365
- package/dist/plugins/index.js.map +0 -1
- package/dist/types-ByX_gl6y.d.ts +0 -232
- package/dist/types-eI549DEG.d.ts +0 -331
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
import { cn } from '@cms/utils/cn'
|
|
2
|
+
import { Slot } from '@radix-ui/react-slot'
|
|
3
|
+
import { cva, type VariantProps } from 'class-variance-authority'
|
|
4
|
+
import type * as React from 'react'
|
|
5
|
+
import { Separator } from './separator'
|
|
6
|
+
|
|
7
|
+
function ItemGroup({ className, ...props }: React.ComponentProps<'div'>) {
|
|
8
|
+
return (
|
|
9
|
+
<div
|
|
10
|
+
role="list"
|
|
11
|
+
data-slot="item-group"
|
|
12
|
+
className={cn('group/item-group flex flex-col', className)}
|
|
13
|
+
{...props}
|
|
14
|
+
/>
|
|
15
|
+
)
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
function ItemSeparator({ className, ...props }: React.ComponentProps<typeof Separator>) {
|
|
19
|
+
return (
|
|
20
|
+
<Separator
|
|
21
|
+
data-slot="item-separator"
|
|
22
|
+
orientation="horizontal"
|
|
23
|
+
className={cn('my-0', className)}
|
|
24
|
+
{...props}
|
|
25
|
+
/>
|
|
26
|
+
)
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const itemVariants = cva(
|
|
30
|
+
'group/item [a]:hover:bg-accent/50 focus-visible:border-ring focus-visible:ring-ring/50 [a]:transition-colors flex flex-wrap items-center rounded-md border border-transparent text-sm outline-none transition-colors duration-100 focus-visible:ring-[3px]',
|
|
31
|
+
{
|
|
32
|
+
variants: {
|
|
33
|
+
variant: {
|
|
34
|
+
default: 'bg-transparent',
|
|
35
|
+
outline: 'border-border',
|
|
36
|
+
muted: 'bg-muted/50'
|
|
37
|
+
},
|
|
38
|
+
size: {
|
|
39
|
+
default: 'gap-4 p-4 ',
|
|
40
|
+
sm: 'gap-2.5 px-4 py-3'
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
defaultVariants: {
|
|
44
|
+
variant: 'default',
|
|
45
|
+
size: 'default'
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
)
|
|
49
|
+
|
|
50
|
+
function Item({
|
|
51
|
+
className,
|
|
52
|
+
variant = 'default',
|
|
53
|
+
size = 'default',
|
|
54
|
+
asChild = false,
|
|
55
|
+
...props
|
|
56
|
+
}: React.ComponentProps<'div'> & VariantProps<typeof itemVariants> & { asChild?: boolean }) {
|
|
57
|
+
const Comp = asChild ? Slot : 'div'
|
|
58
|
+
return (
|
|
59
|
+
<Comp
|
|
60
|
+
data-slot="item"
|
|
61
|
+
data-variant={variant}
|
|
62
|
+
data-size={size}
|
|
63
|
+
className={cn(itemVariants({ variant, size, className }))}
|
|
64
|
+
{...props}
|
|
65
|
+
/>
|
|
66
|
+
)
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
const itemMediaVariants = cva(
|
|
70
|
+
'flex shrink-0 items-center justify-center gap-2 group-has-[[data-slot=item-description]]/item:translate-y-0.5 group-has-[[data-slot=item-description]]/item:self-start [&_svg]:pointer-events-none',
|
|
71
|
+
{
|
|
72
|
+
variants: {
|
|
73
|
+
variant: {
|
|
74
|
+
default: 'bg-transparent',
|
|
75
|
+
icon: "bg-muted size-8 rounded-sm border [&_svg:not([class*='size-'])]:size-4",
|
|
76
|
+
image: 'size-10 overflow-hidden rounded-sm [&_img]:size-full [&_img]:object-cover'
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
defaultVariants: {
|
|
80
|
+
variant: 'default'
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
)
|
|
84
|
+
|
|
85
|
+
function ItemMedia({
|
|
86
|
+
className,
|
|
87
|
+
variant = 'default',
|
|
88
|
+
...props
|
|
89
|
+
}: React.ComponentProps<'div'> & VariantProps<typeof itemMediaVariants>) {
|
|
90
|
+
return (
|
|
91
|
+
<div
|
|
92
|
+
data-slot="item-media"
|
|
93
|
+
data-variant={variant}
|
|
94
|
+
className={cn(itemMediaVariants({ variant, className }))}
|
|
95
|
+
{...props}
|
|
96
|
+
/>
|
|
97
|
+
)
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
function ItemContent({ className, ...props }: React.ComponentProps<'div'>) {
|
|
101
|
+
return (
|
|
102
|
+
<div
|
|
103
|
+
data-slot="item-content"
|
|
104
|
+
className={cn('flex flex-1 flex-col gap-1 [&+[data-slot=item-content]]:flex-none', className)}
|
|
105
|
+
{...props}
|
|
106
|
+
/>
|
|
107
|
+
)
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
function ItemTitle({ className, ...props }: React.ComponentProps<'div'>) {
|
|
111
|
+
return (
|
|
112
|
+
<div
|
|
113
|
+
data-slot="item-title"
|
|
114
|
+
className={cn('flex w-fit items-center gap-2 text-sm font-medium leading-snug', className)}
|
|
115
|
+
{...props}
|
|
116
|
+
/>
|
|
117
|
+
)
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
function ItemDescription({ className, ...props }: React.ComponentProps<'p'>) {
|
|
121
|
+
return (
|
|
122
|
+
<p
|
|
123
|
+
data-slot="item-description"
|
|
124
|
+
className={cn(
|
|
125
|
+
'text-muted-foreground line-clamp-2 text-sm font-normal leading-normal',
|
|
126
|
+
'[&>a:hover]:text-primary [&>a]:underline [&>a]:underline-offset-4',
|
|
127
|
+
className
|
|
128
|
+
)}
|
|
129
|
+
{...props}
|
|
130
|
+
/>
|
|
131
|
+
)
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
function ItemActions({ className, ...props }: React.ComponentProps<'div'>) {
|
|
135
|
+
return (
|
|
136
|
+
<div data-slot="item-actions" className={cn('flex items-center gap-2', className)} {...props} />
|
|
137
|
+
)
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
function ItemHeader({ className, ...props }: React.ComponentProps<'div'>) {
|
|
141
|
+
return (
|
|
142
|
+
<div
|
|
143
|
+
data-slot="item-header"
|
|
144
|
+
className={cn('flex basis-full items-center justify-between gap-2', className)}
|
|
145
|
+
{...props}
|
|
146
|
+
/>
|
|
147
|
+
)
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
function ItemFooter({ className, ...props }: React.ComponentProps<'div'>) {
|
|
151
|
+
return (
|
|
152
|
+
<div
|
|
153
|
+
data-slot="item-footer"
|
|
154
|
+
className={cn('flex basis-full items-center justify-between gap-2', className)}
|
|
155
|
+
{...props}
|
|
156
|
+
/>
|
|
157
|
+
)
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export {
|
|
161
|
+
Item,
|
|
162
|
+
ItemMedia,
|
|
163
|
+
ItemContent,
|
|
164
|
+
ItemActions,
|
|
165
|
+
ItemGroup,
|
|
166
|
+
ItemSeparator,
|
|
167
|
+
ItemTitle,
|
|
168
|
+
ItemDescription,
|
|
169
|
+
ItemHeader,
|
|
170
|
+
ItemFooter
|
|
171
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { cn } from '@cms/utils/cn'
|
|
2
|
+
|
|
3
|
+
function Kbd({ className, ...props }: React.ComponentProps<'kbd'>) {
|
|
4
|
+
return (
|
|
5
|
+
<kbd
|
|
6
|
+
data-slot="kbd"
|
|
7
|
+
className={cn(
|
|
8
|
+
'bg-muted text-muted-foreground pointer-events-none inline-flex h-5 w-fit min-w-5 select-none items-center justify-center gap-1 rounded-sm px-1 font-sans text-xs font-medium',
|
|
9
|
+
"[&_svg:not([class*='size-'])]:size-3",
|
|
10
|
+
'[[data-slot=tooltip-content]_&]:bg-background/20 [[data-slot=tooltip-content]_&]:text-background dark:[[data-slot=tooltip-content]_&]:bg-background/10',
|
|
11
|
+
className
|
|
12
|
+
)}
|
|
13
|
+
{...props}
|
|
14
|
+
/>
|
|
15
|
+
)
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
function KbdGroup({ className, ...props }: React.ComponentProps<'div'>) {
|
|
19
|
+
return (
|
|
20
|
+
<kbd
|
|
21
|
+
data-slot="kbd-group"
|
|
22
|
+
className={cn('inline-flex items-center gap-1', className)}
|
|
23
|
+
{...props}
|
|
24
|
+
/>
|
|
25
|
+
)
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export { Kbd, KbdGroup }
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use client'
|
|
2
|
+
|
|
3
|
+
import { cn } from '@cms/utils/cn'
|
|
4
|
+
import * as LabelPrimitive from '@radix-ui/react-label'
|
|
5
|
+
import { cva, type VariantProps } from 'class-variance-authority'
|
|
6
|
+
import * as React from 'react'
|
|
7
|
+
|
|
8
|
+
const labelVariants = cva(
|
|
9
|
+
'text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70'
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
const Label = React.forwardRef<
|
|
13
|
+
React.ElementRef<typeof LabelPrimitive.Root>,
|
|
14
|
+
React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & VariantProps<typeof labelVariants>
|
|
15
|
+
>(({ className, ...props }, ref) => (
|
|
16
|
+
<LabelPrimitive.Root ref={ref} className={cn(labelVariants(), className)} {...props} />
|
|
17
|
+
))
|
|
18
|
+
Label.displayName = LabelPrimitive.Root.displayName
|
|
19
|
+
|
|
20
|
+
export { Label }
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { cn } from '@cms/utils/cn'
|
|
2
|
+
|
|
3
|
+
export function Logo({ className, ...props }: React.SVGProps<SVGSVGElement>) {
|
|
4
|
+
return (
|
|
5
|
+
<svg
|
|
6
|
+
viewBox="0 0 164 80"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
className={cn('h-30 w-auto', className)}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<g clipPath="url(#clip0_19567_592)">
|
|
13
|
+
<path
|
|
14
|
+
d="M134.126 12.7273C134.289 13.4558 134.494 14.1779 134.605 14.9142C134.79 16.1433 134.786 17.388 134.69 18.6235C134.585 19.9832 134.297 21.3143 133.86 22.6097C133.056 24.9979 131.818 27.1341 130.149 29.0232C128.409 30.9933 126.345 32.5211 123.938 33.5778C122.466 34.2239 120.926 34.6373 119.331 34.8273C118.67 34.906 118.001 34.9719 117.337 34.9585C115.961 34.9305 114.595 34.7953 113.256 34.4409C112.996 34.3719 112.715 34.3792 112.443 34.359C111.818 34.3126 111.267 34.0374 110.712 33.788C110.295 33.6007 109.898 33.3687 109.47 33.1453C109.352 33.395 109.149 33.2975 108.982 33.2166C108.645 33.053 108.31 32.8777 107.995 32.6758C107.055 32.0743 106.202 31.3641 105.39 30.5967C103.847 29.1375 102.616 27.4502 101.673 25.5562C100.813 23.8281 100.232 22.0064 100.041 20.0767C99.9686 19.3459 99.8861 18.6084 99.9093 17.8772C99.9613 16.2359 100.25 14.6325 100.779 13.0686C101.507 10.9143 102.567 8.9412 103.893 7.10246C104.361 6.4538 104.93 5.89835 105.51 5.35841C106.494 4.44176 107.504 3.54645 108.672 2.86677C109.343 2.47621 110.063 2.17087 110.762 1.8281C111.072 1.67591 111.384 1.52601 111.695 1.375C111.705 1.42408 111.715 1.47233 111.72 1.49311C112.559 1.23626 113.397 0.988337 114.23 0.722219C114.956 0.490137 115.696 0.336751 116.452 0.250504C116.535 0.241028 116.612 0.178612 116.661 0.112245C117.915 0.0837402 119.201 0.0837402 120.525 0.0837402C120.435 0.224633 120.565 0.23032 120.654 0.249652C121.169 0.361331 121.69 0.45464 122.201 0.584306C123.445 0.900131 124.603 1.41668 125.738 2.02114C126.879 2.62868 127.833 3.47264 128.852 4.23555C128.892 4.26508 128.919 4.31068 129.013 4.41929C128.67 4.38737 128.408 4.363 128.037 4.32854C128.205 4.55471 128.3 4.71821 128.428 4.85139C129.749 6.23197 130.688 7.83546 131.203 9.67503C131.355 10.2191 131.427 10.787 131.515 11.3473C131.563 11.6532 131.519 11.7598 131.329 12.1081C131.238 12.0195 131.146 11.9507 131.079 11.8631C130.675 11.3334 130.276 10.7994 129.858 10.217C129.761 10.0983 129.682 10.0293 129.603 9.96041C129.588 9.97668 129.572 9.99294 129.557 10.0092C129.629 10.1065 129.7 10.2038 129.772 10.3011C130.592 11.6781 131.094 13.1689 131.374 14.7417C131.591 15.9568 131.611 17.1829 131.508 18.4028C131.374 19.9886 130.951 21.5119 130.306 22.9698C129.584 24.6003 128.624 26.073 127.377 27.3518C127.009 27.7295 126.631 28.1001 126.235 28.4474C125.849 28.7853 125.433 29.0892 125.005 29.4282C125.061 29.5189 125.122 29.6182 125.208 29.757C124.846 29.9897 124.508 30.2287 124.151 30.4325C122.526 31.3582 120.787 31.9456 118.926 32.1554C118.181 32.2394 117.434 32.2981 116.689 32.3766C116.546 32.3917 116.407 32.4458 116.27 32.5224C116.732 32.7927 117.247 32.6476 117.743 32.7691C117.768 32.9594 117.907 33.0452 118.104 33.038C119.653 32.9812 121.174 32.7706 122.649 32.2703C123.868 31.8567 125.009 31.2857 126.091 30.5926C126.207 30.518 126.325 30.4452 126.463 30.3583C126.537 30.4637 126.603 30.5571 126.68 30.6655C127.503 30.2961 128.253 29.8306 128.925 29.2391C130.632 27.737 131.806 25.8639 132.709 23.8025C133.264 22.5371 133.647 21.2212 133.899 19.8634C133.944 19.6186 133.955 19.3283 134.256 19.2009C134.293 19.1849 134.301 19.0781 134.308 19.0118C134.444 17.7757 134.416 16.5356 134.356 15.2984C134.324 14.6632 134.198 14.0327 134.121 13.3434C134.11 13.2656 134.092 13.2443 134.075 13.223C134.069 13.1868 134.064 13.1506 134.069 13.067C134.095 12.9222 134.111 12.8247 134.126 12.7273ZM130.363 14.5836C130.295 14.0849 130.227 13.5859 129.998 13.1186C130.072 13.6318 130.145 14.145 130.209 14.7301C130.208 14.8277 130.197 14.9267 130.21 15.0225C130.329 15.9242 130.257 16.8237 130.179 17.7227C130.172 17.8092 130.122 17.8939 130.084 17.9754C130.016 18.1206 129.903 18.2556 129.874 18.4073C129.526 20.2253 128.896 21.9363 127.936 23.5203C126.913 25.2091 125.593 26.5816 123.72 27.3586C123.698 27.3482 123.681 27.3321 123.715 27.2689C123.76 27.2057 123.804 27.1425 123.848 27.0793C123.732 27.054 123.673 27.0807 123.616 27.1121C123.034 27.4348 122.468 27.7901 121.868 28.0751C120.34 28.801 118.727 29.1641 117.029 29.1481C116.815 29.1461 116.72 29.0562 116.679 28.9086C116.256 28.829 115.825 29.01 115.382 28.674C115.608 28.6183 115.738 28.5719 115.871 28.5565C116.187 28.52 116.504 28.4882 116.822 28.4722C118.224 28.4015 119.568 28.0733 120.847 27.5064C121.428 27.2486 121.97 26.9005 122.528 26.5918C122.675 26.5108 122.75 26.4141 122.581 26.2358C122.602 26.1922 122.622 26.1487 122.681 26.0641C124.128 25.0588 125.289 23.7883 126.184 22.2749C127.457 20.1233 128.028 17.7997 127.847 15.3028C127.724 13.6001 127.209 12.0173 126.349 10.517C126.374 10.5017 126.398 10.4863 126.46 10.5116C126.804 10.9654 127.146 11.42 127.491 11.8723C127.561 11.9636 127.601 12.107 127.798 12.055C127.81 11.9545 127.831 11.848 127.833 11.7412C127.847 10.8897 127.592 10.094 127.282 9.31992C126.84 8.212 126.197 7.22445 125.371 6.35874C125.253 6.23478 125.161 6.08551 125.013 5.89043C125.284 5.89043 125.466 5.89043 125.679 5.89043C125.636 5.83213 125.619 5.79603 125.592 5.77459C124.834 5.19047 124.121 4.55887 123.259 4.10416C122.481 3.69393 121.705 3.3033 120.869 3.0348C119.089 2.46332 117.274 2.3473 115.436 2.66014C114.798 2.76868 114.166 2.92724 113.544 3.10403C112.788 3.31858 112.023 3.52547 111.302 3.83067C110.627 4.11633 109.991 4.50415 109.363 4.88762C108.775 5.24676 108.22 5.65927 107.65 6.0479C107.592 6.0871 107.51 6.16952 107.478 6.15373C107.259 6.0485 107.175 6.23099 107.079 6.34089C106.651 6.83094 106.223 7.32175 105.818 7.83095C104.932 8.94588 104.193 10.1527 103.622 11.4587C102.702 13.5614 102.182 15.7312 102.372 18.055C102.516 19.8268 102.977 21.4967 103.763 23.0774C104.698 24.9581 105.98 26.5779 107.619 27.8928C108.223 28.3774 108.904 28.7673 109.555 29.1912C109.658 29.2582 109.793 29.2766 109.963 29.3347C109.91 29.211 109.89 29.1637 109.858 29.0907C110.291 29.3091 110.691 29.523 111.102 29.7149C111.669 29.9798 112.237 30.2478 112.891 30.1975C112.972 30.1913 113.058 30.2133 113.138 30.2347C114.968 30.7237 116.818 30.7663 118.676 30.446C121.385 29.9792 123.719 28.7477 125.733 26.8995C126.942 25.7897 127.916 24.4903 128.705 23.0509C129.672 21.2862 130.24 19.3974 130.421 17.399C130.504 16.4863 130.501 15.5658 130.363 14.5836ZM129.784 12.1072C129.741 12.3531 129.848 12.5616 129.915 12.78C129.947 12.772 129.979 12.764 130.012 12.7559C129.951 12.5469 129.889 12.3378 129.784 12.1072Z"
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M98.9781 55.3126C99.0606 55.7868 99.1374 56.2235 99.2287 56.6571C99.2569 56.7907 99.3158 56.9203 99.376 57.0443C99.671 57.6509 100.122 57.8681 100.78 57.7361C101.661 57.5591 102.409 57.1082 103.125 56.5931C104.968 55.2653 106.509 53.6258 107.949 51.8845C108.035 51.7799 108.106 51.6534 108.152 51.5255C108.973 49.2224 109.788 46.9173 110.606 44.613C110.746 44.2201 110.882 43.8257 111.035 43.4381C111.204 43.01 111.579 42.8497 112.018 42.9984C112.431 43.1379 112.623 43.4857 112.477 43.9309C112.213 44.7364 111.913 45.5303 111.636 46.3316C111.226 47.5145 110.825 48.7002 110.414 49.8828C110.354 50.0579 110.346 50.2076 110.498 50.336C110.689 50.4981 110.844 50.4996 111.046 50.2946C111.389 49.9483 111.717 49.5877 112.047 49.2297C112.663 48.5624 113.321 47.9432 114.085 47.4466C114.498 47.1778 114.951 47.0116 115.44 46.9287C116.357 46.7732 117.17 47.4271 117.203 48.3567C117.23 49.0879 117.084 49.797 116.904 50.4954C116.562 51.8131 116.19 53.1227 115.832 54.436C115.433 55.8971 115.097 57.3712 114.954 58.8821C114.888 59.5869 114.818 60.2951 114.95 61.0008C114.984 61.1776 115.026 61.3571 115.097 61.5216C115.282 61.953 115.622 62.1413 116.092 62.0938C116.69 62.0335 117.211 61.7719 117.71 61.4634C118.97 60.6847 120.114 59.7559 121.187 58.7409C121.856 58.1087 122.521 57.4711 123.157 56.8069C123.831 56.104 124.472 55.3701 125.116 54.6401C125.199 54.5454 125.239 54.3974 125.264 54.2674C125.651 52.2227 126.002 50.1709 126.423 48.1333C126.784 46.3817 127.223 44.6461 127.627 42.9033C127.655 42.7817 127.684 42.6602 127.708 42.5379C127.824 41.9623 127.512 41.5869 126.921 41.6194C126.312 41.653 125.703 41.7117 125.095 41.763C124.749 41.7922 124.405 41.8344 124.059 41.86C123.678 41.8882 123.433 41.6585 123.396 41.2735C123.337 40.665 123.64 40.2635 124.242 40.2178C124.879 40.1694 125.516 40.1214 126.153 40.0738C126.527 40.0458 126.9 40.0149 127.274 39.9924C127.997 39.9488 128.45 39.5815 128.677 38.8926C129.172 37.3884 129.664 35.8822 130.198 34.3913C130.563 33.3721 130.989 32.3743 131.402 31.3731C131.584 30.9335 131.885 30.8007 132.296 30.9296C132.712 31.0597 132.975 31.4929 132.863 31.9145C132.8 32.1542 132.687 32.3822 132.584 32.6099C131.674 34.6267 130.92 36.7002 130.328 38.8325C130.149 39.4743 130.395 39.7845 131.064 39.7747C132.221 39.7578 133.379 39.7303 134.536 39.7442C135.663 39.7577 136.789 39.8131 137.915 39.8589C138.37 39.8775 138.696 40.2952 138.663 40.7927C138.636 41.2194 138.278 41.5266 137.838 41.4981C137.437 41.472 137.036 41.4256 136.634 41.4189C135.143 41.3941 133.652 41.3766 132.161 41.3679C131.689 41.3652 131.215 41.3849 130.744 41.4209C130.513 41.4387 130.28 41.4988 130.059 41.5724C129.672 41.7012 129.448 41.9907 129.348 42.3802C128.731 44.7751 128.129 47.1741 127.689 49.6087C127.243 52.0781 126.849 54.5567 126.408 57.0271C125.934 59.6892 125.432 62.3466 124.941 65.0058C124.89 65.2783 124.846 65.5532 124.774 65.8202C124.672 66.1942 124.326 66.3735 123.924 66.2824C123.47 66.1794 123.207 65.8515 123.278 65.4607C123.643 63.4829 124.012 61.506 124.376 59.528C124.479 58.9689 124.568 58.4073 124.661 57.8465C124.674 57.7689 124.672 57.6887 124.682 57.5394C124.527 57.683 124.416 57.7804 124.311 57.8846C123.118 59.0747 121.943 60.2853 120.614 61.3289C119.616 62.1123 118.573 62.8295 117.397 63.3235C116.764 63.5892 116.111 63.7692 115.412 63.6169C114.732 63.469 114.223 63.0934 113.893 62.4829C113.502 61.7572 113.371 60.9687 113.349 60.1548C113.306 58.5563 113.612 57.0059 113.996 55.4672C114.457 53.6227 114.922 51.7794 115.397 49.9385C115.458 49.7021 115.446 49.4975 115.308 49.306C115.07 48.9771 114.647 48.9167 114.324 49.171C114.138 49.3169 113.959 49.4748 113.798 49.6468C112.933 50.569 112.002 51.4403 111.297 52.496C110.347 53.9188 109.435 55.3678 108.53 56.8206C108.053 57.5873 107.622 58.3829 107.18 59.1712C106.966 59.5526 106.64 59.7121 106.156 59.5195C105.765 59.3637 105.591 59.0162 105.724 58.6093C105.987 57.8007 106.265 56.9973 106.536 56.1912C106.592 56.024 106.64 55.8541 106.639 55.6558C106.174 56.07 105.717 56.4946 105.242 56.8963C104.197 57.7789 103.097 58.5798 101.802 59.067C101.196 59.2951 100.57 59.4129 99.9216 59.3256C99.0897 59.2138 98.5554 58.6857 98.1373 58.0107C97.6314 57.1939 97.4639 56.2842 97.4452 55.3418C97.4355 54.8547 97.4673 54.3668 97.4661 53.8793C97.4657 53.7249 97.5515 53.52 97.3433 53.4342C97.153 53.3557 97.0318 53.5027 96.92 53.6284C96.5322 54.0648 96.1511 54.5072 95.7596 54.9402C95.3471 55.3964 94.8931 55.8077 94.3548 56.1124C93.5609 56.5619 92.8794 56.3774 92.4092 55.5981C92.396 55.5763 92.3674 55.5637 92.3251 55.5303C92.0126 56.0164 91.6954 56.4963 91.3919 56.9846C90.6484 58.1806 89.8192 59.3133 88.8345 60.3203C88.2202 60.9485 87.5396 61.5045 86.6993 61.824C86.1443 62.035 85.6116 62.0068 85.0912 61.7124C84.6885 61.4846 84.4957 61.0986 84.3203 60.7039C84.0756 60.1531 83.9799 59.5607 83.9128 58.9689C83.8549 58.459 83.8091 57.9411 83.8312 57.43C83.8732 56.4606 83.9626 55.4932 84.0418 54.5257C84.1007 53.8064 84.1575 53.0862 84.246 52.3702C84.3537 51.4989 84.4035 50.6258 84.3752 49.7501C84.3636 49.3931 84.3169 49.0322 84.2387 48.6838C84.1381 48.2361 83.9658 48.1378 83.5589 48.3256C83.2487 48.4688 82.9515 48.6689 82.6965 48.8973C81.9658 49.5519 81.4009 50.3469 80.8779 51.1707C79.6504 53.104 78.6981 55.1726 77.8733 57.3034C77.8181 57.4459 77.7732 57.5931 77.7082 57.7309C77.5896 57.982 77.3961 58.1509 77.1267 58.2356C76.6631 58.3813 76.2588 58.1536 76.1566 57.6771C76.1335 57.5694 76.1184 57.457 76.1213 57.3473C76.1899 54.6909 76.532 52.0701 77.1382 49.4826C77.7472 46.8825 78.5466 44.3411 79.4672 41.8363C79.5036 41.7372 79.5283 41.6338 79.5667 41.5047C79.4543 41.4811 79.3774 41.4527 79.2999 41.4507C78.729 41.4361 78.158 41.4257 77.5871 41.4162C76.5146 41.3983 75.4422 41.3724 74.3697 41.3684C73.7299 41.366 73.0889 41.3814 72.4503 41.4204C71.6805 41.4675 71.2212 41.8422 71.0525 42.6015C70.6305 44.5004 70.1432 46.3849 69.7217 48.284C69.4425 49.5424 69.2179 50.8135 68.9938 52.0833C68.7454 53.4902 68.5334 54.9035 68.2912 56.3116C67.9458 58.3206 67.5946 60.3287 67.2315 62.3346C67.0289 63.4538 66.8033 64.569 66.5754 65.6834C66.4748 66.1749 66.1601 66.379 65.7069 66.2847C65.1946 66.1781 64.9727 65.8552 65.0676 65.3431C65.2645 64.2794 65.4698 63.2173 65.6624 62.1528C65.9364 60.6379 66.2045 59.1219 66.4706 57.6056C66.8325 55.544 67.1913 53.4818 67.5469 51.4191C67.5743 51.2605 67.5664 51.0959 67.5806 50.8256C67.4173 51.003 67.3288 51.1085 67.2306 51.2041C66.2424 52.167 65.2724 53.1498 64.2578 54.0842C63.1008 55.1496 61.8598 56.1151 60.541 56.9765C59.6638 57.5495 58.7487 58.0517 57.7167 58.2789C56.0397 58.6482 54.8907 57.8983 54.2513 56.466C54.0728 56.0661 54.0132 55.6407 53.9893 55.2093C53.9663 54.7957 53.9526 54.3817 53.935 53.9739C53.5728 53.8553 53.5671 53.8514 53.3799 54.1265C52.5882 55.2896 51.7311 56.4024 50.796 57.4532C50.3155 57.9932 49.811 58.5125 49.2016 58.9143C48.8209 59.1654 48.4154 59.3335 47.9465 59.2817C47.5209 59.2347 47.1754 59.0705 46.9844 58.6545C46.82 58.2966 46.7175 57.9293 46.7018 57.533C46.6659 56.6243 46.7629 55.7262 46.9187 54.8349C47.4866 51.585 48.4468 48.4411 49.5117 45.3265C49.7197 44.7181 50.083 44.5135 50.6151 44.6783C51.0586 44.8156 51.2306 45.0872 51.1027 45.5328C50.9344 46.1188 50.7349 46.696 50.545 47.2757C49.6977 49.8632 48.945 52.4764 48.4364 55.1539C48.3383 55.6705 48.302 56.1989 48.2374 56.7218C48.2306 56.7768 48.2168 56.8324 48.2204 56.8868C48.2332 57.079 48.3065 57.2282 48.4959 57.3165C48.6922 57.4079 48.7858 57.2653 48.8814 57.1582C49.4187 56.5559 49.9677 55.9624 50.477 55.3369C51.8923 53.5989 53.1516 51.7484 54.3577 49.8612C54.6799 49.3571 54.995 48.8484 55.3156 48.3431C55.3677 48.261 55.4279 48.1834 55.4899 48.1082C55.7659 47.7738 56.086 47.6995 56.4513 47.8822C56.7956 48.0544 56.9725 48.4416 56.8597 48.8269C56.782 49.0924 56.6728 49.3486 56.5788 49.6094C56.0588 51.0514 55.6696 52.5186 55.5658 54.0603C55.5287 54.6112 55.5481 55.1435 55.6905 55.6638C55.8488 56.2427 56.1826 56.7259 56.8253 56.7964C57.1543 56.8324 57.5261 56.7507 57.8368 56.6217C58.3869 56.3932 58.9257 56.1214 59.4328 55.8086C60.7743 54.9811 62.0044 54.0001 63.1549 52.9265C64.2145 51.9377 65.2459 50.9183 66.2725 49.8951C66.8344 49.3351 67.3384 48.7158 67.9131 48.1702C68.1756 47.921 68.2864 47.6531 68.3615 47.3228C68.7156 45.7677 69.0858 44.2164 69.4486 42.6633C69.4738 42.5554 69.4993 42.445 69.5029 42.335C69.5162 41.9197 69.2303 41.6035 68.8132 41.6215C68.1615 41.6496 67.5114 41.7128 66.8607 41.7623C66.5562 41.7855 66.2403 41.7676 65.95 41.845C65.359 42.0025 64.9822 41.4353 65.2068 40.781C65.3138 40.4694 65.537 40.27 65.8831 40.2415C66.5613 40.1856 67.2393 40.1279 67.9176 40.0745C68.3187 40.0429 68.7216 40.0296 69.1215 39.9875C69.7792 39.9182 70.2147 39.5788 70.4268 38.9327C70.9171 37.4397 71.4064 35.9458 71.9377 34.4672C72.3131 33.4224 72.7512 32.3998 73.1726 31.3719C73.3571 30.9221 73.6696 30.7921 74.1062 30.9481C74.5048 31.0905 74.7611 31.5221 74.6339 31.9074C74.5168 32.262 74.3547 32.6023 74.2031 32.9447C73.3461 34.8803 72.6375 36.8688 72.0731 38.9086C71.9208 39.4592 72.1945 39.7859 72.7798 39.7765C73.7555 39.7609 74.7316 39.7301 75.707 39.7439C77.0287 39.7627 78.3501 39.8141 79.6713 39.8613C79.832 39.8671 79.9905 39.9333 80.1712 39.9765C80.4478 39.2707 80.721 38.5588 81.0052 37.8513C82.0222 35.3198 83.4005 32.9888 84.9593 30.7597C85.7714 29.5983 86.6256 28.4662 87.5901 27.4274C88.2812 26.683 88.9845 25.9426 89.8264 25.3579C90.136 25.1428 90.4619 24.9692 90.8458 24.903C91.8168 24.7355 92.6185 25.3038 92.7828 26.2748C92.9058 27.0015 92.7181 27.6816 92.491 28.3502C92.041 29.6753 91.3475 30.881 90.5938 32.0518C88.7393 34.9326 86.6614 37.648 84.4762 40.2835C83.1195 41.9197 81.7608 43.5544 80.4081 45.194C79.7128 46.0368 79.3001 47.0182 79.0537 48.0726C78.8233 49.0585 78.6083 50.048 78.3871 51.0361C78.375 51.0903 78.3445 51.1584 78.365 51.1982C78.4178 51.3007 78.4759 51.4279 78.5676 51.474C78.6368 51.5089 78.7838 51.4607 78.8556 51.4009C78.9478 51.324 79.0029 51.2006 79.068 51.0936C79.6984 50.0576 80.4123 49.0826 81.21 48.1695C81.7777 47.5199 82.4298 46.985 83.2845 46.7654C83.5628 46.6939 83.8608 46.6442 84.1452 46.6613C84.9422 46.7092 85.3366 47.2543 85.5752 47.9363C85.9668 49.0558 86.0495 50.2092 85.9231 51.3848C85.818 52.363 85.7325 53.3433 85.6378 54.3226C85.5643 55.0813 85.4608 55.8386 85.4252 56.599C85.3966 57.2081 85.4431 57.8214 85.4691 58.4323C85.4856 58.8205 85.5158 59.2087 85.559 59.5948C85.5788 59.7712 85.6228 59.9522 85.6946 60.1139C85.8493 60.4623 86.0985 60.5439 86.4434 60.3758C86.9299 60.1386 87.3025 59.7598 87.6515 59.3608C89.2524 57.5306 90.5446 55.4861 91.7371 53.3788C92.6617 51.745 93.5334 50.0813 94.4288 48.431C95.2357 46.944 96.1508 45.5339 97.4159 44.389C97.7428 44.0931 98.1095 43.8255 98.4959 43.6142C99.4285 43.1041 100.41 43.5007 101.03 44.0615C101.378 44.3765 101.6 44.7746 101.767 45.2095C102.053 45.9546 102.272 46.713 102.242 47.5215C102.221 48.0811 101.715 48.4176 101.185 48.2314C100.863 48.1182 100.722 47.9258 100.707 47.579C100.685 47.0509 100.637 46.5246 100.447 46.0278C100.353 45.7836 100.226 45.5465 100.08 45.3296C99.7991 44.9143 99.4283 44.8385 99.0027 45.1024C98.354 45.5048 97.8572 46.0716 97.4057 46.6721C96.4388 47.958 95.6715 49.3647 95.0381 50.8378C94.6768 51.6783 94.4086 52.5595 94.1133 53.4274C94.0617 53.5792 93.9329 53.7703 94.1554 53.913C94.3207 54.0191 94.4324 53.9919 94.6505 53.7543C95.2898 53.0576 95.9164 52.3494 96.5613 51.658C97.2449 50.925 97.9421 50.2045 98.6371 49.4821C98.8827 49.2267 99.1889 49.1603 99.5171 49.2767C100.038 49.4613 100.196 49.8096 99.9824 50.3334C99.578 51.3274 99.2425 52.3426 99.1023 53.4077C99.0211 54.0245 99.0169 54.6515 98.9781 55.3126ZM90.9836 28.1406C91.0705 27.8468 91.1798 27.5574 91.2373 27.258C91.2866 27.0011 91.3995 26.726 91.212 26.4703C90.8034 26.4173 90.5105 26.6419 90.2224 26.8544C89.5456 27.3536 88.9644 27.9585 88.4342 28.6041C86.5027 30.9558 84.8263 33.4807 83.4752 36.2077C82.8342 37.5014 82.3044 38.8505 81.733 40.1782C81.6557 40.3578 81.5072 40.5667 81.7257 40.7496C81.8982 40.894 82.0533 40.8378 82.3035 40.5264C83.1303 39.4976 83.97 38.4783 84.7676 37.4272C86.0697 35.7112 87.3624 33.9874 88.6211 32.2396C89.5325 30.9739 90.3371 29.6379 90.9836 28.1406Z"
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
/>
|
|
21
|
+
<path
|
|
22
|
+
d="M35.9977 21.6777C35.3077 23.7929 34.6033 25.869 33.9472 27.9603C33.1536 30.4897 32.3889 33.0284 31.6356 35.5701C31.2649 36.8209 30.9426 38.0863 30.6086 39.3478C30.4151 40.0786 30.968 40.832 31.7196 40.8205C32.7611 40.8045 33.8017 40.7384 34.8429 40.6987C35.1215 40.6881 35.4022 40.6774 35.6795 40.6984C36.3064 40.7458 36.6554 41.434 36.3218 41.9692C36.2554 42.0757 36.1232 42.1703 36.0021 42.2071C35.8193 42.2626 35.6199 42.2778 35.4268 42.2833C34.2579 42.3164 33.0887 42.3372 31.9199 42.3722C31.4901 42.3851 31.0612 42.4275 30.6316 42.4529C30.1727 42.48 29.8656 42.7215 29.748 43.1519C29.6055 43.6731 29.4894 44.2033 29.3964 44.7357C29.1125 46.361 28.8138 47.9848 28.581 49.6177C28.3848 50.9942 28.3242 52.3831 28.391 53.7775C28.4456 54.918 28.5574 56.0458 28.8716 57.1467C29.2081 58.3255 29.6371 59.4656 30.2967 60.5078C30.9331 61.5136 31.7162 62.3587 32.8354 62.8387C32.9247 62.877 33.0088 62.9274 33.0977 62.9668C33.6533 63.2128 33.6717 63.5538 33.5382 64.0267C33.4309 64.4066 32.8608 64.5858 32.4296 64.4115C31.6359 64.0906 30.903 63.6657 30.3037 63.0459C29.5458 62.2619 28.898 61.3942 28.4214 60.4089C27.734 58.9881 27.1924 57.5161 26.9807 55.9443C26.8865 55.2442 26.8512 54.5353 26.8102 53.8292C26.7869 53.4276 26.8063 53.0236 26.8059 52.6206C26.8044 51.1318 26.9657 49.6558 27.1887 48.1876C27.3925 46.8463 27.6228 45.5083 27.8745 44.1751C28.0427 43.2843 27.297 42.6922 26.5883 42.7629C23.321 43.0889 20.095 43.6519 16.8863 44.3299C16.4517 44.4218 16.017 44.5141 15.5851 44.6176C14.7377 44.8208 14.0784 45.2967 13.5751 46.0055C12.1259 48.0464 10.666 50.0799 9.2205 52.1235C7.96002 53.9054 6.7122 55.6963 5.46198 57.4855C5.3107 57.702 5.17565 57.9302 5.03956 58.1568C4.78487 58.5811 4.41953 58.6177 4.03518 58.4415C3.70022 58.288 3.52514 57.861 3.64859 57.4837C3.69931 57.3287 3.79071 57.1823 3.88482 57.0468C5.99508 54.0077 8.10718 50.9698 10.2221 47.9339C10.5719 47.4318 10.9431 46.9446 11.2891 46.44C11.3685 46.3243 11.4358 46.1584 11.4189 46.0272C11.3847 45.7613 11.1896 45.6767 10.8794 45.7634C9.97 46.0176 9.06214 46.2773 8.15429 46.537C6.10693 47.1225 4.11346 47.8594 2.14607 48.6708C1.83839 48.7977 1.52434 48.9354 1.20007 48.9902C0.535648 49.1026 0.183993 48.7251 0.23901 48.1857C0.26469 47.9339 0.383277 47.7389 0.626722 47.6374C1.26931 47.3696 1.91054 47.0984 2.55517 46.8356C5.66575 45.5675 8.88602 44.6418 12.1323 43.8051C13.0877 43.5588 13.8024 43.0382 14.3778 42.2572C17.2395 38.3735 20.1149 34.499 23.1696 30.7639C24.8493 28.7102 26.5872 26.7036 28.3181 24.6923C29.7083 23.0769 31.178 21.5334 32.7089 20.0507C33.6579 19.1316 34.649 18.2579 35.729 17.4906C35.9655 17.3226 36.2136 17.2235 36.5074 17.2504C36.8929 17.2858 37.1876 17.5767 37.1831 17.9615C37.1809 18.1524 37.1415 18.3502 37.08 18.5318C36.7281 19.5718 36.3645 20.6078 35.9977 21.6777ZM24.0943 32.1734C23.5658 32.8361 23.0294 33.4926 22.5104 34.1626C20.8257 36.3377 19.1463 38.5168 17.4678 40.6966C17.1461 41.1144 16.8318 41.5382 16.525 41.967C16.3368 42.2301 16.3453 42.5106 16.5646 42.6305C16.6952 42.7019 16.885 42.7137 17.0374 42.6881C17.6815 42.5797 18.3194 42.4345 18.9635 42.3261C20.4149 42.0818 21.8659 41.8327 23.3222 41.6208C24.64 41.429 25.9625 41.2648 27.2868 41.125C28.1705 41.0316 28.6716 40.5473 28.8961 39.7267C29.4752 37.6103 30.0099 35.4808 30.6356 33.3783C31.5426 30.3304 32.5127 27.3012 33.4592 24.265C33.6663 23.6009 33.8903 22.9422 34.1007 22.2791C34.2021 21.9598 34.1498 21.7637 33.9422 21.6071C33.7076 21.4301 33.4869 21.4478 33.2377 21.6982C32.638 22.3007 32.0312 22.8975 31.4572 23.5239C30.4238 24.6514 29.386 25.7766 28.3979 26.9434C26.9517 28.6511 25.5478 30.3946 24.0943 32.1734Z"
|
|
23
|
+
fill="currentColor"
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
d="M36.1603 72.1637C35.4473 73.3611 34.7314 74.5184 33.8494 75.5656C32.7304 76.8941 31.3843 77.8851 29.7129 78.3998C28.9494 78.6349 28.1719 78.7872 27.3766 78.5632C26.0064 78.1773 25.1544 77.281 24.8601 75.8924C24.6082 74.7032 24.9354 73.6143 25.5308 72.5849C26.4258 71.0373 27.7243 69.9687 29.4 69.3781C30.5927 68.9578 31.8094 68.606 33.0116 68.2118C34.0533 67.8702 35.0926 67.5206 36.1273 67.1582C36.8398 66.9086 37.3103 66.3933 37.5892 65.704C39.1113 61.9418 40.4148 58.1046 41.5197 54.1997C41.5592 54.0599 41.6646 53.9204 41.5057 53.779C41.3203 53.6139 41.1343 53.6367 40.9457 53.8746C40.6009 54.3096 40.2714 54.7571 39.917 55.1841C39.1956 56.0533 38.4244 56.8729 37.4704 57.4973C37.0011 57.8045 36.5006 58.0548 35.9471 58.1515C34.98 58.3205 33.9815 57.7541 33.576 56.8306C33.3559 56.3295 33.263 55.8019 33.2179 55.2549C33.1037 53.8664 33.4743 52.5624 33.8611 51.2588C34.2216 50.044 34.6644 48.8597 35.1986 47.7102C35.2572 47.584 35.316 47.4566 35.3894 47.3389C35.6039 46.9954 35.9856 46.8734 36.3694 47.0171C36.7119 47.1452 36.9108 47.5036 36.8348 47.8965C36.8036 48.0573 36.7388 48.2151 36.668 48.3641C35.8361 50.1163 35.1943 51.9313 34.8726 53.8489C34.7577 54.534 34.6636 55.2285 34.8418 55.9172C34.8884 56.0972 34.992 56.2802 35.1176 56.4181C35.3178 56.6379 35.5908 56.7327 35.8766 56.5974C36.1508 56.4677 36.4266 56.3247 36.6657 56.1407C37.5995 55.4221 38.348 54.5195 39.0691 53.6008C40.7214 51.4955 42.1607 49.2461 43.4978 46.9301C43.7092 46.5639 43.8897 46.4719 44.2805 46.5264C44.6446 46.5772 44.9468 46.8354 45.0114 47.1759C45.031 47.2789 45.0087 47.396 44.9822 47.5007C44.7363 48.4699 44.5028 49.4427 44.2322 50.405C43.6127 52.6086 43.0027 54.8156 42.3361 57.0051C41.5869 59.466 40.7837 61.9107 39.804 64.2927C39.709 64.5237 39.6215 64.7583 39.542 64.9951C39.4656 65.2223 39.4888 65.4305 39.6825 65.604C39.8634 65.766 40.0585 65.7589 40.2652 65.6803C40.4077 65.6261 40.5497 65.5696 40.6887 65.5068C41.1 65.3208 41.4704 65.408 41.6702 65.7419C41.8879 66.1057 41.8194 66.5875 41.4938 66.8367C41.3641 66.936 41.2055 67.0049 41.0508 67.0629C40.4916 67.2726 39.9257 67.4649 39.3673 67.6766C38.6064 67.9651 38.0657 68.4584 37.7128 69.2237C37.2537 70.2194 36.6917 71.1676 36.1603 72.1637ZM28.0951 71.8379C27.3017 72.4868 26.6997 73.271 26.434 74.2746C26.1533 75.335 26.6063 76.3506 27.6029 76.8039C28.1706 77.0621 28.7324 77.0429 29.3061 76.8755C30.632 76.4886 31.6831 75.6893 32.5736 74.6618C33.7927 73.2551 34.7225 71.6606 35.5693 70.0126C35.6937 69.7706 35.68 69.5611 35.5187 69.3553C35.3438 69.1321 35.1366 69.1579 34.8864 69.2395C33.6596 69.6397 32.43 70.0325 31.1945 70.4053C30.1114 70.7322 29.057 71.1121 28.0951 71.8379Z"
|
|
27
|
+
fill="currentColor"
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
d="M153.144 50.0538C152.781 51.0063 152.435 51.9284 152.249 52.9012C152.008 54.1675 151.901 55.4329 152.301 56.6901C152.351 56.8486 152.409 57.0078 152.489 57.1532C152.758 57.6452 153.223 57.8499 153.796 57.7484C154.523 57.6194 155.159 57.2819 155.767 56.8856C156.692 56.2835 157.526 55.5679 158.321 54.8066C159.551 53.6295 160.679 52.3617 161.708 51.0048C161.775 50.9161 161.845 50.8284 161.923 50.749C162.223 50.4413 162.684 50.3986 163.026 50.6425C163.377 50.8938 163.459 51.2537 163.191 51.6667C162.951 52.0382 162.666 52.3843 162.374 52.7184C161.67 53.5247 160.981 54.3475 160.23 55.1088C158.968 56.3875 157.639 57.5958 156.07 58.5009C155.319 58.9342 154.533 59.2641 153.649 59.3399C152.735 59.4182 152.021 59.0974 151.462 58.3852C150.836 57.5872 150.579 56.6588 150.53 55.6693C150.5 55.0433 150.523 54.4141 150.538 53.7867C150.541 53.6373 150.555 53.4972 150.398 53.4367C150.25 53.3798 150.13 53.458 150.031 53.5709C149.691 53.957 149.357 54.3485 149.008 54.7255C148.497 55.277 147.988 55.8297 147.297 56.1754C146.596 56.5264 145.78 56.2866 145.487 55.6195C145.35 55.3064 145.341 54.9728 145.367 54.6388C145.49 53.0371 145.998 51.5433 146.66 50.0957C147.303 48.6884 148.039 47.3313 148.962 46.0854C149.56 45.2787 150.216 44.5223 151.037 43.9292C151.238 43.7836 151.457 43.6538 151.683 43.5524C152.829 43.04 154.021 43.7651 154.528 44.583C154.906 45.1916 155.104 45.8744 155.231 46.5735C155.29 46.8988 155.332 47.2377 155.309 47.5654C155.27 48.1203 154.713 48.4309 154.204 48.2125C153.975 48.114 153.815 47.9563 153.787 47.686C153.749 47.3003 153.729 46.908 153.64 46.5332C153.554 46.1724 153.426 45.8105 153.251 45.4844C152.92 44.8668 152.442 44.8202 151.939 45.176C151.339 45.6003 150.848 46.1346 150.43 46.7253C148.981 48.7715 147.853 50.9778 147.184 53.4051C147.133 53.5925 147.027 53.7867 147.259 53.9215C147.502 54.0628 147.611 53.8473 147.735 53.7115C148.451 52.9331 149.156 52.1459 149.875 51.371C150.453 50.748 151.038 50.1313 151.634 49.5251C151.963 49.1897 152.377 49.1309 152.739 49.3438C152.991 49.4924 153.17 49.6986 153.144 50.0538Z"
|
|
31
|
+
fill="currentColor"
|
|
32
|
+
/>
|
|
33
|
+
<path
|
|
34
|
+
d="M135.831 49.5634C135.915 49.4303 135.959 49.3109 136.028 49.208C137.467 47.0594 138.922 44.9207 140.607 42.9528C141.085 42.3943 141.632 41.8938 142.159 41.3785C142.502 41.0426 142.945 40.9099 143.409 40.865C144.078 40.8003 144.798 41.2896 145.098 41.9902C145.258 42.3658 145.343 42.7569 145.335 43.1664C145.307 44.4741 145.278 45.7819 145.252 47.0897C145.246 47.3974 145.28 47.6907 145.438 47.9748C145.651 48.3569 145.521 48.737 145.143 48.9769C144.825 49.1783 144.329 49.0809 144.099 48.7572C143.79 48.3248 143.656 47.8291 143.664 47.3061C143.676 46.5279 143.726 45.7504 143.747 44.9723C143.764 44.3594 143.769 43.7459 143.767 43.1327C143.767 42.8645 143.694 42.6116 143.482 42.3887C143.072 42.5911 142.723 42.8778 142.419 43.2142C141.363 44.3798 140.406 45.625 139.52 46.9222C138.437 48.5075 137.347 50.0895 136.315 51.7074C134.975 53.8056 133.688 55.9377 132.379 58.0554C132.321 58.15 132.27 58.2495 132.207 58.3411C131.968 58.6885 131.603 58.7805 131.218 58.5948C130.868 58.4264 130.714 58.0808 130.854 57.6858C131.025 57.2022 131.244 56.7354 131.414 56.2515C131.967 54.6795 132.544 53.1145 133.044 51.5253C133.759 49.2486 134.413 46.9525 135.096 44.6656C135.276 44.0619 136.046 43.8761 136.497 44.325C136.686 44.5142 136.692 44.753 136.623 44.9891C136.242 46.294 135.855 47.597 135.469 48.9007C135.442 48.9941 135.407 49.0863 135.39 49.1817C135.332 49.5121 135.427 49.6021 135.831 49.5634Z"
|
|
35
|
+
fill="currentColor"
|
|
36
|
+
/>
|
|
37
|
+
<path
|
|
38
|
+
d="M95.467 73.0047C95.4175 72.9037 95.377 72.8333 95.3178 72.7306C94.9208 73.7573 94.537 74.7498 94.1532 75.7422C94.1251 75.7456 94.097 75.749 94.0688 75.7523C93.4739 74.2664 92.8789 72.7805 92.2734 71.2682C92.5011 71.2682 92.6919 71.2682 92.9184 71.2682C93.2978 72.2322 93.6817 73.2073 94.0655 74.1824C94.0925 74.186 94.1196 74.1895 94.1466 74.193C94.5333 73.1925 94.92 72.192 95.3387 71.1088C95.7548 72.1815 96.1436 73.1836 96.5686 74.2791C96.9853 73.2235 97.368 72.254 97.7554 71.2725C97.9603 71.2725 98.1515 71.2725 98.4001 71.2725C97.7948 72.7879 97.1964 74.2861 96.5688 75.8572C96.187 74.8714 95.8314 73.9534 95.467 73.0047Z"
|
|
39
|
+
fill="currentColor"
|
|
40
|
+
/>
|
|
41
|
+
<path
|
|
42
|
+
d="M85.992 71.5134C86.3166 71.148 86.722 71.1188 87.1266 71.1826C87.782 71.2859 88.0881 72.0647 87.6939 72.6119C87.5431 72.8213 87.3408 72.9936 87.1379 73.2082C87.4028 73.5282 87.6734 73.8553 87.9586 74.1999C88.1308 74.0096 88.2868 73.8372 88.4732 73.6313C88.6043 73.7561 88.7284 73.8742 88.863 74.0023C88.6798 74.2306 88.5168 74.4339 88.3412 74.6529C88.5893 74.9673 88.8359 75.2796 89.1007 75.6151C88.5452 75.7809 88.1923 75.5791 87.9726 75.0701C87.7515 75.2335 87.5758 75.3842 87.3808 75.5035C86.8265 75.8427 86.0265 75.7587 85.6071 75.316C85.1835 74.8691 85.0344 74.0659 85.6878 73.5094C85.8658 73.3578 86.0532 73.2173 86.2473 73.063C85.8533 72.599 85.6236 72.1171 85.992 71.5134ZM86.6151 75.1887C87.0021 75.1513 87.2727 74.9203 87.5455 74.6271C87.2395 74.2564 86.9358 73.8884 86.6268 73.5142C86.4763 73.615 86.3565 73.6863 86.2475 73.7713C86.1603 73.8393 86.0825 73.9206 86.0071 74.0022C85.7732 74.2553 85.7422 74.4771 85.9158 74.7552C86.0617 74.9889 86.2707 75.1423 86.6151 75.1887ZM86.611 72.5574C86.6699 72.6613 86.7426 72.751 86.8701 72.6617C86.9824 72.5831 87.0958 72.498 87.1838 72.3946C87.3501 72.1992 87.3509 71.9567 87.2082 71.7867C87.082 71.6364 86.7917 71.5924 86.5944 71.6937C86.4065 71.7902 86.3266 72.0274 86.4164 72.2707C86.4488 72.3582 86.5193 72.4317 86.611 72.5574Z"
|
|
43
|
+
fill="currentColor"
|
|
44
|
+
/>
|
|
45
|
+
<path
|
|
46
|
+
d="M110.327 71.7753C111.155 72.6391 111.962 73.4819 112.802 74.3599C112.886 73.9908 112.834 73.6519 112.844 73.3182C112.854 72.9839 112.846 72.6491 112.846 72.3146C112.846 71.9701 112.846 71.6257 112.846 71.2677C113.051 71.2677 113.215 71.2677 113.407 71.2677C113.407 72.7614 113.407 74.2546 113.407 75.8318C112.324 74.6995 111.285 73.6131 110.174 72.4518C110.174 73.5743 110.174 74.595 110.174 75.6378C109.971 75.6378 109.809 75.6378 109.645 75.6378C109.559 75.3315 109.527 72.2425 109.601 71.0766C109.923 71.2288 110.057 71.5543 110.327 71.7753Z"
|
|
47
|
+
fill="currentColor"
|
|
48
|
+
/>
|
|
49
|
+
<path
|
|
50
|
+
d="M73.1612 75.345C73.1611 73.9688 73.1611 72.6339 73.1611 71.2624C73.9283 71.2623 74.6746 71.1623 75.3846 71.5063C75.9898 71.7995 76.3825 72.2617 76.4915 72.9237C76.6382 73.8144 76.4794 74.6179 75.6923 75.1831C75.3472 75.4309 74.9481 75.5709 74.5296 75.6013C74.0892 75.6333 73.6446 75.6085 73.1738 75.6085C73.1686 75.5166 73.1649 75.4515 73.1612 75.345ZM74.7352 71.8739C74.4152 71.8211 74.0971 71.7399 73.776 71.7797C73.776 72.9073 73.776 74.002 73.776 75.1589C74.2049 75.0713 74.6052 75.0187 74.9867 74.9039C75.4091 74.7769 75.693 74.4709 75.8447 74.0526C76.1904 73.0993 75.7826 72.2553 74.7352 71.8739Z"
|
|
51
|
+
fill="currentColor"
|
|
52
|
+
/>
|
|
53
|
+
<path
|
|
54
|
+
d="M60.7686 72.0898C60.7686 71.7992 60.7686 71.5501 60.7686 71.25C61.2707 71.2732 61.7526 71.196 62.2309 71.3054C62.7633 71.4273 63.1108 71.815 63.144 72.3038C63.1928 73.0218 62.9499 73.462 62.3839 73.6797C62.3339 73.6989 62.2817 73.7124 62.1749 73.7462C62.6227 74.3728 63.0526 74.9744 63.4871 75.5823C62.9617 75.75 62.8436 75.7104 62.5704 75.3096C62.2807 74.8846 61.9875 74.462 61.6926 74.0406C61.6236 73.9421 61.5413 73.8529 61.4308 73.7173C61.3043 74.0694 61.3743 74.3833 61.3616 74.688C61.3489 74.9923 61.3588 75.2974 61.3588 75.6314C61.1618 75.6314 60.9901 75.6314 60.7686 75.6314C60.7686 74.4628 60.7686 73.2971 60.7686 72.0898ZM62.115 71.8515C61.8762 71.8124 61.6374 71.7734 61.3574 71.7276C61.3574 72.0397 61.3561 72.2876 61.3578 72.5354C61.3595 72.7922 61.3642 73.0489 61.3679 73.326C61.6192 73.2968 61.8134 73.2877 62.0016 73.2493C62.3303 73.1823 62.5716 72.9329 62.611 72.6458C62.6578 72.3049 62.5291 72.0789 62.115 71.8515Z"
|
|
55
|
+
fill="currentColor"
|
|
56
|
+
/>
|
|
57
|
+
<path
|
|
58
|
+
d="M49.6302 74.5214C49.1171 74.5214 48.6438 74.5214 48.1701 74.5214C47.9912 74.9049 47.8214 75.2689 47.6481 75.6403C47.4452 75.6403 47.258 75.6403 47.0107 75.6403C47.718 74.092 48.4072 72.5834 49.1306 70.9998C49.8476 72.5678 50.5376 74.0768 51.2478 75.6297C51.0157 75.6297 50.829 75.6297 50.61 75.6297C50.4514 75.2885 50.2828 74.9259 50.0948 74.5214C49.9705 74.5214 49.8202 74.5214 49.6302 74.5214ZM48.447 73.9975C48.9 73.9975 49.3529 73.9975 49.862 73.9975C49.6159 73.4419 49.3847 72.9196 49.1289 72.3419C48.8731 72.922 48.6501 73.4277 48.447 73.9975Z"
|
|
59
|
+
fill="currentColor"
|
|
60
|
+
/>
|
|
61
|
+
<path
|
|
62
|
+
d="M78.2288 73.8721C78.6641 72.927 79.0833 72.0091 79.5438 71.0008C80.2675 72.582 80.9556 74.0853 81.6616 75.6279C81.5732 75.6436 81.525 75.6527 81.4766 75.6606C81.1632 75.7117 80.9551 75.6219 80.8535 75.2857C80.7746 75.0244 80.6277 74.7836 80.5095 74.5306C79.8723 74.5306 79.2465 74.5306 78.5827 74.5306C78.4719 74.7636 78.3501 75.0081 78.2384 75.2571C78.0318 75.7179 78.026 75.7228 77.4463 75.6009C77.7039 75.0289 77.9583 74.4642 78.2288 73.8721ZM79.2599 74.0168C79.5855 74.0168 79.9111 74.0168 80.2498 74.0168C80.0264 73.3117 79.6895 72.6121 79.4914 72.437C79.2986 72.9639 79.0046 73.4464 78.8416 74.0168C78.9885 74.0168 79.0851 74.0168 79.2599 74.0168Z"
|
|
63
|
+
fill="currentColor"
|
|
64
|
+
/>
|
|
65
|
+
<path
|
|
66
|
+
d="M56.1316 74.8799C56.0581 74.5262 55.9601 74.2028 55.9485 73.8763C55.9228 73.1528 55.9405 72.4278 55.9405 71.7034C55.9405 71.5667 55.9405 71.4301 55.9405 71.274C56.1479 71.274 56.3202 71.274 56.5307 71.274C56.5307 71.8258 56.5224 72.3657 56.5331 72.9052C56.5428 73.3903 56.5378 73.88 56.6041 74.3587C56.6777 74.8906 57.0719 75.1702 57.6058 75.1528C58.0807 75.1374 58.4121 74.8721 58.5179 74.3923C58.5653 74.1776 58.5863 73.9533 58.5885 73.733C58.5966 72.9258 58.5917 72.1185 58.5917 71.282C58.778 71.282 58.9513 71.282 59.1567 71.282C59.1643 71.3731 59.1804 71.4795 59.1807 71.586C59.1829 72.3801 59.1912 73.1743 59.1764 73.9681C59.1718 74.2136 59.134 74.469 59.055 74.7006C58.8705 75.2411 58.4855 75.5912 57.9161 75.6827C57.2802 75.7848 56.7022 75.6634 56.2797 75.1207C56.2287 75.0551 56.1904 74.9796 56.1316 74.8799Z"
|
|
67
|
+
fill="currentColor"
|
|
68
|
+
/>
|
|
69
|
+
<path
|
|
70
|
+
d="M124.105 73.5631C123.876 73.4536 123.67 73.3691 123.473 73.2661C122.962 72.9977 122.783 72.6672 122.838 72.1179C122.88 71.7027 123.214 71.343 123.703 71.2124C124.249 71.0666 124.95 71.1773 125.267 71.8377C125.131 71.9263 124.989 72.0189 124.825 72.1251C124.625 71.8316 124.373 71.6737 124.04 71.7315C123.895 71.7567 123.742 71.8125 123.624 71.8983C123.354 72.0952 123.343 72.433 123.601 72.6477C123.737 72.7608 123.907 72.8358 124.069 72.9135C124.305 73.0274 124.56 73.1083 124.787 73.2391C125.293 73.5314 125.511 74.0582 125.389 74.6272C125.267 75.1946 124.806 75.6254 124.247 75.6931C123.46 75.7885 122.859 75.4022 122.663 74.6715C122.646 74.6085 122.653 74.5391 122.647 74.4577C122.811 74.4206 122.957 74.3858 123.105 74.3557C123.129 74.3508 123.157 74.3672 123.211 74.3806C123.233 74.6431 123.356 74.8648 123.586 75.0223C123.93 75.2585 124.415 75.1741 124.659 74.8338C124.926 74.4624 124.865 74.0379 124.497 73.774C124.386 73.6943 124.254 73.6437 124.105 73.5631Z"
|
|
71
|
+
fill="currentColor"
|
|
72
|
+
/>
|
|
73
|
+
<path
|
|
74
|
+
d="M120.652 71.2342C120.953 71.3688 121.167 71.5515 121.312 71.8449C121.157 71.9373 121.017 72.0207 120.863 72.1121C120.647 71.829 120.385 71.6752 120.03 71.7295C119.719 71.7771 119.508 71.9524 119.469 72.2074C119.432 72.4482 119.555 72.6655 119.836 72.8014C120.11 72.9337 120.402 73.0305 120.673 73.1671C121.327 73.4958 121.555 73.9927 121.396 74.7239C121.293 75.1997 120.808 75.6881 120.105 75.7098C119.366 75.7325 118.783 75.2705 118.656 74.4786C118.82 74.4336 118.988 74.3876 119.184 74.3339C119.232 74.4517 119.274 74.5633 119.324 74.6709C119.505 75.0625 119.949 75.2558 120.332 75.105C120.799 74.9209 120.898 74.5366 120.804 74.1187C120.772 73.9773 120.625 73.8361 120.494 73.749C120.3 73.6196 120.072 73.5414 119.862 73.4358C119.676 73.3427 119.495 73.2412 119.311 73.1445C118.721 72.8344 118.704 71.7638 119.344 71.3835C119.751 71.1414 120.174 71.1021 120.652 71.2342Z"
|
|
75
|
+
fill="currentColor"
|
|
76
|
+
/>
|
|
77
|
+
<path
|
|
78
|
+
d="M99.5615 74.5981C99.5615 73.4727 99.5615 72.3888 99.5615 71.279C100.361 71.279 101.134 71.279 101.947 71.279C101.953 71.4152 101.961 71.5596 101.969 71.741C101.369 71.741 100.79 71.741 100.181 71.741C100.181 72.1561 100.181 72.5371 100.181 72.9618C100.746 72.9618 101.311 72.9618 101.891 72.9618C101.891 73.1524 101.891 73.2999 101.891 73.4775C101.318 73.4775 100.765 73.4775 100.181 73.4775C100.181 74.0254 100.181 74.5441 100.181 75.0999C100.764 75.0999 101.343 75.0999 101.943 75.0999C101.943 75.28 101.943 75.4238 101.943 75.5892C101.159 75.5892 100.385 75.5892 99.5615 75.5892C99.5615 75.2705 99.5615 74.9551 99.5615 74.5981Z"
|
|
79
|
+
fill="currentColor"
|
|
80
|
+
/>
|
|
81
|
+
<path
|
|
82
|
+
d="M116.461 71.2532C116.793 71.2532 117.082 71.2532 117.385 71.2532C117.385 71.429 117.385 71.5654 117.385 71.7434C116.815 71.7434 116.237 71.7434 115.637 71.7434C115.637 72.1667 115.637 72.549 115.637 72.9716C116.209 72.9716 116.774 72.9716 117.355 72.9716C117.355 73.1471 117.355 73.2829 117.355 73.4618C116.789 73.4618 116.226 73.4618 115.638 73.4618C115.638 74.025 115.638 74.5461 115.638 75.0964C116.211 75.0964 116.778 75.0964 117.377 75.0964C117.386 75.2682 117.394 75.4141 117.404 75.5853C116.613 75.5853 115.84 75.5853 115.045 75.5853C115.045 74.1525 115.045 72.7241 115.045 71.2532C115.508 71.2532 115.964 71.2532 116.461 71.2532Z"
|
|
83
|
+
fill="currentColor"
|
|
84
|
+
/>
|
|
85
|
+
<path
|
|
86
|
+
d="M71.0779 71.2532C71.2974 71.2532 71.4758 71.2532 71.6687 71.2532C71.6687 71.4259 71.6687 71.5617 71.6687 71.74C71.1022 71.74 70.5253 71.74 69.9242 71.74C69.9242 72.1636 69.9242 72.5456 69.9242 72.969C70.4922 72.969 71.0568 72.969 71.6385 72.969C71.6385 73.1447 71.6385 73.2796 71.6385 73.4583C71.0766 73.4583 70.5135 73.4583 69.9249 73.4583C69.9249 74.0219 69.9249 74.5433 69.9249 75.094C70.494 75.094 71.0606 75.094 71.6612 75.094C71.6717 75.2657 71.6805 75.4117 71.691 75.5842C70.9022 75.5842 70.1285 75.5842 69.332 75.5842C69.332 74.1549 69.332 72.7265 69.332 71.2532C69.9017 71.2532 70.4692 71.2532 71.0779 71.2532Z"
|
|
87
|
+
fill="currentColor"
|
|
88
|
+
/>
|
|
89
|
+
<path
|
|
90
|
+
d="M65.7167 73.1792C65.8764 73.5806 66.0289 73.9505 66.2101 74.3898C66.644 73.3135 67.0565 72.2902 67.4697 71.2654C67.6868 71.2654 67.8784 71.2654 68.1254 71.2654C67.4882 72.8126 66.8634 74.3295 66.2082 75.9203C65.5509 74.3291 64.9283 72.8222 64.291 71.2795C64.5232 71.2795 64.7207 71.2795 64.9464 71.2795C65.1974 71.894 65.4535 72.5209 65.7167 73.1792Z"
|
|
91
|
+
fill="currentColor"
|
|
92
|
+
/>
|
|
93
|
+
<path
|
|
94
|
+
d="M52.153 72.6043C51.8958 72.1586 51.655 71.7391 51.3916 71.2803C51.6303 71.2803 51.829 71.2803 52.0755 71.2803C52.3949 71.8281 52.7349 72.4112 53.1041 73.0445C53.4639 72.4225 53.7942 71.8517 54.133 71.2661C54.3292 71.2661 54.5363 71.2661 54.8049 71.2661C54.6555 71.5429 54.5251 71.7946 54.3855 72.041C54.1867 72.3916 54.0062 72.7563 53.7724 73.0824C53.4639 73.5128 53.3594 73.9722 53.3992 74.4915C53.4277 74.8627 53.4047 75.2378 53.4047 75.6358C53.1972 75.6358 53.0238 75.6358 52.8141 75.6358C52.8141 75.115 52.8027 74.6012 52.8192 74.0884C52.8268 73.854 52.7691 73.6533 52.653 73.4584C52.4895 73.1837 52.3303 72.9065 52.153 72.6043Z"
|
|
95
|
+
fill="currentColor"
|
|
96
|
+
/>
|
|
97
|
+
<path
|
|
98
|
+
d="M106.512 72.0916C106.512 71.802 106.512 71.5536 106.512 71.2795C106.709 71.2795 106.881 71.2795 107.091 71.2795C107.091 72.5355 107.091 73.7945 107.091 75.0928C107.549 75.0928 107.973 75.0928 108.418 75.0928C108.418 75.2766 108.418 75.4219 108.418 75.5887C107.799 75.5887 107.179 75.5887 106.512 75.5887C106.512 74.4327 106.512 73.2827 106.512 72.0916Z"
|
|
99
|
+
fill="currentColor"
|
|
100
|
+
/>
|
|
101
|
+
<path
|
|
102
|
+
d="M104.659 75.1057C104.893 75.1057 105.087 75.1057 105.318 75.1057C105.328 75.264 105.337 75.4095 105.348 75.5823C104.728 75.5823 104.122 75.5823 103.494 75.5823C103.494 74.1558 103.494 72.7286 103.494 71.272C103.642 71.2649 103.789 71.2578 103.991 71.248C103.995 71.671 104 72.0825 104.001 72.4939C104.003 72.9258 104.002 73.3578 104.002 73.7897C104.002 74.2067 104.002 74.6237 104.002 75.1011C104.215 75.1027 104.417 75.1042 104.659 75.1057Z"
|
|
103
|
+
fill="currentColor"
|
|
104
|
+
/>
|
|
105
|
+
</g>
|
|
106
|
+
<defs>
|
|
107
|
+
<clipPath id="clip0_19567_592">
|
|
108
|
+
<rect width="163.516" height="80" fill="currentColor" />
|
|
109
|
+
</clipPath>
|
|
110
|
+
</defs>
|
|
111
|
+
</svg>
|
|
112
|
+
)
|
|
113
|
+
}
|