@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,1269 @@
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='259.632pt' viewBox='106.732 54.993 381.627 259.632'>
4
+ <rect width="1000%" height="1000%" fill="white"/>
5
+ <defs>
6
+ <clipPath id='clip4'>
7
+ <path d='M135.949 251.93H487.961V84.164H135.949Z'/>
8
+ </clipPath>
9
+ <use id='g3-40' xlink:href='#g0-40' transform='scale(1.143)'/>
10
+ <use id='g3-41' xlink:href='#g0-41' transform='scale(1.143)'/>
11
+ <use id='g3-45' xlink:href='#g0-45' transform='scale(1.143)'/>
12
+ <use id='g3-49' xlink:href='#g0-49' transform='scale(1.143)'/>
13
+ <use id='g3-54' xlink:href='#g0-54' transform='scale(1.143)'/>
14
+ <use id='g3-56' xlink:href='#g0-56' transform='scale(1.143)'/>
15
+ <use id='g3-58' xlink:href='#g0-58' transform='scale(1.143)'/>
16
+ <use id='g3-78' xlink:href='#g0-78' transform='scale(1.143)'/>
17
+ <use id='g3-97' xlink:href='#g0-97' transform='scale(1.143)'/>
18
+ <use id='g3-98' xlink:href='#g0-98' transform='scale(1.143)'/>
19
+ <use id='g3-99' xlink:href='#g0-99' transform='scale(1.143)'/>
20
+ <use id='g3-100' xlink:href='#g0-100' transform='scale(1.143)'/>
21
+ <use id='g3-101' xlink:href='#g0-101' transform='scale(1.143)'/>
22
+ <use id='g3-103' xlink:href='#g0-103' transform='scale(1.143)'/>
23
+ <use id='g3-104' xlink:href='#g0-104' transform='scale(1.143)'/>
24
+ <use id='g3-105' xlink:href='#g0-105' transform='scale(1.143)'/>
25
+ <use id='g3-106' xlink:href='#g0-106' transform='scale(1.143)'/>
26
+ <use id='g3-108' xlink:href='#g0-108' transform='scale(1.143)'/>
27
+ <use id='g3-109' xlink:href='#g0-109' transform='scale(1.143)'/>
28
+ <use id='g3-110' xlink:href='#g0-110' transform='scale(1.143)'/>
29
+ <use id='g3-111' xlink:href='#g0-111' transform='scale(1.143)'/>
30
+ <use id='g3-112' xlink:href='#g0-112' transform='scale(1.143)'/>
31
+ <use id='g3-114' xlink:href='#g0-114' transform='scale(1.143)'/>
32
+ <use id='g3-115' xlink:href='#g0-115' transform='scale(1.143)'/>
33
+ <use id='g3-116' xlink:href='#g0-116' transform='scale(1.143)'/>
34
+ <use id='g3-119' xlink:href='#g0-119' transform='scale(1.143)'/>
35
+ <use id='g3-120' xlink:href='#g0-120' transform='scale(1.143)'/>
36
+ <use id='g2-41' xlink:href='#g0-41' transform='scale(.714)'/>
37
+ <use id='g2-44' xlink:href='#g0-44' transform='scale(.714)'/>
38
+ <use id='g2-45' xlink:href='#g0-45' transform='scale(.714)'/>
39
+ <use id='g2-46' xlink:href='#g0-46' transform='scale(.714)'/>
40
+ <use id='g2-48' xlink:href='#g0-48' transform='scale(.714)'/>
41
+ <use id='g2-49' xlink:href='#g0-49' transform='scale(.714)'/>
42
+ <use id='g2-50' xlink:href='#g0-50' transform='scale(.714)'/>
43
+ <use id='g2-51' xlink:href='#g0-51' transform='scale(.714)'/>
44
+ <use id='g2-52' xlink:href='#g0-52' transform='scale(.714)'/>
45
+ <use id='g2-53' xlink:href='#g0-53' transform='scale(.714)'/>
46
+ <use id='g2-54' xlink:href='#g0-54' transform='scale(.714)'/>
47
+ <use id='g2-55' xlink:href='#g0-55' transform='scale(.714)'/>
48
+ <use id='g2-56' xlink:href='#g0-56' transform='scale(.714)'/>
49
+ <use id='g2-57' xlink:href='#g0-57' transform='scale(.714)'/>
50
+ <use id='g2-64' xlink:href='#g0-64' transform='scale(.714)'/>
51
+ <use id='g2-67' xlink:href='#g0-67' transform='scale(.714)'/>
52
+ <use id='g2-71' xlink:href='#g0-71' transform='scale(.714)'/>
53
+ <use id='g2-73' xlink:href='#g0-73' transform='scale(.714)'/>
54
+ <use id='g2-85' xlink:href='#g0-85' transform='scale(.714)'/>
55
+ <use id='g2-88' xlink:href='#g0-88' transform='scale(.714)'/>
56
+ <use id='g2-97' xlink:href='#g0-97' transform='scale(.714)'/>
57
+ <use id='g2-98' xlink:href='#g0-98' transform='scale(.714)'/>
58
+ <use id='g2-99' xlink:href='#g0-99' transform='scale(.714)'/>
59
+ <use id='g2-100' xlink:href='#g0-100' transform='scale(.714)'/>
60
+ <use id='g2-101' xlink:href='#g0-101' transform='scale(.714)'/>
61
+ <use id='g2-103' xlink:href='#g0-103' transform='scale(.714)'/>
62
+ <use id='g2-104' xlink:href='#g0-104' transform='scale(.714)'/>
63
+ <use id='g2-105' xlink:href='#g0-105' transform='scale(.714)'/>
64
+ <use id='g2-108' xlink:href='#g0-108' transform='scale(.714)'/>
65
+ <use id='g2-109' xlink:href='#g0-109' transform='scale(.714)'/>
66
+ <use id='g2-110' xlink:href='#g0-110' transform='scale(.714)'/>
67
+ <use id='g2-111' xlink:href='#g0-111' transform='scale(.714)'/>
68
+ <use id='g2-114' xlink:href='#g0-114' transform='scale(.714)'/>
69
+ <use id='g2-115' xlink:href='#g0-115' transform='scale(.714)'/>
70
+ <use id='g2-116' xlink:href='#g0-116' transform='scale(.714)'/>
71
+ <use id='g2-117' xlink:href='#g0-117' transform='scale(.714)'/>
72
+ <use id='g2-120' xlink:href='#g0-120' transform='scale(.714)'/>
73
+ <use id='g2-122' xlink:href='#g0-122' transform='scale(.714)'/>
74
+ <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'/>
75
+ <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'/>
76
+ <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'/>
77
+ <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'/>
78
+ <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'/>
79
+ <path id='g1-105' d='M1.524-6.133H.664V-5.272H1.524V-6.133ZM1.453-3.981H.735V0H1.453V-3.981Z'/>
80
+ <path id='g1-108' d='M1.453-6.223H.735V0H1.453V-6.223Z'/>
81
+ <path id='g1-109' d='M6.581-2.663C6.581-3.327 6.402-4.08 5.317-4.08C4.564-4.08 4.142-3.622 3.927-3.344C3.865-3.524 3.676-4.08 2.762-4.08C2.053-4.08 1.623-3.667 1.417-3.398V-4.035H.726V0H1.47V-2.188C1.47-2.78 1.704-3.497 2.385-3.497C3.282-3.497 3.282-2.86 3.282-2.6V0H4.026V-2.188C4.026-2.78 4.259-3.497 4.94-3.497C5.837-3.497 5.837-2.86 5.837-2.6V0H6.581V-2.663Z'/>
82
+ <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'/>
83
+ <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'/>
84
+ <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'/>
85
+ <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'/>
86
+ <path id='g0-44' d='M1.339-.007V-.628H.711V0H.907L.704 .893H1.018L1.339-.007Z'/>
87
+ <path id='g0-45' d='M2.05-1.332V-1.771H.084V-1.332H2.05Z'/>
88
+ <path id='g0-46' d='M1.339-.628H.711V0H1.339V-.628Z'/>
89
+ <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'/>
90
+ <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'/>
91
+ <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'/>
92
+ <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'/>
93
+ <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'/>
94
+ <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'/>
95
+ <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'/>
96
+ <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'/>
97
+ <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'/>
98
+ <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'/>
99
+ <path id='g0-58' d='M1.339-3.096H.711V-2.469H1.339V-3.096ZM.711-.628V0H1.339V-.628H.711Z'/>
100
+ <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'/>
101
+ <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'/>
102
+ <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'/>
103
+ <path id='g0-73' d='M1.381-4.84H.676V0H1.381V-4.84Z'/>
104
+ <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'/>
105
+ <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'/>
106
+ <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'/>
107
+ <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'/>
108
+ <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'/>
109
+ <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'/>
110
+ <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'/>
111
+ <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'/>
112
+ <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'/>
113
+ <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'/>
114
+ <path id='g0-105' d='M1.227-4.784H.523V-4.08H1.227V-4.784ZM1.172-3.096H.586V0H1.172V-3.096Z'/>
115
+ <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'/>
116
+ <path id='g0-108' d='M1.172-4.84H.586V0H1.172V-4.84Z'/>
117
+ <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'/>
118
+ <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'/>
119
+ <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'/>
120
+ <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'/>
121
+ <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'/>
122
+ <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'/>
123
+ <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'/>
124
+ <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'/>
125
+ <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'/>
126
+ <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'/>
127
+ <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'/>
128
+ </defs>
129
+ <g id='page4'>
130
+ <path d='M194.617 260.785V251.93M253.285 260.785V251.93M311.953 260.785V251.93M370.625 260.785V251.93M429.293 260.785V251.93M194.617 75.308V84.164M253.285 75.308V84.164M311.953 75.308V84.164M370.625 75.308V84.164M429.293 75.308V84.164' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
131
+ <path d='M165.281 256.18V251.93M223.953 256.18V251.93M282.621 256.18V251.93M341.289 256.18V251.93M399.957 256.18V251.93M458.629 256.18V251.93M165.281 79.91V84.164M223.953 79.91V84.164M282.621 79.91V84.164M341.289 79.91V84.164M399.957 79.91V84.164M458.629 79.91V84.164' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
132
+ <path d='M135.949 251.93H140.199M135.949 218.375H140.199M135.949 184.824H140.199M135.949 151.269H140.199M135.949 117.719H140.199M135.949 84.164H140.199M487.961 251.93H483.711M487.961 218.375H483.711M487.961 184.824H483.711M487.961 151.269H483.711M487.961 117.719H483.711M487.961 84.164H483.711' stroke='#808080' fill='none' stroke-width='.199' stroke-miterlimit='10'/>
133
+ <path d='M135.949 251.93V84.164H487.961V251.93H135.949Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
134
+ <g transform='matrix(1 0 0 1 -21.265 74.992)'>
135
+ <use x='168.285' y='191.334' xlink:href='#g3-97'/>
136
+ <use x='172.353' y='191.334' xlink:href='#g3-108'/>
137
+ <use x='174.373' y='191.334' xlink:href='#g3-108'/>
138
+ <use x='176.393' y='191.334' xlink:href='#g3-111'/>
139
+ <use x='180.863' y='191.334' xlink:href='#g3-99'/>
140
+ <use x='184.627' y='191.334' xlink:href='#g3-45'/>
141
+ <use x='187.449' y='191.334' xlink:href='#g3-116'/>
142
+ <use x='190.507' y='191.334' xlink:href='#g3-101'/>
143
+ <use x='194.271' y='191.334' xlink:href='#g3-115'/>
144
+ <use x='197.517' y='191.334' xlink:href='#g3-116'/>
145
+ <use x='200.575' y='191.334' xlink:href='#g3-49'/>
146
+ </g>
147
+ <g transform='matrix(1 0 0 1 36.532 74.992)'>
148
+ <use x='168.285' y='191.334' xlink:href='#g3-97'/>
149
+ <use x='172.353' y='191.334' xlink:href='#g3-108'/>
150
+ <use x='174.373' y='191.334' xlink:href='#g3-108'/>
151
+ <use x='176.393' y='191.334' xlink:href='#g3-111'/>
152
+ <use x='180.863' y='191.334' xlink:href='#g3-99'/>
153
+ <use x='184.627' y='191.334' xlink:href='#g3-45'/>
154
+ <use x='187.449' y='191.334' xlink:href='#g3-116'/>
155
+ <use x='190.507' y='191.334' xlink:href='#g3-101'/>
156
+ <use x='194.271' y='191.334' xlink:href='#g3-115'/>
157
+ <use x='197.517' y='191.334' xlink:href='#g3-116'/>
158
+ <use x='200.575' y='191.334' xlink:href='#g3-78'/>
159
+ </g>
160
+ <g transform='matrix(1 0 0 1 94.98 74.992)'>
161
+ <use x='168.285' y='191.334' xlink:href='#g3-115'/>
162
+ <use x='171.531' y='191.334' xlink:href='#g3-104'/>
163
+ <use x='175.904' y='191.334' xlink:href='#g3-54'/>
164
+ <use x='180.138' y='191.334' xlink:href='#g3-98'/>
165
+ <use x='184.746' y='191.334' xlink:href='#g3-101'/>
166
+ <use x='188.509' y='191.334' xlink:href='#g3-110'/>
167
+ <use x='192.882' y='191.334' xlink:href='#g3-99'/>
168
+ <use x='196.646' y='191.334' xlink:href='#g3-104'/>
169
+ <use x='201.018' y='191.334' xlink:href='#g3-78'/>
170
+ </g>
171
+ <g transform='matrix(1 0 0 1 153.649 74.992)'>
172
+ <use x='168.285' y='191.334' xlink:href='#g3-115'/>
173
+ <use x='171.531' y='191.334' xlink:href='#g3-104'/>
174
+ <use x='175.904' y='191.334' xlink:href='#g3-56'/>
175
+ <use x='180.138' y='191.334' xlink:href='#g3-98'/>
176
+ <use x='184.746' y='191.334' xlink:href='#g3-101'/>
177
+ <use x='188.509' y='191.334' xlink:href='#g3-110'/>
178
+ <use x='192.882' y='191.334' xlink:href='#g3-99'/>
179
+ <use x='196.646' y='191.334' xlink:href='#g3-104'/>
180
+ <use x='201.018' y='191.334' xlink:href='#g3-78'/>
181
+ </g>
182
+ <g transform='matrix(1 0 0 1 207.225 74.992)'>
183
+ <use x='168.285' y='191.334' xlink:href='#g3-120'/>
184
+ <use x='172.187' y='191.334' xlink:href='#g3-109'/>
185
+ <use x='178.912' y='191.334' xlink:href='#g3-97'/>
186
+ <use x='182.98' y='191.334' xlink:href='#g3-108'/>
187
+ <use x='185' y='191.334' xlink:href='#g3-108'/>
188
+ <use x='187.02' y='191.334' xlink:href='#g3-111'/>
189
+ <use x='191.49' y='191.334' xlink:href='#g3-99'/>
190
+ <use x='195.254' y='191.334' xlink:href='#g3-45'/>
191
+ <use x='198.076' y='191.334' xlink:href='#g3-116'/>
192
+ <use x='201.134' y='191.334' xlink:href='#g3-101'/>
193
+ <use x='204.898' y='191.334' xlink:href='#g3-115'/>
194
+ <use x='208.144' y='191.334' xlink:href='#g3-116'/>
195
+ <use x='211.202' y='191.334' xlink:href='#g3-78'/>
196
+ </g>
197
+ <g transform='matrix(1 0 0 1 263.494 74.992)'>
198
+ <use x='168.285' y='191.334' xlink:href='#g3-99'/>
199
+ <use x='172.049' y='191.334' xlink:href='#g3-97'/>
200
+ <use x='176.117' y='191.334' xlink:href='#g3-99'/>
201
+ <use x='179.88' y='191.334' xlink:href='#g3-104'/>
202
+ <use x='184.253' y='191.334' xlink:href='#g3-101'/>
203
+ <use x='188.017' y='191.334' xlink:href='#g3-45'/>
204
+ <use x='190.839' y='191.334' xlink:href='#g3-115'/>
205
+ <use x='194.086' y='191.334' xlink:href='#g3-99'/>
206
+ <use x='197.849' y='191.334' xlink:href='#g3-114'/>
207
+ <use x='200.741' y='191.334' xlink:href='#g3-97'/>
208
+ <use x='204.81' y='191.334' xlink:href='#g3-116'/>
209
+ <use x='207.868' y='191.334' xlink:href='#g3-99'/>
210
+ <use x='211.631' y='191.334' xlink:href='#g3-104'/>
211
+ <use x='216.004' y='191.334' xlink:href='#g3-78'/>
212
+ </g>
213
+ <g transform='matrix(1 0 0 1 -40.942 62.23)'>
214
+ <use x='168.285' y='191.334' xlink:href='#g2-48'/>
215
+ <use x='170.931' y='191.334' xlink:href='#g2-120'/>
216
+ </g>
217
+ <g transform='matrix(1 0 0 1 -45.059 28.677)'>
218
+ <use x='168.285' y='191.334' xlink:href='#g2-48'/>
219
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
220
+ <use x='172.401' y='191.334' xlink:href='#g2-53'/>
221
+ <use x='175.048' y='191.334' xlink:href='#g2-120'/>
222
+ </g>
223
+ <g transform='matrix(1 0 0 1 -45.059 -4.876)'>
224
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
225
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
226
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
227
+ <use x='175.048' y='191.334' xlink:href='#g2-120'/>
228
+ </g>
229
+ <g transform='matrix(1 0 0 1 -45.059 -38.43)'>
230
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
231
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
232
+ <use x='172.401' y='191.334' xlink:href='#g2-53'/>
233
+ <use x='175.048' y='191.334' xlink:href='#g2-120'/>
234
+ </g>
235
+ <g transform='matrix(1 0 0 1 -45.059 -71.983)'>
236
+ <use x='168.285' y='191.334' xlink:href='#g2-50'/>
237
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
238
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
239
+ <use x='175.048' y='191.334' xlink:href='#g2-120'/>
240
+ </g>
241
+ <g transform='matrix(1 0 0 1 -45.059 -105.536)'>
242
+ <use x='168.285' y='191.334' xlink:href='#g2-50'/>
243
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
244
+ <use x='172.401' y='191.334' xlink:href='#g2-53'/>
245
+ <use x='175.048' y='191.334' xlink:href='#g2-120'/>
246
+ </g>
247
+ <path d='M135.949 184.824H487.961' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
248
+ <path d='M140.125 251.93H143.363V184.824H140.125ZM198.797 251.93H202.035V184.824H198.797ZM257.465 251.93H260.703V184.824H257.465ZM316.133 251.93H319.371V184.824H316.133ZM374.801 251.93H378.039V184.824H374.801ZM433.473 251.93H436.711V184.824H433.473Z' fill='#933' clip-path='url(#clip4)'/>
249
+ <path d='M140.125 251.93H143.363V184.824H140.125ZM198.797 251.93H202.035V184.824H198.797ZM257.465 251.93H260.703V184.824H257.465ZM316.133 251.93H319.371V184.824H316.133ZM374.801 251.93H378.039V184.824H374.801ZM433.473 251.93H436.711V184.824H433.473Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
250
+ <path d='M141.746 184.824V184.758' fill='#933' clip-path='url(#clip4)'/>
251
+ <path d='M141.746 184.824V184.758' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
252
+ <path d='M139.754 184.758H143.738' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
253
+ <path d='M141.746 184.824V184.891' fill='#933' clip-path='url(#clip4)'/>
254
+ <path d='M141.746 184.824V184.891' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
255
+ <path d='M143.738 184.891H139.754' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
256
+ <path d='M200.414 184.824V184.621' fill='#933' clip-path='url(#clip4)'/>
257
+ <path d='M200.414 184.824V184.621' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
258
+ <path d='M198.422 184.621H202.406' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
259
+ <path d='M200.414 184.824V185.023' fill='#933' clip-path='url(#clip4)'/>
260
+ <path d='M200.414 184.824V185.023' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
261
+ <path d='M202.406 185.023H198.422' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
262
+ <path d='M259.082 184.824' fill='#933' clip-path='url(#clip4)'/>
263
+ <path d='M257.09 184.824H261.078' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
264
+ <path d='M259.082 184.824' fill='#933' clip-path='url(#clip4)'/>
265
+ <path d='M257.09 184.824H261.078' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
266
+ <path d='M317.754 184.824V178.785' fill='#933' clip-path='url(#clip4)'/>
267
+ <path d='M317.754 184.824V178.785' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
268
+ <path d='M315.762 178.785H319.746' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
269
+ <path d='M317.754 184.824V190.863' fill='#933' clip-path='url(#clip4)'/>
270
+ <path d='M317.754 184.824V190.863' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
271
+ <path d='M319.746 190.864H315.758' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
272
+ <path d='M376.422 184.824V184.086' fill='#933' clip-path='url(#clip4)'/>
273
+ <path d='M376.422 184.824V184.086' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
274
+ <path d='M374.43 184.086H378.414' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
275
+ <path d='M376.422 184.824V185.562' fill='#933' clip-path='url(#clip4)'/>
276
+ <path d='M376.422 184.824V185.562' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
277
+ <path d='M378.414 185.562H374.43' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
278
+ <path d='M435.09 184.824V181.402' fill='#933' clip-path='url(#clip4)'/>
279
+ <path d='M435.09 184.824V181.402' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
280
+ <path d='M433.098 181.403H437.082' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
281
+ <path d='M435.09 184.824V188.246' fill='#933' clip-path='url(#clip4)'/>
282
+ <path d='M435.09 184.824V188.246' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
283
+ <path d='M437.082 188.246H433.098' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
284
+ <path d='M145.356 251.93H148.594V184.488H145.356ZM204.028 251.93H207.266V184.621H204.028ZM262.695 251.93H265.934V184.824H262.695ZM321.363 251.93H324.602V182.004H321.363ZM380.031 251.93H383.27V178.648H380.031ZM438.703 251.93H441.942V187.238H438.703Z' fill='#bf8080' clip-path='url(#clip4)'/>
285
+ <path d='M145.356 251.93H148.594V184.488H145.356ZM204.028 251.93H207.266V184.621H204.028ZM262.695 251.93H265.934V184.824H262.695ZM321.363 251.93H324.602V182.004H321.363ZM380.031 251.93H383.27V178.648H380.031ZM438.703 251.93H441.942V187.238H438.703Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
286
+ <path d='M146.977 184.488V184.422' fill='#bf8080' clip-path='url(#clip4)'/>
287
+ <path d='M146.977 184.488V184.422' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
288
+ <path d='M144.984 184.421H148.968' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
289
+ <path d='M146.977 184.488V184.555' fill='#bf8080' clip-path='url(#clip4)'/>
290
+ <path d='M146.977 184.488V184.555' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
291
+ <path d='M148.968 184.555H144.984' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
292
+ <path d='M205.645 184.621V184.555' fill='#bf8080' clip-path='url(#clip4)'/>
293
+ <path d='M205.645 184.621V184.555' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
294
+ <path d='M203.652 184.555H207.636' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
295
+ <path d='M205.645 184.621V184.687' fill='#bf8080' clip-path='url(#clip4)'/>
296
+ <path d='M205.645 184.621V184.687' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
297
+ <path d='M207.636 184.688H203.652' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
298
+ <path d='M264.313 184.824' fill='#bf8080' clip-path='url(#clip4)'/>
299
+ <path d='M262.32 184.824H266.308' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
300
+ <path d='M264.313 184.824' fill='#bf8080' clip-path='url(#clip4)'/>
301
+ <path d='M262.32 184.824H266.308' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
302
+ <path d='M322.984 182.004V177.441' fill='#bf8080' clip-path='url(#clip4)'/>
303
+ <path d='M322.984 182.004V177.441' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
304
+ <path d='M320.992 177.441H324.976' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
305
+ <path d='M322.984 182.004V186.566' fill='#bf8080' clip-path='url(#clip4)'/>
306
+ <path d='M322.984 182.004V186.566' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
307
+ <path d='M324.976 186.567H320.988' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
308
+ <path d='M381.652 178.648V176.973' fill='#bf8080' clip-path='url(#clip4)'/>
309
+ <path d='M381.652 178.648V176.973' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
310
+ <path d='M379.66 176.973H383.644' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
311
+ <path d='M381.652 178.648V180.328' fill='#bf8080' clip-path='url(#clip4)'/>
312
+ <path d='M381.652 178.648V180.328' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
313
+ <path d='M383.644 180.328H379.66' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
314
+ <path d='M440.32 187.238V181.402' fill='#bf8080' clip-path='url(#clip4)'/>
315
+ <path d='M440.32 187.238V181.402' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
316
+ <path d='M438.328 181.403H442.312' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
317
+ <path d='M440.32 187.238V193.078' fill='#bf8080' clip-path='url(#clip4)'/>
318
+ <path d='M440.32 187.238V193.078' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
319
+ <path d='M442.312 193.078H438.328' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
320
+ <path d='M150.586 251.93H153.824V184.621H150.586ZM209.258 251.93H212.496V171.871H209.258ZM267.926 251.93H271.164V137.312H267.926ZM326.594 251.93H329.832V84.164H326.594ZM385.262 251.93H388.5V84.164H385.262ZM443.934 251.93H447.172V84.164H443.934Z' fill='#8080bf' clip-path='url(#clip4)'/>
321
+ <path d='M150.586 251.93H153.824V184.621H150.586ZM209.258 251.93H212.496V171.871H209.258ZM267.926 251.93H271.164V137.312H267.926ZM326.594 251.93H329.832V84.164H326.594ZM385.262 251.93H388.5V84.164H385.262ZM443.934 251.93H447.172V84.164H443.934Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
322
+ <path d='M152.207 184.621' fill='#8080bf' clip-path='url(#clip4)'/>
323
+ <path d='M150.215 184.621H154.199' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
324
+ <path d='M152.207 184.621' fill='#8080bf' clip-path='url(#clip4)'/>
325
+ <path d='M150.215 184.621H154.199' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
326
+ <path d='M210.875 171.871V170.461' fill='#8080bf' clip-path='url(#clip4)'/>
327
+ <path d='M210.875 171.871V170.461' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
328
+ <path d='M208.883 170.461H212.867' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
329
+ <path d='M210.875 171.871V173.281' fill='#8080bf' clip-path='url(#clip4)'/>
330
+ <path d='M210.875 171.871V173.281' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
331
+ <path d='M212.868 173.281H208.883' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
332
+ <path d='M269.543 137.312V129.394' fill='#8080bf' clip-path='url(#clip4)'/>
333
+ <path d='M269.543 137.312V129.394' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
334
+ <path d='M267.551 129.394H271.539' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
335
+ <path d='M269.543 137.312V145.23' fill='#8080bf' clip-path='url(#clip4)'/>
336
+ <path d='M269.543 137.312V145.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
337
+ <path d='M271.535 145.23H267.551' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
338
+ <path d='M328.215 84.164' fill='#8080bf' clip-path='url(#clip4)'/>
339
+ <path d='M326.223 84.164H330.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
340
+ <path d='M328.215 84.164' fill='#8080bf' clip-path='url(#clip4)'/>
341
+ <path d='M326.223 84.164H330.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
342
+ <path d='M386.883 84.164' fill='#8080bf' clip-path='url(#clip4)'/>
343
+ <path d='M384.891 84.164H388.875' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
344
+ <path d='M386.883 84.164' fill='#8080bf' clip-path='url(#clip4)'/>
345
+ <path d='M384.891 84.164H388.875' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
346
+ <path d='M445.551 84.164' fill='#8080bf' clip-path='url(#clip4)'/>
347
+ <path d='M443.559 84.164H447.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
348
+ <path d='M445.551 84.164' fill='#8080bf' clip-path='url(#clip4)'/>
349
+ <path d='M443.559 84.164H447.543' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
350
+ <path d='M155.817 251.93H159.055V179.926H155.817ZM214.488 251.93H217.727V180.461H214.488ZM273.156 251.93H276.395V131.676H273.156ZM331.824 251.93H335.063V126.105H331.824ZM390.492 251.93H393.731V84.164H390.492ZM449.164 251.93H452.402V84.164H449.164Z' fill='#ffb733' clip-path='url(#clip4)'/>
351
+ <path d='M155.817 251.93H159.055V179.926H155.817ZM214.488 251.93H217.727V180.461H214.488ZM273.156 251.93H276.395V131.676H273.156ZM331.824 251.93H335.063V126.105H331.824ZM390.492 251.93H393.731V84.164H390.492ZM449.164 251.93H452.402V84.164H449.164Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
352
+ <path d='M157.438 179.926' fill='#ffb733' clip-path='url(#clip4)'/>
353
+ <path d='M155.445 179.925H159.429' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
354
+ <path d='M157.438 179.926' fill='#ffb733' clip-path='url(#clip4)'/>
355
+ <path d='M155.445 179.925H159.429' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
356
+ <path d='M216.106 180.461' fill='#ffb733' clip-path='url(#clip4)'/>
357
+ <path d='M214.113 180.461H218.097' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
358
+ <path d='M216.106 180.461' fill='#ffb733' clip-path='url(#clip4)'/>
359
+ <path d='M214.113 180.461H218.097' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
360
+ <path d='M274.774 131.676V127.715' fill='#ffb733' clip-path='url(#clip4)'/>
361
+ <path d='M274.774 131.676V127.715' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
362
+ <path d='M272.781 127.715H276.769' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
363
+ <path d='M274.774 131.676V135.633' fill='#ffb733' clip-path='url(#clip4)'/>
364
+ <path d='M274.774 131.676V135.633' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
365
+ <path d='M276.765 135.633H272.781' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
366
+ <path d='M333.445 126.105V120.066' fill='#ffb733' clip-path='url(#clip4)'/>
367
+ <path d='M333.445 126.105V120.066' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
368
+ <path d='M331.453 120.067H335.437' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
369
+ <path d='M333.445 126.105V132.144' fill='#ffb733' clip-path='url(#clip4)'/>
370
+ <path d='M333.445 126.105V132.144' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
371
+ <path d='M335.437 132.145H331.449' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
372
+ <path d='M392.113 84.164' fill='#ffb733' clip-path='url(#clip4)'/>
373
+ <path d='M390.121 84.164H394.105' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
374
+ <path d='M392.113 84.164' fill='#ffb733' clip-path='url(#clip4)'/>
375
+ <path d='M390.121 84.164H394.105' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
376
+ <path d='M450.781 84.164' fill='#ffb733' clip-path='url(#clip4)'/>
377
+ <path d='M448.789 84.164H452.773' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
378
+ <path d='M450.781 84.164' fill='#ffb733' clip-path='url(#clip4)'/>
379
+ <path d='M448.789 84.164H452.773' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
380
+ <path d='M161.047 251.93H164.285V162.141H161.047ZM219.719 251.93H222.957V163.418H219.719ZM278.387 251.93H281.625V84.164H278.387ZM337.055 251.93H340.293V112.148H337.055ZM395.723 251.93H398.961V86.848H395.723ZM454.395 251.93H457.633V184.824H454.395Z' fill='#bf80bf' clip-path='url(#clip4)'/>
381
+ <path d='M161.047 251.93H164.285V162.141H161.047ZM219.719 251.93H222.957V163.418H219.719ZM278.387 251.93H281.625V84.164H278.387ZM337.055 251.93H340.293V112.148H337.055ZM395.723 251.93H398.961V86.848H395.723ZM454.395 251.93H457.633V184.824H454.395Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
382
+ <path d='M162.668 162.141V162.074' fill='#bf80bf' clip-path='url(#clip4)'/>
383
+ <path d='M162.668 162.141V162.074' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
384
+ <path d='M160.676 162.074H164.66' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
385
+ <path d='M162.668 162.141V162.207' fill='#bf80bf' clip-path='url(#clip4)'/>
386
+ <path d='M162.668 162.141V162.207' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
387
+ <path d='M164.661 162.207H160.676' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
388
+ <path d='M221.336 163.418V163.348' fill='#bf80bf' clip-path='url(#clip4)'/>
389
+ <path d='M221.336 163.418V163.348' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
390
+ <path d='M219.344 163.348H223.328' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
391
+ <path d='M221.336 163.418V163.484' fill='#bf80bf' clip-path='url(#clip4)'/>
392
+ <path d='M221.336 163.418V163.484' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
393
+ <path d='M223.329 163.484H219.344' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
394
+ <path d='M280.004 84.164' fill='#bf80bf' clip-path='url(#clip4)'/>
395
+ <path d='M278.012 84.164H282' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
396
+ <path d='M280.004 84.164' fill='#bf80bf' clip-path='url(#clip4)'/>
397
+ <path d='M278.012 84.164H282' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
398
+ <path d='M338.676 112.148' fill='#bf80bf' clip-path='url(#clip4)'/>
399
+ <path d='M336.684 112.148H340.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
400
+ <path d='M338.676 112.148' fill='#bf80bf' clip-path='url(#clip4)'/>
401
+ <path d='M336.684 112.148H340.668' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
402
+ <path d='M397.344 86.848V86.648' fill='#bf80bf' clip-path='url(#clip4)'/>
403
+ <path d='M397.344 86.848V86.648' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
404
+ <path d='M395.352 86.648H399.336' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
405
+ <path d='M397.344 86.848V87.051' fill='#bf80bf' clip-path='url(#clip4)'/>
406
+ <path d='M397.344 86.848V87.051' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
407
+ <path d='M399.336 87.051H395.352' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
408
+ <path d='M456.012 184.824V175.832' fill='#bf80bf' clip-path='url(#clip4)'/>
409
+ <path d='M456.012 184.824V175.832' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
410
+ <path d='M454.02 175.832H458.004' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
411
+ <path d='M456.012 184.824V193.816' fill='#bf80bf' clip-path='url(#clip4)'/>
412
+ <path d='M456.012 184.824V193.816' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
413
+ <path d='M458.004 193.816H454.02' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
414
+ <path d='M166.278 251.93H169.516V171.937H166.278ZM224.949 251.93H228.188V181.066H224.949ZM283.617 251.93H286.856V151.269H283.617ZM342.285 251.93H345.524V162.477H342.285ZM400.953 251.93H404.192V192.34H400.953ZM459.625 251.93H462.863V189.586H459.625Z' fill='#c96' clip-path='url(#clip4)'/>
415
+ <path d='M166.278 251.93H169.516V171.937H166.278ZM224.949 251.93H228.188V181.066H224.949ZM283.617 251.93H286.856V151.269H283.617ZM342.285 251.93H345.524V162.477H342.285ZM400.953 251.93H404.192V192.34H400.953ZM459.625 251.93H462.863V189.586H459.625Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
416
+ <path d='M167.899 171.937' fill='#c96' clip-path='url(#clip4)'/>
417
+ <path d='M165.906 171.938H169.89' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
418
+ <path d='M167.899 171.937' fill='#c96' clip-path='url(#clip4)'/>
419
+ <path d='M165.906 171.938H169.89' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
420
+ <path d='M226.567 181.066V180.996' fill='#c96' clip-path='url(#clip4)'/>
421
+ <path d='M226.567 181.066V180.996' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
422
+ <path d='M224.574 180.996H228.558' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
423
+ <path d='M226.567 181.066V181.133' fill='#c96' clip-path='url(#clip4)'/>
424
+ <path d='M226.567 181.066V181.133' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
425
+ <path d='M228.559 181.133H224.574' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
426
+ <path d='M285.234 151.269' fill='#c96' clip-path='url(#clip4)'/>
427
+ <path d='M283.242 151.27H287.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
428
+ <path d='M285.234 151.269' fill='#c96' clip-path='url(#clip4)'/>
429
+ <path d='M283.242 151.27H287.23' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
430
+ <path d='M343.906 162.477V160.195' fill='#c96' clip-path='url(#clip4)'/>
431
+ <path d='M343.906 162.477V160.195' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
432
+ <path d='M341.914 160.195H345.898' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
433
+ <path d='M343.906 162.477V164.758' fill='#c96' clip-path='url(#clip4)'/>
434
+ <path d='M343.906 162.477V164.758' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
435
+ <path d='M345.898 164.758H341.91' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
436
+ <path d='M402.574 192.34V191.266' fill='#c96' clip-path='url(#clip4)'/>
437
+ <path d='M402.574 192.34V191.266' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
438
+ <path d='M400.582 191.265H404.566' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
439
+ <path d='M402.574 192.34V193.414' fill='#c96' clip-path='url(#clip4)'/>
440
+ <path d='M402.574 192.34V193.414' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
441
+ <path d='M404.566 193.414H400.582' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
442
+ <path d='M461.242 189.586V186.164' fill='#c96' clip-path='url(#clip4)'/>
443
+ <path d='M461.242 189.586V186.164' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
444
+ <path d='M459.25 186.164H463.234' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
445
+ <path d='M461.242 189.586V193.012' fill='#c96' clip-path='url(#clip4)'/>
446
+ <path d='M461.242 189.586V193.012' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
447
+ <path d='M463.234 193.012H459.25' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
448
+ <path d='M171.508 251.93H174.746V180.93H171.508ZM230.18 251.93H233.414V179.051H230.18ZM288.848 251.93H292.086V84.164H288.848ZM347.516 251.93H350.754V84.164H347.516ZM406.184 251.93H409.422V84.164H406.184ZM464.856 251.93H468.094V84.164H464.856Z' fill='#80bf80' clip-path='url(#clip4)'/>
449
+ <path d='M171.508 251.93H174.746V180.93H171.508ZM230.18 251.93H233.414V179.051H230.18ZM288.848 251.93H292.086V84.164H288.848ZM347.516 251.93H350.754V84.164H347.516ZM406.184 251.93H409.422V84.164H406.184ZM464.856 251.93H468.094V84.164H464.856Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
450
+ <path d='M173.129 180.93' fill='#80bf80' clip-path='url(#clip4)'/>
451
+ <path d='M171.137 180.93H175.121' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
452
+ <path d='M173.129 180.93' fill='#80bf80' clip-path='url(#clip4)'/>
453
+ <path d='M171.137 180.93H175.121' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
454
+ <path d='M231.797 179.051V178.852' fill='#80bf80' clip-path='url(#clip4)'/>
455
+ <path d='M231.797 179.051V178.852' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
456
+ <path d='M229.805 178.852H233.789' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
457
+ <path d='M231.797 179.051V179.254' fill='#80bf80' clip-path='url(#clip4)'/>
458
+ <path d='M231.797 179.051V179.254' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
459
+ <path d='M233.79 179.254H229.805' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
460
+ <path d='M290.465 84.164' fill='#80bf80' clip-path='url(#clip4)'/>
461
+ <path d='M288.473 84.164H292.461' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
462
+ <path d='M290.465 84.164' fill='#80bf80' clip-path='url(#clip4)'/>
463
+ <path d='M288.473 84.164H292.461' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
464
+ <path d='M349.137 84.164' fill='#80bf80' clip-path='url(#clip4)'/>
465
+ <path d='M347.145 84.164H351.129' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
466
+ <path d='M349.137 84.164' fill='#80bf80' clip-path='url(#clip4)'/>
467
+ <path d='M347.145 84.164H351.129' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
468
+ <path d='M407.805 84.164' fill='#80bf80' clip-path='url(#clip4)'/>
469
+ <path d='M405.813 84.164H409.797' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
470
+ <path d='M407.805 84.164' fill='#80bf80' clip-path='url(#clip4)'/>
471
+ <path d='M405.813 84.164H409.797' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
472
+ <path d='M466.473 84.164' fill='#80bf80' clip-path='url(#clip4)'/>
473
+ <path d='M464.481 84.164H468.465' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
474
+ <path d='M466.473 84.164' fill='#80bf80' clip-path='url(#clip4)'/>
475
+ <path d='M464.481 84.164H468.465' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
476
+ <path d='M176.738 251.93H179.977V154.828H176.738ZM235.41 251.93H238.645V176.168H235.41ZM294.078 251.93H297.317V84.164H294.078ZM352.746 251.93H355.984V84.164H352.746ZM411.414 251.93H414.652V84.164H411.414ZM470.086 251.93H473.324V189.586H470.086Z' fill='#bfbf80' clip-path='url(#clip4)'/>
477
+ <path d='M176.738 251.93H179.977V154.828H176.738ZM235.41 251.93H238.645V176.168H235.41ZM294.078 251.93H297.317V84.164H294.078ZM352.746 251.93H355.984V84.164H352.746ZM411.414 251.93H414.652V84.164H411.414ZM470.086 251.93H473.324V189.586H470.086Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
478
+ <path d='M178.36 154.828V148.922' fill='#bfbf80' clip-path='url(#clip4)'/>
479
+ <path d='M178.36 154.828V148.922' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
480
+ <path d='M176.367 148.922H180.351' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
481
+ <path d='M178.36 154.828V160.73' fill='#bfbf80' clip-path='url(#clip4)'/>
482
+ <path d='M178.36 154.828V160.73' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
483
+ <path d='M180.352 160.731H176.367' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
484
+ <path d='M237.027 176.168V175.832' fill='#bfbf80' clip-path='url(#clip4)'/>
485
+ <path d='M237.027 176.168V175.832' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
486
+ <path d='M235.035 175.832H239.019' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
487
+ <path d='M237.027 176.168V176.5' fill='#bfbf80' clip-path='url(#clip4)'/>
488
+ <path d='M237.027 176.168V176.5' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
489
+ <path d='M239.02 176.5H235.035' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
490
+ <path d='M295.695 84.164' fill='#bfbf80' clip-path='url(#clip4)'/>
491
+ <path d='M293.703 84.164H297.691' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
492
+ <path d='M295.695 84.164' fill='#bfbf80' clip-path='url(#clip4)'/>
493
+ <path d='M293.703 84.164H297.691' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
494
+ <path d='M354.367 84.164' fill='#bfbf80' clip-path='url(#clip4)'/>
495
+ <path d='M352.375 84.164H356.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
496
+ <path d='M354.367 84.164' fill='#bfbf80' clip-path='url(#clip4)'/>
497
+ <path d='M352.375 84.164H356.359' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
498
+ <path d='M413.035 84.164' fill='#bfbf80' clip-path='url(#clip4)'/>
499
+ <path d='M411.043 84.164H415.027' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
500
+ <path d='M413.035 84.164' fill='#bfbf80' clip-path='url(#clip4)'/>
501
+ <path d='M411.043 84.164H415.027' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
502
+ <path d='M471.703 189.586V186.164' fill='#bfbf80' clip-path='url(#clip4)'/>
503
+ <path d='M471.703 189.586V186.164' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
504
+ <path d='M469.711 186.164H473.695' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
505
+ <path d='M471.703 189.586V193.012' fill='#bfbf80' clip-path='url(#clip4)'/>
506
+ <path d='M471.703 189.586V193.012' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
507
+ <path d='M473.695 193.012H469.711' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
508
+ <path d='M181.969 251.93H185.207V167.914H181.969ZM240.641 251.93H243.875V168.984H240.641ZM299.309 251.93H302.547V84.164H299.309ZM357.977 251.93H361.215V84.164H357.977ZM416.645 251.93H419.883V84.164H416.645ZM475.317 251.93H478.555V84.164H475.317Z' fill='#399' clip-path='url(#clip4)'/>
509
+ <path d='M181.969 251.93H185.207V167.914H181.969ZM240.641 251.93H243.875V168.984H240.641ZM299.309 251.93H302.547V84.164H299.309ZM357.977 251.93H361.215V84.164H357.977ZM416.645 251.93H419.883V84.164H416.645ZM475.317 251.93H478.555V84.164H475.317Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
510
+ <path d='M183.59 167.914V167.844' fill='#399' clip-path='url(#clip4)'/>
511
+ <path d='M183.59 167.914V167.844' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
512
+ <path d='M181.598 167.844H185.583' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
513
+ <path d='M183.59 167.914V167.98' fill='#399' clip-path='url(#clip4)'/>
514
+ <path d='M183.59 167.914V167.98' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
515
+ <path d='M185.582 167.98H181.597' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
516
+ <path d='M242.258 168.984V168.918' fill='#399' clip-path='url(#clip4)'/>
517
+ <path d='M242.258 168.984V168.918' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
518
+ <path d='M240.266 168.918H244.25' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
519
+ <path d='M242.258 168.984V169.055' fill='#399' clip-path='url(#clip4)'/>
520
+ <path d='M242.258 168.984V169.055' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
521
+ <path d='M244.25 169.055H240.265' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
522
+ <path d='M300.926 84.164' fill='#399' clip-path='url(#clip4)'/>
523
+ <path d='M298.933 84.164H302.921' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
524
+ <path d='M300.926 84.164' fill='#399' clip-path='url(#clip4)'/>
525
+ <path d='M298.933 84.164H302.921' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
526
+ <path d='M359.598 84.164' fill='#399' clip-path='url(#clip4)'/>
527
+ <path d='M357.606 84.164H361.59' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
528
+ <path d='M359.598 84.164' fill='#399' clip-path='url(#clip4)'/>
529
+ <path d='M357.606 84.164H361.59' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
530
+ <path d='M418.266 84.164' fill='#399' clip-path='url(#clip4)'/>
531
+ <path d='M416.274 84.164H420.258' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
532
+ <path d='M418.266 84.164' fill='#399' clip-path='url(#clip4)'/>
533
+ <path d='M416.274 84.164H420.258' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
534
+ <path d='M476.934 84.164' fill='#399' clip-path='url(#clip4)'/>
535
+ <path d='M474.942 84.164H478.926' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
536
+ <path d='M476.934 84.164' fill='#399' clip-path='url(#clip4)'/>
537
+ <path d='M474.942 84.164H478.926' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
538
+ <path d='M187.199 251.93H190.438V175.562H187.199ZM245.871 251.93H249.106V176.168H245.871ZM304.539 251.93H307.777V92.551H304.539ZM363.207 251.93H366.445V126.105H363.207ZM421.875 251.93H425.113V109.461H421.875ZM480.547 251.93H483.785V175.227H480.547Z' fill='#d9b3b3' clip-path='url(#clip4)'/>
539
+ <path d='M187.199 251.93H190.438V175.562H187.199ZM245.871 251.93H249.106V176.168H245.871ZM304.539 251.93H307.777V92.551H304.539ZM363.207 251.93H366.445V126.105H363.207ZM421.875 251.93H425.113V109.461H421.875ZM480.547 251.93H483.785V175.227H480.547Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
540
+ <path d='M188.82 175.562V175.43' fill='#d9b3b3' clip-path='url(#clip4)'/>
541
+ <path d='M188.82 175.562V175.43' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
542
+ <path d='M186.828 175.43H190.813' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
543
+ <path d='M188.82 175.562V175.695' fill='#d9b3b3' clip-path='url(#clip4)'/>
544
+ <path d='M188.82 175.562V175.695' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
545
+ <path d='M190.813 175.696H186.828' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
546
+ <path d='M247.488 176.168V175.965' fill='#d9b3b3' clip-path='url(#clip4)'/>
547
+ <path d='M247.488 176.168V175.965' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
548
+ <path d='M245.496 175.965H249.481' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
549
+ <path d='M247.488 176.168V176.367' fill='#d9b3b3' clip-path='url(#clip4)'/>
550
+ <path d='M247.488 176.168V176.367' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
551
+ <path d='M249.481 176.368H245.496' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
552
+ <path d='M306.156 92.551V74.433' fill='#d9b3b3' clip-path='url(#clip4)'/>
553
+ <path d='M306.156 92.551V74.433' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
554
+ <path d='M304.164 74.434H308.152' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
555
+ <path d='M306.156 92.551V110.672' fill='#d9b3b3' clip-path='url(#clip4)'/>
556
+ <path d='M306.156 92.551V110.672' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
557
+ <path d='M308.149 110.672H304.164' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
558
+ <path d='M364.828 126.105V123.824' fill='#d9b3b3' clip-path='url(#clip4)'/>
559
+ <path d='M364.828 126.105V123.824' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
560
+ <path d='M362.836 123.825H366.82' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
561
+ <path d='M364.828 126.105V128.387' fill='#d9b3b3' clip-path='url(#clip4)'/>
562
+ <path d='M364.828 126.105V128.387' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
563
+ <path d='M366.82 128.387H362.832' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
564
+ <path d='M423.496 109.461V109.262' fill='#d9b3b3' clip-path='url(#clip4)'/>
565
+ <path d='M423.496 109.461V109.262' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
566
+ <path d='M421.504 109.262H425.488' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
567
+ <path d='M423.496 109.461V109.664' fill='#d9b3b3' clip-path='url(#clip4)'/>
568
+ <path d='M423.496 109.461V109.664' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
569
+ <path d='M425.488 109.664H421.504' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
570
+ <path d='M482.164 175.227V171.805' fill='#d9b3b3' clip-path='url(#clip4)'/>
571
+ <path d='M482.164 175.227V171.805' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
572
+ <path d='M480.172 171.804H484.156' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
573
+ <path d='M482.164 175.227V178.648' fill='#d9b3b3' clip-path='url(#clip4)'/>
574
+ <path d='M482.164 175.227V178.648' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
575
+ <path d='M484.156 178.648H480.172' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
576
+ <path d='M369.781 314.227H487.762V278.973H369.781Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10' clip-path='url(#clip4)'/>
577
+ <g transform='matrix(1 0 0 1 204.818 118.327)'>
578
+ <use x='168.285' y='167.424' xlink:href='#g2-99'/>
579
+ <use x='170.637' y='167.424' xlink:href='#g2-53'/>
580
+ <use x='173.284' y='167.424' xlink:href='#g2-45'/>
581
+ <use x='175.048' y='167.424' xlink:href='#g2-49'/>
582
+ <use x='177.694' y='167.424' xlink:href='#g2-56'/>
583
+ <use x='180.341' y='167.424' xlink:href='#g2-120'/>
584
+ <use x='182.779' y='167.424' xlink:href='#g2-108'/>
585
+ <use x='184.042' y='167.424' xlink:href='#g2-97'/>
586
+ <use x='186.438' y='167.424' xlink:href='#g2-114'/>
587
+ <use x='188.245' y='167.424' xlink:href='#g2-103'/>
588
+ <use x='190.891' y='167.424' xlink:href='#g2-101'/>
589
+ <use x='193.244' y='167.424' xlink:href='#g2-44'/>
590
+ <use x='196.478' y='167.424' xlink:href='#g2-49'/>
591
+ <use x='199.124' y='167.424' xlink:href='#g2-52'/>
592
+ <use x='201.771' y='167.424' xlink:href='#g2-52'/>
593
+ <use x='204.417' y='167.424' xlink:href='#g2-71'/>
594
+ <use x='207.946' y='167.424' xlink:href='#g2-98'/>
595
+ <use x='168.285' y='173.401' xlink:href='#g2-50'/>
596
+ <use x='170.931' y='173.401' xlink:href='#g4-2'/>
597
+ <use x='178.092' y='173.401' xlink:href='#g2-49'/>
598
+ <use x='180.738' y='173.401' xlink:href='#g2-56'/>
599
+ <use x='183.385' y='173.401' xlink:href='#g2-45'/>
600
+ <use x='185.149' y='173.401' xlink:href='#g2-99'/>
601
+ <use x='187.501' y='173.401' xlink:href='#g2-111'/>
602
+ <use x='190.001' y='173.401' xlink:href='#g2-114'/>
603
+ <use x='191.808' y='173.401' xlink:href='#g2-101'/>
604
+ <use x='195.925' y='173.401' xlink:href='#g2-73'/>
605
+ <use x='197.395' y='173.401' xlink:href='#g2-110'/>
606
+ <use x='200.128' y='173.401' xlink:href='#g2-116'/>
607
+ <use x='202.039' y='173.401' xlink:href='#g2-101'/>
608
+ <use x='204.391' y='173.401' xlink:href='#g2-108'/>
609
+ <use x='207.418' y='173.401' xlink:href='#g2-88'/>
610
+ <use x='210.947' y='173.401' xlink:href='#g2-101'/>
611
+ <use x='213.299' y='173.401' xlink:href='#g2-111'/>
612
+ <use x='215.945' y='173.401' xlink:href='#g2-110'/>
613
+ <use x='220.442' y='173.401' xlink:href='#g2-64'/>
614
+ <use x='223.971' y='173.401' xlink:href='#g2-51'/>
615
+ <use x='226.617' y='173.401' xlink:href='#g2-71'/>
616
+ <use x='230.146' y='173.401' xlink:href='#g2-104'/>
617
+ <use x='232.879' y='173.401' xlink:href='#g2-122'/>
618
+ <use x='168.285' y='179.379' xlink:href='#g2-85'/>
619
+ <use x='171.917' y='179.379' xlink:href='#g2-98'/>
620
+ <use x='174.65' y='179.379' xlink:href='#g2-117'/>
621
+ <use x='177.383' y='179.379' xlink:href='#g2-110'/>
622
+ <use x='180.116' y='179.379' xlink:href='#g2-116'/>
623
+ <use x='182.027' y='179.379' xlink:href='#g2-117'/>
624
+ <use x='186.524' y='179.379' xlink:href='#g2-50'/>
625
+ <use x='189.17' y='179.379' xlink:href='#g2-48'/>
626
+ <use x='191.817' y='179.379' xlink:href='#g2-46'/>
627
+ <use x='193.287' y='179.379' xlink:href='#g2-48'/>
628
+ <use x='195.933' y='179.379' xlink:href='#g2-52'/>
629
+ <use x='198.58' y='179.379' xlink:href='#g2-44'/>
630
+ <use x='201.814' y='179.379' xlink:href='#g2-71'/>
631
+ <use x='205.343' y='179.379' xlink:href='#g2-67'/>
632
+ <use x='208.724' y='179.379' xlink:href='#g2-67'/>
633
+ <use x='213.87' y='179.379' xlink:href='#g2-57'/>
634
+ <use x='216.516' y='179.379' xlink:href='#g2-46'/>
635
+ <use x='217.986' y='179.379' xlink:href='#g2-51'/>
636
+ <use x='220.633' y='179.379' xlink:href='#g2-46'/>
637
+ <use x='222.103' y='179.379' xlink:href='#g2-48'/>
638
+ <use x='224.749' y='179.379' xlink:href='#g2-44'/>
639
+ <use x='227.984' y='179.379' xlink:href='#g2-103'/>
640
+ <use x='230.63' y='179.379' xlink:href='#g2-108'/>
641
+ <use x='231.893' y='179.379' xlink:href='#g2-105'/>
642
+ <use x='233.155' y='179.379' xlink:href='#g2-98'/>
643
+ <use x='236.035' y='179.379' xlink:href='#g2-99'/>
644
+ <use x='240.152' y='179.379' xlink:href='#g2-50'/>
645
+ <use x='242.798' y='179.379' xlink:href='#g2-46'/>
646
+ <use x='244.268' y='179.379' xlink:href='#g2-51'/>
647
+ <use x='246.915' y='179.379' xlink:href='#g2-49'/>
648
+ <use x='249.561' y='179.379' xlink:href='#g2-44'/>
649
+ <use x='252.796' y='179.379' xlink:href='#g2-99'/>
650
+ <use x='255.148' y='179.379' xlink:href='#g2-108'/>
651
+ <use x='256.41' y='179.379' xlink:href='#g2-97'/>
652
+ <use x='258.953' y='179.379' xlink:href='#g2-110'/>
653
+ <use x='261.686' y='179.379' xlink:href='#g2-103'/>
654
+ <use x='266.097' y='179.379' xlink:href='#g2-49'/>
655
+ <use x='268.743' y='179.379' xlink:href='#g2-48'/>
656
+ <use x='271.389' y='179.379' xlink:href='#g2-46'/>
657
+ <use x='272.859' y='179.379' xlink:href='#g2-48'/>
658
+ <use x='275.506' y='179.379' xlink:href='#g2-46'/>
659
+ <use x='276.976' y='179.379' xlink:href='#g2-48'/>
660
+ <use x='168.285' y='185.357' xlink:href='#g2-55'/>
661
+ <use x='170.931' y='185.357' xlink:href='#g2-50'/>
662
+ <use x='175.342' y='185.357' xlink:href='#g2-108'/>
663
+ <use x='176.604' y='185.357' xlink:href='#g2-111'/>
664
+ <use x='179.251' y='185.357' xlink:href='#g2-103'/>
665
+ <use x='181.897' y='185.357' xlink:href='#g2-105'/>
666
+ <use x='183.16' y='185.357' xlink:href='#g2-99'/>
667
+ <use x='185.512' y='185.357' xlink:href='#g2-97'/>
668
+ <use x='188.055' y='185.357' xlink:href='#g2-108'/>
669
+ <use x='191.082' y='185.357' xlink:href='#g2-99'/>
670
+ <use x='193.434' y='185.357' xlink:href='#g2-111'/>
671
+ <use x='195.933' y='185.357' xlink:href='#g2-114'/>
672
+ <use x='197.741' y='185.357' xlink:href='#g2-101'/>
673
+ <use x='200.093' y='185.357' xlink:href='#g2-115'/>
674
+ <use x='203.886' y='185.357' xlink:href='#g2-111'/>
675
+ <use x='206.533' y='185.357' xlink:href='#g2-110'/>
676
+ <use x='211.03' y='185.357' xlink:href='#g2-50'/>
677
+ <use x='215.44' y='185.357' xlink:href='#g2-110'/>
678
+ <use x='218.173' y='185.357' xlink:href='#g2-117'/>
679
+ <use x='220.906' y='185.357' xlink:href='#g2-109'/>
680
+ <use x='225.109' y='185.357' xlink:href='#g2-97'/>
681
+ <use x='229.416' y='185.357' xlink:href='#g2-110'/>
682
+ <use x='232.149' y='185.357' xlink:href='#g2-111'/>
683
+ <use x='234.942' y='185.357' xlink:href='#g2-100'/>
684
+ <use x='237.675' y='185.357' xlink:href='#g2-101'/>
685
+ <use x='240.027' y='185.357' xlink:href='#g2-115'/>
686
+ <use x='168.285' y='191.334' xlink:href='#g2-50'/>
687
+ <use x='170.931' y='191.334' xlink:href='#g2-48'/>
688
+ <use x='173.578' y='191.334' xlink:href='#g2-50'/>
689
+ <use x='176.224' y='191.334' xlink:href='#g2-49'/>
690
+ <use x='178.87' y='191.334' xlink:href='#g2-45'/>
691
+ <use x='180.635' y='191.334' xlink:href='#g2-48'/>
692
+ <use x='183.281' y='191.334' xlink:href='#g2-49'/>
693
+ <use x='185.927' y='191.334' xlink:href='#g2-45'/>
694
+ <use x='187.692' y='191.334' xlink:href='#g2-51'/>
695
+ <use x='190.338' y='191.334' xlink:href='#g2-48'/>
696
+ <use x='192.984' y='191.334' xlink:href='#g2-41'/>
697
+ </g>
698
+ <g transform='matrix(0 -1 1 0 -47.954 346.904)'>
699
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
700
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
701
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
702
+ <use x='175.048' y='191.334' xlink:href='#g2-48'/>
703
+ </g>
704
+ <g transform='matrix(0 -1 1 0 10.715 346.904)'>
705
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
706
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
707
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
708
+ <use x='175.048' y='191.334' xlink:href='#g2-48'/>
709
+ </g>
710
+ <g transform='matrix(0 -1 1 0 69.384 346.904)'>
711
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
712
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
713
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
714
+ <use x='175.048' y='191.334' xlink:href='#g2-48'/>
715
+ </g>
716
+ <g transform='matrix(0 -1 1 0 128.053 346.904)'>
717
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
718
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
719
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
720
+ <use x='175.048' y='191.334' xlink:href='#g2-48'/>
721
+ </g>
722
+ <g transform='matrix(0 -1 1 0 186.722 346.904)'>
723
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
724
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
725
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
726
+ <use x='175.048' y='191.334' xlink:href='#g2-48'/>
727
+ </g>
728
+ <g transform='matrix(0 -1 1 0 245.391 346.904)'>
729
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
730
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
731
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
732
+ <use x='175.048' y='191.334' xlink:href='#g2-48'/>
733
+ </g>
734
+ <g transform='matrix(0 -1 1 0 -42.724 346.568)'>
735
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
736
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
737
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
738
+ <use x='175.048' y='191.334' xlink:href='#g2-49'/>
739
+ </g>
740
+ <g transform='matrix(0 -1 1 0 15.945 346.703)'>
741
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
742
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
743
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
744
+ <use x='175.048' y='191.334' xlink:href='#g2-48'/>
745
+ </g>
746
+ <g transform='matrix(0 -1 1 0 74.614 346.904)'>
747
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
748
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
749
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
750
+ <use x='175.048' y='191.334' xlink:href='#g2-48'/>
751
+ </g>
752
+ <g transform='matrix(0 -1 1 0 133.283 344.086)'>
753
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
754
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
755
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
756
+ <use x='175.048' y='191.334' xlink:href='#g2-52'/>
757
+ </g>
758
+ <g transform='matrix(0 -1 1 0 191.952 340.73)'>
759
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
760
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
761
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
762
+ <use x='175.048' y='191.334' xlink:href='#g2-57'/>
763
+ </g>
764
+ <g transform='matrix(0 -1 1 0 250.621 349.32)'>
765
+ <use x='168.285' y='191.334' xlink:href='#g2-48'/>
766
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
767
+ <use x='172.401' y='191.334' xlink:href='#g2-57'/>
768
+ <use x='175.048' y='191.334' xlink:href='#g2-54'/>
769
+ </g>
770
+ <g transform='matrix(0 -1 1 0 -37.493 346.703)'>
771
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
772
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
773
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
774
+ <use x='175.048' y='191.334' xlink:href='#g2-48'/>
775
+ </g>
776
+ <g transform='matrix(0 -1 1 0 21.176 333.952)'>
777
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
778
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
779
+ <use x='172.401' y='191.334' xlink:href='#g2-49'/>
780
+ <use x='175.048' y='191.334' xlink:href='#g2-57'/>
781
+ </g>
782
+ <g transform='matrix(0 -1 1 0 79.845 299.393)'>
783
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
784
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
785
+ <use x='172.401' y='191.334' xlink:href='#g2-55'/>
786
+ <use x='175.048' y='191.334' xlink:href='#g2-49'/>
787
+ </g>
788
+ <g transform='matrix(0 -1 1 0 138.514 246.245)'>
789
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
790
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
791
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
792
+ <use x='173.912' y='191.334' xlink:href='#g2-49'/>
793
+ <use x='176.558' y='191.334' xlink:href='#g2-53'/>
794
+ <use x='179.205' y='191.334' xlink:href='#g2-46'/>
795
+ <use x='180.675' y='191.334' xlink:href='#g2-49'/>
796
+ <use x='183.321' y='191.334' xlink:href='#g2-56'/>
797
+ <use x='185.968' y='191.334' xlink:href='#g2-120'/>
798
+ </g>
799
+ <g transform='matrix(0 -1 1 0 197.183 246.245)'>
800
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
801
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
802
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
803
+ <use x='173.912' y='191.334' xlink:href='#g2-51'/>
804
+ <use x='176.558' y='191.334' xlink:href='#g2-56'/>
805
+ <use x='179.205' y='191.334' xlink:href='#g2-48'/>
806
+ <use x='181.851' y='191.334' xlink:href='#g2-46'/>
807
+ <use x='183.321' y='191.334' xlink:href='#g2-49'/>
808
+ <use x='185.968' y='191.334' xlink:href='#g2-57'/>
809
+ <use x='188.614' y='191.334' xlink:href='#g2-120'/>
810
+ </g>
811
+ <g transform='matrix(0 -1 1 0 255.852 246.245)'>
812
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
813
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
814
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
815
+ <use x='173.912' y='191.334' xlink:href='#g2-49'/>
816
+ <use x='176.558' y='191.334' xlink:href='#g2-55'/>
817
+ <use x='179.205' y='191.334' xlink:href='#g2-46'/>
818
+ <use x='180.675' y='191.334' xlink:href='#g2-48'/>
819
+ <use x='183.321' y='191.334' xlink:href='#g2-55'/>
820
+ <use x='185.968' y='191.334' xlink:href='#g2-120'/>
821
+ </g>
822
+ <g transform='matrix(0 -1 1 0 -32.263 342.005)'>
823
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
824
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
825
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
826
+ <use x='175.048' y='191.334' xlink:href='#g2-55'/>
827
+ </g>
828
+ <g transform='matrix(0 -1 1 0 26.406 342.542)'>
829
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
830
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
831
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
832
+ <use x='175.048' y='191.334' xlink:href='#g2-55'/>
833
+ </g>
834
+ <g transform='matrix(0 -1 1 0 85.075 293.756)'>
835
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
836
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
837
+ <use x='172.401' y='191.334' xlink:href='#g2-55'/>
838
+ <use x='175.048' y='191.334' xlink:href='#g2-57'/>
839
+ </g>
840
+ <g transform='matrix(0 -1 1 0 143.744 288.186)'>
841
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
842
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
843
+ <use x='172.401' y='191.334' xlink:href='#g2-56'/>
844
+ <use x='175.048' y='191.334' xlink:href='#g2-56'/>
845
+ </g>
846
+ <g transform='matrix(0 -1 1 0 202.413 246.245)'>
847
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
848
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
849
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
850
+ <use x='173.912' y='191.334' xlink:href='#g2-49'/>
851
+ <use x='176.558' y='191.334' xlink:href='#g2-49'/>
852
+ <use x='179.205' y='191.334' xlink:href='#g2-46'/>
853
+ <use x='180.675' y='191.334' xlink:href='#g2-54'/>
854
+ <use x='183.321' y='191.334' xlink:href='#g2-55'/>
855
+ <use x='185.968' y='191.334' xlink:href='#g2-120'/>
856
+ </g>
857
+ <g transform='matrix(0 -1 1 0 261.082 246.245)'>
858
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
859
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
860
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
861
+ <use x='173.912' y='191.334' xlink:href='#g2-49'/>
862
+ <use x='176.558' y='191.334' xlink:href='#g2-55'/>
863
+ <use x='179.205' y='191.334' xlink:href='#g2-46'/>
864
+ <use x='180.675' y='191.334' xlink:href='#g2-50'/>
865
+ <use x='183.321' y='191.334' xlink:href='#g2-53'/>
866
+ <use x='185.968' y='191.334' xlink:href='#g2-120'/>
867
+ </g>
868
+ <g transform='matrix(0 -1 1 0 -27.032 324.222)'>
869
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
870
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
871
+ <use x='172.401' y='191.334' xlink:href='#g2-51'/>
872
+ <use x='175.048' y='191.334' xlink:href='#g2-52'/>
873
+ </g>
874
+ <g transform='matrix(0 -1 1 0 31.637 325.497)'>
875
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
876
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
877
+ <use x='172.401' y='191.334' xlink:href='#g2-51'/>
878
+ <use x='175.048' y='191.334' xlink:href='#g2-50'/>
879
+ </g>
880
+ <g transform='matrix(0 -1 1 0 90.306 246.245)'>
881
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
882
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
883
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
884
+ <use x='173.912' y='191.334' xlink:href='#g2-53'/>
885
+ <use x='176.558' y='191.334' xlink:href='#g2-46'/>
886
+ <use x='178.029' y='191.334' xlink:href='#g2-50'/>
887
+ <use x='180.675' y='191.334' xlink:href='#g2-57'/>
888
+ <use x='183.321' y='191.334' xlink:href='#g2-120'/>
889
+ </g>
890
+ <g transform='matrix(0 -1 1 0 148.975 274.228)'>
891
+ <use x='168.285' y='191.334' xlink:href='#g2-50'/>
892
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
893
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
894
+ <use x='175.048' y='191.334' xlink:href='#g2-56'/>
895
+ </g>
896
+ <g transform='matrix(0 -1 1 0 207.644 248.929)'>
897
+ <use x='168.285' y='191.334' xlink:href='#g2-50'/>
898
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
899
+ <use x='172.401' y='191.334' xlink:href='#g2-52'/>
900
+ <use x='175.048' y='191.334' xlink:href='#g2-54'/>
901
+ </g>
902
+ <g transform='matrix(0 -1 1 0 266.313 346.904)'>
903
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
904
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
905
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
906
+ <use x='175.048' y='191.334' xlink:href='#g2-48'/>
907
+ </g>
908
+ <g transform='matrix(0 -1 1 0 -21.802 334.02)'>
909
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
910
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
911
+ <use x='172.401' y='191.334' xlink:href='#g2-49'/>
912
+ <use x='175.048' y='191.334' xlink:href='#g2-57'/>
913
+ </g>
914
+ <g transform='matrix(0 -1 1 0 36.867 343.146)'>
915
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
916
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
917
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
918
+ <use x='175.048' y='191.334' xlink:href='#g2-54'/>
919
+ </g>
920
+ <g transform='matrix(0 -1 1 0 95.536 313.351)'>
921
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
922
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
923
+ <use x='172.401' y='191.334' xlink:href='#g2-53'/>
924
+ <use x='175.048' y='191.334' xlink:href='#g2-48'/>
925
+ </g>
926
+ <g transform='matrix(0 -1 1 0 154.205 324.558)'>
927
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
928
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
929
+ <use x='172.401' y='191.334' xlink:href='#g2-51'/>
930
+ <use x='175.048' y='191.334' xlink:href='#g2-51'/>
931
+ </g>
932
+ <g transform='matrix(0 -1 1 0 212.874 354.42)'>
933
+ <use x='168.285' y='191.334' xlink:href='#g2-48'/>
934
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
935
+ <use x='172.401' y='191.334' xlink:href='#g2-56'/>
936
+ <use x='175.048' y='191.334' xlink:href='#g2-57'/>
937
+ </g>
938
+ <g transform='matrix(0 -1 1 0 271.543 351.668)'>
939
+ <use x='168.285' y='191.334' xlink:href='#g2-48'/>
940
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
941
+ <use x='172.401' y='191.334' xlink:href='#g2-57'/>
942
+ <use x='175.048' y='191.334' xlink:href='#g2-51'/>
943
+ </g>
944
+ <g transform='matrix(0 -1 1 0 -16.571 343.012)'>
945
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
946
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
947
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
948
+ <use x='175.048' y='191.334' xlink:href='#g2-54'/>
949
+ </g>
950
+ <g transform='matrix(0 -1 1 0 42.098 341.133)'>
951
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
952
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
953
+ <use x='172.401' y='191.334' xlink:href='#g2-48'/>
954
+ <use x='175.048' y='191.334' xlink:href='#g2-57'/>
955
+ </g>
956
+ <g transform='matrix(0 -1 1 0 100.767 246.245)'>
957
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
958
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
959
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
960
+ <use x='173.912' y='191.334' xlink:href='#g2-55'/>
961
+ <use x='176.558' y='191.334' xlink:href='#g2-46'/>
962
+ <use x='178.029' y='191.334' xlink:href='#g2-50'/>
963
+ <use x='180.675' y='191.334' xlink:href='#g2-53'/>
964
+ <use x='183.321' y='191.334' xlink:href='#g2-120'/>
965
+ </g>
966
+ <g transform='matrix(0 -1 1 0 159.436 246.245)'>
967
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
968
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
969
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
970
+ <use x='173.912' y='191.334' xlink:href='#g2-51'/>
971
+ <use x='176.558' y='191.334' xlink:href='#g2-54'/>
972
+ <use x='179.205' y='191.334' xlink:href='#g2-46'/>
973
+ <use x='180.675' y='191.334' xlink:href='#g2-54'/>
974
+ <use x='183.321' y='191.334' xlink:href='#g2-53'/>
975
+ <use x='185.968' y='191.334' xlink:href='#g2-120'/>
976
+ </g>
977
+ <g transform='matrix(0 -1 1 0 218.105 246.245)'>
978
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
979
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
980
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
981
+ <use x='173.912' y='191.334' xlink:href='#g2-51'/>
982
+ <use x='176.558' y='191.334' xlink:href='#g2-56'/>
983
+ <use x='179.205' y='191.334' xlink:href='#g2-46'/>
984
+ <use x='180.675' y='191.334' xlink:href='#g2-53'/>
985
+ <use x='183.321' y='191.334' xlink:href='#g2-51'/>
986
+ <use x='185.968' y='191.334' xlink:href='#g2-120'/>
987
+ </g>
988
+ <g transform='matrix(0 -1 1 0 276.774 246.245)'>
989
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
990
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
991
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
992
+ <use x='173.912' y='191.334' xlink:href='#g2-49'/>
993
+ <use x='176.558' y='191.334' xlink:href='#g2-50'/>
994
+ <use x='179.205' y='191.334' xlink:href='#g2-46'/>
995
+ <use x='180.675' y='191.334' xlink:href='#g2-56'/>
996
+ <use x='183.321' y='191.334' xlink:href='#g2-50'/>
997
+ <use x='185.968' y='191.334' xlink:href='#g2-120'/>
998
+ </g>
999
+ <g transform='matrix(0 -1 1 0 -11.341 316.908)'>
1000
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
1001
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
1002
+ <use x='172.401' y='191.334' xlink:href='#g2-52'/>
1003
+ <use x='175.048' y='191.334' xlink:href='#g2-53'/>
1004
+ </g>
1005
+ <g transform='matrix(0 -1 1 0 47.328 338.247)'>
1006
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
1007
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
1008
+ <use x='172.401' y='191.334' xlink:href='#g2-49'/>
1009
+ <use x='175.048' y='191.334' xlink:href='#g2-51'/>
1010
+ </g>
1011
+ <g transform='matrix(0 -1 1 0 105.997 246.245)'>
1012
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
1013
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
1014
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
1015
+ <use x='173.912' y='191.334' xlink:href='#g2-55'/>
1016
+ <use x='176.558' y='191.334' xlink:href='#g2-46'/>
1017
+ <use x='178.029' y='191.334' xlink:href='#g2-49'/>
1018
+ <use x='180.675' y='191.334' xlink:href='#g2-50'/>
1019
+ <use x='183.321' y='191.334' xlink:href='#g2-120'/>
1020
+ </g>
1021
+ <g transform='matrix(0 -1 1 0 164.666 246.245)'>
1022
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
1023
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
1024
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
1025
+ <use x='173.912' y='191.334' xlink:href='#g2-55'/>
1026
+ <use x='176.558' y='191.334' xlink:href='#g2-46'/>
1027
+ <use x='178.029' y='191.334' xlink:href='#g2-50'/>
1028
+ <use x='180.675' y='191.334' xlink:href='#g2-53'/>
1029
+ <use x='183.321' y='191.334' xlink:href='#g2-120'/>
1030
+ </g>
1031
+ <g transform='matrix(0 -1 1 0 223.335 246.245)'>
1032
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
1033
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
1034
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
1035
+ <use x='173.912' y='191.334' xlink:href='#g2-53'/>
1036
+ <use x='176.558' y='191.334' xlink:href='#g2-55'/>
1037
+ <use x='179.205' y='191.334' xlink:href='#g2-46'/>
1038
+ <use x='180.675' y='191.334' xlink:href='#g2-52'/>
1039
+ <use x='183.321' y='191.334' xlink:href='#g2-53'/>
1040
+ <use x='185.968' y='191.334' xlink:href='#g2-120'/>
1041
+ </g>
1042
+ <g transform='matrix(0 -1 1 0 282.004 351.668)'>
1043
+ <use x='168.285' y='191.334' xlink:href='#g2-48'/>
1044
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
1045
+ <use x='172.401' y='191.334' xlink:href='#g2-57'/>
1046
+ <use x='175.048' y='191.334' xlink:href='#g2-51'/>
1047
+ </g>
1048
+ <g transform='matrix(0 -1 1 0 -6.111 329.993)'>
1049
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
1050
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
1051
+ <use x='172.401' y='191.334' xlink:href='#g2-50'/>
1052
+ <use x='175.048' y='191.334' xlink:href='#g2-53'/>
1053
+ </g>
1054
+ <g transform='matrix(0 -1 1 0 52.558 331.067)'>
1055
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
1056
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
1057
+ <use x='172.401' y='191.334' xlink:href='#g2-50'/>
1058
+ <use x='175.048' y='191.334' xlink:href='#g2-52'/>
1059
+ </g>
1060
+ <g transform='matrix(0 -1 1 0 111.227 246.245)'>
1061
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
1062
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
1063
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
1064
+ <use x='173.912' y='191.334' xlink:href='#g2-53'/>
1065
+ <use x='176.558' y='191.334' xlink:href='#g2-46'/>
1066
+ <use x='178.029' y='191.334' xlink:href='#g2-52'/>
1067
+ <use x='180.675' y='191.334' xlink:href='#g2-54'/>
1068
+ <use x='183.321' y='191.334' xlink:href='#g2-120'/>
1069
+ </g>
1070
+ <g transform='matrix(0 -1 1 0 169.896 246.245)'>
1071
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
1072
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
1073
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
1074
+ <use x='173.912' y='191.334' xlink:href='#g2-52'/>
1075
+ <use x='176.558' y='191.334' xlink:href='#g2-46'/>
1076
+ <use x='178.029' y='191.334' xlink:href='#g2-50'/>
1077
+ <use x='180.675' y='191.334' xlink:href='#g2-54'/>
1078
+ <use x='183.321' y='191.334' xlink:href='#g2-120'/>
1079
+ </g>
1080
+ <g transform='matrix(0 -1 1 0 228.565 246.245)'>
1081
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
1082
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
1083
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
1084
+ <use x='173.912' y='191.334' xlink:href='#g2-53'/>
1085
+ <use x='176.558' y='191.334' xlink:href='#g2-46'/>
1086
+ <use x='178.029' y='191.334' xlink:href='#g2-53'/>
1087
+ <use x='180.675' y='191.334' xlink:href='#g2-54'/>
1088
+ <use x='183.321' y='191.334' xlink:href='#g2-120'/>
1089
+ </g>
1090
+ <g transform='matrix(0 -1 1 0 287.234 246.245)'>
1091
+ <use x='163.396' y='191.334' xlink:href='#g4-1'/>
1092
+ <use x='166.901' y='191.334' xlink:href='#g4-1'/>
1093
+ <use x='170.407' y='191.334' xlink:href='#g4-1'/>
1094
+ <use x='173.912' y='191.334' xlink:href='#g2-54'/>
1095
+ <use x='176.558' y='191.334' xlink:href='#g2-46'/>
1096
+ <use x='178.029' y='191.334' xlink:href='#g2-48'/>
1097
+ <use x='180.675' y='191.334' xlink:href='#g2-55'/>
1098
+ <use x='183.321' y='191.334' xlink:href='#g2-120'/>
1099
+ </g>
1100
+ <g transform='matrix(0 -1 1 0 -.88 337.643)'>
1101
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
1102
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
1103
+ <use x='172.401' y='191.334' xlink:href='#g2-49'/>
1104
+ <use x='175.048' y='191.334' xlink:href='#g2-52'/>
1105
+ </g>
1106
+ <g transform='matrix(0 -1 1 0 57.789 338.247)'>
1107
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
1108
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
1109
+ <use x='172.401' y='191.334' xlink:href='#g2-49'/>
1110
+ <use x='175.048' y='191.334' xlink:href='#g2-51'/>
1111
+ </g>
1112
+ <g transform='matrix(0 -1 1 0 116.458 254.633)'>
1113
+ <use x='168.285' y='191.334' xlink:href='#g2-50'/>
1114
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
1115
+ <use x='172.401' y='191.334' xlink:href='#g2-51'/>
1116
+ <use x='175.048' y='191.334' xlink:href='#g2-55'/>
1117
+ </g>
1118
+ <g transform='matrix(0 -1 1 0 175.127 288.186)'>
1119
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
1120
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
1121
+ <use x='172.401' y='191.334' xlink:href='#g2-56'/>
1122
+ <use x='175.048' y='191.334' xlink:href='#g2-56'/>
1123
+ </g>
1124
+ <g transform='matrix(0 -1 1 0 233.796 271.544)'>
1125
+ <use x='168.285' y='191.334' xlink:href='#g2-50'/>
1126
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
1127
+ <use x='172.401' y='191.334' xlink:href='#g2-49'/>
1128
+ <use x='175.048' y='191.334' xlink:href='#g2-50'/>
1129
+ </g>
1130
+ <g transform='matrix(0 -1 1 0 292.465 337.308)'>
1131
+ <use x='168.285' y='191.334' xlink:href='#g2-49'/>
1132
+ <use x='170.931' y='191.334' xlink:href='#g2-46'/>
1133
+ <use x='172.401' y='191.334' xlink:href='#g2-49'/>
1134
+ <use x='175.048' y='191.334' xlink:href='#g2-52'/>
1135
+ </g>
1136
+ <g transform='matrix(0 -1 1 0 -78.176 391.591)'>
1137
+ <use x='168.285' y='191.334' xlink:href='#g1-82'/>
1138
+ <use x='174.255' y='191.334' xlink:href='#g1-101'/>
1139
+ <use x='178.351' y='191.334' xlink:href='#g1-108'/>
1140
+ <use x='180.551' y='191.334' xlink:href='#g1-97'/>
1141
+ <use x='184.979' y='191.334' xlink:href='#g1-116'/>
1142
+ <use x='188.307' y='191.334' xlink:href='#g1-105'/>
1143
+ <use x='190.507' y='191.334' xlink:href='#g1-118'/>
1144
+ <use x='194.755' y='191.334' xlink:href='#g1-101'/>
1145
+ <use x='201.922' y='191.334' xlink:href='#g1-116'/>
1146
+ <use x='205.25' y='191.334' xlink:href='#g1-105'/>
1147
+ <use x='207.45' y='191.334' xlink:href='#g1-109'/>
1148
+ <use x='214.77' y='191.334' xlink:href='#g1-101'/>
1149
+ <use x='221.937' y='191.334' xlink:href='#g3-40'/>
1150
+ <use x='225.231' y='191.334' xlink:href='#g3-108'/>
1151
+ <use x='227.251' y='191.334' xlink:href='#g3-111'/>
1152
+ <use x='231.25' y='191.334' xlink:href='#g3-119'/>
1153
+ <use x='236.799' y='191.334' xlink:href='#g3-101'/>
1154
+ <use x='240.562' y='191.334' xlink:href='#g3-114'/>
1155
+ <use x='246.277' y='191.334' xlink:href='#g3-105'/>
1156
+ <use x='248.297' y='191.334' xlink:href='#g3-115'/>
1157
+ <use x='254.366' y='191.334' xlink:href='#g3-98'/>
1158
+ <use x='258.974' y='191.334' xlink:href='#g3-101'/>
1159
+ <use x='262.738' y='191.334' xlink:href='#g3-116'/>
1160
+ <use x='265.796' y='191.334' xlink:href='#g3-116'/>
1161
+ <use x='268.854' y='191.334' xlink:href='#g3-101'/>
1162
+ <use x='272.618' y='191.334' xlink:href='#g3-114'/>
1163
+ <use x='275.51' y='191.334' xlink:href='#g3-41'/>
1164
+ </g>
1165
+ <path d='M136.149 312.324H346.746V282.324H136.149Z' fill='#fff'/>
1166
+ <path d='M136.149 312.324H346.746V282.324H136.149Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1167
+ <path d='M139.336 292.816H142.324V284.844H139.336ZM145.313 292.816H148.301V286.836H145.313Z' fill='#933'/>
1168
+ <path d='M139.336 292.816H142.324V284.844H139.336ZM145.313 292.816H148.301V286.836H145.313Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1169
+ <g transform='matrix(1 0 0 1 -40.354 114.479)'>
1170
+ <use x='191.843' y='178.327' xlink:href='#g3-120'/>
1171
+ <use x='195.745' y='178.327' xlink:href='#g3-109'/>
1172
+ <use x='202.47' y='178.327' xlink:href='#g3-105'/>
1173
+ <use x='204.49' y='178.327' xlink:href='#g3-58'/>
1174
+ <use x='206.843' y='178.327' xlink:href='#g0-57'/>
1175
+ <use x='210.548' y='178.327' xlink:href='#g0-52'/>
1176
+ </g>
1177
+ <path d='M177.086 292.816H180.074V284.844H177.086ZM183.063 292.816H186.055V286.836H183.063Z' fill='#bf8080'/>
1178
+ <path d='M177.086 292.816H180.074V284.844H177.086ZM183.063 292.816H186.055V286.836H183.063Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1179
+ <g transform='matrix(1 0 0 1 -38.403 114.479)'>
1180
+ <use x='233.123' y='178.327' xlink:href='#g3-109'/>
1181
+ <use x='239.848' y='178.327' xlink:href='#g3-105'/>
1182
+ <use x='241.869' y='178.327' xlink:href='#g3-58'/>
1183
+ <use x='244.221' y='178.327' xlink:href='#g0-56'/>
1184
+ <use x='247.926' y='178.327' xlink:href='#g0-57'/>
1185
+ </g>
1186
+ <path d='M221.895 292.816H224.883V284.844H221.895ZM227.875 292.816H230.863V286.836H227.875Z' fill='#8080bf'/>
1187
+ <path d='M221.895 292.816H224.883V284.844H221.895ZM227.875 292.816H230.863V286.836H227.875Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1188
+ <g transform='matrix(1 0 0 1 -37.441 114.036)'>
1189
+ <use x='277.134' y='178.327' xlink:href='#g3-116'/>
1190
+ <use x='280.192' y='178.327' xlink:href='#g3-99'/>
1191
+ <use x='283.956' y='178.327' xlink:href='#g3-58'/>
1192
+ <use x='286.308' y='178.327' xlink:href='#g0-53'/>
1193
+ <use x='290.013' y='178.327' xlink:href='#g0-56'/>
1194
+ </g>
1195
+ <path d='M265.109 292.816H268.098V284.844H265.109ZM271.086 292.816H274.074V286.836H271.086Z' fill='#ffb733'/>
1196
+ <path d='M265.109 292.816H268.098V284.844H265.109ZM271.086 292.816H274.074V286.836H271.086Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1197
+ <g transform='matrix(1 0 0 1 -37.04 114.479)'>
1198
+ <use x='319.615' y='178.327' xlink:href='#g3-106'/>
1199
+ <use x='321.871' y='178.327' xlink:href='#g3-101'/>
1200
+ <use x='325.634' y='178.327' xlink:href='#g3-58'/>
1201
+ <use x='327.987' y='178.327' xlink:href='#g0-53'/>
1202
+ <use x='331.691' y='178.327' xlink:href='#g0-56'/>
1203
+ </g>
1204
+ <path d='M306.859 292.816H309.848V284.844H306.859ZM312.836 292.816H315.824V286.836H312.836Z' fill='#bf80bf'/>
1205
+ <path d='M306.859 292.816H309.848V284.844H306.859ZM312.836 292.816H315.824V286.836H312.836Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1206
+ <g transform='matrix(1 0 0 1 -39.932 114.515)'>
1207
+ <use x='359.038' y='178.327' xlink:href='#g3-116'/>
1208
+ <use x='362.096' y='178.327' xlink:href='#g3-98'/>
1209
+ <use x='366.469' y='178.327' xlink:href='#g3-98'/>
1210
+ <use x='370.842' y='178.327' xlink:href='#g3-58'/>
1211
+ <use x='373.194' y='178.327' xlink:href='#g0-53'/>
1212
+ <use x='376.899' y='178.327' xlink:href='#g0-48'/>
1213
+ </g>
1214
+ <path d='M139.336 305.82H142.324V297.852H139.336ZM145.313 305.82H148.301V299.844H145.313Z' fill='#c96'/>
1215
+ <path d='M139.336 305.82H142.324V297.852H139.336ZM145.313 305.82H148.301V299.844H145.313Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1216
+ <g transform='matrix(1 0 0 1 -37.662 114.036)'>
1217
+ <use x='191.843' y='191.334' xlink:href='#g3-114'/>
1218
+ <use x='194.735' y='191.334' xlink:href='#g3-112'/>
1219
+ <use x='199.108' y='191.334' xlink:href='#g3-58'/>
1220
+ <use x='201.46' y='191.334' xlink:href='#g0-55'/>
1221
+ <use x='205.165' y='191.334' xlink:href='#g0-53'/>
1222
+ </g>
1223
+ <path d='M177.086 305.82H180.074V297.852H177.086ZM183.063 305.82H186.055V299.844H183.063Z' fill='#80bf80'/>
1224
+ <path d='M177.086 305.82H180.074V297.852H177.086ZM183.063 305.82H186.055V299.844H183.063Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1225
+ <g transform='matrix(1 0 0 1 -43.882 114.515)'>
1226
+ <use x='233.123' y='191.334' xlink:href='#g3-104'/>
1227
+ <use x='237.496' y='191.334' xlink:href='#g3-111'/>
1228
+ <use x='241.73' y='191.334' xlink:href='#g3-97'/>
1229
+ <use x='245.563' y='191.334' xlink:href='#g3-114'/>
1230
+ <use x='248.455' y='191.334' xlink:href='#g3-100'/>
1231
+ <use x='252.828' y='191.334' xlink:href='#g3-58'/>
1232
+ <use x='255.18' y='191.334' xlink:href='#g0-51'/>
1233
+ <use x='258.885' y='191.334' xlink:href='#g0-56'/>
1234
+ </g>
1235
+ <path d='M221.895 305.82H224.883V297.852H221.895ZM227.875 305.82H230.863V299.844H227.875Z' fill='#bfbf80'/>
1236
+ <path d='M221.895 305.82H224.883V297.852H221.895ZM227.875 305.82H230.863V299.844H227.875Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1237
+ <g transform='matrix(1 0 0 1 -43.084 114.515)'>
1238
+ <use x='277.134' y='191.334' xlink:href='#g3-109'/>
1239
+ <use x='283.859' y='191.334' xlink:href='#g3-101'/>
1240
+ <use x='287.622' y='191.334' xlink:href='#g3-115'/>
1241
+ <use x='290.869' y='191.334' xlink:href='#g3-104'/>
1242
+ <use x='295.241' y='191.334' xlink:href='#g3-58'/>
1243
+ <use x='297.593' y='191.334' xlink:href='#g0-51'/>
1244
+ <use x='301.298' y='191.334' xlink:href='#g0-54'/>
1245
+ </g>
1246
+ <path d='M265.109 305.82H268.098V297.852H265.109ZM271.086 305.82H274.074V299.844H271.086Z' fill='#399'/>
1247
+ <path d='M265.109 305.82H268.098V297.852H265.109ZM271.086 305.82H274.074V299.844H271.086Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1248
+ <g transform='matrix(1 0 0 1 -42.353 114.515)'>
1249
+ <use x='319.615' y='191.334' xlink:href='#g3-103'/>
1250
+ <use x='323.849' y='191.334' xlink:href='#g3-108'/>
1251
+ <use x='325.869' y='191.334' xlink:href='#g3-105'/>
1252
+ <use x='327.89' y='191.334' xlink:href='#g3-98'/>
1253
+ <use x='332.498' y='191.334' xlink:href='#g3-99'/>
1254
+ <use x='336.261' y='191.334' xlink:href='#g3-58'/>
1255
+ <use x='338.614' y='191.334' xlink:href='#g0-52'/>
1256
+ <use x='342.318' y='191.334' xlink:href='#g0-54'/>
1257
+ </g>
1258
+ <path d='M306.859 305.82H309.848V297.852H306.859ZM312.836 305.82H315.824V299.844H312.836Z' fill='#d9b3b3'/>
1259
+ <path d='M306.859 305.82H309.848V297.852H306.859ZM312.836 305.82H315.824V299.844H312.836Z' stroke='#000' fill='none' stroke-width='.399' stroke-miterlimit='10'/>
1260
+ <g transform='matrix(1 0 0 1 -40.026 114.479)'>
1261
+ <use x='359.038' y='191.334' xlink:href='#g3-115'/>
1262
+ <use x='362.285' y='191.334' xlink:href='#g3-109'/>
1263
+ <use x='369.009' y='191.334' xlink:href='#g3-105'/>
1264
+ <use x='371.03' y='191.334' xlink:href='#g3-58'/>
1265
+ <use x='373.382' y='191.334' xlink:href='#g0-53'/>
1266
+ <use x='377.087' y='191.334' xlink:href='#g0-57'/>
1267
+ </g>
1268
+ </g>
1269
+ </svg>