@shd101wyy/yo 0.0.2

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 (339) hide show
  1. package/LICENSE.md +17 -0
  2. package/README.md +80 -0
  3. package/out/cjs/index.cjs +51 -0
  4. package/out/cjs/yo-cli.cjs +2158 -0
  5. package/out/esm/index.mjs +51 -0
  6. package/out/types/src/codegen/async/runtime.d.ts +2 -0
  7. package/out/types/src/codegen/async/state-code-gen.d.ts +10 -0
  8. package/out/types/src/codegen/async/state-machine.d.ts +13 -0
  9. package/out/types/src/codegen/c/collection.d.ts +3 -0
  10. package/out/types/src/codegen/codegen-c.d.ts +12 -0
  11. package/out/types/src/codegen/constants.d.ts +3 -0
  12. package/out/types/src/codegen/expressions/array.d.ts +4 -0
  13. package/out/types/src/codegen/expressions/generation.d.ts +11 -0
  14. package/out/types/src/codegen/expressions/index.d.ts +2 -0
  15. package/out/types/src/codegen/functions/collection.d.ts +5 -0
  16. package/out/types/src/codegen/functions/context.d.ts +57 -0
  17. package/out/types/src/codegen/functions/generation.d.ts +25 -0
  18. package/out/types/src/codegen/functions/index.d.ts +2 -0
  19. package/out/types/src/codegen/index.d.ts +20 -0
  20. package/out/types/src/codegen/parallelism/runtime.d.ts +2 -0
  21. package/out/types/src/codegen/types/collection.d.ts +8 -0
  22. package/out/types/src/codegen/types/generation.d.ts +13 -0
  23. package/out/types/src/codegen/types/index.d.ts +2 -0
  24. package/out/types/src/codegen/utils/fixup.d.ts +2 -0
  25. package/out/types/src/codegen/utils/index.d.ts +77 -0
  26. package/out/types/src/codegen/values/index.d.ts +1 -0
  27. package/out/types/src/emitter.d.ts +11 -0
  28. package/out/types/src/env.d.ts +85 -0
  29. package/out/types/src/error.d.ts +45 -0
  30. package/out/types/src/evaluator/async/await-analysis-types.d.ts +23 -0
  31. package/out/types/src/evaluator/async/await-analysis.d.ts +5 -0
  32. package/out/types/src/evaluator/builtins/alignof.d.ts +8 -0
  33. package/out/types/src/evaluator/builtins/and_or.d.ts +8 -0
  34. package/out/types/src/evaluator/builtins/arc_fns.d.ts +58 -0
  35. package/out/types/src/evaluator/builtins/array_fns.d.ts +0 -0
  36. package/out/types/src/evaluator/builtins/as.d.ts +8 -0
  37. package/out/types/src/evaluator/builtins/async_fns.d.ts +8 -0
  38. package/out/types/src/evaluator/builtins/compt_assert.d.ts +8 -0
  39. package/out/types/src/evaluator/builtins/compt_boolean_fns.d.ts +8 -0
  40. package/out/types/src/evaluator/builtins/compt_expect_error.d.ts +8 -0
  41. package/out/types/src/evaluator/builtins/compt_list_fns.d.ts +33 -0
  42. package/out/types/src/evaluator/builtins/compt_print.d.ts +8 -0
  43. package/out/types/src/evaluator/builtins/compt_string_fns.d.ts +8 -0
  44. package/out/types/src/evaluator/builtins/consume.d.ts +8 -0
  45. package/out/types/src/evaluator/builtins/drop.d.ts +8 -0
  46. package/out/types/src/evaluator/builtins/dup.d.ts +8 -0
  47. package/out/types/src/evaluator/builtins/expr_fns.d.ts +33 -0
  48. package/out/types/src/evaluator/builtins/future_fns.d.ts +8 -0
  49. package/out/types/src/evaluator/builtins/gc.d.ts +8 -0
  50. package/out/types/src/evaluator/builtins/gensym.d.ts +8 -0
  51. package/out/types/src/evaluator/builtins/impl_constraint.d.ts +8 -0
  52. package/out/types/src/evaluator/builtins/macro_expand.d.ts +8 -0
  53. package/out/types/src/evaluator/builtins/numeric_fns.d.ts +8 -0
  54. package/out/types/src/evaluator/builtins/panic.d.ts +8 -0
  55. package/out/types/src/evaluator/builtins/ptr_fns.d.ts +8 -0
  56. package/out/types/src/evaluator/builtins/quote.d.ts +13 -0
  57. package/out/types/src/evaluator/builtins/rc.d.ts +8 -0
  58. package/out/types/src/evaluator/builtins/sizeof.d.ts +8 -0
  59. package/out/types/src/evaluator/builtins/the.d.ts +8 -0
  60. package/out/types/src/evaluator/builtins/type_fns.d.ts +28 -0
  61. package/out/types/src/evaluator/builtins/va_start.d.ts +8 -0
  62. package/out/types/src/evaluator/builtins/var_fns.d.ts +18 -0
  63. package/out/types/src/evaluator/calls/array.d.ts +13 -0
  64. package/out/types/src/evaluator/calls/array_type.d.ts +11 -0
  65. package/out/types/src/evaluator/calls/closure_type.d.ts +11 -0
  66. package/out/types/src/evaluator/calls/compt_function.d.ts +19 -0
  67. package/out/types/src/evaluator/calls/compt_list_type.d.ts +11 -0
  68. package/out/types/src/evaluator/calls/function.d.ts +16 -0
  69. package/out/types/src/evaluator/calls/function_type.d.ts +15 -0
  70. package/out/types/src/evaluator/calls/helper.d.ts +42 -0
  71. package/out/types/src/evaluator/calls/iso.d.ts +15 -0
  72. package/out/types/src/evaluator/calls/module_type.d.ts +11 -0
  73. package/out/types/src/evaluator/calls/numeric_type.d.ts +15 -0
  74. package/out/types/src/evaluator/calls/pointer.d.ts +8 -0
  75. package/out/types/src/evaluator/calls/pointer_type.d.ts +14 -0
  76. package/out/types/src/evaluator/calls/type.d.ts +12 -0
  77. package/out/types/src/evaluator/context.d.ts +169 -0
  78. package/out/types/src/evaluator/exprs/_expr.d.ts +8 -0
  79. package/out/types/src/evaluator/exprs/assignment.d.ts +9 -0
  80. package/out/types/src/evaluator/exprs/begin.d.ts +10 -0
  81. package/out/types/src/evaluator/exprs/binding.d.ts +12 -0
  82. package/out/types/src/evaluator/exprs/c_include.d.ts +8 -0
  83. package/out/types/src/evaluator/exprs/cond.d.ts +8 -0
  84. package/out/types/src/evaluator/exprs/destructuring_assignment.d.ts +33 -0
  85. package/out/types/src/evaluator/exprs/exists.d.ts +0 -0
  86. package/out/types/src/evaluator/exprs/expr.d.ts +9 -0
  87. package/out/types/src/evaluator/exprs/extern.d.ts +8 -0
  88. package/out/types/src/evaluator/exprs/identifer_and_operator.d.ts +9 -0
  89. package/out/types/src/evaluator/exprs/import.d.ts +9 -0
  90. package/out/types/src/evaluator/exprs/initialization_assignment.d.ts +8 -0
  91. package/out/types/src/evaluator/exprs/match.d.ts +8 -0
  92. package/out/types/src/evaluator/exprs/open.d.ts +8 -0
  93. package/out/types/src/evaluator/exprs/property_access.d.ts +8 -0
  94. package/out/types/src/evaluator/exprs/recur.d.ts +8 -0
  95. package/out/types/src/evaluator/exprs/subtype_of.d.ts +21 -0
  96. package/out/types/src/evaluator/exprs/test.d.ts +8 -0
  97. package/out/types/src/evaluator/exprs/typeof.d.ts +8 -0
  98. package/out/types/src/evaluator/exprs/while.d.ts +8 -0
  99. package/out/types/src/evaluator/index.d.ts +26 -0
  100. package/out/types/src/evaluator/types/array.d.ts +8 -0
  101. package/out/types/src/evaluator/types/closure.d.ts +8 -0
  102. package/out/types/src/evaluator/types/compt_list.d.ts +8 -0
  103. package/out/types/src/evaluator/types/concrete_module.d.ts +8 -0
  104. package/out/types/src/evaluator/types/dyn.d.ts +8 -0
  105. package/out/types/src/evaluator/types/enum.d.ts +8 -0
  106. package/out/types/src/evaluator/types/expr_synthesizer.d.ts +14 -0
  107. package/out/types/src/evaluator/types/field.d.ts +14 -0
  108. package/out/types/src/evaluator/types/fn_module.d.ts +8 -0
  109. package/out/types/src/evaluator/types/function.d.ts +58 -0
  110. package/out/types/src/evaluator/types/future_module.d.ts +8 -0
  111. package/out/types/src/evaluator/types/module.d.ts +19 -0
  112. package/out/types/src/evaluator/types/newtype.d.ts +8 -0
  113. package/out/types/src/evaluator/types/object.d.ts +8 -0
  114. package/out/types/src/evaluator/types/proofs.d.ts +0 -0
  115. package/out/types/src/evaluator/types/slice.d.ts +8 -0
  116. package/out/types/src/evaluator/types/struct.d.ts +8 -0
  117. package/out/types/src/evaluator/types/synthesizer.d.ts +16 -0
  118. package/out/types/src/evaluator/types/tuple.d.ts +18 -0
  119. package/out/types/src/evaluator/types/union.d.ts +8 -0
  120. package/out/types/src/evaluator/types/utils.d.ts +71 -0
  121. package/out/types/src/evaluator/types/validation.d.ts +3 -0
  122. package/out/types/src/evaluator/utils/array-utils.d.ts +15 -0
  123. package/out/types/src/evaluator/utils/closure.d.ts +35 -0
  124. package/out/types/src/evaluator/utils.d.ts +4 -0
  125. package/out/types/src/evaluator/values/anonymous_function.d.ts +8 -0
  126. package/out/types/src/evaluator/values/anonymous_module.d.ts +17 -0
  127. package/out/types/src/evaluator/values/anonymous_struct.d.ts +8 -0
  128. package/out/types/src/evaluator/values/array.d.ts +8 -0
  129. package/out/types/src/evaluator/values/boolean.d.ts +3 -0
  130. package/out/types/src/evaluator/values/char.d.ts +3 -0
  131. package/out/types/src/evaluator/values/compt_list.d.ts +8 -0
  132. package/out/types/src/evaluator/values/dyn.d.ts +8 -0
  133. package/out/types/src/evaluator/values/float.d.ts +4 -0
  134. package/out/types/src/evaluator/values/integer.d.ts +4 -0
  135. package/out/types/src/evaluator/values/module.d.ts +58 -0
  136. package/out/types/src/evaluator/values/string.d.ts +3 -0
  137. package/out/types/src/evaluator/values/tuple.d.ts +32 -0
  138. package/out/types/src/expr.d.ts +456 -0
  139. package/out/types/src/function-value.d.ts +42 -0
  140. package/out/types/src/index.d.ts +4 -0
  141. package/out/types/src/lexer.d.ts +2 -0
  142. package/out/types/src/logger.d.ts +1 -0
  143. package/out/types/src/module-manager.d.ts +30 -0
  144. package/out/types/src/naming-checker.d.ts +4 -0
  145. package/out/types/src/parser.d.ts +33 -0
  146. package/out/types/src/test-runner.d.ts +30 -0
  147. package/out/types/src/tests/codegen.test.d.ts +1 -0
  148. package/out/types/src/tests/fixme.test.d.ts +1 -0
  149. package/out/types/src/tests/module-manager.test.d.ts +1 -0
  150. package/out/types/src/tests/parser.test.d.ts +1 -0
  151. package/out/types/src/tests/sample.test.d.ts +0 -0
  152. package/out/types/src/tests/std.test.d.ts +1 -0
  153. package/out/types/src/token.d.ts +40 -0
  154. package/out/types/src/type-value.d.ts +7 -0
  155. package/out/types/src/types/compatibility.d.ts +16 -0
  156. package/out/types/src/types/creators.d.ts +73 -0
  157. package/out/types/src/types/definitions.d.ts +218 -0
  158. package/out/types/src/types/guards.d.ts +70 -0
  159. package/out/types/src/types/hierarchy.d.ts +4 -0
  160. package/out/types/src/types/index.d.ts +7 -0
  161. package/out/types/src/types/module_field.d.ts +2 -0
  162. package/out/types/src/types/tags.d.ts +45 -0
  163. package/out/types/src/types/utils.d.ts +50 -0
  164. package/out/types/src/unit-value.d.ts +7 -0
  165. package/out/types/src/utils.d.ts +6 -0
  166. package/out/types/src/value-tag.d.ts +29 -0
  167. package/out/types/src/value.d.ts +110 -0
  168. package/out/types/src/yo-cli.d.ts +1 -0
  169. package/out/types/tsconfig.tsbuildinfo +1 -0
  170. package/package.json +57 -0
  171. package/scripts/check-liburing.js +76 -0
  172. package/std/alg/hash.yo +50 -0
  173. package/std/allocator.yo +113 -0
  174. package/std/allocators/c_allocator.yo +118 -0
  175. package/std/async.yo +13 -0
  176. package/std/collections/array_list.yo +415 -0
  177. package/std/collections/hash_map.yo +482 -0
  178. package/std/collections/hash_set.yo +706 -0
  179. package/std/collections/index.yo +11 -0
  180. package/std/collections/linked_list.yo +439 -0
  181. package/std/error.yo +0 -0
  182. package/std/gc.yo +10 -0
  183. package/std/index.yo +12 -0
  184. package/std/io/file.yo +191 -0
  185. package/std/io/index.yo +5 -0
  186. package/std/libc/assert.yo +39 -0
  187. package/std/libc/ctype.yo +57 -0
  188. package/std/libc/errno.yo +182 -0
  189. package/std/libc/float.yo +87 -0
  190. package/std/libc/index.yo +29 -0
  191. package/std/libc/limits.yo +65 -0
  192. package/std/libc/math.yo +679 -0
  193. package/std/libc/signal.yo +101 -0
  194. package/std/libc/stdatomic.yo +213 -0
  195. package/std/libc/stdint.yo +214 -0
  196. package/std/libc/stdio.yo +225 -0
  197. package/std/libc/stdlib.yo +204 -0
  198. package/std/libc/string.yo +151 -0
  199. package/std/libc/time.yo +92 -0
  200. package/std/libc/unistd.yo +130 -0
  201. package/std/monad.yo +152 -0
  202. package/std/prelude.yo +3094 -0
  203. package/std/string/index.yo +8 -0
  204. package/std/string/rune.yo +82 -0
  205. package/std/string/string.yo +288 -0
  206. package/std/sync.yo +95 -0
  207. package/std/thread.yo +36 -0
  208. package/std/time.yo +13 -0
  209. package/std/worker.yo +36 -0
  210. package/vendor/mimalloc/.gitattributes +12 -0
  211. package/vendor/mimalloc/CMakeLists.txt +763 -0
  212. package/vendor/mimalloc/LICENSE +21 -0
  213. package/vendor/mimalloc/SECURITY.md +41 -0
  214. package/vendor/mimalloc/azure-pipelines.yml +251 -0
  215. package/vendor/mimalloc/bin/mimalloc-redirect-arm64.dll +0 -0
  216. package/vendor/mimalloc/bin/mimalloc-redirect-arm64.lib +0 -0
  217. package/vendor/mimalloc/bin/mimalloc-redirect-arm64ec.dll +0 -0
  218. package/vendor/mimalloc/bin/mimalloc-redirect-arm64ec.lib +0 -0
  219. package/vendor/mimalloc/bin/mimalloc-redirect.dll +0 -0
  220. package/vendor/mimalloc/bin/mimalloc-redirect.lib +0 -0
  221. package/vendor/mimalloc/bin/mimalloc-redirect32.dll +0 -0
  222. package/vendor/mimalloc/bin/mimalloc-redirect32.lib +0 -0
  223. package/vendor/mimalloc/bin/minject-arm64.exe +0 -0
  224. package/vendor/mimalloc/bin/minject.exe +0 -0
  225. package/vendor/mimalloc/bin/minject32.exe +0 -0
  226. package/vendor/mimalloc/bin/readme.md +118 -0
  227. package/vendor/mimalloc/cmake/JoinPaths.cmake +23 -0
  228. package/vendor/mimalloc/cmake/mimalloc-config-version.cmake +19 -0
  229. package/vendor/mimalloc/cmake/mimalloc-config.cmake +14 -0
  230. package/vendor/mimalloc/contrib/docker/alpine/Dockerfile +23 -0
  231. package/vendor/mimalloc/contrib/docker/alpine-arm32v7/Dockerfile +28 -0
  232. package/vendor/mimalloc/contrib/docker/alpine-x86/Dockerfile +28 -0
  233. package/vendor/mimalloc/contrib/docker/manylinux-x64/Dockerfile +23 -0
  234. package/vendor/mimalloc/contrib/docker/readme.md +10 -0
  235. package/vendor/mimalloc/contrib/vcpkg/portfile.cmake +64 -0
  236. package/vendor/mimalloc/contrib/vcpkg/readme.md +40 -0
  237. package/vendor/mimalloc/contrib/vcpkg/usage +20 -0
  238. package/vendor/mimalloc/contrib/vcpkg/vcpkg-cmake-wrapper.cmake +20 -0
  239. package/vendor/mimalloc/contrib/vcpkg/vcpkg.json +48 -0
  240. package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-a.svg +887 -0
  241. package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-b.svg +1185 -0
  242. package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-rss-a.svg +757 -0
  243. package/vendor/mimalloc/doc/bench-2020/bench-c5-18xlarge-2020-01-20-rss-b.svg +1028 -0
  244. package/vendor/mimalloc/doc/bench-2020/bench-r5a-1.svg +769 -0
  245. package/vendor/mimalloc/doc/bench-2020/bench-r5a-12xlarge-2020-01-16-a.svg +868 -0
  246. package/vendor/mimalloc/doc/bench-2020/bench-r5a-12xlarge-2020-01-16-b.svg +1157 -0
  247. package/vendor/mimalloc/doc/bench-2020/bench-r5a-2.svg +983 -0
  248. package/vendor/mimalloc/doc/bench-2020/bench-r5a-rss-1.svg +683 -0
  249. package/vendor/mimalloc/doc/bench-2020/bench-r5a-rss-2.svg +854 -0
  250. package/vendor/mimalloc/doc/bench-2020/bench-spec-rss.svg +713 -0
  251. package/vendor/mimalloc/doc/bench-2020/bench-spec.svg +713 -0
  252. package/vendor/mimalloc/doc/bench-2020/bench-z4-1.svg +890 -0
  253. package/vendor/mimalloc/doc/bench-2020/bench-z4-2.svg +1146 -0
  254. package/vendor/mimalloc/doc/bench-2020/bench-z4-rss-1.svg +796 -0
  255. package/vendor/mimalloc/doc/bench-2020/bench-z4-rss-2.svg +974 -0
  256. package/vendor/mimalloc/doc/bench-2021/bench-amd5950x-2021-01-30-a.svg +952 -0
  257. package/vendor/mimalloc/doc/bench-2021/bench-amd5950x-2021-01-30-b.svg +1255 -0
  258. package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-a.svg +955 -0
  259. package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-b.svg +1269 -0
  260. package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-rss-a.svg +836 -0
  261. package/vendor/mimalloc/doc/bench-2021/bench-c5-18xlarge-2021-01-30-rss-b.svg +1131 -0
  262. package/vendor/mimalloc/doc/bench-2021/bench-macmini-2021-01-30.svg +766 -0
  263. package/vendor/mimalloc/doc/doxyfile +2895 -0
  264. package/vendor/mimalloc/doc/ds-logo.jpg +0 -0
  265. package/vendor/mimalloc/doc/ds-logo.png +0 -0
  266. package/vendor/mimalloc/doc/mimalloc-doc.h +1452 -0
  267. package/vendor/mimalloc/doc/mimalloc-doxygen.css +60 -0
  268. package/vendor/mimalloc/doc/mimalloc-logo-100.png +0 -0
  269. package/vendor/mimalloc/doc/mimalloc-logo.png +0 -0
  270. package/vendor/mimalloc/doc/mimalloc-logo.svg +161 -0
  271. package/vendor/mimalloc/doc/spades-logo.png +0 -0
  272. package/vendor/mimalloc/doc/unreal-logo.svg +43 -0
  273. package/vendor/mimalloc/ide/vs2022/mimalloc-lib.vcxproj +500 -0
  274. package/vendor/mimalloc/ide/vs2022/mimalloc-lib.vcxproj.filters +108 -0
  275. package/vendor/mimalloc/ide/vs2022/mimalloc-override-dll.vcxproj +508 -0
  276. package/vendor/mimalloc/ide/vs2022/mimalloc-override-dll.vcxproj.filters +111 -0
  277. package/vendor/mimalloc/ide/vs2022/mimalloc-override-test-dep.vcxproj +355 -0
  278. package/vendor/mimalloc/ide/vs2022/mimalloc-override-test.vcxproj +360 -0
  279. package/vendor/mimalloc/ide/vs2022/mimalloc-test-api.vcxproj +295 -0
  280. package/vendor/mimalloc/ide/vs2022/mimalloc-test-stress.vcxproj +292 -0
  281. package/vendor/mimalloc/ide/vs2022/mimalloc-test.vcxproj +289 -0
  282. package/vendor/mimalloc/ide/vs2022/mimalloc.sln +151 -0
  283. package/vendor/mimalloc/include/mimalloc/atomic.h +557 -0
  284. package/vendor/mimalloc/include/mimalloc/internal.h +1153 -0
  285. package/vendor/mimalloc/include/mimalloc/prim.h +421 -0
  286. package/vendor/mimalloc/include/mimalloc/track.h +145 -0
  287. package/vendor/mimalloc/include/mimalloc/types.h +685 -0
  288. package/vendor/mimalloc/include/mimalloc-new-delete.h +66 -0
  289. package/vendor/mimalloc/include/mimalloc-override.h +68 -0
  290. package/vendor/mimalloc/include/mimalloc-stats.h +103 -0
  291. package/vendor/mimalloc/include/mimalloc.h +612 -0
  292. package/vendor/mimalloc/mimalloc.pc.in +11 -0
  293. package/vendor/mimalloc/readme.md +946 -0
  294. package/vendor/mimalloc/src/alloc-aligned.c +360 -0
  295. package/vendor/mimalloc/src/alloc-override.c +316 -0
  296. package/vendor/mimalloc/src/alloc-posix.c +185 -0
  297. package/vendor/mimalloc/src/alloc.c +692 -0
  298. package/vendor/mimalloc/src/arena-abandon.c +346 -0
  299. package/vendor/mimalloc/src/arena.c +1043 -0
  300. package/vendor/mimalloc/src/bitmap.c +441 -0
  301. package/vendor/mimalloc/src/bitmap.h +119 -0
  302. package/vendor/mimalloc/src/free.c +572 -0
  303. package/vendor/mimalloc/src/heap.c +733 -0
  304. package/vendor/mimalloc/src/init.c +714 -0
  305. package/vendor/mimalloc/src/libc.c +334 -0
  306. package/vendor/mimalloc/src/options.c +663 -0
  307. package/vendor/mimalloc/src/os.c +770 -0
  308. package/vendor/mimalloc/src/page-queue.c +390 -0
  309. package/vendor/mimalloc/src/page.c +1049 -0
  310. package/vendor/mimalloc/src/prim/emscripten/prim.c +249 -0
  311. package/vendor/mimalloc/src/prim/osx/alloc-override-zone.c +461 -0
  312. package/vendor/mimalloc/src/prim/osx/prim.c +9 -0
  313. package/vendor/mimalloc/src/prim/prim.c +76 -0
  314. package/vendor/mimalloc/src/prim/readme.md +9 -0
  315. package/vendor/mimalloc/src/prim/unix/prim.c +934 -0
  316. package/vendor/mimalloc/src/prim/wasi/prim.c +284 -0
  317. package/vendor/mimalloc/src/prim/windows/etw-mimalloc.wprp +61 -0
  318. package/vendor/mimalloc/src/prim/windows/etw.h +905 -0
  319. package/vendor/mimalloc/src/prim/windows/etw.man +0 -0
  320. package/vendor/mimalloc/src/prim/windows/prim.c +878 -0
  321. package/vendor/mimalloc/src/prim/windows/readme.md +17 -0
  322. package/vendor/mimalloc/src/random.c +258 -0
  323. package/vendor/mimalloc/src/segment-map.c +142 -0
  324. package/vendor/mimalloc/src/segment.c +1702 -0
  325. package/vendor/mimalloc/src/static.c +41 -0
  326. package/vendor/mimalloc/src/stats.c +635 -0
  327. package/vendor/mimalloc/test/CMakeLists.txt +56 -0
  328. package/vendor/mimalloc/test/main-override-dep.cpp +51 -0
  329. package/vendor/mimalloc/test/main-override-dep.h +11 -0
  330. package/vendor/mimalloc/test/main-override-static.c +539 -0
  331. package/vendor/mimalloc/test/main-override.c +36 -0
  332. package/vendor/mimalloc/test/main-override.cpp +497 -0
  333. package/vendor/mimalloc/test/main.c +46 -0
  334. package/vendor/mimalloc/test/readme.md +16 -0
  335. package/vendor/mimalloc/test/test-api-fill.c +343 -0
  336. package/vendor/mimalloc/test/test-api.c +466 -0
  337. package/vendor/mimalloc/test/test-stress.c +428 -0
  338. package/vendor/mimalloc/test/test-wrong.c +92 -0
  339. package/vendor/mimalloc/test/testhelper.h +49 -0
