tio-design-make-experiments 0.0.1

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.
Files changed (108) hide show
  1. package/ATTRIBUTIONS.md +3 -0
  2. package/README.md +11 -0
  3. package/guidelines/Guidelines.md +61 -0
  4. package/index.html +15 -0
  5. package/package.json +91 -0
  6. package/postcss.config.mjs +15 -0
  7. package/src/app/App.tsx +6 -0
  8. package/src/app/components/design-system/Buttons.tsx +623 -0
  9. package/src/app/components/design-system/Cards.tsx +123 -0
  10. package/src/app/components/design-system/Charts.tsx +135 -0
  11. package/src/app/components/design-system/ColorPalette.tsx +86 -0
  12. package/src/app/components/design-system/CopyButton.tsx +102 -0
  13. package/src/app/components/design-system/Forms.tsx +409 -0
  14. package/src/app/components/design-system/Icons.tsx +140 -0
  15. package/src/app/components/design-system/ListItems.tsx +234 -0
  16. package/src/app/components/design-system/Navigation.tsx +344 -0
  17. package/src/app/components/design-system/Patterns.tsx +235 -0
  18. package/src/app/components/design-system/PopoverMenu.tsx +81 -0
  19. package/src/app/components/design-system/SectionHeader.tsx +22 -0
  20. package/src/app/components/design-system/Spacing.tsx +109 -0
  21. package/src/app/components/design-system/StatusIndicators.tsx +194 -0
  22. package/src/app/components/design-system/Typography.tsx +88 -0
  23. package/src/app/components/figma/ImageWithFallback.tsx +27 -0
  24. package/src/app/components/ui/accordion.tsx +66 -0
  25. package/src/app/components/ui/alert-dialog.tsx +157 -0
  26. package/src/app/components/ui/alert.tsx +66 -0
  27. package/src/app/components/ui/aspect-ratio.tsx +11 -0
  28. package/src/app/components/ui/avatar.tsx +53 -0
  29. package/src/app/components/ui/badge.tsx +46 -0
  30. package/src/app/components/ui/breadcrumb.tsx +109 -0
  31. package/src/app/components/ui/button.tsx +58 -0
  32. package/src/app/components/ui/calendar.tsx +75 -0
  33. package/src/app/components/ui/card.tsx +92 -0
  34. package/src/app/components/ui/carousel.tsx +241 -0
  35. package/src/app/components/ui/chart.tsx +353 -0
  36. package/src/app/components/ui/checkbox.tsx +32 -0
  37. package/src/app/components/ui/collapsible.tsx +33 -0
  38. package/src/app/components/ui/command.tsx +177 -0
  39. package/src/app/components/ui/context-menu.tsx +252 -0
  40. package/src/app/components/ui/dialog.tsx +135 -0
  41. package/src/app/components/ui/drawer.tsx +132 -0
  42. package/src/app/components/ui/dropdown-menu.tsx +257 -0
  43. package/src/app/components/ui/form.tsx +168 -0
  44. package/src/app/components/ui/hover-card.tsx +44 -0
  45. package/src/app/components/ui/input-otp.tsx +77 -0
  46. package/src/app/components/ui/input.tsx +21 -0
  47. package/src/app/components/ui/label.tsx +24 -0
  48. package/src/app/components/ui/menubar.tsx +276 -0
  49. package/src/app/components/ui/navigation-menu.tsx +168 -0
  50. package/src/app/components/ui/pagination.tsx +127 -0
  51. package/src/app/components/ui/popover.tsx +48 -0
  52. package/src/app/components/ui/progress.tsx +31 -0
  53. package/src/app/components/ui/radio-group.tsx +45 -0
  54. package/src/app/components/ui/resizable.tsx +56 -0
  55. package/src/app/components/ui/scroll-area.tsx +58 -0
  56. package/src/app/components/ui/select.tsx +189 -0
  57. package/src/app/components/ui/separator.tsx +28 -0
  58. package/src/app/components/ui/sheet.tsx +139 -0
  59. package/src/app/components/ui/sidebar.tsx +726 -0
  60. package/src/app/components/ui/skeleton.tsx +13 -0
  61. package/src/app/components/ui/slider.tsx +63 -0
  62. package/src/app/components/ui/sonner.tsx +25 -0
  63. package/src/app/components/ui/switch.tsx +31 -0
  64. package/src/app/components/ui/table.tsx +116 -0
  65. package/src/app/components/ui/tabs.tsx +66 -0
  66. package/src/app/components/ui/textarea.tsx +18 -0
  67. package/src/app/components/ui/toggle-group.tsx +73 -0
  68. package/src/app/components/ui/toggle.tsx +47 -0
  69. package/src/app/components/ui/tooltip.tsx +61 -0
  70. package/src/app/components/ui/use-mobile.ts +21 -0
  71. package/src/app/components/ui/utils.ts +6 -0
  72. package/src/app/pages/DesignSystem.tsx +189 -0
  73. package/src/app/pages/Team.tsx +168 -0
  74. package/src/app/routes.tsx +14 -0
  75. package/src/assets/6276cd19433d265f363bddc7f52f4937da9b1dd4.png +0 -0
  76. package/src/assets/9d7a018c9a6938d439d9059f82753d232ce63804.png +0 -0
  77. package/src/imports/Buttons-3-409.tsx +46 -0
  78. package/src/imports/Buttons-3-962.tsx +155 -0
  79. package/src/imports/ButtonsAndActions.tsx +139 -0
  80. package/src/imports/Dashboard.tsx +1914 -0
  81. package/src/imports/DesignSystem.tsx +6008 -0
  82. package/src/imports/Forms.tsx +1088 -0
  83. package/src/imports/Navigation-17-3259.tsx +564 -0
  84. package/src/imports/Navigation-18-957.tsx +873 -0
  85. package/src/imports/Wireframe.tsx +112 -0
  86. package/src/imports/svg-1ifosis1tx.ts +3 -0
  87. package/src/imports/svg-5spfd.tsx +1 -0
  88. package/src/imports/svg-6180by7m37.ts +3 -0
  89. package/src/imports/svg-guy0p.tsx +1 -0
  90. package/src/imports/svg-hm2n0.tsx +2 -0
  91. package/src/imports/svg-j8o95ccqq7.ts +26 -0
  92. package/src/imports/svg-liuy2nykz3.ts +10 -0
  93. package/src/imports/svg-pp9c3.tsx +1 -0
  94. package/src/imports/svg-pr0k9194w9.ts +33 -0
  95. package/src/imports/svg-umftvfphsk.ts +48 -0
  96. package/src/imports/svg-vbi95q76mb.ts +23 -0
  97. package/src/imports/svg-vxjpl.tsx +1 -0
  98. package/src/imports/svg-wl30wxxv53.ts +3 -0
  99. package/src/main.tsx +7 -0
  100. package/src/styles/fonts.css +1 -0
  101. package/src/styles/forms.css +181 -0
  102. package/src/styles/header.css +48 -0
  103. package/src/styles/index.css +7 -0
  104. package/src/styles/navlinks.css +112 -0
  105. package/src/styles/popover.css +48 -0
  106. package/src/styles/tailwind.css +4 -0
  107. package/src/styles/theme.css +312 -0
  108. package/vite.config.ts +38 -0
