@kolkrabbi/kol-component 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. package/README.md +24 -0
  2. package/package.json +46 -0
  3. package/src/atoms/Avatar.jsx +17 -0
  4. package/src/atoms/Button.jsx +172 -0
  5. package/src/atoms/ColorSwatch.jsx +126 -0
  6. package/src/atoms/Divider.jsx +34 -0
  7. package/src/atoms/Input.jsx +121 -0
  8. package/src/atoms/Label.jsx +12 -0
  9. package/src/atoms/Slider.jsx +129 -0
  10. package/src/atoms/Stepper.jsx +97 -0
  11. package/src/atoms/Textarea.jsx +70 -0
  12. package/src/atoms/ToggleCheckbox.jsx +40 -0
  13. package/src/atoms/ToggleSwitch.jsx +42 -0
  14. package/src/atoms/TransparentX.jsx +37 -0
  15. package/src/graphics/Graphic.jsx +53 -0
  16. package/src/graphics/svg/abstract/abstract-01.svg +3 -0
  17. package/src/graphics/svg/abstract/abstract-02.svg +3 -0
  18. package/src/graphics/svg/abstract/abstract-03.svg +3 -0
  19. package/src/graphics/svg/abstract/abstract-06.svg +4 -0
  20. package/src/graphics/svg/diagrams/.gitkeep +0 -0
  21. package/src/graphics/svg/diagrams/ac-structure.svg +90 -0
  22. package/src/graphics/svg/diagrams/rg-x-height.svg +3 -0
  23. package/src/graphics/svg/diagrams/structure-grid.svg +618 -0
  24. package/src/graphics/svg/diagrams/structure-logo.svg +23 -0
  25. package/src/graphics/svg/patterns/.gitkeep +0 -0
  26. package/src/graphics/svg/patterns/patt-01.svg +34 -0
  27. package/src/graphics/svg/patterns/patt-02.svg +34 -0
  28. package/src/graphics/svg/patterns/patt-03.svg +110 -0
  29. package/src/graphics/svg/patterns/patt-04.svg +10 -0
  30. package/src/graphics/svg/patterns/patt-05.svg +62 -0
  31. package/src/graphics/svg/patterns/patt-06.svg +66 -0
  32. package/src/graphics/svg/patterns/patt-07.svg +130 -0
  33. package/src/graphics/svg/patterns/patt-08.svg +434 -0
  34. package/src/graphics/svg/patterns/patt-09.svg +38 -0
  35. package/src/graphics/svg/patterns/patt-10.svg +20 -0
  36. package/src/graphics/svg/patterns/patt-11.svg +38 -0
  37. package/src/graphics/svg/patterns/patt-12.svg +58 -0
  38. package/src/graphics/svg/patterns/patt-13.svg +48 -0
  39. package/src/graphics/svg/patterns/patt-14.svg +90 -0
  40. package/src/graphics/svg/patterns/patt-15.svg +194 -0
  41. package/src/graphics/svg/patterns/patt-16.svg +12 -0
  42. package/src/graphics/svg/social/social-01.svg +18 -0
  43. package/src/graphics/svg/social/social-02.svg +18 -0
  44. package/src/graphics/svg/social/social-03.svg +18 -0
  45. package/src/graphics/svg/social/social-04.svg +18 -0
  46. package/src/graphics/svg/social/social-05.svg +18 -0
  47. package/src/graphics/svg/social/social-06.svg +18 -0
  48. package/src/graphics/svg/social/social-07.svg +22 -0
  49. package/src/graphics/svg/social/social-08.svg +22 -0
  50. package/src/graphics/svg/social/social-09.svg +22 -0
  51. package/src/graphics/svg/social/social-10.svg +6 -0
  52. package/src/graphics/svg/social/social-11.svg +6 -0
  53. package/src/graphics/svg/social/social-12.svg +6 -0
  54. package/src/graphics/svg/social/social-13.svg +9 -0
  55. package/src/graphics/svg/social/social-14.svg +9 -0
  56. package/src/graphics/svg/social/social-15.svg +9 -0
  57. package/src/graphics/svg/structure/diagram-grid-lockup-hori.svg +23 -0
  58. package/src/graphics/svg/structure/diagram-grid-lockup-vert.svg +25 -0
  59. package/src/graphics/svg/structure/diagram-grid-logomark.svg +20 -0
  60. package/src/graphics/svg/structure/diagram-grid-wordmark.svg +18 -0
  61. package/src/graphics/svg/structure/diagram-logo-lockup-hori.svg +9 -0
  62. package/src/graphics/svg/structure/diagram-logo-lockup-vert.svg +23 -0
  63. package/src/graphics/svg/structure/diagram-logo-logomark.svg +7 -0
  64. package/src/graphics/svg/structure/diagram-logo-wordmark.svg +3 -0
  65. package/src/graphics/svg/structure/diagram-x-lockup-hori.svg +5 -0
  66. package/src/graphics/svg/structure/diagram-x-lockup-vert.svg +10 -0
  67. package/src/graphics/svg/structure/diagram-x-logomark.svg +5 -0
  68. package/src/graphics/svg/structure/diagram-x-wordmark.svg +5 -0
  69. package/src/hooks/useReveal.js +28 -0
  70. package/src/hooks/useScrollSpy.js +56 -0
  71. package/src/index.js +59 -0
  72. package/src/molecules/Badge.jsx +51 -0
  73. package/src/molecules/ContentFilters.jsx +263 -0
  74. package/src/molecules/Dropdown.jsx +223 -0
  75. package/src/molecules/DropdownTagFilter.jsx +253 -0
  76. package/src/molecules/LabeledControl.jsx +66 -0
  77. package/src/molecules/MenuItem.jsx +148 -0
  78. package/src/molecules/MenuPopover.jsx +128 -0
  79. package/src/molecules/Modal.jsx +124 -0
  80. package/src/molecules/Pill.jsx +33 -0
  81. package/src/molecules/Popover.jsx +208 -0
  82. package/src/molecules/PropertyInput.jsx +32 -0
  83. package/src/molecules/QuantityInput.jsx +174 -0
  84. package/src/molecules/QuantityStepper.jsx +149 -0
  85. package/src/molecules/Section.jsx +16 -0
  86. package/src/molecules/SectionLabel.jsx +59 -0
  87. package/src/molecules/SegmentedToggle.jsx +56 -0
  88. package/src/molecules/Tag.jsx +79 -0
  89. package/src/molecules/ToggleBracket.jsx +45 -0
  90. package/src/molecules/ViewToggle.jsx +101 -0
  91. package/src/organisms/Table.jsx +46 -0
  92. package/src/primitives/Accordion.jsx +45 -0
  93. package/src/primitives/AssetPlaceholder.jsx +28 -0
  94. package/src/primitives/Carousel.jsx +50 -0
  95. package/src/primitives/CodeBlock.jsx +41 -0
  96. package/src/primitives/ExitPreview.jsx +12 -0
  97. package/src/primitives/FullscreenOverlay.jsx +39 -0
  98. package/src/primitives/Image.jsx +38 -0
