mapwright 0.10.0__tar.gz → 0.12.0__tar.gz

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 (86) hide show
  1. {mapwright-0.10.0 → mapwright-0.12.0}/CHANGELOG.md +25 -2
  2. {mapwright-0.10.0 → mapwright-0.12.0}/PKG-INFO +6 -4
  3. {mapwright-0.10.0 → mapwright-0.12.0}/README.md +5 -3
  4. mapwright-0.12.0/docs/gallery/archipelago.png +0 -0
  5. {mapwright-0.10.0 → mapwright-0.12.0}/docs/gallery/archipelago.svg +1 -1
  6. mapwright-0.12.0/docs/gallery/arctic.png +0 -0
  7. {mapwright-0.10.0 → mapwright-0.12.0}/docs/gallery/arctic.svg +1 -1
  8. mapwright-0.12.0/docs/gallery/citadel.png +0 -0
  9. mapwright-0.12.0/docs/gallery/citadel.svg +1 -0
  10. mapwright-0.12.0/docs/gallery/continent.png +0 -0
  11. {mapwright-0.10.0 → mapwright-0.12.0}/docs/gallery/continent.svg +1 -1
  12. mapwright-0.12.0/docs/gallery/desert.png +0 -0
  13. mapwright-0.12.0/docs/gallery/desert.svg +1 -0
  14. mapwright-0.12.0/docs/gallery/highlands.png +0 -0
  15. {mapwright-0.10.0 → mapwright-0.12.0}/docs/gallery/highlands.svg +1 -1
  16. mapwright-0.12.0/docs/gallery/islands.png +0 -0
  17. {mapwright-0.10.0 → mapwright-0.12.0}/docs/gallery/islands.svg +1 -1
  18. mapwright-0.12.0/docs/gallery/pangaea.png +0 -0
  19. {mapwright-0.10.0 → mapwright-0.12.0}/docs/gallery/pangaea.svg +1 -1
  20. mapwright-0.12.0/docs/gallery/port.png +0 -0
  21. mapwright-0.12.0/docs/gallery/port.svg +1 -0
  22. mapwright-0.12.0/docs/gallery/regions.png +0 -0
  23. {mapwright-0.10.0 → mapwright-0.12.0}/docs/gallery/regions.svg +1 -1
  24. mapwright-0.12.0/docs/gallery/roads.png +0 -0
  25. {mapwright-0.10.0 → mapwright-0.12.0}/docs/gallery/roads.svg +1 -1
  26. mapwright-0.12.0/docs/gallery/town.png +0 -0
  27. mapwright-0.12.0/docs/gallery/town.svg +1 -0
  28. mapwright-0.12.0/docs/gallery/tropical.png +0 -0
  29. {mapwright-0.10.0 → mapwright-0.12.0}/docs/gallery/tropical.svg +1 -1
  30. {mapwright-0.10.0 → mapwright-0.12.0}/pyproject.toml +1 -1
  31. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/__init__.py +1 -1
  32. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/settlement.py +26 -8
  33. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/terrain.py +110 -37
  34. mapwright-0.10.0/docs/gallery/archipelago.png +0 -0
  35. mapwright-0.10.0/docs/gallery/arctic.png +0 -0
  36. mapwright-0.10.0/docs/gallery/citadel.png +0 -0
  37. mapwright-0.10.0/docs/gallery/citadel.svg +0 -1
  38. mapwright-0.10.0/docs/gallery/continent.png +0 -0
  39. mapwright-0.10.0/docs/gallery/desert.png +0 -0
  40. mapwright-0.10.0/docs/gallery/desert.svg +0 -1
  41. mapwright-0.10.0/docs/gallery/highlands.png +0 -0
  42. mapwright-0.10.0/docs/gallery/islands.png +0 -0
  43. mapwright-0.10.0/docs/gallery/pangaea.png +0 -0
  44. mapwright-0.10.0/docs/gallery/port.png +0 -0
  45. mapwright-0.10.0/docs/gallery/port.svg +0 -1
  46. mapwright-0.10.0/docs/gallery/regions.png +0 -0
  47. mapwright-0.10.0/docs/gallery/roads.png +0 -0
  48. mapwright-0.10.0/docs/gallery/town.png +0 -0
  49. mapwright-0.10.0/docs/gallery/town.svg +0 -1
  50. mapwright-0.10.0/docs/gallery/tropical.png +0 -0
  51. {mapwright-0.10.0 → mapwright-0.12.0}/.github/workflows/ci.yml +0 -0
  52. {mapwright-0.10.0 → mapwright-0.12.0}/.github/workflows/publish.yml +0 -0
  53. {mapwright-0.10.0 → mapwright-0.12.0}/.gitignore +0 -0
  54. {mapwright-0.10.0 → mapwright-0.12.0}/LICENSE +0 -0
  55. {mapwright-0.10.0 → mapwright-0.12.0}/NOTICE +0 -0
  56. {mapwright-0.10.0 → mapwright-0.12.0}/docs/gallery/dungeon.png +0 -0
  57. {mapwright-0.10.0 → mapwright-0.12.0}/docs/gallery/dungeon.svg +0 -0
  58. {mapwright-0.10.0 → mapwright-0.12.0}/examples/benchmark.py +0 -0
  59. {mapwright-0.10.0 → mapwright-0.12.0}/examples/gallery.py +0 -0
  60. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/_geometry.py +0 -0
  61. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/_graph.py +0 -0
  62. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/_serde.py +0 -0
  63. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/config.py +0 -0
  64. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/dungeon.py +0 -0
  65. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/dungeon_renderer.py +0 -0
  66. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/names.py +0 -0
  67. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/regions.py +0 -0
  68. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/rng.py +0 -0
  69. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/roads.py +0 -0
  70. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/settlement_renderer.py +0 -0
  71. {mapwright-0.10.0 → mapwright-0.12.0}/src/mapwright/svg_renderer.py +0 -0
  72. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_api_contract.py +0 -0
  73. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_config.py +0 -0
  74. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_dungeon.py +0 -0
  75. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_dungeon_renderer.py +0 -0
  76. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_geometry.py +0 -0
  77. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_graph.py +0 -0
  78. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_names.py +0 -0
  79. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_properties.py +0 -0
  80. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_regions.py +0 -0
  81. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_rng.py +0 -0
  82. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_roads.py +0 -0
  83. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_serialize.py +0 -0
  84. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_settlement.py +0 -0
  85. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_svg_renderer.py +0 -0
  86. {mapwright-0.10.0 → mapwright-0.12.0}/tests/test_terrain.py +0 -0
@@ -8,7 +8,28 @@ All notable changes to mapwright are documented here. The format follows
8
8
  `tests/test_api_contract.py`). While the version is `0.x`, minor versions may
9
9
  make breaking changes; these will always be noted here.
10
10
 
11
- ## [Unreleased]
11
+ ## [0.12.0] — 2026-06-02
12
+
13
+ ### Changed
14
+ - **Organic, non-circular landmasses.** The heightmap was a sum of circular
15
+ gaussians minus a radial edge falloff, so continents read as disks. It now
16
+ splits **shape from elevation**: an organic land/sea mask (radial island bias +
17
+ fractal value noise → irregular coastlines with bays, capes, and scattered
18
+ islets) combined with a separate *smooth* elevation field (graph
19
+ distance-to-coast + mountain relief + low-frequency valleys). Decoupling them is
20
+ what keeps the coastline organic without fragmenting the drainage.
21
+ - **Rivers now use a flux-quantile source threshold** (top 3–13% of land cells by
22
+ accumulated flux, scaling with `river_density`) instead of an absolute,
23
+ total-cell-count threshold — so rivers form reliably on gentle and steep terrain
24
+ alike and track the actual flux distribution. Regenerated the terrain gallery.
25
+
26
+ ## [0.11.0] — 2026-06-02
27
+
28
+ ### Changed
29
+ - **Settlement footprints are no longer circular.** Town outlines are now
30
+ elongated along a random axis, lopsided via low-frequency radial lobes, and
31
+ rotated — a clearly organic (but still convex, so lots/streets/walls stay valid)
32
+ shape instead of a near-perfect disk. Regenerated the town/port/citadel gallery.
12
33
 
13
34
  ### Added
14
35
  - Property-based tests (Hypothesis, a new dev dependency) over config clamping,
@@ -177,7 +198,9 @@ Initial release. Domain-neutral procedural fantasy map & world generation.
177
198
  polygons, coastline, rivers, labelled markers. `compute_cell_polygons` rebuilds
178
199
  convex Voronoi polygons via half-plane clipping.
179
200
 
180
- [Unreleased]: https://github.com/sligara7/mapwright/compare/v0.10.0...HEAD
201
+ [Unreleased]: https://github.com/sligara7/mapwright/compare/v0.12.0...HEAD
202
+ [0.12.0]: https://github.com/sligara7/mapwright/compare/v0.11.0...v0.12.0
203
+ [0.11.0]: https://github.com/sligara7/mapwright/compare/v0.10.0...v0.11.0
181
204
  [0.10.0]: https://github.com/sligara7/mapwright/compare/v0.9.0...v0.10.0
182
205
  [0.9.0]: https://github.com/sligara7/mapwright/compare/v0.8.0...v0.9.0
183
206
  [0.8.0]: https://github.com/sligara7/mapwright/compare/v0.7.0...v0.8.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mapwright
3
- Version: 0.10.0
3
+ Version: 0.12.0
4
4
  Summary: Domain-neutral procedural fantasy map & world generation: Voronoi terrain, hydraulic erosion, biomes, rivers, Markov place-names, and shaded-relief SVG.
5
5
  Project-URL: Homepage, https://github.com/sligara7/mapwright
6
6
  Project-URL: Repository, https://github.com/sligara7/mapwright
@@ -25,8 +25,8 @@ Description-Content-Type: text/markdown
25
25
  # mapwright
26
26
 
27
27
  > ⚠️ **Early development (v0.x, alpha).** The API is still moving and may change without
28
- > notice between versions. Extracted from a working application; usable today, but pin a
29
- > commit if you depend on it.
28
+ > notice between versions. Usable today, but pin a version (e.g. `mapwright==0.10.0`) if
29
+ > you depend on it.
30
30
 
31
31
  **Domain-neutral procedural fantasy map & world generation** — Voronoi terrain with
32
32
  hydraulic erosion, climate-driven biomes, rivers, Markov place-names, and shaded-relief