@@ -0,0 +1,112 @@
1
+ import svgPaths from "./svg-6180by7m37";
2
+ import { imgGroup } from "./svg-5spfd";
3
+
4
+ function Group() {
5
+ return (
6
+ <div className="absolute inset-0 mask-alpha mask-intersect mask-no-clip mask-no-repeat mask-position-[0px_0px] mask-size-[20px_20px]" data-name="Group" style={{ maskImage: `url('${imgGroup}')` }}>
7
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
8
+ <g id="Group">
9
+ <path clipRule="evenodd" d={svgPaths.p9731e40} fill="var(--fill-0, white)" fillRule="evenodd" id="intercom-message1" />
10
+ </g>
11
+ </svg>
12
+ </div>
13
+ );
14
+ }
15
+
16
+ function ClipPathGroup() {
17
+ return (
18
+ <div className="absolute contents inset-0" data-name="Clip path group">
19
+ <Group />
20
+ </div>
21
+ );
22
+ }
23
+
24
+ function IconIntercomMessage() {
25
+ return (
26
+ <div className="overflow-clip relative shrink-0 size-[20px]" data-name="icon-intercom-message">
27
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 32 32">
28
+ <g id="intercom-message" />
29
+ </svg>
30
+ <ClipPathGroup />
31
+ </div>
32
+ );
33
+ }
34
+
35
+ function IntercomButton() {
36
+ return (
37
+ <div className="absolute bg-[#21bef4] content-stretch flex gap-[10px] items-center justify-center p-[10px] right-[30px] rounded-[100px] shadow-[0px_4px_8px_0px_rgba(29,29,29,0.3)] size-[40px] top-[15px]" data-name="Intercom button">
38
+ <IconIntercomMessage />
39
+ </div>
40
+ );
41
+ }
42
+
43
+ function Actionbar() {
44
+ return (
45
+ <div className="absolute content-stretch flex gap-[10px] h-[70px] items-center left-[200px] pl-[50px] pr-[70px] top-[830px] w-[1080px]" data-name="Actionbar">
46
+ <IntercomButton />
47
+ </div>
48
+ );
49
+ }
50
+
51
+ function Frame() {
52
+ return (
53
+ <div className="absolute bg-[#bf9494] content-stretch flex h-[312px] items-center left-[6px] p-[10px] rounded-[20px] top-[173px] w-[271px]">
54
+ <p className="font-['Inter:Regular',sans-serif] font-normal h-[100px] leading-[normal] not-italic relative shrink-0 text-[12px] text-black w-[184px] whitespace-pre-wrap">Card with tester info</p>
55
+ </div>
56
+ );
57
+ }
58
+
59
+ function Frame4() {
60
+ return (
61
+ <div className="absolute bg-[#717171] content-stretch flex h-[312px] items-center left-[16px] p-[10px] rounded-[20px] top-[533px] w-[1161px]">
62
+ <p className="font-['Inter:Regular',sans-serif] font-normal h-[100px] leading-[normal] not-italic relative shrink-0 text-[12px] text-black w-[184px] whitespace-pre-wrap">Form for newsletter</p>
63
+ </div>
64
+ );
65
+ }
66
+
67
+ function Frame5() {
68
+ return (
69
+ <div className="absolute bg-[#717171] content-stretch flex h-[82px] items-center left-0 p-[10px] rounded-[20px] top-0 w-[1280px]">
70
+ <p className="font-['Inter:Regular',sans-serif] font-normal leading-[normal] not-italic relative shrink-0 text-[12px] text-black w-[184px] whitespace-pre-wrap">Header</p>
71
+ </div>
72
+ );
73
+ }
74
+
75
+ function Frame1() {
76
+ return (
77
+ <div className="absolute bg-[#bf9494] content-stretch flex h-[312px] items-center left-[303px] p-[10px] rounded-[20px] top-[173px] w-[271px]">
78
+ <p className="font-['Inter:Regular',sans-serif] font-normal h-[100px] leading-[normal] not-italic relative shrink-0 text-[12px] text-black w-[184px] whitespace-pre-wrap">Card with tester info</p>
79
+ </div>
80
+ );
81
+ }
82
+
83
+ function Frame2() {
84
+ return (
85
+ <div className="absolute bg-[#bf9494] content-stretch flex h-[312px] items-center left-[600px] p-[10px] rounded-[20px] top-[173px] w-[271px]">
86
+ <p className="font-['Inter:Regular',sans-serif] font-normal h-[100px] leading-[normal] not-italic relative shrink-0 text-[12px] text-black w-[184px] whitespace-pre-wrap">Card with tester info</p>
87
+ </div>
88
+ );
89
+ }
90
+
91
+ function Frame3() {
92
+ return (
93
+ <div className="absolute bg-[#bf9494] content-stretch flex h-[312px] items-center left-[897px] p-[10px] rounded-[20px] top-[173px] w-[271px]">
94
+ <p className="font-['Inter:Regular',sans-serif] font-normal h-[100px] leading-[normal] not-italic relative shrink-0 text-[12px] text-black w-[184px] whitespace-pre-wrap">Card with tester info</p>
95
+ </div>
96
+ );
97
+ }
98
+
99
+ export default function Wireframe() {
100
+ return (
101
+ <div className="bg-white relative size-full" data-name="Wireframe">
102
+ <Actionbar />
103
+ <Frame />
104
+ <Frame4 />
105
+ <Frame5 />
106
+ <Frame1 />
107
+ <Frame2 />
108
+ <Frame3 />
109
+ <p className="absolute font-['Inter:Regular',sans-serif] font-normal h-[29px] leading-[normal] left-[11px] not-italic text-[12px] text-black top-[135px] w-[867px] whitespace-pre-wrap">Section with tester info</p>
110
+ </div>
111
+ );
112
+ }
@@ -0,0 +1,3 @@
1
+ export default {
2
+ p2819d400: "M10 0C15.522 0 20 4.478 20 10C20 15.522 15.522 20 10 20C4.478 20 0 15.522 0 10C0 4.478 4.478 0 10 0ZM15.71 6.29395C15.319 5.90301 14.68 5.90301 14.29 6.29395L9 11.5859L6.70996 9.29395C6.31897 8.90301 5.68003 8.90301 5.29004 9.29395C4.90004 9.68395 4.90004 10.317 5.29004 10.707L8.29004 13.707C8.49003 13.902 8.74002 14 9 14C9.25998 14 9.50997 13.903 9.70996 13.707L15.71 7.70703C16.1 7.31603 16.1 6.68395 15.71 6.29395Z",
3
+ }
@@ -0,0 +1 @@
1
+ export const imgGroup = "data:image/svg+xml,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22_clip1%22%3E%0A%3Cpath%20id%3D%22Vector%22%20d%3D%22M20%200H0V20H20V0Z%22%20fill%3D%22var(--fill-0%2C%20black)%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A";
@@ -0,0 +1,3 @@
1
+ export default {
2
+ p9731e40: "M20 20L14 18H1.75C0.784 18 0 17.216 0 16.25V1.75C0 0.784 0.784 0 1.75 0H18.25C19.216 0 20 0.784 20 1.75V20ZM3.759 11.877C3.81 11.883 3.823 11.883 3.873 11.895C4.033 11.932 4.159 12.033 4.281 12.138C5.07 12.805 6.126 13.202 7.209 13.452C8.503 13.751 9.861 13.82 11.186 13.695C12.811 13.542 14.435 13.096 15.697 12.145C15.748 12.107 15.813 12.053 15.813 12.053C15.813 12.053 15.905 11.977 16.002 11.936C16.493 11.727 17.189 12.209 16.952 12.733C16.818 13.032 16.454 13.22 16.117 13.429C14.071 14.699 11.457 15.133 8.955 14.966C6.93 14.83 4.85 14.32 3.346 13.069C3.275 13.01 3.18 12.921 3.18 12.921C3.059 12.792 3.044 12.742 3.018 12.651C2.926 12.318 3.197 11.939 3.586 11.883C3.695 11.867 3.723 11.876 3.759 11.877Z",
3
+ }
@@ -0,0 +1 @@
1
+ export const imgLogoTestinator = "data:image/svg+xml,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20viewBox%3D%220%200%20148%2034%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22_clip1%22%3E%0A%3Cpath%20id%3D%22Vector%22%20d%3D%22M148%200H0V34H148V0Z%22%20fill%3D%22var(--fill-0%2C%20black)%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A";
@@ -0,0 +1,2 @@
1
+ export const imgGroup = "data:image/svg+xml,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20viewBox%3D%220%200%2060%2060%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22_clip1%22%3E%0A%3Cpath%20id%3D%22Vector%22%20d%3D%22M60%200H0V60H60V0Z%22%20fill%3D%22var(--fill-0%2C%20black)%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A";
2
+ export const imgLogoTestinator = "data:image/svg+xml,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20viewBox%3D%220%200%20148%2034%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22_clip1%22%3E%0A%3Cpath%20id%3D%22Vector%22%20d%3D%22M148%200H0V34H148V0Z%22%20fill%3D%22var(--fill-0%2C%20black)%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A";
@@ -0,0 +1,26 @@
1
+ export default {
2
+ p13555100: "M20 5V15L15 20H5L0 15V5L5 0H15L20 5ZM4.61523 3.21484L16.7344 15.4346L15.3848 16.7852L3.21484 4.61523L2 5.83008V14.1699L5.83008 18H14.1699L18 14.1699V5.83008L14.1699 2H5.83008L4.61523 3.21484Z",
3
+ p1507e900: "M59.3046 27.1179V23.0133H57.8374V22.1769H61.7662V23.0133H60.3024V27.1179H59.3046Z",
4
+ p1649b700: "M93.1711 17.4237H95.113V8.40433H98.6233V6.73493H89.6608V8.40433H93.1711V17.4237Z",
5
+ p166df900: "M88.1816 24.6776C88.1816 24.1744 88.2573 23.7519 88.4079 23.4102C88.5202 23.1586 88.6741 22.9334 88.8681 22.7336C89.0628 22.533 89.2755 22.3851 89.5077 22.2882C89.8156 22.1582 90.1703 22.0927 90.5735 22.0927C91.3015 22.0927 91.8842 22.3188 92.3214 22.7702C92.7594 23.2215 92.978 23.8497 92.978 24.6546C92.978 25.4519 92.7611 26.0758 92.3265 26.5263C91.8927 26.9768 91.3126 27.2021 90.5862 27.2021C89.8513 27.2021 89.267 26.9785 88.8332 26.5297C88.3985 26.0818 88.1816 25.4647 88.1816 24.6776ZM89.2108 24.6444C89.2108 25.2037 89.3401 25.6279 89.5987 25.9169C89.8573 26.205 90.1856 26.3495 90.5828 26.3495C90.9809 26.3495 91.3075 26.2067 91.5627 25.9194C91.8178 25.633 91.9454 25.2037 91.9454 24.6308C91.9454 24.0647 91.8212 23.6423 91.5729 23.3635C91.3245 23.0847 90.9945 22.9453 90.5828 22.9453C90.172 22.9453 89.8403 23.0864 89.5885 23.3686C89.3367 23.6508 89.2108 24.0758 89.2108 24.6444Z",
6
+ p185c8f80: "M11 0V9H20V11H11V20H9V11H0V9H9V0H11Z",
7
+ p1f8b5980: "M22.4186 14.9774C23.2156 17.0981 22.6942 19.4994 21.0891 21.0991C19.9689 22.227 18.4286 22.8407 16.8388 22.7914L1.30393 22.8152L1.30478 22.8161H0.996874C1.34306 23.7868 1.77855 24.7226 2.29825 25.6126L16.7036 25.5769L17.2539 25.5803C21.8674 25.4494 25.5904 21.621 25.5904 17.0089C25.5904 15.4729 25.1779 13.965 24.3953 12.6433L22.4186 14.9774ZM12.3784 20.6299C12.4022 20.6299 12.4226 20.6103 12.4226 20.5865C12.4226 20.5763 12.4184 20.5661 12.4124 20.5585C11.6206 19.541 11.1902 18.289 11.1902 16.9995C11.1902 13.8214 13.8074 11.2059 16.9877 11.2059C17.4393 11.2076 17.891 11.262 18.3299 11.3674L20.2811 9.06307C19.2366 8.62872 18.1155 8.40517 16.9843 8.40517C12.2704 8.40517 8.39262 12.2812 8.39262 16.9919C8.39262 18.249 8.66906 19.4909 9.20152 20.6299H12.3784ZM21.7466 10.248C22.5232 10.248 23.1543 10.8787 23.1543 11.6547C23.1543 12.4316 22.5232 13.0615 21.7466 13.0615C20.9692 13.0615 20.3389 12.4316 20.3389 11.6547C20.3389 10.8787 20.9692 10.248 21.7466 10.248Z",
8
+ p224ff200: "M54.1467 12.0644C54.1467 15.4228 56.5709 17.6039 59.3897 17.6039C61.3792 17.6039 62.4943 16.4606 62.4943 16.4606H62.524C62.524 16.4606 62.5096 16.6859 62.5096 16.9111V17.4237H64.1648V11.7941H60.7761V13.4635H62.4186V14.7139C62.4186 14.7139 61.3486 15.8291 59.7359 15.8291C57.7319 15.8291 56.149 14.322 56.149 12.0049C56.149 9.98618 57.43 8.32868 59.8269 8.32868C61.5297 8.32868 62.6746 9.35378 62.6746 9.35378L63.6383 7.90793C63.6383 7.90793 62.2833 6.55388 59.661 6.55388C56.4807 6.55388 54.1467 8.96193 54.1467 12.0644Z",
9
+ p269eee80: "M77.0884 27.1179V23.0133H75.6212V22.1769H79.5509V23.0133H78.087V27.1179H77.0884Z",
10
+ p288b2800: "M17.0115 0.000318846C7.73683 -0.0566312 0.0578391 7.52282 0 16.7912V17.2094C0.00425287 19.1134 0.336828 21.0021 0.983264 22.7922H10.6466L16.8388 22.7914C16.8899 22.7922 16.9417 22.7931 16.9928 22.7931C20.1722 22.7931 22.7877 20.1793 22.7877 17.0029C22.7877 17.002 22.7877 17.002 22.7877 17.0012C22.7869 16.3101 22.6619 15.6242 22.4186 14.9773L24.3953 12.6432C25.1779 13.965 25.5904 15.4729 25.5904 17.0088C25.5904 21.6209 21.8674 25.4493 17.2539 25.5802L16.7036 25.5768L2.28464 25.5896C5.34076 30.7933 10.9443 34.0003 16.9826 34.0003C26.2411 34.0003 33.892 26.4608 34.023 17.2094V16.7912C33.9651 7.52282 26.2862 -0.0566312 17.0115 0.000318846ZM18.3299 11.3674C17.891 11.262 17.4402 11.2076 16.9885 11.2059C13.8074 11.2059 11.1893 13.8213 11.1893 16.9995C11.1893 18.2889 11.6197 19.541 12.4124 20.5584C12.4184 20.5661 12.4226 20.5763 12.4226 20.5865C12.4226 20.6103 12.4022 20.6298 12.3784 20.6298H9.20152C8.66906 19.4908 8.39262 18.249 8.39262 16.9918C8.39262 12.2811 12.2704 8.40512 16.9843 8.40512C18.1155 8.40512 19.2366 8.62867 20.2811 9.06302L18.3299 11.3674ZM22.7418 12.65C22.4781 12.9135 22.1192 13.0614 21.7466 13.0614C20.9743 13.0614 20.3389 12.4265 20.3389 11.6547C20.3389 10.8829 20.9743 10.2479 21.7466 10.2479C22.1192 10.2479 22.4781 10.3967 22.7418 10.6602C23.0055 10.9237 23.1543 11.2815 23.1543 11.6547C23.1543 12.0278 23.0055 12.3857 22.7418 12.65Z",
11
+ p29a28100: "M67.8282 17.4237H74.4704V15.7543H69.7701V12.8762H73.3706V11.2068H69.7701V8.40433H74.2296V6.73493H67.8282V17.4237Z",
12
+ p2ef9e700: "M50.1873 27.1179V25.0388L48.3764 22.1769H49.5468L50.7104 24.1319L51.8502 22.1769H53.0002L51.1825 25.0456V27.1179H50.1873Z",
13
+ p30b87920: "M9.99995 0C12.6521 0 15.1959 1.05335 17.0712 2.92871C18.9466 4.80407 19.9999 7.34784 19.9999 10C19.9999 11.9778 19.4132 13.9112 18.3144 15.5557C17.2156 17.2001 15.6543 18.4824 13.8271 19.2393C11.9998 19.9961 9.98859 20.1935 8.04878 19.8076C6.10909 19.4217 4.32711 18.4697 2.92866 17.0713C1.53021 15.6728 0.578223 13.8909 0.192332 11.9512C-0.19352 10.0114 0.00381534 8.00011 0.760692 6.17285C1.51756 4.34567 2.79987 2.78434 4.44429 1.68555C6.08878 0.586734 8.02214 9.42658e-07 9.99995 0ZM14.997 5.99902C14.7316 5.9998 14.4773 6.10578 14.29 6.29395L8.99995 11.5859L6.70991 9.29395C6.61718 9.20077 6.507 9.1268 6.38569 9.07617C6.26443 9.02559 6.13426 8.99941 6.00288 8.99902C5.87139 8.9987 5.7407 9.02421 5.61909 9.07422C5.49764 9.12417 5.38704 9.19747 5.29389 9.29004C5.20066 9.38282 5.12578 9.49384 5.07514 9.61523C5.02462 9.73651 4.99832 9.86666 4.998 9.99805C4.99767 10.1296 5.02316 10.2602 5.07319 10.3818C5.12323 10.5034 5.19724 10.6138 5.28999 10.707L8.28999 13.707C8.47866 13.8946 8.7339 14 8.99995 14C9.266 14 9.52123 13.8946 9.70991 13.707L15.7099 7.70703C15.8973 7.51873 16.0026 7.26368 16.0019 6.99805C16.0012 6.7324 15.8943 6.47741 15.706 6.29004C15.5177 6.10295 15.2625 5.99837 14.997 5.99902Z",
14
+ p30bab400: "M9.99995 0C12.6521 0 15.1959 1.05335 17.0712 2.92871C18.9466 4.80407 19.9999 7.34784 19.9999 10C19.9999 11.9778 19.4132 13.9112 18.3144 15.5557C17.2156 17.2001 15.6543 18.4824 13.8271 19.2393C11.9998 19.9961 9.98859 20.1935 8.04878 19.8076C6.10909 19.4217 4.32711 18.4697 2.92866 17.0713C1.53021 15.6728 0.578223 13.8909 0.192332 11.9512C-0.19352 10.0114 0.00381534 8.00011 0.760692 6.17285C1.51756 4.34567 2.79987 2.78434 4.44429 1.68555C6.08878 0.586734 8.02214 9.42658e-07 9.99995 0ZM12.9999 6C12.7348 6 12.4804 6.1055 12.2929 6.29297L9.99995 8.58594L7.70698 6.29297C7.51845 6.11088 7.26594 6.0105 7.00386 6.0127C6.74166 6.01497 6.49102 6.12026 6.30561 6.30566C6.12021 6.49107 6.01492 6.74171 6.01264 7.00391C6.01045 7.26599 6.11083 7.5185 6.29292 7.70703L8.58589 10L6.29292 12.293C6.19754 12.3851 6.12169 12.4954 6.06929 12.6172C6.01688 12.7392 5.98841 12.8711 5.98725 13.0039C5.98614 13.1365 6.01225 13.2679 6.06245 13.3906C6.11273 13.5135 6.18633 13.6258 6.28022 13.7197C6.37412 13.8136 6.48643 13.8872 6.60932 13.9375C6.73208 13.9877 6.86343 14.0138 6.99604 14.0127C7.12882 14.0115 7.26076 13.9831 7.38276 13.9307C7.50457 13.8783 7.61486 13.8024 7.70698 13.707L9.99995 11.4141L12.2929 13.707C12.4814 13.8891 12.734 13.9895 12.996 13.9873C13.2582 13.985 13.5089 13.8797 13.6943 13.6943C13.8797 13.5089 13.985 13.2583 13.9873 12.9961C13.9895 12.734 13.8891 12.4815 13.707 12.293L11.414 10L13.707 7.70703C13.8945 7.5195 13.9999 7.26516 13.9999 7C13.9999 6.73484 13.8945 6.4805 13.707 6.29297C13.5195 6.1055 13.2651 6 12.9999 6Z",
15
+ p32f5f900: "M85.9829 22.1769H84.9843V27.1179H85.9829V22.1769Z",
16
+ p38feaa80: "M77.9986 17.4237H79.9404V11.2663C79.9404 10.6339 79.8349 9.61048 79.8349 9.61048H79.8647C79.8647 9.61048 80.347 10.6492 80.7544 11.2663L84.8091 17.4237H86.7357V6.73493H84.8091V12.9068C84.8091 13.5392 84.9146 14.5634 84.9146 14.5634H84.884C84.884 14.5634 84.4017 13.5247 83.9951 12.9068L79.9404 6.73493H77.9986V17.4237Z",
17
+ p390b0800: "M4.11471 1.91529C6.13607 0.443827 8.63532 -0.217051 11.1198 0.0629196C13.6043 0.34289 15.8938 1.5434 17.537 3.42781C19.1802 5.31222 20.0579 7.74381 19.9971 10.2433C19.9362 12.7428 18.9413 15.1288 17.2084 16.9311C15.4755 18.7333 13.1303 19.821 10.6352 19.9798C8.13999 20.1386 5.67584 19.357 3.72844 17.7889C1.78104 16.2209 0.491671 13.9803 0.114482 11.5086C-0.262707 9.03704 0.299652 6.5138 1.69071 4.43629L3.13371 5.88429C2.11895 7.57195 1.7623 9.5746 2.13206 11.5088C2.50181 13.4431 3.57198 15.1729 5.13768 16.3673C6.70338 17.5617 8.6546 18.1366 10.6178 17.982C12.581 17.8274 14.4181 16.9542 15.7776 15.5295C17.1371 14.1048 17.9233 12.2287 17.9857 10.2604C18.0482 8.29219 17.3825 6.37004 16.1161 4.862C14.8497 3.35397 13.0716 2.36601 11.1222 2.08726C9.17273 1.80852 7.18899 2.25858 5.55071 3.35129L4.11471 1.91529Z",
18
+ p3af52100: "M50.047 17.4237H52.0509L48.2846 6.73493H46.2508L42.4845 17.4237H44.4885L45.3926 14.6833H49.1437L50.047 17.4237ZM47.2902 8.58453C47.2902 8.58453 47.5165 9.63938 47.7121 10.242L48.6614 13.104H45.8596L46.808 10.242C47.0189 9.63938 47.2605 8.58453 47.2605 8.58453H47.2902Z",
19
+ p3e1a5280: "M145.347 17.4237H147.351L143.585 6.73493H141.551L137.785 17.4237H139.789L140.693 14.6833H144.444L145.347 17.4237ZM142.59 8.58453C142.59 8.58453 142.817 9.63938 143.012 10.242L143.961 13.104H141.16L142.109 10.242C142.32 9.63938 142.561 8.58453 142.561 8.58453H142.59Z",
20
+ p5b04f70: "M103.49 6.73493H101.548V17.4237H103.49V6.73493Z",
21
+ p63b5500: "M63.8611 27.1179V22.1769H67.5271V23.0133H64.8589V24.1081H67.3417V24.9411H64.8589V26.2858H67.6215V27.1179H63.8611Z",
22
+ p73e5c00: "M69.6655 25.5106L70.6368 25.4162C70.6955 25.7418 70.8137 25.9815 70.9924 26.1336C71.171 26.2866 71.4126 26.3631 71.7162 26.3631C72.0377 26.3631 72.2793 26.2951 72.4426 26.1591C72.6059 26.0231 72.6876 25.8642 72.6876 25.6823C72.6876 25.565 72.6527 25.4664 72.5846 25.3839C72.5157 25.3023 72.3958 25.2309 72.2249 25.1697C72.1083 25.1298 71.8421 25.0575 71.4262 24.9538C70.8912 24.8221 70.5152 24.6589 70.2992 24.4659C69.9955 24.1939 69.8441 23.8624 69.8441 23.4714C69.8441 23.2198 69.9155 22.9844 70.0584 22.7651C70.2013 22.5458 70.4072 22.3792 70.6751 22.2644C70.9439 22.1505 71.2688 22.0927 71.6482 22.0927C72.2691 22.0927 72.7361 22.2287 73.0499 22.5007C73.3638 22.7727 73.5279 23.1357 73.5441 23.5896L72.5455 23.6329C72.503 23.3788 72.4111 23.1969 72.2708 23.0855C72.1304 22.9742 71.9195 22.9189 71.638 22.9189C71.3479 22.9189 71.1208 22.9784 70.9566 23.0974C70.8512 23.1739 70.7984 23.2759 70.7984 23.4043C70.7984 23.5207 70.8478 23.621 70.9473 23.7035C71.0732 23.8097 71.3785 23.9194 71.8642 24.0341C72.3499 24.1489 72.7088 24.267 72.9419 24.3894C73.1749 24.5118 73.357 24.6793 73.488 24.8918C73.6198 25.1043 73.6853 25.3669 73.6853 25.6789C73.6853 25.9619 73.607 26.2271 73.4497 26.4745C73.2923 26.7218 73.0695 26.9054 72.782 27.0253C72.4936 27.1451 72.1355 27.2055 71.706 27.2055C71.0808 27.2055 70.6011 27.061 70.266 26.7728C69.9309 26.4838 69.731 26.0631 69.6655 25.5106Z",
23
+ p94ead80: "M124.436 12.0185C124.436 15.1363 126.815 17.6039 129.949 17.6039C131.2 17.6039 132.331 17.2282 133.22 16.5516L134.41 17.7246L135.523 16.4912L134.319 15.4075C135.026 14.4742 135.493 13.3139 135.493 12.0185C135.493 8.94663 133.114 6.55388 129.949 6.55388C126.815 6.55388 124.436 8.94663 124.436 12.0185ZM126.438 12.0185C126.438 9.89523 127.99 8.32868 129.949 8.32868C131.939 8.32868 133.491 9.89523 133.491 12.0185C133.491 12.7716 133.265 13.495 132.903 14.0823L131.743 12.9229L130.628 14.1427L131.818 15.2723C131.306 15.6183 130.597 15.8291 129.949 15.8291C127.99 15.8291 126.438 14.203 126.438 12.0185Z",
24
+ pafbcd00: "M106.973 12.0338C106.973 15.1814 109.231 17.6039 112.5 17.6039C115.227 17.6039 116.704 15.8741 116.704 15.8741L115.68 14.4742C115.68 14.4742 114.43 15.8291 112.576 15.8291C110.346 15.8291 108.975 14.0373 108.975 12.0041C108.975 10.0159 110.301 8.32868 112.561 8.32868C114.264 8.32868 115.484 9.45833 115.484 9.45833L116.418 8.01333C116.418 8.01333 115.077 6.55388 112.471 6.55388C109.321 6.55388 106.973 8.93133 106.973 12.0338Z",
25
+ pd3f4900: "M42.4539 22.1769H44.4306C44.8219 22.1769 45.1136 22.193 45.3059 22.2262C45.4981 22.2585 45.6699 22.3265 45.8213 22.4302C45.9736 22.533 46.0994 22.6707 46.2007 22.8424C46.3019 23.015 46.3529 23.2071 46.3529 23.4204C46.3529 23.6525 46.29 23.8641 46.1658 24.0579C46.0408 24.2509 45.8715 24.3962 45.658 24.4923C45.9591 24.5798 46.1905 24.7294 46.3529 24.9411C46.5145 25.1519 46.5953 25.4001 46.5953 25.6857C46.5953 25.9101 46.5434 26.1285 46.4388 26.341C46.3342 26.5535 46.1913 26.7227 46.0101 26.8502C45.8298 26.9768 45.6061 27.055 45.3407 27.0839C45.1749 27.1026 44.7734 27.1137 44.1372 27.1179H42.4539V22.1769ZM43.4525 22.9997V24.1421H44.1065C44.4953 24.1421 44.7368 24.1361 44.8321 24.1251C45.0022 24.1047 45.1366 24.046 45.2344 23.9483C45.3322 23.8505 45.3816 23.7222 45.3816 23.5624C45.3816 23.4094 45.339 23.2853 45.2548 23.1901C45.1706 23.094 45.0456 23.0362 44.8789 23.0167C44.7802 23.0048 44.4953 22.9997 44.0257 22.9997H43.4525ZM43.4525 24.964V26.2858H44.3762C44.736 26.2858 44.9639 26.2756 45.0609 26.2552C45.2097 26.228 45.3305 26.1625 45.4232 26.058C45.5168 25.9534 45.5636 25.814 45.5636 25.6381C45.5636 25.4902 45.5279 25.3644 45.4556 25.2607C45.3833 25.1578 45.2795 25.0822 45.1434 25.0354C45.0073 24.9878 44.7122 24.964 44.258 24.964H43.4525Z",
26
+ }
@@ -0,0 +1,10 @@
1
+ export default {
2
+ p187e61c0: "M57 31V0H17V31H30V40H49V38H44V31H57ZM19 29V2H55V29H19Z",
3
+ p2e3d1e00: "M1.0711 7.01322C1.32833 7.02411 1.57141 7.13422 1.74981 7.31986L4.53008 10.4996L7.29962 7.32963C7.47811 7.1438 7.72186 7.03477 7.9793 7.02397C8.23665 7.01317 8.48805 7.10191 8.68145 7.27201C8.87483 7.44218 8.99532 7.68042 9.01739 7.93705C9.0394 8.19378 8.96125 8.44927 8.79962 8.64994L4.53008 13.5298L0.249811 8.64018C0.0881882 8.43951 0.0100325 8.184 0.0320379 7.92729C0.0540448 7.67066 0.17467 7.43246 0.367975 7.26225C0.561412 7.09202 0.813657 7.00242 1.0711 7.01322Z",
4
+ p3075cdf0: "M0.0139771 10.7132C1.34098 7.63322 5.09733 5.86486 8.24933 6.93686C8.70923 7.09385 9.14621 7.31053 9.54913 7.57748C9.40818 7.58548 8.97719 7.75871 8.80206 7.85873C7.00906 8.65673 5.50022 10.0534 5.08722 11.9124C5.00128 12.3013 4.95914 12.7021 4.96613 13.1009C5.03113 16.4369 7.57819 18.8148 10.6302 19.9818C10.4233 19.9948 10.2151 20.0013 10.0042 20.0003C5.95321 19.8363 2.92751 18.0039 1.03351 14.3939C0.426638 13.238 0.085995 11.996 0.0139771 10.7132ZM7.57745 9.86654C7.55345 11.5815 8.30301 12.9413 9.59601 14.0013C11.243 15.3532 13.159 15.8449 15.2679 15.6439C16.1699 15.5579 17.0261 15.3161 17.8411 14.9251C17.8671 14.9132 17.8943 14.902 17.9202 14.89C18.1102 14.8 18.304 14.7184 18.472 14.9183C18.6377 15.1172 18.5234 15.2972 18.4105 15.471C18.1155 15.924 17.7843 16.3514 17.4163 16.7454C16.1294 18.1233 14.6153 19.0763 12.8694 19.5863C9.99861 19.0083 7.17352 17.2541 6.24835 14.6224C5.60135 12.7794 6.30945 11.0379 7.57745 9.85092V9.86654ZM9.50616 0.0149808C12.0011 -0.10198 14.3088 0.475311 16.3587 1.92123C18.1997 3.2192 19.4446 4.959 19.9017 7.18393C20.2226 8.74681 20.008 10.2408 18.9642 11.5257C18.0372 12.6657 16.8287 13.2706 15.3587 13.3236C14.4098 13.3576 13.4715 13.2837 12.5726 12.9417C12.3447 12.8548 12.1325 12.742 11.9437 12.5921C11.5908 12.3142 11.5524 11.9967 11.8323 11.6488C12.2554 11.1202 13.0926 9.00282 11.2933 7.3392C10.3043 6.57223 8.98708 5.51792 5.99835 5.60482C3.60141 5.68082 1.48443 6.86223 0.120422 8.59115C0.562418 5.49318 2.18178 3.0638 4.98273 1.3558C6.36573 0.512801 7.88616 0.0899808 9.50616 0.0149808Z",
5
+ p3215c000: "M29 14.464V9.24L35.4 8.383V14.464H29ZM36.464 8.224L45 7V14.464H36.464V8.224ZM45 15.537V23L36.464 21.777V15.537H45ZM35.4 21.664L29 20.817V15.537H35.4V21.664Z",
6
+ p347a1500: "M19.2998 6.2998C19.7998 7.4998 20 8.7 20 10C20 15.5 15.5996 19.9 10.0996 20L14.2002 12.9004C14.8002 12.1004 15.0996 11.1 15.0996 10C15.0996 8.6 14.4996 7.2998 13.5996 6.2998H19.2998ZM5.40039 12.2002C6.20046 13.9 8.00012 15.0996 10 15.0996C10.5 15.0996 10.9004 15.1004 11.4004 14.9004L8.5 19.9004C3.7 19.2004 0 15 0 10C0 8.2 0.499805 6.49961 1.2998 5.09961L5.40039 12.2002ZM10 6.40039C12 6.40039 13.5996 8 13.5996 10C13.5996 12 12 13.5996 10 13.5996C8 13.5996 6.40039 12 6.40039 10C6.40039 8 8 6.40039 10 6.40039ZM10 0C13.7 0 16.8996 2.00039 18.5996 4.90039H10C7.6 4.90039 5.6 6.5002 5 8.7002L2.09961 3.7002C3.99961 1.5002 6.8 0 10 0Z",
7
+ p3716d780: "M0 0V40H15V0H0ZM13 38H2V2H13V38Z",
8
+ p5758100: "M9.55176 0C12.8667 0 15.7564 1.82162 17.2725 4.51953C18.0244 5.96646 18.4521 7.62584 18.4521 9.38574C18.4521 9.42668 18.4522 9.46787 18.4512 9.50781V11.5957H5.90137C5.95737 16.7707 13.5204 16.5964 16.7764 14.3154V18.5273C14.8704 19.6713 10.5262 20.6958 7.20117 19.3828C4.39317 18.2558 2.42717 15.5987 2.32617 12.4697C2.23227 8.70788 4.20141 6.27008 7.19434 4.87012C6.47343 5.743 5.97947 6.82776 5.81641 8.01758L12.9004 8.05078C12.904 8.01324 13.2929 3.81445 8.8877 3.81445C5.17292 3.99055 1.94833 5.94215 0.0263672 8.83496L0.000976562 8.87305C0.589254 4.24959 3.75257 0.0579488 9.37598 0.00195312C9.42791 0.000954427 9.48984 2.59957e-06 9.55176 0Z",
9
+ paa65200: "M10 5.14258L7.14258 8L10 10.8574L7.85742 13.001L4.99902 10.1426L2.14355 13L0 10.8564L2.85645 8L0 5.14355L2.14355 3.00098L4.99902 5.85645L7.85742 2.99902L10 5.14258Z",
10
+ }
@@ -0,0 +1 @@
1
+ export const imgLogoTestinator = "data:image/svg+xml,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20viewBox%3D%220%200%20148%2034%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22_clip1%22%3E%0A%3Cpath%20id%3D%22Vector%22%20d%3D%22M148%200H0V34H148V0Z%22%20fill%3D%22var(--fill-0%2C%20black)%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A";
@@ -0,0 +1,33 @@
1
+ export default {
2
+ p13555100: "M20 5V15L15 20H5L0 15V5L5 0H15L20 5ZM4.61523 3.21484L16.7344 15.4346L15.3848 16.7852L3.21484 4.61523L2 5.83008V14.1699L5.83008 18H14.1699L18 14.1699V5.83008L14.1699 2H5.83008L4.61523 3.21484Z",
3
+ p1507e900: "M59.3046 27.1179V23.0133H57.8374V22.1769H61.7662V23.0133H60.3024V27.1179H59.3046Z",
4
+ p1649b700: "M93.1711 17.4237H95.113V8.40433H98.6233V6.73493H89.6608V8.40433H93.1711V17.4237Z",
5
+ p166df900: "M88.1816 24.6776C88.1816 24.1744 88.2573 23.7519 88.4079 23.4102C88.5202 23.1586 88.6741 22.9334 88.8681 22.7336C89.0628 22.533 89.2755 22.3851 89.5077 22.2882C89.8156 22.1582 90.1703 22.0927 90.5735 22.0927C91.3015 22.0927 91.8842 22.3188 92.3214 22.7702C92.7594 23.2215 92.978 23.8497 92.978 24.6546C92.978 25.4519 92.7611 26.0758 92.3265 26.5263C91.8927 26.9768 91.3126 27.2021 90.5862 27.2021C89.8513 27.2021 89.267 26.9785 88.8332 26.5297C88.3985 26.0818 88.1816 25.4647 88.1816 24.6776ZM89.2108 24.6444C89.2108 25.2037 89.3401 25.6279 89.5987 25.9169C89.8573 26.205 90.1856 26.3495 90.5828 26.3495C90.9809 26.3495 91.3075 26.2067 91.5627 25.9194C91.8178 25.633 91.9454 25.2037 91.9454 24.6308C91.9454 24.0647 91.8212 23.6423 91.5729 23.3635C91.3245 23.0847 90.9945 22.9453 90.5828 22.9453C90.172 22.9453 89.8403 23.0864 89.5885 23.3686C89.3367 23.6508 89.2108 24.0758 89.2108 24.6444Z",
6
+ p185c8f80: "M11 0V9H20V11H11V20H9V11H0V9H9V0H11Z",
7
+ p1bd5e640: "M0.0505828 102.583L118.835 90.5043L237.045 101.583L354.624 91.5043L472.261 0.583123L590.051 56.3565H708.051",
8
+ p1c7818a0: "M8.00016 0C10.1219 0 12.1571 0.842483 13.6574 2.34277C15.1577 3.84306 16.0002 5.87827 16.0002 8C16.0002 9.58225 15.5306 11.1287 14.6515 12.4443C13.7725 13.7599 12.5234 14.7851 11.0617 15.3906C9.59995 15.9961 7.99138 16.1553 6.43961 15.8467C4.88776 15.538 3.46175 14.776 2.34293 13.6572C1.22411 12.5384 0.462158 11.1124 0.153476 9.56055C-0.15514 8.00877 0.00406184 6.40021 0.609531 4.93848C1.21504 3.47676 2.2403 2.22764 3.55582 1.34863C4.87141 0.469582 6.41791 7.77692e-07 8.00016 0ZM11.9982 4.79883C11.7857 4.79935 11.5817 4.88451 11.4318 5.03516L7.20035 9.26855L5.36832 7.43555C5.2941 7.36096 5.20567 7.30125 5.10855 7.26074C5.01147 7.22026 4.9071 7.19948 4.80191 7.19922C4.69676 7.19899 4.59252 7.21977 4.49527 7.25977C4.39804 7.29979 4.30907 7.35845 4.23453 7.43262C4.16009 7.50677 4.10115 7.59541 4.0607 7.69238C4.02034 7.78928 3.99949 7.89308 3.99918 7.99805C3.99892 8.10327 4.01872 8.20835 4.05875 8.30566C4.09878 8.40288 4.15842 8.49091 4.23258 8.56543L6.63199 10.9658C6.78293 11.1159 6.98751 11.2002 7.20035 11.2002C7.41298 11.2001 7.61687 11.1156 7.76773 10.9658L12.5685 6.16602C12.7184 6.01542 12.8024 5.81107 12.8019 5.59863C12.8014 5.38613 12.7162 5.18212 12.5656 5.03223C12.4149 4.88233 12.2107 4.79831 11.9982 4.79883Z",
9
+ p1f8b5980: "M22.4186 14.9774C23.2156 17.0981 22.6942 19.4994 21.0891 21.0991C19.9689 22.227 18.4286 22.8407 16.8388 22.7914L1.30393 22.8152L1.30478 22.8161H0.996874C1.34306 23.7868 1.77855 24.7226 2.29825 25.6126L16.7036 25.5769L17.2539 25.5803C21.8674 25.4494 25.5904 21.621 25.5904 17.0089C25.5904 15.4729 25.1779 13.965 24.3953 12.6433L22.4186 14.9774ZM12.3784 20.6299C12.4022 20.6299 12.4226 20.6103 12.4226 20.5865C12.4226 20.5763 12.4184 20.5661 12.4124 20.5585C11.6206 19.541 11.1902 18.289 11.1902 16.9995C11.1902 13.8214 13.8074 11.2059 16.9877 11.2059C17.4393 11.2076 17.891 11.262 18.3299 11.3674L20.2811 9.06307C19.2366 8.62872 18.1155 8.40517 16.9843 8.40517C12.2704 8.40517 8.39262 12.2812 8.39262 16.9919C8.39262 18.249 8.66906 19.4909 9.20152 20.6299H12.3784ZM21.7466 10.248C22.5232 10.248 23.1543 10.8787 23.1543 11.6547C23.1543 12.4316 22.5232 13.0615 21.7466 13.0615C20.9692 13.0615 20.3389 12.4316 20.3389 11.6547C20.3389 10.8787 20.9692 10.248 21.7466 10.248Z",
10
+ p224ff200: "M54.1467 12.0644C54.1467 15.4228 56.5709 17.6039 59.3897 17.6039C61.3792 17.6039 62.4943 16.4606 62.4943 16.4606H62.524C62.524 16.4606 62.5096 16.6859 62.5096 16.9111V17.4237H64.1648V11.7941H60.7761V13.4635H62.4186V14.7139C62.4186 14.7139 61.3486 15.8291 59.7359 15.8291C57.7319 15.8291 56.149 14.322 56.149 12.0049C56.149 9.98618 57.43 8.32868 59.8269 8.32868C61.5297 8.32868 62.6746 9.35378 62.6746 9.35378L63.6383 7.90793C63.6383 7.90793 62.2833 6.55388 59.661 6.55388C56.4807 6.55388 54.1467 8.96193 54.1467 12.0644Z",
11
+ p2455100: "M30 0C30.2652 0 30.5195 0.105433 30.707 0.292969C30.8946 0.480505 31 0.734784 31 1V29H59C59.2652 29 59.5195 29.1054 59.707 29.293C59.8946 29.4805 60 29.7348 60 30C60 30.2652 59.8946 30.5195 59.707 30.707C59.5195 30.8946 59.2652 31 59 31H31V59C31 59.2652 30.8946 59.5195 30.707 59.707C30.5195 59.8946 30.2652 60 30 60C29.7348 60 29.4805 59.8946 29.293 59.707C29.1054 59.5195 29 59.2652 29 59V31H1C0.734784 31 0.480505 30.8946 0.292969 30.707C0.105433 30.5195 0 30.2652 0 30C0 29.7348 0.105433 29.4805 0.292969 29.293C0.480505 29.1054 0.734784 29 1 29H29V1C29 0.734784 29.1054 0.480505 29.293 0.292969C29.4805 0.105433 29.7348 0 30 0Z",
12
+ p269eee80: "M77.0884 27.1179V23.0133H75.6212V22.1769H79.5509V23.0133H78.087V27.1179H77.0884Z",
13
+ p288b2800: "M17.0115 0.000318846C7.73683 -0.0566312 0.0578391 7.52282 0 16.7912V17.2094C0.00425287 19.1134 0.336828 21.0021 0.983264 22.7922H10.6466L16.8388 22.7914C16.8899 22.7922 16.9417 22.7931 16.9928 22.7931C20.1722 22.7931 22.7877 20.1793 22.7877 17.0029C22.7877 17.002 22.7877 17.002 22.7877 17.0012C22.7869 16.3101 22.6619 15.6242 22.4186 14.9773L24.3953 12.6432C25.1779 13.965 25.5904 15.4729 25.5904 17.0088C25.5904 21.6209 21.8674 25.4493 17.2539 25.5802L16.7036 25.5768L2.28464 25.5896C5.34076 30.7933 10.9443 34.0003 16.9826 34.0003C26.2411 34.0003 33.892 26.4608 34.023 17.2094V16.7912C33.9651 7.52282 26.2862 -0.0566312 17.0115 0.000318846ZM18.3299 11.3674C17.891 11.262 17.4402 11.2076 16.9885 11.2059C13.8074 11.2059 11.1893 13.8213 11.1893 16.9995C11.1893 18.2889 11.6197 19.541 12.4124 20.5584C12.4184 20.5661 12.4226 20.5763 12.4226 20.5865C12.4226 20.6103 12.4022 20.6298 12.3784 20.6298H9.20152C8.66906 19.4908 8.39262 18.249 8.39262 16.9918C8.39262 12.2811 12.2704 8.40512 16.9843 8.40512C18.1155 8.40512 19.2366 8.62867 20.2811 9.06302L18.3299 11.3674ZM22.7418 12.65C22.4781 12.9135 22.1192 13.0614 21.7466 13.0614C20.9743 13.0614 20.3389 12.4265 20.3389 11.6547C20.3389 10.8829 20.9743 10.2479 21.7466 10.2479C22.1192 10.2479 22.4781 10.3967 22.7418 10.6602C23.0055 10.9237 23.1543 11.2815 23.1543 11.6547C23.1543 12.0278 23.0055 12.3857 22.7418 12.65Z",
14
+ p29a28100: "M67.8282 17.4237H74.4704V15.7543H69.7701V12.8762H73.3706V11.2068H69.7701V8.40433H74.2296V6.73493H67.8282V17.4237Z",
15
+ p2ef9e700: "M50.1873 27.1179V25.0388L48.3764 22.1769H49.5468L50.7104 24.1319L51.8502 22.1769H53.0002L51.1825 25.0456V27.1179H50.1873Z",
16
+ p30b87920: "M9.99995 0C12.6521 0 15.1959 1.05335 17.0712 2.92871C18.9466 4.80407 19.9999 7.34784 19.9999 10C19.9999 11.9778 19.4132 13.9112 18.3144 15.5557C17.2156 17.2001 15.6543 18.4824 13.8271 19.2393C11.9998 19.9961 9.98859 20.1935 8.04878 19.8076C6.10909 19.4217 4.32711 18.4697 2.92866 17.0713C1.53021 15.6728 0.578223 13.8909 0.192332 11.9512C-0.19352 10.0114 0.00381534 8.00011 0.760692 6.17285C1.51756 4.34567 2.79987 2.78434 4.44429 1.68555C6.08878 0.586734 8.02214 9.42658e-07 9.99995 0ZM14.997 5.99902C14.7316 5.9998 14.4773 6.10578 14.29 6.29395L8.99995 11.5859L6.70991 9.29395C6.61718 9.20077 6.507 9.1268 6.38569 9.07617C6.26443 9.02559 6.13426 8.99941 6.00288 8.99902C5.87139 8.9987 5.7407 9.02421 5.61909 9.07422C5.49764 9.12417 5.38704 9.19747 5.29389 9.29004C5.20066 9.38282 5.12578 9.49384 5.07514 9.61523C5.02462 9.73651 4.99832 9.86666 4.998 9.99805C4.99767 10.1296 5.02316 10.2602 5.07319 10.3818C5.12323 10.5034 5.19724 10.6138 5.28999 10.707L8.28999 13.707C8.47866 13.8946 8.7339 14 8.99995 14C9.266 14 9.52123 13.8946 9.70991 13.707L15.7099 7.70703C15.8973 7.51873 16.0026 7.26368 16.0019 6.99805C16.0012 6.7324 15.8943 6.47741 15.706 6.29004C15.5177 6.10295 15.2625 5.99837 14.997 5.99902Z",
17
+ p30bab400: "M9.99995 0C12.6521 0 15.1959 1.05335 17.0712 2.92871C18.9466 4.80407 19.9999 7.34784 19.9999 10C19.9999 11.9778 19.4132 13.9112 18.3144 15.5557C17.2156 17.2001 15.6543 18.4824 13.8271 19.2393C11.9998 19.9961 9.98859 20.1935 8.04878 19.8076C6.10909 19.4217 4.32711 18.4697 2.92866 17.0713C1.53021 15.6728 0.578223 13.8909 0.192332 11.9512C-0.19352 10.0114 0.00381534 8.00011 0.760692 6.17285C1.51756 4.34567 2.79987 2.78434 4.44429 1.68555C6.08878 0.586734 8.02214 9.42658e-07 9.99995 0ZM12.9999 6C12.7348 6 12.4804 6.1055 12.2929 6.29297L9.99995 8.58594L7.70698 6.29297C7.51845 6.11088 7.26594 6.0105 7.00386 6.0127C6.74166 6.01497 6.49102 6.12026 6.30561 6.30566C6.12021 6.49107 6.01492 6.74171 6.01264 7.00391C6.01045 7.26599 6.11083 7.5185 6.29292 7.70703L8.58589 10L6.29292 12.293C6.19754 12.3851 6.12169 12.4954 6.06929 12.6172C6.01688 12.7392 5.98841 12.8711 5.98725 13.0039C5.98614 13.1365 6.01225 13.2679 6.06245 13.3906C6.11273 13.5135 6.18633 13.6258 6.28022 13.7197C6.37412 13.8136 6.48643 13.8872 6.60932 13.9375C6.73208 13.9877 6.86343 14.0138 6.99604 14.0127C7.12882 14.0115 7.26076 13.9831 7.38276 13.9307C7.50457 13.8783 7.61486 13.8024 7.70698 13.707L9.99995 11.4141L12.2929 13.707C12.4814 13.8891 12.734 13.9895 12.996 13.9873C13.2582 13.985 13.5089 13.8797 13.6943 13.6943C13.8797 13.5089 13.985 13.2583 13.9873 12.9961C13.9895 12.734 13.8891 12.4815 13.707 12.293L11.414 10L13.707 7.70703C13.8945 7.5195 13.9999 7.26516 13.9999 7C13.9999 6.73484 13.8945 6.4805 13.707 6.29297C13.5195 6.1055 13.2651 6 12.9999 6Z",
18
+ p32f5f900: "M85.9829 22.1769H84.9843V27.1179H85.9829V22.1769Z",
19
+ p35553200: "M0.0460244 49.1562L119.04 38.1562L236.256 85.1562L355.04 0.656221L472.467 121.656L590.256 39.1562H708.046",
20
+ p35ef7800: "M8.00016 0C10.1219 0 12.1571 0.842483 13.6574 2.34277C15.1577 3.84306 16.0002 5.87827 16.0002 8C16.0002 9.58225 15.5306 11.1287 14.6515 12.4443C13.7725 13.7599 12.5234 14.7851 11.0617 15.3906C9.59995 15.9961 7.99138 16.1553 6.43961 15.8467C4.88776 15.538 3.46175 14.776 2.34293 13.6572C1.22411 12.5384 0.462158 11.1124 0.153477 9.56055C-0.15514 8.00877 0.00406197 6.40021 0.609531 4.93848C1.21504 3.47676 2.2403 2.22764 3.55582 1.34863C4.87141 0.469582 6.41791 3.06364e-07 8.00016 0ZM10.4005 4.7998C10.1884 4.7998 9.98416 4.8842 9.83414 5.03418L8.00016 6.86914L6.16617 5.03418C6.01529 4.88845 5.81245 4.80775 5.6027 4.80957C5.39306 4.81148 5.19235 4.8957 5.0441 5.04395C4.89586 5.19219 4.81164 5.3929 4.80973 5.60254C4.8079 5.8123 4.88861 6.01513 5.03434 6.16602L6.8693 8L5.03434 9.83398C4.95803 9.90768 4.89755 9.99631 4.85563 10.0938C4.8137 10.1914 4.79112 10.2971 4.7902 10.4033C4.78933 10.5094 4.8096 10.6147 4.84977 10.7129C4.88999 10.8112 4.94947 10.9005 5.02457 10.9756C5.09967 11.0507 5.18897 11.1102 5.28727 11.1504C5.38545 11.1906 5.49076 11.2108 5.59684 11.21C5.70306 11.209 5.8088 11.1865 5.90641 11.1445C6.00385 11.1026 6.09248 11.0421 6.16617 10.9658L8.00016 9.13086L9.83414 10.9658C9.98502 11.1115 10.1879 11.1923 10.3976 11.1904C10.6073 11.1885 10.808 11.1043 10.9562 10.9561C11.1045 10.8078 11.1887 10.6071 11.1906 10.3975C11.1924 10.1877 11.1117 9.98487 10.966 9.83398L9.13102 8L10.966 6.16602C11.116 6.01599 11.2004 5.81174 11.2004 5.59961C11.2002 5.38762 11.1159 5.18411 10.966 5.03418C10.816 4.88429 10.6125 4.79991 10.4005 4.7998Z",
21
+ p38feaa80: "M77.9986 17.4237H79.9404V11.2663C79.9404 10.6339 79.8349 9.61048 79.8349 9.61048H79.8647C79.8647 9.61048 80.347 10.6492 80.7544 11.2663L84.8091 17.4237H86.7357V6.73493H84.8091V12.9068C84.8091 13.5392 84.9146 14.5634 84.9146 14.5634H84.884C84.884 14.5634 84.4017 13.5247 83.9951 12.9068L79.9404 6.73493H77.9986V17.4237Z",
22
+ p3af52100: "M50.047 17.4237H52.0509L48.2846 6.73493H46.2508L42.4845 17.4237H44.4885L45.3926 14.6833H49.1437L50.047 17.4237ZM47.2902 8.58453C47.2902 8.58453 47.5165 9.63938 47.7121 10.242L48.6614 13.104H45.8596L46.808 10.242C47.0189 9.63938 47.2605 8.58453 47.2605 8.58453H47.2902Z",
23
+ p3e1a5280: "M145.347 17.4237H147.351L143.585 6.73493H141.551L137.785 17.4237H139.789L140.693 14.6833H144.444L145.347 17.4237ZM142.59 8.58453C142.59 8.58453 142.817 9.63938 143.012 10.242L143.961 13.104H141.16L142.109 10.242C142.32 9.63938 142.561 8.58453 142.561 8.58453H142.59Z",
24
+ p3e1c0930: "M16 4V12L12 16H4L0 12V4L4 0H12L16 4ZM3.69141 2.57227L13.3877 12.3477L12.3076 13.4277L2.57227 3.69141L1.59961 4.66406V11.3359L4.66406 14.4004H11.3359L14.4004 11.3359V4.66406L11.3359 1.59961H4.66406L3.69141 2.57227Z",
25
+ p3f48ef30: "M90 0C139.706 0 180 40.2944 180 90C180 139.706 139.706 180 90 180C40.2944 180 0 139.706 0 90C0 40.2944 40.2944 0 90 0ZM90 10C45.8172 10 10 45.8172 10 90C10 134.183 45.8172 170 90 170C134.183 170 170 134.183 170 90C170 45.8172 134.183 10 90 10Z",
26
+ p5822d30: "M0.0461559 36.0106L118.699 25.0106L235.783 0.510618L355.22 25.0106L470.889 35.5106L588.758 71.5106H707.046",
27
+ p5b04f70: "M103.49 6.73493H101.548V17.4237H103.49V6.73493Z",
28
+ p63b5500: "M63.8611 27.1179V22.1769H67.5271V23.0133H64.8589V24.1081H67.3417V24.9411H64.8589V26.2858H67.6215V27.1179H63.8611Z",
29
+ p73e5c00: "M69.6655 25.5106L70.6368 25.4162C70.6955 25.7418 70.8137 25.9815 70.9924 26.1336C71.171 26.2866 71.4126 26.3631 71.7162 26.3631C72.0377 26.3631 72.2793 26.2951 72.4426 26.1591C72.6059 26.0231 72.6876 25.8642 72.6876 25.6823C72.6876 25.565 72.6527 25.4664 72.5846 25.3839C72.5157 25.3023 72.3958 25.2309 72.2249 25.1697C72.1083 25.1298 71.8421 25.0575 71.4262 24.9538C70.8912 24.8221 70.5152 24.6589 70.2992 24.4659C69.9955 24.1939 69.8441 23.8624 69.8441 23.4714C69.8441 23.2198 69.9155 22.9844 70.0584 22.7651C70.2013 22.5458 70.4072 22.3792 70.6751 22.2644C70.9439 22.1505 71.2688 22.0927 71.6482 22.0927C72.2691 22.0927 72.7361 22.2287 73.0499 22.5007C73.3638 22.7727 73.5279 23.1357 73.5441 23.5896L72.5455 23.6329C72.503 23.3788 72.4111 23.1969 72.2708 23.0855C72.1304 22.9742 71.9195 22.9189 71.638 22.9189C71.3479 22.9189 71.1208 22.9784 70.9566 23.0974C70.8512 23.1739 70.7984 23.2759 70.7984 23.4043C70.7984 23.5207 70.8478 23.621 70.9473 23.7035C71.0732 23.8097 71.3785 23.9194 71.8642 24.0341C72.3499 24.1489 72.7088 24.267 72.9419 24.3894C73.1749 24.5118 73.357 24.6793 73.488 24.8918C73.6198 25.1043 73.6853 25.3669 73.6853 25.6789C73.6853 25.9619 73.607 26.2271 73.4497 26.4745C73.2923 26.7218 73.0695 26.9054 72.782 27.0253C72.4936 27.1451 72.1355 27.2055 71.706 27.2055C71.0808 27.2055 70.6011 27.061 70.266 26.7728C69.9309 26.4838 69.731 26.0631 69.6655 25.5106Z",
30
+ p94ead80: "M124.436 12.0185C124.436 15.1363 126.815 17.6039 129.949 17.6039C131.2 17.6039 132.331 17.2282 133.22 16.5516L134.41 17.7246L135.523 16.4912L134.319 15.4075C135.026 14.4742 135.493 13.3139 135.493 12.0185C135.493 8.94663 133.114 6.55388 129.949 6.55388C126.815 6.55388 124.436 8.94663 124.436 12.0185ZM126.438 12.0185C126.438 9.89523 127.99 8.32868 129.949 8.32868C131.939 8.32868 133.491 9.89523 133.491 12.0185C133.491 12.7716 133.265 13.495 132.903 14.0823L131.743 12.9229L130.628 14.1427L131.818 15.2723C131.306 15.6183 130.597 15.8291 129.949 15.8291C127.99 15.8291 126.438 14.203 126.438 12.0185Z",
31
+ pafbcd00: "M106.973 12.0338C106.973 15.1814 109.231 17.6039 112.5 17.6039C115.227 17.6039 116.704 15.8741 116.704 15.8741L115.68 14.4742C115.68 14.4742 114.43 15.8291 112.576 15.8291C110.346 15.8291 108.975 14.0373 108.975 12.0041C108.975 10.0159 110.301 8.32868 112.561 8.32868C114.264 8.32868 115.484 9.45833 115.484 9.45833L116.418 8.01333C116.418 8.01333 115.077 6.55388 112.471 6.55388C109.321 6.55388 106.973 8.93133 106.973 12.0338Z",
32
+ pd3f4900: "M42.4539 22.1769H44.4306C44.8219 22.1769 45.1136 22.193 45.3059 22.2262C45.4981 22.2585 45.6699 22.3265 45.8213 22.4302C45.9736 22.533 46.0994 22.6707 46.2007 22.8424C46.3019 23.015 46.3529 23.2071 46.3529 23.4204C46.3529 23.6525 46.29 23.8641 46.1658 24.0579C46.0408 24.2509 45.8715 24.3962 45.658 24.4923C45.9591 24.5798 46.1905 24.7294 46.3529 24.9411C46.5145 25.1519 46.5953 25.4001 46.5953 25.6857C46.5953 25.9101 46.5434 26.1285 46.4388 26.341C46.3342 26.5535 46.1913 26.7227 46.0101 26.8502C45.8298 26.9768 45.6061 27.055 45.3407 27.0839C45.1749 27.1026 44.7734 27.1137 44.1372 27.1179H42.4539V22.1769ZM43.4525 22.9997V24.1421H44.1065C44.4953 24.1421 44.7368 24.1361 44.8321 24.1251C45.0022 24.1047 45.1366 24.046 45.2344 23.9483C45.3322 23.8505 45.3816 23.7222 45.3816 23.5624C45.3816 23.4094 45.339 23.2853 45.2548 23.1901C45.1706 23.094 45.0456 23.0362 44.8789 23.0167C44.7802 23.0048 44.4953 22.9997 44.0257 22.9997H43.4525ZM43.4525 24.964V26.2858H44.3762C44.736 26.2858 44.9639 26.2756 45.0609 26.2552C45.2097 26.228 45.3305 26.1625 45.4232 26.058C45.5168 25.9534 45.5636 25.814 45.5636 25.6381C45.5636 25.4902 45.5279 25.3644 45.4556 25.2607C45.3833 25.1578 45.2795 25.0822 45.1434 25.0354C45.0073 24.9878 44.7122 24.964 44.258 24.964H43.4525Z",
33
+ }
@@ -0,0 +1,48 @@
1
+ export default {
2
+ p390b0800: "M4.11471 1.91529C6.13607 0.443827 8.63532 -0.217051 11.1198 0.0629196C13.6043 0.34289 15.8938 1.5434 17.537 3.42781C19.1802 5.31222 20.0579 7.74381 19.9971 10.2433C19.9362 12.7428 18.9413 15.1288 17.2084 16.9311C15.4755 18.7333 13.1303 19.821 10.6352 19.9798C8.13999 20.1386 5.67584 19.357 3.72844 17.7889C1.78104 16.2209 0.491671 13.9803 0.114482 11.5086C-0.262707 9.03704 0.299652 6.5138 1.69071 4.43629L3.13371 5.88429C2.11895 7.57195 1.7623 9.5746 2.13206 11.5088C2.50181 13.4431 3.57198 15.1729 5.13768 16.3673C6.70338 17.5617 8.6546 18.1366 10.6178 17.982C12.581 17.8274 14.4181 16.9542 15.7776 15.5295C17.1371 14.1048 17.9233 12.2287 17.9857 10.2604C18.0482 8.29219 17.3825 6.37004 16.1161 4.862C14.8497 3.35397 13.0716 2.36601 11.1222 2.08726C9.17273 1.80852 7.18899 2.25858 5.55071 3.35129L4.11471 1.91529Z",
3
+ p1059d340: "M58.0008 30C58.0008 29.73 58.1108 29.48 58.2908 29.29C58.4808 29.11 58.7308 29 59.0008 29C59.2708 29 59.5208 29.11 59.7108 29.29C59.8908 29.48 60.0008 29.73 60.0008 30V59C60.0008 59.27 59.8908 59.52 59.7108 59.71C59.5208 59.89 59.2708 60 59.0008 60C58.7308 60 58.4808 59.89 58.2908 59.71C58.1108 59.52 58.0008 59.27 58.0008 59V30Z",
4
+ p13555100: "M20 5V15L15 20H5L0 15V5L5 0H15L20 5ZM4.61523 3.21484L16.7344 15.4346L15.3848 16.7852L3.21484 4.61523L2 5.83008V14.1699L5.83008 18H14.1699L18 14.1699V5.83008L14.1699 2H5.83008L4.61523 3.21484Z",
5
+ p1507e900: "M59.3046 27.1179V23.0133H57.8374V22.1769H61.7662V23.0133H60.3024V27.1179H59.3046Z",
6
+ p1649b700: "M93.1711 17.4237H95.113V8.40433H98.6233V6.73493H89.6608V8.40433H93.1711V17.4237Z",
7
+ p166df900: "M88.1816 24.6776C88.1816 24.1744 88.2573 23.7519 88.4079 23.4102C88.5202 23.1586 88.6741 22.9334 88.8681 22.7336C89.0628 22.533 89.2755 22.3851 89.5077 22.2882C89.8156 22.1582 90.1703 22.0927 90.5735 22.0927C91.3015 22.0927 91.8842 22.3188 92.3214 22.7702C92.7594 23.2215 92.978 23.8497 92.978 24.6546C92.978 25.4519 92.7611 26.0758 92.3265 26.5263C91.8927 26.9768 91.3126 27.2021 90.5862 27.2021C89.8513 27.2021 89.267 26.9785 88.8332 26.5297C88.3985 26.0818 88.1816 25.4647 88.1816 24.6776ZM89.2108 24.6444C89.2108 25.2037 89.3401 25.6279 89.5987 25.9169C89.8573 26.205 90.1856 26.3495 90.5828 26.3495C90.9809 26.3495 91.3075 26.2067 91.5627 25.9194C91.8178 25.633 91.9454 25.2037 91.9454 24.6308C91.9454 24.0647 91.8212 23.6423 91.5729 23.3635C91.3245 23.0847 90.9945 22.9453 90.5828 22.9453C90.172 22.9453 89.8403 23.0864 89.5885 23.3686C89.3367 23.6508 89.2108 24.0758 89.2108 24.6444Z",
8
+ p18546240: "M11.2808 37.26C11.4708 37.08 11.7308 36.99 12.0008 37C12.2608 37.01 12.5108 37.13 12.6908 37.32C12.8708 37.52 12.9608 37.78 12.9508 38.04C12.9408 38.31 12.8208 38.56 12.6308 38.74L1.67075 48.74C1.48075 48.92 1.22075 49.01 0.960751 49C0.690751 48.99 0.440751 48.87 0.260751 48.67C0.0807512 48.48 -0.00924874 48.22 0.000751255 47.96C0.0107513 47.69 0.130751 47.44 0.330751 47.26L11.2808 37.26Z",
9
+ p185c8f80: "M11 0V9H20V11H11V20H9V11H0V9H9V0H11Z",
10
+ p191a7b00: "M10 2C14.4183 2 18 5.58172 18 10C18 14.4183 14.4183 18 10 18C5.58172 18 2 14.4183 2 10C2 5.58172 5.58172 2 10 2Z",
11
+ p1981c800: "M24 0C25.657 0 27 1.343 27 3H31V5H48V60H0V5H17V3H21C21 1.343 22.343 0 24 0ZM2 58H46V7H31V10H17V7H2V58ZM28 37H10V35H28V37ZM28 33H10V31H28V33ZM28 29H10V27H28V29ZM38 23H10V21H38V23ZM38 19H10V17H38V19Z",
12
+ p1bd5e640: "M0.0505828 102.583L118.835 90.5043L237.045 101.583L354.624 91.5043L472.261 0.583123L590.051 56.3565H708.051",
13
+ p1c7818a0: "M8.00016 0C10.1219 0 12.1571 0.842483 13.6574 2.34277C15.1577 3.84306 16.0002 5.87827 16.0002 8C16.0002 9.58225 15.5306 11.1287 14.6515 12.4443C13.7725 13.7599 12.5234 14.7851 11.0617 15.3906C9.59995 15.9961 7.99138 16.1553 6.43961 15.8467C4.88776 15.538 3.46175 14.776 2.34293 13.6572C1.22411 12.5384 0.462158 11.1124 0.153476 9.56055C-0.15514 8.00877 0.00406184 6.40021 0.609531 4.93848C1.21504 3.47676 2.2403 2.22764 3.55582 1.34863C4.87141 0.469582 6.41791 7.77692e-07 8.00016 0ZM11.9982 4.79883C11.7857 4.79935 11.5817 4.88451 11.4318 5.03516L7.20035 9.26855L5.36832 7.43555C5.2941 7.36096 5.20567 7.30125 5.10855 7.26074C5.01147 7.22026 4.9071 7.19948 4.80191 7.19922C4.69676 7.19899 4.59252 7.21977 4.49527 7.25977C4.39804 7.29979 4.30907 7.35845 4.23453 7.43262C4.16009 7.50677 4.10115 7.59541 4.0607 7.69238C4.02034 7.78928 3.99949 7.89308 3.99918 7.99805C3.99892 8.10327 4.01872 8.20835 4.05875 8.30566C4.09878 8.40288 4.15842 8.49091 4.23258 8.56543L6.63199 10.9658C6.78293 11.1159 6.98751 11.2002 7.20035 11.2002C7.41298 11.2001 7.61687 11.1156 7.76773 10.9658L12.5685 6.16602C12.7184 6.01542 12.8024 5.81107 12.8019 5.59863C12.8014 5.38613 12.7162 5.18212 12.5656 5.03223C12.4149 4.88233 12.2107 4.79831 11.9982 4.79883Z",
14
+ p1f8b5980: "M22.4186 14.9774C23.2156 17.0981 22.6942 19.4994 21.0891 21.0991C19.9689 22.227 18.4286 22.8407 16.8388 22.7914L1.30393 22.8152L1.30478 22.8161H0.996874C1.34306 23.7868 1.77855 24.7226 2.29825 25.6126L16.7036 25.5769L17.2539 25.5803C21.8674 25.4494 25.5904 21.621 25.5904 17.0089C25.5904 15.4729 25.1779 13.965 24.3953 12.6433L22.4186 14.9774ZM12.3784 20.6299C12.4022 20.6299 12.4226 20.6103 12.4226 20.5865C12.4226 20.5763 12.4184 20.5661 12.4124 20.5585C11.6206 19.541 11.1902 18.289 11.1902 16.9995C11.1902 13.8214 13.8074 11.2059 16.9877 11.2059C17.4393 11.2076 17.891 11.262 18.3299 11.3674L20.2811 9.06307C19.2366 8.62872 18.1155 8.40517 16.9843 8.40517C12.2704 8.40517 8.39262 12.2812 8.39262 16.9919C8.39262 18.249 8.66906 19.4909 9.20152 20.6299H12.3784ZM21.7466 10.248C22.5232 10.248 23.1543 10.8787 23.1543 11.6547C23.1543 12.4316 22.5232 13.0615 21.7466 13.0615C20.9692 13.0615 20.3389 12.4316 20.3389 11.6547C20.3389 10.8787 20.9692 10.248 21.7466 10.248Z",
15
+ p2055340: "M27.0008 57C26.7308 57 26.4808 56.89 26.2908 56.71C26.1108 56.52 26.0008 56.27 26.0008 56C26.0008 55.73 26.1108 55.48 26.2908 55.29C26.4808 55.11 26.7308 55 27.0008 55H33.0008C33.2708 55 33.5208 55.11 33.7108 55.29C33.8908 55.48 34.0008 55.73 34.0008 56C34.0008 56.27 33.8908 56.52 33.7108 56.71C33.5208 56.89 33.2708 57 33.0008 57",
16
+ p224ff200: "M54.1467 12.0644C54.1467 15.4228 56.5709 17.6039 59.3897 17.6039C61.3792 17.6039 62.4943 16.4606 62.4943 16.4606H62.524C62.524 16.4606 62.5096 16.6859 62.5096 16.9111V17.4237H64.1648V11.7941H60.7761V13.4635H62.4186V14.7139C62.4186 14.7139 61.3486 15.8291 59.7359 15.8291C57.7319 15.8291 56.149 14.322 56.149 12.0049C56.149 9.98618 57.43 8.32868 59.8269 8.32868C61.5297 8.32868 62.6746 9.35378 62.6746 9.35378L63.6383 7.90793C63.6383 7.90793 62.2833 6.55388 59.661 6.55388C56.4807 6.55388 54.1467 8.96193 54.1467 12.0644Z",
17
+ p2455100: "M30 0C30.2652 0 30.5195 0.105433 30.707 0.292969C30.8946 0.480505 31 0.734784 31 1V29H59C59.2652 29 59.5195 29.1054 59.707 29.293C59.8946 29.4805 60 29.7348 60 30C60 30.2652 59.8946 30.5195 59.707 30.707C59.5195 30.8946 59.2652 31 59 31H31V59C31 59.2652 30.8946 59.5195 30.707 59.707C30.5195 59.8946 30.2652 60 30 60C29.7348 60 29.4805 59.8946 29.293 59.707C29.1054 59.5195 29 59.2652 29 59V31H1C0.734784 31 0.480505 30.8946 0.292969 30.707C0.105433 30.5195 0 30.2652 0 30C0 29.7348 0.105433 29.4805 0.292969 29.293C0.480505 29.1054 0.734784 29 1 29H29V1C29 0.734784 29.1054 0.480505 29.293 0.292969C29.4805 0.105433 29.7348 0 30 0Z",
18
+ p269eee80: "M77.0884 27.1179V23.0133H75.6212V22.1769H79.5509V23.0133H78.087V27.1179H77.0884Z",
19
+ p288b2800: "M17.0115 0.000318846C7.73683 -0.0566312 0.0578391 7.52282 0 16.7912V17.2094C0.00425287 19.1134 0.336828 21.0021 0.983264 22.7922H10.6466L16.8388 22.7914C16.8899 22.7922 16.9417 22.7931 16.9928 22.7931C20.1722 22.7931 22.7877 20.1793 22.7877 17.0029C22.7877 17.002 22.7877 17.002 22.7877 17.0012C22.7869 16.3101 22.6619 15.6242 22.4186 14.9773L24.3953 12.6432C25.1779 13.965 25.5904 15.4729 25.5904 17.0088C25.5904 21.6209 21.8674 25.4493 17.2539 25.5802L16.7036 25.5768L2.28464 25.5896C5.34076 30.7933 10.9443 34.0003 16.9826 34.0003C26.2411 34.0003 33.892 26.4608 34.023 17.2094V16.7912C33.9651 7.52282 26.2862 -0.0566312 17.0115 0.000318846ZM18.3299 11.3674C17.891 11.262 17.4402 11.2076 16.9885 11.2059C13.8074 11.2059 11.1893 13.8213 11.1893 16.9995C11.1893 18.2889 11.6197 19.541 12.4124 20.5584C12.4184 20.5661 12.4226 20.5763 12.4226 20.5865C12.4226 20.6103 12.4022 20.6298 12.3784 20.6298H9.20152C8.66906 19.4908 8.39262 18.249 8.39262 16.9918C8.39262 12.2811 12.2704 8.40512 16.9843 8.40512C18.1155 8.40512 19.2366 8.62867 20.2811 9.06302L18.3299 11.3674ZM22.7418 12.65C22.4781 12.9135 22.1192 13.0614 21.7466 13.0614C20.9743 13.0614 20.3389 12.4265 20.3389 11.6547C20.3389 10.8829 20.9743 10.2479 21.7466 10.2479C22.1192 10.2479 22.4781 10.3967 22.7418 10.6602C23.0055 10.9237 23.1543 11.2815 23.1543 11.6547C23.1543 12.0278 23.0055 12.3857 22.7418 12.65Z",
20
+ p29a28100: "M67.8282 17.4237H74.4704V15.7543H69.7701V12.8762H73.3706V11.2068H69.7701V8.40433H74.2296V6.73493H67.8282V17.4237Z",
21
+ p2af2dd00: "M30 0C46.557 0 60 13.443 60 30C60 46.557 46.557 60 30 60C13.443 60 0 46.557 0 30C0 23.817 1.87496 18.069 5.08496 13.293L7.25098 15.459C4.55998 19.6575 3 24.648 3 30C3 44.901 15.099 57 30 57C44.901 57 57 44.901 57 30C57 15.099 44.901 3 30 3C24.2445 3 18.9064 4.80493 14.5234 7.87988L12.3721 5.73047C17.3221 2.12747 23.415 0 30 0ZM40.7734 29.9893L25.5 40.1719V19.8076L40.7734 29.9893Z",
22
+ p2b4f4400: "M11.1504 1.97559L4.14258 10.1504L0 6.36719L2.02246 4.15234L3.87988 5.84961L8.87207 0.0244141L11.1504 1.97559Z",
23
+ p2ef9e700: "M50.1873 27.1179V25.0388L48.3764 22.1769H49.5468L50.7104 24.1319L51.8502 22.1769H53.0002L51.1825 25.0456V27.1179H50.1873Z",
24
+ p30b87920: "M9.99995 0C12.6521 0 15.1959 1.05335 17.0712 2.92871C18.9466 4.80407 19.9999 7.34784 19.9999 10C19.9999 11.9778 19.4132 13.9112 18.3144 15.5557C17.2156 17.2001 15.6543 18.4824 13.8271 19.2393C11.9998 19.9961 9.98859 20.1935 8.04878 19.8076C6.10909 19.4217 4.32711 18.4697 2.92866 17.0713C1.53021 15.6728 0.578223 13.8909 0.192332 11.9512C-0.19352 10.0114 0.00381534 8.00011 0.760692 6.17285C1.51756 4.34567 2.79987 2.78434 4.44429 1.68555C6.08878 0.586734 8.02214 9.42658e-07 9.99995 0ZM14.997 5.99902C14.7316 5.9998 14.4773 6.10578 14.29 6.29395L8.99995 11.5859L6.70991 9.29395C6.61718 9.20077 6.507 9.1268 6.38569 9.07617C6.26443 9.02559 6.13426 8.99941 6.00288 8.99902C5.87139 8.9987 5.7407 9.02421 5.61909 9.07422C5.49764 9.12417 5.38704 9.19747 5.29389 9.29004C5.20066 9.38282 5.12578 9.49384 5.07514 9.61523C5.02462 9.73651 4.99832 9.86666 4.998 9.99805C4.99767 10.1296 5.02316 10.2602 5.07319 10.3818C5.12323 10.5034 5.19724 10.6138 5.28999 10.707L8.28999 13.707C8.47866 13.8946 8.7339 14 8.99995 14C9.266 14 9.52123 13.8946 9.70991 13.707L15.7099 7.70703C15.8973 7.51873 16.0026 7.26368 16.0019 6.99805C16.0012 6.7324 15.8943 6.47741 15.706 6.29004C15.5177 6.10295 15.2625 5.99837 14.997 5.99902Z",
25
+ p30bab400: "M9.99995 0C12.6521 0 15.1959 1.05335 17.0712 2.92871C18.9466 4.80407 19.9999 7.34784 19.9999 10C19.9999 11.9778 19.4132 13.9112 18.3144 15.5557C17.2156 17.2001 15.6543 18.4824 13.8271 19.2393C11.9998 19.9961 9.98859 20.1935 8.04878 19.8076C6.10909 19.4217 4.32711 18.4697 2.92866 17.0713C1.53021 15.6728 0.578223 13.8909 0.192332 11.9512C-0.19352 10.0114 0.00381534 8.00011 0.760692 6.17285C1.51756 4.34567 2.79987 2.78434 4.44429 1.68555C6.08878 0.586734 8.02214 9.42658e-07 9.99995 0ZM12.9999 6C12.7348 6 12.4804 6.1055 12.2929 6.29297L9.99995 8.58594L7.70698 6.29297C7.51845 6.11088 7.26594 6.0105 7.00386 6.0127C6.74166 6.01497 6.49102 6.12026 6.30561 6.30566C6.12021 6.49107 6.01492 6.74171 6.01264 7.00391C6.01045 7.26599 6.11083 7.5185 6.29292 7.70703L8.58589 10L6.29292 12.293C6.19754 12.3851 6.12169 12.4954 6.06929 12.6172C6.01688 12.7392 5.98841 12.8711 5.98725 13.0039C5.98614 13.1365 6.01225 13.2679 6.06245 13.3906C6.11273 13.5135 6.18633 13.6258 6.28022 13.7197C6.37412 13.8136 6.48643 13.8872 6.60932 13.9375C6.73208 13.9877 6.86343 14.0138 6.99604 14.0127C7.12882 14.0115 7.26076 13.9831 7.38276 13.9307C7.50457 13.8783 7.61486 13.8024 7.70698 13.707L9.99995 11.4141L12.2929 13.707C12.4814 13.8891 12.734 13.9895 12.996 13.9873C13.2582 13.985 13.5089 13.8797 13.6943 13.6943C13.8797 13.5089 13.985 13.2583 13.9873 12.9961C13.9895 12.734 13.8891 12.4815 13.707 12.293L11.414 10L13.707 7.70703C13.8945 7.5195 13.9999 7.26516 13.9999 7C13.9999 6.73484 13.8945 6.4805 13.707 6.29297C13.5195 6.1055 13.2651 6 12.9999 6Z",
26
+ p32f5f900: "M85.9829 22.1769H84.9843V27.1179H85.9829V22.1769Z",
27
+ p35553200: "M0.0460244 49.1562L119.04 38.1562L236.256 85.1562L355.04 0.656221L472.467 121.656L590.256 39.1562H708.046",
28
+ p35ef7800: "M8.00016 0C10.1219 0 12.1571 0.842483 13.6574 2.34277C15.1577 3.84306 16.0002 5.87827 16.0002 8C16.0002 9.58225 15.5306 11.1287 14.6515 12.4443C13.7725 13.7599 12.5234 14.7851 11.0617 15.3906C9.59995 15.9961 7.99138 16.1553 6.43961 15.8467C4.88776 15.538 3.46175 14.776 2.34293 13.6572C1.22411 12.5384 0.462158 11.1124 0.153477 9.56055C-0.15514 8.00877 0.00406197 6.40021 0.609531 4.93848C1.21504 3.47676 2.2403 2.22764 3.55582 1.34863C4.87141 0.469582 6.41791 3.06364e-07 8.00016 0ZM10.4005 4.7998C10.1884 4.7998 9.98416 4.8842 9.83414 5.03418L8.00016 6.86914L6.16617 5.03418C6.01529 4.88845 5.81245 4.80775 5.6027 4.80957C5.39306 4.81148 5.19235 4.8957 5.0441 5.04395C4.89586 5.19219 4.81164 5.3929 4.80973 5.60254C4.8079 5.8123 4.88861 6.01513 5.03434 6.16602L6.8693 8L5.03434 9.83398C4.95803 9.90768 4.89755 9.99631 4.85563 10.0938C4.8137 10.1914 4.79112 10.2971 4.7902 10.4033C4.78933 10.5094 4.8096 10.6147 4.84977 10.7129C4.88999 10.8112 4.94947 10.9005 5.02457 10.9756C5.09967 11.0507 5.18897 11.1102 5.28727 11.1504C5.38545 11.1906 5.49076 11.2108 5.59684 11.21C5.70306 11.209 5.8088 11.1865 5.90641 11.1445C6.00385 11.1026 6.09248 11.0421 6.16617 10.9658L8.00016 9.13086L9.83414 10.9658C9.98502 11.1115 10.1879 11.1923 10.3976 11.1904C10.6073 11.1885 10.808 11.1043 10.9562 10.9561C11.1045 10.8078 11.1887 10.6071 11.1906 10.3975C11.1924 10.1877 11.1117 9.98487 10.966 9.83398L9.13102 8L10.966 6.16602C11.116 6.01599 11.2004 5.81174 11.2004 5.59961C11.2002 5.38762 11.1159 5.18411 10.966 5.03418C10.816 4.88429 10.6125 4.79991 10.4005 4.7998Z",
29
+ p38feaa80: "M77.9986 17.4237H79.9404V11.2663C79.9404 10.6339 79.8349 9.61048 79.8349 9.61048H79.8647C79.8647 9.61048 80.347 10.6492 80.7544 11.2663L84.8091 17.4237H86.7357V6.73493H84.8091V12.9068C84.8091 13.5392 84.9146 14.5634 84.9146 14.5634H84.884C84.884 14.5634 84.4017 13.5247 83.9951 12.9068L79.9404 6.73493H77.9986V17.4237Z",
30
+ p3af52100: "M50.047 17.4237H52.0509L48.2846 6.73493H46.2508L42.4845 17.4237H44.4885L45.3926 14.6833H49.1437L50.047 17.4237ZM47.2902 8.58453C47.2902 8.58453 47.5165 9.63938 47.7121 10.242L48.6614 13.104H45.8596L46.808 10.242C47.0189 9.63938 47.2605 8.58453 47.2605 8.58453H47.2902Z",
31
+ p3e1a5280: "M145.347 17.4237H147.351L143.585 6.73493H141.551L137.785 17.4237H139.789L140.693 14.6833H144.444L145.347 17.4237ZM142.59 8.58453C142.59 8.58453 142.817 9.63938 143.012 10.242L143.961 13.104H141.16L142.109 10.242C142.32 9.63938 142.561 8.58453 142.561 8.58453H142.59Z",
32
+ p3e1c0930: "M16 4V12L12 16H4L0 12V4L4 0H12L16 4ZM3.69141 2.57227L13.3877 12.3477L12.3076 13.4277L2.57227 3.69141L1.59961 4.66406V11.3359L4.66406 14.4004H11.3359L14.4004 11.3359V4.66406L11.3359 1.59961H4.66406L3.69141 2.57227Z",
33
+ p3ed72680: "M5.86768 14.0781L4.09815 14.6172C4.57613 15.2395 5.15236 15.7798 5.80421 16.2168C6.61422 16.7665 7.52548 17.1498 8.48487 17.3447C9.48301 17.5457 10.5111 17.5457 11.5093 17.3447C11.9918 17.2459 12.4636 17.1003 12.9175 16.9091C13.8088 16.5313 14.619 15.9846 15.3032 15.2998C15.5589 15.0452 15.7959 14.7727 16.0122 14.4843L16.2212 14.1953C16.4918 13.7944 16.7235 13.368 16.9126 12.9228L18.7544 13.7002C18.2764 14.8264 17.5857 15.8499 16.7202 16.7148C15.8544 17.5829 14.8283 18.2748 13.6987 18.7519C13.1235 18.995 12.5255 19.18 11.9136 19.3047C10.6508 19.5633 9.34826 19.5633 8.08546 19.3047C7.47421 19.1799 6.87685 18.9949 6.30225 18.7519C5.73753 18.5129 5.19728 18.2199 4.68897 17.8769C3.67636 17.1935 2.80456 16.3217 2.12061 15.3095C2.10573 15.2867 2.09253 15.2621 2.07667 15.2392L0.146004 15.8271L1.5005 9.99997L5.86768 14.0781ZM8.08448 0.692348C9.34756 0.436345 10.6495 0.436345 11.9126 0.692348C13.1292 0.940566 14.2847 1.42721 15.313 2.12301C16.3248 2.80567 17.1962 3.67613 17.8794 4.68747C17.8944 4.71042 17.9074 4.73579 17.9233 4.75875L19.854 4.17086L18.5034 9.99997L14.1333 5.91989L15.9028 5.38082C15.7168 5.14208 15.5167 4.91473 15.3032 4.70016C14.9646 4.35887 14.5932 4.05136 14.1948 3.78219C13.3846 3.23121 12.4726 2.84622 11.5122 2.65133C10.5142 2.45038 9.48587 2.45038 8.4878 2.65133C6.68502 3.01958 5.08543 4.03875 3.99073 5.5068L3.77882 5.80465C3.50821 6.20554 3.2765 6.63195 3.08741 7.07711L1.24561 6.29977C2.2108 4.02284 4.02369 2.21059 6.30128 1.24606C6.87591 1.00308 7.47318 0.817114 8.08448 0.692348Z",
34
+ p3f48ef30: "M90 0C139.706 0 180 40.2944 180 90C180 139.706 139.706 180 90 180C40.2944 180 0 139.706 0 90C0 40.2944 40.2944 0 90 0ZM90 10C45.8172 10 10 45.8172 10 90C10 134.183 45.8172 170 90 170C134.183 170 170 134.183 170 90C170 45.8172 134.183 10 90 10Z",
35
+ p5822d30: "M0.0461559 36.0106L118.699 25.0106L235.783 0.510618L355.22 25.0106L470.889 35.5106L588.758 71.5106H707.046",
36
+ p5b04f70: "M103.49 6.73493H101.548V17.4237H103.49V6.73493Z",
37
+ p5e64f80: "M11.8184 20H8.18164V16H11.8184V20ZM11.8184 12H8.18164V8H11.8184V12ZM11.8184 4H8.18164V0H11.8184V4Z",
38
+ p63b5500: "M63.8611 27.1179V22.1769H67.5271V23.0133H64.8589V24.1081H67.3417V24.9411H64.8589V26.2858H67.6215V27.1179H63.8611Z",
39
+ p73e5c00: "M69.6655 25.5106L70.6368 25.4162C70.6955 25.7418 70.8137 25.9815 70.9924 26.1336C71.171 26.2866 71.4126 26.3631 71.7162 26.3631C72.0377 26.3631 72.2793 26.2951 72.4426 26.1591C72.6059 26.0231 72.6876 25.8642 72.6876 25.6823C72.6876 25.565 72.6527 25.4664 72.5846 25.3839C72.5157 25.3023 72.3958 25.2309 72.2249 25.1697C72.1083 25.1298 71.8421 25.0575 71.4262 24.9538C70.8912 24.8221 70.5152 24.6589 70.2992 24.4659C69.9955 24.1939 69.8441 23.8624 69.8441 23.4714C69.8441 23.2198 69.9155 22.9844 70.0584 22.7651C70.2013 22.5458 70.4072 22.3792 70.6751 22.2644C70.9439 22.1505 71.2688 22.0927 71.6482 22.0927C72.2691 22.0927 72.7361 22.2287 73.0499 22.5007C73.3638 22.7727 73.5279 23.1357 73.5441 23.5896L72.5455 23.6329C72.503 23.3788 72.4111 23.1969 72.2708 23.0855C72.1304 22.9742 71.9195 22.9189 71.638 22.9189C71.3479 22.9189 71.1208 22.9784 70.9566 23.0974C70.8512 23.1739 70.7984 23.2759 70.7984 23.4043C70.7984 23.5207 70.8478 23.621 70.9473 23.7035C71.0732 23.8097 71.3785 23.9194 71.8642 24.0341C72.3499 24.1489 72.7088 24.267 72.9419 24.3894C73.1749 24.5118 73.357 24.6793 73.488 24.8918C73.6198 25.1043 73.6853 25.3669 73.6853 25.6789C73.6853 25.9619 73.607 26.2271 73.4497 26.4745C73.2923 26.7218 73.0695 26.9054 72.782 27.0253C72.4936 27.1451 72.1355 27.2055 71.706 27.2055C71.0808 27.2055 70.6011 27.061 70.266 26.7728C69.9309 26.4838 69.731 26.0631 69.6655 25.5106Z",
40
+ p94ead80: "M124.436 12.0185C124.436 15.1363 126.815 17.6039 129.949 17.6039C131.2 17.6039 132.331 17.2282 133.22 16.5516L134.41 17.7246L135.523 16.4912L134.319 15.4075C135.026 14.4742 135.493 13.3139 135.493 12.0185C135.493 8.94663 133.114 6.55388 129.949 6.55388C126.815 6.55388 124.436 8.94663 124.436 12.0185ZM126.438 12.0185C126.438 9.89523 127.99 8.32868 129.949 8.32868C131.939 8.32868 133.491 9.89523 133.491 12.0185C133.491 12.7716 133.265 13.495 132.903 14.0823L131.743 12.9229L130.628 14.1427L131.818 15.2723C131.306 15.6183 130.597 15.8291 129.949 15.8291C127.99 15.8291 126.438 14.203 126.438 12.0185Z",
41
+ pa1ccc00: "M0.000751255 30C0.000751255 29.73 0.110751 29.48 0.290751 29.29C0.480751 29.11 0.730751 29 1.00075 29C1.27075 29 1.52075 29.11 1.71075 29.29C1.89075 29.48 2.00075 29.73 2.00075 30V59C2.00075 59.27 1.89075 59.52 1.71075 59.71C1.52075 59.89 1.27075 60 1.00075 60C0.730751 60 0.480751 59.89 0.290751 59.71C0.110751 59.52 0.000751255 59.27 0.000751255 59",
42
+ pafbcd00: "M106.973 12.0338C106.973 15.1814 109.231 17.6039 112.5 17.6039C115.227 17.6039 116.704 15.8741 116.704 15.8741L115.68 14.4742C115.68 14.4742 114.43 15.8291 112.576 15.8291C110.346 15.8291 108.975 14.0373 108.975 12.0041C108.975 10.0159 110.301 8.32868 112.561 8.32868C114.264 8.32868 115.484 9.45833 115.484 9.45833L116.418 8.01333C116.418 8.01333 115.077 6.55388 112.471 6.55388C109.321 6.55388 106.973 8.93133 106.973 12.0338Z",
43
+ pcc49e30: "M33.0008 31C33.0008 37.623 27.6238 43 21.0008 43C14.3778 43 9.00075 37.623 9.00075 31C9.00075 24.377 14.3778 19 21.0008 19C27.6238 19 33.0008 24.377 33.0008 31ZM31.0008 31C31.0008 33.65 29.9508 36.2 28.0708 38.07C26.2008 39.95 23.6508 41 21.0008 41C18.3508 41 15.8008 39.95 13.9308 38.07C12.0508 36.2 11.0008 33.65 11.0008 31C11.0008 28.35 12.0508 25.8 13.9308 23.93C15.8008 22.05 18.3508 21 21.0008 21C23.6508 21 26.2008 22.05 28.0708 23.93C29.9508 25.8 31.0008 28.35 31.0008 31Z",
44
+ pd3f4900: "M42.4539 22.1769H44.4306C44.8219 22.1769 45.1136 22.193 45.3059 22.2262C45.4981 22.2585 45.6699 22.3265 45.8213 22.4302C45.9736 22.533 46.0994 22.6707 46.2007 22.8424C46.3019 23.015 46.3529 23.2071 46.3529 23.4204C46.3529 23.6525 46.29 23.8641 46.1658 24.0579C46.0408 24.2509 45.8715 24.3962 45.658 24.4923C45.9591 24.5798 46.1905 24.7294 46.3529 24.9411C46.5145 25.1519 46.5953 25.4001 46.5953 25.6857C46.5953 25.9101 46.5434 26.1285 46.4388 26.341C46.3342 26.5535 46.1913 26.7227 46.0101 26.8502C45.8298 26.9768 45.6061 27.055 45.3407 27.0839C45.1749 27.1026 44.7734 27.1137 44.1372 27.1179H42.4539V22.1769ZM43.4525 22.9997V24.1421H44.1065C44.4953 24.1421 44.7368 24.1361 44.8321 24.1251C45.0022 24.1047 45.1366 24.046 45.2344 23.9483C45.3322 23.8505 45.3816 23.7222 45.3816 23.5624C45.3816 23.4094 45.339 23.2853 45.2548 23.1901C45.1706 23.094 45.0456 23.0362 44.8789 23.0167C44.7802 23.0048 44.4953 22.9997 44.0257 22.9997H43.4525ZM43.4525 24.964V26.2858H44.3762C44.736 26.2858 44.9639 26.2756 45.0609 26.2552C45.2097 26.228 45.3305 26.1625 45.4232 26.058C45.5168 25.9534 45.5636 25.814 45.5636 25.6381C45.5636 25.4902 45.5279 25.3644 45.4556 25.2607C45.3833 25.1578 45.2795 25.0822 45.1434 25.0354C45.0073 24.9878 44.7122 24.964 44.258 24.964H43.4525Z",
45
+ pda7a680: "M37.0008 31C37.0008 32.104 37.8968 33 39.0008 33C40.1048 33 41.0008 32.104 41.0008 31C41.0008 29.896 40.1048 29 39.0008 29C37.8968 29 37.0008 29.896 37.0008 31Z",
46
+ pe04fd80: "M18.0008 31C18.0008 32.656 19.3448 34 21.0008 34C22.6568 34 24.0008 32.656 24.0008 31C24.0008 29.344 22.6568 28 21.0008 28C19.3448 28 18.0008 29.344 18.0008 31Z",
47
+ pf5d0c00: "M2.00075 30V31H0.000751255V30C0.000751255 22.05 3.16075 14.41 8.79075 8.79C14.4108 3.16 22.0508 0 30.0008 0C37.9508 0 45.5908 3.16 51.2108 8.79C56.8408 14.41 60.0008 22.05 60.0008 30V31H58.0008V30C58.0008 22.58 55.0508 15.45 49.8008 10.2C44.5508 4.95 37.4208 2 30.0008 2C22.5808 2 15.4508 4.95 10.2008 10.2C4.95075 15.45 2.00075 22.58 2.00075 30Z",
48
+ }
@@ -0,0 +1,23 @@
1
+ export default {
2
+ p1507e900: "M59.3046 27.1179V23.0133H57.8374V22.1769H61.7662V23.0133H60.3024V27.1179H59.3046Z",
3
+ p1649b700: "M93.1711 17.4237H95.113V8.40433H98.6233V6.73493H89.6608V8.40433H93.1711V17.4237Z",
4
+ p166df900: "M88.1816 24.6776C88.1816 24.1744 88.2573 23.7519 88.4079 23.4102C88.5202 23.1586 88.6741 22.9334 88.8681 22.7336C89.0628 22.533 89.2755 22.3851 89.5077 22.2882C89.8156 22.1582 90.1703 22.0927 90.5735 22.0927C91.3015 22.0927 91.8842 22.3188 92.3214 22.7702C92.7594 23.2215 92.978 23.8497 92.978 24.6546C92.978 25.4519 92.7611 26.0758 92.3265 26.5263C91.8927 26.9768 91.3126 27.2021 90.5862 27.2021C89.8513 27.2021 89.267 26.9785 88.8332 26.5297C88.3985 26.0818 88.1816 25.4647 88.1816 24.6776ZM89.2108 24.6444C89.2108 25.2037 89.3401 25.6279 89.5987 25.9169C89.8573 26.205 90.1856 26.3495 90.5828 26.3495C90.9809 26.3495 91.3075 26.2067 91.5627 25.9194C91.8178 25.633 91.9454 25.2037 91.9454 24.6308C91.9454 24.0647 91.8212 23.6423 91.5729 23.3635C91.3245 23.0847 90.9945 22.9453 90.5828 22.9453C90.172 22.9453 89.8403 23.0864 89.5885 23.3686C89.3367 23.6508 89.2108 24.0758 89.2108 24.6444Z",
5
+ p185c8f80: "M11 0V9H20V11H11V20H9V11H0V9H9V0H11Z",
6
+ p1f8b5980: "M22.4186 14.9774C23.2156 17.0981 22.6942 19.4994 21.0891 21.0991C19.9689 22.227 18.4286 22.8407 16.8388 22.7914L1.30393 22.8152L1.30478 22.8161H0.996874C1.34306 23.7868 1.77855 24.7226 2.29825 25.6126L16.7036 25.5769L17.2539 25.5803C21.8674 25.4494 25.5904 21.621 25.5904 17.0089C25.5904 15.4729 25.1779 13.965 24.3953 12.6433L22.4186 14.9774ZM12.3784 20.6299C12.4022 20.6299 12.4226 20.6103 12.4226 20.5865C12.4226 20.5763 12.4184 20.5661 12.4124 20.5585C11.6206 19.541 11.1902 18.289 11.1902 16.9995C11.1902 13.8214 13.8074 11.2059 16.9877 11.2059C17.4393 11.2076 17.891 11.262 18.3299 11.3674L20.2811 9.06307C19.2366 8.62872 18.1155 8.40517 16.9843 8.40517C12.2704 8.40517 8.39262 12.2812 8.39262 16.9919C8.39262 18.249 8.66906 19.4909 9.20152 20.6299H12.3784ZM21.7466 10.248C22.5232 10.248 23.1543 10.8787 23.1543 11.6547C23.1543 12.4316 22.5232 13.0615 21.7466 13.0615C20.9692 13.0615 20.3389 12.4316 20.3389 11.6547C20.3389 10.8787 20.9692 10.248 21.7466 10.248Z",
7
+ p224ff200: "M54.1467 12.0644C54.1467 15.4228 56.5709 17.6039 59.3897 17.6039C61.3792 17.6039 62.4943 16.4606 62.4943 16.4606H62.524C62.524 16.4606 62.5096 16.6859 62.5096 16.9111V17.4237H64.1648V11.7941H60.7761V13.4635H62.4186V14.7139C62.4186 14.7139 61.3486 15.8291 59.7359 15.8291C57.7319 15.8291 56.149 14.322 56.149 12.0049C56.149 9.98618 57.43 8.32868 59.8269 8.32868C61.5297 8.32868 62.6746 9.35378 62.6746 9.35378L63.6383 7.90793C63.6383 7.90793 62.2833 6.55388 59.661 6.55388C56.4807 6.55388 54.1467 8.96193 54.1467 12.0644Z",
8
+ p269eee80: "M77.0884 27.1179V23.0133H75.6212V22.1769H79.5509V23.0133H78.087V27.1179H77.0884Z",
9
+ p288b2800: "M17.0115 0.000318846C7.73683 -0.0566312 0.0578391 7.52282 0 16.7912V17.2094C0.00425287 19.1134 0.336828 21.0021 0.983264 22.7922H10.6466L16.8388 22.7914C16.8899 22.7922 16.9417 22.7931 16.9928 22.7931C20.1722 22.7931 22.7877 20.1793 22.7877 17.0029C22.7877 17.002 22.7877 17.002 22.7877 17.0012C22.7869 16.3101 22.6619 15.6242 22.4186 14.9773L24.3953 12.6432C25.1779 13.965 25.5904 15.4729 25.5904 17.0088C25.5904 21.6209 21.8674 25.4493 17.2539 25.5802L16.7036 25.5768L2.28464 25.5896C5.34076 30.7933 10.9443 34.0003 16.9826 34.0003C26.2411 34.0003 33.892 26.4608 34.023 17.2094V16.7912C33.9651 7.52282 26.2862 -0.0566312 17.0115 0.000318846ZM18.3299 11.3674C17.891 11.262 17.4402 11.2076 16.9885 11.2059C13.8074 11.2059 11.1893 13.8213 11.1893 16.9995C11.1893 18.2889 11.6197 19.541 12.4124 20.5584C12.4184 20.5661 12.4226 20.5763 12.4226 20.5865C12.4226 20.6103 12.4022 20.6298 12.3784 20.6298H9.20152C8.66906 19.4908 8.39262 18.249 8.39262 16.9918C8.39262 12.2811 12.2704 8.40512 16.9843 8.40512C18.1155 8.40512 19.2366 8.62867 20.2811 9.06302L18.3299 11.3674ZM22.7418 12.65C22.4781 12.9135 22.1192 13.0614 21.7466 13.0614C20.9743 13.0614 20.3389 12.4265 20.3389 11.6547C20.3389 10.8829 20.9743 10.2479 21.7466 10.2479C22.1192 10.2479 22.4781 10.3967 22.7418 10.6602C23.0055 10.9237 23.1543 11.2815 23.1543 11.6547C23.1543 12.0278 23.0055 12.3857 22.7418 12.65Z",
10
+ p29a28100: "M67.8282 17.4237H74.4704V15.7543H69.7701V12.8762H73.3706V11.2068H69.7701V8.40433H74.2296V6.73493H67.8282V17.4237Z",
11
+ p2ef9e700: "M50.1873 27.1179V25.0388L48.3764 22.1769H49.5468L50.7104 24.1319L51.8502 22.1769H53.0002L51.1825 25.0456V27.1179H50.1873Z",
12
+ p32f5f900: "M85.9829 22.1769H84.9843V27.1179H85.9829V22.1769Z",
13
+ p38feaa80: "M77.9986 17.4237H79.9404V11.2663C79.9404 10.6339 79.8349 9.61048 79.8349 9.61048H79.8647C79.8647 9.61048 80.347 10.6492 80.7544 11.2663L84.8091 17.4237H86.7357V6.73493H84.8091V12.9068C84.8091 13.5392 84.9146 14.5634 84.9146 14.5634H84.884C84.884 14.5634 84.4017 13.5247 83.9951 12.9068L79.9404 6.73493H77.9986V17.4237Z",
14
+ p390b0800: "M4.11471 1.91529C6.13607 0.443827 8.63532 -0.217051 11.1198 0.0629196C13.6043 0.34289 15.8938 1.5434 17.537 3.42781C19.1802 5.31222 20.0579 7.74381 19.9971 10.2433C19.9362 12.7428 18.9413 15.1288 17.2084 16.9311C15.4755 18.7333 13.1303 19.821 10.6352 19.9798C8.13999 20.1386 5.67584 19.357 3.72844 17.7889C1.78104 16.2209 0.491671 13.9803 0.114482 11.5086C-0.262707 9.03704 0.299652 6.5138 1.69071 4.43629L3.13371 5.88429C2.11895 7.57195 1.7623 9.5746 2.13206 11.5088C2.50181 13.4431 3.57198 15.1729 5.13768 16.3673C6.70338 17.5617 8.6546 18.1366 10.6178 17.982C12.581 17.8274 14.4181 16.9542 15.7776 15.5295C17.1371 14.1048 17.9233 12.2287 17.9857 10.2604C18.0482 8.29219 17.3825 6.37004 16.1161 4.862C14.8497 3.35397 13.0716 2.36601 11.1222 2.08726C9.17273 1.80852 7.18899 2.25858 5.55071 3.35129L4.11471 1.91529Z",
15
+ p3af52100: "M50.047 17.4237H52.0509L48.2846 6.73493H46.2508L42.4845 17.4237H44.4885L45.3926 14.6833H49.1437L50.047 17.4237ZM47.2902 8.58453C47.2902 8.58453 47.5165 9.63938 47.7121 10.242L48.6614 13.104H45.8596L46.808 10.242C47.0189 9.63938 47.2605 8.58453 47.2605 8.58453H47.2902Z",
16
+ p3e1a5280: "M145.347 17.4237H147.351L143.585 6.73493H141.551L137.785 17.4237H139.789L140.693 14.6833H144.444L145.347 17.4237ZM142.59 8.58453C142.59 8.58453 142.817 9.63938 143.012 10.242L143.961 13.104H141.16L142.109 10.242C142.32 9.63938 142.561 8.58453 142.561 8.58453H142.59Z",
17
+ p5b04f70: "M103.49 6.73493H101.548V17.4237H103.49V6.73493Z",
18
+ p63b5500: "M63.8611 27.1179V22.1769H67.5271V23.0133H64.8589V24.1081H67.3417V24.9411H64.8589V26.2858H67.6215V27.1179H63.8611Z",
19
+ p73e5c00: "M69.6655 25.5106L70.6368 25.4162C70.6955 25.7418 70.8137 25.9815 70.9924 26.1336C71.171 26.2866 71.4126 26.3631 71.7162 26.3631C72.0377 26.3631 72.2793 26.2951 72.4426 26.1591C72.6059 26.0231 72.6876 25.8642 72.6876 25.6823C72.6876 25.565 72.6527 25.4664 72.5846 25.3839C72.5157 25.3023 72.3958 25.2309 72.2249 25.1697C72.1083 25.1298 71.8421 25.0575 71.4262 24.9538C70.8912 24.8221 70.5152 24.6589 70.2992 24.4659C69.9955 24.1939 69.8441 23.8624 69.8441 23.4714C69.8441 23.2198 69.9155 22.9844 70.0584 22.7651C70.2013 22.5458 70.4072 22.3792 70.6751 22.2644C70.9439 22.1505 71.2688 22.0927 71.6482 22.0927C72.2691 22.0927 72.7361 22.2287 73.0499 22.5007C73.3638 22.7727 73.5279 23.1357 73.5441 23.5896L72.5455 23.6329C72.503 23.3788 72.4111 23.1969 72.2708 23.0855C72.1304 22.9742 71.9195 22.9189 71.638 22.9189C71.3479 22.9189 71.1208 22.9784 70.9566 23.0974C70.8512 23.1739 70.7984 23.2759 70.7984 23.4043C70.7984 23.5207 70.8478 23.621 70.9473 23.7035C71.0732 23.8097 71.3785 23.9194 71.8642 24.0341C72.3499 24.1489 72.7088 24.267 72.9419 24.3894C73.1749 24.5118 73.357 24.6793 73.488 24.8918C73.6198 25.1043 73.6853 25.3669 73.6853 25.6789C73.6853 25.9619 73.607 26.2271 73.4497 26.4745C73.2923 26.7218 73.0695 26.9054 72.782 27.0253C72.4936 27.1451 72.1355 27.2055 71.706 27.2055C71.0808 27.2055 70.6011 27.061 70.266 26.7728C69.9309 26.4838 69.731 26.0631 69.6655 25.5106Z",
20
+ p94ead80: "M124.436 12.0185C124.436 15.1363 126.815 17.6039 129.949 17.6039C131.2 17.6039 132.331 17.2282 133.22 16.5516L134.41 17.7246L135.523 16.4912L134.319 15.4075C135.026 14.4742 135.493 13.3139 135.493 12.0185C135.493 8.94663 133.114 6.55388 129.949 6.55388C126.815 6.55388 124.436 8.94663 124.436 12.0185ZM126.438 12.0185C126.438 9.89523 127.99 8.32868 129.949 8.32868C131.939 8.32868 133.491 9.89523 133.491 12.0185C133.491 12.7716 133.265 13.495 132.903 14.0823L131.743 12.9229L130.628 14.1427L131.818 15.2723C131.306 15.6183 130.597 15.8291 129.949 15.8291C127.99 15.8291 126.438 14.203 126.438 12.0185Z",
21
+ pafbcd00: "M106.973 12.0338C106.973 15.1814 109.231 17.6039 112.5 17.6039C115.227 17.6039 116.704 15.8741 116.704 15.8741L115.68 14.4742C115.68 14.4742 114.43 15.8291 112.576 15.8291C110.346 15.8291 108.975 14.0373 108.975 12.0041C108.975 10.0159 110.301 8.32868 112.561 8.32868C114.264 8.32868 115.484 9.45833 115.484 9.45833L116.418 8.01333C116.418 8.01333 115.077 6.55388 112.471 6.55388C109.321 6.55388 106.973 8.93133 106.973 12.0338Z",
22
+ pd3f4900: "M42.4539 22.1769H44.4306C44.8219 22.1769 45.1136 22.193 45.3059 22.2262C45.4981 22.2585 45.6699 22.3265 45.8213 22.4302C45.9736 22.533 46.0994 22.6707 46.2007 22.8424C46.3019 23.015 46.3529 23.2071 46.3529 23.4204C46.3529 23.6525 46.29 23.8641 46.1658 24.0579C46.0408 24.2509 45.8715 24.3962 45.658 24.4923C45.9591 24.5798 46.1905 24.7294 46.3529 24.9411C46.5145 25.1519 46.5953 25.4001 46.5953 25.6857C46.5953 25.9101 46.5434 26.1285 46.4388 26.341C46.3342 26.5535 46.1913 26.7227 46.0101 26.8502C45.8298 26.9768 45.6061 27.055 45.3407 27.0839C45.1749 27.1026 44.7734 27.1137 44.1372 27.1179H42.4539V22.1769ZM43.4525 22.9997V24.1421H44.1065C44.4953 24.1421 44.7368 24.1361 44.8321 24.1251C45.0022 24.1047 45.1366 24.046 45.2344 23.9483C45.3322 23.8505 45.3816 23.7222 45.3816 23.5624C45.3816 23.4094 45.339 23.2853 45.2548 23.1901C45.1706 23.094 45.0456 23.0362 44.8789 23.0167C44.7802 23.0048 44.4953 22.9997 44.0257 22.9997H43.4525ZM43.4525 24.964V26.2858H44.3762C44.736 26.2858 44.9639 26.2756 45.0609 26.2552C45.2097 26.228 45.3305 26.1625 45.4232 26.058C45.5168 25.9534 45.5636 25.814 45.5636 25.6381C45.5636 25.4902 45.5279 25.3644 45.4556 25.2607C45.3833 25.1578 45.2795 25.0822 45.1434 25.0354C45.0073 24.9878 44.7122 24.964 44.258 24.964H43.4525Z",
23
+ }
@@ -0,0 +1 @@
1
+ export const imgLogoTestinator = "data:image/svg+xml,%3Csvg%20preserveAspectRatio%3D%22none%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20viewBox%3D%220%200%20148%2034%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22_clip1%22%3E%0A%3Cpath%20id%3D%22Vector%22%20d%3D%22M148%200H0V34H148V0Z%22%20fill%3D%22var(--fill-0%2C%20black)%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A";
@@ -0,0 +1,3 @@
1
+ export default {
2
+ p2819d400: "M10 0C15.522 0 20 4.478 20 10C20 15.522 15.522 20 10 20C4.478 20 0 15.522 0 10C0 4.478 4.478 0 10 0ZM15.71 6.29395C15.319 5.90301 14.68 5.90301 14.29 6.29395L9 11.5859L6.70996 9.29395C6.31897 8.90301 5.68003 8.90301 5.29004 9.29395C4.90004 9.68395 4.90004 10.317 5.29004 10.707L8.29004 13.707C8.49003 13.902 8.74002 14 9 14C9.25998 14 9.50997 13.903 9.70996 13.707L15.71 7.70703C16.1 7.31603 16.1 6.68395 15.71 6.29395Z",
3
+ }
package/src/main.tsx ADDED
@@ -0,0 +1,7 @@
1
+
2
+ import { createRoot } from "react-dom/client";
3
+ import App from "./app/App.tsx";
4
+ import "./styles/index.css";
5
+
6
+ createRoot(document.getElementById("root")!).render(<App />);
7
+
@@ -0,0 +1 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400&display=swap');
@@ -0,0 +1,181 @@
1
+ /* ═══════════════════════════════════════════════════════
2
+ Forms — CSS component classes
3
+ Inputs, selects, labels, tags, and form grid layouts.
4
+ ═══════════════════════════════════════════════════════ */
5
+
6
+ @layer components {
7
+ /* ═══ FORM LABEL ═══ */
8
+
9
+ .form-label {
10
+ @apply font-['Source_Sans_Pro',sans-serif] text-muted-foreground uppercase;
11
+ font-weight: 600;
12
+ font-size: 12px;
13
+ line-height: 14px;
14
+ }
15
+
16
+ /* ═══ FORM GRID ═══ */
17
+
18
+ .form-grid {
19
+ @apply w-full rounded-[15px];
20
+ display: grid;
21
+ grid-template-columns: 175px minmax(0, 1fr);
22
+ grid-template-rows: 40px;
23
+ gap: 20px;
24
+ }
25
+
26
+ .form-grid-label {
27
+ @apply flex items-start justify-self-start self-start shrink-0;
28
+ padding-top: 10px;
29
+ }
30
+
31
+ /* ═══ INPUT FIELD ═══ */
32
+
33
+ .form-input {
34
+ @apply bg-background relative w-full font-['Source_Sans_3',sans-serif];
35
+ height: 40px;
36
+ border-radius: 10px;
37
+ }
38
+
39
+ .form-input-border {
40
+ @apply absolute inset-0 pointer-events-none border border-border;
41
+ border-radius: 10px;
42
+ }
43
+
44
+ .form-input-inner {
45
+ @apply flex items-center size-full;
46
+ padding: 5px 20px;
47
+ gap: 9px;
48
+ }
49
+
50
+ .form-input-text {
51
+ @apply flex-1 font-['Source_Sans_3',sans-serif] text-foreground;
52
+ font-size: 16px;
53
+ line-height: 22px;
54
+ }
55
+
56
+ .form-input-placeholder {
57
+ @apply flex-1 font-['Source_Sans_3',sans-serif] italic;
58
+ color: #595959;
59
+ font-size: 16px;
60
+ line-height: 30px;
61
+ }
62
+
63
+ /* Error variant */
64
+ .form-input-error .form-input-border {
65
+ @apply border-destructive;
66
+ }
67
+
68
+ .form-input-error .form-input-text {
69
+ @apply text-destructive;
70
+ }
71
+
72
+ /* Readonly variant */
73
+ .form-input-readonly {
74
+ @apply bg-secondary relative w-full font-['Source_Sans_3',sans-serif];
75
+ height: 40px;
76
+ border-radius: 10px;
77
+ }
78
+
79
+ /* ═══ SELECT ═══ */
80
+
81
+ .form-select {
82
+ @apply bg-secondary relative w-full;
83
+ height: 40px;
84
+ border-radius: 10px;
85
+ }
86
+
87
+ .form-select-bordered {
88
+ @apply absolute inset-0 pointer-events-none border border-border;
89
+ border-radius: 10px;
90
+ }
91
+
92
+ .form-select-inner {
93
+ @apply flex items-center justify-between size-full isolate;
94
+ padding-left: 15px;
95
+ }
96
+
97
+ .form-select-text {
98
+ @apply flex-1 font-['Source_Sans_3',sans-serif] text-foreground;
99
+ font-size: 16px;
100
+ line-height: 22px;
101
+ z-index: 3;
102
+ }
103
+
104
+ .form-select-placeholder {
105
+ @apply flex-1 font-['Source_Sans_3',sans-serif] text-muted-foreground italic;
106
+ font-size: 16px;
107
+ line-height: 30px;
108
+ z-index: 3;
109
+ }
110
+
111
+ .form-select-btn {
112
+ @apply flex items-center justify-center shrink-0;
113
+ width: 40px;
114
+ height: 40px;
115
+ border-top-right-radius: 10px;
116
+ border-bottom-right-radius: 10px;
117
+ z-index: 1;
118
+ }
119
+
120
+ .form-select-btn-border {
121
+ @apply absolute inset-0 pointer-events-none;
122
+ border-left: 1px solid var(--background);
123
+ border-top-right-radius: 10px;
124
+ border-bottom-right-radius: 10px;
125
+ }
126
+
127
+ /* Hover variant */
128
+ .form-select-hover {
129
+ @apply bg-link-hover relative w-full;
130
+ height: 40px;
131
+ border-radius: 10px;
132
+ }
133
+
134
+ .form-select-hover .form-select-btn {
135
+ @apply bg-link-hover;
136
+ }
137
+
138
+ /* Device select (taller) */
139
+ .form-select-device {
140
+ @apply bg-secondary relative w-full;
141
+ border-radius: 10px;
142
+ }
143
+
144
+ .form-select-device .form-select-btn {
145
+ height: 70px;
146
+ }
147
+
148
+ .form-select-device-hover {
149
+ @apply bg-link-hover relative w-full;
150
+ border-radius: 10px;
151
+ }
152
+
153
+ .form-select-device-hover .form-select-btn {
154
+ @apply bg-link-hover;
155
+ height: 70px;
156
+ }
157
+
158
+ /* ═══ TAG ═══ */
159
+
160
+ .form-tag {
161
+ @apply bg-white flex items-center justify-center shrink-0;
162
+ height: 20px;
163
+ border-radius: 5px;
164
+ }
165
+
166
+ .form-tag-content {
167
+ @apply font-['Source_Sans_Pro',sans-serif] shrink-0;
168
+ color: var(--primary-foreground);
169
+ font-size: 11px;
170
+ line-height: 13px;
171
+ padding: 2px 2px 2px 8px;
172
+ }
173
+
174
+ .form-tag-remove {
175
+ @apply flex items-center justify-center h-full shrink-0;
176
+ width: 18px;
177
+ padding: 5px;
178
+ border-top-right-radius: 5px;
179
+ border-bottom-right-radius: 5px;
180
+ }
181
+ }