@@ -0,0 +1,618 @@
1
+ <svg width="553" height="193" viewBox="0 0 553 193" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M32.375 192.375H0.375V160.375H32.375V192.375Z" fill="currentColor" fill-opacity="0.1"/>
3
+ <path d="M392.375 192.375H368.375V160.375H392.375V192.375Z" fill="currentColor" fill-opacity="0.1"/>
4
+ <path d="M552.375 192.375H520.375V160.375H552.375V192.375Z" fill="currentColor" fill-opacity="0.1"/>
5
+ <path d="M32.375 32.375H0.375V0.375H32.375V32.375Z" fill="currentColor" fill-opacity="0.1"/>
6
+ <path d="M392.375 32.375H368.375V0.375H392.375V32.375Z" fill="currentColor" fill-opacity="0.1"/>
7
+ <path d="M552.375 32.375H520.375V0.375H552.375V32.375Z" fill="currentColor" fill-opacity="0.1"/>
8
+ <path d="M0.75 192H2.375V192.75H0V190H0.75V192Z" fill="currentColor"/>
9
+ <path d="M10.375 192.75H6.375V192H10.375V192.75Z" fill="currentColor"/>
10
+ <path d="M18.375 192.75H14.375V192H18.375V192.75Z" fill="currentColor"/>
11
+ <path d="M26.375 192.75H22.375V192H26.375V192.75Z" fill="currentColor"/>
12
+ <path d="M32.75 192H34.375V192.75H30.375V192H32V190H32.75V192Z" fill="currentColor"/>
13
+ <path d="M42.375 192.75H38.375V192H42.375V192.75Z" fill="currentColor"/>
14
+ <path d="M50.375 192.75H46.375V192H50.375V192.75Z" fill="currentColor"/>
15
+ <path d="M58.375 192.75H54.375V192H58.375V192.75Z" fill="currentColor"/>
16
+ <path d="M66.375 192.75H62.375V192H66.375V192.75Z" fill="currentColor"/>
17
+ <path d="M74.375 192.75H70.375V192H74.375V192.75Z" fill="currentColor"/>
18
+ <path d="M82.375 192.75H78.375V192H82.375V192.75Z" fill="currentColor"/>
19
+ <path d="M90.375 192.75H86.375V192H90.375V192.75Z" fill="currentColor"/>
20
+ <path d="M98.375 192.75H94.375V192H98.375V192.75Z" fill="currentColor"/>
21
+ <path d="M106.375 192.75H102.375V192H106.375V192.75Z" fill="currentColor"/>
22
+ <path d="M114.375 192.75H110.375V192H114.375V192.75Z" fill="currentColor"/>
23
+ <path d="M122.375 192.75H118.375V192H122.375V192.75Z" fill="currentColor"/>
24
+ <path d="M130.375 192.75H126.375V192H130.375V192.75Z" fill="currentColor"/>
25
+ <path d="M138.375 192.75H134.375V192H138.375V192.75Z" fill="currentColor"/>
26
+ <path d="M146.375 192.75H142.375V192H146.375V192.75Z" fill="currentColor"/>
27
+ <path d="M154.375 192.75H150.375V192H154.375V192.75Z" fill="currentColor"/>
28
+ <path d="M162.375 192.75H158.375V192H162.375V192.75Z" fill="currentColor"/>
29
+ <path d="M170.375 192.75H166.375V192H170.375V192.75Z" fill="currentColor"/>
30
+ <path d="M178.375 192.75H174.375V192H178.375V192.75Z" fill="currentColor"/>
31
+ <path d="M186.375 192.75H182.375V192H186.375V192.75Z" fill="currentColor"/>
32
+ <path d="M194.375 192.75H190.375V192H194.375V192.75Z" fill="currentColor"/>
33
+ <path d="M202.375 192.75H198.375V192H202.375V192.75Z" fill="currentColor"/>
34
+ <path d="M210.375 192.75H206.375V192H210.375V192.75Z" fill="currentColor"/>
35
+ <path d="M218.375 192.75H214.375V192H218.375V192.75Z" fill="currentColor"/>
36
+ <path d="M226.375 192.75H222.375V192H226.375V192.75Z" fill="currentColor"/>
37
+ <path d="M234.375 192.75H230.375V192H234.375V192.75Z" fill="currentColor"/>
38
+ <path d="M242.375 192.75H238.375V192H242.375V192.75Z" fill="currentColor"/>
39
+ <path d="M250.375 192.75H246.375V192H250.375V192.75Z" fill="currentColor"/>
40
+ <path d="M258.375 192.75H254.375V192H258.375V192.75Z" fill="currentColor"/>
41
+ <path d="M266.375 192.75H262.375V192H266.375V192.75Z" fill="currentColor"/>
42
+ <path d="M274.375 192.75H270.375V192H274.375V192.75Z" fill="currentColor"/>
43
+ <path d="M282.375 192.75H278.375V192H282.375V192.75Z" fill="currentColor"/>
44
+ <path d="M290.375 192.75H286.375V192H290.375V192.75Z" fill="currentColor"/>
45
+ <path d="M298.375 192.75H294.375V192H298.375V192.75Z" fill="currentColor"/>
46
+ <path d="M306.375 192.75H302.375V192H306.375V192.75Z" fill="currentColor"/>
47
+ <path d="M314.375 192.75H310.375V192H314.375V192.75Z" fill="currentColor"/>
48
+ <path d="M322.375 192.75H318.375V192H322.375V192.75Z" fill="currentColor"/>
49
+ <path d="M330.375 192.75H326.375V192H330.375V192.75Z" fill="currentColor"/>
50
+ <path d="M338.375 192.75H334.375V192H338.375V192.75Z" fill="currentColor"/>
51
+ <path d="M346.375 192.75H342.375V192H346.375V192.75Z" fill="currentColor"/>
52
+ <path d="M354.375 192.75H350.375V192H354.375V192.75Z" fill="currentColor"/>
53
+ <path d="M362.375 192.75H358.375V192H362.375V192.75Z" fill="currentColor"/>
54
+ <path d="M368.75 192H370.375V192.75H366.375V192H368V190H368.75V192Z" fill="currentColor"/>
55
+ <path d="M378.375 192.75H374.375V192H378.375V192.75Z" fill="currentColor"/>
56
+ <path d="M386.375 192.75H382.375V192H386.375V192.75Z" fill="currentColor"/>
57
+ <path d="M392.75 192H394.375V192.75H390.375V192H392V190H392.75V192Z" fill="currentColor"/>
58
+ <path d="M402.375 192.75H398.375V192H402.375V192.75Z" fill="currentColor"/>
59
+ <path d="M410.375 192.75H406.375V192H410.375V192.75Z" fill="currentColor"/>
60
+ <path d="M418.375 192.75H414.375V192H418.375V192.75Z" fill="currentColor"/>
61
+ <path d="M426.375 192.75H422.375V192H426.375V192.75Z" fill="currentColor"/>
62
+ <path d="M434.375 192.75H430.375V192H434.375V192.75Z" fill="currentColor"/>
63
+ <path d="M442.375 192.75H438.375V192H442.375V192.75Z" fill="currentColor"/>
64
+ <path d="M450.375 192.75H446.375V192H450.375V192.75Z" fill="currentColor"/>
65
+ <path d="M458.375 192.75H454.375V192H458.375V192.75Z" fill="currentColor"/>
66
+ <path d="M466.375 192.75H462.375V192H466.375V192.75Z" fill="currentColor"/>
67
+ <path d="M474.375 192.75H470.375V192H474.375V192.75Z" fill="currentColor"/>
68
+ <path d="M482.375 192.75H478.375V192H482.375V192.75Z" fill="currentColor"/>
69
+ <path d="M490.375 192.75H486.375V192H490.375V192.75Z" fill="currentColor"/>
70
+ <path d="M498.375 192.75H494.375V192H498.375V192.75Z" fill="currentColor"/>
71
+ <path d="M506.375 192.75H502.375V192H506.375V192.75Z" fill="currentColor"/>
72
+ <path d="M514.375 192.75H510.375V192H514.375V192.75Z" fill="currentColor"/>
73
+ <path d="M520.75 192H522.375V192.75H518.375V192H520V190H520.75V192Z" fill="currentColor"/>
74
+ <path d="M530.375 192.75H526.375V192H530.375V192.75Z" fill="currentColor"/>
75
+ <path d="M538.375 192.75H534.375V192H538.375V192.75Z" fill="currentColor"/>
76
+ <path d="M546.375 192.75H542.375V192H546.375V192.75Z" fill="currentColor"/>
77
+ <path d="M552.75 192.75H550.375V192H552V190H552.75V192.75Z" fill="currentColor"/>
78
+ <path d="M0.75 186.75H0V182H0.75V186.75Z" fill="currentColor"/>
79
+ <path d="M32.75 186.75H32V182H32.75V186.75Z" fill="currentColor"/>
80
+ <path d="M368.75 186.75H368V182H368.75V186.75Z" fill="currentColor"/>
81
+ <path d="M392.75 186.75H392V182H392.75V186.75Z" fill="currentColor"/>
82
+ <path d="M520.75 186.75H520V182H520.75V186.75Z" fill="currentColor"/>
83
+ <path d="M552.75 186.75H552V182H552.75V186.75Z" fill="currentColor"/>
84
+ <path d="M0.75 178.75H0V174H0.75V178.75Z" fill="currentColor"/>
85
+ <path d="M32.75 178.75H32V174H32.75V178.75Z" fill="currentColor"/>
86
+ <path d="M368.75 178.75H368V174H368.75V178.75Z" fill="currentColor"/>
87
+ <path d="M392.75 178.75H392V174H392.75V178.75Z" fill="currentColor"/>
88
+ <path d="M520.75 178.75H520V174H520.75V178.75Z" fill="currentColor"/>
89
+ <path d="M552.75 178.75H552V174H552.75V178.75Z" fill="currentColor"/>
90
+ <path d="M0.75 170.75H0V166H0.75V170.75Z" fill="currentColor"/>
91
+ <path d="M32.75 170.75H32V166H32.75V170.75Z" fill="currentColor"/>
92
+ <path d="M368.75 170.75H368V166H368.75V170.75Z" fill="currentColor"/>
93
+ <path d="M392.75 170.75H392V166H392.75V170.75Z" fill="currentColor"/>
94
+ <path d="M520.75 170.75H520V166H520.75V170.75Z" fill="currentColor"/>
95
+ <path d="M552.75 170.75H552V166H552.75V170.75Z" fill="currentColor"/>
96
+ <path d="M0.75 160H2.375V160.75H0.75V162.75H0V158H0.75V160Z" fill="currentColor"/>
97
+ <path d="M32.75 160H34.375V160.75H32.75V162.75H32V160.75H30.375V160H32V158H32.75V160Z" fill="currentColor"/>
98
+ <path d="M368.75 160H370.375V160.75H368.75V162.75H368V160.75H366.375V160H368V158H368.75V160Z" fill="currentColor"/>
99
+ <path d="M392.75 160H394.375V160.75H392.75V162.75H392V160.75H390.375V160H392V158H392.75V160Z" fill="currentColor"/>
100
+ <path d="M520.75 160H522.375V160.75H520.75V162.75H520V160.75H518.375V160H520V158H520.75V160Z" fill="currentColor"/>
101
+ <path d="M552.75 162.75H552V160.75H550.375V160H552V158H552.75V162.75Z" fill="currentColor"/>
102
+ <path d="M10.375 160.75H6.375V160H10.375V160.75Z" fill="currentColor"/>
103
+ <path d="M18.375 160.75H14.375V160H18.375V160.75Z" fill="currentColor"/>
104
+ <path d="M26.375 160.75H22.375V160H26.375V160.75Z" fill="currentColor"/>
105
+ <path d="M42.375 160.75H38.375V160H42.375V160.75Z" fill="currentColor"/>
106
+ <path d="M50.375 160.75H46.375V160H50.375V160.75Z" fill="currentColor"/>
107
+ <path d="M58.375 160.75H54.375V160H58.375V160.75Z" fill="currentColor"/>
108
+ <path d="M66.375 160.75H62.375V160H66.375V160.75Z" fill="currentColor"/>
109
+ <path d="M74.375 160.75H70.375V160H74.375V160.75Z" fill="currentColor"/>
110
+ <path d="M82.375 160.75H78.375V160H82.375V160.75Z" fill="currentColor"/>
111
+ <path d="M90.375 160.75H86.375V160H90.375V160.75Z" fill="currentColor"/>
112
+ <path d="M98.375 160.75H94.375V160H98.375V160.75Z" fill="currentColor"/>
113
+ <path d="M106.375 160.75H102.375V160H106.375V160.75Z" fill="currentColor"/>
114
+ <path d="M114.375 160.75H110.375V160H114.375V160.75Z" fill="currentColor"/>
115
+ <path d="M122.375 160.75H118.375V160H122.375V160.75Z" fill="currentColor"/>
116
+ <path d="M130.375 160.75H126.375V160H130.375V160.75Z" fill="currentColor"/>
117
+ <path d="M138.375 160.75H134.375V160H138.375V160.75Z" fill="currentColor"/>
118
+ <path d="M146.375 160.75H142.375V160H146.375V160.75Z" fill="currentColor"/>
119
+ <path d="M154.375 160.75H150.375V160H154.375V160.75Z" fill="currentColor"/>
120
+ <path d="M162.375 160.75H158.375V160H162.375V160.75Z" fill="currentColor"/>
121
+ <path d="M170.375 160.75H166.375V160H170.375V160.75Z" fill="currentColor"/>
122
+ <path d="M178.375 160.75H174.375V160H178.375V160.75Z" fill="currentColor"/>
123
+ <path d="M186.375 160.75H182.375V160H186.375V160.75Z" fill="currentColor"/>
124
+ <path d="M194.375 160.75H190.375V160H194.375V160.75Z" fill="currentColor"/>
125
+ <path d="M202.375 160.75H198.375V160H202.375V160.75Z" fill="currentColor"/>
126
+ <path d="M210.375 160.75H206.375V160H210.375V160.75Z" fill="currentColor"/>
127
+ <path d="M218.375 160.75H214.375V160H218.375V160.75Z" fill="currentColor"/>
128
+ <path d="M226.375 160.75H222.375V160H226.375V160.75Z" fill="currentColor"/>
129
+ <path d="M234.375 160.75H230.375V160H234.375V160.75Z" fill="currentColor"/>
130
+ <path d="M242.375 160.75H238.375V160H242.375V160.75Z" fill="currentColor"/>
131
+ <path d="M250.375 160.75H246.375V160H250.375V160.75Z" fill="currentColor"/>
132
+ <path d="M258.375 160.75H254.375V160H258.375V160.75Z" fill="currentColor"/>
133
+ <path d="M266.375 160.75H262.375V160H266.375V160.75Z" fill="currentColor"/>
134
+ <path d="M274.375 160.75H270.375V160H274.375V160.75Z" fill="currentColor"/>
135
+ <path d="M282.375 160.75H278.375V160H282.375V160.75Z" fill="currentColor"/>
136
+ <path d="M290.375 160.75H286.375V160H290.375V160.75Z" fill="currentColor"/>
137
+ <path d="M298.375 160.75H294.375V160H298.375V160.75Z" fill="currentColor"/>
138
+ <path d="M306.375 160.75H302.375V160H306.375V160.75Z" fill="currentColor"/>
139
+ <path d="M314.375 160.75H310.375V160H314.375V160.75Z" fill="currentColor"/>
140
+ <path d="M322.375 160.75H318.375V160H322.375V160.75Z" fill="currentColor"/>
141
+ <path d="M330.375 160.75H326.375V160H330.375V160.75Z" fill="currentColor"/>
142
+ <path d="M338.375 160.75H334.375V160H338.375V160.75Z" fill="currentColor"/>
143
+ <path d="M346.375 160.75H342.375V160H346.375V160.75Z" fill="currentColor"/>
144
+ <path d="M354.375 160.75H350.375V160H354.375V160.75Z" fill="currentColor"/>
145
+ <path d="M362.375 160.75H358.375V160H362.375V160.75Z" fill="currentColor"/>
146
+ <path d="M378.375 160.75H374.375V160H378.375V160.75Z" fill="currentColor"/>
147
+ <path d="M386.375 160.75H382.375V160H386.375V160.75Z" fill="currentColor"/>
148
+ <path d="M402.375 160.75H398.375V160H402.375V160.75Z" fill="currentColor"/>
149
+ <path d="M410.375 160.75H406.375V160H410.375V160.75Z" fill="currentColor"/>
150
+ <path d="M418.375 160.75H414.375V160H418.375V160.75Z" fill="currentColor"/>
151
+ <path d="M426.375 160.75H422.375V160H426.375V160.75Z" fill="currentColor"/>
152
+ <path d="M434.375 160.75H430.375V160H434.375V160.75Z" fill="currentColor"/>
153
+ <path d="M442.375 160.75H438.375V160H442.375V160.75Z" fill="currentColor"/>
154
+ <path d="M450.375 160.75H446.375V160H450.375V160.75Z" fill="currentColor"/>
155
+ <path d="M458.375 160.75H454.375V160H458.375V160.75Z" fill="currentColor"/>
156
+ <path d="M466.375 160.75H462.375V160H466.375V160.75Z" fill="currentColor"/>
157
+ <path d="M474.375 160.75H470.375V160H474.375V160.75Z" fill="currentColor"/>
158
+ <path d="M482.375 160.75H478.375V160H482.375V160.75Z" fill="currentColor"/>
159
+ <path d="M490.375 160.75H486.375V160H490.375V160.75Z" fill="currentColor"/>
160
+ <path d="M498.375 160.75H494.375V160H498.375V160.75Z" fill="currentColor"/>
161
+ <path d="M506.375 160.75H502.375V160H506.375V160.75Z" fill="currentColor"/>
162
+ <path d="M514.375 160.75H510.375V160H514.375V160.75Z" fill="currentColor"/>
163
+ <path d="M530.375 160.75H526.375V160H530.375V160.75Z" fill="currentColor"/>
164
+ <path d="M538.375 160.75H534.375V160H538.375V160.75Z" fill="currentColor"/>
165
+ <path d="M546.375 160.75H542.375V160H546.375V160.75Z" fill="currentColor"/>
166
+ <path d="M0.75 154.75H0V150H0.75V154.75Z" fill="currentColor"/>
167
+ <path d="M32.75 154.75H32V150H32.75V154.75Z" fill="currentColor"/>
168
+ <path d="M368.75 154.75H368V150H368.75V154.75Z" fill="currentColor"/>
169
+ <path d="M392.75 154.75H392V150H392.75V154.75Z" fill="currentColor"/>
170
+ <path d="M520.75 154.75H520V150H520.75V154.75Z" fill="currentColor"/>
171
+ <path d="M552.75 154.75H552V150H552.75V154.75Z" fill="currentColor"/>
172
+ <path d="M0.75 146.75H0V142H0.75V146.75Z" fill="currentColor"/>
173
+ <path d="M32.75 146.75H32V142H32.75V146.75Z" fill="currentColor"/>
174
+ <path d="M368.75 146.75H368V142H368.75V146.75Z" fill="currentColor"/>
175
+ <path d="M392.75 146.75H392V142H392.75V146.75Z" fill="currentColor"/>
176
+ <path d="M520.75 146.75H520V142H520.75V146.75Z" fill="currentColor"/>
177
+ <path d="M552.75 146.75H552V142H552.75V146.75Z" fill="currentColor"/>
178
+ <path d="M2.75 140.75H0V140H2.75V140.75Z" fill="currentColor"/>
179
+ <path d="M10.75 140.75H6V140H10.75V140.75Z" fill="currentColor"/>
180
+ <path d="M18.75 140.75H14V140H18.75V140.75Z" fill="currentColor"/>
181
+ <path d="M26.75 140.75H22V140H26.75V140.75Z" fill="currentColor"/>
182
+ <path d="M34.75 140.75H30V140H34.75V140.75Z" fill="currentColor"/>
183
+ <path d="M42.75 140.75H38V140H42.75V140.75Z" fill="currentColor"/>
184
+ <path d="M50.75 140.75H46V140H50.75V140.75Z" fill="currentColor"/>
185
+ <path d="M58.75 140.75H54V140H58.75V140.75Z" fill="currentColor"/>
186
+ <path d="M66.75 140.75H62V140H66.75V140.75Z" fill="currentColor"/>
187
+ <path d="M74.75 140.75H70V140H74.75V140.75Z" fill="currentColor"/>
188
+ <path d="M82.75 140.75H78V140H82.75V140.75Z" fill="currentColor"/>
189
+ <path d="M90.75 140.75H86V140H90.75V140.75Z" fill="currentColor"/>
190
+ <path d="M98.75 140.75H94V140H98.75V140.75Z" fill="currentColor"/>
191
+ <path d="M106.75 140.75H102V140H106.75V140.75Z" fill="currentColor"/>
192
+ <path d="M114.75 140.75H110V140H114.75V140.75Z" fill="currentColor"/>
193
+ <path d="M122.75 140.75H118V140H122.75V140.75Z" fill="currentColor"/>
194
+ <path d="M130.75 140.75H126V140H130.75V140.75Z" fill="currentColor"/>
195
+ <path d="M138.75 140.75H134V140H138.75V140.75Z" fill="currentColor"/>
196
+ <path d="M146.75 140.75H142V140H146.75V140.75Z" fill="currentColor"/>
197
+ <path d="M154.75 140.75H150V140H154.75V140.75Z" fill="currentColor"/>
198
+ <path d="M162.75 140.75H158V140H162.75V140.75Z" fill="currentColor"/>
199
+ <path d="M170.75 140.75H166V140H170.75V140.75Z" fill="currentColor"/>
200
+ <path d="M178.75 140.75H174V140H178.75V140.75Z" fill="currentColor"/>
201
+ <path d="M186.75 140.75H182V140H186.75V140.75Z" fill="currentColor"/>
202
+ <path d="M194.75 140.75H190V140H194.75V140.75Z" fill="currentColor"/>
203
+ <path d="M202.75 140.75H198V140H202.75V140.75Z" fill="currentColor"/>
204
+ <path d="M210.75 140.75H206V140H210.75V140.75Z" fill="currentColor"/>
205
+ <path d="M218.75 140.75H214V140H218.75V140.75Z" fill="currentColor"/>
206
+ <path d="M226.75 140.75H222V140H226.75V140.75Z" fill="currentColor"/>
207
+ <path d="M234.75 140.75H230V140H234.75V140.75Z" fill="currentColor"/>
208
+ <path d="M242.75 140.75H238V140H242.75V140.75Z" fill="currentColor"/>
209
+ <path d="M250.75 140.75H246V140H250.75V140.75Z" fill="currentColor"/>
210
+ <path d="M258.75 140.75H254V140H258.75V140.75Z" fill="currentColor"/>
211
+ <path d="M266.75 140.75H262V140H266.75V140.75Z" fill="currentColor"/>
212
+ <path d="M274.75 140.75H270V140H274.75V140.75Z" fill="currentColor"/>
213
+ <path d="M282.75 140.75H278V140H282.75V140.75Z" fill="currentColor"/>
214
+ <path d="M290.75 140.75H286V140H290.75V140.75Z" fill="currentColor"/>
215
+ <path d="M298.75 140.75H294V140H298.75V140.75Z" fill="currentColor"/>
216
+ <path d="M306.75 140.75H302V140H306.75V140.75Z" fill="currentColor"/>
217
+ <path d="M314.75 140.75H310V140H314.75V140.75Z" fill="currentColor"/>
218
+ <path d="M322.75 140.75H318V140H322.75V140.75Z" fill="currentColor"/>
219
+ <path d="M330.75 140.75H326V140H330.75V140.75Z" fill="currentColor"/>
220
+ <path d="M338.75 140.75H334V140H338.75V140.75Z" fill="currentColor"/>
221
+ <path d="M346.75 140.75H342V140H346.75V140.75Z" fill="currentColor"/>
222
+ <path d="M354.75 140.75H350V140H354.75V140.75Z" fill="currentColor"/>
223
+ <path d="M362.75 140.75H358V140H362.75V140.75Z" fill="currentColor"/>
224
+ <path d="M370.75 140.75H366V140H370.75V140.75Z" fill="currentColor"/>
225
+ <path d="M378.75 140.75H374V140H378.75V140.75Z" fill="currentColor"/>
226
+ <path d="M386.75 140.75H382V140H386.75V140.75Z" fill="currentColor"/>
227
+ <path d="M394.75 140.75H390V140H394.75V140.75Z" fill="currentColor"/>
228
+ <path d="M402.75 140.75H398V140H402.75V140.75Z" fill="currentColor"/>
229
+ <path d="M410.75 140.75H406V140H410.75V140.75Z" fill="currentColor"/>
230
+ <path d="M418.75 140.75H414V140H418.75V140.75Z" fill="currentColor"/>
231
+ <path d="M426.75 140.75H422V140H426.75V140.75Z" fill="currentColor"/>
232
+ <path d="M434.75 140.75H430V140H434.75V140.75Z" fill="currentColor"/>
233
+ <path d="M442.75 140.75H438V140H442.75V140.75Z" fill="currentColor"/>
234
+ <path d="M450.75 140.75H446V140H450.75V140.75Z" fill="currentColor"/>
235
+ <path d="M458.75 140.75H454V140H458.75V140.75Z" fill="currentColor"/>
236
+ <path d="M466.75 140.75H462V140H466.75V140.75Z" fill="currentColor"/>
237
+ <path d="M474.75 140.75H470V140H474.75V140.75Z" fill="currentColor"/>
238
+ <path d="M482.75 140.75H478V140H482.75V140.75Z" fill="currentColor"/>
239
+ <path d="M490.75 140.75H486V140H490.75V140.75Z" fill="currentColor"/>
240
+ <path d="M498.75 140.75H494V140H498.75V140.75Z" fill="currentColor"/>
241
+ <path d="M506.75 140.75H502V140H506.75V140.75Z" fill="currentColor"/>
242
+ <path d="M514.75 140.75H510V140H514.75V140.75Z" fill="currentColor"/>
243
+ <path d="M522.75 140.75H518V140H522.75V140.75Z" fill="currentColor"/>
244
+ <path d="M530.75 140.75H526V140H530.75V140.75Z" fill="currentColor"/>
245
+ <path d="M538.75 140.75H534V140H538.75V140.75Z" fill="currentColor"/>
246
+ <path d="M546.75 140.75H542V140H546.75V140.75Z" fill="currentColor"/>
247
+ <path d="M552.75 140.75H550V140H552.75V140.75Z" fill="currentColor"/>
248
+ <path d="M0.75 138.75H0V134H0.75V138.75Z" fill="currentColor"/>
249
+ <path d="M32.75 138.75H32V134H32.75V138.75Z" fill="currentColor"/>
250
+ <path d="M368.75 138.75H368V134H368.75V138.75Z" fill="currentColor"/>
251
+ <path d="M392.75 138.75H392V134H392.75V138.75Z" fill="currentColor"/>
252
+ <path d="M520.75 138.75H520V134H520.75V138.75Z" fill="currentColor"/>
253
+ <path d="M552.75 138.75H552V134H552.75V138.75Z" fill="currentColor"/>
254
+ <path d="M0.75 130.75H0V126H0.75V130.75Z" fill="currentColor"/>
255
+ <path d="M32.75 130.75H32V126H32.75V130.75Z" fill="currentColor"/>
256
+ <path d="M368.75 130.75H368V126H368.75V130.75Z" fill="currentColor"/>
257
+ <path d="M392.75 130.75H392V126H392.75V130.75Z" fill="currentColor"/>
258
+ <path d="M520.75 130.75H520V126H520.75V130.75Z" fill="currentColor"/>
259
+ <path d="M552.75 130.75H552V126H552.75V130.75Z" fill="currentColor"/>
260
+ <path d="M0.75 122.75H0V118H0.75V122.75Z" fill="currentColor"/>
261
+ <path d="M32.75 122.75H32V118H32.75V122.75Z" fill="currentColor"/>
262
+ <path d="M368.75 122.75H368V118H368.75V122.75Z" fill="currentColor"/>
263
+ <path d="M392.75 122.75H392V118H392.75V122.75Z" fill="currentColor"/>
264
+ <path d="M520.75 122.75H520V118H520.75V122.75Z" fill="currentColor"/>
265
+ <path d="M552.75 122.75H552V118H552.75V122.75Z" fill="currentColor"/>
266
+ <path d="M0.75 114.75H0V110H0.75V114.75Z" fill="currentColor"/>
267
+ <path d="M32.75 114.75H32V110H32.75V114.75Z" fill="currentColor"/>
268
+ <path d="M368.75 114.75H368V110H368.75V114.75Z" fill="currentColor"/>
269
+ <path d="M392.75 114.75H392V110H392.75V114.75Z" fill="currentColor"/>
270
+ <path d="M520.75 114.75H520V110H520.75V114.75Z" fill="currentColor"/>
271
+ <path d="M552.75 114.75H552V110H552.75V114.75Z" fill="currentColor"/>
272
+ <path d="M0.75 106.75H0V102H0.75V106.75Z" fill="currentColor"/>
273
+ <path d="M32.75 106.75H32V102H32.75V106.75Z" fill="currentColor"/>
274
+ <path d="M368.75 106.75H368V102H368.75V106.75Z" fill="currentColor"/>
275
+ <path d="M392.75 106.75H392V102H392.75V106.75Z" fill="currentColor"/>
276
+ <path d="M520.75 106.75H520V102H520.75V106.75Z" fill="currentColor"/>
277
+ <path d="M552.75 106.75H552V102H552.75V106.75Z" fill="currentColor"/>
278
+ <path d="M0.75 96H2.75V96.75H0.75V98.75H0V94H0.75V96Z" fill="currentColor"/>
279
+ <path d="M32.75 96H34.75V96.75H32.75V98.75H32V96.75H30V96H32V94H32.75V96Z" fill="currentColor"/>
280
+ <path d="M368.75 96H370.75V96.75H368.75V98.75H368V96.75H366V96H368V94H368.75V96Z" fill="currentColor"/>
281
+ <path d="M392.75 96H394.75V96.75H392.75V98.75H392V96.75H390V96H392V94H392.75V96Z" fill="currentColor"/>
282
+ <path d="M520.75 96H522.75V96.75H520.75V98.75H520V96.75H518V96H520V94H520.75V96Z" fill="currentColor"/>
283
+ <path d="M552.75 98.75H552V96.75H550V96H552V94H552.75V98.75Z" fill="currentColor"/>
284
+ <path d="M10.75 96.75H6V96H10.75V96.75Z" fill="currentColor"/>
285
+ <path d="M18.75 96.75H14V96H18.75V96.75Z" fill="currentColor"/>
286
+ <path d="M26.75 96.75H22V96H26.75V96.75Z" fill="currentColor"/>
287
+ <path d="M42.75 96.75H38V96H42.75V96.75Z" fill="currentColor"/>
288
+ <path d="M50.75 96.75H46V96H50.75V96.75Z" fill="currentColor"/>
289
+ <path d="M58.75 96.75H54V96H58.75V96.75Z" fill="currentColor"/>
290
+ <path d="M66.75 96.75H62V96H66.75V96.75Z" fill="currentColor"/>
291
+ <path d="M74.75 96.75H70V96H74.75V96.75Z" fill="currentColor"/>
292
+ <path d="M82.75 96.75H78V96H82.75V96.75Z" fill="currentColor"/>
293
+ <path d="M90.75 96.75H86V96H90.75V96.75Z" fill="currentColor"/>
294
+ <path d="M98.75 96.75H94V96H98.75V96.75Z" fill="currentColor"/>
295
+ <path d="M106.75 96.75H102V96H106.75V96.75Z" fill="currentColor"/>
296
+ <path d="M114.75 96.75H110V96H114.75V96.75Z" fill="currentColor"/>
297
+ <path d="M122.75 96.75H118V96H122.75V96.75Z" fill="currentColor"/>
298
+ <path d="M130.75 96.75H126V96H130.75V96.75Z" fill="currentColor"/>
299
+ <path d="M138.75 96.75H134V96H138.75V96.75Z" fill="currentColor"/>
300
+ <path d="M146.75 96.75H142V96H146.75V96.75Z" fill="currentColor"/>
301
+ <path d="M154.75 96.75H150V96H154.75V96.75Z" fill="currentColor"/>
302
+ <path d="M162.75 96.75H158V96H162.75V96.75Z" fill="currentColor"/>
303
+ <path d="M170.75 96.75H166V96H170.75V96.75Z" fill="currentColor"/>
304
+ <path d="M178.75 96.75H174V96H178.75V96.75Z" fill="currentColor"/>
305
+ <path d="M186.75 96.75H182V96H186.75V96.75Z" fill="currentColor"/>
306
+ <path d="M194.75 96.75H190V96H194.75V96.75Z" fill="currentColor"/>
307
+ <path d="M202.75 96.75H198V96H202.75V96.75Z" fill="currentColor"/>
308
+ <path d="M210.75 96.75H206V96H210.75V96.75Z" fill="currentColor"/>
309
+ <path d="M218.75 96.75H214V96H218.75V96.75Z" fill="currentColor"/>
310
+ <path d="M226.75 96.75H222V96H226.75V96.75Z" fill="currentColor"/>
311
+ <path d="M234.75 96.75H230V96H234.75V96.75Z" fill="currentColor"/>
312
+ <path d="M242.75 96.75H238V96H242.75V96.75Z" fill="currentColor"/>
313
+ <path d="M250.75 96.75H246V96H250.75V96.75Z" fill="currentColor"/>
314
+ <path d="M258.75 96.75H254V96H258.75V96.75Z" fill="currentColor"/>
315
+ <path d="M266.75 96.75H262V96H266.75V96.75Z" fill="currentColor"/>
316
+ <path d="M274.75 96.75H270V96H274.75V96.75Z" fill="currentColor"/>
317
+ <path d="M282.75 96.75H278V96H282.75V96.75Z" fill="currentColor"/>
318
+ <path d="M290.75 96.75H286V96H290.75V96.75Z" fill="currentColor"/>
319
+ <path d="M298.75 96.75H294V96H298.75V96.75Z" fill="currentColor"/>
320
+ <path d="M306.75 96.75H302V96H306.75V96.75Z" fill="currentColor"/>
321
+ <path d="M314.75 96.75H310V96H314.75V96.75Z" fill="currentColor"/>
322
+ <path d="M322.75 96.75H318V96H322.75V96.75Z" fill="currentColor"/>
323
+ <path d="M330.75 96.75H326V96H330.75V96.75Z" fill="currentColor"/>
324
+ <path d="M338.75 96.75H334V96H338.75V96.75Z" fill="currentColor"/>
325
+ <path d="M346.75 96.75H342V96H346.75V96.75Z" fill="currentColor"/>
326
+ <path d="M354.75 96.75H350V96H354.75V96.75Z" fill="currentColor"/>
327
+ <path d="M362.75 96.75H358V96H362.75V96.75Z" fill="currentColor"/>
328
+ <path d="M378.75 96.75H374V96H378.75V96.75Z" fill="currentColor"/>
329
+ <path d="M386.75 96.75H382V96H386.75V96.75Z" fill="currentColor"/>
330
+ <path d="M402.75 96.75H398V96H402.75V96.75Z" fill="currentColor"/>
331
+ <path d="M410.75 96.75H406V96H410.75V96.75Z" fill="currentColor"/>
332
+ <path d="M418.75 96.75H414V96H418.75V96.75Z" fill="currentColor"/>
333
+ <path d="M426.75 96.75H422V96H426.75V96.75Z" fill="currentColor"/>
334
+ <path d="M434.75 96.75H430V96H434.75V96.75Z" fill="currentColor"/>
335
+ <path d="M442.75 96.75H438V96H442.75V96.75Z" fill="currentColor"/>
336
+ <path d="M450.75 96.75H446V96H450.75V96.75Z" fill="currentColor"/>
337
+ <path d="M458.75 96.75H454V96H458.75V96.75Z" fill="currentColor"/>
338
+ <path d="M466.75 96.75H462V96H466.75V96.75Z" fill="currentColor"/>
339
+ <path d="M474.75 96.75H470V96H474.75V96.75Z" fill="currentColor"/>
340
+ <path d="M482.75 96.75H478V96H482.75V96.75Z" fill="currentColor"/>
341
+ <path d="M490.75 96.75H486V96H490.75V96.75Z" fill="currentColor"/>
342
+ <path d="M498.75 96.75H494V96H498.75V96.75Z" fill="currentColor"/>
343
+ <path d="M506.75 96.75H502V96H506.75V96.75Z" fill="currentColor"/>
344
+ <path d="M514.75 96.75H510V96H514.75V96.75Z" fill="currentColor"/>
345
+ <path d="M530.75 96.75H526V96H530.75V96.75Z" fill="currentColor"/>
346
+ <path d="M538.75 96.75H534V96H538.75V96.75Z" fill="currentColor"/>
347
+ <path d="M546.75 96.75H542V96H546.75V96.75Z" fill="currentColor"/>
348
+ <path d="M0.75 90.75H0V86H0.75V90.75Z" fill="currentColor"/>
349
+ <path d="M32.75 90.75H32V86H32.75V90.75Z" fill="currentColor"/>
350
+ <path d="M368.75 90.75H368V86H368.75V90.75Z" fill="currentColor"/>
351
+ <path d="M392.75 90.75H392V86H392.75V90.75Z" fill="currentColor"/>
352
+ <path d="M520.75 90.75H520V86H520.75V90.75Z" fill="currentColor"/>
353
+ <path d="M552.75 90.75H552V86H552.75V90.75Z" fill="currentColor"/>
354
+ <path d="M0.75 82.75H0V78H0.75V82.75Z" fill="currentColor"/>
355
+ <path d="M32.75 82.75H32V78H32.75V82.75Z" fill="currentColor"/>
356
+ <path d="M368.75 82.75H368V78H368.75V82.75Z" fill="currentColor"/>
357
+ <path d="M392.75 82.75H392V78H392.75V82.75Z" fill="currentColor"/>
358
+ <path d="M520.75 82.75H520V78H520.75V82.75Z" fill="currentColor"/>
359
+ <path d="M552.75 82.75H552V78H552.75V82.75Z" fill="currentColor"/>
360
+ <path d="M0.75 74.75H0V70H0.75V74.75Z" fill="currentColor"/>
361
+ <path d="M32.75 74.75H32V70H32.75V74.75Z" fill="currentColor"/>
362
+ <path d="M368.75 74.75H368V70H368.75V74.75Z" fill="currentColor"/>
363
+ <path d="M392.75 74.75H392V70H392.75V74.75Z" fill="currentColor"/>
364
+ <path d="M520.75 74.75H520V70H520.75V74.75Z" fill="currentColor"/>
365
+ <path d="M552.75 74.75H552V70H552.75V74.75Z" fill="currentColor"/>
366
+ <path d="M0.75 66.75H0V62H0.75V66.75Z" fill="currentColor"/>
367
+ <path d="M32.75 66.75H32V62H32.75V66.75Z" fill="currentColor"/>
368
+ <path d="M368.75 66.75H368V62H368.75V66.75Z" fill="currentColor"/>
369
+ <path d="M392.75 66.75H392V62H392.75V66.75Z" fill="currentColor"/>
370
+ <path d="M520.75 66.75H520V62H520.75V66.75Z" fill="currentColor"/>
371
+ <path d="M552.75 66.75H552V62H552.75V66.75Z" fill="currentColor"/>
372
+ <path d="M0.75 58.75H0V54H0.75V58.75Z" fill="currentColor"/>
373
+ <path d="M32.75 58.75H32V54H32.75V58.75Z" fill="currentColor"/>
374
+ <path d="M368.75 58.75H368V54H368.75V58.75Z" fill="currentColor"/>
375
+ <path d="M392.75 58.75H392V54H392.75V58.75Z" fill="currentColor"/>
376
+ <path d="M520.75 58.75H520V54H520.75V58.75Z" fill="currentColor"/>
377
+ <path d="M552.75 58.75H552V54H552.75V58.75Z" fill="currentColor"/>
378
+ <path d="M2.375 52.75H0V52H2.375V52.75Z" fill="currentColor"/>
379
+ <path d="M10.375 52.75H6.375V52H10.375V52.75Z" fill="currentColor"/>
380
+ <path d="M18.375 52.75H14.375V52H18.375V52.75Z" fill="currentColor"/>
381
+ <path d="M26.375 52.75H22.375V52H26.375V52.75Z" fill="currentColor"/>
382
+ <path d="M34.375 52.75H30.375V52H34.375V52.75Z" fill="currentColor"/>
383
+ <path d="M42.375 52.75H38.375V52H42.375V52.75Z" fill="currentColor"/>
384
+ <path d="M50.375 52.75H46.375V52H50.375V52.75Z" fill="currentColor"/>
385
+ <path d="M58.375 52.75H54.375V52H58.375V52.75Z" fill="currentColor"/>
386
+ <path d="M66.375 52.75H62.375V52H66.375V52.75Z" fill="currentColor"/>
387
+ <path d="M74.375 52.75H70.375V52H74.375V52.75Z" fill="currentColor"/>
388
+ <path d="M82.375 52.75H78.375V52H82.375V52.75Z" fill="currentColor"/>
389
+ <path d="M90.375 52.75H86.375V52H90.375V52.75Z" fill="currentColor"/>
390
+ <path d="M98.375 52.75H94.375V52H98.375V52.75Z" fill="currentColor"/>
391
+ <path d="M106.375 52.75H102.375V52H106.375V52.75Z" fill="currentColor"/>
392
+ <path d="M114.375 52.75H110.375V52H114.375V52.75Z" fill="currentColor"/>
393
+ <path d="M122.375 52.75H118.375V52H122.375V52.75Z" fill="currentColor"/>
394
+ <path d="M130.375 52.75H126.375V52H130.375V52.75Z" fill="currentColor"/>
395
+ <path d="M138.375 52.75H134.375V52H138.375V52.75Z" fill="currentColor"/>
396
+ <path d="M146.375 52.75H142.375V52H146.375V52.75Z" fill="currentColor"/>
397
+ <path d="M154.375 52.75H150.375V52H154.375V52.75Z" fill="currentColor"/>
398
+ <path d="M162.375 52.75H158.375V52H162.375V52.75Z" fill="currentColor"/>
399
+ <path d="M170.375 52.75H166.375V52H170.375V52.75Z" fill="currentColor"/>
400
+ <path d="M178.375 52.75H174.375V52H178.375V52.75Z" fill="currentColor"/>
401
+ <path d="M186.375 52.75H182.375V52H186.375V52.75Z" fill="currentColor"/>
402
+ <path d="M194.375 52.75H190.375V52H194.375V52.75Z" fill="currentColor"/>
403
+ <path d="M202.375 52.75H198.375V52H202.375V52.75Z" fill="currentColor"/>
404
+ <path d="M210.375 52.75H206.375V52H210.375V52.75Z" fill="currentColor"/>
405
+ <path d="M218.375 52.75H214.375V52H218.375V52.75Z" fill="currentColor"/>
406
+ <path d="M226.375 52.75H222.375V52H226.375V52.75Z" fill="currentColor"/>
407
+ <path d="M234.375 52.75H230.375V52H234.375V52.75Z" fill="currentColor"/>
408
+ <path d="M242.375 52.75H238.375V52H242.375V52.75Z" fill="currentColor"/>
409
+ <path d="M250.375 52.75H246.375V52H250.375V52.75Z" fill="currentColor"/>
410
+ <path d="M258.375 52.75H254.375V52H258.375V52.75Z" fill="currentColor"/>
411
+ <path d="M266.375 52.75H262.375V52H266.375V52.75Z" fill="currentColor"/>
412
+ <path d="M274.375 52.75H270.375V52H274.375V52.75Z" fill="currentColor"/>
413
+ <path d="M282.375 52.75H278.375V52H282.375V52.75Z" fill="currentColor"/>
414
+ <path d="M290.375 52.75H286.375V52H290.375V52.75Z" fill="currentColor"/>
415
+ <path d="M298.375 52.75H294.375V52H298.375V52.75Z" fill="currentColor"/>
416
+ <path d="M306.375 52.75H302.375V52H306.375V52.75Z" fill="currentColor"/>
417
+ <path d="M314.375 52.75H310.375V52H314.375V52.75Z" fill="currentColor"/>
418
+ <path d="M322.375 52.75H318.375V52H322.375V52.75Z" fill="currentColor"/>
419
+ <path d="M330.375 52.75H326.375V52H330.375V52.75Z" fill="currentColor"/>
420
+ <path d="M338.375 52.75H334.375V52H338.375V52.75Z" fill="currentColor"/>
421
+ <path d="M346.375 52.75H342.375V52H346.375V52.75Z" fill="currentColor"/>
422
+ <path d="M354.375 52.75H350.375V52H354.375V52.75Z" fill="currentColor"/>
423
+ <path d="M362.375 52.75H358.375V52H362.375V52.75Z" fill="currentColor"/>
424
+ <path d="M370.375 52.75H366.375V52H370.375V52.75Z" fill="currentColor"/>
425
+ <path d="M378.375 52.75H374.375V52H378.375V52.75Z" fill="currentColor"/>
426
+ <path d="M386.375 52.75H382.375V52H386.375V52.75Z" fill="currentColor"/>
427
+ <path d="M394.375 52.75H390.375V52H394.375V52.75Z" fill="currentColor"/>
428
+ <path d="M402.375 52.75H398.375V52H402.375V52.75Z" fill="currentColor"/>
429
+ <path d="M410.375 52.75H406.375V52H410.375V52.75Z" fill="currentColor"/>
430
+ <path d="M418.375 52.75H414.375V52H418.375V52.75Z" fill="currentColor"/>
431
+ <path d="M426.375 52.75H422.375V52H426.375V52.75Z" fill="currentColor"/>
432
+ <path d="M434.375 52.75H430.375V52H434.375V52.75Z" fill="currentColor"/>
433
+ <path d="M442.375 52.75H438.375V52H442.375V52.75Z" fill="currentColor"/>
434
+ <path d="M450.375 52.75H446.375V52H450.375V52.75Z" fill="currentColor"/>
435
+ <path d="M458.375 52.75H454.375V52H458.375V52.75Z" fill="currentColor"/>
436
+ <path d="M466.375 52.75H462.375V52H466.375V52.75Z" fill="currentColor"/>
437
+ <path d="M474.375 52.75H470.375V52H474.375V52.75Z" fill="currentColor"/>
438
+ <path d="M482.375 52.75H478.375V52H482.375V52.75Z" fill="currentColor"/>
439
+ <path d="M490.375 52.75H486.375V52H490.375V52.75Z" fill="currentColor"/>
440
+ <path d="M498.375 52.75H494.375V52H498.375V52.75Z" fill="currentColor"/>
441
+ <path d="M506.375 52.75H502.375V52H506.375V52.75Z" fill="currentColor"/>
442
+ <path d="M514.375 52.75H510.375V52H514.375V52.75Z" fill="currentColor"/>
443
+ <path d="M522.375 52.75H518.375V52H522.375V52.75Z" fill="currentColor"/>
444
+ <path d="M530.375 52.75H526.375V52H530.375V52.75Z" fill="currentColor"/>
445
+ <path d="M538.375 52.75H534.375V52H538.375V52.75Z" fill="currentColor"/>
446
+ <path d="M546.375 52.75H542.375V52H546.375V52.75Z" fill="currentColor"/>
447
+ <path d="M552.75 52.75H550.375V52H552.75V52.75Z" fill="currentColor"/>
448
+ <path d="M0.75 50.75H0V46H0.75V50.75Z" fill="currentColor"/>
449
+ <path d="M32.75 50.75H32V46H32.75V50.75Z" fill="currentColor"/>
450
+ <path d="M368.75 50.75H368V46H368.75V50.75Z" fill="currentColor"/>
451
+ <path d="M392.75 50.75H392V46H392.75V50.75Z" fill="currentColor"/>
452
+ <path d="M520.75 50.75H520V46H520.75V50.75Z" fill="currentColor"/>
453
+ <path d="M552.75 50.75H552V46H552.75V50.75Z" fill="currentColor"/>
454
+ <path d="M0.75 42.75H0V38H0.75V42.75Z" fill="currentColor"/>
455
+ <path d="M32.75 42.75H32V38H32.75V42.75Z" fill="currentColor"/>
456
+ <path d="M368.75 42.75H368V38H368.75V42.75Z" fill="currentColor"/>
457
+ <path d="M392.75 42.75H392V38H392.75V42.75Z" fill="currentColor"/>
458
+ <path d="M520.75 42.75H520V38H520.75V42.75Z" fill="currentColor"/>
459
+ <path d="M552.75 42.75H552V38H552.75V42.75Z" fill="currentColor"/>
460
+ <path d="M0.75 32H2.375V32.75H0.75V34.75H0V30H0.75V32Z" fill="currentColor"/>
461
+ <path d="M32.75 32H34.375V32.75H32.75V34.75H32V32.75H30.375V32H32V30H32.75V32Z" fill="currentColor"/>
462
+ <path d="M368.75 32H370.375V32.75H368.75V34.75H368V32.75H366.375V32H368V30H368.75V32Z" fill="currentColor"/>
463
+ <path d="M392.75 32H394.375V32.75H392.75V34.75H392V32.75H390.375V32H392V30H392.75V32Z" fill="currentColor"/>
464
+ <path d="M520.75 32H522.375V32.75H520.75V34.75H520V32.75H518.375V32H520V30H520.75V32Z" fill="currentColor"/>
465
+ <path d="M552.75 34.75H552V32.75H550.375V32H552V30H552.75V34.75Z" fill="currentColor"/>
466
+ <path d="M10.375 32.75H6.375V32H10.375V32.75Z" fill="currentColor"/>
467
+ <path d="M18.375 32.75H14.375V32H18.375V32.75Z" fill="currentColor"/>
468
+ <path d="M26.375 32.75H22.375V32H26.375V32.75Z" fill="currentColor"/>
469
+ <path d="M42.375 32.75H38.375V32H42.375V32.75Z" fill="currentColor"/>
470
+ <path d="M50.375 32.75H46.375V32H50.375V32.75Z" fill="currentColor"/>
471
+ <path d="M58.375 32.75H54.375V32H58.375V32.75Z" fill="currentColor"/>
472
+ <path d="M66.375 32.75H62.375V32H66.375V32.75Z" fill="currentColor"/>
473
+ <path d="M74.375 32.75H70.375V32H74.375V32.75Z" fill="currentColor"/>
474
+ <path d="M82.375 32.75H78.375V32H82.375V32.75Z" fill="currentColor"/>
475
+ <path d="M90.375 32.75H86.375V32H90.375V32.75Z" fill="currentColor"/>
476
+ <path d="M98.375 32.75H94.375V32H98.375V32.75Z" fill="currentColor"/>
477
+ <path d="M106.375 32.75H102.375V32H106.375V32.75Z" fill="currentColor"/>
478
+ <path d="M114.375 32.75H110.375V32H114.375V32.75Z" fill="currentColor"/>
479
+ <path d="M122.375 32.75H118.375V32H122.375V32.75Z" fill="currentColor"/>
480
+ <path d="M130.375 32.75H126.375V32H130.375V32.75Z" fill="currentColor"/>
481
+ <path d="M138.375 32.75H134.375V32H138.375V32.75Z" fill="currentColor"/>
482
+ <path d="M146.375 32.75H142.375V32H146.375V32.75Z" fill="currentColor"/>
483
+ <path d="M154.375 32.75H150.375V32H154.375V32.75Z" fill="currentColor"/>
484
+ <path d="M162.375 32.75H158.375V32H162.375V32.75Z" fill="currentColor"/>
485
+ <path d="M170.375 32.75H166.375V32H170.375V32.75Z" fill="currentColor"/>
486
+ <path d="M178.375 32.75H174.375V32H178.375V32.75Z" fill="currentColor"/>
487
+ <path d="M186.375 32.75H182.375V32H186.375V32.75Z" fill="currentColor"/>
488
+ <path d="M194.375 32.75H190.375V32H194.375V32.75Z" fill="currentColor"/>
489
+ <path d="M202.375 32.75H198.375V32H202.375V32.75Z" fill="currentColor"/>
490
+ <path d="M210.375 32.75H206.375V32H210.375V32.75Z" fill="currentColor"/>
491
+ <path d="M218.375 32.75H214.375V32H218.375V32.75Z" fill="currentColor"/>
492
+ <path d="M226.375 32.75H222.375V32H226.375V32.75Z" fill="currentColor"/>
493
+ <path d="M234.375 32.75H230.375V32H234.375V32.75Z" fill="currentColor"/>
494
+ <path d="M242.375 32.75H238.375V32H242.375V32.75Z" fill="currentColor"/>
495
+ <path d="M250.375 32.75H246.375V32H250.375V32.75Z" fill="currentColor"/>
496
+ <path d="M258.375 32.75H254.375V32H258.375V32.75Z" fill="currentColor"/>
497
+ <path d="M266.375 32.75H262.375V32H266.375V32.75Z" fill="currentColor"/>
498
+ <path d="M274.375 32.75H270.375V32H274.375V32.75Z" fill="currentColor"/>
499
+ <path d="M282.375 32.75H278.375V32H282.375V32.75Z" fill="currentColor"/>
500
+ <path d="M290.375 32.75H286.375V32H290.375V32.75Z" fill="currentColor"/>
501
+ <path d="M298.375 32.75H294.375V32H298.375V32.75Z" fill="currentColor"/>
502
+ <path d="M306.375 32.75H302.375V32H306.375V32.75Z" fill="currentColor"/>
503
+ <path d="M314.375 32.75H310.375V32H314.375V32.75Z" fill="currentColor"/>
504
+ <path d="M322.375 32.75H318.375V32H322.375V32.75Z" fill="currentColor"/>
505
+ <path d="M330.375 32.75H326.375V32H330.375V32.75Z" fill="currentColor"/>
506
+ <path d="M338.375 32.75H334.375V32H338.375V32.75Z" fill="currentColor"/>
507
+ <path d="M346.375 32.75H342.375V32H346.375V32.75Z" fill="currentColor"/>
508
+ <path d="M354.375 32.75H350.375V32H354.375V32.75Z" fill="currentColor"/>
509
+ <path d="M362.375 32.75H358.375V32H362.375V32.75Z" fill="currentColor"/>
510
+ <path d="M378.375 32.75H374.375V32H378.375V32.75Z" fill="currentColor"/>
511
+ <path d="M386.375 32.75H382.375V32H386.375V32.75Z" fill="currentColor"/>
512
+ <path d="M402.375 32.75H398.375V32H402.375V32.75Z" fill="currentColor"/>
513
+ <path d="M410.375 32.75H406.375V32H410.375V32.75Z" fill="currentColor"/>
514
+ <path d="M418.375 32.75H414.375V32H418.375V32.75Z" fill="currentColor"/>
515
+ <path d="M426.375 32.75H422.375V32H426.375V32.75Z" fill="currentColor"/>
516
+ <path d="M434.375 32.75H430.375V32H434.375V32.75Z" fill="currentColor"/>
517
+ <path d="M442.375 32.75H438.375V32H442.375V32.75Z" fill="currentColor"/>
518
+ <path d="M450.375 32.75H446.375V32H450.375V32.75Z" fill="currentColor"/>
519
+ <path d="M458.375 32.75H454.375V32H458.375V32.75Z" fill="currentColor"/>
520
+ <path d="M466.375 32.75H462.375V32H466.375V32.75Z" fill="currentColor"/>
521
+ <path d="M474.375 32.75H470.375V32H474.375V32.75Z" fill="currentColor"/>
522
+ <path d="M482.375 32.75H478.375V32H482.375V32.75Z" fill="currentColor"/>
523
+ <path d="M490.375 32.75H486.375V32H490.375V32.75Z" fill="currentColor"/>
524
+ <path d="M498.375 32.75H494.375V32H498.375V32.75Z" fill="currentColor"/>
525
+ <path d="M506.375 32.75H502.375V32H506.375V32.75Z" fill="currentColor"/>
526
+ <path d="M514.375 32.75H510.375V32H514.375V32.75Z" fill="currentColor"/>
527
+ <path d="M530.375 32.75H526.375V32H530.375V32.75Z" fill="currentColor"/>
528
+ <path d="M538.375 32.75H534.375V32H538.375V32.75Z" fill="currentColor"/>
529
+ <path d="M546.375 32.75H542.375V32H546.375V32.75Z" fill="currentColor"/>
530
+ <path d="M0.75 26.75H0V22H0.75V26.75Z" fill="currentColor"/>
531
+ <path d="M32.75 26.75H32V22H32.75V26.75Z" fill="currentColor"/>
532
+ <path d="M368.75 26.75H368V22H368.75V26.75Z" fill="currentColor"/>
533
+ <path d="M392.75 26.75H392V22H392.75V26.75Z" fill="currentColor"/>
534
+ <path d="M520.75 26.75H520V22H520.75V26.75Z" fill="currentColor"/>
535
+ <path d="M552.75 26.75H552V22H552.75V26.75Z" fill="currentColor"/>
536
+ <path d="M0.75 18.75H0V14H0.75V18.75Z" fill="currentColor"/>
537
+ <path d="M32.75 18.75H32V14H32.75V18.75Z" fill="currentColor"/>
538
+ <path d="M368.75 18.75H368V14H368.75V18.75Z" fill="currentColor"/>
539
+ <path d="M392.75 18.75H392V14H392.75V18.75Z" fill="currentColor"/>
540
+ <path d="M520.75 18.75H520V14H520.75V18.75Z" fill="currentColor"/>
541
+ <path d="M552.75 18.75H552V14H552.75V18.75Z" fill="currentColor"/>
542
+ <path d="M0.75 10.75H0V6H0.75V10.75Z" fill="currentColor"/>
543
+ <path d="M32.75 10.75H32V6H32.75V10.75Z" fill="currentColor"/>
544
+ <path d="M368.75 10.75H368V6H368.75V10.75Z" fill="currentColor"/>
545
+ <path d="M392.75 10.75H392V6H392.75V10.75Z" fill="currentColor"/>
546
+ <path d="M520.75 10.75H520V6H520.75V10.75Z" fill="currentColor"/>
547
+ <path d="M552.75 10.75H552V6H552.75V10.75Z" fill="currentColor"/>
548
+ <path d="M2.375 0.75H0.75V2.75H0V0H2.375V0.75Z" fill="currentColor"/>
549
+ <path d="M34.375 0.75H32.75V2.75H32V0.75H30.375V0H34.375V0.75Z" fill="currentColor"/>
550
+ <path d="M370.375 0.75H368.75V2.75H368V0.75H366.375V0H370.375V0.75Z" fill="currentColor"/>
551
+ <path d="M394.375 0.75H392.75V2.75H392V0.75H390.375V0H394.375V0.75Z" fill="currentColor"/>
552
+ <path d="M522.375 0.75H520.75V2.75H520V0.75H518.375V0H522.375V0.75Z" fill="currentColor"/>
553
+ <path d="M552.75 2.75H552V0.75H550.375V0H552.75V2.75Z" fill="currentColor"/>
554
+ <path d="M10.375 0.75H6.375V0H10.375V0.75Z" fill="currentColor"/>
555
+ <path d="M18.375 0.75H14.375V0H18.375V0.75Z" fill="currentColor"/>
556
+ <path d="M26.375 0.75H22.375V0H26.375V0.75Z" fill="currentColor"/>
557
+ <path d="M42.375 0.75H38.375V0H42.375V0.75Z" fill="currentColor"/>
558
+ <path d="M50.375 0.75H46.375V0H50.375V0.75Z" fill="currentColor"/>
559
+ <path d="M58.375 0.75H54.375V0H58.375V0.75Z" fill="currentColor"/>
560
+ <path d="M66.375 0.75H62.375V0H66.375V0.75Z" fill="currentColor"/>
561
+ <path d="M74.375 0.75H70.375V0H74.375V0.75Z" fill="currentColor"/>
562
+ <path d="M82.375 0.75H78.375V0H82.375V0.75Z" fill="currentColor"/>
563
+ <path d="M90.375 0.75H86.375V0H90.375V0.75Z" fill="currentColor"/>
564
+ <path d="M98.375 0.75H94.375V0H98.375V0.75Z" fill="currentColor"/>
565
+ <path d="M106.375 0.75H102.375V0H106.375V0.75Z" fill="currentColor"/>
566
+ <path d="M114.375 0.75H110.375V0H114.375V0.75Z" fill="currentColor"/>
567
+ <path d="M122.375 0.75H118.375V0H122.375V0.75Z" fill="currentColor"/>
568
+ <path d="M130.375 0.75H126.375V0H130.375V0.75Z" fill="currentColor"/>
569
+ <path d="M138.375 0.75H134.375V0H138.375V0.75Z" fill="currentColor"/>
570
+ <path d="M146.375 0.75H142.375V0H146.375V0.75Z" fill="currentColor"/>
571
+ <path d="M154.375 0.75H150.375V0H154.375V0.75Z" fill="currentColor"/>
572
+ <path d="M162.375 0.75H158.375V0H162.375V0.75Z" fill="currentColor"/>
573
+ <path d="M170.375 0.75H166.375V0H170.375V0.75Z" fill="currentColor"/>
574
+ <path d="M178.375 0.75H174.375V0H178.375V0.75Z" fill="currentColor"/>
575
+ <path d="M186.375 0.75H182.375V0H186.375V0.75Z" fill="currentColor"/>
576
+ <path d="M194.375 0.75H190.375V0H194.375V0.75Z" fill="currentColor"/>
577
+ <path d="M202.375 0.75H198.375V0H202.375V0.75Z" fill="currentColor"/>
578
+ <path d="M210.375 0.75H206.375V0H210.375V0.75Z" fill="currentColor"/>
579
+ <path d="M218.375 0.75H214.375V0H218.375V0.75Z" fill="currentColor"/>
580
+ <path d="M226.375 0.75H222.375V0H226.375V0.75Z" fill="currentColor"/>
581
+ <path d="M234.375 0.75H230.375V0H234.375V0.75Z" fill="currentColor"/>
582
+ <path d="M242.375 0.75H238.375V0H242.375V0.75Z" fill="currentColor"/>
583
+ <path d="M250.375 0.75H246.375V0H250.375V0.75Z" fill="currentColor"/>
584
+ <path d="M258.375 0.75H254.375V0H258.375V0.75Z" fill="currentColor"/>
585
+ <path d="M266.375 0.75H262.375V0H266.375V0.75Z" fill="currentColor"/>
586
+ <path d="M274.375 0.75H270.375V0H274.375V0.75Z" fill="currentColor"/>
587
+ <path d="M282.375 0.75H278.375V0H282.375V0.75Z" fill="currentColor"/>
588
+ <path d="M290.375 0.75H286.375V0H290.375V0.75Z" fill="currentColor"/>
589
+ <path d="M298.375 0.75H294.375V0H298.375V0.75Z" fill="currentColor"/>
590
+ <path d="M306.375 0.75H302.375V0H306.375V0.75Z" fill="currentColor"/>
591
+ <path d="M314.375 0.75H310.375V0H314.375V0.75Z" fill="currentColor"/>
592
+ <path d="M322.375 0.75H318.375V0H322.375V0.75Z" fill="currentColor"/>
593
+ <path d="M330.375 0.75H326.375V0H330.375V0.75Z" fill="currentColor"/>
594
+ <path d="M338.375 0.75H334.375V0H338.375V0.75Z" fill="currentColor"/>
595
+ <path d="M346.375 0.75H342.375V0H346.375V0.75Z" fill="currentColor"/>
596
+ <path d="M354.375 0.75H350.375V0H354.375V0.75Z" fill="currentColor"/>
597
+ <path d="M362.375 0.75H358.375V0H362.375V0.75Z" fill="currentColor"/>
598
+ <path d="M378.375 0.75H374.375V0H378.375V0.75Z" fill="currentColor"/>
599
+ <path d="M386.375 0.75H382.375V0H386.375V0.75Z" fill="currentColor"/>
600
+ <path d="M402.375 0.75H398.375V0H402.375V0.75Z" fill="currentColor"/>
601
+ <path d="M410.375 0.75H406.375V0H410.375V0.75Z" fill="currentColor"/>
602
+ <path d="M418.375 0.75H414.375V0H418.375V0.75Z" fill="currentColor"/>
603
+ <path d="M426.375 0.75H422.375V0H426.375V0.75Z" fill="currentColor"/>
604
+ <path d="M434.375 0.75H430.375V0H434.375V0.75Z" fill="currentColor"/>
605
+ <path d="M442.375 0.75H438.375V0H442.375V0.75Z" fill="currentColor"/>
606
+ <path d="M450.375 0.75H446.375V0H450.375V0.75Z" fill="currentColor"/>
607
+ <path d="M458.375 0.75H454.375V0H458.375V0.75Z" fill="currentColor"/>
608
+ <path d="M466.375 0.75H462.375V0H466.375V0.75Z" fill="currentColor"/>
609
+ <path d="M474.375 0.75H470.375V0H474.375V0.75Z" fill="currentColor"/>
610
+ <path d="M482.375 0.75H478.375V0H482.375V0.75Z" fill="currentColor"/>
611
+ <path d="M490.375 0.75H486.375V0H490.375V0.75Z" fill="currentColor"/>
612
+ <path d="M498.375 0.75H494.375V0H498.375V0.75Z" fill="currentColor"/>
613
+ <path d="M506.375 0.75H502.375V0H506.375V0.75Z" fill="currentColor"/>
614
+ <path d="M514.375 0.75H510.375V0H514.375V0.75Z" fill="currentColor"/>
615
+ <path d="M530.375 0.75H526.375V0H530.375V0.75Z" fill="currentColor"/>
616
+ <path d="M538.375 0.75H534.375V0H538.375V0.75Z" fill="currentColor"/>
617
+ <path d="M546.375 0.75H542.375V0H546.375V0.75Z" fill="currentColor"/>
618
+ </svg>