@@ -75,6 +75,8 @@ Regenerate them with `python examples/gallery.py` (SVGs always; PNGs when
75
75
  ## Install
76
76
 
77
77
  ```bash
78
+ pip install mapwright
79
+ # latest from git:
78
80
  pip install git+https://github.com/sligara7/mapwright.git
79
81
  # or, for local development:
80
82
  pip install -e ".[dev]"
@@ -167,7 +169,7 @@ Settlement presets: `hamlet`, `village`, `town`, `city`, `port`, `citadel`.
167
169
  |-----------|--------------|
168
170
  | `SeededRNG` | One seed drives everything; `.derive(label)` yields independent, reproducible sub-streams (unifies stdlib + numpy). |
169
171
  | `NameGenerator` | Order-k character Markov names over hand-authored culture namebases; reproducible across processes. |
170
- | `RegionalTerrainGenerator` | Voronoi cells (Lloyd-relaxed) → heightmap → Planchon–Darboux depression fill → flux + hydraulic/creep erosion → rivers + inland lakes → latitude/elevation climate with **rain-shadow** → Whittaker biomes. |
172
+ | `RegionalTerrainGenerator` | Voronoi cells (Lloyd-relaxed) → noise-shaped **organic** land/sea mask + distance-to-coast elevation → Planchon–Darboux depression fill → flux + hydraulic/creep erosion → rivers + inland lakes → latitude/elevation climate with **rain-shadow** → Whittaker biomes. |
171
173
  | `compute_cell_polygons` | Reconstructs convex Voronoi polygons (half-plane clipping) for vector rendering. |
172
174
  | `RegionalSVGRenderer` | Shaded-relief (hillshade) SVG: biome polygons, coastline, rivers, roads, labelled markers. |
173
175
  | `RegionalRoadGenerator` | Connects settlement sites with trade routes — an MST whose edges are A*-routed over the terrain (avoids sea, climbs/crosses rivers at a cost). |
@@ -1,8 +1,8 @@
1
1
  # mapwright
2
2
 
3
3
  > ⚠️ **Early development (v0.x, alpha).** The API is still moving and may change without
4
- > notice between versions. Extracted from a working application; usable today, but pin a
5
- > commit if you depend on it.
4
+ > notice between versions. Usable today, but pin a version (e.g. `mapwright==0.10.0`) if
5
+ > you depend on it.
6
6
 
7
7
  **Domain-neutral procedural fantasy map & world generation** — Voronoi terrain with
8
8
  hydraulic erosion, climate-driven biomes, rivers, Markov place-names, and shaded-relief
@@ -51,6 +51,8 @@ Regenerate them with `python examples/gallery.py` (SVGs always; PNGs when
51
51
  ## Install
52
52
 
53
53
  ```bash
54
+ pip install mapwright
55
+ # latest from git:
54
56
  pip install git+https://github.com/sligara7/mapwright.git
55
57
  # or, for local development:
56
58
  pip install -e ".[dev]"
@@ -143,7 +145,7 @@ Settlement presets: `hamlet`, `village`, `town`, `city`, `port`, `citadel`.
143
145
  |-----------|--------------|
144
146
  | `SeededRNG` | One seed drives everything; `.derive(label)` yields independent, reproducible sub-streams (unifies stdlib + numpy). |
145
147
  | `NameGenerator` | Order-k character Markov names over hand-authored culture namebases; reproducible across processes. |
146
- | `RegionalTerrainGenerator` | Voronoi cells (Lloyd-relaxed) → heightmap → Planchon–Darboux depression fill → flux + hydraulic/creep erosion → rivers + inland lakes → latitude/elevation climate with **rain-shadow** → Whittaker biomes. |
148
+ | `RegionalTerrainGenerator` | Voronoi cells (Lloyd-relaxed) → noise-shaped **organic** land/sea mask + distance-to-coast elevation → Planchon–Darboux depression fill → flux + hydraulic/creep erosion → rivers + inland lakes → latitude/elevation climate with **rain-shadow** → Whittaker biomes. |
147
149
  | `compute_cell_polygons` | Reconstructs convex Voronoi polygons (half-plane clipping) for vector rendering. |
148
150
  | `RegionalSVGRenderer` | Shaded-relief (hillshade) SVG: biome polygons, coastline, rivers, roads, labelled markers. |
149
151
  | `RegionalRoadGenerator` | Connects settlement sites with trade routes — an MST whose edges are A*-routed over the terrain (avoids sea, climbs/crosses rivers at a cost). |
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="576" height="396" viewBox="0 0 576 396"><rect width="576" height="396" fill="#183e56"/><g stroke-linejoin="round"><polygon points="0.0,0.0 29.3,0.0 26.5,13.5 16.3,17.9 0.0,8.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="29.3,0.0 49.5,0.0 49.5,20.2 41.6,25.0 26.5,13.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="49.5,0.0 66.2,0.0 68.6,22.8 49.5,20.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="66.2,0.0 84.2,0.0 86.2,13.7 80.7,19.3 68.4,21.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="84.2,0.0 107.1,0.0 104.1,15.0 86.2,13.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="107.1,0.0 129.1,0.0 126.5,22.5 108.8,22.5 104.1,15.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="129.1,0.0 151.2,0.0 153.4,13.9 133.5,28.8 126.5,22.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="151.2,0.0 181.2,0.0 181.7,11.3 166.8,23.4 153.4,13.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="181.2,0.0 208.3,0.0 204.6,15.1 194.8,20.0 181.7,11.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="208.3,0.0 222.9,0.0 227.4,18.6 218.7,22.9 204.6,15.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="222.9,0.0 247.5,0.0 246.1,14.0 237.6,21.4 227.4,18.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="247.5,0.0 266.5,0.0 269.2,23.6 246.1,14.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="266.5,0.0 284.3,0.0 287.3,16.6 287.2,16.8 268.9,21.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="284.3,0.0 307.8,0.0 303.3,14.4 287.3,16.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="307.8,0.0 328.9,0.0 331.3,14.9 312.3,23.8 303.3,14.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="328.9,0.0 356.6,0.0 350.5,18.1 336.9,19.3 331.3,14.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="356.6,0.0 373.9,0.0 378.1,13.7 357.7,24.3 350.5,18.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="373.9,0.0 408.7,0.0 385.0,19.4 378.1,13.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="408.7,0.0 411.5,0.0 415.6,11.3 404.8,32.2 400.4,33.4 385.7,21.7 385.0,19.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="411.5,0.0 443.4,0.0 441.9,17.4 429.8,20.1 415.6,11.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="443.4,0.0 463.5,0.0 463.5,22.3 446.1,20.7 441.9,17.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="463.5,0.0 482.4,0.0 485.7,16.4 485.3,17.0 463.5,23.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="482.4,0.0 509.6,0.0 507.3,13.8 485.7,16.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="509.6,0.0 533.6,0.0 532.0,19.4 528.8,22.1 510.5,18.4 507.3,13.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="533.6,0.0 548.5,0.0 555.6,15.9 549.9,22.6 532.0,19.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="548.5,0.0 576.0,0.0 576.0,13.6 555.6,15.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,39.8 0.0,8.7 16.3,17.9 13.5,34.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="13.5,34.2 16.3,17.9 26.5,13.5 41.6,25.0 39.9,34.8 30.2,44.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="39.9,34.8 41.6,25.0 49.5,20.2 66.8,22.5 67.6,41.2 61.5,46.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="67.6,41.2 66.7,21.3 80.7,19.3 92.8,39.2 85.5,45.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="92.8,39.2 80.7,19.3 86.2,13.7 104.1,15.0 108.8,22.5 100.9,38.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="112.2,51.3 100.9,38.3 108.8,22.5 126.5,22.5 135.0,30.1 126.5,47.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="131.5,30.3 153.4,13.9 166.8,23.4 167.1,28.5 150.3,40.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="154.7,59.6 150.3,40.4 167.1,28.5 174.9,38.4 160.3,58.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="174.9,38.4 167.1,28.5 166.8,23.4 181.7,11.3 194.8,20.0 194.8,34.9 183.5,41.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="194.8,34.9 194.8,20.0 204.6,15.1 218.7,22.9 214.2,39.7 206.2,41.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="214.2,39.7 218.7,22.9 227.4,18.6 237.6,21.4 241.4,38.9 218.2,42.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="240.9,36.6 237.6,21.4 246.1,14.0 267.2,22.8 265.8,33.6 261.8,37.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="265.8,33.6 267.3,21.4 287.2,16.8 291.7,39.1 286.0,42.6" fill="#63a35d" stroke="#63a35d" stroke-width="0.5"/><polygon points="291.7,39.1 287.2,16.8 287.3,16.6 303.3,14.4 312.3,23.8 310.6,42.1" fill="#5c9856" stroke="#5c9856" stroke-width="0.5"/><polygon points="310.8,39.6 312.3,23.8 331.3,14.9 336.9,19.3 335.3,37.2 319.4,43.3" fill="#51854c" stroke="#51854c" stroke-width="0.5"/><polygon points="335.3,37.2 336.9,19.3 350.5,18.1 357.7,24.3 359.2,32.3 345.1,44.5" fill="#3a6037" stroke="#3a6037" stroke-width="0.5"/><polygon points="359.2,32.3 357.7,24.3 378.1,13.7 385.0,19.4 385.7,21.7 371.8,41.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="385.7,21.7 400.4,33.4 395.6,46.2 374.2,49.7 371.8,41.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="404.8,32.2 415.6,11.3 429.8,20.1 424.3,42.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="423.4,45.8 429.8,20.1 441.9,17.4 446.1,20.7 443.1,41.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="446.1,20.7 464.4,22.4 465.3,29.9 450.5,46.0 443.1,41.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="465.3,29.9 464.4,23.1 485.3,17.0 490.3,36.2 480.4,44.1 475.5,43.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="490.3,36.2 485.3,17.0 485.7,16.4 507.3,13.8 510.5,18.4 504.5,38.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="510.5,18.4 528.8,22.1 528.8,38.2 502.9,44.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="528.8,38.2 528.8,22.1 532.0,19.4 549.9,22.6 552.6,36.2 534.4,43.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,13.6 576.0,41.0 560.1,41.5 552.6,36.2 549.9,22.6 555.6,15.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,51.4 0.0,39.8 13.5,34.2 30.2,44.6 30.1,49.5 13.5,59.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="13.5,75.9 13.5,59.3 31.5,48.7 31.5,75.5 20.7,80.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="30.1,50.9 30.2,44.6 39.9,34.8 61.5,46.9 60.3,53.3 50.0,59.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="60.3,53.3 61.5,46.9 67.6,41.2 85.5,45.0 85.5,67.6 71.1,66.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="85.5,63.0 85.5,45.0 92.8,39.2 100.9,38.3 112.2,51.3 110.5,57.5 99.5,66.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="125.0,77.1 110.5,57.5 112.2,51.3 126.5,47.1 138.2,61.4 128.8,77.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="126.5,47.1 134.1,31.7 150.3,40.4 154.5,58.7 138.2,61.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="160.3,58.9 174.9,38.4 183.5,41.2 185.7,57.8 174.2,64.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="185.7,57.8 183.5,41.2 194.8,34.9 206.2,41.0 200.1,63.4 199.0,63.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="200.1,63.4 206.2,41.0 214.2,39.7 218.2,42.5 222.4,59.4 217.8,67.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="222.4,59.4 218.2,42.5 239.3,39.2 240.8,56.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="240.8,56.5 239.0,36.5 261.8,37.9 262.6,59.3 245.4,61.0" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="262.7,62.1 261.8,37.9 265.8,33.6 286.0,42.6 281.4,59.0" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="281.4,59.0 286.0,42.6 291.7,39.1 307.0,41.5 301.7,65.0 292.2,67.8" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="307.7,38.3 319.4,43.3 327.2,63.5 309.5,68.9 301.7,65.0" fill="#a8a269" stroke="#a8a269" stroke-width="0.5"/><polygon points="327.2,63.6 319.4,43.3 335.3,37.2 345.1,44.5 346.8,53.9" fill="#3f683b" stroke="#3f683b" stroke-width="0.5"/><polygon points="346.8,53.9 345.1,44.5 359.2,32.3 371.8,41.1 373.9,48.8 350.5,56.6" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="375.9,57.0 374.8,49.6 395.6,46.2 402.0,57.6 391.5,70.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="402.0,57.6 395.6,46.2 400.4,33.4 404.8,32.2 426.6,43.1 425.0,50.0 415.4,59.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="425.0,50.0 426.1,45.3 443.1,41.9 450.5,46.0 456.8,58.5 448.5,67.4 443.9,68.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="456.8,58.5 450.5,46.0 465.3,29.9 475.5,43.1 457.5,58.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="475.5,43.1 480.4,44.1 486.3,60.6 472.5,67.5 457.5,58.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="486.3,60.6 480.4,44.1 490.3,36.2 507.9,39.5 507.5,51.9 487.2,61.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="507.5,51.9 507.8,43.5 528.8,38.2 534.4,43.9 534.9,57.2 528.9,62.6 512.8,59.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="534.9,57.2 534.4,43.9 552.6,36.2 560.1,41.5 551.1,61.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,41.0 576.0,66.7 553.9,65.8 551.1,61.6 560.1,41.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,78.8 0.0,51.4 13.5,59.3 13.5,75.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="31.5,75.5 31.5,51.5 50.0,59.7 47.1,79.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="47.3,78.4 50.0,59.7 60.3,53.3 71.1,66.1 59.1,80.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="59.1,80.5 71.1,66.1 80.3,67.1 83.0,84.1 65.6,89.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="83.5,87.2 79.4,61.7 99.5,66.0 103.3,85.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="103.4,86.0 99.5,66.0 110.5,57.5 125.0,77.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="128.8,77.9 138.2,61.4 155.9,58.5 155.0,83.8 133.9,85.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="154.9,86.8 155.8,59.4 160.3,58.9 174.2,64.7 178.0,86.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="177.4,82.3 174.2,64.7 185.7,57.8 199.0,63.9 194.1,80.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="194.1,80.6 199.0,63.9 200.1,63.4 217.8,67.0 222.1,78.0 219.4,83.0 200.1,87.8" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="222.1,78.0 217.8,67.0 222.4,59.4 240.8,56.5 245.4,61.0 239.9,78.6" fill="#ffffc6" stroke="#ffffc6" stroke-width="0.5"/><polygon points="239.9,78.6 245.4,61.0 265.5,59.1 265.5,83.3 246.3,86.8" fill="#63a35d" stroke="#63a35d" stroke-width="0.5"/><polygon points="265.5,83.3 265.5,61.6 281.4,59.0 292.2,67.8 288.9,81.3 281.7,86.2" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="288.9,81.3 292.2,67.8 301.7,65.0 309.5,68.9 312.4,87.2 307.4,93.3" fill="#cac27e" stroke="#cac27e" stroke-width="0.5"/><polygon points="312.4,87.2 309.5,68.9 327.3,63.4 333.4,78.7 330.3,84.6" fill="#96905e" stroke="#96905e" stroke-width="0.5"/><polygon points="333.4,78.7 327.4,63.6 346.8,53.9 350.5,56.6 356.6,77.4" fill="#3a5f36" stroke="#3a5f36" stroke-width="0.5"/><polygon points="350.5,56.6 374.6,48.5 375.9,57.0 366.1,73.4 356.1,75.6" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="375.9,57.0 391.5,70.9 391.3,76.8 381.7,82.3 366.1,73.4" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="391.3,76.8 391.5,70.9 402.0,57.6 415.4,59.7 417.9,72.8 399.4,82.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="425.6,79.8 417.9,72.8 415.4,59.7 425.0,50.0 443.9,68.9 436.1,78.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="448.5,67.4 456.8,58.5 457.5,58.5 472.5,67.5 472.5,82.3 463.6,88.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="472.5,82.3 472.5,67.5 486.3,60.6 487.2,61.0 495.6,77.6 488.1,86.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="495.6,77.6 487.2,61.0 507.5,51.9 512.8,59.4 505.2,77.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="512.8,59.4 528.9,62.6 529.6,77.0 515.1,86.0 505.2,77.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="529.6,77.0 528.9,62.6 534.9,57.2 551.1,61.6 553.9,65.8 549.0,84.2 542.0,85.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,66.7 576.0,85.5 548.7,85.5 553.9,65.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,105.7 0.0,78.8 13.5,75.9 20.7,80.0 21.8,99.7 6.3,106.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="21.8,99.7 20.7,80.0 31.5,75.5 45.9,79.2 41.4,102.7 32.1,104.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="41.5,102.5 46.0,78.2 59.1,80.5 65.6,89.1 64.5,102.3 61.2,104.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="64.5,102.3 65.6,89.1 87.1,83.0 83.1,108.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="83.1,108.5 86.5,86.9 103.7,85.5 107.7,101.4 87.0,111.7 85.0,111.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="107.7,101.4 103.8,85.8 125.0,77.1 128.8,77.9 133.9,85.6 132.3,95.4 122.4,105.3 115.4,106.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="132.3,95.4 133.9,85.6 158.9,83.5 155.1,108.5 151.9,110.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="155.1,108.5 158.4,86.7 174.2,86.1 179.8,104.6 175.5,111.1" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="179.8,104.6 173.2,82.8 194.1,80.6 200.1,87.8 198.9,102.3" fill="#599354" stroke="#599354" stroke-width="0.5"/><polygon points="198.5,107.3 200.1,87.8 219.4,83.0 223.5,101.1" fill="#619f5b" stroke="#619f5b" stroke-width="0.5"/><polygon points="223.5,101.1 219.4,83.0 222.1,78.0 239.9,78.6 246.3,86.8 243.8,95.8 229.7,105.3" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="243.8,95.8 246.3,86.8 265.5,83.3 265.5,115.5 262.4,115.3" fill="#589052" stroke="#589052" stroke-width="0.5"/><polygon points="265.5,110.5 265.5,83.3 281.7,86.2 284.0,102.3" fill="#5c9857" stroke="#5c9857" stroke-width="0.5"/><polygon points="290.7,106.5 284.0,102.3 281.7,86.2 288.9,81.3 309.3,94.5" fill="#b5ae71" stroke="#b5ae71" stroke-width="0.5"/><polygon points="306.4,94.5 312.4,87.2 330.3,84.6 335.9,102.6 314.0,104.9" fill="#8d8858" stroke="#8d8858" stroke-width="0.5"/><polygon points="337.0,105.9 330.3,84.6 333.4,78.7 354.8,77.5 357.2,96.2 355.1,99.9" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="357.2,96.2 354.6,76.0 366.1,73.4 381.7,82.3 378.1,94.6" fill="#395e35" stroke="#395e35" stroke-width="0.5"/><polygon points="378.1,94.6 381.7,82.3 391.3,76.8 399.4,82.2 404.4,97.1 399.4,103.4 382.9,102.0" fill="#375b34" stroke="#375b34" stroke-width="0.5"/><polygon points="404.4,97.1 399.4,82.2 417.9,72.8 425.6,79.8 418.8,96.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="418.8,96.7 425.6,79.8 436.1,78.7 445.8,96.5 443.1,100.5 425.6,104.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="445.8,96.5 436.1,78.7 443.9,68.9 448.5,67.4 463.6,88.5 461.3,93.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="461.3,93.8 463.6,88.5 472.5,82.3 488.1,86.3 490.9,101.3 467.8,104.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="490.9,101.3 488.1,86.3 495.6,77.6 505.2,77.2 515.1,86.0 515.1,92.6 497.6,108.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="515.1,92.6 515.1,86.0 529.6,77.0 542.0,85.0 530.8,104.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="530.1,106.0 542.0,85.0 550.3,84.0 555.6,105.2 548.8,113.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,85.5 576.0,104.3 555.6,105.2 550.7,85.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="6.3,106.7 21.8,99.7 32.1,104.7 28.6,126.3 16.8,129.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="28.6,126.3 32.1,104.7 41.0,102.8 49.2,127.5 40.5,133.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="49.2,127.5 40.9,102.4 61.2,104.5 60.0,126.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="60.0,126.5 61.2,104.5 64.5,102.3 83.1,108.5 85.0,111.1 68.1,131.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="87.0,111.7 107.7,101.4 115.4,106.4 111.4,123.4 97.0,127.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="111.4,123.4 115.4,106.4 122.4,105.3 136.8,123.8 134.5,128.1 119.6,131.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="136.8,123.8 122.4,105.3 132.3,95.4 151.9,110.7 148.9,118.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="148.9,118.1 151.9,110.7 155.1,108.5 175.5,111.1 178.6,124.1 172.8,133.1 159.7,132.1" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="178.6,124.1 175.5,111.1 179.8,104.6 202.3,101.9 203.8,121.8 199.3,126.4" fill="#63a35d" stroke="#63a35d" stroke-width="0.5"/><polygon points="203.8,121.8 202.6,106.3 223.5,101.1 229.7,105.3 230.1,109.9 220.6,125.1" fill="#52874d" stroke="#52874d" stroke-width="0.5"/><polygon points="222.6,129.0 220.6,125.1 230.1,109.9 247.1,122.4 242.0,134.6" fill="#497845" stroke="#497845" stroke-width="0.5"/><polygon points="230.1,109.9 229.7,105.3 243.8,95.8 262.4,115.3 247.1,122.4" fill="#6098b8" stroke="#6098b8" stroke-width="0.5"/><polygon points="260.3,112.8 284.0,102.3 290.7,106.5 292.7,118.3 286.1,125.6 268.3,123.3" fill="#436e3f" stroke="#436e3f" stroke-width="0.5"/><polygon points="292.7,118.3 290.7,106.5 307.3,95.8 314.0,104.9 311.9,121.7" fill="#938d5c" stroke="#938d5c" stroke-width="0.5"/><polygon points="311.9,121.4 314.0,104.9 339.5,102.2 337.0,123.3" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="337.1,122.1 339.1,105.2 355.1,99.9 367.8,121.4 354.9,130.4" fill="#467442" stroke="#467442" stroke-width="0.5"/><polygon points="367.8,121.4 355.1,99.9 357.2,96.2 378.1,94.6 382.9,102.0 373.8,121.9" fill="#416b3d" stroke="#416b3d" stroke-width="0.5"/><polygon points="373.3,123.1 382.9,102.0 399.4,103.4 403.1,124.1" fill="#436e3f" stroke="#436e3f" stroke-width="0.5"/><polygon points="402.7,122.0 399.4,103.4 404.4,97.1 418.8,96.7 425.6,104.5 423.4,119.8" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="422.9,123.4 425.6,104.5 443.1,100.5 447.8,119.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="447.8,119.5 443.1,100.5 445.8,96.5 461.3,93.8 467.8,104.7 465.8,117.7 456.8,125.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="465.8,117.7 467.8,104.7 490.9,101.3 496.0,106.4 487.0,123.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="490.9,138.8 487.0,123.7 497.1,104.4 513.0,118.8 500.9,138.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="513.0,118.8 499.4,106.5 515.1,92.6 531.8,105.6 522.1,119.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="522.1,119.3 531.2,106.5 548.8,113.2 550.1,119.5 534.0,137.7 530.0,135.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,104.3 576.0,127.8 562.3,128.1 550.1,119.5 548.8,113.2 555.6,105.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,139.5 0.0,105.7 6.3,106.7 16.8,129.5 10.8,138.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="10.8,138.1 16.8,129.5 28.6,126.3 40.5,133.5 40.5,148.5 21.6,152.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="40.5,147.0 40.5,133.5 49.2,127.5 60.0,126.5 68.1,131.8 71.1,138.9 58.3,151.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="71.1,138.9 68.1,131.8 85.0,111.1 87.0,111.7 97.0,127.4 93.7,137.6 78.5,142.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="93.7,137.6 97.0,127.4 111.4,123.4 119.6,131.6 116.1,144.5 105.7,149.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="116.1,144.5 119.6,131.6 134.5,128.1 141.4,146.9 131.6,153.1" fill="#64a55e" stroke="#64a55e" stroke-width="0.5"/><polygon points="141.4,146.9 134.5,128.1 136.8,123.8 148.9,118.1 159.7,132.1 147.6,148.3" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="147.6,148.3 159.7,132.1 172.8,133.1 175.8,143.0 164.0,158.2 156.6,158.6" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="175.8,143.0 172.8,133.1 178.6,124.1 199.3,126.4 200.1,144.5 193.5,151.3" fill="#5e9a58" stroke="#5e9a58" stroke-width="0.5"/><polygon points="200.1,144.5 199.3,126.4 203.8,121.8 220.6,125.1 222.6,129.0 218.1,146.8" fill="#497945" stroke="#497945" stroke-width="0.5"/><polygon points="216.5,153.3 222.6,129.0 242.0,134.6 244.3,143.3" fill="#447040" stroke="#447040" stroke-width="0.5"/><polygon points="244.3,143.3 242.0,134.6 247.1,122.4 262.2,115.4 268.3,123.3 264.8,146.4 248.0,146.5" fill="#6098b8" stroke="#6098b8" stroke-width="0.5"/><polygon points="264.7,147.5 268.3,123.3 286.1,125.6 291.7,143.5 290.1,146.2" fill="#467341" stroke="#467341" stroke-width="0.5"/><polygon points="291.7,143.5 286.1,125.6 292.7,118.3 311.6,121.7 309.9,138.5" fill="#375b34" stroke="#375b34" stroke-width="0.5"/><polygon points="309.9,138.5 311.6,121.4 335.6,123.2 329.2,145.3 320.0,147.6" fill="#436e3f" stroke="#436e3f" stroke-width="0.5"/><polygon points="336.0,121.6 354.9,130.4 354.6,145.2 336.4,149.3 329.2,145.3" fill="#b2ab6f" stroke="#b2ab6f" stroke-width="0.5"/><polygon points="354.6,147.2 354.9,130.4 367.8,121.4 375.0,122.0 379.7,145.3 374.4,150.6" fill="#9e9863" stroke="#9e9863" stroke-width="0.5"/><polygon points="379.7,145.3 375.3,123.2 401.2,124.1 402.1,139.8 396.4,146.1" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="402.1,139.8 401.1,122.1 425.9,119.6 428.5,141.5 427.5,143.6 422.7,145.6" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="428.5,141.5 426.3,122.9 447.8,119.5 456.8,125.9 456.8,131.6 455.3,133.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="451.0,159.2 455.3,133.4 456.8,131.6 473.6,142.8 465.8,166.6 456.9,164.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="456.8,131.6 456.8,125.9 465.8,117.7 487.0,123.7 491.0,139.1 473.6,142.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="530.0,135.3 535.7,138.7 532.2,150.2 514.3,160.8 507.9,142.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="500.9,138.6 513.0,118.8 522.1,119.3 530.0,135.3 507.9,142.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="532.5,139.4 550.1,119.5 562.3,128.1 552.4,145.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,127.8 576.0,148.5 551.0,148.5 562.3,128.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,167.4 0.0,139.5 10.8,138.1 21.6,152.3 16.8,166.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="16.8,166.7 21.6,152.3 38.8,148.8 41.2,171.8 22.7,174.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="41.2,171.8 38.5,146.5 58.3,151.7 61.4,167.6 45.3,174.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="61.4,167.6 58.3,151.7 71.1,138.9 78.5,142.3 83.0,164.9 62.1,167.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="83.8,169.0 78.5,142.3 93.7,137.6 105.8,149.6 103.9,160.5 100.2,165.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="103.9,160.5 105.7,149.6 116.1,144.5 131.6,153.1 128.4,166.6" fill="#fff0bb" stroke="#fff0bb" stroke-width="0.5"/><polygon points="130.5,172.9 128.4,166.6 131.6,153.1 141.4,146.9 147.6,148.3 156.6,158.6 149.8,172.9" fill="#609e5a" stroke="#609e5a" stroke-width="0.5"/><polygon points="164.0,158.2 175.8,143.0 193.5,151.3 193.5,158.5 173.7,167.2" fill="#bab375" stroke="#bab375" stroke-width="0.5"/><polygon points="174.8,182.9 173.7,167.2 190.9,159.6 194.2,177.8 181.0,187.7" fill="#96905e" stroke="#96905e" stroke-width="0.5"/><polygon points="193.5,154.5 193.5,151.3 200.1,144.5 221.7,147.2 222.5,167.3 215.4,169.5" fill="#467342" stroke="#467342" stroke-width="0.5"/><polygon points="222.4,165.4 221.9,151.3 244.3,143.3 248.0,146.5 243.9,164.9" fill="#3a5f36" stroke="#3a5f36" stroke-width="0.5"/><polygon points="243.9,164.9 248.0,146.5 265.9,146.4 268.0,165.2 250.5,174.0" fill="#6098b8" stroke="#6098b8" stroke-width="0.5"/><polygon points="268.0,165.2 266.0,147.5 290.1,146.2 294.1,164.6 274.5,169.7" fill="#447140" stroke="#447140" stroke-width="0.5"/><polygon points="293.6,162.3 290.1,146.2 291.7,143.5 309.9,138.5 320.0,147.6 317.5,155.0 306.3,164.1" fill="#4a7a46" stroke="#4a7a46" stroke-width="0.5"/><polygon points="317.5,155.0 320.0,147.6 329.2,145.3 336.4,149.3 339.3,167.5 330.9,174.7" fill="#548a4e" stroke="#548a4e" stroke-width="0.5"/><polygon points="339.3,167.5 336.4,149.3 357.3,144.6 353.5,168.6" fill="#9c9661" stroke="#9c9661" stroke-width="0.5"/><polygon points="353.5,168.6 356.8,147.6 374.4,150.6 376.1,165.9 357.8,172.9" fill="#767149" stroke="#767149" stroke-width="0.5"/><polygon points="376.1,165.9 374.4,150.6 379.7,145.3 396.4,146.1 399.6,162.2 381.3,170.0" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="399.6,162.2 396.4,146.1 402.1,139.8 422.7,145.6 412.9,168.8 408.8,168.8" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="412.9,168.8 422.7,145.6 427.5,143.6 439.6,157.9 425.9,176.1 422.5,175.5" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="427.5,143.6 428.5,141.5 455.3,133.4 451.0,159.2 439.6,157.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="466.0,165.9 473.6,142.8 490.5,139.2 490.5,165.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="490.5,166.4 490.5,138.8 500.9,138.6 507.9,142.7 514.3,160.8 513.8,162.8 508.0,167.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="513.8,162.8 514.3,160.8 532.2,150.2 539.5,165.3 532.3,173.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="539.5,165.3 532.2,150.2 535.2,140.3 554.3,146.5 553.2,164.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,148.5 576.0,166.3 553.4,163.1 554.2,148.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,193.5 0.0,167.4 16.8,166.7 22.7,174.1 19.9,193.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="19.9,193.8 22.7,174.1 41.2,171.8 45.3,174.3 46.1,185.2 38.6,196.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="46.1,185.2 45.3,174.3 61.4,167.6 62.1,167.9 70.4,195.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="68.9,190.5 62.1,167.9 88.2,164.2 84.7,184.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="84.7,184.8 87.5,168.1 100.2,165.2 112.0,185.4 104.4,195.1 93.6,193.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="100.2,165.2 103.9,160.5 128.4,166.6 130.5,172.9 125.5,183.2 112.0,185.4" fill="#eedaaa" stroke="#eedaaa" stroke-width="0.5"/><polygon points="131.3,192.2 125.5,183.2 130.5,172.9 149.8,172.9 155.9,184.9 151.4,194.3" fill="#4d7e48" stroke="#4d7e48" stroke-width="0.5"/><polygon points="149.8,172.9 156.6,158.6 164.0,158.2 173.7,167.2 174.8,182.9 155.9,184.9" fill="#b0aa6e" stroke="#b0aa6e" stroke-width="0.5"/><polygon points="194.2,177.8 189.5,151.8 215.4,169.5 205.8,179.4" fill="#7c774d" stroke="#7c774d" stroke-width="0.5"/><polygon points="211.9,202.2 205.8,179.4 215.4,169.5 220.8,167.8 230.4,187.0 218.5,200.9" fill="#385c34" stroke="#385c34" stroke-width="0.5"/><polygon points="230.4,187.0 219.7,165.5 243.9,164.9 250.6,174.2 237.3,187.1" fill="#426d3e" stroke="#426d3e" stroke-width="0.5"/><polygon points="250.3,174.1 268.0,165.2 274.5,169.7 274.5,184.9 261.7,189.8" fill="#6098b8" stroke="#6098b8" stroke-width="0.5"/><polygon points="274.5,184.9 274.5,169.7 291.1,165.4 294.6,187.2 288.0,194.4" fill="#5d9957" stroke="#5d9957" stroke-width="0.5"/><polygon points="294.6,187.2 290.6,161.9 306.3,164.1 312.8,178.4 308.6,185.2" fill="#589152" stroke="#589152" stroke-width="0.5"/><polygon points="312.8,178.4 306.3,164.1 317.5,155.0 331.9,176.0" fill="#4f824a" stroke="#4f824a" stroke-width="0.5"/><polygon points="330.1,175.4 339.3,167.5 353.5,168.6 357.8,172.9 357.8,185.1 348.6,191.0 333.0,183.6" fill="#4c7c47" stroke="#4c7c47" stroke-width="0.5"/><polygon points="357.8,185.1 357.8,172.9 376.1,165.9 381.3,170.0 383.1,181.2 372.1,193.3" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="383.1,181.2 381.3,170.0 399.6,162.2 408.8,168.8 397.3,186.6" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="403.9,203.2 397.3,186.6 408.8,168.8 412.9,168.8 422.5,175.5 406.0,203.1" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="451.0,159.2 456.9,164.8 441.8,185.0 433.3,183.6 425.9,176.1 439.6,157.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="441.7,185.0 456.9,164.8 465.2,166.4 467.6,178.9 460.2,192.3 448.8,193.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="467.6,178.9 465.1,165.9 491.8,165.4 488.1,188.9 485.4,189.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="488.1,188.9 491.6,166.5 508.0,167.7 511.4,187.2 503.3,196.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="511.4,187.2 508.0,167.7 513.8,162.8 532.3,173.8 532.8,187.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="532.8,186.8 532.3,173.8 539.5,165.3 551.6,164.8 555.0,186.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,166.3 576.0,182.5 554.5,183.5 551.3,162.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,219.7 0.0,193.5 20.2,193.5 20.2,217.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="20.2,219.4 20.2,193.8 38.6,196.0 42.2,202.4 39.1,214.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="42.2,202.4 38.6,196.0 46.1,185.2 66.6,193.8 66.0,201.1 61.4,205.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="66.0,201.1 66.8,191.2 84.7,184.8 93.6,193.7 81.9,211.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="84.6,218.9 81.9,211.3 93.6,193.7 104.4,195.1 107.6,204.1 91.6,222.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="107.6,204.1 104.4,195.1 112.0,185.4 125.5,183.2 131.3,192.2 127.8,207.9 119.4,212.0" fill="#dcca9d" stroke="#dcca9d" stroke-width="0.5"/><polygon points="127.8,207.9 131.3,192.2 151.4,194.3 153.5,202.0 141.0,214.5" fill="#467442" stroke="#467442" stroke-width="0.5"/><polygon points="153.5,202.0 151.4,194.3 155.9,184.9 174.8,182.9 181.0,187.7 181.2,188.4 166.3,210.0" fill="#487643" stroke="#487643" stroke-width="0.5"/><polygon points="164.8,212.1 181.2,188.4 192.3,200.7 179.2,217.9" fill="#3f683b" stroke="#3f683b" stroke-width="0.5"/><polygon points="181.2,188.4 181.0,187.7 194.2,177.8 205.8,179.4 211.6,201.4 201.5,203.3 192.3,200.7" fill="#817d51" stroke="#817d51" stroke-width="0.5"/><polygon points="218.5,200.9 230.4,187.0 237.3,187.1 248.8,202.7 237.8,213.7" fill="#50844b" stroke="#50844b" stroke-width="0.5"/><polygon points="248.8,202.7 237.3,187.1 250.5,174.4 261.7,189.8 257.5,202.0" fill="#4b7b46" stroke="#4b7b46" stroke-width="0.5"/><polygon points="264.3,208.8 257.5,202.0 261.7,189.8 274.5,184.9 288.0,194.5 281.3,205.7" fill="#589152" stroke="#589152" stroke-width="0.5"/><polygon points="288.0,194.5 294.6,187.2 308.6,185.2 318.1,201.5 307.5,209.7" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="308.6,185.2 312.8,178.4 330.4,176.2 333.0,183.6 322.9,201.7 318.1,201.5" fill="#61a05b" stroke="#61a05b" stroke-width="0.5"/><polygon points="322.9,201.7 333.0,183.6 348.6,191.0 346.4,205.7 331.7,209.2" fill="#65a65f" stroke="#65a65f" stroke-width="0.5"/><polygon points="346.4,205.7 348.6,191.0 357.8,185.1 372.1,193.3 374.3,204.0 353.5,211.8" fill="#b9b274" stroke="#b9b274" stroke-width="0.5"/><polygon points="374.0,202.7 372.1,193.3 383.1,181.2 397.3,186.6 404.5,204.6" fill="#3c6238" stroke="#3c6238" stroke-width="0.5"/><polygon points="404.3,206.0 422.5,175.5 425.9,176.1 433.3,183.6 425.3,202.3" fill="#3d6439" stroke="#3d6439" stroke-width="0.5"/><polygon points="425.3,202.3 433.3,183.6 441.7,185.0 448.8,193.2 444.9,208.3 438.8,211.9" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="444.9,208.3 448.8,193.2 460.2,192.3 472.2,206.0 463.5,216.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="472.5,206.4 460.2,192.3 467.6,178.9 485.4,189.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="472.8,205.9 485.4,189.8 488.1,188.9 503.3,196.5 504.5,203.8 490.5,217.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="504.5,203.8 503.3,196.5 511.4,187.2 532.4,187.2 532.4,208.2 516.8,212.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="532.3,209.2 532.3,186.8 551.2,186.8 555.8,204.8 551.2,209.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,182.5 576.0,204.8 555.8,204.8 550.5,183.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,238.5 0.0,219.7 21.6,217.3 26.1,238.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="25.6,236.0 22.0,218.9 39.1,214.6 49.5,225.0 47.7,228.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="49.5,225.0 39.1,214.7 42.2,202.4 61.4,205.2 57.5,222.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="57.5,222.3 61.4,205.2 66.0,201.1 81.9,211.3 84.6,218.9 68.9,229.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="91.6,222.4 107.6,204.1 119.4,212.0 117.9,223.6 102.9,231.9 95.9,229.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="117.9,223.6 119.4,212.0 127.8,207.9 141.0,214.5 142.8,223.2 131.2,234.8" fill="#cebd93" stroke="#cebd93" stroke-width="0.5"/><polygon points="142.8,223.2 141.0,214.5 153.5,202.0 168.6,211.5 157.4,228.9" fill="#487643" stroke="#487643" stroke-width="0.5"/><polygon points="160.3,238.2 157.4,228.9 167.5,213.2 179.2,217.9 187.4,229.8 183.2,236.0" fill="#65a55e" stroke="#65a55e" stroke-width="0.5"/><polygon points="187.4,229.8 179.2,217.9 192.3,200.7 201.5,203.3 192.9,229.1" fill="#619f5b" stroke="#619f5b" stroke-width="0.5"/><polygon points="192.9,229.1 201.5,203.3 213.1,201.1 213.9,225.6 199.8,231.2" fill="#d8fba3" stroke="#d8fba3" stroke-width="0.5"/><polygon points="213.9,225.6 213.1,202.0 218.5,200.9 237.8,213.7 238.2,223.4 222.8,230.7" fill="#b9b273" stroke="#b9b273" stroke-width="0.5"/><polygon points="238.2,223.4 237.8,213.7 248.8,202.7 257.5,202.0 264.3,208.8 263.2,223.4 247.0,230.4" fill="#aea76d" stroke="#aea76d" stroke-width="0.5"/><polygon points="263.2,223.4 264.3,208.8 281.3,205.7 288.3,222.6 272.5,230.5" fill="#4d7f48" stroke="#4d7f48" stroke-width="0.5"/><polygon points="288.3,222.6 281.3,205.7 288.0,194.5 307.5,209.7 305.2,219.4 292.9,224.3" fill="#5f9c59" stroke="#5f9c59" stroke-width="0.5"/><polygon points="305.2,219.4 307.5,209.7 318.1,201.5 322.9,201.7 331.7,209.2 329.4,228.8 316.9,229.8" fill="#cdc580" stroke="#cdc580" stroke-width="0.5"/><polygon points="329.5,228.5 331.7,209.2 346.4,205.7 353.5,211.8 354.0,228.5" fill="#cbc47f" stroke="#cbc47f" stroke-width="0.5"/><polygon points="354.1,230.0 353.5,211.8 373.1,204.4 379.2,232.7" fill="#beb777" stroke="#beb777" stroke-width="0.5"/><polygon points="377.9,226.7 372.8,202.6 402.4,204.5 397.4,221.2" fill="#95905d" stroke="#95905d" stroke-width="0.5"/><polygon points="406.8,235.8 397.4,221.2 402.8,203.2 410.4,202.8 423.9,228.9 418.2,234.8" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="423.9,228.9 411.4,204.7 425.3,202.3 438.8,211.9 435.3,225.9" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="434.6,228.4 438.8,211.9 444.9,208.3 463.5,216.1 463.5,228.4" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="463.5,229.1 463.5,216.1 472.5,205.7 490.5,217.1 490.5,226.5 478.1,234.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="490.5,226.5 490.5,217.1 504.5,203.8 516.8,212.6 514.9,228.9 507.0,235.1 502.9,235.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="514.9,228.9 516.8,212.6 533.7,207.8 537.5,231.9 532.5,235.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="537.5,231.9 534.0,209.2 551.2,209.2 557.3,233.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,204.8 576.0,229.5 556.3,229.5 551.2,209.2 555.8,204.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,258.1 0.0,238.5 24.8,238.5 26.0,242.5 20.4,254.0 0.1,258.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="26.0,242.5 24.2,236.4 47.7,228.6 50.3,245.2 42.8,250.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="50.3,245.2 47.7,228.6 49.5,225.0 57.5,222.3 68.9,229.1 70.4,248.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="70.2,246.6 68.9,229.1 84.6,218.9 91.6,222.4 95.9,229.1 82.0,247.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="82.0,247.7 95.9,229.1 102.9,231.9 109.1,248.3 94.0,260.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="109.1,248.3 102.9,231.9 117.9,223.6 131.2,234.8 131.3,238.0 114.4,249.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="131.3,238.0 131.2,234.8 142.8,223.2 157.4,228.9 160.3,238.2 157.1,246.1 148.6,251.6 142.4,249.9" fill="#5e9b58" stroke="#5e9b58" stroke-width="0.5"/><polygon points="157.1,246.1 160.3,238.2 183.2,236.0 184.8,251.8 175.1,259.5" fill="#ccc47f" stroke="#ccc47f" stroke-width="0.5"/><polygon points="184.8,251.8 183.2,236.0 187.4,229.8 192.9,229.1 199.8,231.2 207.2,251.9 202.6,259.0" fill="#cdc580" stroke="#cdc580" stroke-width="0.5"/><polygon points="207.2,251.9 199.8,231.2 213.9,225.6 222.8,230.7 222.8,246.3" fill="#aca296" stroke="#aca296" stroke-width="0.5"/><polygon points="222.7,246.3 222.7,230.7 238.2,223.4 247.0,230.4 248.0,244.6 227.5,249.7" fill="#999085" stroke="#999085" stroke-width="0.5"/><polygon points="248.1,246.0 247.0,230.4 263.2,223.4 272.5,230.5 273.0,245.8 262.9,250.5" fill="#9c9762" stroke="#9c9762" stroke-width="0.5"/><polygon points="273.0,245.8 272.5,230.5 288.3,222.6 292.9,224.3 294.7,243.6 277.9,248.2" fill="#958f5d" stroke="#958f5d" stroke-width="0.5"/><polygon points="294.7,243.6 292.9,224.3 305.2,219.4 316.9,229.8 309.2,245.3 302.1,248.3" fill="#bfb878" stroke="#bfb878" stroke-width="0.5"/><polygon points="309.2,245.3 316.9,229.8 329.2,228.8 333.0,245.8 325.3,254.8" fill="#cdc580" stroke="#cdc580" stroke-width="0.5"/><polygon points="333.0,245.8 329.2,228.5 355.9,228.5 349.9,250.0" fill="#b3a99c" stroke="#b3a99c" stroke-width="0.5"/><polygon points="351.7,253.7 349.9,250.0 355.5,230.1 374.6,232.2 377.8,241.3 368.2,255.7" fill="#9b9287" stroke="#9b9287" stroke-width="0.5"/><polygon points="377.8,241.3 373.1,228.1 397.4,221.2 406.8,235.8 398.8,247.5 394.0,248.8" fill="#726e47" stroke="#726e47" stroke-width="0.5"/><polygon points="398.8,247.5 406.8,235.8 418.2,234.8 426.4,252.7 413.6,263.5" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="426.4,252.7 418.2,234.8 423.9,228.9 437.3,225.3 442.8,245.3 433.0,253.9" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="442.8,245.3 438.2,228.4 464.4,228.4 456.2,248.3" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="456.2,248.3 464.0,229.3 478.1,234.0 481.3,256.4 460.0,255.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="481.5,257.6 478.1,234.0 490.5,226.5 502.9,235.1 490.6,255.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="507.0,235.1 514.9,228.9 532.5,235.6 529.7,257.1 516.4,254.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="529.9,255.9 532.5,235.6 537.5,231.9 551.9,233.1 553.3,255.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,229.5 576.0,254.2 553.2,254.2 551.6,229.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.1,258.1 20.4,254.0 26.7,267.7 18.6,276.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="26.7,267.8 20.4,254.0 26.0,242.5 42.8,250.9 42.8,267.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="42.8,265.8 42.8,250.9 50.3,245.2 68.1,248.3 64.7,267.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="64.7,267.2 68.5,246.4 82.0,247.7 93.8,260.1 85.5,272.6 69.0,274.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="94.5,260.0 109.1,248.3 114.4,249.9 123.6,265.9 123.2,273.0 112.0,275.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="123.6,265.9 114.4,249.9 131.3,238.0 142.4,249.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="123.2,274.3 123.6,265.9 142.4,249.9 148.6,251.6 150.7,268.1 144.8,276.1" fill="#5e9a58" stroke="#5e9a58" stroke-width="0.5"/><polygon points="150.7,268.1 148.6,251.6 157.1,246.1 175.1,259.5 173.2,272.6" fill="#5c9756" stroke="#5c9756" stroke-width="0.5"/><polygon points="173.2,272.2 175.1,259.5 184.8,251.8 202.6,259.0 203.1,262.0 193.7,275.2" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/><polygon points="203.1,262.0 202.6,259.0 207.2,251.9 222.7,246.3 227.5,249.7 230.6,270.0 223.0,276.2" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/><polygon points="230.6,270.0 227.5,249.7 250.4,244.0 242.6,270.0" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/><polygon points="242.6,270.0 249.7,246.5 262.9,250.5 262.9,268.5 249.6,274.6" fill="#e9ecf0" stroke="#e9ecf0" stroke-width="0.5"/><polygon points="262.9,268.5 262.9,250.5 273.0,245.8 277.9,248.2 283.2,265.4 271.6,272.8" fill="#a6a8ab" stroke="#a6a8ab" stroke-width="0.5"/><polygon points="283.2,265.4 277.9,248.2 294.7,243.6 302.1,248.3 301.1,261.7 290.9,268.0" fill="#726e47" stroke="#726e47" stroke-width="0.5"/><polygon points="301.1,261.7 302.1,248.3 309.2,245.3 325.3,254.8 325.7,265.5 312.3,269.4" fill="#a29c66" stroke="#a29c66" stroke-width="0.5"/><polygon points="325.8,267.8 325.3,254.8 333.0,245.8 349.9,250.0 351.7,253.7 347.2,264.8" fill="#b2ab6f" stroke="#b2ab6f" stroke-width="0.5"/><polygon points="354.1,278.6 347.2,264.8 351.7,253.7 368.2,255.7 374.7,270.7" fill="#b9bdc0" stroke="#b9bdc0" stroke-width="0.5"/><polygon points="375.0,271.5 368.2,255.7 377.8,241.3 394.0,248.8 387.6,267.6" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="387.6,267.6 394.0,248.8 398.8,247.5 415.5,265.5 401.4,276.3" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="411.2,265.5 426.4,252.7 433.0,253.9 439.6,267.2 424.9,277.0" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="439.6,267.2 433.0,253.9 442.8,245.3 456.2,248.3 460.0,255.4 454.1,267.5 444.7,269.2" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="465.7,283.1 454.1,267.5 460.0,255.4 482.7,256.5 481.4,269.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="490.6,255.9 502.9,235.1 507.0,235.1 516.4,254.0 503.7,261.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="506.9,282.4 503.7,261.7 516.4,254.0 528.8,256.9 528.8,261.7 517.4,281.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="528.8,261.7 528.8,255.9 551.9,255.5 553.5,276.3 546.6,283.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,254.2 576.0,275.3 553.5,276.3 551.8,254.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,285.0 0.0,258.1 0.1,258.1 18.6,276.6 17.0,283.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="17.0,283.6 18.6,276.6 26.7,267.8 40.9,267.8 43.6,290.4 23.1,292.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="43.6,290.4 40.6,265.6 64.7,267.2 69.0,274.3 66.2,283.1 44.8,291.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="75.3,299.4 66.2,283.1 69.0,274.3 85.5,272.6 94.2,286.8 87.9,296.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="94.2,286.8 85.5,272.6 94.1,259.6 112.0,275.3 102.5,286.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="102.5,286.3 112.0,275.3 124.7,272.7 125.8,294.1 112.1,299.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="125.8,294.1 124.8,274.4 144.8,276.1 150.4,291.8 148.0,298.5 134.4,300.7" fill="#bfaf88" stroke="#bfaf88" stroke-width="0.5"/><polygon points="150.4,291.8 144.8,276.1 150.7,268.1 173.0,272.6 170.8,284.8" fill="#d3dcca" stroke="#d3dcca" stroke-width="0.5"/><polygon points="170.8,284.8 173.0,272.2 193.7,275.2 197.6,289.8 177.6,294.8" fill="#d8dbdf" stroke="#d8dbdf" stroke-width="0.5"/><polygon points="197.6,289.8 193.7,275.2 203.1,262.0 223.0,276.2 222.8,277.2 203.9,294.3" fill="#e1e5e9" stroke="#e1e5e9" stroke-width="0.5"/><polygon points="222.8,277.2 223.0,276.2 230.6,270.0 242.6,270.0 249.6,274.6 251.5,290.2 237.2,302.0" fill="#e5e9ed" stroke="#e5e9ed" stroke-width="0.5"/><polygon points="251.5,290.2 249.6,274.6 262.9,268.5 271.6,272.8 274.3,289.8 266.7,294.6" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="274.3,289.8 271.6,272.8 283.2,265.4 290.9,268.0 293.1,283.1 283.1,291.4" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="293.1,283.1 290.9,268.0 301.1,261.7 312.3,269.4 308.1,286.5" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="308.1,286.5 312.3,269.4 327.7,264.9 331.4,285.8 328.6,289.8 311.7,291.8" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="331.4,285.8 328.2,267.5 347.2,264.8 354.2,278.5 352.4,283.8" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="357.3,296.3 352.4,283.8 354.1,278.5 375.6,270.4 379.8,293.0" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="380.0,294.4 375.8,271.3 387.6,267.6 401.4,276.3 400.9,289.0" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="400.8,292.4 401.4,276.3 413.3,267.2 424.9,277.0 426.4,290.0" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="426.6,292.5 424.9,277.0 439.6,267.2 444.7,269.2 441.6,292.5" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="441.5,293.2 444.7,269.2 454.1,267.5 467.4,285.4" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="463.4,285.0 481.4,269.9 495.6,284.1 483.1,296.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="481.4,269.9 482.6,257.4 490.6,255.9 503.7,261.7 507.1,283.6 495.6,284.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="542.6,303.2 528.3,302.6 525.8,286.7 551.8,279.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="517.4,281.0 528.8,261.7 544.7,281.4 525.8,286.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,275.3 576.0,303.3 545.5,284.8 553.5,276.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,306.8 0.0,285.0 17.0,283.6 23.1,292.2 18.8,306.6 15.3,309.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="18.8,306.6 23.1,292.2 43.6,290.4 44.8,291.1 49.2,308.6 40.2,317.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="49.2,308.6 44.8,291.1 66.2,283.1 76.1,300.7 61.9,311.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="88.1,322.9 72.6,300.1 87.9,296.2 99.1,310.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="99.1,310.6 87.9,296.2 94.2,286.8 102.5,286.3 112.1,299.3 108.2,310.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="108.2,310.1 112.1,299.3 125.8,294.1 134.4,300.7 130.0,312.1 113.8,316.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="139.0,327.2 130.0,312.1 134.4,300.7 152.7,297.7 148.0,324.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="146.6,302.4 150.4,291.8 170.8,284.8 177.6,294.8 174.7,310.4" fill="#a7afa0" stroke="#a7afa0" stroke-width="0.5"/><polygon points="173.7,315.7 177.6,294.8 197.6,289.8 204.1,294.4 201.2,311.8" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="203.7,294.5 222.8,277.2 235.9,299.7 229.2,304.1" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="201.2,311.8 204.0,294.7 229.2,304.1 222.3,317.1" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="239.5,300.1 251.5,290.2 266.7,294.6 266.5,308.0 250.4,318.4 250.1,318.4" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="266.5,308.0 266.7,294.6 274.3,289.8 283.1,291.4 290.8,306.4 284.0,317.3 278.5,317.6" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="290.8,306.4 283.1,291.4 293.1,283.1 308.1,286.5 311.7,291.8 307.4,305.5" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="311.6,312.2 307.4,305.5 311.7,291.8 328.6,289.8 336.6,309.5" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="336.2,308.7 328.6,289.8 331.4,285.8 352.4,283.8 357.3,296.3 355.1,302.3" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="355.1,302.3 357.3,296.3 381.1,292.9 383.0,312.0 377.3,318.4 362.9,316.2" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="383.0,312.0 381.2,294.1 403.9,288.2 405.5,307.7 398.5,313.9" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="405.5,307.7 404.2,292.1 429.7,289.7 423.9,312.1 421.6,313.0" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="423.9,312.1 429.0,292.5 442.2,292.5 448.9,310.1 439.3,319.8" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="448.9,310.1 442.3,292.9 465.7,285.9 461.3,311.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="461.3,311.4 465.6,286.3 483.1,296.5 485.0,310.2 466.4,315.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="485.0,310.2 483.1,296.5 495.6,284.1 505.6,283.7 508.3,304.4 501.0,311.6 488.8,312.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="508.3,304.4 505.4,282.6 517.4,281.0 525.8,286.7 528.3,302.6 523.3,307.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="527.0,329.5 523.3,307.1 528.3,302.6 542.6,303.2 546.2,308.8 538.0,327.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,303.3 576.0,304.5 561.2,311.9 546.2,308.8 542.6,303.2 548.9,286.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,330.6 0.0,306.8 15.3,309.0 14.4,329.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="14.4,329.3 15.3,309.0 18.8,306.6 40.2,317.6 38.6,330.2 18.3,332.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="43.0,336.2 38.6,330.2 40.2,317.6 49.2,308.6 61.9,311.6 67.9,329.7 62.7,336.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="67.9,329.7 61.9,311.6 74.0,302.3 88.1,322.9 86.8,329.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="86.5,330.3 88.1,322.9 99.1,310.6 108.2,310.1 113.8,316.7 114.2,329.6 110.3,336.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="114.2,329.6 113.8,316.7 130.0,312.1 140.4,329.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="148.1,324.1 151.7,303.9 178.1,311.4 177.3,314.7 164.7,329.6 160.8,330.5" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="178.8,346.5 164.7,329.6 177.3,314.7 195.6,347.0" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="194.4,344.9 177.6,315.2 201.2,311.8 202.8,338.5" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="202.8,338.5 201.2,311.9 222.3,317.1 225.7,327.4 218.7,337.7" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="225.7,327.4 222.3,317.1 229.2,304.1 238.3,298.1 250.1,318.4 241.6,328.1" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="250.4,318.4 266.5,308.0 278.5,317.6 266.6,331.9" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="266.8,334.2 266.6,331.9 278.5,317.6 284.0,317.3 292.8,330.3 284.0,344.0" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="292.8,330.3 284.0,317.3 290.8,306.4 307.4,305.5 311.6,312.2 310.3,330.4" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="310.4,328.5 311.6,312.2 335.8,309.6 337.8,326.5 328.5,332.1" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="337.8,326.5 335.7,308.9 355.1,302.3 362.9,316.2 350.7,332.6" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="352.3,336.4 350.7,332.6 362.9,316.2 377.3,318.4 381.6,339.6" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="381.5,338.9 377.3,318.4 383.0,312.0 398.5,313.9 403.2,332.5 400.7,335.5" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="403.2,332.5 398.5,313.9 405.5,307.7 421.6,313.0 415.3,330.0" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="415.3,330.0 421.6,313.0 423.9,312.1 439.2,319.8 440.3,328.1 427.5,339.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="440.3,328.1 439.2,319.8 448.9,310.1 461.3,311.4 466.4,315.8 464.3,335.4 455.6,337.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="464.3,335.4 466.4,315.8 485.0,310.2 488.8,312.7 488.1,334.3 480.7,341.7 474.3,342.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="488.1,334.3 488.8,312.7 501.0,311.6 511.6,329.8 506.5,335.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="501.0,311.6 508.3,304.4 523.3,307.1 526.7,328.0 511.6,329.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="538.0,327.5 546.2,308.8 561.2,311.9 556.8,331.8 551.5,334.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,304.5 576.0,337.1 556.8,331.8 561.2,311.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,354.3 0.0,330.6 14.4,329.3 18.3,332.8 16.3,350.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="16.3,350.7 18.3,332.8 38.6,330.2 43.0,336.2 38.9,356.4 27.9,359.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="38.9,356.4 43.0,336.2 62.7,336.2 69.2,359.1 68.8,359.6 49.5,363.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="69.2,359.1 62.7,336.2 67.9,329.7 88.2,329.0 85.1,356.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="85.1,356.8 88.0,330.6 110.2,336.0 111.5,341.5 99.2,363.6 98.4,364.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="111.5,341.5 110.2,336.0 114.2,329.6 137.2,329.6 137.2,346.0 130.7,351.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="137.2,346.0 137.2,327.8 148.1,324.1 160.8,330.5 153.5,350.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="153.5,350.2 160.8,330.5 164.7,329.6 178.8,346.5 160.3,360.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="172.3,377.9 160.2,363.5 160.3,360.4 178.8,346.5 193.3,346.9 196.1,359.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="204.0,366.2 196.1,359.3 193.1,345.9 202.8,338.5 218.7,337.7 230.9,358.1 229.8,363.2" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="230.9,358.1 218.7,337.7 225.7,327.4 241.6,328.1 247.1,345.7" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="247.1,345.7 241.6,328.1 250.1,318.4 250.4,318.4 266.6,331.9 266.8,334.2 255.8,347.1" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="264.0,359.4 255.8,347.1 266.8,334.2 284.0,344.0 285.7,358.3" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="285.5,357.0 284.0,344.0 292.8,330.3 308.2,330.4 309.6,356.7 301.5,361.2" fill="#7c8177" stroke="#7c8177" stroke-width="0.5"/><polygon points="309.6,356.7 308.0,328.0 328.5,332.1 328.5,359.4" fill="#8f8366" stroke="#8f8366" stroke-width="0.5"/><polygon points="328.5,359.4 328.5,332.1 337.8,326.5 350.7,332.6 352.3,336.4 349.0,356.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="349.0,356.4 352.3,336.4 381.1,339.6 379.5,355.5 375.9,359.4 355.7,362.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="379.5,355.5 381.1,339.0 400.7,335.5 411.2,360.7 404.0,363.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="411.2,360.7 400.7,335.5 403.2,332.5 415.3,330.0 427.5,339.5 427.5,354.4 414.8,361.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="427.5,354.4 427.5,339.5 440.3,328.1 455.6,337.5 443.7,359.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="448.3,366.5 443.7,359.9 455.6,337.5 464.3,335.4 474.3,342.1 467.0,365.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="489.8,366.5 480.5,341.5 509.7,357.3 505.2,363.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="508.9,356.8 480.7,341.6 488.1,334.3 506.5,335.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="509.0,357.8 506.5,335.7 511.6,329.8 528.8,327.8 528.8,357.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="528.8,357.8 528.8,329.2 538.0,327.5 551.5,334.3 549.6,357.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,337.1 576.0,358.2 549.5,359.0 551.5,334.3 556.8,331.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,373.5 0.0,354.3 16.3,350.7 27.9,359.9 22.9,373.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="46.5,396.0 31.2,396.0 22.9,373.5 27.9,359.9 38.9,356.4 49.5,363.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="72.0,396.0 46.5,396.0 49.5,363.3 68.8,359.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="93.9,396.0 72.0,396.0 68.8,359.6 69.2,359.1 85.1,356.8 98.4,364.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="132.2,396.0 93.9,396.0 98.4,364.0 99.2,363.6 128.3,369.5 133.2,377.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="99.2,363.6 111.5,341.5 130.7,351.1 128.3,369.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="133.2,377.2 128.3,369.5 130.7,351.1 137.3,346.0 153.5,350.2 160.3,360.4 160.2,363.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="173.9,396.0 132.2,396.0 133.2,377.2 160.2,363.5 172.3,377.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="202.8,396.0 173.9,396.0 172.3,377.9 196.1,359.3 204.0,366.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="228.8,396.0 202.8,396.0 204.0,366.2 231.1,363.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="263.9,396.0 228.8,396.0 231.0,365.4 256.7,372.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="229.4,365.0 230.9,358.1 247.1,345.7 255.8,347.1 264.0,359.4 256.7,372.8" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="276.0,396.0 263.9,396.0 256.7,372.8 264.0,359.4 283.6,358.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="303.9,396.0 276.0,396.0 283.9,356.6 301.5,361.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="328.5,396.0 303.9,396.0 301.5,361.2 309.6,356.7 328.5,359.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="354.1,396.0 328.5,396.0 328.5,359.4 349.0,356.4 355.7,362.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="383.9,396.0 354.1,396.0 355.7,362.0 375.9,359.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="387.8,396.0 383.9,396.0 375.9,359.4 379.5,355.5 404.0,363.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="425.1,396.0 387.8,396.0 404.0,363.5 411.2,360.7 414.8,361.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="442.4,396.0 425.1,396.0 414.8,361.3 427.5,354.4 443.7,359.9 448.3,366.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="480.6,396.0 442.4,396.0 448.3,366.5 467.0,365.0 479.5,376.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="467.0,365.0 474.3,342.1 480.6,341.7 489.8,366.5 479.5,376.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="510.8,396.0 480.6,396.0 479.5,376.0 489.8,366.5 505.2,363.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="528.8,396.0 510.8,396.0 505.2,363.2 509.3,357.8 528.8,357.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="551.2,396.0 528.8,396.0 528.8,357.8 551.2,357.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,358.2 576.0,396.0 551.2,396.0 551.2,359.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="31.2,396.0 0.0,396.0 0.0,373.5 22.9,373.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/></g><path d="M265.8,33.6 L267.3,21.4 M267.3,21.4 L287.2,16.8 M287.2,16.8 L287.3,16.6 M287.3,16.6 L303.3,14.4 M303.3,14.4 L312.3,23.8 M312.3,23.8 L331.3,14.9 M331.3,14.9 L336.9,19.3 M336.9,19.3 L350.5,18.1 M350.5,18.1 L357.7,24.3 M357.7,24.3 L359.2,32.3 M240.8,56.5 L239.0,36.5 M239.0,36.5 L261.8,37.9 M261.8,37.9 L265.8,33.6 M359.2,32.3 L371.8,41.1 M371.8,41.1 L373.9,48.8 M222.1,78.0 L217.8,67.0 M217.8,67.0 L222.4,59.4 M222.4,59.4 L240.8,56.5 M374.6,48.5 L375.9,57.0 M375.9,57.0 L391.5,70.9 M391.5,70.9 L391.3,76.8 M155.1,108.5 L158.4,86.7 M158.4,86.7 L174.2,86.1 M173.2,82.8 L194.1,80.6 M194.1,80.6 L200.1,87.8 M200.1,87.8 L219.4,83.0 M219.4,83.0 L222.1,78.0 M391.3,76.8 L399.4,82.2 M399.4,82.2 L404.4,97.1 M148.9,118.1 L151.9,110.7 M151.9,110.7 L155.1,108.5 M404.4,97.1 L418.8,96.7 M418.8,96.7 L425.6,104.5 M425.6,104.5 L423.4,119.8 M116.1,144.5 L119.6,131.6 M119.6,131.6 L134.5,128.1 M134.5,128.1 L136.8,123.8 M136.8,123.8 L148.9,118.1 M425.9,119.6 L428.5,141.5 M428.5,141.5 L427.5,143.6 M103.9,160.5 L105.7,149.6 M105.7,149.6 L116.1,144.5 M427.5,143.6 L439.6,157.9 M439.6,157.9 L425.9,176.1 M100.2,165.2 L103.9,160.5 M112.0,185.4 L100.2,165.2 M107.6,204.1 L104.4,195.1 M104.4,195.1 L112.0,185.4 M119.4,212.0 L107.6,204.1 M425.9,176.1 L433.3,183.6 M433.3,183.6 L441.7,185.0 M441.7,185.0 L448.8,193.2 M448.8,193.2 L444.9,208.3 M117.9,223.6 L119.4,212.0 M131.2,234.8 L117.9,223.6 M444.9,208.3 L463.5,216.1 M463.5,216.1 L463.5,228.4 M131.3,238.0 L131.2,234.8 M142.4,249.9 L131.3,238.0 M464.4,228.4 L456.2,248.3 M123.2,274.3 L123.6,265.9 M123.6,265.9 L142.4,249.9 M456.2,248.3 L460.0,255.4 M460.0,255.4 L454.1,267.5 M125.8,294.1 L124.8,274.4 M148.0,298.5 L134.4,300.7 M134.4,300.7 L125.8,294.1 M441.6,292.5 L426.6,292.5 M454.1,267.5 L467.4,285.4 M467.4,285.4 L441.5,293.2 M429.7,289.7 L423.9,312.1 M423.9,312.1 L421.6,313.0 M148.1,324.1 L151.7,303.9 M164.7,329.6 L160.8,330.5 M160.8,330.5 L148.1,324.1 M178.8,346.5 L164.7,329.6 M195.6,347.0 L178.8,346.5 M337.8,326.5 L328.5,332.1 M350.7,332.6 L337.8,326.5 M352.3,336.4 L350.7,332.6 M381.6,339.6 L352.3,336.4 M403.2,332.5 L400.7,335.5 M400.7,335.5 L381.5,338.9 M421.6,313.0 L415.3,330.0 M415.3,330.0 L403.2,332.5 M204.0,366.2 L196.1,359.3 M196.1,359.3 L193.1,345.9 M230.9,358.1 L229.8,363.2 M229.8,363.2 L204.0,366.2 M247.1,345.7 L230.9,358.1 M255.8,347.1 L247.1,345.7 M264.0,359.4 L255.8,347.1 M285.7,358.3 L264.0,359.4 M309.6,356.7 L301.5,361.2 M301.5,361.2 L285.5,357.0 M328.5,332.1 L328.5,359.4 M328.5,359.4 L309.6,356.7" fill="none" stroke="#283640" stroke-width="2.0" stroke-linecap="round"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="576" height="396" viewBox="0 0 576 396"><rect width="576" height="396" fill="#183e56"/><g stroke-linejoin="round"><polygon points="0.0,0.0 29.3,0.0 26.5,13.5 16.3,17.9 0.0,8.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="29.3,0.0 49.5,0.0 49.5,20.2 41.6,25.0 26.5,13.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="49.5,0.0 66.2,0.0 68.6,22.8 49.5,20.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="66.2,0.0 84.2,0.0 86.2,13.7 80.7,19.3 68.4,21.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="84.2,0.0 107.1,0.0 104.1,15.0 86.2,13.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="107.1,0.0 129.1,0.0 126.5,22.5 108.8,22.5 104.1,15.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="129.1,0.0 151.2,0.0 153.4,13.9 133.5,28.8 126.5,22.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="151.2,0.0 181.2,0.0 181.7,11.3 166.8,23.4 153.4,13.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="181.2,0.0 208.3,0.0 204.6,15.1 194.8,20.0 181.7,11.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="208.3,0.0 222.9,0.0 227.4,18.6 218.7,22.9 204.6,15.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="222.9,0.0 247.5,0.0 246.1,14.0 237.6,21.4 227.4,18.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="247.5,0.0 266.5,0.0 269.2,23.6 246.1,14.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="266.5,0.0 284.3,0.0 287.3,16.6 287.2,16.8 268.9,21.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="284.3,0.0 307.8,0.0 303.3,14.4 287.3,16.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="307.8,0.0 328.9,0.0 331.3,14.9 312.3,23.8 303.3,14.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="328.9,0.0 356.6,0.0 350.5,18.1 336.9,19.3 331.3,14.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="356.6,0.0 373.9,0.0 378.1,13.7 357.7,24.3 350.5,18.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="373.9,0.0 408.7,0.0 385.0,19.4 378.1,13.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="408.7,0.0 411.5,0.0 415.6,11.3 404.8,32.2 400.4,33.4 385.7,21.7 385.0,19.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="411.5,0.0 443.4,0.0 441.9,17.4 429.8,20.1 415.6,11.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="443.4,0.0 463.5,0.0 463.5,22.3 446.1,20.7 441.9,17.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="463.5,0.0 482.4,0.0 485.7,16.4 485.3,17.0 463.5,23.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="482.4,0.0 509.6,0.0 507.3,13.8 485.7,16.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="509.6,0.0 533.6,0.0 532.0,19.4 528.8,22.1 510.5,18.4 507.3,13.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="533.6,0.0 548.5,0.0 555.6,15.9 549.9,22.6 532.0,19.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="548.5,0.0 576.0,0.0 576.0,13.6 555.6,15.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,39.8 0.0,8.7 16.3,17.9 13.5,34.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="13.5,34.2 16.3,17.9 26.5,13.5 41.6,25.0 39.9,34.8 30.2,44.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="39.9,34.8 41.6,25.0 49.5,20.2 66.8,22.5 67.6,41.2 61.5,46.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="67.6,41.2 66.7,21.3 80.7,19.3 92.8,39.2 85.5,45.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="92.8,39.2 80.7,19.3 86.2,13.7 104.1,15.0 108.8,22.5 100.9,38.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="112.2,51.3 100.9,38.3 108.8,22.5 126.5,22.5 135.0,30.1 126.5,47.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="131.5,30.3 153.4,13.9 166.8,23.4 167.1,28.5 150.3,40.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="154.7,59.6 150.3,40.4 167.1,28.5 174.9,38.4 160.3,58.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="174.9,38.4 167.1,28.5 166.8,23.4 181.7,11.3 194.8,20.0 194.8,34.9 183.5,41.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="194.8,34.9 194.8,20.0 204.6,15.1 218.7,22.9 214.2,39.7 206.2,41.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="214.2,39.7 218.7,22.9 227.4,18.6 237.6,21.4 241.4,38.9 218.2,42.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="240.9,36.6 237.6,21.4 246.1,14.0 267.2,22.8 265.8,33.6 261.8,37.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="265.8,33.6 267.3,21.4 287.2,16.8 291.7,39.1 286.0,42.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="291.7,39.1 287.2,16.8 287.3,16.6 303.3,14.4 312.3,23.8 310.6,42.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="310.8,39.6 312.3,23.8 331.3,14.9 336.9,19.3 335.3,37.2 319.4,43.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="335.3,37.2 336.9,19.3 350.5,18.1 357.7,24.3 359.2,32.3 345.1,44.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="359.2,32.3 357.7,24.3 378.1,13.7 385.0,19.4 385.7,21.7 371.8,41.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="385.7,21.7 400.4,33.4 395.6,46.2 374.2,49.7 371.8,41.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="404.8,32.2 415.6,11.3 429.8,20.1 424.3,42.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="423.4,45.8 429.8,20.1 441.9,17.4 446.1,20.7 443.1,41.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="446.1,20.7 464.4,22.4 465.3,29.9 450.5,46.0 443.1,41.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="465.3,29.9 464.4,23.1 485.3,17.0 490.3,36.2 480.4,44.1 475.5,43.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="490.3,36.2 485.3,17.0 485.7,16.4 507.3,13.8 510.5,18.4 504.5,38.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="510.5,18.4 528.8,22.1 528.8,38.2 502.9,44.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="528.8,38.2 528.8,22.1 532.0,19.4 549.9,22.6 552.6,36.2 534.4,43.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,13.6 576.0,41.0 560.1,41.5 552.6,36.2 549.9,22.6 555.6,15.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,51.4 0.0,39.8 13.5,34.2 30.2,44.6 30.1,49.5 13.5,59.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="13.5,75.9 13.5,59.3 31.5,48.7 31.5,75.5 20.7,80.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="30.1,50.9 30.2,44.6 39.9,34.8 61.5,46.9 60.3,53.3 50.0,59.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="60.3,53.3 61.5,46.9 67.6,41.2 85.5,45.0 85.5,67.6 71.1,66.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="85.5,63.0 85.5,45.0 92.8,39.2 100.9,38.3 112.2,51.3 110.5,57.5 99.5,66.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="125.0,77.1 110.5,57.5 112.2,51.3 126.5,47.1 138.2,61.4 128.8,77.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="126.5,47.1 134.1,31.7 150.3,40.4 154.5,58.7 138.2,61.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="160.3,58.9 174.9,38.4 183.5,41.2 185.7,57.8 174.2,64.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="185.7,57.8 183.5,41.2 194.8,34.9 206.2,41.0 200.1,63.4 199.0,63.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="200.1,63.4 206.2,41.0 214.2,39.7 218.2,42.5 222.4,59.4 217.8,67.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="222.4,59.4 218.2,42.5 239.3,39.2 240.8,56.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="240.8,56.5 239.0,36.5 261.8,37.9 262.6,59.3 245.4,61.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="262.7,62.1 261.8,37.9 265.8,33.6 286.0,42.6 281.4,59.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="281.4,59.0 286.0,42.6 291.7,39.1 307.0,41.5 301.7,65.0 292.2,67.8" fill="#e3edda" stroke="#e3edda" stroke-width="0.5"/><polygon points="307.7,38.3 319.4,43.3 327.2,63.5 309.5,68.9 301.7,65.0" fill="#a7a168" stroke="#a7a168" stroke-width="0.5"/><polygon points="327.2,63.6 319.4,43.3 335.3,37.2 345.1,44.5 346.8,53.9" fill="#7d8277" stroke="#7d8277" stroke-width="0.5"/><polygon points="346.8,53.9 345.1,44.5 359.2,32.3 371.8,41.1 373.9,48.8 350.5,56.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="375.9,57.0 374.8,49.6 395.6,46.2 402.0,57.6 391.5,70.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="402.0,57.6 395.6,46.2 400.4,33.4 404.8,32.2 426.6,43.1 425.0,50.0 415.4,59.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="425.0,50.0 426.1,45.3 443.1,41.9 450.5,46.0 456.8,58.5 448.5,67.4 443.9,68.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="456.8,58.5 450.5,46.0 465.3,29.9 475.5,43.1 457.5,58.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="475.5,43.1 480.4,44.1 486.3,60.6 472.5,67.5 457.5,58.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="486.3,60.6 480.4,44.1 490.3,36.2 507.9,39.5 507.5,51.9 487.2,61.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="507.5,51.9 507.8,43.5 528.8,38.2 534.4,43.9 534.9,57.2 528.9,62.6 512.8,59.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="534.9,57.2 534.4,43.9 552.6,36.2 560.1,41.5 551.1,61.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,41.0 576.0,66.7 553.9,65.8 551.1,61.6 560.1,41.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,78.8 0.0,51.4 13.5,59.3 13.5,75.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="31.5,75.5 31.5,51.5 50.0,59.7 47.1,79.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="47.3,78.4 50.0,59.7 60.3,53.3 71.1,66.1 59.1,80.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="59.1,80.5 71.1,66.1 80.3,67.1 83.0,84.1 65.6,89.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="83.5,87.2 79.4,61.7 99.5,66.0 103.3,85.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="103.4,86.0 99.5,66.0 110.5,57.5 125.0,77.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="128.8,77.9 138.2,61.4 155.9,58.5 155.0,83.8 133.9,85.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="154.9,86.8 155.8,59.4 160.3,58.9 174.2,64.7 178.0,86.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="177.4,82.3 174.2,64.7 185.7,57.8 199.0,63.9 194.1,80.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="194.1,80.6 199.0,63.9 200.1,63.4 217.8,67.0 222.1,78.0 219.4,83.0 200.1,87.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="222.1,78.0 217.8,67.0 222.4,59.4 240.8,56.5 245.4,61.0 239.9,78.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="239.9,78.6 245.4,61.0 265.5,59.1 265.5,83.3 246.3,86.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="265.5,83.3 265.5,61.6 281.4,59.0 292.2,67.8 288.9,81.3 281.7,86.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="288.9,81.3 292.2,67.8 301.7,65.0 309.5,68.9 312.4,87.2 307.4,93.3" fill="#c3bc7a" stroke="#c3bc7a" stroke-width="0.5"/><polygon points="312.4,87.2 309.5,68.9 327.3,63.4 333.4,78.7 330.3,84.6" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/><polygon points="333.4,78.7 327.4,63.6 346.8,53.9 350.5,56.6 356.6,77.4" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="350.5,56.6 374.6,48.5 375.9,57.0 366.1,73.4 356.1,75.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="375.9,57.0 391.5,70.9 391.3,76.8 381.7,82.3 366.1,73.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="391.3,76.8 391.5,70.9 402.0,57.6 415.4,59.7 417.9,72.8 399.4,82.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="425.6,79.8 417.9,72.8 415.4,59.7 425.0,50.0 443.9,68.9 436.1,78.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="448.5,67.4 456.8,58.5 457.5,58.5 472.5,67.5 472.5,82.3 463.6,88.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="472.5,82.3 472.5,67.5 486.3,60.6 487.2,61.0 495.6,77.6 488.1,86.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="495.6,77.6 487.2,61.0 507.5,51.9 512.8,59.4 505.2,77.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="512.8,59.4 528.9,62.6 529.6,77.0 515.1,86.0 505.2,77.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="529.6,77.0 528.9,62.6 534.9,57.2 551.1,61.6 553.9,65.8 549.0,84.2 542.0,85.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,66.7 576.0,85.5 548.7,85.5 553.9,65.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,105.7 0.0,78.8 13.5,75.9 20.7,80.0 21.8,99.7 6.3,106.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="21.8,99.7 20.7,80.0 31.5,75.5 45.9,79.2 41.4,102.7 32.1,104.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="41.5,102.5 46.0,78.2 59.1,80.5 65.6,89.1 64.5,102.3 61.2,104.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="64.5,102.3 65.6,89.1 87.1,83.0 83.1,108.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="83.1,108.5 86.5,86.9 103.7,85.5 107.7,101.4 87.0,111.7 85.0,111.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="107.7,101.4 103.8,85.8 125.0,77.1 128.8,77.9 133.9,85.6 132.3,95.4 122.4,105.3 115.4,106.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="132.3,95.4 133.9,85.6 158.9,83.5 155.1,108.5 151.9,110.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="155.1,108.5 158.4,86.7 174.2,86.1 179.8,104.6 175.5,111.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="179.8,104.6 173.2,82.8 194.1,80.6 200.1,87.8 198.9,102.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="198.5,107.3 200.1,87.8 219.4,83.0 223.5,101.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="223.5,101.1 219.4,83.0 222.1,78.0 239.9,78.6 246.3,86.8 243.8,95.8 229.7,105.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="243.8,95.8 246.3,86.8 265.5,83.3 265.5,115.5 262.4,115.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="265.5,110.5 265.5,83.3 281.7,86.2 284.0,102.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="290.7,106.5 284.0,102.3 281.7,86.2 288.9,81.3 309.3,94.5" fill="#948e5c" stroke="#948e5c" stroke-width="0.5"/><polygon points="306.4,94.5 312.4,87.2 330.3,84.6 335.9,102.6 314.0,104.9" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/><polygon points="337.0,105.9 330.3,84.6 333.4,78.7 354.8,77.5 357.2,96.2 355.1,99.9" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="357.2,96.2 354.6,76.0 366.1,73.4 381.7,82.3 378.1,94.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="378.1,94.6 381.7,82.3 391.3,76.8 399.4,82.2 404.4,97.1 399.4,103.4 382.9,102.0" fill="#8f9589" stroke="#8f9589" stroke-width="0.5"/><polygon points="404.4,97.1 399.4,82.2 417.9,72.8 425.6,79.8 418.8,96.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="418.8,96.7 425.6,79.8 436.1,78.7 445.8,96.5 443.1,100.5 425.6,104.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="445.8,96.5 436.1,78.7 443.9,68.9 448.5,67.4 463.6,88.5 461.3,93.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="461.3,93.8 463.6,88.5 472.5,82.3 488.1,86.3 490.9,101.3 467.8,104.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="490.9,101.3 488.1,86.3 495.6,77.6 505.2,77.2 515.1,86.0 515.1,92.6 497.6,108.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="515.1,92.6 515.1,86.0 529.6,77.0 542.0,85.0 530.8,104.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="530.1,106.0 542.0,85.0 550.3,84.0 555.6,105.2 548.8,113.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,85.5 576.0,104.3 555.6,105.2 550.7,85.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="6.3,106.7 21.8,99.7 32.1,104.7 28.6,126.3 16.8,129.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="28.6,126.3 32.1,104.7 41.0,102.8 49.2,127.5 40.5,133.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="49.2,127.5 40.9,102.4 61.2,104.5 60.0,126.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="60.0,126.5 61.2,104.5 64.5,102.3 83.1,108.5 85.0,111.1 68.1,131.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="87.0,111.7 107.7,101.4 115.4,106.4 111.4,123.4 97.0,127.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="111.4,123.4 115.4,106.4 122.4,105.3 136.8,123.8 134.5,128.1 119.6,131.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="136.8,123.8 122.4,105.3 132.3,95.4 151.9,110.7 148.9,118.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="148.9,118.1 151.9,110.7 155.1,108.5 175.5,111.1 178.6,124.1 172.8,133.1 159.7,132.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="178.6,124.1 175.5,111.1 179.8,104.6 202.3,101.9 203.8,121.8 199.3,126.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="203.8,121.8 202.6,106.3 223.5,101.1 229.7,105.3 230.1,109.9 220.6,125.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="222.6,129.0 220.6,125.1 230.1,109.9 247.1,122.4 242.0,134.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="230.1,109.9 229.7,105.3 243.8,95.8 262.4,115.3 247.1,122.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="260.3,112.8 284.0,102.3 290.7,106.5 292.7,118.3 286.1,125.6 268.3,123.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="292.7,118.3 290.7,106.5 307.3,95.8 314.0,104.9 311.9,121.7" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="311.9,121.4 314.0,104.9 339.5,102.2 337.0,123.3" fill="#ffffff" stroke="#ffffff" stroke-width="0.5"/><polygon points="337.1,122.1 339.1,105.2 355.1,99.9 367.8,121.4 354.9,130.4" fill="#eef2f6" stroke="#eef2f6" stroke-width="0.5"/><polygon points="367.8,121.4 355.1,99.9 357.2,96.2 378.1,94.6 382.9,102.0 373.8,121.9" fill="#8c8758" stroke="#8c8758" stroke-width="0.5"/><polygon points="373.3,123.1 382.9,102.0 399.4,103.4 403.1,124.1" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="402.7,122.0 399.4,103.4 404.4,97.1 418.8,96.7 425.6,104.5 423.4,119.8" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="422.9,123.4 425.6,104.5 443.1,100.5 447.8,119.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="447.8,119.5 443.1,100.5 445.8,96.5 461.3,93.8 467.8,104.7 465.8,117.7 456.8,125.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="465.8,117.7 467.8,104.7 490.9,101.3 496.0,106.4 487.0,123.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="490.9,138.8 487.0,123.7 497.1,104.4 513.0,118.8 500.9,138.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="513.0,118.8 499.4,106.5 515.1,92.6 531.8,105.6 522.1,119.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="522.1,119.3 531.2,106.5 548.8,113.2 550.1,119.5 534.0,137.7 530.0,135.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,104.3 576.0,127.8 562.3,128.1 550.1,119.5 548.8,113.2 555.6,105.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,139.5 0.0,105.7 6.3,106.7 16.8,129.5 10.8,138.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="10.8,138.1 16.8,129.5 28.6,126.3 40.5,133.5 40.5,148.5 21.6,152.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="40.5,147.0 40.5,133.5 49.2,127.5 60.0,126.5 68.1,131.8 71.1,138.9 58.3,151.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="71.1,138.9 68.1,131.8 85.0,111.1 87.0,111.7 97.0,127.4 93.7,137.6 78.5,142.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="93.7,137.6 97.0,127.4 111.4,123.4 119.6,131.6 116.1,144.5 105.7,149.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="116.1,144.5 119.6,131.6 134.5,128.1 141.4,146.9 131.6,153.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="141.4,146.9 134.5,128.1 136.8,123.8 148.9,118.1 159.7,132.1 147.6,148.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="147.6,148.3 159.7,132.1 172.8,133.1 175.8,143.0 164.0,158.2 156.6,158.6" fill="#aba56b" stroke="#aba56b" stroke-width="0.5"/><polygon points="175.8,143.0 172.8,133.1 178.6,124.1 199.3,126.4 200.1,144.5 193.5,151.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="200.1,144.5 199.3,126.4 203.8,121.8 220.6,125.1 222.6,129.0 218.1,146.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="216.5,153.3 222.6,129.0 242.0,134.6 244.3,143.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="244.3,143.3 242.0,134.6 247.1,122.4 262.2,115.4 268.3,123.3 264.8,146.4 248.0,146.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="264.7,147.5 268.3,123.3 286.1,125.6 291.7,143.5 290.1,146.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="291.7,143.5 286.1,125.6 292.7,118.3 311.6,121.7 309.9,138.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="309.9,138.5 311.6,121.4 335.6,123.2 329.2,145.3 320.0,147.6" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="336.0,121.6 354.9,130.4 354.6,145.2 336.4,149.3 329.2,145.3" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="354.6,147.2 354.9,130.4 367.8,121.4 375.0,122.0 379.7,145.3 374.4,150.6" fill="#d4d8dc" stroke="#d4d8dc" stroke-width="0.5"/><polygon points="379.7,145.3 375.3,123.2 401.2,124.1 402.1,139.8 396.4,146.1" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="402.1,139.8 401.1,122.1 425.9,119.6 428.5,141.5 427.5,143.6 422.7,145.6" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="428.5,141.5 426.3,122.9 447.8,119.5 456.8,125.9 456.8,131.6 455.3,133.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="451.0,159.2 455.3,133.4 456.8,131.6 473.6,142.8 465.8,166.6 456.9,164.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="456.8,131.6 456.8,125.9 465.8,117.7 487.0,123.7 491.0,139.1 473.6,142.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="530.0,135.3 535.7,138.7 532.2,150.2 514.3,160.8 507.9,142.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="500.9,138.6 513.0,118.8 522.1,119.3 530.0,135.3 507.9,142.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="532.5,139.4 550.1,119.5 562.3,128.1 552.4,145.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,127.8 576.0,148.5 551.0,148.5 562.3,128.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,167.4 0.0,139.5 10.8,138.1 21.6,152.3 16.8,166.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="16.8,166.7 21.6,152.3 38.8,148.8 41.2,171.8 22.7,174.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="41.2,171.8 38.5,146.5 58.3,151.7 61.4,167.6 45.3,174.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="61.4,167.6 58.3,151.7 71.1,138.9 78.5,142.3 83.0,164.9 62.1,167.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="83.8,169.0 78.5,142.3 93.7,137.6 105.8,149.6 103.9,160.5 100.2,165.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="103.9,160.5 105.7,149.6 116.1,144.5 131.6,153.1 128.4,166.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="130.5,172.9 128.4,166.6 131.6,153.1 141.4,146.9 147.6,148.3 156.6,158.6 149.8,172.9" fill="#c1b978" stroke="#c1b978" stroke-width="0.5"/><polygon points="164.0,158.2 175.8,143.0 193.5,151.3 193.5,158.5 173.7,167.2" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="174.8,182.9 173.7,167.2 190.9,159.6 194.2,177.8 181.0,187.7" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="193.5,154.5 193.5,151.3 200.1,144.5 221.7,147.2 222.5,167.3 215.4,169.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="222.4,165.4 221.9,151.3 244.3,143.3 248.0,146.5 243.9,164.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="243.9,164.9 248.0,146.5 265.9,146.4 268.0,165.2 250.5,174.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="268.0,165.2 266.0,147.5 290.1,146.2 294.1,164.6 274.5,169.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="293.6,162.3 290.1,146.2 291.7,143.5 309.9,138.5 320.0,147.6 317.5,155.0 306.3,164.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="317.5,155.0 320.0,147.6 329.2,145.3 336.4,149.3 339.3,167.5 330.9,174.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="339.3,167.5 336.4,149.3 357.3,144.6 353.5,168.6" fill="#9ea1a4" stroke="#9ea1a4" stroke-width="0.5"/><polygon points="353.5,168.6 356.8,147.6 374.4,150.6 376.1,165.9 357.8,172.9" fill="#5c5751" stroke="#5c5751" stroke-width="0.5"/><polygon points="376.1,165.9 374.4,150.6 379.7,145.3 396.4,146.1 399.6,162.2 381.3,170.0" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="399.6,162.2 396.4,146.1 402.1,139.8 422.7,145.6 412.9,168.8 408.8,168.8" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="412.9,168.8 422.7,145.6 427.5,143.6 439.6,157.9 425.9,176.1 422.5,175.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="427.5,143.6 428.5,141.5 455.3,133.4 451.0,159.2 439.6,157.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="466.0,165.9 473.6,142.8 490.5,139.2 490.5,165.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="490.5,166.4 490.5,138.8 500.9,138.6 507.9,142.7 514.3,160.8 513.8,162.8 508.0,167.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="513.8,162.8 514.3,160.8 532.2,150.2 539.5,165.3 532.3,173.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="539.5,165.3 532.2,150.2 535.2,140.3 554.3,146.5 553.2,164.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,148.5 576.0,166.3 553.4,163.1 554.2,148.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,193.5 0.0,167.4 16.8,166.7 22.7,174.1 19.9,193.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="19.9,193.8 22.7,174.1 41.2,171.8 45.3,174.3 46.1,185.2 38.6,196.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="46.1,185.2 45.3,174.3 61.4,167.6 62.1,167.9 70.4,195.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="68.9,190.5 62.1,167.9 88.2,164.2 84.7,184.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="84.7,184.8 87.5,168.1 100.2,165.2 112.0,185.4 104.4,195.1 93.6,193.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="100.2,165.2 103.9,160.5 128.4,166.6 130.5,172.9 125.5,183.2 112.0,185.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="131.3,192.2 125.5,183.2 130.5,172.9 149.8,172.9 155.9,184.9 151.4,194.3" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="149.8,172.9 156.6,158.6 164.0,158.2 173.7,167.2 174.8,182.9 155.9,184.9" fill="#a89f93" stroke="#a89f93" stroke-width="0.5"/><polygon points="194.2,177.8 189.5,151.8 215.4,169.5 205.8,179.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="211.9,202.2 205.8,179.4 215.4,169.5 220.8,167.8 230.4,187.0 218.5,200.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="230.4,187.0 219.7,165.5 243.9,164.9 250.6,174.2 237.3,187.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="250.3,174.1 268.0,165.2 274.5,169.7 274.5,184.9 261.7,189.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="274.5,184.9 274.5,169.7 291.1,165.4 294.6,187.2 288.0,194.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="294.6,187.2 290.6,161.9 306.3,164.1 312.8,178.4 308.6,185.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="312.8,178.4 306.3,164.1 317.5,155.0 331.9,176.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="330.1,175.4 339.3,167.5 353.5,168.6 357.8,172.9 357.8,185.1 348.6,191.0 333.0,183.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="357.8,185.1 357.8,172.9 376.1,165.9 381.3,170.0 383.1,181.2 372.1,193.3" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="383.1,181.2 381.3,170.0 399.6,162.2 408.8,168.8 397.3,186.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="403.9,203.2 397.3,186.6 408.8,168.8 412.9,168.8 422.5,175.5 406.0,203.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="451.0,159.2 456.9,164.8 441.8,185.0 433.3,183.6 425.9,176.1 439.6,157.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="441.7,185.0 456.9,164.8 465.2,166.4 467.6,178.9 460.2,192.3 448.8,193.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="467.6,178.9 465.1,165.9 491.8,165.4 488.1,188.9 485.4,189.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="488.1,188.9 491.6,166.5 508.0,167.7 511.4,187.2 503.3,196.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="511.4,187.2 508.0,167.7 513.8,162.8 532.3,173.8 532.8,187.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="532.8,186.8 532.3,173.8 539.5,165.3 551.6,164.8 555.0,186.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,166.3 576.0,182.5 554.5,183.5 551.3,162.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,219.7 0.0,193.5 20.2,193.5 20.2,217.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="20.2,219.4 20.2,193.8 38.6,196.0 42.2,202.4 39.1,214.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="42.2,202.4 38.6,196.0 46.1,185.2 66.6,193.8 66.0,201.1 61.4,205.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="66.0,201.1 66.8,191.2 84.7,184.8 93.6,193.7 81.9,211.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="84.6,218.9 81.9,211.3 93.6,193.7 104.4,195.1 107.6,204.1 91.6,222.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="107.6,204.1 104.4,195.1 112.0,185.4 125.5,183.2 131.3,192.2 127.8,207.9 119.4,212.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="127.8,207.9 131.3,192.2 151.4,194.3 153.5,202.0 141.0,214.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="153.5,202.0 151.4,194.3 155.9,184.9 174.8,182.9 181.0,187.7 181.2,188.4 166.3,210.0" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="164.8,212.1 181.2,188.4 192.3,200.7 179.2,217.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="181.2,188.4 181.0,187.7 194.2,177.8 205.8,179.4 211.6,201.4 201.5,203.3 192.3,200.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="218.5,200.9 230.4,187.0 237.3,187.1 248.8,202.7 237.8,213.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="248.8,202.7 237.3,187.1 250.5,174.4 261.7,189.8 257.5,202.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="264.3,208.8 257.5,202.0 261.7,189.8 274.5,184.9 288.0,194.5 281.3,205.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="288.0,194.5 294.6,187.2 308.6,185.2 318.1,201.5 307.5,209.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="308.6,185.2 312.8,178.4 330.4,176.2 333.0,183.6 322.9,201.7 318.1,201.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="322.9,201.7 333.0,183.6 348.6,191.0 346.4,205.7 331.7,209.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="346.4,205.7 348.6,191.0 357.8,185.1 372.1,193.3 374.3,204.0 353.5,211.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="374.0,202.7 372.1,193.3 383.1,181.2 397.3,186.6 404.5,204.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="404.3,206.0 422.5,175.5 425.9,176.1 433.3,183.6 425.3,202.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="425.3,202.3 433.3,183.6 441.7,185.0 448.8,193.2 444.9,208.3 438.8,211.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="444.9,208.3 448.8,193.2 460.2,192.3 472.2,206.0 463.5,216.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="472.5,206.4 460.2,192.3 467.6,178.9 485.4,189.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="472.8,205.9 485.4,189.8 488.1,188.9 503.3,196.5 504.5,203.8 490.5,217.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="504.5,203.8 503.3,196.5 511.4,187.2 532.4,187.2 532.4,208.2 516.8,212.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="532.3,209.2 532.3,186.8 551.2,186.8 555.8,204.8 551.2,209.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,182.5 576.0,204.8 555.8,204.8 550.5,183.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,238.5 0.0,219.7 21.6,217.3 26.1,238.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="25.6,236.0 22.0,218.9 39.1,214.6 49.5,225.0 47.7,228.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="49.5,225.0 39.1,214.7 42.2,202.4 61.4,205.2 57.5,222.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="57.5,222.3 61.4,205.2 66.0,201.1 81.9,211.3 84.6,218.9 68.9,229.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="91.6,222.4 107.6,204.1 119.4,212.0 117.9,223.6 102.9,231.9 95.9,229.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="117.9,223.6 119.4,212.0 127.8,207.9 141.0,214.5 142.8,223.2 131.2,234.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="142.8,223.2 141.0,214.5 153.5,202.0 168.6,211.5 157.4,228.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="160.3,238.2 157.4,228.9 167.5,213.2 179.2,217.9 187.4,229.8 183.2,236.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="187.4,229.8 179.2,217.9 192.3,200.7 201.5,203.3 192.9,229.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="192.9,229.1 201.5,203.3 213.1,201.1 213.9,225.6 199.8,231.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="213.9,225.6 213.1,202.0 218.5,200.9 237.8,213.7 238.2,223.4 222.8,230.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="238.2,223.4 237.8,213.7 248.8,202.7 257.5,202.0 264.3,208.8 263.2,223.4 247.0,230.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="263.2,223.4 264.3,208.8 281.3,205.7 288.3,222.6 272.5,230.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="288.3,222.6 281.3,205.7 288.0,194.5 307.5,209.7 305.2,219.4 292.9,224.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="305.2,219.4 307.5,209.7 318.1,201.5 322.9,201.7 331.7,209.2 329.4,228.8 316.9,229.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="329.5,228.5 331.7,209.2 346.4,205.7 353.5,211.8 354.0,228.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="354.1,230.0 353.5,211.8 373.1,204.4 379.2,232.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="377.9,226.7 372.8,202.6 402.4,204.5 397.4,221.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="406.8,235.8 397.4,221.2 402.8,203.2 410.4,202.8 423.9,228.9 418.2,234.8" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="423.9,228.9 411.4,204.7 425.3,202.3 438.8,211.9 435.3,225.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="434.6,228.4 438.8,211.9 444.9,208.3 463.5,216.1 463.5,228.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="463.5,229.1 463.5,216.1 472.5,205.7 490.5,217.1 490.5,226.5 478.1,234.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="490.5,226.5 490.5,217.1 504.5,203.8 516.8,212.6 514.9,228.9 507.0,235.1 502.9,235.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="514.9,228.9 516.8,212.6 533.7,207.8 537.5,231.9 532.5,235.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="537.5,231.9 534.0,209.2 551.2,209.2 557.3,233.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,204.8 576.0,229.5 556.3,229.5 551.2,209.2 555.8,204.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,258.1 0.0,238.5 24.8,238.5 26.0,242.5 20.4,254.0 0.1,258.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="26.0,242.5 24.2,236.4 47.7,228.6 50.3,245.2 42.8,250.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="50.3,245.2 47.7,228.6 49.5,225.0 57.5,222.3 68.9,229.1 70.4,248.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="70.2,246.6 68.9,229.1 84.6,218.9 91.6,222.4 95.9,229.1 82.0,247.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="82.0,247.7 95.9,229.1 102.9,231.9 109.1,248.3 94.0,260.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="109.1,248.3 102.9,231.9 117.9,223.6 131.2,234.8 131.3,238.0 114.4,249.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="131.3,238.0 131.2,234.8 142.8,223.2 157.4,228.9 160.3,238.2 157.1,246.1 148.6,251.6 142.4,249.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="157.1,246.1 160.3,238.2 183.2,236.0 184.8,251.8 175.1,259.5" fill="#bdb676" stroke="#bdb676" stroke-width="0.5"/><polygon points="184.8,251.8 183.2,236.0 187.4,229.8 192.9,229.1 199.8,231.2 207.2,251.9 202.6,259.0" fill="#b0aa6e" stroke="#b0aa6e" stroke-width="0.5"/><polygon points="207.2,251.9 199.8,231.2 213.9,225.6 222.8,230.7 222.8,246.3" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="222.7,246.3 222.7,230.7 238.2,223.4 247.0,230.4 248.0,244.6 227.5,249.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="248.1,246.0 247.0,230.4 263.2,223.4 272.5,230.5 273.0,245.8 262.9,250.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="273.0,245.8 272.5,230.5 288.3,222.6 292.9,224.3 294.7,243.6 277.9,248.2" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="294.7,243.6 292.9,224.3 305.2,219.4 316.9,229.8 309.2,245.3 302.1,248.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="309.2,245.3 316.9,229.8 329.2,228.8 333.0,245.8 325.3,254.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="333.0,245.8 329.2,228.5 355.9,228.5 349.9,250.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="351.7,253.7 349.9,250.0 355.5,230.1 374.6,232.2 377.8,241.3 368.2,255.7" fill="#948f5d" stroke="#948f5d" stroke-width="0.5"/><polygon points="377.8,241.3 373.1,228.1 397.4,221.2 406.8,235.8 398.8,247.5 394.0,248.8" fill="#76724a" stroke="#76724a" stroke-width="0.5"/><polygon points="398.8,247.5 406.8,235.8 418.2,234.8 426.4,252.7 413.6,263.5" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="426.4,252.7 418.2,234.8 423.9,228.9 437.3,225.3 442.8,245.3 433.0,253.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="442.8,245.3 438.2,228.4 464.4,228.4 456.2,248.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="456.2,248.3 464.0,229.3 478.1,234.0 481.3,256.4 460.0,255.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="481.5,257.6 478.1,234.0 490.5,226.5 502.9,235.1 490.6,255.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="507.0,235.1 514.9,228.9 532.5,235.6 529.7,257.1 516.4,254.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="529.9,255.9 532.5,235.6 537.5,231.9 551.9,233.1 553.3,255.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,229.5 576.0,254.2 553.2,254.2 551.6,229.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.1,258.1 20.4,254.0 26.7,267.7 18.6,276.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="26.7,267.8 20.4,254.0 26.0,242.5 42.8,250.9 42.8,267.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="42.8,265.8 42.8,250.9 50.3,245.2 68.1,248.3 64.7,267.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="64.7,267.2 68.5,246.4 82.0,247.7 93.8,260.1 85.5,272.6 69.0,274.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="94.5,260.0 109.1,248.3 114.4,249.9 123.6,265.9 123.2,273.0 112.0,275.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="123.6,265.9 114.4,249.9 131.3,238.0 142.4,249.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="123.2,274.3 123.6,265.9 142.4,249.9 148.6,251.6 150.7,268.1 144.8,276.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="150.7,268.1 148.6,251.6 157.1,246.1 175.1,259.5 173.2,272.6" fill="#b1ab6f" stroke="#b1ab6f" stroke-width="0.5"/><polygon points="173.2,272.2 175.1,259.5 184.8,251.8 202.6,259.0 203.1,262.0 193.7,275.2" fill="#b3a99c" stroke="#b3a99c" stroke-width="0.5"/><polygon points="203.1,262.0 202.6,259.0 207.2,251.9 222.7,246.3 227.5,249.7 230.6,270.0 223.0,276.2" fill="#8b8657" stroke="#8b8657" stroke-width="0.5"/><polygon points="230.6,270.0 227.5,249.7 250.4,244.0 242.6,270.0" fill="#9a9186" stroke="#9a9186" stroke-width="0.5"/><polygon points="242.6,270.0 249.7,246.5 262.9,250.5 262.9,268.5 249.6,274.6" fill="#797269" stroke="#797269" stroke-width="0.5"/><polygon points="262.9,268.5 262.9,250.5 273.0,245.8 277.9,248.2 283.2,265.4 271.6,272.8" fill="#5c5751" stroke="#5c5751" stroke-width="0.5"/><polygon points="283.2,265.4 277.9,248.2 294.7,243.6 302.1,248.3 301.1,261.7 290.9,268.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="301.1,261.7 302.1,248.3 309.2,245.3 325.3,254.8 325.7,265.5 312.3,269.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="325.8,267.8 325.3,254.8 333.0,245.8 349.9,250.0 351.7,253.7 347.2,264.8" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="354.1,278.6 347.2,264.8 351.7,253.7 368.2,255.7 374.7,270.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="375.0,271.5 368.2,255.7 377.8,241.3 394.0,248.8 387.6,267.6" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="387.6,267.6 394.0,248.8 398.8,247.5 415.5,265.5 401.4,276.3" fill="#345631" stroke="#345631" stroke-width="0.5"/><polygon points="411.2,265.5 426.4,252.7 433.0,253.9 439.6,267.2 424.9,277.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="439.6,267.2 433.0,253.9 442.8,245.3 456.2,248.3 460.0,255.4 454.1,267.5 444.7,269.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="465.7,283.1 454.1,267.5 460.0,255.4 482.7,256.5 481.4,269.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="490.6,255.9 502.9,235.1 507.0,235.1 516.4,254.0 503.7,261.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="506.9,282.4 503.7,261.7 516.4,254.0 528.8,256.9 528.8,261.7 517.4,281.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="528.8,261.7 528.8,255.9 551.9,255.5 553.5,276.3 546.6,283.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,254.2 576.0,275.3 553.5,276.3 551.8,254.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,285.0 0.0,258.1 0.1,258.1 18.6,276.6 17.0,283.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="17.0,283.6 18.6,276.6 26.7,267.8 40.9,267.8 43.6,290.4 23.1,292.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="43.6,290.4 40.6,265.6 64.7,267.2 69.0,274.3 66.2,283.1 44.8,291.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="75.3,299.4 66.2,283.1 69.0,274.3 85.5,272.6 94.2,286.8 87.9,296.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="94.2,286.8 85.5,272.6 94.1,259.6 112.0,275.3 102.5,286.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="102.5,286.3 112.0,275.3 124.7,272.7 125.8,294.1 112.1,299.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="125.8,294.1 124.8,274.4 144.8,276.1 150.4,291.8 148.0,298.5 134.4,300.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="150.4,291.8 144.8,276.1 150.7,268.1 173.0,272.6 170.8,284.8" fill="#a69f68" stroke="#a69f68" stroke-width="0.5"/><polygon points="170.8,284.8 173.0,272.2 193.7,275.2 197.6,289.8 177.6,294.8" fill="#716a62" stroke="#716a62" stroke-width="0.5"/><polygon points="197.6,289.8 193.7,275.2 203.1,262.0 223.0,276.2 222.8,277.2 203.9,294.3" fill="#8d857b" stroke="#8d857b" stroke-width="0.5"/><polygon points="222.8,277.2 223.0,276.2 230.6,270.0 242.6,270.0 249.6,274.6 251.5,290.2 237.2,302.0" fill="#8a8278" stroke="#8a8278" stroke-width="0.5"/><polygon points="251.5,290.2 249.6,274.6 262.9,268.5 271.6,272.8 274.3,289.8 266.7,294.6" fill="#5c5751" stroke="#5c5751" stroke-width="0.5"/><polygon points="274.3,289.8 271.6,272.8 283.2,265.4 290.9,268.0 293.1,283.1 283.1,291.4" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="293.1,283.1 290.9,268.0 301.1,261.7 312.3,269.4 308.1,286.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="308.1,286.5 312.3,269.4 327.7,264.9 331.4,285.8 328.6,289.8 311.7,291.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="331.4,285.8 328.2,267.5 347.2,264.8 354.2,278.5 352.4,283.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="357.3,296.3 352.4,283.8 354.1,278.5 375.6,270.4 379.8,293.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="380.0,294.4 375.8,271.3 387.6,267.6 401.4,276.3 400.9,289.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="400.8,292.4 401.4,276.3 413.3,267.2 424.9,277.0 426.4,290.0" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="426.6,292.5 424.9,277.0 439.6,267.2 444.7,269.2 441.6,292.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="441.5,293.2 444.7,269.2 454.1,267.5 467.4,285.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="463.4,285.0 481.4,269.9 495.6,284.1 483.1,296.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="481.4,269.9 482.6,257.4 490.6,255.9 503.7,261.7 507.1,283.6 495.6,284.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="542.6,303.2 528.3,302.6 525.8,286.7 551.8,279.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="517.4,281.0 528.8,261.7 544.7,281.4 525.8,286.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,275.3 576.0,303.3 545.5,284.8 553.5,276.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,306.8 0.0,285.0 17.0,283.6 23.1,292.2 18.8,306.6 15.3,309.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="18.8,306.6 23.1,292.2 43.6,290.4 44.8,291.1 49.2,308.6 40.2,317.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="49.2,308.6 44.8,291.1 66.2,283.1 76.1,300.7 61.9,311.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="88.1,322.9 72.6,300.1 87.9,296.2 99.1,310.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="99.1,310.6 87.9,296.2 94.2,286.8 102.5,286.3 112.1,299.3 108.2,310.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="108.2,310.1 112.1,299.3 125.8,294.1 134.4,300.7 130.0,312.1 113.8,316.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="139.0,327.2 130.0,312.1 134.4,300.7 152.7,297.7 148.0,324.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="146.6,302.4 150.4,291.8 170.8,284.8 177.6,294.8 174.7,310.4" fill="#6b6743" stroke="#6b6743" stroke-width="0.5"/><polygon points="173.7,315.7 177.6,294.8 197.6,289.8 204.1,294.4 201.2,311.8" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="203.7,294.5 222.8,277.2 235.9,299.7 229.2,304.1" fill="#5c5751" stroke="#5c5751" stroke-width="0.5"/><polygon points="201.2,311.8 204.0,294.7 229.2,304.1 222.3,317.1" fill="#6a6642" stroke="#6a6642" stroke-width="0.5"/><polygon points="239.5,300.1 251.5,290.2 266.7,294.6 266.5,308.0 250.4,318.4 250.1,318.4" fill="#5c5751" stroke="#5c5751" stroke-width="0.5"/><polygon points="266.5,308.0 266.7,294.6 274.3,289.8 283.1,291.4 290.8,306.4 284.0,317.3 278.5,317.6" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="290.8,306.4 283.1,291.4 293.1,283.1 308.1,286.5 311.7,291.8 307.4,305.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="311.6,312.2 307.4,305.5 311.7,291.8 328.6,289.8 336.6,309.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="336.2,308.7 328.6,289.8 331.4,285.8 352.4,283.8 357.3,296.3 355.1,302.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="355.1,302.3 357.3,296.3 381.1,292.9 383.0,312.0 377.3,318.4 362.9,316.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="383.0,312.0 381.2,294.1 403.9,288.2 405.5,307.7 398.5,313.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="405.5,307.7 404.2,292.1 429.7,289.7 423.9,312.1 421.6,313.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="423.9,312.1 429.0,292.5 442.2,292.5 448.9,310.1 439.3,319.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="448.9,310.1 442.3,292.9 465.7,285.9 461.3,311.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="461.3,311.4 465.6,286.3 483.1,296.5 485.0,310.2 466.4,315.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="485.0,310.2 483.1,296.5 495.6,284.1 505.6,283.7 508.3,304.4 501.0,311.6 488.8,312.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="508.3,304.4 505.4,282.6 517.4,281.0 525.8,286.7 528.3,302.6 523.3,307.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="527.0,329.5 523.3,307.1 528.3,302.6 542.6,303.2 546.2,308.8 538.0,327.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,303.3 576.0,304.5 561.2,311.9 546.2,308.8 542.6,303.2 548.9,286.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,330.6 0.0,306.8 15.3,309.0 14.4,329.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="14.4,329.3 15.3,309.0 18.8,306.6 40.2,317.6 38.6,330.2 18.3,332.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="43.0,336.2 38.6,330.2 40.2,317.6 49.2,308.6 61.9,311.6 67.9,329.7 62.7,336.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="67.9,329.7 61.9,311.6 74.0,302.3 88.1,322.9 86.8,329.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="86.5,330.3 88.1,322.9 99.1,310.6 108.2,310.1 113.8,316.7 114.2,329.6 110.3,336.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="114.2,329.6 113.8,316.7 130.0,312.1 140.4,329.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="148.1,324.1 151.7,303.9 178.1,311.4 177.3,314.7 164.7,329.6 160.8,330.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="178.8,346.5 164.7,329.6 177.3,314.7 195.6,347.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="194.4,344.9 177.6,315.2 201.2,311.8 202.8,338.5" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="202.8,338.5 201.2,311.9 222.3,317.1 225.7,327.4 218.7,337.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="225.7,327.4 222.3,317.1 229.2,304.1 238.3,298.1 250.1,318.4 241.6,328.1" fill="#5c5751" stroke="#5c5751" stroke-width="0.5"/><polygon points="250.4,318.4 266.5,308.0 278.5,317.6 266.6,331.9" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="266.8,334.2 266.6,331.9 278.5,317.6 284.0,317.3 292.8,330.3 284.0,344.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="292.8,330.3 284.0,317.3 290.8,306.4 307.4,305.5 311.6,312.2 310.3,330.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="310.4,328.5 311.6,312.2 335.8,309.6 337.8,326.5 328.5,332.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="337.8,326.5 335.7,308.9 355.1,302.3 362.9,316.2 350.7,332.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="352.3,336.4 350.7,332.6 362.9,316.2 377.3,318.4 381.6,339.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="381.5,338.9 377.3,318.4 383.0,312.0 398.5,313.9 403.2,332.5 400.7,335.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="403.2,332.5 398.5,313.9 405.5,307.7 421.6,313.0 415.3,330.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="415.3,330.0 421.6,313.0 423.9,312.1 439.2,319.8 440.3,328.1 427.5,339.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="440.3,328.1 439.2,319.8 448.9,310.1 461.3,311.4 466.4,315.8 464.3,335.4 455.6,337.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="464.3,335.4 466.4,315.8 485.0,310.2 488.8,312.7 488.1,334.3 480.7,341.7 474.3,342.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="488.1,334.3 488.8,312.7 501.0,311.6 511.6,329.8 506.5,335.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="501.0,311.6 508.3,304.4 523.3,307.1 526.7,328.0 511.6,329.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="538.0,327.5 546.2,308.8 561.2,311.9 556.8,331.8 551.5,334.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,304.5 576.0,337.1 556.8,331.8 561.2,311.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,354.3 0.0,330.6 14.4,329.3 18.3,332.8 16.3,350.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="16.3,350.7 18.3,332.8 38.6,330.2 43.0,336.2 38.9,356.4 27.9,359.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="38.9,356.4 43.0,336.2 62.7,336.2 69.2,359.1 68.8,359.6 49.5,363.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="69.2,359.1 62.7,336.2 67.9,329.7 88.2,329.0 85.1,356.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="85.1,356.8 88.0,330.6 110.2,336.0 111.5,341.5 99.2,363.6 98.4,364.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="111.5,341.5 110.2,336.0 114.2,329.6 137.2,329.6 137.2,346.0 130.7,351.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="137.2,346.0 137.2,327.8 148.1,324.1 160.8,330.5 153.5,350.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="153.5,350.2 160.8,330.5 164.7,329.6 178.8,346.5 160.3,360.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="172.3,377.9 160.2,363.5 160.3,360.4 178.8,346.5 193.3,346.9 196.1,359.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="204.0,366.2 196.1,359.3 193.1,345.9 202.8,338.5 218.7,337.7 230.9,358.1 229.8,363.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="230.9,358.1 218.7,337.7 225.7,327.4 241.6,328.1 247.1,345.7" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="247.1,345.7 241.6,328.1 250.1,318.4 250.4,318.4 266.6,331.9 266.8,334.2 255.8,347.1" fill="#3d7ea6" stroke="#3d7ea6" stroke-width="0.5"/><polygon points="264.0,359.4 255.8,347.1 266.8,334.2 284.0,344.0 285.7,358.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="285.5,357.0 284.0,344.0 292.8,330.3 308.2,330.4 309.6,356.7 301.5,361.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="309.6,356.7 308.0,328.0 328.5,332.1 328.5,359.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="328.5,359.4 328.5,332.1 337.8,326.5 350.7,332.6 352.3,336.4 349.0,356.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="349.0,356.4 352.3,336.4 381.1,339.6 379.5,355.5 375.9,359.4 355.7,362.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="379.5,355.5 381.1,339.0 400.7,335.5 411.2,360.7 404.0,363.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="411.2,360.7 400.7,335.5 403.2,332.5 415.3,330.0 427.5,339.5 427.5,354.4 414.8,361.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="427.5,354.4 427.5,339.5 440.3,328.1 455.6,337.5 443.7,359.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="448.3,366.5 443.7,359.9 455.6,337.5 464.3,335.4 474.3,342.1 467.0,365.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="489.8,366.5 480.5,341.5 509.7,357.3 505.2,363.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="508.9,356.8 480.7,341.6 488.1,334.3 506.5,335.7" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="509.0,357.8 506.5,335.7 511.6,329.8 528.8,327.8 528.8,357.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="528.8,357.8 528.8,329.2 538.0,327.5 551.5,334.3 549.6,357.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,337.1 576.0,358.2 549.5,359.0 551.5,334.3 556.8,331.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="0.0,373.5 0.0,354.3 16.3,350.7 27.9,359.9 22.9,373.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="46.5,396.0 31.2,396.0 22.9,373.5 27.9,359.9 38.9,356.4 49.5,363.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="72.0,396.0 46.5,396.0 49.5,363.3 68.8,359.6" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="93.9,396.0 72.0,396.0 68.8,359.6 69.2,359.1 85.1,356.8 98.4,364.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="132.2,396.0 93.9,396.0 98.4,364.0 99.2,363.6 128.3,369.5 133.2,377.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="99.2,363.6 111.5,341.5 130.7,351.1 128.3,369.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="133.2,377.2 128.3,369.5 130.7,351.1 137.3,346.0 153.5,350.2 160.3,360.4 160.2,363.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="173.9,396.0 132.2,396.0 133.2,377.2 160.2,363.5 172.3,377.9" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="202.8,396.0 173.9,396.0 172.3,377.9 196.1,359.3 204.0,366.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="228.8,396.0 202.8,396.0 204.0,366.2 231.1,363.1" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="263.9,396.0 228.8,396.0 231.0,365.4 256.7,372.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="229.4,365.0 230.9,358.1 247.1,345.7 255.8,347.1 264.0,359.4 256.7,372.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="276.0,396.0 263.9,396.0 256.7,372.8 264.0,359.4 283.6,358.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="303.9,396.0 276.0,396.0 283.9,356.6 301.5,361.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="328.5,396.0 303.9,396.0 301.5,361.2 309.6,356.7 328.5,359.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="354.1,396.0 328.5,396.0 328.5,359.4 349.0,356.4 355.7,362.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="383.9,396.0 354.1,396.0 355.7,362.0 375.9,359.4" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="387.8,396.0 383.9,396.0 375.9,359.4 379.5,355.5 404.0,363.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="425.1,396.0 387.8,396.0 404.0,363.5 411.2,360.7 414.8,361.3" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="442.4,396.0 425.1,396.0 414.8,361.3 427.5,354.4 443.7,359.9 448.3,366.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="480.6,396.0 442.4,396.0 448.3,366.5 467.0,365.0 479.5,376.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="467.0,365.0 474.3,342.1 480.6,341.7 489.8,366.5 479.5,376.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="510.8,396.0 480.6,396.0 479.5,376.0 489.8,366.5 505.2,363.2" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="528.8,396.0 510.8,396.0 505.2,363.2 509.3,357.8 528.8,357.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="551.2,396.0 528.8,396.0 528.8,357.8 551.2,357.8" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="576.0,358.2 576.0,396.0 551.2,396.0 551.2,359.0" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/><polygon points="31.2,396.0 0.0,396.0 0.0,373.5 22.9,373.5" fill="#1f4e6b" stroke="#1f4e6b" stroke-width="0.5"/></g><path d="M281.4,59.0 L286.0,42.6 M286.0,42.6 L291.7,39.1 M291.7,39.1 L307.0,41.5 M292.2,67.8 L281.4,59.0 M307.7,38.3 L319.4,43.3 M319.4,43.3 L335.3,37.2 M335.3,37.2 L345.1,44.5 M345.1,44.5 L346.8,53.9 M288.9,81.3 L292.2,67.8 M346.8,53.9 L350.5,56.6 M350.5,56.6 L356.6,77.4 M290.7,106.5 L284.0,102.3 M284.0,102.3 L281.7,86.2 M281.7,86.2 L288.9,81.3 M354.8,77.5 L357.2,96.2 M378.1,94.6 L381.7,82.3 M381.7,82.3 L391.3,76.8 M391.3,76.8 L399.4,82.2 M399.4,82.2 L404.4,97.1 M404.4,97.1 L399.4,103.4 M292.7,118.3 L290.7,106.5 M311.9,121.7 L292.7,118.3 M357.2,96.2 L378.1,94.6 M399.4,103.4 L403.1,124.1 M147.6,148.3 L159.7,132.1 M159.7,132.1 L172.8,133.1 M172.8,133.1 L175.8,143.0 M309.9,138.5 L311.6,121.4 M329.2,145.3 L320.0,147.6 M320.0,147.6 L309.9,138.5 M336.4,149.3 L329.2,145.3 M401.1,122.1 L425.9,119.6 M425.9,119.6 L428.5,141.5 M428.5,141.5 L427.5,143.6 M427.5,143.6 L422.7,145.6 M130.5,172.9 L128.4,166.6 M128.4,166.6 L131.6,153.1 M131.6,153.1 L141.4,146.9 M141.4,146.9 L147.6,148.3 M175.8,143.0 L193.5,151.3 M193.5,151.3 L193.5,158.5 M190.9,159.6 L194.2,177.8 M194.2,177.8 L181.0,187.7 M339.3,167.5 L336.4,149.3 M353.5,168.6 L339.3,167.5 M376.1,165.9 L357.8,172.9 M357.8,172.9 L353.5,168.6 M399.6,162.2 L381.3,170.0 M381.3,170.0 L376.1,165.9 M422.7,145.6 L412.9,168.8 M412.9,168.8 L408.8,168.8 M408.8,168.8 L399.6,162.2 M131.3,192.2 L125.5,183.2 M125.5,183.2 L130.5,172.9 M151.4,194.3 L131.3,192.2 M153.5,202.0 L151.4,194.3 M181.0,187.7 L181.2,188.4 M181.2,188.4 L166.3,210.0 M166.3,210.0 L153.5,202.0 M157.1,246.1 L160.3,238.2 M160.3,238.2 L183.2,236.0 M183.2,236.0 L187.4,229.8 M187.4,229.8 L192.9,229.1 M192.9,229.1 L199.8,231.2 M199.8,231.2 L213.9,225.6 M213.9,225.6 L222.8,230.7 M222.8,230.7 L222.8,246.3 M351.7,253.7 L349.9,250.0 M349.9,250.0 L355.5,230.1 M355.5,230.1 L374.6,232.2 M368.2,255.7 L351.7,253.7 M373.1,228.1 L397.4,221.2 M397.4,221.2 L406.8,235.8 M406.8,235.8 L418.2,234.8 M418.2,234.8 L426.4,252.7 M426.4,252.7 L413.6,263.5 M150.7,268.1 L148.6,251.6 M148.6,251.6 L157.1,246.1 M222.7,246.3 L227.5,249.7 M227.5,249.7 L250.4,244.0 M249.7,246.5 L262.9,250.5 M262.9,250.5 L273.0,245.8 M273.0,245.8 L277.9,248.2 M277.9,248.2 L283.2,265.4 M283.2,265.4 L271.6,272.8 M375.0,271.5 L368.2,255.7 M387.6,267.6 L375.0,271.5 M415.5,265.5 L401.4,276.3 M401.4,276.3 L387.6,267.6 M150.4,291.8 L144.8,276.1 M144.8,276.1 L150.7,268.1 M271.6,272.8 L274.3,289.8 M274.3,289.8 L266.7,294.6 M146.6,302.4 L150.4,291.8 M174.7,310.4 L146.6,302.4 M201.2,311.8 L173.7,315.7 M222.3,317.1 L201.2,311.8 M266.7,294.6 L266.5,308.0 M266.5,308.0 L250.4,318.4 M250.4,318.4 L250.1,318.4 M225.7,327.4 L222.3,317.1 M250.1,318.4 L241.6,328.1 M241.6,328.1 L225.7,327.4" fill="none" stroke="#283640" stroke-width="2.0" stroke-linecap="round"/></svg>
Binary file