@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,1131 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <!-- This file was generated by dvisvgm 2.9.1 -->
3
+ <svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='381.627pt' height='254.34pt' viewBox='106.732 54.992 381.627 254.34'>
4
+ <rect width="1000%" height="1000%" fill="white"/>
5
+ <defs>
6
+ <clipPath id='clip2'>
7
+ <path d='M135.949 246.637H487.961V78.871H135.949Z'/>
8
+ </clipPath>
9
+ <path id='g1-82' 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.223H.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'/>
10
+ <path id='g1-97' d='M3.694-2.591C3.694-3.479 3.04-4.133 2.152-4.133C1.569-4.133 1.139-3.981 .708-3.739L.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 .395-1.766 .395-1.04C.395-.619 .672 .099 1.453 .099C1.632 .099 2.412 .081 2.977-.341V0H3.694V-2.591ZM2.95-1.255C2.95-1.067 2.95-.843 2.627-.655C2.403-.52 2.107-.484 1.928-.484C1.47-.484 1.085-.699 1.085-1.058C1.085-1.695 2.833-1.722 2.95-1.722V-1.255Z'/>
11
+ <path id='g1-101' 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 .314-3.174 .314-2.026C.314-.843 1.193 .099 2.313 .099C2.744 .099 3.264-.009 3.784-.341L3.73-.959C3.165-.556 2.636-.484 2.322-.484C1.578-.484 1.004-1.139 .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'/>
12
+ <path id='g1-105' d='M1.524-6.133H.664V-5.272H1.524V-6.133ZM1.453-3.981H.735V0H1.453V-3.981Z'/>
13
+ <path id='g1-108' d='M1.453-6.223H.735V0H1.453V-6.223Z'/>
14
+ <path id='g1-114' 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.035H.744V0H1.462V-1.91Z'/>
15
+ <path id='g1-115' d='M3.165-3.847C2.609-4.098 2.197-4.133 1.829-4.133C1.623-4.133 .305-4.133 .305-2.95C.305-2.52 .565-2.251 .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-.502 1.919-.502 1.802-.502C1.273-.502 .762-.681 .377-.95L.26-.296C.798-.009 1.345 .099 1.802 .099C2.385 .099 3.318-.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 .977-2.618 .977-3.04C.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'/>
16
+ <path id='g1-116' d='M1.623-3.425H2.914V-3.981H1.623V-5.12H.959V-3.981H.17V-3.425H.933V-1.13C.933-.601 1.049 .099 1.704 .099C2.098 .099 2.564 .018 3.067-.233L2.914-.798C2.681-.619 2.367-.511 2.089-.511C1.739-.511 1.623-.825 1.623-1.291V-3.425Z'/>
17
+ <path id='g1-118' d='M4.116-3.981H3.407L2.699-2.161C2.52-1.695 2.188-.825 2.143-.493H2.125C2.107-.646 2.08-.816 1.587-2.107C1.318-2.833 .879-3.927 .861-3.981H.126L1.704 0H2.537L4.116-3.981Z'/>
18
+ <use id='g3-40' xlink:href='#g0-40' transform='scale(1.143)'/>
19
+ <use id='g3-41' xlink:href='#g0-41' transform='scale(1.143)'/>
20
+ <use id='g3-45' xlink:href='#g0-45' transform='scale(1.143)'/>
21
+ <use id='g3-49' xlink:href='#g0-49' transform='scale(1.143)'/>
22
+ <use id='g3-54' xlink:href='#g0-54' transform='scale(1.143)'/>
23
+ <use id='g3-56' xlink:href='#g0-56' transform='scale(1.143)'/>
24
+ <use id='g3-58' xlink:href='#g0-58' transform='scale(1.143)'/>
25
+ <use id='g3-78' xlink:href='#g0-78' transform='scale(1.143)'/>
26
+ <use id='g3-97' xlink:href='#g0-97' transform='scale(1.143)'/>
27
+ <use id='g3-98' xlink:href='#g0-98' transform='scale(1.143)'/>
28
+ <use id='g3-99' xlink:href='#g0-99' transform='scale(1.143)'/>
29
+ <use id='g3-100' xlink:href='#g0-100' transform='scale(1.143)'/>
30
+ <use id='g3-101' xlink:href='#g0-101' transform='scale(1.143)'/>
31
+ <use id='g3-103' xlink:href='#g0-103' transform='scale(1.143)'/>
32
+ <use id='g3-104' xlink:href='#g0-104' transform='scale(1.143)'/>
33
+ <use id='g3-105' xlink:href='#g0-105' transform='scale(1.143)'/>
34
+ <use id='g3-106' xlink:href='#g0-106' transform='scale(1.143)'/>
35
+ <use id='g3-108' xlink:href='#g0-108' transform='scale(1.143)'/>
36
+ <use id='g3-109' xlink:href='#g0-109' transform='scale(1.143)'/>
37
+ <use id='g3-110' xlink:href='#g0-110' transform='scale(1.143)'/>
38
+ <use id='g3-111' xlink:href='#g0-111' transform='scale(1.143)'/>
39
+ <use id='g3-112' xlink:href='#g0-112' transform='scale(1.143)'/>
40
+ <use id='g3-114' xlink:href='#g0-114' transform='scale(1.143)'/>
41
+ <use id='g3-115' xlink:href='#g0-115' transform='scale(1.143)'/>
42
+ <use id='g3-116' xlink:href='#g0-116' transform='scale(1.143)'/>
43
+ <use id='g3-119' xlink:href='#g0-119' transform='scale(1.143)'/>
44
+ <use id='g3-120' xlink:href='#g0-120' transform='scale(1.143)'/>
45
+ <path id='g0-40' d='M2.127-5.23C2.008-5.23 1.995-5.23 1.911-5.154C1.032-4.387 .586-3.145 .586-1.743C.586-.425 .983 .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 .063C1.276-.481 1.193-1.053 1.193-1.743C1.193-4.156 2.322-5.112 2.462-5.23H2.127Z'/>
46
+ <path id='g0-41' d='M.746 1.743C.865 1.743 .879 1.743 .962 1.667C1.841 .9 2.287-.342 2.287-1.743C2.287-3.062 1.89-4.331 .969-5.14C.879-5.23 .865-5.23 .746-5.23H.411C.432-5.216 1.109-4.638 1.43-3.55C1.597-3.006 1.681-2.434 1.681-1.743C1.681 .669 .551 1.625 .411 1.743H.746Z'/>
47
+ <path id='g0-44' d='M1.339-.007V-.628H.711V0H.907L.704 .893H1.018L1.339-.007Z'/>
48
+ <path id='g0-45' d='M2.05-1.332V-1.771H.084V-1.332H2.05Z'/>
49
+ <path id='g0-46' d='M1.339-.628H.711V0H1.339V-.628Z'/>
50
+ <path id='g0-48' 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 .99-4.624 .642-4.024C.307-3.466 .293-2.706 .293-2.267C.293-1.75 .321-1.116 .614-.586C.921-.021 1.437 .146 1.848 .146C2.545 .146 2.929-.258 3.138-.697C3.382-1.193 3.403-1.834 3.403-2.267ZM1.848-.314C1.555-.314 1.22-.481 1.046-.983C.907-1.409 .9-1.848 .9-2.357C.9-2.999 .9-4.261 1.848-4.261S2.797-2.999 2.797-2.357C2.797-1.897 2.797-1.374 2.629-.928C2.434-.425 2.078-.314 1.848-.314Z'/>
51
+ <path id='g0-49' d='M2.239-4.721H2.085C1.632-4.303 1.06-4.275 .642-4.261V-3.822C.914-3.829 1.262-3.843 1.611-3.982V-.439H.683V0H3.166V-.439H2.239V-4.721Z'/>
52
+ <path id='g0-50' d='M1.974-.537C1.89-.537 1.806-.53 1.723-.53H.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 .544-4.324 .307-3.612L.635-3.201C.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 .572-.656 .37-.481V0H3.327V-.537H1.974Z'/>
53
+ <path id='g0-51' d='M.697-3.578C.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-.732 2.35-.314 1.806-.314C1.311-.314 .746-.551 .398-.997L.307-.544C.711-.091 1.276 .146 1.82 .146C2.734 .146 3.389-.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 .704-4.4 .411-3.982L.697-3.578Z'/>
54
+ <path id='g0-52' d='M2.762-1.165H3.487V-1.625H2.762V-4.575H2.071L.209-1.625V-1.165H2.162V0H2.762V-1.165ZM.802-1.625C1.011-1.953 2.211-3.815 2.211-4.233V-1.625H.802Z'/>
55
+ <path id='g0-53' d='M1.144-4.094H3.075V-4.575H.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-.516 2.043-.314 1.688-.314C1.227-.314 .781-.558 .544-.955L.279-.537C.621-.112 1.137 .146 1.688 .146C2.608 .146 3.327-.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'/>
56
+ <path id='g0-54' d='M3.062-4.582C2.685-4.721 2.42-4.721 2.287-4.721C1.227-4.721 .307-3.724 .307-2.253C.307-.363 1.158 .146 1.862 .146C2.427 .146 2.72-.119 2.936-.342C3.382-.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 .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.582ZM.969-1.534C.969-1.576 .969-1.681 .976-1.716C.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-.997 2.559-.704C2.392-.453 2.183-.314 1.862-.314C1.123-.314 1.004-1.227 .969-1.534Z'/>
57
+ <path id='g0-55' 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 .07H1.771C1.771-1.967 2.762-3.431 3.389-4.087V-4.575H.307V-4.038H1.723Z'/>
58
+ <path id='g0-56' 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.721S.411-4.135 .411-3.501C.411-2.978 .865-2.608 1.311-2.469C.697-2.28 .307-1.806 .307-1.269C.307-.523 .969 .146 1.848 .146S3.389-.523 3.389-1.269C3.389-1.806 2.992-2.28 2.385-2.469ZM1.848-2.699C1.353-2.699 .948-2.985 .948-3.494C.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-.314C1.367-.314 .941-.621 .941-1.276C.941-1.904 1.346-2.239 1.848-2.239S2.755-1.897 2.755-1.276C2.755-.621 2.322-.314 1.848-.314Z'/>
59
+ <path id='g0-57' d='M.537-.174C.879 .077 1.193 .146 1.52 .146C2.497 .146 3.389-.837 3.389-2.336C3.389-4.24 2.545-4.721 1.876-4.721C1.255-4.721 .969-4.428 .767-4.226C.321-3.773 .307-3.292 .307-3.02C.307-2.12 .795-1.346 1.478-1.346C2.267-1.346 2.699-1.869 2.734-1.911C2.636-.802 2.092-.314 1.52-.314C1.158-.314 .934-.446 .774-.579L.537-.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.169C.962-2.441 .948-2.706 .948-3.02C.948-3.292 .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'/>
60
+ <path id='g0-58' d='M1.339-3.096H.711V-2.469H1.339V-3.096ZM.711-.628V0H1.339V-.628H.711Z'/>
61
+ <path id='g0-64' d='M4.142-.614C4.038-.614 4.024-.614 3.968-.586C3.626-.467 3.271-.391 2.901-.391C1.778-.391 .976-1.339 .976-2.42C.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-.837 3.145-.837C3.689-.837 4.519-1.276 4.519-2.518C4.519-3.222 4.47-4.91 2.866-4.91C1.541-4.91 .411-3.815 .411-2.42C.411-1.039 1.527 .07 2.873 .07C3.515 .07 4.115-.195 4.519-.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'/>
62
+ <path id='g0-67' d='M4.317-.851C3.829-.551 3.605-.418 2.908-.418C1.827-.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 .474-3.773 .474-2.427C.474-.99 1.569 .07 2.929 .07C3.612 .07 3.898-.07 4.359-.321L4.317-.851Z'/>
63
+ <path id='g0-71' d='M4.442-2.085H2.88V-1.625H3.829V-.558C3.522-.481 3.222-.418 2.908-.418C1.834-.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 .474-3.822 .474-2.427C.474-1.067 1.527 .07 2.901 .07C3.403 .07 3.996-.042 4.442-.272V-2.085Z'/>
64
+ <path id='g0-73' d='M1.381-4.84H.676V0H1.381V-4.84Z'/>
65
+ <path id='g0-78' d='M1.646-4.84H.697V0H1.283V-4.289H1.29L3.578 0H4.526V-4.84H3.94V-.551H3.933L1.646-4.84Z'/>
66
+ <path id='g0-85' d='M4.4-4.84H3.794V-1.625C3.794-.69 3.166-.265 2.566-.265S1.381-.697 1.381-1.618V-4.84H.676V-1.632C.676-.607 1.555 .146 2.559 .146C3.557 .146 4.4-.614 4.4-1.632V-4.84Z'/>
67
+ <path id='g0-88' d='M2.755-2.552L4.519-4.84H3.759L2.413-3.055L1.039-4.84H.209L2.071-2.552L.105 0H.865L2.413-2.099L3.996 0H4.826L2.755-2.552Z'/>
68
+ <path id='g0-97' d='M2.971-2.008C2.971-2.72 2.427-3.201 1.736-3.201C1.297-3.201 .962-3.11 .572-2.901L.614-2.392C.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 .314-1.471 .314-.823C.314-.474 .551 .07 1.165 .07C1.465 .07 2.015 .007 2.385-.265V0H2.971V-2.008ZM2.364-.99C2.364-.851 2.364-.669 2.12-.523C1.897-.398 1.625-.391 1.548-.391C1.165-.391 .872-.565 .872-.83C.872-1.276 2.05-1.318 2.364-1.332V-.99Z'/>
69
+ <path id='g0-98' d='M1.179-4.84H.593V0H1.2V-.328C1.353-.195 1.688 .07 2.197 .07C2.957 .07 3.571-.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-.704 2.385-.391 1.897-.391C1.639-.391 1.395-.509 1.2-.823V-2.197Z'/>
70
+ <path id='g0-99' d='M3.034-.76C2.685-.537 2.308-.411 1.876-.411C1.234-.411 .858-.928 .858-1.555C.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.201C.851-3.201 .251-2.357 .251-1.548C.251-.697 .921 .07 1.869 .07C2.357 .07 2.776-.077 3.075-.251L3.034-.76Z'/>
71
+ <path id='g0-100' d='M3.229-4.84H2.643V-2.797C2.197-3.124 1.743-3.166 1.541-3.166C.809-3.166 .251-2.434 .251-1.548S.802 .07 1.52 .07C1.953 .07 2.357-.126 2.622-.363V0H3.229V-4.84ZM2.622-.865C2.448-.579 2.183-.391 1.848-.391C1.36-.391 .858-.732 .858-1.541C.858-2.413 1.451-2.706 1.925-2.706C2.204-2.706 2.441-2.587 2.622-2.35V-.865Z'/>
72
+ <path id='g0-101' d='M2.999-.76C2.608-.481 2.169-.391 1.869-.391C1.262-.391 .802-.886 .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.201C.9-3.201 .244-2.455 .244-1.569C.244-.676 .941 .07 1.862 .07C2.267 .07 2.685-.049 3.041-.265L2.999-.76ZM.83-1.946C.99-2.504 1.402-2.741 1.75-2.741C2.057-2.741 2.511-2.594 2.643-1.946H.83Z'/>
73
+ <path id='g0-103' 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.166C.962-3.166 .453-2.629 .453-2.029C.453-1.785 .537-1.534 .697-1.339C.6-1.22 .495-1.025 .495-.76C.495-.488 .607-.314 .669-.23C.286-.007 .209 .314 .209 .481C.209 1.011 .941 1.43 1.848 1.43C2.762 1.43 3.487 1.011 3.487 .481C3.487-.502 2.267-.502 1.967-.502H1.318C1.206-.502 .907-.502 .907-.865C.907-1.004 .955-1.074 .962-1.088C1.206-.934 1.451-.886 1.639-.886C2.322-.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 .99-1.555 .99-2.022C.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 .042C2.134 .042 2.957 .042 2.957 .488C2.957 .788 2.434 .997 1.848 .997S.739 .788 .739 .488C.739 .453 .739 .042 1.304 .042H1.974Z'/>
74
+ <path id='g0-104' 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.84H.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'/>
75
+ <path id='g0-105' d='M1.227-4.784H.523V-4.08H1.227V-4.784ZM1.172-3.096H.586V0H1.172V-3.096Z'/>
76
+ <path id='g0-106' d='M1.381-4.784H.676V-4.08H1.381V-4.784ZM-.453 1.186C-.133 1.36 .181 1.423 .446 1.423C.928 1.423 1.381 1.053 1.381 .411V-3.096H.795V.46C.795 .586 .795 .697 .649 .816C.488 .934 .293 .934 .23 .934C-.063 .934-.244 .802-.328 .725L-.453 1.186Z'/>
77
+ <path id='g0-108' d='M1.172-4.84H.586V0H1.172V-4.84Z'/>
78
+ <path id='g0-109' 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.145H.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'/>
79
+ <path id='g0-110' 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.145H.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'/>
80
+ <path id='g0-111' d='M3.487-1.527C3.487-2.448 2.755-3.201 1.848-3.201S.209-2.441 .209-1.527C.209-.642 .948 .07 1.848 .07C2.755 .07 3.487-.642 3.487-1.527ZM1.848-.411C1.297-.411 .816-.816 .816-1.604S1.332-2.741 1.848-2.741C2.371-2.741 2.88-2.378 2.88-1.604C2.88-.809 2.385-.411 1.848-.411Z'/>
81
+ <path id='g0-112' d='M1.2-.328C1.569 .007 1.967 .07 2.204 .07C2.943 .07 3.571-.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.096H.593V1.353H1.2V-.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-.865 2.441-.391 1.897-.391C1.792-.391 1.618-.404 1.437-.551C1.227-.711 1.2-.816 1.2-.948V-2.315Z'/>
82
+ <path id='g0-114' 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.145H.593V0H1.179V-1.485Z'/>
83
+ <path id='g0-115' d='M2.545-2.985C2.071-3.18 1.723-3.201 1.471-3.201C1.297-3.201 .244-3.201 .244-2.273C.244-1.946 .425-1.764 .516-1.681C.76-1.437 1.053-1.381 1.423-1.311C1.75-1.248 2.127-1.179 2.127-.844C2.127-.404 1.548-.404 1.451-.404C1.004-.404 .586-.565 .307-.76L.209-.237C.446-.119 .872 .07 1.451 .07C1.764 .07 2.071 .021 2.329-.167C2.587-.363 2.671-.669 2.671-.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 .788-2.05 .788-2.357C.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'/>
84
+ <path id='g0-116' d='M1.311-2.657H2.343V-3.096H1.311V-3.982H.774V-3.096H.139V-2.657H.753V-.893C.753-.425 .872 .07 1.374 .07S2.26-.091 2.469-.188L2.35-.635C2.12-.467 1.876-.411 1.681-.411C1.388-.411 1.311-.697 1.311-1.018V-2.657Z'/>
85
+ <path id='g0-117' d='M3.243-3.096H2.636V-1.074C2.636-.516 2.162-.342 1.757-.342C1.241-.342 1.186-.481 1.186-.802V-3.096H.579V-.76C.579-.139 .851 .07 1.339 .07C1.625 .07 2.239 .014 2.657-.321V0H3.243V-3.096Z'/>
86
+ <path id='g0-119' d='M4.951-3.096H4.407C4.345-2.901 3.954-1.723 3.738-.997C3.682-.795 3.612-.572 3.592-.411H3.585C3.543-.697 3.299-1.451 3.285-1.499L2.769-3.096H2.239C2.036-2.497 1.513-.934 1.458-.425H1.451C1.395-.921 .879-2.462 .767-2.797C.711-2.964 .711-2.978 .676-3.096H.105L1.123 0H1.709C1.716-.028 1.904-.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'/>
87
+ <path id='g0-120' d='M1.932-1.597L3.285-3.096H2.671L1.681-1.953L.669-3.096H.042L1.437-1.597L0 0H.621L1.681-1.311L2.783 0H3.41L1.932-1.597Z'/>
88
+ <path id='g0-122' d='M2.957-2.803V-3.096H.307V-2.65H1.332C1.416-2.65 1.499-2.657 1.583-2.657H2.127L.209-.307V0H2.978V-.467H1.897C1.813-.467 1.73-.46 1.646-.46H1.039L2.957-2.803Z'/>
89
+ <path id='g4-1' d='M1.445-1.245C1.445-1.41 1.305-1.549 1.141-1.549S.837-1.41 .837-1.245S.976-.941 1.141-.941S1.445-1.081 1.445-1.245Z'/>
90
+ <path id='g4-2' d='M4.13-2.481C4.184-2.535 4.204-2.57 4.204-2.615C4.204-2.69 4.139-2.755 4.065-2.755C4.01-2.755 3.985-2.73 3.93-2.675L2.7-1.445L1.465-2.68C1.41-2.735 1.375-2.755 1.33-2.755C1.255-2.755 1.191-2.69 1.191-2.615C1.191-2.56 1.215-2.535 1.27-2.481L2.501-1.245L1.27-.01C1.215 .045 1.191 .07 1.191 .125C1.191 .199 1.255 .264 1.33 .264C1.385 .264 1.41 .239 1.46 .189L2.695-1.046L3.97 .229C3.995 .249 4.03 .264 4.065 .264C4.139 .264 4.204 .199 4.204 .125C4.204 .095 4.194 .075 4.184 .05C4.164 .02 3.238-.892 2.894-1.245L4.13-2.481Z'/>
91
+ <use id='g2-41' xlink:href='#g0-41' transform='scale(.714)'/>
92
+ <use id='g2-44' xlink:href='#g0-44' transform='scale(.714)'/>
93
+ <use id='g2-45' xlink:href='#g0-45' transform='scale(.714)'/>
94
+ <use id='g2-46' xlink:href='#g0-46' transform='scale(.714)'/>
95
+ <use id='g2-48' xlink:href='#g0-48' transform='scale(.714)'/>
96
+ <use id='g2-49' xlink:href='#g0-49' transform='scale(.714)'/>
97
+ <use id='g2-50' xlink:href='#g0-50' transform='scale(.714)'/>
98
+ <use id='g2-51' xlink:href='#g0-51' transform='scale(.714)'/>
99
+ <use id='g2-52' xlink:href='#g0-52' transform='scale(.714)'/>
100
+ <use id='g2-53' xlink:href='#g0-53' transform='scale(.714)'/>
101
+ <use id='g2-54' xlink:href='#g0-54' transform='scale(.714)'/>
102
+ <use id='g2-55' xlink:href='#g0-55' transform='scale(.714)'/>
103
+ <use id='g2-56' xlink:href='#g0-56' transform='scale(.714)'/>
104
+ <use id='g2-57' xlink:href='#g0-57' transform='scale(.714)'/>
105
+ <use id='g2-64' xlink:href='#g0-64' transform='scale(.714)'/>
106
+ <use id='g2-67' xlink:href='#g0-67' transform='scale(.714)'/>
107
+ <use id='g2-71' xlink:href='#g0-71' transform='scale(.714)'/>
108
+ <use id='g2-73' xlink:href='#g0-73' transform='scale(.714)'/>
109
+ <use id='g2-85' xlink:href='#g0-85' transform='scale(.714)'/>
110
+ <use id='g2-88' xlink:href='#g0-88' transform='scale(.714)'/>
111
+ <use id='g2-97' xlink:href='#g0-97' transform='scale(.714)'/>
112
+ <use id='g2-98' xlink:href='#g0-98' transform='scale(.714)'/>
113
+ <use id='g2-99' xlink:href='#g0-99' transform='scale(.714)'/>
114
+ <use id='g2-100' xlink:href='#g0-100' transform='scale(.714)'/>
115
+ <use id='g2-101' xlink:href='#g0-101' transform='scale(.714)'/>
116
+ <use id='g2-103' xlink:href='#g0-103' transform='scale(.714)'/>
117
+ <use id='g2-104' xlink:href='#g0-104' transform='scale(.714)'/>
118
+ <use id='g2-105' xlink:href='#g0-105' transform='scale(.714)'/>
119
+ <use id='g2-108' xlink:href='#g0-108' transform='scale(.714)'/>
120
+ <use id='g2-109' xlink:href='#g0-109' transform='scale(.714)'/>
121
+ <use id='g2-110' xlink:href='#g0-110' transform='scale(.714)'/>
122
+ <use id='g2-111' xlink:href='#g0-111' transform='scale(.714)'/>
123
+ <use id='g2-114' xlink:href='#g0-114' transform='scale(.714)'/>
124
+ <use id='g2-115' xlink:href='#g0-115' transform='scale(.714)'/>
125
+ <use id='g2-116' xlink:href='#g0-116' transform='scale(.714)'/>
126
+ <use id='g2-117' xlink:href='#g0-117' transform='scale(.714)'/>
127
+ <use id='g2-120' xlink:href='#g0-120' transform='scale(.714)'/>
128
+ <use id='g2-122' xlink:href='#g0-122' transform='scale(.714)'/>
129
+ </defs>
130
+ <g id='page2'>
131
+ <path d='M194.617 255.492V246.637M253.285 255.492V246.637M311.953 255.492V246.637M370.625 255.492V246.637M429.293 255.492V246.637M194.617 70.016V78.871M253.285 70.016V78.871M311.953 70.016V78.871M370.625 70.016V78.871M429.293 70.016V78.871' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
132
+ <path d='M165.281 250.887V246.637M223.953 250.887V246.637M282.621 250.887V246.637M341.289 250.887V246.637M399.957 250.887V246.637M458.629 250.887V246.637M165.281 74.617V78.871M223.953 74.617V78.871M282.621 74.617V78.871M341.289 74.617V78.871M399.957 74.617V78.871M458.629 74.617V78.871' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
133
+ <path d='M135.949 246.637H140.199M135.949 213.082H140.199M135.949 179.531H140.199M135.949 145.976H140.199M135.949 112.426H140.199M135.949 78.871H140.199M487.961 246.637H483.711M487.961 213.082H483.711M487.961 179.531H483.711M487.961 145.976H483.711M487.961 112.426H483.711M487.961 78.871H483.711' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
134
+ <path d='M135.949 246.637V78.871H487.961V246.637H135.949Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
135
+ <g transform='matrix(1 0 0 1 -21.265 74.992)'>
136
+ <use x='168.285' y='186.041' xlink:href='#g3-97'/>
137
+ <use x='172.353' y='186.041' xlink:href='#g3-108'/>
138
+ <use x='174.373' y='186.041' xlink:href='#g3-108'/>
139
+ <use x='176.393' y='186.041' xlink:href='#g3-111'/>
140
+ <use x='180.863' y='186.041' xlink:href='#g3-99'/>
141
+ <use x='184.627' y='186.041' xlink:href='#g3-45'/>
142
+ <use x='187.449' y='186.041' xlink:href='#g3-116'/>
143
+ <use x='190.507' y='186.041' xlink:href='#g3-101'/>
144
+ <use x='194.271' y='186.041' xlink:href='#g3-115'/>
145
+ <use x='197.517' y='186.041' xlink:href='#g3-116'/>
146
+ <use x='200.575' y='186.041' xlink:href='#g3-49'/>
147
+ </g>
148
+ <g transform='matrix(1 0 0 1 36.532 74.992)'>
149
+ <use x='168.285' y='186.041' xlink:href='#g3-97'/>
150
+ <use x='172.353' y='186.041' xlink:href='#g3-108'/>
151
+ <use x='174.373' y='186.041' xlink:href='#g3-108'/>
152
+ <use x='176.393' y='186.041' xlink:href='#g3-111'/>
153
+ <use x='180.863' y='186.041' xlink:href='#g3-99'/>
154
+ <use x='184.627' y='186.041' xlink:href='#g3-45'/>
155
+ <use x='187.449' y='186.041' xlink:href='#g3-116'/>
156
+ <use x='190.507' y='186.041' xlink:href='#g3-101'/>
157
+ <use x='194.271' y='186.041' xlink:href='#g3-115'/>
158
+ <use x='197.517' y='186.041' xlink:href='#g3-116'/>
159
+ <use x='200.575' y='186.041' xlink:href='#g3-78'/>
160
+ </g>
161
+ <g transform='matrix(1 0 0 1 94.98 74.992)'>
162
+ <use x='168.285' y='186.041' xlink:href='#g3-115'/>
163
+ <use x='171.531' y='186.041' xlink:href='#g3-104'/>
164
+ <use x='175.904' y='186.041' xlink:href='#g3-54'/>
165
+ <use x='180.138' y='186.041' xlink:href='#g3-98'/>
166
+ <use x='184.746' y='186.041' xlink:href='#g3-101'/>
167
+ <use x='188.509' y='186.041' xlink:href='#g3-110'/>
168
+ <use x='192.882' y='186.041' xlink:href='#g3-99'/>
169
+ <use x='196.646' y='186.041' xlink:href='#g3-104'/>
170
+ <use x='201.018' y='186.041' xlink:href='#g3-78'/>
171
+ </g>
172
+ <g transform='matrix(1 0 0 1 153.649 74.992)'>
173
+ <use x='168.285' y='186.041' xlink:href='#g3-115'/>
174
+ <use x='171.531' y='186.041' xlink:href='#g3-104'/>
175
+ <use x='175.904' y='186.041' xlink:href='#g3-56'/>
176
+ <use x='180.138' y='186.041' xlink:href='#g3-98'/>
177
+ <use x='184.746' y='186.041' xlink:href='#g3-101'/>
178
+ <use x='188.509' y='186.041' xlink:href='#g3-110'/>
179
+ <use x='192.882' y='186.041' xlink:href='#g3-99'/>
180
+ <use x='196.646' y='186.041' xlink:href='#g3-104'/>
181
+ <use x='201.018' y='186.041' xlink:href='#g3-78'/>
182
+ </g>
183
+ <g transform='matrix(1 0 0 1 207.225 74.992)'>
184
+ <use x='168.285' y='186.041' xlink:href='#g3-120'/>
185
+ <use x='172.187' y='186.041' xlink:href='#g3-109'/>
186
+ <use x='178.912' y='186.041' xlink:href='#g3-97'/>
187
+ <use x='182.98' y='186.041' xlink:href='#g3-108'/>
188
+ <use x='185' y='186.041' xlink:href='#g3-108'/>
189
+ <use x='187.02' y='186.041' xlink:href='#g3-111'/>
190
+ <use x='191.49' y='186.041' xlink:href='#g3-99'/>
191
+ <use x='195.254' y='186.041' xlink:href='#g3-45'/>
192
+ <use x='198.076' y='186.041' xlink:href='#g3-116'/>
193
+ <use x='201.134' y='186.041' xlink:href='#g3-101'/>
194
+ <use x='204.898' y='186.041' xlink:href='#g3-115'/>
195
+ <use x='208.144' y='186.041' xlink:href='#g3-116'/>
196
+ <use x='211.202' y='186.041' xlink:href='#g3-78'/>
197
+ </g>
198
+ <g transform='matrix(1 0 0 1 263.494 74.992)'>
199
+ <use x='168.285' y='186.041' xlink:href='#g3-99'/>
200
+ <use x='172.049' y='186.041' xlink:href='#g3-97'/>
201
+ <use x='176.117' y='186.041' xlink:href='#g3-99'/>
202
+ <use x='179.88' y='186.041' xlink:href='#g3-104'/>
203
+ <use x='184.253' y='186.041' xlink:href='#g3-101'/>
204
+ <use x='188.017' y='186.041' xlink:href='#g3-45'/>
205
+ <use x='190.839' y='186.041' xlink:href='#g3-115'/>
206
+ <use x='194.086' y='186.041' xlink:href='#g3-99'/>
207
+ <use x='197.849' y='186.041' xlink:href='#g3-114'/>
208
+ <use x='200.741' y='186.041' xlink:href='#g3-97'/>
209
+ <use x='204.81' y='186.041' xlink:href='#g3-116'/>
210
+ <use x='207.868' y='186.041' xlink:href='#g3-99'/>
211
+ <use x='211.631' y='186.041' xlink:href='#g3-104'/>
212
+ <use x='216.004' y='186.041' xlink:href='#g3-78'/>
213
+ </g>
214
+ <g transform='matrix(1 0 0 1 -40.942 62.23)'>
215
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
216
+ <use x='170.931' y='186.041' xlink:href='#g2-120'/>
217
+ </g>
218
+ <g transform='matrix(1 0 0 1 -45.059 28.677)'>
219
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
220
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
221
+ <use x='172.401' y='186.041' xlink:href='#g2-53'/>
222
+ <use x='175.048' y='186.041' xlink:href='#g2-120'/>
223
+ </g>
224
+ <g transform='matrix(1 0 0 1 -45.059 -4.876)'>
225
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
226
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
227
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
228
+ <use x='175.048' y='186.041' xlink:href='#g2-120'/>
229
+ </g>
230
+ <g transform='matrix(1 0 0 1 -45.059 -38.43)'>
231
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
232
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
233
+ <use x='172.401' y='186.041' xlink:href='#g2-53'/>
234
+ <use x='175.048' y='186.041' xlink:href='#g2-120'/>
235
+ </g>
236
+ <g transform='matrix(1 0 0 1 -45.059 -71.983)'>
237
+ <use x='168.285' y='186.041' xlink:href='#g2-50'/>
238
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
239
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
240
+ <use x='175.048' y='186.041' xlink:href='#g2-120'/>
241
+ </g>
242
+ <g transform='matrix(1 0 0 1 -45.059 -105.536)'>
243
+ <use x='168.285' y='186.041' xlink:href='#g2-50'/>
244
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
245
+ <use x='172.401' y='186.041' xlink:href='#g2-53'/>
246
+ <use x='175.048' y='186.041' xlink:href='#g2-120'/>
247
+ </g>
248
+ <path d='M135.949 179.531H487.961' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
249
+ <path d='M140.125 246.637H143.363V179.531H140.125ZM198.797 246.637H202.035V179.531H198.797ZM257.465 246.637H260.703V179.531H257.465ZM316.133 246.637H319.371V179.531H316.133ZM374.801 246.637H378.039V179.531H374.801ZM433.473 246.637H436.711V179.531H433.473Z' fill='#fff' clip-path='url(#clip2)'/>
250
+ <path d='M140.125 246.637H143.363V179.531H140.125ZM198.797 246.637H202.035V179.531H198.797ZM257.465 246.637H260.703V179.531H257.465ZM316.133 246.637H319.371V179.531H316.133ZM374.801 246.637H378.039V179.531H374.801ZM433.473 246.637H436.711V179.531H433.473Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
251
+ <path d='M141.746 179.531' fill='#fff' clip-path='url(#clip2)'/>
252
+ <path d='M139.754 179.531H143.738' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
253
+ <path d='M141.746 179.531' fill='#fff' clip-path='url(#clip2)'/>
254
+ <path d='M139.754 179.531H143.738' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
255
+ <path d='M200.414 179.531' fill='#fff' clip-path='url(#clip2)'/>
256
+ <path d='M198.422 179.531H202.406' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
257
+ <path d='M200.414 179.531' fill='#fff' clip-path='url(#clip2)'/>
258
+ <path d='M198.422 179.531H202.406' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
259
+ <path d='M259.082 179.531' fill='#fff' clip-path='url(#clip2)'/>
260
+ <path d='M257.09 179.531H261.078' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
261
+ <path d='M259.082 179.531' fill='#fff' clip-path='url(#clip2)'/>
262
+ <path d='M257.09 179.531H261.078' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
263
+ <path d='M317.754 179.531' fill='#fff' clip-path='url(#clip2)'/>
264
+ <path d='M315.762 179.531H319.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
265
+ <path d='M317.754 179.531' fill='#fff' clip-path='url(#clip2)'/>
266
+ <path d='M315.762 179.531H319.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
267
+ <path d='M376.422 179.531' fill='#fff' clip-path='url(#clip2)'/>
268
+ <path d='M374.43 179.531H378.414' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
269
+ <path d='M376.422 179.531' fill='#fff' clip-path='url(#clip2)'/>
270
+ <path d='M374.43 179.531H378.414' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
271
+ <path d='M435.09 179.531' fill='#fff' clip-path='url(#clip2)'/>
272
+ <path d='M433.098 179.531H437.082' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
273
+ <path d='M435.09 179.531' fill='#fff' clip-path='url(#clip2)'/>
274
+ <path d='M433.098 179.531H437.082' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
275
+ <path d='M145.356 246.637H148.594V180.066H145.356ZM204.028 246.637H207.266V179.195H204.028ZM262.695 246.637H265.934V181.008H262.695ZM321.363 246.637H324.602V179.934H321.363ZM380.031 246.637H383.27V175.637H380.031ZM438.703 246.637H441.942V179.664H438.703Z' fill='#f0e0f0' clip-path='url(#clip2)'/>
276
+ <path d='M145.356 246.637H148.594V180.066H145.356ZM204.028 246.637H207.266V179.195H204.028ZM262.695 246.637H265.934V181.008H262.695ZM321.363 246.637H324.602V179.934H321.363ZM380.031 246.637H383.27V175.637H380.031ZM438.703 246.637H441.942V179.664H438.703Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
277
+ <path d='M146.977 180.066' fill='#f0e0f0' clip-path='url(#clip2)'/>
278
+ <path d='M144.984 180.067H148.968' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
279
+ <path d='M146.977 180.066' fill='#f0e0f0' clip-path='url(#clip2)'/>
280
+ <path d='M144.984 180.067H148.968' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
281
+ <path d='M205.645 179.195' fill='#f0e0f0' clip-path='url(#clip2)'/>
282
+ <path d='M203.652 179.196H207.636' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
283
+ <path d='M205.645 179.195' fill='#f0e0f0' clip-path='url(#clip2)'/>
284
+ <path d='M203.652 179.196H207.636' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
285
+ <path d='M264.313 181.008' fill='#f0e0f0' clip-path='url(#clip2)'/>
286
+ <path d='M262.32 181.007H266.308' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
287
+ <path d='M264.313 181.008' fill='#f0e0f0' clip-path='url(#clip2)'/>
288
+ <path d='M262.32 181.007H266.308' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
289
+ <path d='M322.984 179.934' fill='#f0e0f0' clip-path='url(#clip2)'/>
290
+ <path d='M320.992 179.934H324.976' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
291
+ <path d='M322.984 179.934' fill='#f0e0f0' clip-path='url(#clip2)'/>
292
+ <path d='M320.992 179.934H324.976' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
293
+ <path d='M381.652 175.637' fill='#f0e0f0' clip-path='url(#clip2)'/>
294
+ <path d='M379.66 175.637H383.644' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
295
+ <path d='M381.652 175.637' fill='#f0e0f0' clip-path='url(#clip2)'/>
296
+ <path d='M379.66 175.637H383.644' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
297
+ <path d='M440.32 179.664' fill='#f0e0f0' clip-path='url(#clip2)'/>
298
+ <path d='M438.328 179.664H442.312' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
299
+ <path d='M440.32 179.664' fill='#f0e0f0' clip-path='url(#clip2)'/>
300
+ <path d='M438.328 179.664H442.312' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
301
+ <path d='M150.586 246.637H153.824V163.426H150.586ZM209.258 246.637H212.496V159.062H209.258ZM267.926 246.637H271.164V184.027H267.926ZM326.594 246.637H329.832V203.687H326.594ZM385.262 246.637H388.5V219.859H385.262ZM443.934 246.637H447.172V139.734H443.934Z' fill='#e1c2e1' clip-path='url(#clip2)'/>
302
+ <path d='M150.586 246.637H153.824V163.426H150.586ZM209.258 246.637H212.496V159.062H209.258ZM267.926 246.637H271.164V184.027H267.926ZM326.594 246.637H329.832V203.687H326.594ZM385.262 246.637H388.5V219.859H385.262ZM443.934 246.637H447.172V139.734H443.934Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
303
+ <path d='M152.207 163.426' fill='#e1c2e1' clip-path='url(#clip2)'/>
304
+ <path d='M150.215 163.426H154.199' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
305
+ <path d='M152.207 163.426' fill='#e1c2e1' clip-path='url(#clip2)'/>
306
+ <path d='M150.215 163.426H154.199' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
307
+ <path d='M210.875 159.062' fill='#e1c2e1' clip-path='url(#clip2)'/>
308
+ <path d='M208.883 159.063H212.867' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
309
+ <path d='M210.875 159.062' fill='#e1c2e1' clip-path='url(#clip2)'/>
310
+ <path d='M208.883 159.063H212.867' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
311
+ <path d='M269.543 184.027' fill='#e1c2e1' clip-path='url(#clip2)'/>
312
+ <path d='M267.551 184.027H271.539' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
313
+ <path d='M269.543 184.027' fill='#e1c2e1' clip-path='url(#clip2)'/>
314
+ <path d='M267.551 184.027H271.539' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
315
+ <path d='M328.215 203.687' fill='#e1c2e1' clip-path='url(#clip2)'/>
316
+ <path d='M326.223 203.687H330.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
317
+ <path d='M328.215 203.687' fill='#e1c2e1' clip-path='url(#clip2)'/>
318
+ <path d='M326.223 203.687H330.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
319
+ <path d='M386.883 219.859' fill='#e1c2e1' clip-path='url(#clip2)'/>
320
+ <path d='M384.891 219.86H388.875' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
321
+ <path d='M386.883 219.859' fill='#e1c2e1' clip-path='url(#clip2)'/>
322
+ <path d='M384.891 219.86H388.875' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
323
+ <path d='M445.551 139.734' fill='#e1c2e1' clip-path='url(#clip2)'/>
324
+ <path d='M443.559 139.734H447.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
325
+ <path d='M445.551 139.734' fill='#e1c2e1' clip-path='url(#clip2)'/>
326
+ <path d='M443.559 139.734H447.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
327
+ <path d='M155.817 246.637H159.055V183.824H155.817ZM214.488 246.637H217.727V176.109H214.488ZM273.156 246.637H276.395V181.344H273.156ZM331.824 246.637H335.063V193.086H331.824ZM390.492 246.637H393.731V195.164H390.492ZM449.164 246.637H452.402V144.566H449.164Z' fill='#d1a3d1' clip-path='url(#clip2)'/>
328
+ <path d='M155.817 246.637H159.055V183.824H155.817ZM214.488 246.637H217.727V176.109H214.488ZM273.156 246.637H276.395V181.344H273.156ZM331.824 246.637H335.063V193.086H331.824ZM390.492 246.637H393.731V195.164H390.492ZM449.164 246.637H452.402V144.566H449.164Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
329
+ <path d='M157.438 183.824' fill='#d1a3d1' clip-path='url(#clip2)'/>
330
+ <path d='M155.445 183.824H159.429' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
331
+ <path d='M157.438 183.824' fill='#d1a3d1' clip-path='url(#clip2)'/>
332
+ <path d='M155.445 183.824H159.429' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
333
+ <path d='M216.106 176.109' fill='#d1a3d1' clip-path='url(#clip2)'/>
334
+ <path d='M214.113 176.11H218.097' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
335
+ <path d='M216.106 176.109' fill='#d1a3d1' clip-path='url(#clip2)'/>
336
+ <path d='M214.113 176.11H218.097' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
337
+ <path d='M274.774 181.344' fill='#d1a3d1' clip-path='url(#clip2)'/>
338
+ <path d='M272.781 181.344H276.769' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
339
+ <path d='M274.774 181.344' fill='#d1a3d1' clip-path='url(#clip2)'/>
340
+ <path d='M272.781 181.344H276.769' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
341
+ <path d='M333.445 193.086' fill='#d1a3d1' clip-path='url(#clip2)'/>
342
+ <path d='M331.453 193.085H335.437' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
343
+ <path d='M333.445 193.086' fill='#d1a3d1' clip-path='url(#clip2)'/>
344
+ <path d='M331.453 193.085H335.437' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
345
+ <path d='M392.113 195.164' fill='#d1a3d1' clip-path='url(#clip2)'/>
346
+ <path d='M390.121 195.164H394.105' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
347
+ <path d='M392.113 195.164' fill='#d1a3d1' clip-path='url(#clip2)'/>
348
+ <path d='M390.121 195.164H394.105' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
349
+ <path d='M450.781 144.566' fill='#d1a3d1' clip-path='url(#clip2)'/>
350
+ <path d='M448.789 144.567H452.773' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
351
+ <path d='M450.781 144.566' fill='#d1a3d1' clip-path='url(#clip2)'/>
352
+ <path d='M448.789 144.567H452.773' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
353
+ <path d='M161.047 246.637H164.285V178.926H161.047ZM219.719 246.637H222.957V169.934H219.719ZM278.387 246.637H281.625V176.644H278.387ZM337.055 246.637H340.293V195.234H337.055ZM395.723 246.637H398.961V182.078H395.723ZM454.395 246.637H457.633V177.652H454.395Z' fill='#c285c2' clip-path='url(#clip2)'/>
354
+ <path d='M161.047 246.637H164.285V178.926H161.047ZM219.719 246.637H222.957V169.934H219.719ZM278.387 246.637H281.625V176.644H278.387ZM337.055 246.637H340.293V195.234H337.055ZM395.723 246.637H398.961V182.078H395.723ZM454.395 246.637H457.633V177.652H454.395Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
355
+ <path d='M162.668 178.926' fill='#c285c2' clip-path='url(#clip2)'/>
356
+ <path d='M160.676 178.926H164.66' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
357
+ <path d='M162.668 178.926' fill='#c285c2' clip-path='url(#clip2)'/>
358
+ <path d='M160.676 178.926H164.66' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
359
+ <path d='M221.336 169.934' fill='#c285c2' clip-path='url(#clip2)'/>
360
+ <path d='M219.344 169.934H223.328' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
361
+ <path d='M221.336 169.934' fill='#c285c2' clip-path='url(#clip2)'/>
362
+ <path d='M219.344 169.934H223.328' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
363
+ <path d='M280.004 176.644' fill='#c285c2' clip-path='url(#clip2)'/>
364
+ <path d='M278.012 176.644H282' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
365
+ <path d='M280.004 176.644' fill='#c285c2' clip-path='url(#clip2)'/>
366
+ <path d='M278.012 176.644H282' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
367
+ <path d='M338.676 195.234' fill='#c285c2' clip-path='url(#clip2)'/>
368
+ <path d='M336.684 195.235H340.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
369
+ <path d='M338.676 195.234' fill='#c285c2' clip-path='url(#clip2)'/>
370
+ <path d='M336.684 195.235H340.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
371
+ <path d='M397.344 182.078' fill='#c285c2' clip-path='url(#clip2)'/>
372
+ <path d='M395.352 182.078H399.336' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
373
+ <path d='M397.344 182.078' fill='#c285c2' clip-path='url(#clip2)'/>
374
+ <path d='M395.352 182.078H399.336' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
375
+ <path d='M456.012 177.652' fill='#c285c2' clip-path='url(#clip2)'/>
376
+ <path d='M454.02 177.652H458.004' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
377
+ <path d='M456.012 177.652' fill='#c285c2' clip-path='url(#clip2)'/>
378
+ <path d='M454.02 177.652H458.004' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
379
+ <path d='M166.278 246.637H169.516V179.598H166.278ZM224.949 246.637H228.188V144.098H224.949ZM283.617 246.637H286.856V172.82H283.617ZM342.285 246.637H345.524V155.91H342.285ZM400.953 246.637H404.192V172.484H400.953ZM459.625 246.637H462.863V172.016H459.625Z' fill='#b366b3' clip-path='url(#clip2)'/>
380
+ <path d='M166.278 246.637H169.516V179.598H166.278ZM224.949 246.637H228.188V144.098H224.949ZM283.617 246.637H286.856V172.82H283.617ZM342.285 246.637H345.524V155.91H342.285ZM400.953 246.637H404.192V172.484H400.953ZM459.625 246.637H462.863V172.016H459.625Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
381
+ <path d='M167.899 179.598' fill='#b366b3' clip-path='url(#clip2)'/>
382
+ <path d='M165.906 179.598H169.89' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
383
+ <path d='M167.899 179.598' fill='#b366b3' clip-path='url(#clip2)'/>
384
+ <path d='M165.906 179.598H169.89' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
385
+ <path d='M226.567 144.098' fill='#b366b3' clip-path='url(#clip2)'/>
386
+ <path d='M224.574 144.098H228.558' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
387
+ <path d='M226.567 144.098' fill='#b366b3' clip-path='url(#clip2)'/>
388
+ <path d='M224.574 144.098H228.558' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
389
+ <path d='M285.234 172.82' fill='#b366b3' clip-path='url(#clip2)'/>
390
+ <path d='M283.242 172.82H287.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
391
+ <path d='M285.234 172.82' fill='#b366b3' clip-path='url(#clip2)'/>
392
+ <path d='M283.242 172.82H287.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
393
+ <path d='M343.906 155.91' fill='#b366b3' clip-path='url(#clip2)'/>
394
+ <path d='M341.914 155.91H345.898' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
395
+ <path d='M343.906 155.91' fill='#b366b3' clip-path='url(#clip2)'/>
396
+ <path d='M341.914 155.91H345.898' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
397
+ <path d='M402.574 172.484' fill='#b366b3' clip-path='url(#clip2)'/>
398
+ <path d='M400.582 172.484H404.566' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
399
+ <path d='M402.574 172.484' fill='#b366b3' clip-path='url(#clip2)'/>
400
+ <path d='M400.582 172.484H404.566' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
401
+ <path d='M461.242 172.016' fill='#b366b3' clip-path='url(#clip2)'/>
402
+ <path d='M459.25 172.015H463.234' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
403
+ <path d='M461.242 172.016' fill='#b366b3' clip-path='url(#clip2)'/>
404
+ <path d='M459.25 172.015H463.234' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
405
+ <path d='M171.508 246.637H174.746V177.113H171.508ZM230.18 246.637H233.414V179.465H230.18ZM288.848 246.637H292.086V166.176H288.848ZM347.516 246.637H350.754V160.605H347.516ZM406.184 246.637H409.422V78.871H406.184ZM464.856 246.637H468.094V189.797H464.856Z' fill='#a447a4' clip-path='url(#clip2)'/>
406
+ <path d='M171.508 246.637H174.746V177.113H171.508ZM230.18 246.637H233.414V179.465H230.18ZM288.848 246.637H292.086V166.176H288.848ZM347.516 246.637H350.754V160.605H347.516ZM406.184 246.637H409.422V78.871H406.184ZM464.856 246.637H468.094V189.797H464.856Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
407
+ <path d='M173.129 177.113' fill='#a447a4' clip-path='url(#clip2)'/>
408
+ <path d='M171.137 177.113H175.121' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
409
+ <path d='M173.129 177.113' fill='#a447a4' clip-path='url(#clip2)'/>
410
+ <path d='M171.137 177.113H175.121' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
411
+ <path d='M231.797 179.465' fill='#a447a4' clip-path='url(#clip2)'/>
412
+ <path d='M229.805 179.465H233.789' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
413
+ <path d='M231.797 179.465' fill='#a447a4' clip-path='url(#clip2)'/>
414
+ <path d='M229.805 179.465H233.789' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
415
+ <path d='M290.465 166.176' fill='#a447a4' clip-path='url(#clip2)'/>
416
+ <path d='M288.473 166.176H292.461' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
417
+ <path d='M290.465 166.176' fill='#a447a4' clip-path='url(#clip2)'/>
418
+ <path d='M288.473 166.176H292.461' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
419
+ <path d='M349.137 160.605' fill='#a447a4' clip-path='url(#clip2)'/>
420
+ <path d='M347.145 160.605H351.129' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
421
+ <path d='M349.137 160.605' fill='#a447a4' clip-path='url(#clip2)'/>
422
+ <path d='M347.145 160.605H351.129' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
423
+ <path d='M407.805 78.871' fill='#a447a4' clip-path='url(#clip2)'/>
424
+ <path d='M405.813 78.871H409.797' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
425
+ <path d='M407.805 78.871' fill='#a447a4' clip-path='url(#clip2)'/>
426
+ <path d='M405.813 78.871H409.797' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
427
+ <path d='M466.473 189.797' fill='#a447a4' clip-path='url(#clip2)'/>
428
+ <path d='M464.481 189.797H468.465' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
429
+ <path d='M466.473 189.797' fill='#a447a4' clip-path='url(#clip2)'/>
430
+ <path d='M464.481 189.797H468.465' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
431
+ <path d='M176.738 246.637H179.977V167.383H176.738ZM235.41 246.637H238.645V78.871H235.41ZM294.078 246.637H297.317V143.09H294.078ZM352.746 246.637H355.984V166.711H352.746ZM411.414 246.637H414.652V219.391H411.414ZM470.086 246.637H473.324V160.336H470.086Z' fill='#942994' clip-path='url(#clip2)'/>
432
+ <path d='M176.738 246.637H179.977V167.383H176.738ZM235.41 246.637H238.645V78.871H235.41ZM294.078 246.637H297.317V143.09H294.078ZM352.746 246.637H355.984V166.711H352.746ZM411.414 246.637H414.652V219.391H411.414ZM470.086 246.637H473.324V160.336H470.086Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
433
+ <path d='M178.36 167.383' fill='#942994' clip-path='url(#clip2)'/>
434
+ <path d='M176.367 167.383H180.351' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
435
+ <path d='M178.36 167.383' fill='#942994' clip-path='url(#clip2)'/>
436
+ <path d='M176.367 167.383H180.351' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
437
+ <path d='M237.027 78.871' fill='#942994' clip-path='url(#clip2)'/>
438
+ <path d='M235.035 78.871H239.019' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
439
+ <path d='M237.027 78.871' fill='#942994' clip-path='url(#clip2)'/>
440
+ <path d='M235.035 78.871H239.019' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
441
+ <path d='M295.695 143.09' fill='#942994' clip-path='url(#clip2)'/>
442
+ <path d='M293.703 143.089H297.691' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
443
+ <path d='M295.695 143.09' fill='#942994' clip-path='url(#clip2)'/>
444
+ <path d='M293.703 143.089H297.691' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
445
+ <path d='M354.367 166.711' fill='#942994' clip-path='url(#clip2)'/>
446
+ <path d='M352.375 166.711H356.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
447
+ <path d='M354.367 166.711' fill='#942994' clip-path='url(#clip2)'/>
448
+ <path d='M352.375 166.711H356.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
449
+ <path d='M413.035 219.391' fill='#942994' clip-path='url(#clip2)'/>
450
+ <path d='M411.043 219.391H415.027' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
451
+ <path d='M413.035 219.391' fill='#942994' clip-path='url(#clip2)'/>
452
+ <path d='M411.043 219.391H415.027' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
453
+ <path d='M471.703 160.336' fill='#942994' clip-path='url(#clip2)'/>
454
+ <path d='M469.711 160.336H473.695' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
455
+ <path d='M471.703 160.336' fill='#942994' clip-path='url(#clip2)'/>
456
+ <path d='M469.711 160.336H473.695' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
457
+ <path d='M181.969 246.637H185.207V176.711H181.969ZM240.641 246.637H243.875V169.062H240.641ZM299.309 246.637H302.547V151.547H299.309ZM357.977 246.637H361.215V113.43H357.977ZM416.645 246.637H419.883V188.387H416.645ZM475.317 246.637H478.555V190.402H475.317Z' fill='#850a85' clip-path='url(#clip2)'/>
458
+ <path d='M181.969 246.637H185.207V176.711H181.969ZM240.641 246.637H243.875V169.062H240.641ZM299.309 246.637H302.547V151.547H299.309ZM357.977 246.637H361.215V113.43H357.977ZM416.645 246.637H419.883V188.387H416.645ZM475.317 246.637H478.555V190.402H475.317Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
459
+ <path d='M183.59 176.711' fill='#850a85' clip-path='url(#clip2)'/>
460
+ <path d='M181.598 176.711H185.583' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
461
+ <path d='M183.59 176.711' fill='#850a85' clip-path='url(#clip2)'/>
462
+ <path d='M181.598 176.711H185.583' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
463
+ <path d='M242.258 169.062' fill='#850a85' clip-path='url(#clip2)'/>
464
+ <path d='M240.266 169.062H244.25' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
465
+ <path d='M242.258 169.062' fill='#850a85' clip-path='url(#clip2)'/>
466
+ <path d='M240.266 169.062H244.25' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
467
+ <path d='M300.926 151.547' fill='#850a85' clip-path='url(#clip2)'/>
468
+ <path d='M298.933 151.547H302.921' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
469
+ <path d='M300.926 151.547' fill='#850a85' clip-path='url(#clip2)'/>
470
+ <path d='M298.933 151.547H302.921' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
471
+ <path d='M359.598 113.43' fill='#850a85' clip-path='url(#clip2)'/>
472
+ <path d='M357.606 113.43H361.59' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
473
+ <path d='M359.598 113.43' fill='#850a85' clip-path='url(#clip2)'/>
474
+ <path d='M357.606 113.43H361.59' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
475
+ <path d='M418.266 188.387' fill='#850a85' clip-path='url(#clip2)'/>
476
+ <path d='M416.274 188.387H420.258' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
477
+ <path d='M418.266 188.387' fill='#850a85' clip-path='url(#clip2)'/>
478
+ <path d='M416.274 188.387H420.258' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
479
+ <path d='M476.934 190.402' fill='#850a85' clip-path='url(#clip2)'/>
480
+ <path d='M474.942 190.402H478.926' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
481
+ <path d='M476.934 190.402' fill='#850a85' clip-path='url(#clip2)'/>
482
+ <path d='M474.942 190.402H478.926' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
483
+ <path d='M187.199 246.637H190.438V179.465H187.199ZM245.871 246.637H249.106V113.094H245.871ZM304.539 246.637H307.777V164.094H304.539ZM363.207 246.637H366.445V156.578H363.207ZM421.875 246.637H425.113V174.496H421.875ZM480.547 246.637H483.785V176.375H480.547Z' fill='#760076' clip-path='url(#clip2)'/>
484
+ <path d='M187.199 246.637H190.438V179.465H187.199ZM245.871 246.637H249.106V113.094H245.871ZM304.539 246.637H307.777V164.094H304.539ZM363.207 246.637H366.445V156.578H363.207ZM421.875 246.637H425.113V174.496H421.875ZM480.547 246.637H483.785V176.375H480.547Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
485
+ <path d='M188.82 179.465' fill='#760076' clip-path='url(#clip2)'/>
486
+ <path d='M186.828 179.465H190.813' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
487
+ <path d='M188.82 179.465' fill='#760076' clip-path='url(#clip2)'/>
488
+ <path d='M186.828 179.465H190.813' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
489
+ <path d='M247.488 113.094' fill='#760076' clip-path='url(#clip2)'/>
490
+ <path d='M245.496 113.094H249.481' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
491
+ <path d='M247.488 113.094' fill='#760076' clip-path='url(#clip2)'/>
492
+ <path d='M245.496 113.094H249.481' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
493
+ <path d='M306.156 164.094' fill='#760076' clip-path='url(#clip2)'/>
494
+ <path d='M304.164 164.094H308.152' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
495
+ <path d='M306.156 164.094' fill='#760076' clip-path='url(#clip2)'/>
496
+ <path d='M304.164 164.094H308.152' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
497
+ <path d='M364.828 156.578' fill='#760076' clip-path='url(#clip2)'/>
498
+ <path d='M362.836 156.578H366.82' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
499
+ <path d='M364.828 156.578' fill='#760076' clip-path='url(#clip2)'/>
500
+ <path d='M362.836 156.578H366.82' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
501
+ <path d='M423.496 174.496' fill='#760076' clip-path='url(#clip2)'/>
502
+ <path d='M421.504 174.496H425.488' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
503
+ <path d='M423.496 174.496' fill='#760076' clip-path='url(#clip2)'/>
504
+ <path d='M421.504 174.496H425.488' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
505
+ <path d='M482.164 176.375' fill='#760076' clip-path='url(#clip2)'/>
506
+ <path d='M480.172 176.375H484.156' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
507
+ <path d='M482.164 176.375' fill='#760076' clip-path='url(#clip2)'/>
508
+ <path d='M480.172 176.375H484.156' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
509
+ <path d='M369.781 308.934H487.762V273.68H369.781Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip2)'/>
510
+ <g transform='matrix(1 0 0 1 204.818 118.327)'>
511
+ <use x='168.285' y='162.131' xlink:href='#g2-99'/>
512
+ <use x='170.637' y='162.131' xlink:href='#g2-53'/>
513
+ <use x='173.284' y='162.131' xlink:href='#g2-45'/>
514
+ <use x='175.048' y='162.131' xlink:href='#g2-49'/>
515
+ <use x='177.694' y='162.131' xlink:href='#g2-56'/>
516
+ <use x='180.341' y='162.131' xlink:href='#g2-120'/>
517
+ <use x='182.779' y='162.131' xlink:href='#g2-108'/>
518
+ <use x='184.042' y='162.131' xlink:href='#g2-97'/>
519
+ <use x='186.438' y='162.131' xlink:href='#g2-114'/>
520
+ <use x='188.245' y='162.131' xlink:href='#g2-103'/>
521
+ <use x='190.891' y='162.131' xlink:href='#g2-101'/>
522
+ <use x='193.244' y='162.131' xlink:href='#g2-44'/>
523
+ <use x='196.478' y='162.131' xlink:href='#g2-49'/>
524
+ <use x='199.124' y='162.131' xlink:href='#g2-52'/>
525
+ <use x='201.771' y='162.131' xlink:href='#g2-52'/>
526
+ <use x='204.417' y='162.131' xlink:href='#g2-71'/>
527
+ <use x='207.946' y='162.131' xlink:href='#g2-98'/>
528
+ <use x='168.285' y='168.109' xlink:href='#g2-50'/>
529
+ <use x='170.931' y='168.109' xlink:href='#g4-2'/>
530
+ <use x='178.092' y='168.109' xlink:href='#g2-49'/>
531
+ <use x='180.738' y='168.109' xlink:href='#g2-56'/>
532
+ <use x='183.385' y='168.109' xlink:href='#g2-45'/>
533
+ <use x='185.149' y='168.109' xlink:href='#g2-99'/>
534
+ <use x='187.501' y='168.109' xlink:href='#g2-111'/>
535
+ <use x='190.001' y='168.109' xlink:href='#g2-114'/>
536
+ <use x='191.808' y='168.109' xlink:href='#g2-101'/>
537
+ <use x='195.925' y='168.109' xlink:href='#g2-73'/>
538
+ <use x='197.395' y='168.109' xlink:href='#g2-110'/>
539
+ <use x='200.128' y='168.109' xlink:href='#g2-116'/>
540
+ <use x='202.039' y='168.109' xlink:href='#g2-101'/>
541
+ <use x='204.391' y='168.109' xlink:href='#g2-108'/>
542
+ <use x='207.418' y='168.109' xlink:href='#g2-88'/>
543
+ <use x='210.947' y='168.109' xlink:href='#g2-101'/>
544
+ <use x='213.299' y='168.109' xlink:href='#g2-111'/>
545
+ <use x='215.945' y='168.109' xlink:href='#g2-110'/>
546
+ <use x='220.442' y='168.109' xlink:href='#g2-64'/>
547
+ <use x='223.971' y='168.109' xlink:href='#g2-51'/>
548
+ <use x='226.617' y='168.109' xlink:href='#g2-71'/>
549
+ <use x='230.146' y='168.109' xlink:href='#g2-104'/>
550
+ <use x='232.879' y='168.109' xlink:href='#g2-122'/>
551
+ <use x='168.285' y='174.086' xlink:href='#g2-85'/>
552
+ <use x='171.917' y='174.086' xlink:href='#g2-98'/>
553
+ <use x='174.65' y='174.086' xlink:href='#g2-117'/>
554
+ <use x='177.383' y='174.086' xlink:href='#g2-110'/>
555
+ <use x='180.116' y='174.086' xlink:href='#g2-116'/>
556
+ <use x='182.027' y='174.086' xlink:href='#g2-117'/>
557
+ <use x='186.524' y='174.086' xlink:href='#g2-50'/>
558
+ <use x='189.17' y='174.086' xlink:href='#g2-48'/>
559
+ <use x='191.817' y='174.086' xlink:href='#g2-46'/>
560
+ <use x='193.287' y='174.086' xlink:href='#g2-48'/>
561
+ <use x='195.933' y='174.086' xlink:href='#g2-52'/>
562
+ <use x='198.58' y='174.086' xlink:href='#g2-44'/>
563
+ <use x='201.814' y='174.086' xlink:href='#g2-71'/>
564
+ <use x='205.343' y='174.086' xlink:href='#g2-67'/>
565
+ <use x='208.724' y='174.086' xlink:href='#g2-67'/>
566
+ <use x='213.87' y='174.086' xlink:href='#g2-57'/>
567
+ <use x='216.516' y='174.086' xlink:href='#g2-46'/>
568
+ <use x='217.986' y='174.086' xlink:href='#g2-51'/>
569
+ <use x='220.633' y='174.086' xlink:href='#g2-46'/>
570
+ <use x='222.103' y='174.086' xlink:href='#g2-48'/>
571
+ <use x='224.749' y='174.086' xlink:href='#g2-44'/>
572
+ <use x='227.984' y='174.086' xlink:href='#g2-103'/>
573
+ <use x='230.63' y='174.086' xlink:href='#g2-108'/>
574
+ <use x='231.893' y='174.086' xlink:href='#g2-105'/>
575
+ <use x='233.155' y='174.086' xlink:href='#g2-98'/>
576
+ <use x='236.035' y='174.086' xlink:href='#g2-99'/>
577
+ <use x='240.152' y='174.086' xlink:href='#g2-50'/>
578
+ <use x='242.798' y='174.086' xlink:href='#g2-46'/>
579
+ <use x='244.268' y='174.086' xlink:href='#g2-51'/>
580
+ <use x='246.915' y='174.086' xlink:href='#g2-49'/>
581
+ <use x='249.561' y='174.086' xlink:href='#g2-44'/>
582
+ <use x='252.796' y='174.086' xlink:href='#g2-99'/>
583
+ <use x='255.148' y='174.086' xlink:href='#g2-108'/>
584
+ <use x='256.41' y='174.086' xlink:href='#g2-97'/>
585
+ <use x='258.953' y='174.086' xlink:href='#g2-110'/>
586
+ <use x='261.686' y='174.086' xlink:href='#g2-103'/>
587
+ <use x='266.097' y='174.086' xlink:href='#g2-49'/>
588
+ <use x='268.743' y='174.086' xlink:href='#g2-48'/>
589
+ <use x='271.389' y='174.086' xlink:href='#g2-46'/>
590
+ <use x='272.859' y='174.086' xlink:href='#g2-48'/>
591
+ <use x='275.506' y='174.086' xlink:href='#g2-46'/>
592
+ <use x='276.976' y='174.086' xlink:href='#g2-48'/>
593
+ <use x='168.285' y='180.064' xlink:href='#g2-55'/>
594
+ <use x='170.931' y='180.064' xlink:href='#g2-50'/>
595
+ <use x='175.342' y='180.064' xlink:href='#g2-108'/>
596
+ <use x='176.604' y='180.064' xlink:href='#g2-111'/>
597
+ <use x='179.251' y='180.064' xlink:href='#g2-103'/>
598
+ <use x='181.897' y='180.064' xlink:href='#g2-105'/>
599
+ <use x='183.16' y='180.064' xlink:href='#g2-99'/>
600
+ <use x='185.512' y='180.064' xlink:href='#g2-97'/>
601
+ <use x='188.055' y='180.064' xlink:href='#g2-108'/>
602
+ <use x='191.082' y='180.064' xlink:href='#g2-99'/>
603
+ <use x='193.434' y='180.064' xlink:href='#g2-111'/>
604
+ <use x='195.933' y='180.064' xlink:href='#g2-114'/>
605
+ <use x='197.741' y='180.064' xlink:href='#g2-101'/>
606
+ <use x='200.093' y='180.064' xlink:href='#g2-115'/>
607
+ <use x='203.886' y='180.064' xlink:href='#g2-111'/>
608
+ <use x='206.533' y='180.064' xlink:href='#g2-110'/>
609
+ <use x='211.03' y='180.064' xlink:href='#g2-50'/>
610
+ <use x='215.44' y='180.064' xlink:href='#g2-110'/>
611
+ <use x='218.173' y='180.064' xlink:href='#g2-117'/>
612
+ <use x='220.906' y='180.064' xlink:href='#g2-109'/>
613
+ <use x='225.109' y='180.064' xlink:href='#g2-97'/>
614
+ <use x='229.416' y='180.064' xlink:href='#g2-110'/>
615
+ <use x='232.149' y='180.064' xlink:href='#g2-111'/>
616
+ <use x='234.942' y='180.064' xlink:href='#g2-100'/>
617
+ <use x='237.675' y='180.064' xlink:href='#g2-101'/>
618
+ <use x='240.027' y='180.064' xlink:href='#g2-115'/>
619
+ <use x='168.285' y='186.041' xlink:href='#g2-50'/>
620
+ <use x='170.931' y='186.041' xlink:href='#g2-48'/>
621
+ <use x='173.578' y='186.041' xlink:href='#g2-50'/>
622
+ <use x='176.224' y='186.041' xlink:href='#g2-49'/>
623
+ <use x='178.87' y='186.041' xlink:href='#g2-45'/>
624
+ <use x='180.635' y='186.041' xlink:href='#g2-48'/>
625
+ <use x='183.281' y='186.041' xlink:href='#g2-49'/>
626
+ <use x='185.927' y='186.041' xlink:href='#g2-45'/>
627
+ <use x='187.692' y='186.041' xlink:href='#g2-51'/>
628
+ <use x='190.338' y='186.041' xlink:href='#g2-48'/>
629
+ <use x='192.984' y='186.041' xlink:href='#g2-41'/>
630
+ </g>
631
+ <g transform='matrix(0 -1 1 0 -42.661 341.611)'>
632
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
633
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
634
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
635
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
636
+ </g>
637
+ <g transform='matrix(0 -1 1 0 16.008 341.611)'>
638
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
639
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
640
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
641
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
642
+ </g>
643
+ <g transform='matrix(0 -1 1 0 74.677 341.611)'>
644
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
645
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
646
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
647
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
648
+ </g>
649
+ <g transform='matrix(0 -1 1 0 133.346 341.611)'>
650
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
651
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
652
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
653
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
654
+ </g>
655
+ <g transform='matrix(0 -1 1 0 192.015 341.611)'>
656
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
657
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
658
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
659
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
660
+ </g>
661
+ <g transform='matrix(0 -1 1 0 250.684 341.611)'>
662
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
663
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
664
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
665
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
666
+ </g>
667
+ <g transform='matrix(0 -1 1 0 -37.431 342.148)'>
668
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
669
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
670
+ <use x='172.401' y='186.041' xlink:href='#g2-57'/>
671
+ <use x='175.048' y='186.041' xlink:href='#g2-57'/>
672
+ </g>
673
+ <g transform='matrix(0 -1 1 0 21.238 341.275)'>
674
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
675
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
676
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
677
+ <use x='175.048' y='186.041' xlink:href='#g2-49'/>
678
+ </g>
679
+ <g transform='matrix(0 -1 1 0 79.907 343.087)'>
680
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
681
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
682
+ <use x='172.401' y='186.041' xlink:href='#g2-57'/>
683
+ <use x='175.048' y='186.041' xlink:href='#g2-56'/>
684
+ </g>
685
+ <g transform='matrix(0 -1 1 0 138.576 342.014)'>
686
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
687
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
688
+ <use x='172.401' y='186.041' xlink:href='#g2-57'/>
689
+ <use x='175.048' y='186.041' xlink:href='#g2-57'/>
690
+ </g>
691
+ <g transform='matrix(0 -1 1 0 197.245 337.719)'>
692
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
693
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
694
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
695
+ <use x='175.048' y='186.041' xlink:href='#g2-54'/>
696
+ </g>
697
+ <g transform='matrix(0 -1 1 0 255.914 341.745)'>
698
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
699
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
700
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
701
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
702
+ </g>
703
+ <g transform='matrix(0 -1 1 0 -32.2 325.505)'>
704
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
705
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
706
+ <use x='172.401' y='186.041' xlink:href='#g2-50'/>
707
+ <use x='175.048' y='186.041' xlink:href='#g2-52'/>
708
+ </g>
709
+ <g transform='matrix(0 -1 1 0 26.469 321.144)'>
710
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
711
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
712
+ <use x='172.401' y='186.041' xlink:href='#g2-51'/>
713
+ <use x='175.048' y='186.041' xlink:href='#g2-49'/>
714
+ </g>
715
+ <g transform='matrix(0 -1 1 0 85.138 346.107)'>
716
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
717
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
718
+ <use x='172.401' y='186.041' xlink:href='#g2-57'/>
719
+ <use x='175.048' y='186.041' xlink:href='#g2-51'/>
720
+ </g>
721
+ <g transform='matrix(0 -1 1 0 143.807 365.769)'>
722
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
723
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
724
+ <use x='172.401' y='186.041' xlink:href='#g2-54'/>
725
+ <use x='175.048' y='186.041' xlink:href='#g2-52'/>
726
+ </g>
727
+ <g transform='matrix(0 -1 1 0 202.476 381.942)'>
728
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
729
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
730
+ <use x='172.401' y='186.041' xlink:href='#g2-52'/>
731
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
732
+ </g>
733
+ <g transform='matrix(0 -1 1 0 261.145 301.817)'>
734
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
735
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
736
+ <use x='172.401' y='186.041' xlink:href='#g2-53'/>
737
+ <use x='175.048' y='186.041' xlink:href='#g2-57'/>
738
+ </g>
739
+ <g transform='matrix(0 -1 1 0 -26.97 345.906)'>
740
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
741
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
742
+ <use x='172.401' y='186.041' xlink:href='#g2-57'/>
743
+ <use x='175.048' y='186.041' xlink:href='#g2-52'/>
744
+ </g>
745
+ <g transform='matrix(0 -1 1 0 31.699 338.189)'>
746
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
747
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
748
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
749
+ <use x='175.048' y='186.041' xlink:href='#g2-53'/>
750
+ </g>
751
+ <g transform='matrix(0 -1 1 0 90.368 343.423)'>
752
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
753
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
754
+ <use x='172.401' y='186.041' xlink:href='#g2-57'/>
755
+ <use x='175.048' y='186.041' xlink:href='#g2-55'/>
756
+ </g>
757
+ <g transform='matrix(0 -1 1 0 149.037 355.166)'>
758
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
759
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
760
+ <use x='172.401' y='186.041' xlink:href='#g2-56'/>
761
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
762
+ </g>
763
+ <g transform='matrix(0 -1 1 0 207.706 357.247)'>
764
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
765
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
766
+ <use x='172.401' y='186.041' xlink:href='#g2-55'/>
767
+ <use x='175.048' y='186.041' xlink:href='#g2-55'/>
768
+ </g>
769
+ <g transform='matrix(0 -1 1 0 266.375 306.649)'>
770
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
771
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
772
+ <use x='172.401' y='186.041' xlink:href='#g2-53'/>
773
+ <use x='175.048' y='186.041' xlink:href='#g2-50'/>
774
+ </g>
775
+ <g transform='matrix(0 -1 1 0 -21.739 341.007)'>
776
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
777
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
778
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
779
+ <use x='175.048' y='186.041' xlink:href='#g2-49'/>
780
+ </g>
781
+ <g transform='matrix(0 -1 1 0 36.93 332.015)'>
782
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
783
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
784
+ <use x='172.401' y='186.041' xlink:href='#g2-49'/>
785
+ <use x='175.048' y='186.041' xlink:href='#g2-52'/>
786
+ </g>
787
+ <g transform='matrix(0 -1 1 0 95.599 338.725)'>
788
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
789
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
790
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
791
+ <use x='175.048' y='186.041' xlink:href='#g2-52'/>
792
+ </g>
793
+ <g transform='matrix(0 -1 1 0 154.268 357.314)'>
794
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
795
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
796
+ <use x='172.401' y='186.041' xlink:href='#g2-55'/>
797
+ <use x='175.048' y='186.041' xlink:href='#g2-55'/>
798
+ </g>
799
+ <g transform='matrix(0 -1 1 0 212.937 344.161)'>
800
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
801
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
802
+ <use x='172.401' y='186.041' xlink:href='#g2-57'/>
803
+ <use x='175.048' y='186.041' xlink:href='#g2-54'/>
804
+ </g>
805
+ <g transform='matrix(0 -1 1 0 271.606 339.732)'>
806
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
807
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
808
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
809
+ <use x='175.048' y='186.041' xlink:href='#g2-51'/>
810
+ </g>
811
+ <g transform='matrix(0 -1 1 0 -16.509 341.678)'>
812
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
813
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
814
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
815
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
816
+ </g>
817
+ <g transform='matrix(0 -1 1 0 42.16 306.179)'>
818
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
819
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
820
+ <use x='172.401' y='186.041' xlink:href='#g2-53'/>
821
+ <use x='175.048' y='186.041' xlink:href='#g2-51'/>
822
+ </g>
823
+ <g transform='matrix(0 -1 1 0 100.829 334.9)'>
824
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
825
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
826
+ <use x='172.401' y='186.041' xlink:href='#g2-49'/>
827
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
828
+ </g>
829
+ <g transform='matrix(0 -1 1 0 159.498 317.99)'>
830
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
831
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
832
+ <use x='172.401' y='186.041' xlink:href='#g2-51'/>
833
+ <use x='175.048' y='186.041' xlink:href='#g2-53'/>
834
+ </g>
835
+ <g transform='matrix(0 -1 1 0 218.167 334.565)'>
836
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
837
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
838
+ <use x='172.401' y='186.041' xlink:href='#g2-49'/>
839
+ <use x='175.048' y='186.041' xlink:href='#g2-49'/>
840
+ </g>
841
+ <g transform='matrix(0 -1 1 0 276.836 334.095)'>
842
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
843
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
844
+ <use x='172.401' y='186.041' xlink:href='#g2-49'/>
845
+ <use x='175.048' y='186.041' xlink:href='#g2-49'/>
846
+ </g>
847
+ <g transform='matrix(0 -1 1 0 -11.278 339.195)'>
848
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
849
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
850
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
851
+ <use x='175.048' y='186.041' xlink:href='#g2-52'/>
852
+ </g>
853
+ <g transform='matrix(0 -1 1 0 47.391 341.544)'>
854
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
855
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
856
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
857
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
858
+ </g>
859
+ <g transform='matrix(0 -1 1 0 106.06 328.257)'>
860
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
861
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
862
+ <use x='172.401' y='186.041' xlink:href='#g2-50'/>
863
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
864
+ </g>
865
+ <g transform='matrix(0 -1 1 0 164.729 322.687)'>
866
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
867
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
868
+ <use x='172.401' y='186.041' xlink:href='#g2-50'/>
869
+ <use x='175.048' y='186.041' xlink:href='#g2-56'/>
870
+ </g>
871
+ <g transform='matrix(0 -1 1 0 223.398 240.952)'>
872
+ <use x='163.396' y='186.041' xlink:href='#g4-1'/>
873
+ <use x='166.901' y='186.041' xlink:href='#g4-1'/>
874
+ <use x='170.407' y='186.041' xlink:href='#g4-1'/>
875
+ <use x='173.912' y='186.041' xlink:href='#g2-57'/>
876
+ <use x='176.558' y='186.041' xlink:href='#g2-46'/>
877
+ <use x='178.029' y='186.041' xlink:href='#g2-54'/>
878
+ <use x='180.675' y='186.041' xlink:href='#g2-56'/>
879
+ <use x='183.321' y='186.041' xlink:href='#g2-120'/>
880
+ </g>
881
+ <g transform='matrix(0 -1 1 0 282.067 351.878)'>
882
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
883
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
884
+ <use x='172.401' y='186.041' xlink:href='#g2-56'/>
885
+ <use x='175.048' y='186.041' xlink:href='#g2-53'/>
886
+ </g>
887
+ <g transform='matrix(0 -1 1 0 -6.048 329.465)'>
888
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
889
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
890
+ <use x='172.401' y='186.041' xlink:href='#g2-49'/>
891
+ <use x='175.048' y='186.041' xlink:href='#g2-56'/>
892
+ </g>
893
+ <g transform='matrix(0 -1 1 0 52.621 240.952)'>
894
+ <use x='163.396' y='186.041' xlink:href='#g4-1'/>
895
+ <use x='166.901' y='186.041' xlink:href='#g4-1'/>
896
+ <use x='170.407' y='186.041' xlink:href='#g4-1'/>
897
+ <use x='173.912' y='186.041' xlink:href='#g2-50'/>
898
+ <use x='176.558' y='186.041' xlink:href='#g2-46'/>
899
+ <use x='178.029' y='186.041' xlink:href='#g2-54'/>
900
+ <use x='180.675' y='186.041' xlink:href='#g2-50'/>
901
+ <use x='183.321' y='186.041' xlink:href='#g2-120'/>
902
+ </g>
903
+ <g transform='matrix(0 -1 1 0 111.29 305.172)'>
904
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
905
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
906
+ <use x='172.401' y='186.041' xlink:href='#g2-53'/>
907
+ <use x='175.048' y='186.041' xlink:href='#g2-52'/>
908
+ </g>
909
+ <g transform='matrix(0 -1 1 0 169.959 328.794)'>
910
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
911
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
912
+ <use x='172.401' y='186.041' xlink:href='#g2-49'/>
913
+ <use x='175.048' y='186.041' xlink:href='#g2-57'/>
914
+ </g>
915
+ <g transform='matrix(0 -1 1 0 228.628 381.472)'>
916
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
917
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
918
+ <use x='172.401' y='186.041' xlink:href='#g2-52'/>
919
+ <use x='175.048' y='186.041' xlink:href='#g2-49'/>
920
+ </g>
921
+ <g transform='matrix(0 -1 1 0 287.297 322.419)'>
922
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
923
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
924
+ <use x='172.401' y='186.041' xlink:href='#g2-50'/>
925
+ <use x='175.048' y='186.041' xlink:href='#g2-57'/>
926
+ </g>
927
+ <g transform='matrix(0 -1 1 0 -.818 338.793)'>
928
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
929
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
930
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
931
+ <use x='175.048' y='186.041' xlink:href='#g2-52'/>
932
+ </g>
933
+ <g transform='matrix(0 -1 1 0 57.851 331.142)'>
934
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
935
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
936
+ <use x='172.401' y='186.041' xlink:href='#g2-49'/>
937
+ <use x='175.048' y='186.041' xlink:href='#g2-54'/>
938
+ </g>
939
+ <g transform='matrix(0 -1 1 0 116.52 313.628)'>
940
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
941
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
942
+ <use x='172.401' y='186.041' xlink:href='#g2-52'/>
943
+ <use x='175.048' y='186.041' xlink:href='#g2-50'/>
944
+ </g>
945
+ <g transform='matrix(0 -1 1 0 175.189 275.511)'>
946
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
947
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
948
+ <use x='172.401' y='186.041' xlink:href='#g2-57'/>
949
+ <use x='175.048' y='186.041' xlink:href='#g2-57'/>
950
+ </g>
951
+ <g transform='matrix(0 -1 1 0 233.858 350.469)'>
952
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
953
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
954
+ <use x='172.401' y='186.041' xlink:href='#g2-56'/>
955
+ <use x='175.048' y='186.041' xlink:href='#g2-55'/>
956
+ </g>
957
+ <g transform='matrix(0 -1 1 0 292.527 352.482)'>
958
+ <use x='168.285' y='186.041' xlink:href='#g2-48'/>
959
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
960
+ <use x='172.401' y='186.041' xlink:href='#g2-56'/>
961
+ <use x='175.048' y='186.041' xlink:href='#g2-52'/>
962
+ </g>
963
+ <g transform='matrix(0 -1 1 0 4.413 341.544)'>
964
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
965
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
966
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
967
+ <use x='175.048' y='186.041' xlink:href='#g2-48'/>
968
+ </g>
969
+ <g transform='matrix(0 -1 1 0 63.082 275.176)'>
970
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
971
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
972
+ <use x='172.401' y='186.041' xlink:href='#g2-57'/>
973
+ <use x='175.048' y='186.041' xlink:href='#g2-57'/>
974
+ </g>
975
+ <g transform='matrix(0 -1 1 0 121.751 326.177)'>
976
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
977
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
978
+ <use x='172.401' y='186.041' xlink:href='#g2-50'/>
979
+ <use x='175.048' y='186.041' xlink:href='#g2-51'/>
980
+ </g>
981
+ <g transform='matrix(0 -1 1 0 180.42 318.661)'>
982
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
983
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
984
+ <use x='172.401' y='186.041' xlink:href='#g2-51'/>
985
+ <use x='175.048' y='186.041' xlink:href='#g2-52'/>
986
+ </g>
987
+ <g transform='matrix(0 -1 1 0 239.089 336.578)'>
988
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
989
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
990
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
991
+ <use x='175.048' y='186.041' xlink:href='#g2-55'/>
992
+ </g>
993
+ <g transform='matrix(0 -1 1 0 297.758 338.457)'>
994
+ <use x='168.285' y='186.041' xlink:href='#g2-49'/>
995
+ <use x='170.931' y='186.041' xlink:href='#g2-46'/>
996
+ <use x='172.401' y='186.041' xlink:href='#g2-48'/>
997
+ <use x='175.048' y='186.041' xlink:href='#g2-53'/>
998
+ </g>
999
+ <g transform='matrix(0 -1 1 0 -72.883 382.933)'>
1000
+ <use x='168.285' y='186.041' xlink:href='#g1-82'/>
1001
+ <use x='174.255' y='186.041' xlink:href='#g1-101'/>
1002
+ <use x='178.351' y='186.041' xlink:href='#g1-108'/>
1003
+ <use x='180.551' y='186.041' xlink:href='#g1-97'/>
1004
+ <use x='184.979' y='186.041' xlink:href='#g1-116'/>
1005
+ <use x='188.307' y='186.041' xlink:href='#g1-105'/>
1006
+ <use x='190.507' y='186.041' xlink:href='#g1-118'/>
1007
+ <use x='194.755' y='186.041' xlink:href='#g1-101'/>
1008
+ <use x='201.922' y='186.041' xlink:href='#g1-114'/>
1009
+ <use x='205.07' y='186.041' xlink:href='#g1-115'/>
1010
+ <use x='208.603' y='186.041' xlink:href='#g1-115'/>
1011
+ <use x='215.207' y='186.041' xlink:href='#g3-40'/>
1012
+ <use x='218.5' y='186.041' xlink:href='#g3-108'/>
1013
+ <use x='220.521' y='186.041' xlink:href='#g3-111'/>
1014
+ <use x='224.52' y='186.041' xlink:href='#g3-119'/>
1015
+ <use x='230.068' y='186.041' xlink:href='#g3-101'/>
1016
+ <use x='233.832' y='186.041' xlink:href='#g3-114'/>
1017
+ <use x='239.547' y='186.041' xlink:href='#g3-105'/>
1018
+ <use x='241.567' y='186.041' xlink:href='#g3-115'/>
1019
+ <use x='247.636' y='186.041' xlink:href='#g3-98'/>
1020
+ <use x='252.244' y='186.041' xlink:href='#g3-101'/>
1021
+ <use x='256.008' y='186.041' xlink:href='#g3-116'/>
1022
+ <use x='259.066' y='186.041' xlink:href='#g3-116'/>
1023
+ <use x='262.124' y='186.041' xlink:href='#g3-101'/>
1024
+ <use x='265.887' y='186.041' xlink:href='#g3-114'/>
1025
+ <use x='268.779' y='186.041' xlink:href='#g3-41'/>
1026
+ </g>
1027
+ <path d='M136.149 307.031H346.746V277.031H136.149Z' fill='#fff'/>
1028
+ <path d='M136.149 307.031H346.746V277.031H136.149Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1029
+ <path d='M139.336 287.523H142.324V279.551H139.336ZM145.313 287.523H148.301V281.543H145.313Z' fill='#fff'/>
1030
+ <path d='M139.336 287.523H142.324V279.551H139.336ZM145.313 287.523H148.301V281.543H145.313Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1031
+ <g transform='matrix(1 0 0 1 -40.354 114.479)'>
1032
+ <use x='191.843' y='173.035' xlink:href='#g3-120'/>
1033
+ <use x='195.745' y='173.035' xlink:href='#g3-109'/>
1034
+ <use x='202.47' y='173.035' xlink:href='#g3-105'/>
1035
+ <use x='204.49' y='173.035' xlink:href='#g3-58'/>
1036
+ <use x='206.843' y='173.035' xlink:href='#g0-54'/>
1037
+ <use x='210.548' y='173.035' xlink:href='#g0-56'/>
1038
+ </g>
1039
+ <path d='M177.086 287.523H180.074V279.551H177.086ZM183.063 287.523H186.055V281.543H183.063Z' fill='#f0e0f0'/>
1040
+ <path d='M177.086 287.523H180.074V279.551H177.086ZM183.063 287.523H186.055V281.543H183.063Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1041
+ <g transform='matrix(1 0 0 1 -38.403 114.479)'>
1042
+ <use x='233.123' y='173.035' xlink:href='#g3-109'/>
1043
+ <use x='239.848' y='173.035' xlink:href='#g3-105'/>
1044
+ <use x='241.869' y='173.035' xlink:href='#g3-58'/>
1045
+ <use x='244.221' y='173.035' xlink:href='#g0-54'/>
1046
+ <use x='247.926' y='173.035' xlink:href='#g0-56'/>
1047
+ </g>
1048
+ <path d='M221.895 287.523H224.883V279.551H221.895ZM227.875 287.523H230.863V281.543H227.875Z' fill='#e1c2e1'/>
1049
+ <path d='M221.895 287.523H224.883V279.551H221.895ZM227.875 287.523H230.863V281.543H227.875Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1050
+ <g transform='matrix(1 0 0 1 -37.441 114.036)'>
1051
+ <use x='277.134' y='173.035' xlink:href='#g3-116'/>
1052
+ <use x='280.192' y='173.035' xlink:href='#g3-99'/>
1053
+ <use x='283.956' y='173.035' xlink:href='#g3-58'/>
1054
+ <use x='286.308' y='173.035' xlink:href='#g0-55'/>
1055
+ <use x='290.013' y='173.035' xlink:href='#g0-50'/>
1056
+ </g>
1057
+ <path d='M265.109 287.523H268.098V279.551H265.109ZM271.086 287.523H274.074V281.543H271.086Z' fill='#d1a3d1'/>
1058
+ <path d='M265.109 287.523H268.098V279.551H265.109ZM271.086 287.523H274.074V281.543H271.086Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1059
+ <g transform='matrix(1 0 0 1 -37.04 114.479)'>
1060
+ <use x='319.615' y='173.035' xlink:href='#g3-106'/>
1061
+ <use x='321.871' y='173.035' xlink:href='#g3-101'/>
1062
+ <use x='325.634' y='173.035' xlink:href='#g3-58'/>
1063
+ <use x='327.987' y='173.035' xlink:href='#g0-55'/>
1064
+ <use x='331.691' y='173.035' xlink:href='#g0-49'/>
1065
+ </g>
1066
+ <path d='M306.859 287.523H309.848V279.551H306.859ZM312.836 287.523H315.824V281.543H312.836Z' fill='#c285c2'/>
1067
+ <path d='M306.859 287.523H309.848V279.551H306.859ZM312.836 287.523H315.824V281.543H312.836Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1068
+ <g transform='matrix(1 0 0 1 -39.932 114.515)'>
1069
+ <use x='359.038' y='173.035' xlink:href='#g3-116'/>
1070
+ <use x='362.096' y='173.035' xlink:href='#g3-98'/>
1071
+ <use x='366.469' y='173.035' xlink:href='#g3-98'/>
1072
+ <use x='370.842' y='173.035' xlink:href='#g3-58'/>
1073
+ <use x='373.194' y='173.035' xlink:href='#g0-54'/>
1074
+ <use x='376.899' y='173.035' xlink:href='#g0-51'/>
1075
+ </g>
1076
+ <path d='M139.336 300.527H142.324V292.559H139.336ZM145.313 300.527H148.301V294.551H145.313Z' fill='#b366b3'/>
1077
+ <path d='M139.336 300.527H142.324V292.559H139.336ZM145.313 300.527H148.301V294.551H145.313Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1078
+ <g transform='matrix(1 0 0 1 -37.662 114.036)'>
1079
+ <use x='191.843' y='186.041' xlink:href='#g3-114'/>
1080
+ <use x='194.735' y='186.041' xlink:href='#g3-112'/>
1081
+ <use x='199.108' y='186.041' xlink:href='#g3-58'/>
1082
+ <use x='201.46' y='186.041' xlink:href='#g0-52'/>
1083
+ <use x='205.165' y='186.041' xlink:href='#g0-50'/>
1084
+ </g>
1085
+ <path d='M177.086 300.527H180.074V292.559H177.086ZM183.063 300.527H186.055V294.551H183.063Z' fill='#a447a4'/>
1086
+ <path d='M177.086 300.527H180.074V292.559H177.086ZM183.063 300.527H186.055V294.551H183.063Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1087
+ <g transform='matrix(1 0 0 1 -43.882 114.515)'>
1088
+ <use x='233.123' y='186.041' xlink:href='#g3-104'/>
1089
+ <use x='237.496' y='186.041' xlink:href='#g3-111'/>
1090
+ <use x='241.73' y='186.041' xlink:href='#g3-97'/>
1091
+ <use x='245.563' y='186.041' xlink:href='#g3-114'/>
1092
+ <use x='248.455' y='186.041' xlink:href='#g3-100'/>
1093
+ <use x='252.828' y='186.041' xlink:href='#g3-58'/>
1094
+ <use x='255.18' y='186.041' xlink:href='#g0-53'/>
1095
+ <use x='258.885' y='186.041' xlink:href='#g0-51'/>
1096
+ </g>
1097
+ <path d='M221.895 300.527H224.883V292.559H221.895ZM227.875 300.527H230.863V294.551H227.875Z' fill='#942994'/>
1098
+ <path d='M221.895 300.527H224.883V292.559H221.895ZM227.875 300.527H230.863V294.551H227.875Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1099
+ <g transform='matrix(1 0 0 1 -43.084 114.515)'>
1100
+ <use x='277.134' y='186.041' xlink:href='#g3-109'/>
1101
+ <use x='283.859' y='186.041' xlink:href='#g3-101'/>
1102
+ <use x='287.622' y='186.041' xlink:href='#g3-115'/>
1103
+ <use x='290.869' y='186.041' xlink:href='#g3-104'/>
1104
+ <use x='295.241' y='186.041' xlink:href='#g3-58'/>
1105
+ <use x='297.593' y='186.041' xlink:href='#g0-53'/>
1106
+ <use x='301.298' y='186.041' xlink:href='#g0-50'/>
1107
+ </g>
1108
+ <path d='M265.109 300.527H268.098V292.559H265.109ZM271.086 300.527H274.074V294.551H271.086Z' fill='#850a85'/>
1109
+ <path d='M265.109 300.527H268.098V292.559H265.109ZM271.086 300.527H274.074V294.551H271.086Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1110
+ <g transform='matrix(1 0 0 1 -42.353 114.515)'>
1111
+ <use x='319.615' y='186.041' xlink:href='#g3-103'/>
1112
+ <use x='323.849' y='186.041' xlink:href='#g3-108'/>
1113
+ <use x='325.869' y='186.041' xlink:href='#g3-105'/>
1114
+ <use x='327.89' y='186.041' xlink:href='#g3-98'/>
1115
+ <use x='332.498' y='186.041' xlink:href='#g3-99'/>
1116
+ <use x='336.261' y='186.041' xlink:href='#g3-58'/>
1117
+ <use x='338.614' y='186.041' xlink:href='#g0-54'/>
1118
+ <use x='342.318' y='186.041' xlink:href='#g0-52'/>
1119
+ </g>
1120
+ <path d='M306.859 300.527H309.848V292.559H306.859ZM312.836 300.527H315.824V294.551H312.836Z' fill='#760076'/>
1121
+ <path d='M306.859 300.527H309.848V292.559H306.859ZM312.836 300.527H315.824V294.551H312.836Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1122
+ <g transform='matrix(1 0 0 1 -40.026 114.479)'>
1123
+ <use x='359.038' y='186.041' xlink:href='#g3-115'/>
1124
+ <use x='362.285' y='186.041' xlink:href='#g3-109'/>
1125
+ <use x='369.009' y='186.041' xlink:href='#g3-105'/>
1126
+ <use x='371.03' y='186.041' xlink:href='#g3-58'/>
1127
+ <use x='373.382' y='186.041' xlink:href='#g0-52'/>
1128
+ <use x='377.087' y='186.041' xlink:href='#g0-51'/>
1129
+ </g>
1130
+ </g>
1131
+ </svg>