@@ -0,0 +1,1028 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <!-- This file was generated by dvisvgm 2.4.2 -->
3
+ <svg height='255.738pt' version='1.1' viewBox='106.736 54.996 381.624 255.738' width='381.624pt' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'>
4
+ <rect width="1000%" height="1000%" fill="white"/>
5
+ <defs>
6
+ <clipPath id='clip8'>
7
+ <path d='M135.949 249.281H487.961V81.519H135.949Z'/>
8
+ </clipPath>
9
+ <use id='g3-40' transform='scale(1.143)' xlink:href='#g0-40'/>
10
+ <use id='g3-41' transform='scale(1.143)' xlink:href='#g0-41'/>
11
+ <use id='g3-45' transform='scale(1.143)' xlink:href='#g0-45'/>
12
+ <use id='g3-49' transform='scale(1.143)' xlink:href='#g0-49'/>
13
+ <use id='g3-54' transform='scale(1.143)' xlink:href='#g0-54'/>
14
+ <use id='g3-56' transform='scale(1.143)' xlink:href='#g0-56'/>
15
+ <use id='g3-58' transform='scale(1.143)' xlink:href='#g0-58'/>
16
+ <use id='g3-78' transform='scale(1.143)' xlink:href='#g0-78'/>
17
+ <use id='g3-97' transform='scale(1.143)' xlink:href='#g0-97'/>
18
+ <use id='g3-98' transform='scale(1.143)' xlink:href='#g0-98'/>
19
+ <use id='g3-99' transform='scale(1.143)' xlink:href='#g0-99'/>
20
+ <use id='g3-100' transform='scale(1.143)' xlink:href='#g0-100'/>
21
+ <use id='g3-101' transform='scale(1.143)' xlink:href='#g0-101'/>
22
+ <use id='g3-103' transform='scale(1.143)' xlink:href='#g0-103'/>
23
+ <use id='g3-104' transform='scale(1.143)' xlink:href='#g0-104'/>
24
+ <use id='g3-105' transform='scale(1.143)' xlink:href='#g0-105'/>
25
+ <use id='g3-106' transform='scale(1.143)' xlink:href='#g0-106'/>
26
+ <use id='g3-108' transform='scale(1.143)' xlink:href='#g0-108'/>
27
+ <use id='g3-109' transform='scale(1.143)' xlink:href='#g0-109'/>
28
+ <use id='g3-110' transform='scale(1.143)' xlink:href='#g0-110'/>
29
+ <use id='g3-111' transform='scale(1.143)' xlink:href='#g0-111'/>
30
+ <use id='g3-112' transform='scale(1.143)' xlink:href='#g0-112'/>
31
+ <use id='g3-114' transform='scale(1.143)' xlink:href='#g0-114'/>
32
+ <use id='g3-115' transform='scale(1.143)' xlink:href='#g0-115'/>
33
+ <use id='g3-116' transform='scale(1.143)' xlink:href='#g0-116'/>
34
+ <use id='g3-119' transform='scale(1.143)' xlink:href='#g0-119'/>
35
+ <use id='g3-120' transform='scale(1.143)' xlink:href='#g0-120'/>
36
+ <path d='M3.891 -2.914C4.806 -3.165 5.452 -3.811 5.452 -4.546C5.452 -5.469 4.411 -6.223 3.129 -6.223H0.87V0H1.704V-2.824H3.138L4.842 0H5.703L3.891 -2.914ZM1.704 -3.407V-5.694H3.022C4.062 -5.694 4.671 -5.192 4.671 -4.546C4.671 -3.963 4.125 -3.407 3.022 -3.407H1.704Z' id='g1-82'/>
37
+ <path d='M3.694 -2.591C3.694 -3.479 3.04 -4.133 2.152 -4.133C1.569 -4.133 1.139 -3.981 0.708 -3.739L0.762 -3.102C1.21 -3.434 1.65 -3.569 2.143 -3.569C2.645 -3.569 2.95 -3.165 2.95 -2.582V-2.206C1.408 -2.17 0.395 -1.766 0.395 -1.04C0.395 -0.619 0.672 0.099 1.453 0.099C1.632 0.099 2.412 0.081 2.977 -0.341V0H3.694V-2.591ZM2.95 -1.255C2.95 -1.067 2.95 -0.843 2.627 -0.655C2.403 -0.52 2.107 -0.484 1.928 -0.484C1.47 -0.484 1.085 -0.699 1.085 -1.058C1.085 -1.695 2.833 -1.722 2.95 -1.722V-1.255Z' id='g1-97'/>
38
+ <path d='M3.829 -1.964C3.829 -2.242 3.82 -2.923 3.47 -3.461C3.093 -4.026 2.52 -4.133 2.179 -4.133C1.139 -4.133 0.314 -3.174 0.314 -2.026C0.314 -0.843 1.193 0.099 2.313 0.099C2.744 0.099 3.264 -0.009 3.784 -0.341L3.73 -0.959C3.165 -0.556 2.636 -0.484 2.322 -0.484C1.578 -0.484 1.004 -1.139 0.977 -1.964H3.829ZM1.031 -2.493C1.175 -3.067 1.614 -3.551 2.179 -3.551C2.511 -3.551 3.12 -3.398 3.291 -2.493H1.031Z' id='g1-101'/>
39
+ <path d='M1.524 -6.133H0.664V-5.272H1.524V-6.133ZM1.453 -3.981H0.735V0H1.453V-3.981Z' id='g1-105'/>
40
+ <path d='M1.453 -6.223H0.735V0H1.453V-6.223Z' id='g1-108'/>
41
+ <path d='M1.462 -1.91C1.462 -2.851 2.197 -3.425 3.013 -3.434V-4.08C2.367 -4.071 1.775 -3.748 1.408 -3.219V-4.035H0.744V0H1.462V-1.91Z' id='g1-114'/>
42
+ <path d='M3.165 -3.847C2.609 -4.098 2.197 -4.133 1.829 -4.133C1.623 -4.133 0.305 -4.133 0.305 -2.95C0.305 -2.52 0.565 -2.251 0.664 -2.152C1.004 -1.856 1.237 -1.811 1.847 -1.695C2.134 -1.641 2.645 -1.542 2.645 -1.085C2.645 -0.502 1.919 -0.502 1.802 -0.502C1.273 -0.502 0.762 -0.681 0.377 -0.95L0.26 -0.296C0.798 -0.009 1.345 0.099 1.802 0.099C2.385 0.099 3.318 -0.09 3.318 -1.157C3.318 -1.47 3.192 -1.784 2.878 -2.053C2.573 -2.313 2.304 -2.367 1.748 -2.475C1.426 -2.537 0.977 -2.618 0.977 -3.04C0.977 -3.569 1.614 -3.569 1.748 -3.569C2.403 -3.569 2.789 -3.362 3.049 -3.219L3.165 -3.847Z' id='g1-115'/>
43
+ <path d='M1.623 -3.425H2.914V-3.981H1.623V-5.12H0.959V-3.981H0.17V-3.425H0.933V-1.13C0.933 -0.601 1.049 0.099 1.704 0.099C2.098 0.099 2.564 0.018 3.067 -0.233L2.914 -0.798C2.681 -0.619 2.367 -0.511 2.089 -0.511C1.739 -0.511 1.623 -0.825 1.623 -1.291V-3.425Z' id='g1-116'/>
44
+ <path d='M4.116 -3.981H3.407L2.699 -2.161C2.52 -1.695 2.188 -0.825 2.143 -0.493H2.125C2.107 -0.646 2.08 -0.816 1.587 -2.107C1.318 -2.833 0.879 -3.927 0.861 -3.981H0.126L1.704 0H2.537L4.116 -3.981Z' id='g1-118'/>
45
+ <use id='g2-44' transform='scale(0.714)' xlink:href='#g0-44'/>
46
+ <use id='g2-45' transform='scale(0.714)' xlink:href='#g0-45'/>
47
+ <use id='g2-46' transform='scale(0.714)' xlink:href='#g0-46'/>
48
+ <use id='g2-48' transform='scale(0.714)' xlink:href='#g0-48'/>
49
+ <use id='g2-49' transform='scale(0.714)' xlink:href='#g0-49'/>
50
+ <use id='g2-50' transform='scale(0.714)' xlink:href='#g0-50'/>
51
+ <use id='g2-51' transform='scale(0.714)' xlink:href='#g0-51'/>
52
+ <use id='g2-52' transform='scale(0.714)' xlink:href='#g0-52'/>
53
+ <use id='g2-53' transform='scale(0.714)' xlink:href='#g0-53'/>
54
+ <use id='g2-54' transform='scale(0.714)' xlink:href='#g0-54'/>
55
+ <use id='g2-55' transform='scale(0.714)' xlink:href='#g0-55'/>
56
+ <use id='g2-56' transform='scale(0.714)' xlink:href='#g0-56'/>
57
+ <use id='g2-57' transform='scale(0.714)' xlink:href='#g0-57'/>
58
+ <use id='g2-64' transform='scale(0.714)' xlink:href='#g0-64'/>
59
+ <use id='g2-67' transform='scale(0.714)' xlink:href='#g0-67'/>
60
+ <use id='g2-71' transform='scale(0.714)' xlink:href='#g0-71'/>
61
+ <use id='g2-73' transform='scale(0.714)' xlink:href='#g0-73'/>
62
+ <use id='g2-85' transform='scale(0.714)' xlink:href='#g0-85'/>
63
+ <use id='g2-88' transform='scale(0.714)' xlink:href='#g0-88'/>
64
+ <use id='g2-97' transform='scale(0.714)' xlink:href='#g0-97'/>
65
+ <use id='g2-98' transform='scale(0.714)' xlink:href='#g0-98'/>
66
+ <use id='g2-99' transform='scale(0.714)' xlink:href='#g0-99'/>
67
+ <use id='g2-100' transform='scale(0.714)' xlink:href='#g0-100'/>
68
+ <use id='g2-101' transform='scale(0.714)' xlink:href='#g0-101'/>
69
+ <use id='g2-103' transform='scale(0.714)' xlink:href='#g0-103'/>
70
+ <use id='g2-104' transform='scale(0.714)' xlink:href='#g0-104'/>
71
+ <use id='g2-108' transform='scale(0.714)' xlink:href='#g0-108'/>
72
+ <use id='g2-109' transform='scale(0.714)' xlink:href='#g0-109'/>
73
+ <use id='g2-110' transform='scale(0.714)' xlink:href='#g0-110'/>
74
+ <use id='g2-111' transform='scale(0.714)' xlink:href='#g0-111'/>
75
+ <use id='g2-112' transform='scale(0.714)' xlink:href='#g0-112'/>
76
+ <use id='g2-114' transform='scale(0.714)' xlink:href='#g0-114'/>
77
+ <use id='g2-115' transform='scale(0.714)' xlink:href='#g0-115'/>
78
+ <use id='g2-116' transform='scale(0.714)' xlink:href='#g0-116'/>
79
+ <use id='g2-117' transform='scale(0.714)' xlink:href='#g0-117'/>
80
+ <use id='g2-120' transform='scale(0.714)' xlink:href='#g0-120'/>
81
+ <use id='g2-122' transform='scale(0.714)' xlink:href='#g0-122'/>
82
+ <path d='M1.445 -1.245C1.445 -1.41 1.305 -1.549 1.141 -1.549S0.837 -1.41 0.837 -1.245S0.976 -0.941 1.141 -0.941S1.445 -1.081 1.445 -1.245Z' id='g4-1'/>
83
+ <path d='M2.127 -5.23C2.008 -5.23 1.995 -5.23 1.911 -5.154C1.032 -4.387 0.586 -3.145 0.586 -1.743C0.586 -0.425 0.983 0.844 1.904 1.653C1.995 1.743 2.008 1.743 2.127 1.743H2.462C2.441 1.73 1.764 1.151 1.444 0.063C1.276 -0.481 1.193 -1.053 1.193 -1.743C1.193 -4.156 2.322 -5.112 2.462 -5.23H2.127Z' id='g0-40'/>
84
+ <path d='M0.746 1.743C0.865 1.743 0.879 1.743 0.962 1.667C1.841 0.9 2.287 -0.342 2.287 -1.743C2.287 -3.062 1.89 -4.331 0.969 -5.14C0.879 -5.23 0.865 -5.23 0.746 -5.23H0.411C0.432 -5.216 1.109 -4.638 1.43 -3.55C1.597 -3.006 1.681 -2.434 1.681 -1.743C1.681 0.669 0.551 1.625 0.411 1.743H0.746Z' id='g0-41'/>
85
+ <path d='M1.339 -0.007V-0.628H0.711V0H0.907L0.704 0.893H1.018L1.339 -0.007Z' id='g0-44'/>
86
+ <path d='M2.05 -1.332V-1.771H0.084V-1.332H2.05Z' id='g0-45'/>
87
+ <path d='M1.339 -0.628H0.711V0H1.339V-0.628Z' id='g0-46'/>
88
+ <path d='M3.403 -2.267C3.403 -2.601 3.403 -3.417 3.075 -3.989C2.72 -4.617 2.183 -4.721 1.848 -4.721C1.534 -4.721 0.99 -4.624 0.642 -4.024C0.307 -3.466 0.293 -2.706 0.293 -2.267C0.293 -1.75 0.321 -1.116 0.614 -0.586C0.921 -0.021 1.437 0.146 1.848 0.146C2.545 0.146 2.929 -0.258 3.138 -0.697C3.382 -1.193 3.403 -1.834 3.403 -2.267ZM1.848 -0.314C1.555 -0.314 1.22 -0.481 1.046 -0.983C0.907 -1.409 0.9 -1.848 0.9 -2.357C0.9 -2.999 0.9 -4.261 1.848 -4.261S2.797 -2.999 2.797 -2.357C2.797 -1.897 2.797 -1.374 2.629 -0.928C2.434 -0.425 2.078 -0.314 1.848 -0.314Z' id='g0-48'/>
89
+ <path d='M2.239 -4.721H2.085C1.632 -4.303 1.06 -4.275 0.642 -4.261V-3.822C0.914 -3.829 1.262 -3.843 1.611 -3.982V-0.439H0.683V0H3.166V-0.439H2.239V-4.721Z' id='g0-49'/>
90
+ <path d='M1.974 -0.537C1.89 -0.537 1.806 -0.53 1.723 -0.53H0.928L2.008 -1.485C2.134 -1.597 2.476 -1.855 2.608 -1.967C2.915 -2.246 3.327 -2.608 3.327 -3.215C3.327 -4.003 2.741 -4.721 1.743 -4.721C1.004 -4.721 0.544 -4.324 0.307 -3.612L0.635 -3.201C0.795 -3.787 1.039 -4.24 1.646 -4.24C2.232 -4.24 2.678 -3.829 2.678 -3.201C2.678 -2.622 2.336 -2.294 1.918 -1.897C1.778 -1.757 1.402 -1.444 1.255 -1.304C1.053 -1.123 0.572 -0.656 0.37 -0.481V0H3.327V-0.537H1.974Z' id='g0-50'/>
91
+ <path d='M0.697 -3.578C0.983 -4.135 1.485 -4.289 1.82 -4.289C2.232 -4.289 2.538 -4.052 2.538 -3.654C2.538 -3.285 2.287 -2.831 1.757 -2.741C1.723 -2.734 1.695 -2.734 1.234 -2.699V-2.239H1.778C2.441 -2.239 2.685 -1.716 2.685 -1.276C2.685 -0.732 2.35 -0.314 1.806 -0.314C1.311 -0.314 0.746 -0.551 0.398 -0.997L0.307 -0.544C0.711 -0.091 1.276 0.146 1.82 0.146C2.734 0.146 3.389 -0.537 3.389 -1.269C3.389 -1.841 2.929 -2.301 2.378 -2.462C2.908 -2.734 3.18 -3.201 3.18 -3.654C3.18 -4.247 2.573 -4.721 1.827 -4.721C1.213 -4.721 0.704 -4.4 0.411 -3.982L0.697 -3.578Z' id='g0-51'/>
92
+ <path d='M2.762 -1.165H3.487V-1.625H2.762V-4.575H2.071L0.209 -1.625V-1.165H2.162V0H2.762V-1.165ZM0.802 -1.625C1.011 -1.953 2.211 -3.815 2.211 -4.233V-1.625H0.802Z' id='g0-52'/>
93
+ <path d='M1.144 -4.094H3.075V-4.575H0.586V-1.967H1.095C1.262 -2.343 1.59 -2.511 1.904 -2.511C2.19 -2.511 2.622 -2.315 2.622 -1.43C2.622 -0.516 2.043 -0.314 1.688 -0.314C1.227 -0.314 0.781 -0.558 0.544 -0.955L0.279 -0.537C0.621 -0.112 1.137 0.146 1.688 0.146C2.608 0.146 3.327 -0.565 3.327 -1.416C3.327 -2.28 2.685 -2.971 1.918 -2.971C1.618 -2.971 1.353 -2.866 1.144 -2.692V-4.094Z' id='g0-53'/>
94
+ <path d='M3.062 -4.582C2.685 -4.721 2.42 -4.721 2.287 -4.721C1.227 -4.721 0.307 -3.724 0.307 -2.253C0.307 -0.363 1.158 0.146 1.862 0.146C2.427 0.146 2.72 -0.119 2.936 -0.342C3.382 -0.816 3.389 -1.311 3.389 -1.555C3.389 -2.469 2.894 -3.229 2.218 -3.229C1.534 -3.229 1.165 -2.873 0.962 -2.671C1.053 -3.626 1.541 -4.289 2.294 -4.289C2.434 -4.289 2.713 -4.275 3.062 -4.142V-4.582ZM0.969 -1.534C0.969 -1.576 0.969 -1.681 0.976 -1.716C0.976 -2.19 1.276 -2.769 1.897 -2.769C2.748 -2.769 2.748 -1.792 2.748 -1.555C2.748 -1.29 2.748 -0.997 2.559 -0.704C2.392 -0.453 2.183 -0.314 1.862 -0.314C1.123 -0.314 1.004 -1.227 0.969 -1.534Z' id='g0-54'/>
95
+ <path d='M1.723 -4.038C1.806 -4.038 1.89 -4.045 1.974 -4.045H2.852C1.792 -3.006 1.116 -1.548 1.116 0.07H1.771C1.771 -1.967 2.762 -3.431 3.389 -4.087V-4.575H0.307V-4.038H1.723Z' id='g0-55'/>
96
+ <path d='M2.385 -2.469C2.845 -2.615 3.285 -2.985 3.285 -3.501C3.285 -4.135 2.678 -4.721 1.848 -4.721S0.411 -4.135 0.411 -3.501C0.411 -2.978 0.865 -2.608 1.311 -2.469C0.697 -2.28 0.307 -1.806 0.307 -1.269C0.307 -0.523 0.969 0.146 1.848 0.146S3.389 -0.523 3.389 -1.269C3.389 -1.806 2.992 -2.28 2.385 -2.469ZM1.848 -2.699C1.353 -2.699 0.948 -2.985 0.948 -3.494C0.948 -3.94 1.262 -4.289 1.848 -4.289C2.427 -4.289 2.748 -3.94 2.748 -3.494C2.748 -2.999 2.357 -2.699 1.848 -2.699ZM1.848 -0.314C1.367 -0.314 0.941 -0.621 0.941 -1.276C0.941 -1.904 1.346 -2.239 1.848 -2.239S2.755 -1.897 2.755 -1.276C2.755 -0.621 2.322 -0.314 1.848 -0.314Z' id='g0-56'/>
97
+ <path d='M0.537 -0.174C0.879 0.077 1.193 0.146 1.52 0.146C2.497 0.146 3.389 -0.837 3.389 -2.336C3.389 -4.24 2.545 -4.721 1.876 -4.721C1.255 -4.721 0.969 -4.428 0.767 -4.226C0.321 -3.773 0.307 -3.292 0.307 -3.02C0.307 -2.12 0.795 -1.346 1.478 -1.346C2.267 -1.346 2.699 -1.869 2.734 -1.911C2.636 -0.802 2.092 -0.314 1.52 -0.314C1.158 -0.314 0.934 -0.446 0.774 -0.579L0.537 -0.174ZM2.713 -3.027C2.72 -2.985 2.72 -2.915 2.72 -2.873C2.72 -2.357 2.406 -1.806 1.799 -1.806C1.534 -1.806 1.325 -1.883 1.144 -2.169C0.962 -2.441 0.948 -2.706 0.948 -3.02C0.948 -3.292 0.948 -3.605 1.165 -3.912C1.311 -4.122 1.52 -4.289 1.869 -4.289C2.545 -4.289 2.692 -3.473 2.713 -3.027Z' id='g0-57'/>
98
+ <path d='M1.339 -3.096H0.711V-2.469H1.339V-3.096ZM0.711 -0.628V0H1.339V-0.628H0.711Z' id='g0-58'/>
99
+ <path d='M4.142 -0.614C4.038 -0.614 4.024 -0.614 3.968 -0.586C3.626 -0.467 3.271 -0.391 2.901 -0.391C1.778 -0.391 0.976 -1.339 0.976 -2.42C0.976 -3.592 1.883 -4.449 2.859 -4.449C3.055 -4.449 3.515 -4.4 3.745 -3.843C3.55 -3.954 3.333 -4.003 3.152 -4.003C2.406 -4.003 1.778 -3.306 1.778 -2.42C1.778 -1.513 2.427 -0.837 3.145 -0.837C3.689 -0.837 4.519 -1.276 4.519 -2.518C4.519 -3.222 4.47 -4.91 2.866 -4.91C1.541 -4.91 0.411 -3.815 0.411 -2.42C0.411 -1.039 1.527 0.07 2.873 0.07C3.515 0.07 4.115 -0.195 4.519 -0.614H4.142ZM3.152 -1.297C2.72 -1.297 2.343 -1.778 2.343 -2.42C2.343 -3.082 2.734 -3.543 3.145 -3.543C3.578 -3.543 3.954 -3.062 3.954 -2.42C3.954 -1.757 3.564 -1.297 3.152 -1.297Z' id='g0-64'/>
100
+ <path d='M4.317 -0.851C3.829 -0.551 3.605 -0.418 2.908 -0.418C1.827 -0.418 1.172 -1.43 1.172 -2.434C1.172 -3.466 1.89 -4.435 2.908 -4.435C3.368 -4.435 3.843 -4.289 4.163 -4.045L4.275 -4.679C3.787 -4.861 3.396 -4.917 2.887 -4.917C1.506 -4.917 0.474 -3.773 0.474 -2.427C0.474 -0.99 1.569 0.07 2.929 0.07C3.612 0.07 3.898 -0.07 4.359 -0.321L4.317 -0.851Z' id='g0-67'/>
101
+ <path d='M4.442 -2.085H2.88V-1.625H3.829V-0.558C3.522 -0.481 3.222 -0.418 2.908 -0.418C1.834 -0.418 1.172 -1.43 1.172 -2.427C1.172 -3.382 1.82 -4.435 2.873 -4.435C3.515 -4.435 3.919 -4.24 4.268 -3.947L4.38 -4.582C3.898 -4.812 3.473 -4.924 2.943 -4.924C1.534 -4.924 0.474 -3.822 0.474 -2.427C0.474 -1.067 1.527 0.07 2.901 0.07C3.403 0.07 3.996 -0.042 4.442 -0.272V-2.085Z' id='g0-71'/>
102
+ <path d='M1.381 -4.84H0.676V0H1.381V-4.84Z' id='g0-73'/>
103
+ <path d='M1.646 -4.84H0.697V0H1.283V-4.289H1.29L3.578 0H4.526V-4.84H3.94V-0.551H3.933L1.646 -4.84Z' id='g0-78'/>
104
+ <path d='M4.4 -4.84H3.794V-1.625C3.794 -0.69 3.166 -0.265 2.566 -0.265S1.381 -0.697 1.381 -1.618V-4.84H0.676V-1.632C0.676 -0.607 1.555 0.146 2.559 0.146C3.557 0.146 4.4 -0.614 4.4 -1.632V-4.84Z' id='g0-85'/>
105
+ <path d='M2.755 -2.552L4.519 -4.84H3.759L2.413 -3.055L1.039 -4.84H0.209L2.071 -2.552L0.105 0H0.865L2.413 -2.099L3.996 0H4.826L2.755 -2.552Z' id='g0-88'/>
106
+ <path d='M2.971 -2.008C2.971 -2.72 2.427 -3.201 1.736 -3.201C1.297 -3.201 0.962 -3.11 0.572 -2.901L0.614 -2.392C0.844 -2.545 1.186 -2.755 1.736 -2.755C2.043 -2.755 2.364 -2.525 2.364 -2.001V-1.723C1.332 -1.688 0.314 -1.471 0.314 -0.823C0.314 -0.474 0.551 0.07 1.165 0.07C1.465 0.07 2.015 0.007 2.385 -0.265V0H2.971V-2.008ZM2.364 -0.99C2.364 -0.851 2.364 -0.669 2.12 -0.523C1.897 -0.398 1.625 -0.391 1.548 -0.391C1.165 -0.391 0.872 -0.565 0.872 -0.83C0.872 -1.276 2.05 -1.318 2.364 -1.332V-0.99Z' id='g0-97'/>
107
+ <path d='M1.179 -4.84H0.593V0H1.2V-0.328C1.353 -0.195 1.688 0.07 2.197 0.07C2.957 0.07 3.571 -0.642 3.571 -1.555C3.571 -2.399 3.089 -3.166 2.392 -3.166C1.953 -3.166 1.527 -3.027 1.179 -2.769V-4.84ZM1.2 -2.197C1.2 -2.308 1.2 -2.392 1.444 -2.552C1.548 -2.615 1.736 -2.706 1.974 -2.706C2.441 -2.706 2.964 -2.392 2.964 -1.555C2.964 -0.704 2.385 -0.391 1.897 -0.391C1.639 -0.391 1.395 -0.509 1.2 -0.823V-2.197Z' id='g0-98'/>
108
+ <path d='M3.034 -0.76C2.685 -0.537 2.308 -0.411 1.876 -0.411C1.234 -0.411 0.858 -0.928 0.858 -1.555C0.858 -2.092 1.137 -2.72 1.897 -2.72C2.371 -2.72 2.594 -2.622 2.95 -2.399L3.041 -2.901C2.622 -3.11 2.441 -3.201 1.897 -3.201C0.851 -3.201 0.251 -2.357 0.251 -1.548C0.251 -0.697 0.921 0.07 1.869 0.07C2.357 0.07 2.776 -0.077 3.075 -0.251L3.034 -0.76Z' id='g0-99'/>
109
+ <path d='M3.229 -4.84H2.643V-2.797C2.197 -3.124 1.743 -3.166 1.541 -3.166C0.809 -3.166 0.251 -2.434 0.251 -1.548S0.802 0.07 1.52 0.07C1.953 0.07 2.357 -0.126 2.622 -0.363V0H3.229V-4.84ZM2.622 -0.865C2.448 -0.579 2.183 -0.391 1.848 -0.391C1.36 -0.391 0.858 -0.732 0.858 -1.541C0.858 -2.413 1.451 -2.706 1.925 -2.706C2.204 -2.706 2.441 -2.587 2.622 -2.35V-0.865Z' id='g0-100'/>
110
+ <path d='M2.999 -0.76C2.608 -0.481 2.169 -0.391 1.869 -0.391C1.262 -0.391 0.802 -0.886 0.781 -1.527H3.068C3.068 -1.848 3.034 -2.315 2.762 -2.713C2.511 -3.068 2.092 -3.201 1.75 -3.201C0.9 -3.201 0.244 -2.455 0.244 -1.569C0.244 -0.676 0.941 0.07 1.862 0.07C2.267 0.07 2.685 -0.049 3.041 -0.265L2.999 -0.76ZM0.83 -1.946C0.99 -2.504 1.402 -2.741 1.75 -2.741C2.057 -2.741 2.511 -2.594 2.643 -1.946H0.83Z' id='g0-101'/>
111
+ <path d='M3.508 -3.166C3.354 -3.166 2.887 -3.159 2.357 -2.957L2.343 -2.95C2.092 -3.117 1.848 -3.166 1.646 -3.166C0.962 -3.166 0.453 -2.629 0.453 -2.029C0.453 -1.785 0.537 -1.534 0.697 -1.339C0.6 -1.22 0.495 -1.025 0.495 -0.76C0.495 -0.488 0.607 -0.314 0.669 -0.23C0.286 -0.007 0.209 0.314 0.209 0.481C0.209 1.011 0.941 1.43 1.848 1.43C2.762 1.43 3.487 1.011 3.487 0.481C3.487 -0.502 2.267 -0.502 1.967 -0.502H1.318C1.206 -0.502 0.907 -0.502 0.907 -0.865C0.907 -1.004 0.955 -1.074 0.962 -1.088C1.206 -0.934 1.451 -0.886 1.639 -0.886C2.322 -0.886 2.831 -1.423 2.831 -2.022C2.831 -2.246 2.769 -2.448 2.643 -2.636C2.615 -2.678 2.615 -2.685 2.615 -2.692C2.615 -2.72 3.034 -2.72 3.068 -2.72C3.075 -2.72 3.34 -2.72 3.592 -2.692L3.508 -3.166ZM1.646 -1.318C1.269 -1.318 0.99 -1.555 0.99 -2.022C0.99 -2.566 1.339 -2.734 1.639 -2.734C2.015 -2.734 2.294 -2.497 2.294 -2.029C2.294 -1.485 1.946 -1.318 1.646 -1.318ZM1.974 0.042C2.134 0.042 2.957 0.042 2.957 0.488C2.957 0.788 2.434 0.997 1.848 0.997S0.739 0.788 0.739 0.488C0.739 0.453 0.739 0.042 1.304 0.042H1.974Z' id='g0-103'/>
112
+ <path d='M3.243 -2.064C3.243 -2.608 3.082 -3.166 2.225 -3.166C1.625 -3.166 1.304 -2.817 1.165 -2.671V-4.84H0.579V0H1.186V-1.695C1.186 -2.155 1.381 -2.706 1.918 -2.706C2.636 -2.706 2.636 -2.218 2.636 -2.015V0H3.243V-2.064Z' id='g0-104'/>
113
+ <path d='M1.227 -4.784H0.523V-4.08H1.227V-4.784ZM1.172 -3.096H0.586V0H1.172V-3.096Z' id='g0-105'/>
114
+ <path d='M1.381 -4.784H0.676V-4.08H1.381V-4.784ZM-0.453 1.186C-0.133 1.36 0.181 1.423 0.446 1.423C0.928 1.423 1.381 1.053 1.381 0.411V-3.096H0.795V0.46C0.795 0.586 0.795 0.697 0.649 0.816C0.488 0.934 0.293 0.934 0.23 0.934C-0.063 0.934 -0.244 0.802 -0.328 0.725L-0.453 1.186Z' id='g0-106'/>
115
+ <path d='M1.172 -4.84H0.586V0H1.172V-4.84Z' id='g0-108'/>
116
+ <path d='M5.3 -2.064C5.3 -2.608 5.14 -3.166 4.282 -3.166C3.696 -3.166 3.333 -2.824 3.166 -2.601C3.096 -2.79 2.922 -3.166 2.225 -3.166C1.827 -3.166 1.444 -3.006 1.137 -2.636V-3.145H0.579V0H1.186V-1.695C1.186 -2.155 1.381 -2.706 1.918 -2.706C2.636 -2.706 2.636 -2.218 2.636 -2.015V0H3.243V-1.695C3.243 -2.155 3.438 -2.706 3.975 -2.706C4.693 -2.706 4.693 -2.218 4.693 -2.015V0H5.3V-2.064Z' id='g0-109'/>
117
+ <path d='M3.243 -2.064C3.243 -2.608 3.082 -3.166 2.225 -3.166C1.827 -3.166 1.444 -3.006 1.137 -2.636V-3.145H0.579V0H1.186V-1.695C1.186 -2.155 1.381 -2.706 1.918 -2.706C2.636 -2.706 2.636 -2.218 2.636 -2.015V0H3.243V-2.064Z' id='g0-110'/>
118
+ <path d='M3.487 -1.527C3.487 -2.448 2.755 -3.201 1.848 -3.201S0.209 -2.441 0.209 -1.527C0.209 -0.642 0.948 0.07 1.848 0.07C2.755 0.07 3.487 -0.642 3.487 -1.527ZM1.848 -0.411C1.297 -0.411 0.816 -0.816 0.816 -1.604S1.332 -2.741 1.848 -2.741C2.371 -2.741 2.88 -2.378 2.88 -1.604C2.88 -0.809 2.385 -0.411 1.848 -0.411Z' id='g0-111'/>
119
+ <path d='M1.2 -0.328C1.569 0.007 1.967 0.07 2.204 0.07C2.943 0.07 3.571 -0.635 3.571 -1.555C3.571 -2.392 3.11 -3.166 2.42 -3.166C2.106 -3.166 1.583 -3.075 1.179 -2.762V-3.096H0.593V1.353H1.2V-0.328ZM1.2 -2.315C1.36 -2.511 1.632 -2.685 1.967 -2.685C2.525 -2.685 2.964 -2.169 2.964 -1.555C2.964 -0.865 2.441 -0.391 1.897 -0.391C1.792 -0.391 1.618 -0.404 1.437 -0.551C1.227 -0.711 1.2 -0.816 1.2 -0.948V-2.315Z' id='g0-112'/>
120
+ <path d='M1.179 -1.485C1.179 -2.239 1.806 -2.643 2.42 -2.65V-3.166C1.834 -3.159 1.409 -2.873 1.13 -2.504V-3.145H0.593V0H1.179V-1.485Z' id='g0-114'/>
121
+ <path d='M2.545 -2.985C2.071 -3.18 1.723 -3.201 1.471 -3.201C1.297 -3.201 0.244 -3.201 0.244 -2.273C0.244 -1.946 0.425 -1.764 0.516 -1.681C0.76 -1.437 1.053 -1.381 1.423 -1.311C1.75 -1.248 2.127 -1.179 2.127 -0.844C2.127 -0.404 1.548 -0.404 1.451 -0.404C1.004 -0.404 0.586 -0.565 0.307 -0.76L0.209 -0.237C0.446 -0.119 0.872 0.07 1.451 0.07C1.764 0.07 2.071 0.021 2.329 -0.167C2.587 -0.363 2.671 -0.669 2.671 -0.907C2.671 -1.032 2.657 -1.304 2.364 -1.569C2.106 -1.799 1.855 -1.848 1.52 -1.911C1.109 -1.988 0.788 -2.05 0.788 -2.357C0.788 -2.755 1.297 -2.755 1.402 -2.755C1.799 -2.755 2.106 -2.671 2.455 -2.49L2.545 -2.985Z' id='g0-115'/>
122
+ <path d='M1.311 -2.657H2.343V-3.096H1.311V-3.982H0.774V-3.096H0.139V-2.657H0.753V-0.893C0.753 -0.425 0.872 0.07 1.374 0.07S2.26 -0.091 2.469 -0.188L2.35 -0.635C2.12 -0.467 1.876 -0.411 1.681 -0.411C1.388 -0.411 1.311 -0.697 1.311 -1.018V-2.657Z' id='g0-116'/>
123
+ <path d='M3.243 -3.096H2.636V-1.074C2.636 -0.516 2.162 -0.342 1.757 -0.342C1.241 -0.342 1.186 -0.481 1.186 -0.802V-3.096H0.579V-0.76C0.579 -0.139 0.851 0.07 1.339 0.07C1.625 0.07 2.239 0.014 2.657 -0.321V0H3.243V-3.096Z' id='g0-117'/>
124
+ <path d='M4.951 -3.096H4.407C4.345 -2.901 3.954 -1.723 3.738 -0.997C3.682 -0.795 3.612 -0.572 3.592 -0.411H3.585C3.543 -0.697 3.299 -1.451 3.285 -1.499L2.769 -3.096H2.239C2.036 -2.497 1.513 -0.934 1.458 -0.425H1.451C1.395 -0.921 0.879 -2.462 0.767 -2.797C0.711 -2.964 0.711 -2.978 0.676 -3.096H0.105L1.123 0H1.709C1.716 -0.028 1.904 -0.579 2.148 -1.353C2.253 -1.695 2.462 -2.364 2.497 -2.671L2.504 -2.678C2.518 -2.532 2.559 -2.378 2.608 -2.204S2.706 -1.841 2.755 -1.681L3.292 0H3.933L4.951 -3.096Z' id='g0-119'/>
125
+ <path d='M1.932 -1.597L3.285 -3.096H2.671L1.681 -1.953L0.669 -3.096H0.042L1.437 -1.597L0 0H0.621L1.681 -1.311L2.783 0H3.41L1.932 -1.597Z' id='g0-120'/>
126
+ <path d='M2.957 -2.803V-3.096H0.307V-2.65H1.332C1.416 -2.65 1.499 -2.657 1.583 -2.657H2.127L0.209 -0.307V0H2.978V-0.467H1.897C1.813 -0.467 1.73 -0.46 1.646 -0.46H1.039L2.957 -2.803Z' id='g0-122'/>
127
+ </defs>
128
+ <g id='page8'>
129
+ <path d='M194.617 258.141V249.281M253.285 258.141V249.281M311.953 258.141V249.281M370.625 258.141V249.281M429.293 258.141V249.281M194.617 72.66V81.519M253.285 72.66V81.519M311.953 72.66V81.519M370.625 72.66V81.519M429.293 72.66V81.519' fill='none' stroke='#808080' stroke-miterlimit='10' stroke-width='0.199'/>
130
+ <path d='M165.281 253.535V249.281M223.953 253.535V249.281M282.621 253.535V249.281M341.289 253.535V249.281M399.957 253.535V249.281M458.629 253.535V249.281M165.281 77.266V81.519M223.953 77.266V81.519M282.621 77.266V81.519M341.289 77.266V81.519M399.957 77.266V81.519M458.629 77.266V81.519' fill='none' stroke='#808080' stroke-miterlimit='10' stroke-width='0.199'/>
131
+ <path d='M135.949 249.281H140.199M135.949 215.73H140.199M135.949 182.176H140.199M135.949 148.625H140.199M135.949 115.07H140.199M135.949 81.519H140.199M487.961 249.281H483.711M487.961 215.73H483.711M487.961 182.176H483.711M487.961 148.625H483.711M487.961 115.07H483.711M487.961 81.519H483.711' fill='none' stroke='#808080' stroke-miterlimit='10' stroke-width='0.199'/>
132
+ <path d='M135.949 249.281V81.519H487.961V249.281H135.949Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
133
+ <g transform='matrix(1 0 0 1 -21.265 74.992)'>
134
+ <use x='168.285' xlink:href='#g3-97' y='188.688'/>
135
+ <use x='172.353' xlink:href='#g3-108' y='188.688'/>
136
+ <use x='174.373' xlink:href='#g3-108' y='188.688'/>
137
+ <use x='176.393' xlink:href='#g3-111' y='188.688'/>
138
+ <use x='180.863' xlink:href='#g3-99' y='188.688'/>
139
+ <use x='184.627' xlink:href='#g3-45' y='188.688'/>
140
+ <use x='187.449' xlink:href='#g3-116' y='188.688'/>
141
+ <use x='190.507' xlink:href='#g3-101' y='188.688'/>
142
+ <use x='194.271' xlink:href='#g3-115' y='188.688'/>
143
+ <use x='197.517' xlink:href='#g3-116' y='188.688'/>
144
+ <use x='200.575' xlink:href='#g3-49' y='188.688'/>
145
+ </g>
146
+ <g transform='matrix(1 0 0 1 36.532 74.992)'>
147
+ <use x='168.285' xlink:href='#g3-97' y='188.688'/>
148
+ <use x='172.353' xlink:href='#g3-108' y='188.688'/>
149
+ <use x='174.373' xlink:href='#g3-108' y='188.688'/>
150
+ <use x='176.393' xlink:href='#g3-111' y='188.688'/>
151
+ <use x='180.863' xlink:href='#g3-99' y='188.688'/>
152
+ <use x='184.627' xlink:href='#g3-45' y='188.688'/>
153
+ <use x='187.449' xlink:href='#g3-116' y='188.688'/>
154
+ <use x='190.507' xlink:href='#g3-101' y='188.688'/>
155
+ <use x='194.271' xlink:href='#g3-115' y='188.688'/>
156
+ <use x='197.517' xlink:href='#g3-116' y='188.688'/>
157
+ <use x='200.575' xlink:href='#g3-78' y='188.688'/>
158
+ </g>
159
+ <g transform='matrix(1 0 0 1 94.98 74.992)'>
160
+ <use x='168.285' xlink:href='#g3-115' y='188.688'/>
161
+ <use x='171.531' xlink:href='#g3-104' y='188.688'/>
162
+ <use x='175.904' xlink:href='#g3-54' y='188.688'/>
163
+ <use x='180.138' xlink:href='#g3-98' y='188.688'/>
164
+ <use x='184.746' xlink:href='#g3-101' y='188.688'/>
165
+ <use x='188.509' xlink:href='#g3-110' y='188.688'/>
166
+ <use x='192.882' xlink:href='#g3-99' y='188.688'/>
167
+ <use x='196.646' xlink:href='#g3-104' y='188.688'/>
168
+ <use x='201.018' xlink:href='#g3-78' y='188.688'/>
169
+ </g>
170
+ <g transform='matrix(1 0 0 1 153.649 74.992)'>
171
+ <use x='168.285' xlink:href='#g3-115' y='188.688'/>
172
+ <use x='171.531' xlink:href='#g3-104' y='188.688'/>
173
+ <use x='175.904' xlink:href='#g3-56' y='188.688'/>
174
+ <use x='180.138' xlink:href='#g3-98' y='188.688'/>
175
+ <use x='184.746' xlink:href='#g3-101' y='188.688'/>
176
+ <use x='188.509' xlink:href='#g3-110' y='188.688'/>
177
+ <use x='192.882' xlink:href='#g3-99' y='188.688'/>
178
+ <use x='196.646' xlink:href='#g3-104' y='188.688'/>
179
+ <use x='201.018' xlink:href='#g3-78' y='188.688'/>
180
+ </g>
181
+ <g transform='matrix(1 0 0 1 207.225 74.992)'>
182
+ <use x='168.285' xlink:href='#g3-120' y='188.688'/>
183
+ <use x='172.187' xlink:href='#g3-109' y='188.688'/>
184
+ <use x='178.912' xlink:href='#g3-97' y='188.688'/>
185
+ <use x='182.98' xlink:href='#g3-108' y='188.688'/>
186
+ <use x='185' xlink:href='#g3-108' y='188.688'/>
187
+ <use x='187.02' xlink:href='#g3-111' y='188.688'/>
188
+ <use x='191.49' xlink:href='#g3-99' y='188.688'/>
189
+ <use x='195.254' xlink:href='#g3-45' y='188.688'/>
190
+ <use x='198.076' xlink:href='#g3-116' y='188.688'/>
191
+ <use x='201.134' xlink:href='#g3-101' y='188.688'/>
192
+ <use x='204.898' xlink:href='#g3-115' y='188.688'/>
193
+ <use x='208.144' xlink:href='#g3-116' y='188.688'/>
194
+ <use x='211.202' xlink:href='#g3-78' y='188.688'/>
195
+ </g>
196
+ <g transform='matrix(1 0 0 1 263.494 74.992)'>
197
+ <use x='168.285' xlink:href='#g3-99' y='188.688'/>
198
+ <use x='172.049' xlink:href='#g3-97' y='188.688'/>
199
+ <use x='176.117' xlink:href='#g3-99' y='188.688'/>
200
+ <use x='179.88' xlink:href='#g3-104' y='188.688'/>
201
+ <use x='184.253' xlink:href='#g3-101' y='188.688'/>
202
+ <use x='188.017' xlink:href='#g3-45' y='188.688'/>
203
+ <use x='190.839' xlink:href='#g3-115' y='188.688'/>
204
+ <use x='194.086' xlink:href='#g3-99' y='188.688'/>
205
+ <use x='197.849' xlink:href='#g3-114' y='188.688'/>
206
+ <use x='200.741' xlink:href='#g3-97' y='188.688'/>
207
+ <use x='204.81' xlink:href='#g3-116' y='188.688'/>
208
+ <use x='207.868' xlink:href='#g3-99' y='188.688'/>
209
+ <use x='211.631' xlink:href='#g3-104' y='188.688'/>
210
+ <use x='216.004' xlink:href='#g3-78' y='188.688'/>
211
+ </g>
212
+ <g transform='matrix(1 0 0 1 -40.942 62.23)'>
213
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
214
+ <use x='170.931' xlink:href='#g2-120' y='188.688'/>
215
+ </g>
216
+ <g transform='matrix(1 0 0 1 -45.059 28.677)'>
217
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
218
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
219
+ <use x='172.401' xlink:href='#g2-53' y='188.688'/>
220
+ <use x='175.048' xlink:href='#g2-120' y='188.688'/>
221
+ </g>
222
+ <g transform='matrix(1 0 0 1 -45.059 -4.876)'>
223
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
224
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
225
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
226
+ <use x='175.048' xlink:href='#g2-120' y='188.688'/>
227
+ </g>
228
+ <g transform='matrix(1 0 0 1 -45.059 -38.43)'>
229
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
230
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
231
+ <use x='172.401' xlink:href='#g2-53' y='188.688'/>
232
+ <use x='175.048' xlink:href='#g2-120' y='188.688'/>
233
+ </g>
234
+ <g transform='matrix(1 0 0 1 -45.059 -71.983)'>
235
+ <use x='168.285' xlink:href='#g2-50' y='188.688'/>
236
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
237
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
238
+ <use x='175.048' xlink:href='#g2-120' y='188.688'/>
239
+ </g>
240
+ <g transform='matrix(1 0 0 1 -45.059 -105.536)'>
241
+ <use x='168.285' xlink:href='#g2-50' y='188.688'/>
242
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
243
+ <use x='172.401' xlink:href='#g2-53' y='188.688'/>
244
+ <use x='175.048' xlink:href='#g2-120' y='188.688'/>
245
+ </g>
246
+ <path clip-path='url(#clip8)' d='M135.949 182.176H487.961' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
247
+ <path clip-path='url(#clip8)' d='M142.742 249.281H145.981V182.176H142.742ZM201.41 249.281H204.649V182.176H201.41ZM260.078 249.281H263.317V182.176H260.078ZM318.75 249.281H321.988V182.176H318.75ZM377.418 249.281H380.656V182.176H377.418ZM436.086 249.281H439.324V182.176H436.086Z' fill='#ffffff'/>
248
+ <path clip-path='url(#clip8)' d='M142.742 249.281H145.981V182.176H142.742ZM201.41 249.281H204.649V182.176H201.41ZM260.078 249.281H263.317V182.176H260.078ZM318.75 249.281H321.988V182.176H318.75ZM377.418 249.281H380.656V182.176H377.418ZM436.086 249.281H439.324V182.176H436.086Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
249
+ <path clip-path='url(#clip8)' d='M144.359 182.176V182.176' fill='#ffffff'/>
250
+ <path clip-path='url(#clip8)' d='M142.367 182.176H146.351' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
251
+ <path clip-path='url(#clip8)' d='M144.359 182.176V182.176' fill='#ffffff'/>
252
+ <path clip-path='url(#clip8)' d='M142.367 182.176H146.351' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
253
+ <path clip-path='url(#clip8)' d='M203.031 182.176V182.176' fill='#ffffff'/>
254
+ <path clip-path='url(#clip8)' d='M201.035 182.176H205.023' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
255
+ <path clip-path='url(#clip8)' d='M203.031 182.176V182.176' fill='#ffffff'/>
256
+ <path clip-path='url(#clip8)' d='M201.035 182.176H205.023' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
257
+ <path clip-path='url(#clip8)' d='M261.699 182.176V182.176' fill='#ffffff'/>
258
+ <path clip-path='url(#clip8)' d='M259.707 182.176H263.691' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
259
+ <path clip-path='url(#clip8)' d='M261.699 182.176V182.176' fill='#ffffff'/>
260
+ <path clip-path='url(#clip8)' d='M259.707 182.176H263.691' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
261
+ <path clip-path='url(#clip8)' d='M320.367 182.176V182.176' fill='#ffffff'/>
262
+ <path clip-path='url(#clip8)' d='M318.375 182.176H322.359' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
263
+ <path clip-path='url(#clip8)' d='M320.367 182.176V182.176' fill='#ffffff'/>
264
+ <path clip-path='url(#clip8)' d='M318.375 182.176H322.359' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
265
+ <path clip-path='url(#clip8)' d='M379.035 182.176V182.176' fill='#ffffff'/>
266
+ <path clip-path='url(#clip8)' d='M377.043 182.176H381.027' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
267
+ <path clip-path='url(#clip8)' d='M379.035 182.176V182.176' fill='#ffffff'/>
268
+ <path clip-path='url(#clip8)' d='M377.043 182.176H381.027' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
269
+ <path clip-path='url(#clip8)' d='M437.707 182.176V182.176' fill='#ffffff'/>
270
+ <path clip-path='url(#clip8)' d='M435.711 182.176H439.699' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
271
+ <path clip-path='url(#clip8)' d='M437.707 182.176V182.176' fill='#ffffff'/>
272
+ <path clip-path='url(#clip8)' d='M435.711 182.176H439.699' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
273
+ <path clip-path='url(#clip8)' d='M147.973 249.281H151.211V164.73H147.973ZM206.641 249.281H209.879V161.977H206.641ZM265.309 249.281H268.547V183.25H265.309ZM323.981 249.281H327.219V209.891H323.981ZM382.649 249.281H385.887V224.184H382.649ZM441.317 249.281H444.555V141.242H441.317Z' fill='#f0e0f0'/>
274
+ <path clip-path='url(#clip8)' d='M147.973 249.281H151.211V164.73H147.973ZM206.641 249.281H209.879V161.977H206.641ZM265.309 249.281H268.547V183.25H265.309ZM323.981 249.281H327.219V209.891H323.981ZM382.649 249.281H385.887V224.184H382.649ZM441.317 249.281H444.555V141.242H441.317Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
275
+ <path clip-path='url(#clip8)' d='M149.59 164.73V164.73' fill='#f0e0f0'/>
276
+ <path clip-path='url(#clip8)' d='M147.598 164.73H151.582' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
277
+ <path clip-path='url(#clip8)' d='M149.59 164.73V164.73' fill='#f0e0f0'/>
278
+ <path clip-path='url(#clip8)' d='M147.598 164.73H151.582' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
279
+ <path clip-path='url(#clip8)' d='M208.262 161.977V161.977' fill='#f0e0f0'/>
280
+ <path clip-path='url(#clip8)' d='M206.266 161.976H210.254' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
281
+ <path clip-path='url(#clip8)' d='M208.262 161.977V161.977' fill='#f0e0f0'/>
282
+ <path clip-path='url(#clip8)' d='M206.266 161.976H210.254' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
283
+ <path clip-path='url(#clip8)' d='M266.93 183.25V183.25' fill='#f0e0f0'/>
284
+ <path clip-path='url(#clip8)' d='M264.938 183.25H268.922' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
285
+ <path clip-path='url(#clip8)' d='M266.93 183.25V183.25' fill='#f0e0f0'/>
286
+ <path clip-path='url(#clip8)' d='M264.938 183.25H268.922' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
287
+ <path clip-path='url(#clip8)' d='M325.598 209.891V209.891' fill='#f0e0f0'/>
288
+ <path clip-path='url(#clip8)' d='M323.606 209.891H327.59' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
289
+ <path clip-path='url(#clip8)' d='M325.598 209.891V209.891' fill='#f0e0f0'/>
290
+ <path clip-path='url(#clip8)' d='M323.606 209.891H327.59' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
291
+ <path clip-path='url(#clip8)' d='M384.266 224.184V224.184' fill='#f0e0f0'/>
292
+ <path clip-path='url(#clip8)' d='M382.274 224.183H386.258' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
293
+ <path clip-path='url(#clip8)' d='M384.266 224.184V224.184' fill='#f0e0f0'/>
294
+ <path clip-path='url(#clip8)' d='M382.274 224.183H386.258' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
295
+ <path clip-path='url(#clip8)' d='M442.938 141.242V141.242' fill='#f0e0f0'/>
296
+ <path clip-path='url(#clip8)' d='M440.942 141.242H444.93' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
297
+ <path clip-path='url(#clip8)' d='M442.938 141.242V141.242' fill='#f0e0f0'/>
298
+ <path clip-path='url(#clip8)' d='M440.942 141.242H444.93' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
299
+ <path clip-path='url(#clip8)' d='M153.203 249.281H156.442V185.129H153.203ZM211.871 249.281H215.11V177.883H211.871ZM270.539 249.281H273.777V181.437H270.539ZM329.211 249.281H332.449V192.848H329.211ZM387.879 249.281H391.117V183.719H387.879ZM446.547 249.281H449.785V145H446.547Z' fill='#e1c2e1'/>
300
+ <path clip-path='url(#clip8)' d='M153.203 249.281H156.442V185.129H153.203ZM211.871 249.281H215.11V177.883H211.871ZM270.539 249.281H273.777V181.437H270.539ZM329.211 249.281H332.449V192.848H329.211ZM387.879 249.281H391.117V183.719H387.879ZM446.547 249.281H449.785V145H446.547Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
301
+ <path clip-path='url(#clip8)' d='M154.82 185.129V185.129' fill='#e1c2e1'/>
302
+ <path clip-path='url(#clip8)' d='M152.828 185.129H156.812' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
303
+ <path clip-path='url(#clip8)' d='M154.82 185.129V185.129' fill='#e1c2e1'/>
304
+ <path clip-path='url(#clip8)' d='M152.828 185.129H156.812' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
305
+ <path clip-path='url(#clip8)' d='M213.492 177.883V177.883' fill='#e1c2e1'/>
306
+ <path clip-path='url(#clip8)' d='M211.496 177.883H215.484' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
307
+ <path clip-path='url(#clip8)' d='M213.492 177.883V177.883' fill='#e1c2e1'/>
308
+ <path clip-path='url(#clip8)' d='M211.496 177.883H215.484' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
309
+ <path clip-path='url(#clip8)' d='M272.16 181.437V181.437' fill='#e1c2e1'/>
310
+ <path clip-path='url(#clip8)' d='M270.168 181.438H274.152' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
311
+ <path clip-path='url(#clip8)' d='M272.16 181.437V181.437' fill='#e1c2e1'/>
312
+ <path clip-path='url(#clip8)' d='M270.168 181.438H274.152' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
313
+ <path clip-path='url(#clip8)' d='M330.828 192.848V192.848' fill='#e1c2e1'/>
314
+ <path clip-path='url(#clip8)' d='M328.836 192.848H332.82' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
315
+ <path clip-path='url(#clip8)' d='M330.828 192.848V192.848' fill='#e1c2e1'/>
316
+ <path clip-path='url(#clip8)' d='M328.836 192.848H332.82' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
317
+ <path clip-path='url(#clip8)' d='M389.496 183.719V183.719' fill='#e1c2e1'/>
318
+ <path clip-path='url(#clip8)' d='M387.504 183.718H391.488' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
319
+ <path clip-path='url(#clip8)' d='M389.496 183.719V183.719' fill='#e1c2e1'/>
320
+ <path clip-path='url(#clip8)' d='M387.504 183.718H391.488' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
321
+ <path clip-path='url(#clip8)' d='M448.168 145V145' fill='#e1c2e1'/>
322
+ <path clip-path='url(#clip8)' d='M446.172 145H450.16' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
323
+ <path clip-path='url(#clip8)' d='M448.168 145V145' fill='#e1c2e1'/>
324
+ <path clip-path='url(#clip8)' d='M446.172 145H450.16' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
325
+ <path clip-path='url(#clip8)' d='M158.434 249.281H161.672V180.969H158.434ZM217.102 249.281H220.34V172.043H217.102ZM275.77 249.281H279.008V172.312H275.77ZM334.442 249.281H337.68V194.996H334.442ZM393.109 249.281H396.348V195.531H393.109ZM451.777 249.281H455.016V180.098H451.777Z' fill='#d1a3d1'/>
326
+ <path clip-path='url(#clip8)' d='M158.434 249.281H161.672V180.969H158.434ZM217.102 249.281H220.34V172.043H217.102ZM275.77 249.281H279.008V172.312H275.77ZM334.442 249.281H337.68V194.996H334.442ZM393.109 249.281H396.348V195.531H393.109ZM451.777 249.281H455.016V180.098H451.777Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
327
+ <path clip-path='url(#clip8)' d='M160.051 180.969V180.969' fill='#d1a3d1'/>
328
+ <path clip-path='url(#clip8)' d='M158.058 180.969H162.042' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
329
+ <path clip-path='url(#clip8)' d='M160.051 180.969V180.969' fill='#d1a3d1'/>
330
+ <path clip-path='url(#clip8)' d='M158.058 180.969H162.042' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
331
+ <path clip-path='url(#clip8)' d='M218.723 172.043V172.043' fill='#d1a3d1'/>
332
+ <path clip-path='url(#clip8)' d='M216.726 172.043H220.714' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
333
+ <path clip-path='url(#clip8)' d='M218.723 172.043V172.043' fill='#d1a3d1'/>
334
+ <path clip-path='url(#clip8)' d='M216.726 172.043H220.714' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
335
+ <path clip-path='url(#clip8)' d='M277.391 172.312V172.312' fill='#d1a3d1'/>
336
+ <path clip-path='url(#clip8)' d='M275.398 172.312H279.382' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
337
+ <path clip-path='url(#clip8)' d='M277.391 172.312V172.312' fill='#d1a3d1'/>
338
+ <path clip-path='url(#clip8)' d='M275.398 172.312H279.382' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
339
+ <path clip-path='url(#clip8)' d='M336.059 194.996V194.996' fill='#d1a3d1'/>
340
+ <path clip-path='url(#clip8)' d='M334.066 194.996H338.05' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
341
+ <path clip-path='url(#clip8)' d='M336.059 194.996V194.996' fill='#d1a3d1'/>
342
+ <path clip-path='url(#clip8)' d='M334.066 194.996H338.05' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
343
+ <path clip-path='url(#clip8)' d='M394.727 195.531V195.531' fill='#d1a3d1'/>
344
+ <path clip-path='url(#clip8)' d='M392.734 195.531H396.718' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
345
+ <path clip-path='url(#clip8)' d='M394.727 195.531V195.531' fill='#d1a3d1'/>
346
+ <path clip-path='url(#clip8)' d='M392.734 195.531H396.718' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
347
+ <path clip-path='url(#clip8)' d='M453.399 180.098V180.098' fill='#d1a3d1'/>
348
+ <path clip-path='url(#clip8)' d='M451.402 180.098H455.39' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
349
+ <path clip-path='url(#clip8)' d='M453.399 180.098V180.098' fill='#d1a3d1'/>
350
+ <path clip-path='url(#clip8)' d='M451.402 180.098H455.39' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
351
+ <path clip-path='url(#clip8)' d='M163.664 249.281H166.903V180.363H163.664ZM222.332 249.281H225.57V144.465H222.332ZM281 249.281H284.238V171.707H281ZM339.672 249.281H342.91V191.641H339.672ZM398.34 249.281H401.578V81.519H398.34ZM457.008 249.281H460.246V190.027H457.008Z' fill='#c285c2'/>
352
+ <path clip-path='url(#clip8)' d='M163.664 249.281H166.903V180.363H163.664ZM222.332 249.281H225.57V144.465H222.332ZM281 249.281H284.238V171.707H281ZM339.672 249.281H342.91V191.641H339.672ZM398.34 249.281H401.578V81.519H398.34ZM457.008 249.281H460.246V190.027H457.008Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
353
+ <path clip-path='url(#clip8)' d='M165.281 180.363V180.363' fill='#c285c2'/>
354
+ <path clip-path='url(#clip8)' d='M163.289 180.363H167.274' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
355
+ <path clip-path='url(#clip8)' d='M165.281 180.363V180.363' fill='#c285c2'/>
356
+ <path clip-path='url(#clip8)' d='M163.289 180.363H167.274' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
357
+ <path clip-path='url(#clip8)' d='M223.953 144.465V144.465' fill='#c285c2'/>
358
+ <path clip-path='url(#clip8)' d='M221.957 144.464H225.945' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
359
+ <path clip-path='url(#clip8)' d='M223.953 144.465V144.465' fill='#c285c2'/>
360
+ <path clip-path='url(#clip8)' d='M221.957 144.464H225.945' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
361
+ <path clip-path='url(#clip8)' d='M282.621 171.707V171.707' fill='#c285c2'/>
362
+ <path clip-path='url(#clip8)' d='M280.629 171.707H284.613' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
363
+ <path clip-path='url(#clip8)' d='M282.621 171.707V171.707' fill='#c285c2'/>
364
+ <path clip-path='url(#clip8)' d='M280.629 171.707H284.613' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
365
+ <path clip-path='url(#clip8)' d='M341.289 191.641V191.641' fill='#c285c2'/>
366
+ <path clip-path='url(#clip8)' d='M339.297 191.641H343.281' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
367
+ <path clip-path='url(#clip8)' d='M341.289 191.641V191.641' fill='#c285c2'/>
368
+ <path clip-path='url(#clip8)' d='M339.297 191.641H343.281' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
369
+ <path clip-path='url(#clip8)' d='M399.957 81.519V81.519' fill='#c285c2'/>
370
+ <path clip-path='url(#clip8)' d='M397.965 81.52H401.949' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
371
+ <path clip-path='url(#clip8)' d='M399.957 81.519V81.519' fill='#c285c2'/>
372
+ <path clip-path='url(#clip8)' d='M397.965 81.52H401.949' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
373
+ <path clip-path='url(#clip8)' d='M458.629 190.027V190.027' fill='#c285c2'/>
374
+ <path clip-path='url(#clip8)' d='M456.633 190.027H460.621' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
375
+ <path clip-path='url(#clip8)' d='M458.629 190.027V190.027' fill='#c285c2'/>
376
+ <path clip-path='url(#clip8)' d='M456.633 190.027H460.621' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
377
+ <path clip-path='url(#clip8)' d='M168.895 249.281H172.133V157.348H168.895ZM227.563 249.281H230.801V81.519H227.563ZM286.231 249.281H289.469V141.711H286.231ZM344.902 249.281H348.141V124.601H344.902ZM403.57 249.281H406.809V132.25H403.57ZM462.238 249.281H465.477V189.894H462.238Z' fill='#b366b3'/>
378
+ <path clip-path='url(#clip8)' d='M168.895 249.281H172.133V157.348H168.895ZM227.563 249.281H230.801V81.519H227.563ZM286.231 249.281H289.469V141.711H286.231ZM344.902 249.281H348.141V124.601H344.902ZM403.57 249.281H406.809V132.25H403.57ZM462.238 249.281H465.477V189.894H462.238Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
379
+ <path clip-path='url(#clip8)' d='M170.512 157.348V157.348' fill='#b366b3'/>
380
+ <path clip-path='url(#clip8)' d='M168.519 157.348H172.504' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
381
+ <path clip-path='url(#clip8)' d='M170.512 157.348V157.348' fill='#b366b3'/>
382
+ <path clip-path='url(#clip8)' d='M168.519 157.348H172.504' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
383
+ <path clip-path='url(#clip8)' d='M229.184 81.519V81.519' fill='#b366b3'/>
384
+ <path clip-path='url(#clip8)' d='M227.187 81.52H231.175' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
385
+ <path clip-path='url(#clip8)' d='M229.184 81.519V81.519' fill='#b366b3'/>
386
+ <path clip-path='url(#clip8)' d='M227.187 81.52H231.175' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
387
+ <path clip-path='url(#clip8)' d='M287.852 141.711V141.711' fill='#b366b3'/>
388
+ <path clip-path='url(#clip8)' d='M285.859 141.711H289.843' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
389
+ <path clip-path='url(#clip8)' d='M287.852 141.711V141.711' fill='#b366b3'/>
390
+ <path clip-path='url(#clip8)' d='M285.859 141.711H289.843' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
391
+ <path clip-path='url(#clip8)' d='M346.52 124.601V124.601' fill='#b366b3'/>
392
+ <path clip-path='url(#clip8)' d='M344.527 124.602H348.511' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
393
+ <path clip-path='url(#clip8)' d='M346.52 124.601V124.601' fill='#b366b3'/>
394
+ <path clip-path='url(#clip8)' d='M344.527 124.602H348.511' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
395
+ <path clip-path='url(#clip8)' d='M405.188 132.25V132.25' fill='#b366b3'/>
396
+ <path clip-path='url(#clip8)' d='M403.195 132.25H407.179' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
397
+ <path clip-path='url(#clip8)' d='M405.188 132.25V132.25' fill='#b366b3'/>
398
+ <path clip-path='url(#clip8)' d='M403.195 132.25H407.179' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
399
+ <path clip-path='url(#clip8)' d='M463.859 189.894V189.894' fill='#b366b3'/>
400
+ <path clip-path='url(#clip8)' d='M461.863 189.894H465.851' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
401
+ <path clip-path='url(#clip8)' d='M463.859 189.894V189.894' fill='#b366b3'/>
402
+ <path clip-path='url(#clip8)' d='M461.863 189.894H465.851' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
403
+ <path clip-path='url(#clip8)' d='M174.125 249.281H177.363V171.574H174.125ZM232.793 249.281H236.031V146.344H232.793ZM291.461 249.281H294.699V169.426H291.461ZM350.133 249.281H353.371V204.254H350.133ZM408.801 249.281H412.039V224.992H408.801ZM467.469 249.281H470.707V163.254H467.469Z' fill='#a447a4'/>
404
+ <path clip-path='url(#clip8)' d='M174.125 249.281H177.363V171.574H174.125ZM232.793 249.281H236.031V146.344H232.793ZM291.461 249.281H294.699V169.426H291.461ZM350.133 249.281H353.371V204.254H350.133ZM408.801 249.281H412.039V224.992H408.801ZM467.469 249.281H470.707V163.254H467.469Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
405
+ <path clip-path='url(#clip8)' d='M175.742 171.574V171.574' fill='#a447a4'/>
406
+ <path clip-path='url(#clip8)' d='M173.75 171.574H177.735' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
407
+ <path clip-path='url(#clip8)' d='M175.742 171.574V171.574' fill='#a447a4'/>
408
+ <path clip-path='url(#clip8)' d='M173.75 171.574H177.735' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
409
+ <path clip-path='url(#clip8)' d='M234.414 146.344V146.344' fill='#a447a4'/>
410
+ <path clip-path='url(#clip8)' d='M232.418 146.343H236.406' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
411
+ <path clip-path='url(#clip8)' d='M234.414 146.344V146.344' fill='#a447a4'/>
412
+ <path clip-path='url(#clip8)' d='M232.418 146.343H236.406' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
413
+ <path clip-path='url(#clip8)' d='M293.082 169.426V169.426' fill='#a447a4'/>
414
+ <path clip-path='url(#clip8)' d='M291.09 169.426H295.074' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
415
+ <path clip-path='url(#clip8)' d='M293.082 169.426V169.426' fill='#a447a4'/>
416
+ <path clip-path='url(#clip8)' d='M291.09 169.426H295.074' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
417
+ <path clip-path='url(#clip8)' d='M351.75 204.254V204.254' fill='#a447a4'/>
418
+ <path clip-path='url(#clip8)' d='M349.758 204.254H353.742' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
419
+ <path clip-path='url(#clip8)' d='M351.75 204.254V204.254' fill='#a447a4'/>
420
+ <path clip-path='url(#clip8)' d='M349.758 204.254H353.742' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
421
+ <path clip-path='url(#clip8)' d='M410.418 224.992V224.992' fill='#a447a4'/>
422
+ <path clip-path='url(#clip8)' d='M408.426 224.992H412.41' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
423
+ <path clip-path='url(#clip8)' d='M410.418 224.992V224.992' fill='#a447a4'/>
424
+ <path clip-path='url(#clip8)' d='M408.426 224.992H412.41' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
425
+ <path clip-path='url(#clip8)' d='M469.09 163.254V163.254' fill='#a447a4'/>
426
+ <path clip-path='url(#clip8)' d='M467.094 163.254H471.082' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
427
+ <path clip-path='url(#clip8)' d='M469.09 163.254V163.254' fill='#a447a4'/>
428
+ <path clip-path='url(#clip8)' d='M467.094 163.254H471.082' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
429
+ <path clip-path='url(#clip8)' d='M179.356 249.281H182.594V176.004H179.356ZM238.024 249.281H241.262V169.16H238.024ZM296.692 249.281H299.93V149.699H296.692ZM355.363 249.281H358.602V121.043H355.363ZM414.031 249.281H417.27V214.051H414.031ZM472.699 249.281H475.938V194.121H472.699Z' fill='#942994'/>
430
+ <path clip-path='url(#clip8)' d='M179.356 249.281H182.594V176.004H179.356ZM238.024 249.281H241.262V169.16H238.024ZM296.692 249.281H299.93V149.699H296.692ZM355.363 249.281H358.602V121.043H355.363ZM414.031 249.281H417.27V214.051H414.031ZM472.699 249.281H475.938V194.121H472.699Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
431
+ <path clip-path='url(#clip8)' d='M180.973 176.004V176.004' fill='#942994'/>
432
+ <path clip-path='url(#clip8)' d='M178.98 176.004H182.965' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
433
+ <path clip-path='url(#clip8)' d='M180.973 176.004V176.004' fill='#942994'/>
434
+ <path clip-path='url(#clip8)' d='M178.98 176.004H182.965' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
435
+ <path clip-path='url(#clip8)' d='M239.645 169.16V169.16' fill='#942994'/>
436
+ <path clip-path='url(#clip8)' d='M237.648 169.16H241.636' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
437
+ <path clip-path='url(#clip8)' d='M239.645 169.16V169.16' fill='#942994'/>
438
+ <path clip-path='url(#clip8)' d='M237.648 169.16H241.636' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
439
+ <path clip-path='url(#clip8)' d='M298.313 149.699V149.699' fill='#942994'/>
440
+ <path clip-path='url(#clip8)' d='M296.32 149.7H300.304' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
441
+ <path clip-path='url(#clip8)' d='M298.313 149.699V149.699' fill='#942994'/>
442
+ <path clip-path='url(#clip8)' d='M296.32 149.7H300.304' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
443
+ <path clip-path='url(#clip8)' d='M356.981 121.043V121.043' fill='#942994'/>
444
+ <path clip-path='url(#clip8)' d='M354.988 121.043H358.972' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
445
+ <path clip-path='url(#clip8)' d='M356.981 121.043V121.043' fill='#942994'/>
446
+ <path clip-path='url(#clip8)' d='M354.988 121.043H358.972' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
447
+ <path clip-path='url(#clip8)' d='M415.649 214.051V214.051' fill='#942994'/>
448
+ <path clip-path='url(#clip8)' d='M413.656 214.05H417.64' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
449
+ <path clip-path='url(#clip8)' d='M415.649 214.051V214.051' fill='#942994'/>
450
+ <path clip-path='url(#clip8)' d='M413.656 214.05H417.64' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
451
+ <path clip-path='url(#clip8)' d='M474.32 194.121V194.121' fill='#942994'/>
452
+ <path clip-path='url(#clip8)' d='M472.324 194.121H476.312' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
453
+ <path clip-path='url(#clip8)' d='M474.32 194.121V194.121' fill='#942994'/>
454
+ <path clip-path='url(#clip8)' d='M472.324 194.121H476.312' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
455
+ <path clip-path='url(#clip8)' d='M184.586 249.281H187.824V181.641H184.586ZM243.254 249.281H246.492V115.137H243.254ZM301.922 249.281H305.16V176.605H301.922ZM360.594 249.281H363.832V185.734H360.594ZM419.262 249.281H422.5V164.125H419.262ZM477.93 249.281H481.168V179.828H477.93Z' fill='#850a85'/>
456
+ <path clip-path='url(#clip8)' d='M184.586 249.281H187.824V181.641H184.586ZM243.254 249.281H246.492V115.137H243.254ZM301.922 249.281H305.16V176.605H301.922ZM360.594 249.281H363.832V185.734H360.594ZM419.262 249.281H422.5V164.125H419.262ZM477.93 249.281H481.168V179.828H477.93Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
457
+ <path clip-path='url(#clip8)' d='M186.203 181.641V181.641' fill='#850a85'/>
458
+ <path clip-path='url(#clip8)' d='M184.211 181.64H188.196' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
459
+ <path clip-path='url(#clip8)' d='M186.203 181.641V181.641' fill='#850a85'/>
460
+ <path clip-path='url(#clip8)' d='M184.211 181.64H188.196' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
461
+ <path clip-path='url(#clip8)' d='M244.875 115.137V115.137' fill='#850a85'/>
462
+ <path clip-path='url(#clip8)' d='M242.879 115.137H246.867' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
463
+ <path clip-path='url(#clip8)' d='M244.875 115.137V115.137' fill='#850a85'/>
464
+ <path clip-path='url(#clip8)' d='M242.879 115.137H246.867' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
465
+ <path clip-path='url(#clip8)' d='M303.543 176.605V176.605' fill='#850a85'/>
466
+ <path clip-path='url(#clip8)' d='M301.551 176.605H305.535' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
467
+ <path clip-path='url(#clip8)' d='M303.543 176.605V176.605' fill='#850a85'/>
468
+ <path clip-path='url(#clip8)' d='M301.551 176.605H305.535' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
469
+ <path clip-path='url(#clip8)' d='M362.211 185.734V185.734' fill='#850a85'/>
470
+ <path clip-path='url(#clip8)' d='M360.219 185.735H364.203' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
471
+ <path clip-path='url(#clip8)' d='M362.211 185.734V185.734' fill='#850a85'/>
472
+ <path clip-path='url(#clip8)' d='M360.219 185.735H364.203' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
473
+ <path clip-path='url(#clip8)' d='M420.879 164.125V164.125' fill='#850a85'/>
474
+ <path clip-path='url(#clip8)' d='M418.887 164.125H422.871' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
475
+ <path clip-path='url(#clip8)' d='M420.879 164.125V164.125' fill='#850a85'/>
476
+ <path clip-path='url(#clip8)' d='M418.887 164.125H422.871' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
477
+ <path clip-path='url(#clip8)' d='M479.551 179.828V179.828' fill='#850a85'/>
478
+ <path clip-path='url(#clip8)' d='M477.555 179.828H481.543' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
479
+ <path clip-path='url(#clip8)' d='M479.551 179.828V179.828' fill='#850a85'/>
480
+ <path clip-path='url(#clip8)' d='M477.555 179.828H481.543' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
481
+ <path clip-path='url(#clip8)' d='M420.539 310.336H487.762V276.324H420.539Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
482
+ <g transform='matrix(1 0 0 1 255.575 118.327)'>
483
+ <use x='168.285' xlink:href='#g2-99' y='164.777'/>
484
+ <use x='170.637' xlink:href='#g2-53' y='164.777'/>
485
+ <use x='173.284' xlink:href='#g2-45' y='164.777'/>
486
+ <use x='175.048' xlink:href='#g2-49' y='164.777'/>
487
+ <use x='177.694' xlink:href='#g2-56' y='164.777'/>
488
+ <use x='180.341' xlink:href='#g2-120' y='164.777'/>
489
+ <use x='182.779' xlink:href='#g2-108' y='164.777'/>
490
+ <use x='184.042' xlink:href='#g2-97' y='164.777'/>
491
+ <use x='186.438' xlink:href='#g2-114' y='164.777'/>
492
+ <use x='188.245' xlink:href='#g2-103' y='164.777'/>
493
+ <use x='190.891' xlink:href='#g2-101' y='164.777'/>
494
+ <use x='193.244' xlink:href='#g2-44' y='164.777'/>
495
+ <use x='196.478' xlink:href='#g2-49' y='164.777'/>
496
+ <use x='199.124' xlink:href='#g2-52' y='164.777'/>
497
+ <use x='201.771' xlink:href='#g2-52' y='164.777'/>
498
+ <use x='204.417' xlink:href='#g2-71' y='164.777'/>
499
+ <use x='207.946' xlink:href='#g2-98' y='164.777'/>
500
+ <use x='168.285' xlink:href='#g2-55' y='170.755'/>
501
+ <use x='170.931' xlink:href='#g2-50' y='170.755'/>
502
+ <use x='175.342' xlink:href='#g2-112' y='170.755'/>
503
+ <use x='177.928' xlink:href='#g2-114' y='170.755'/>
504
+ <use x='179.735' xlink:href='#g2-111' y='170.755'/>
505
+ <use x='182.529' xlink:href='#g2-99' y='170.755'/>
506
+ <use x='186.645' xlink:href='#g2-73' y='170.755'/>
507
+ <use x='188.115' xlink:href='#g2-110' y='170.755'/>
508
+ <use x='190.848' xlink:href='#g2-116' y='170.755'/>
509
+ <use x='192.759' xlink:href='#g2-101' y='170.755'/>
510
+ <use x='195.112' xlink:href='#g2-108' y='170.755'/>
511
+ <use x='198.139' xlink:href='#g2-88' y='170.755'/>
512
+ <use x='201.667' xlink:href='#g2-101' y='170.755'/>
513
+ <use x='204.019' xlink:href='#g2-111' y='170.755'/>
514
+ <use x='206.666' xlink:href='#g2-110' y='170.755'/>
515
+ <use x='211.163' xlink:href='#g2-64' y='170.755'/>
516
+ <use x='214.691' xlink:href='#g2-51' y='170.755'/>
517
+ <use x='217.338' xlink:href='#g2-71' y='170.755'/>
518
+ <use x='220.866' xlink:href='#g2-104' y='170.755'/>
519
+ <use x='223.599' xlink:href='#g2-122' y='170.755'/>
520
+ <use x='168.285' xlink:href='#g2-85' y='176.733'/>
521
+ <use x='171.917' xlink:href='#g2-98' y='176.733'/>
522
+ <use x='174.65' xlink:href='#g2-117' y='176.733'/>
523
+ <use x='177.383' xlink:href='#g2-110' y='176.733'/>
524
+ <use x='180.116' xlink:href='#g2-116' y='176.733'/>
525
+ <use x='182.027' xlink:href='#g2-117' y='176.733'/>
526
+ <use x='186.524' xlink:href='#g2-49' y='176.733'/>
527
+ <use x='189.17' xlink:href='#g2-56' y='176.733'/>
528
+ <use x='191.817' xlink:href='#g2-46' y='176.733'/>
529
+ <use x='193.287' xlink:href='#g2-48' y='176.733'/>
530
+ <use x='195.933' xlink:href='#g2-52' y='176.733'/>
531
+ <use x='198.58' xlink:href='#g2-46' y='176.733'/>
532
+ <use x='200.05' xlink:href='#g2-49' y='176.733'/>
533
+ <use x='202.696' xlink:href='#g2-44' y='176.733'/>
534
+ <use x='205.931' xlink:href='#g2-71' y='176.733'/>
535
+ <use x='209.459' xlink:href='#g2-67' y='176.733'/>
536
+ <use x='212.841' xlink:href='#g2-67' y='176.733'/>
537
+ <use x='217.986' xlink:href='#g2-55' y='176.733'/>
538
+ <use x='220.633' xlink:href='#g2-46' y='176.733'/>
539
+ <use x='222.103' xlink:href='#g2-52' y='176.733'/>
540
+ <use x='224.749' xlink:href='#g2-46' y='176.733'/>
541
+ <use x='226.219' xlink:href='#g2-48' y='176.733'/>
542
+ <use x='168.285' xlink:href='#g2-51' y='182.71'/>
543
+ <use x='170.931' xlink:href='#g2-54' y='182.71'/>
544
+ <use x='175.342' xlink:href='#g2-99' y='182.71'/>
545
+ <use x='177.694' xlink:href='#g2-111' y='182.71'/>
546
+ <use x='180.193' xlink:href='#g2-114' y='182.71'/>
547
+ <use x='182.001' xlink:href='#g2-101' y='182.71'/>
548
+ <use x='184.353' xlink:href='#g2-115' y='182.71'/>
549
+ <use x='188.146' xlink:href='#g2-111' y='182.71'/>
550
+ <use x='190.793' xlink:href='#g2-110' y='182.71'/>
551
+ <use x='195.29' xlink:href='#g2-50' y='182.71'/>
552
+ <use x='199.7' xlink:href='#g2-110' y='182.71'/>
553
+ <use x='202.433' xlink:href='#g2-117' y='182.71'/>
554
+ <use x='205.166' xlink:href='#g2-109' y='182.71'/>
555
+ <use x='209.369' xlink:href='#g2-97' y='182.71'/>
556
+ <use x='213.676' xlink:href='#g2-110' y='182.71'/>
557
+ <use x='216.409' xlink:href='#g2-111' y='182.71'/>
558
+ <use x='219.202' xlink:href='#g2-100' y='182.71'/>
559
+ <use x='221.935' xlink:href='#g2-101' y='182.71'/>
560
+ <use x='224.287' xlink:href='#g2-115' y='182.71'/>
561
+ <use x='168.285' xlink:href='#g2-50' y='188.688'/>
562
+ <use x='170.931' xlink:href='#g2-48' y='188.688'/>
563
+ <use x='173.578' xlink:href='#g2-50' y='188.688'/>
564
+ <use x='176.224' xlink:href='#g2-48' y='188.688'/>
565
+ <use x='178.87' xlink:href='#g2-45' y='188.688'/>
566
+ <use x='180.635' xlink:href='#g2-48' y='188.688'/>
567
+ <use x='183.281' xlink:href='#g2-49' y='188.688'/>
568
+ <use x='185.927' xlink:href='#g2-45' y='188.688'/>
569
+ <use x='187.692' xlink:href='#g2-49' y='188.688'/>
570
+ <use x='190.338' xlink:href='#g2-56' y='188.688'/>
571
+ </g>
572
+ <g transform='matrix(0 -1 1 0 -42.693 344.258)'>
573
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
574
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
575
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
576
+ <use x='175.048' xlink:href='#g2-48' y='188.688'/>
577
+ </g>
578
+ <g transform='matrix(0 -1 1 0 15.976 344.258)'>
579
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
580
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
581
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
582
+ <use x='175.048' xlink:href='#g2-48' y='188.688'/>
583
+ </g>
584
+ <g transform='matrix(0 -1 1 0 74.645 344.258)'>
585
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
586
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
587
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
588
+ <use x='175.048' xlink:href='#g2-48' y='188.688'/>
589
+ </g>
590
+ <g transform='matrix(0 -1 1 0 133.314 344.258)'>
591
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
592
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
593
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
594
+ <use x='175.048' xlink:href='#g2-48' y='188.688'/>
595
+ </g>
596
+ <g transform='matrix(0 -1 1 0 191.983 344.258)'>
597
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
598
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
599
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
600
+ <use x='175.048' xlink:href='#g2-48' y='188.688'/>
601
+ </g>
602
+ <g transform='matrix(0 -1 1 0 250.652 344.258)'>
603
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
604
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
605
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
606
+ <use x='175.048' xlink:href='#g2-48' y='188.688'/>
607
+ </g>
608
+ <g transform='matrix(0 -1 1 0 -37.462 326.81)'>
609
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
610
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
611
+ <use x='172.401' xlink:href='#g2-50' y='188.688'/>
612
+ <use x='175.048' xlink:href='#g2-54' y='188.688'/>
613
+ </g>
614
+ <g transform='matrix(0 -1 1 0 21.207 324.059)'>
615
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
616
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
617
+ <use x='172.401' xlink:href='#g2-51' y='188.688'/>
618
+ <use x='175.048' xlink:href='#g2-48' y='188.688'/>
619
+ </g>
620
+ <g transform='matrix(0 -1 1 0 79.876 345.332)'>
621
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
622
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
623
+ <use x='172.401' xlink:href='#g2-57' y='188.688'/>
624
+ <use x='175.048' xlink:href='#g2-56' y='188.688'/>
625
+ </g>
626
+ <g transform='matrix(0 -1 1 0 138.545 371.973)'>
627
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
628
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
629
+ <use x='172.401' xlink:href='#g2-53' y='188.688'/>
630
+ <use x='175.048' xlink:href='#g2-57' y='188.688'/>
631
+ </g>
632
+ <g transform='matrix(0 -1 1 0 197.214 386.266)'>
633
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
634
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
635
+ <use x='172.401' xlink:href='#g2-51' y='188.688'/>
636
+ <use x='175.048' xlink:href='#g2-55' y='188.688'/>
637
+ </g>
638
+ <g transform='matrix(0 -1 1 0 255.882 303.323)'>
639
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
640
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
641
+ <use x='172.401' xlink:href='#g2-54' y='188.688'/>
642
+ <use x='175.048' xlink:href='#g2-49' y='188.688'/>
643
+ </g>
644
+ <g transform='matrix(0 -1 1 0 -32.232 347.211)'>
645
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
646
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
647
+ <use x='172.401' xlink:href='#g2-57' y='188.688'/>
648
+ <use x='175.048' xlink:href='#g2-54' y='188.688'/>
649
+ </g>
650
+ <g transform='matrix(0 -1 1 0 26.437 339.963)'>
651
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
652
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
653
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
654
+ <use x='175.048' xlink:href='#g2-54' y='188.688'/>
655
+ </g>
656
+ <g transform='matrix(0 -1 1 0 85.106 343.52)'>
657
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
658
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
659
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
660
+ <use x='175.048' xlink:href='#g2-49' y='188.688'/>
661
+ </g>
662
+ <g transform='matrix(0 -1 1 0 143.775 354.928)'>
663
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
664
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
665
+ <use x='172.401' xlink:href='#g2-56' y='188.688'/>
666
+ <use x='175.048' xlink:href='#g2-52' y='188.688'/>
667
+ </g>
668
+ <g transform='matrix(0 -1 1 0 202.444 345.801)'>
669
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
670
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
671
+ <use x='172.401' xlink:href='#g2-57' y='188.688'/>
672
+ <use x='175.048' xlink:href='#g2-56' y='188.688'/>
673
+ </g>
674
+ <g transform='matrix(0 -1 1 0 261.113 307.081)'>
675
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
676
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
677
+ <use x='172.401' xlink:href='#g2-53' y='188.688'/>
678
+ <use x='175.048' xlink:href='#g2-53' y='188.688'/>
679
+ </g>
680
+ <g transform='matrix(0 -1 1 0 -27.002 343.05)'>
681
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
682
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
683
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
684
+ <use x='175.048' xlink:href='#g2-50' y='188.688'/>
685
+ </g>
686
+ <g transform='matrix(0 -1 1 0 31.667 334.125)'>
687
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
688
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
689
+ <use x='172.401' xlink:href='#g2-49' y='188.688'/>
690
+ <use x='175.048' xlink:href='#g2-53' y='188.688'/>
691
+ </g>
692
+ <g transform='matrix(0 -1 1 0 90.336 334.393)'>
693
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
694
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
695
+ <use x='172.401' xlink:href='#g2-49' y='188.688'/>
696
+ <use x='175.048' xlink:href='#g2-53' y='188.688'/>
697
+ </g>
698
+ <g transform='matrix(0 -1 1 0 149.005 357.075)'>
699
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
700
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
701
+ <use x='172.401' xlink:href='#g2-56' y='188.688'/>
702
+ <use x='175.048' xlink:href='#g2-49' y='188.688'/>
703
+ </g>
704
+ <g transform='matrix(0 -1 1 0 207.674 357.612)'>
705
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
706
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
707
+ <use x='172.401' xlink:href='#g2-56' y='188.688'/>
708
+ <use x='175.048' xlink:href='#g2-48' y='188.688'/>
709
+ </g>
710
+ <g transform='matrix(0 -1 1 0 266.343 342.178)'>
711
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
712
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
713
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
714
+ <use x='175.048' xlink:href='#g2-51' y='188.688'/>
715
+ </g>
716
+ <g transform='matrix(0 -1 1 0 -21.771 342.446)'>
717
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
718
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
719
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
720
+ <use x='175.048' xlink:href='#g2-51' y='188.688'/>
721
+ </g>
722
+ <g transform='matrix(0 -1 1 0 36.898 306.544)'>
723
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
724
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
725
+ <use x='172.401' xlink:href='#g2-53' y='188.688'/>
726
+ <use x='175.048' xlink:href='#g2-54' y='188.688'/>
727
+ </g>
728
+ <g transform='matrix(0 -1 1 0 95.567 333.789)'>
729
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
730
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
731
+ <use x='172.401' xlink:href='#g2-49' y='188.688'/>
732
+ <use x='175.048' xlink:href='#g2-54' y='188.688'/>
733
+ </g>
734
+ <g transform='matrix(0 -1 1 0 154.236 353.72)'>
735
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
736
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
737
+ <use x='172.401' xlink:href='#g2-56' y='188.688'/>
738
+ <use x='175.048' xlink:href='#g2-54' y='188.688'/>
739
+ </g>
740
+ <g transform='matrix(0 -1 1 0 212.905 243.599)'>
741
+ <use x='163.396' xlink:href='#g4-1' y='188.688'/>
742
+ <use x='166.901' xlink:href='#g4-1' y='188.688'/>
743
+ <use x='170.407' xlink:href='#g4-1' y='188.688'/>
744
+ <use x='173.912' xlink:href='#g2-50' y='188.688'/>
745
+ <use x='176.558' xlink:href='#g2-55' y='188.688'/>
746
+ <use x='179.205' xlink:href='#g2-46' y='188.688'/>
747
+ <use x='180.675' xlink:href='#g2-51' y='188.688'/>
748
+ <use x='183.321' xlink:href='#g2-51' y='188.688'/>
749
+ <use x='185.968' xlink:href='#g2-120' y='188.688'/>
750
+ </g>
751
+ <g transform='matrix(0 -1 1 0 271.574 352.109)'>
752
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
753
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
754
+ <use x='172.401' xlink:href='#g2-56' y='188.688'/>
755
+ <use x='175.048' xlink:href='#g2-56' y='188.688'/>
756
+ </g>
757
+ <g transform='matrix(0 -1 1 0 -16.541 319.429)'>
758
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
759
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
760
+ <use x='172.401' xlink:href='#g2-51' y='188.688'/>
761
+ <use x='175.048' xlink:href='#g2-55' y='188.688'/>
762
+ </g>
763
+ <g transform='matrix(0 -1 1 0 42.128 243.599)'>
764
+ <use x='163.396' xlink:href='#g4-1' y='188.688'/>
765
+ <use x='166.901' xlink:href='#g4-1' y='188.688'/>
766
+ <use x='170.407' xlink:href='#g4-1' y='188.688'/>
767
+ <use x='173.912' xlink:href='#g2-51' y='188.688'/>
768
+ <use x='176.558' xlink:href='#g2-46' y='188.688'/>
769
+ <use x='178.029' xlink:href='#g2-51' y='188.688'/>
770
+ <use x='180.675' xlink:href='#g2-54' y='188.688'/>
771
+ <use x='183.321' xlink:href='#g2-120' y='188.688'/>
772
+ </g>
773
+ <g transform='matrix(0 -1 1 0 100.797 303.793)'>
774
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
775
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
776
+ <use x='172.401' xlink:href='#g2-54' y='188.688'/>
777
+ <use x='175.048' xlink:href='#g2-48' y='188.688'/>
778
+ </g>
779
+ <g transform='matrix(0 -1 1 0 159.466 286.681)'>
780
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
781
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
782
+ <use x='172.401' xlink:href='#g2-56' y='188.688'/>
783
+ <use x='175.048' xlink:href='#g2-54' y='188.688'/>
784
+ </g>
785
+ <g transform='matrix(0 -1 1 0 218.135 294.331)'>
786
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
787
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
788
+ <use x='172.401' xlink:href='#g2-55' y='188.688'/>
789
+ <use x='175.048' xlink:href='#g2-52' y='188.688'/>
790
+ </g>
791
+ <g transform='matrix(0 -1 1 0 276.804 351.975)'>
792
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
793
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
794
+ <use x='172.401' xlink:href='#g2-56' y='188.688'/>
795
+ <use x='175.048' xlink:href='#g2-57' y='188.688'/>
796
+ </g>
797
+ <g transform='matrix(0 -1 1 0 -11.31 333.655)'>
798
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
799
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
800
+ <use x='172.401' xlink:href='#g2-49' y='188.688'/>
801
+ <use x='175.048' xlink:href='#g2-54' y='188.688'/>
802
+ </g>
803
+ <g transform='matrix(0 -1 1 0 47.359 308.423)'>
804
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
805
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
806
+ <use x='172.401' xlink:href='#g2-53' y='188.688'/>
807
+ <use x='175.048' xlink:href='#g2-51' y='188.688'/>
808
+ </g>
809
+ <g transform='matrix(0 -1 1 0 106.028 331.508)'>
810
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
811
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
812
+ <use x='172.401' xlink:href='#g2-49' y='188.688'/>
813
+ <use x='175.048' xlink:href='#g2-57' y='188.688'/>
814
+ </g>
815
+ <g transform='matrix(0 -1 1 0 164.697 366.336)'>
816
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
817
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
818
+ <use x='172.401' xlink:href='#g2-54' y='188.688'/>
819
+ <use x='175.048' xlink:href='#g2-55' y='188.688'/>
820
+ </g>
821
+ <g transform='matrix(0 -1 1 0 223.366 387.072)'>
822
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
823
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
824
+ <use x='172.401' xlink:href='#g2-51' y='188.688'/>
825
+ <use x='175.048' xlink:href='#g2-54' y='188.688'/>
826
+ </g>
827
+ <g transform='matrix(0 -1 1 0 282.035 325.334)'>
828
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
829
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
830
+ <use x='172.401' xlink:href='#g2-50' y='188.688'/>
831
+ <use x='175.048' xlink:href='#g2-56' y='188.688'/>
832
+ </g>
833
+ <g transform='matrix(0 -1 1 0 -6.08 338.084)'>
834
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
835
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
836
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
837
+ <use x='175.048' xlink:href='#g2-57' y='188.688'/>
838
+ </g>
839
+ <g transform='matrix(0 -1 1 0 52.589 331.239)'>
840
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
841
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
842
+ <use x='172.401' xlink:href='#g2-49' y='188.688'/>
843
+ <use x='175.048' xlink:href='#g2-57' y='188.688'/>
844
+ </g>
845
+ <g transform='matrix(0 -1 1 0 111.258 311.779)'>
846
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
847
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
848
+ <use x='172.401' xlink:href='#g2-52' y='188.688'/>
849
+ <use x='175.048' xlink:href='#g2-56' y='188.688'/>
850
+ </g>
851
+ <g transform='matrix(0 -1 1 0 169.927 283.124)'>
852
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
853
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
854
+ <use x='172.401' xlink:href='#g2-57' y='188.688'/>
855
+ <use x='175.048' xlink:href='#g2-49' y='188.688'/>
856
+ </g>
857
+ <g transform='matrix(0 -1 1 0 228.596 376.133)'>
858
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
859
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
860
+ <use x='172.401' xlink:href='#g2-53' y='188.688'/>
861
+ <use x='175.048' xlink:href='#g2-50' y='188.688'/>
862
+ </g>
863
+ <g transform='matrix(0 -1 1 0 287.265 356.203)'>
864
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
865
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
866
+ <use x='172.401' xlink:href='#g2-56' y='188.688'/>
867
+ <use x='175.048' xlink:href='#g2-50' y='188.688'/>
868
+ </g>
869
+ <g transform='matrix(0 -1 1 0 -0.849 343.721)'>
870
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
871
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
872
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
873
+ <use x='175.048' xlink:href='#g2-49' y='188.688'/>
874
+ </g>
875
+ <g transform='matrix(0 -1 1 0 57.82 277.219)'>
876
+ <use x='168.285' xlink:href='#g2-50' y='188.688'/>
877
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
878
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
879
+ <use x='175.048' xlink:href='#g2-48' y='188.688'/>
880
+ </g>
881
+ <g transform='matrix(0 -1 1 0 116.489 338.688)'>
882
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
883
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
884
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
885
+ <use x='175.048' xlink:href='#g2-56' y='188.688'/>
886
+ </g>
887
+ <g transform='matrix(0 -1 1 0 175.158 347.815)'>
888
+ <use x='168.285' xlink:href='#g2-48' y='188.688'/>
889
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
890
+ <use x='172.401' xlink:href='#g2-57' y='188.688'/>
891
+ <use x='175.048' xlink:href='#g2-53' y='188.688'/>
892
+ </g>
893
+ <g transform='matrix(0 -1 1 0 233.827 326.206)'>
894
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
895
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
896
+ <use x='172.401' xlink:href='#g2-50' y='188.688'/>
897
+ <use x='175.048' xlink:href='#g2-55' y='188.688'/>
898
+ </g>
899
+ <g transform='matrix(0 -1 1 0 292.496 341.909)'>
900
+ <use x='168.285' xlink:href='#g2-49' y='188.688'/>
901
+ <use x='170.931' xlink:href='#g2-46' y='188.688'/>
902
+ <use x='172.401' xlink:href='#g2-48' y='188.688'/>
903
+ <use x='175.048' xlink:href='#g2-52' y='188.688'/>
904
+ </g>
905
+ <g transform='matrix(0 -1 1 0 -75.53 385.58)'>
906
+ <use x='168.285' xlink:href='#g1-82' y='188.688'/>
907
+ <use x='174.255' xlink:href='#g1-101' y='188.688'/>
908
+ <use x='178.351' xlink:href='#g1-108' y='188.688'/>
909
+ <use x='180.551' xlink:href='#g1-97' y='188.688'/>
910
+ <use x='184.979' xlink:href='#g1-116' y='188.688'/>
911
+ <use x='188.307' xlink:href='#g1-105' y='188.688'/>
912
+ <use x='190.507' xlink:href='#g1-118' y='188.688'/>
913
+ <use x='194.755' xlink:href='#g1-101' y='188.688'/>
914
+ <use x='201.922' xlink:href='#g1-114' y='188.688'/>
915
+ <use x='205.07' xlink:href='#g1-115' y='188.688'/>
916
+ <use x='208.603' xlink:href='#g1-115' y='188.688'/>
917
+ <use x='215.207' xlink:href='#g3-40' y='188.688'/>
918
+ <use x='218.5' xlink:href='#g3-108' y='188.688'/>
919
+ <use x='220.521' xlink:href='#g3-111' y='188.688'/>
920
+ <use x='224.52' xlink:href='#g3-119' y='188.688'/>
921
+ <use x='230.068' xlink:href='#g3-101' y='188.688'/>
922
+ <use x='233.832' xlink:href='#g3-114' y='188.688'/>
923
+ <use x='239.547' xlink:href='#g3-105' y='188.688'/>
924
+ <use x='241.567' xlink:href='#g3-115' y='188.688'/>
925
+ <use x='247.636' xlink:href='#g3-98' y='188.688'/>
926
+ <use x='252.244' xlink:href='#g3-101' y='188.688'/>
927
+ <use x='256.008' xlink:href='#g3-116' y='188.688'/>
928
+ <use x='259.066' xlink:href='#g3-116' y='188.688'/>
929
+ <use x='262.124' xlink:href='#g3-101' y='188.688'/>
930
+ <use x='265.887' xlink:href='#g3-114' y='188.688'/>
931
+ <use x='268.779' xlink:href='#g3-41' y='188.688'/>
932
+ </g>
933
+ <path d='M136.149 309.68H341.363V279.68H136.149Z' fill='#ffffff'/>
934
+ <path d='M136.149 309.68H341.363V279.68H136.149Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
935
+ <path d='M139.336 290.168H142.324V282.199H139.336ZM145.313 290.168H148.301V284.191H145.313Z' fill='#ffffff'/>
936
+ <path d='M139.336 290.168H142.324V282.199H139.336ZM145.313 290.168H148.301V284.191H145.313Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
937
+ <g transform='matrix(1 0 0 1 -40.354 114.479)'>
938
+ <use x='195.372' xlink:href='#g3-120' y='175.681'/>
939
+ <use x='199.274' xlink:href='#g3-109' y='175.681'/>
940
+ <use x='205.999' xlink:href='#g3-105' y='175.681'/>
941
+ <use x='208.019' xlink:href='#g3-58' y='175.681'/>
942
+ <use x='210.371' xlink:href='#g0-54' y='175.681'/>
943
+ <use x='214.076' xlink:href='#g0-57' y='175.681'/>
944
+ </g>
945
+ <path d='M184.145 290.168H187.133V282.199H184.145ZM190.121 290.168H193.109V284.191H190.121Z' fill='#f0e0f0'/>
946
+ <path d='M184.145 290.168H187.133V282.199H184.145ZM190.121 290.168H193.109V284.191H190.121Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
947
+ <g transform='matrix(1 0 0 1 -37.441 114.036)'>
948
+ <use x='239.382' xlink:href='#g3-116' y='175.681'/>
949
+ <use x='242.44' xlink:href='#g3-99' y='175.681'/>
950
+ <use x='246.204' xlink:href='#g3-58' y='175.681'/>
951
+ <use x='248.556' xlink:href='#g0-54' y='175.681'/>
952
+ <use x='252.261' xlink:href='#g0-54' y='175.681'/>
953
+ </g>
954
+ <path d='M227.356 290.168H230.344V282.199H227.356ZM233.332 290.168H236.32V284.191H233.332Z' fill='#e1c2e1'/>
955
+ <path d='M227.356 290.168H230.344V282.199H227.356ZM233.332 290.168H236.32V284.191H233.332Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
956
+ <g transform='matrix(1 0 0 1 -37.04 114.479)'>
957
+ <use x='281.863' xlink:href='#g3-106' y='175.681'/>
958
+ <use x='284.119' xlink:href='#g3-101' y='175.681'/>
959
+ <use x='287.882' xlink:href='#g3-58' y='175.681'/>
960
+ <use x='290.235' xlink:href='#g0-54' y='175.681'/>
961
+ <use x='293.94' xlink:href='#g0-54' y='175.681'/>
962
+ </g>
963
+ <path d='M269.106 290.168H272.094V282.199H269.106ZM275.086 290.168H278.074V284.191H275.086Z' fill='#d1a3d1'/>
964
+ <path d='M269.106 290.168H272.094V282.199H269.106ZM275.086 290.168H278.074V284.191H275.086Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
965
+ <g transform='matrix(1 0 0 1 -39.932 114.515)'>
966
+ <use x='321.287' xlink:href='#g3-116' y='175.681'/>
967
+ <use x='324.345' xlink:href='#g3-98' y='175.681'/>
968
+ <use x='328.717' xlink:href='#g3-98' y='175.681'/>
969
+ <use x='333.09' xlink:href='#g3-58' y='175.681'/>
970
+ <use x='335.442' xlink:href='#g0-54' y='175.681'/>
971
+ <use x='339.147' xlink:href='#g0-53' y='175.681'/>
972
+ </g>
973
+ <path d='M306.203 290.168H309.191V282.199H306.203ZM312.18 290.168H315.168V284.191H312.18Z' fill='#c285c2'/>
974
+ <path d='M306.203 290.168H309.191V282.199H306.203ZM312.18 290.168H315.168V284.191H312.18Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
975
+ <g transform='matrix(1 0 0 1 -37.662 114.036)'>
976
+ <use x='356.019' xlink:href='#g3-114' y='175.681'/>
977
+ <use x='358.911' xlink:href='#g3-112' y='175.681'/>
978
+ <use x='363.284' xlink:href='#g3-58' y='175.681'/>
979
+ <use x='365.636' xlink:href='#g0-52' y='175.681'/>
980
+ <use x='369.341' xlink:href='#g0-52' y='175.681'/>
981
+ </g>
982
+ <path d='M139.336 303.176H142.324V295.207H139.336ZM145.313 303.176H148.301V297.199H145.313Z' fill='#b366b3'/>
983
+ <path d='M139.336 303.176H142.324V295.207H139.336ZM145.313 303.176H148.301V297.199H145.313Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
984
+ <g transform='matrix(1 0 0 1 -43.882 114.515)'>
985
+ <use x='195.372' xlink:href='#g3-104' y='188.688'/>
986
+ <use x='199.744' xlink:href='#g3-111' y='188.688'/>
987
+ <use x='203.978' xlink:href='#g3-97' y='188.688'/>
988
+ <use x='207.811' xlink:href='#g3-114' y='188.688'/>
989
+ <use x='210.703' xlink:href='#g3-100' y='188.688'/>
990
+ <use x='215.076' xlink:href='#g3-58' y='188.688'/>
991
+ <use x='217.428' xlink:href='#g0-51' y='188.688'/>
992
+ <use x='221.133' xlink:href='#g0-54' y='188.688'/>
993
+ </g>
994
+ <path d='M184.145 303.176H187.133V295.207H184.145ZM190.121 303.176H193.109V297.199H190.121Z' fill='#a447a4'/>
995
+ <path d='M184.145 303.176H187.133V295.207H184.145ZM190.121 303.176H193.109V297.199H190.121Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
996
+ <g transform='matrix(1 0 0 1 -43.084 114.515)'>
997
+ <use x='239.382' xlink:href='#g3-109' y='188.688'/>
998
+ <use x='246.107' xlink:href='#g3-101' y='188.688'/>
999
+ <use x='249.871' xlink:href='#g3-115' y='188.688'/>
1000
+ <use x='253.117' xlink:href='#g3-104' y='188.688'/>
1001
+ <use x='257.489' xlink:href='#g3-58' y='188.688'/>
1002
+ <use x='259.842' xlink:href='#g0-54' y='188.688'/>
1003
+ <use x='263.547' xlink:href='#g0-49' y='188.688'/>
1004
+ </g>
1005
+ <path d='M227.356 303.176H230.344V295.207H227.356ZM233.332 303.176H236.32V297.199H233.332Z' fill='#942994'/>
1006
+ <path d='M227.356 303.176H230.344V295.207H227.356ZM233.332 303.176H236.32V297.199H233.332Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
1007
+ <g transform='matrix(1 0 0 1 -42.353 114.515)'>
1008
+ <use x='281.863' xlink:href='#g3-103' y='188.688'/>
1009
+ <use x='286.097' xlink:href='#g3-108' y='188.688'/>
1010
+ <use x='288.118' xlink:href='#g3-105' y='188.688'/>
1011
+ <use x='290.138' xlink:href='#g3-98' y='188.688'/>
1012
+ <use x='294.746' xlink:href='#g3-99' y='188.688'/>
1013
+ <use x='298.509' xlink:href='#g3-58' y='188.688'/>
1014
+ <use x='300.862' xlink:href='#g0-54' y='188.688'/>
1015
+ <use x='304.567' xlink:href='#g0-52' y='188.688'/>
1016
+ </g>
1017
+ <path d='M269.106 303.176H272.094V295.207H269.106ZM275.086 303.176H278.074V297.199H275.086Z' fill='#850a85'/>
1018
+ <path d='M269.106 303.176H272.094V295.207H269.106ZM275.086 303.176H278.074V297.199H275.086Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
1019
+ <g transform='matrix(1 0 0 1 -40.026 114.479)'>
1020
+ <use x='321.287' xlink:href='#g3-115' y='188.688'/>
1021
+ <use x='324.533' xlink:href='#g3-109' y='188.688'/>
1022
+ <use x='331.258' xlink:href='#g3-105' y='188.688'/>
1023
+ <use x='333.278' xlink:href='#g3-58' y='188.688'/>
1024
+ <use x='335.63' xlink:href='#g0-52' y='188.688'/>
1025
+ <use x='339.335' xlink:href='#g0-53' y='188.688'/>
1026
+ </g>
1027
+ </g>
1028
+ </svg>