geo_pattern 1.3.2 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (135) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/ruby.yml +30 -0
  3. data/.gitignore +1 -0
  4. data/.simplecov +26 -0
  5. data/Gemfile +17 -17
  6. data/README.md +154 -29
  7. data/Rakefile +72 -13
  8. data/fixtures/generated_patterns/chevrons.svg +1 -0
  9. data/fixtures/generated_patterns/concentric_circles.svg +1 -0
  10. data/fixtures/generated_patterns/diamonds.svg +1 -0
  11. data/fixtures/generated_patterns/diamonds_with_base_color.svg +1 -0
  12. data/fixtures/generated_patterns/diamonds_with_color.svg +1 -0
  13. data/fixtures/generated_patterns/hexagons.svg +1 -0
  14. data/fixtures/generated_patterns/mosaic_squares.svg +1 -0
  15. data/fixtures/generated_patterns/nested_squares.svg +1 -0
  16. data/fixtures/generated_patterns/octagons.svg +1 -0
  17. data/fixtures/generated_patterns/overlapping_circles.svg +1 -0
  18. data/fixtures/generated_patterns/overlapping_rings.svg +1 -0
  19. data/fixtures/generated_patterns/plaid.svg +1 -0
  20. data/fixtures/generated_patterns/plus_signs.svg +1 -0
  21. data/fixtures/generated_patterns/sine_waves.svg +1 -0
  22. data/fixtures/generated_patterns/squares.svg +1 -0
  23. data/fixtures/generated_patterns/tessellation.svg +1 -0
  24. data/fixtures/generated_patterns/triangles.svg +1 -0
  25. data/fixtures/generated_patterns/xes.svg +1 -0
  26. data/geo_pattern.gemspec +19 -17
  27. data/lib/geo_pattern/background.rb +27 -0
  28. data/lib/geo_pattern/background_generators/solid_generator.rb +54 -0
  29. data/lib/geo_pattern/color.rb +27 -0
  30. data/lib/geo_pattern/color_generators/base_color_generator.rb +57 -0
  31. data/lib/geo_pattern/color_generators/simple_generator.rb +29 -0
  32. data/lib/geo_pattern/color_preset.rb +32 -0
  33. data/lib/geo_pattern/errors.rb +9 -0
  34. data/lib/geo_pattern/geo_pattern_task.rb +61 -0
  35. data/lib/geo_pattern/helpers.rb +50 -1
  36. data/lib/geo_pattern/pattern.rb +86 -0
  37. data/lib/geo_pattern/pattern_generator.rb +34 -81
  38. data/lib/geo_pattern/pattern_helpers.rb +34 -2
  39. data/lib/geo_pattern/pattern_preset.rb +25 -0
  40. data/lib/geo_pattern/pattern_sieve.rb +38 -0
  41. data/lib/geo_pattern/pattern_store.rb +65 -0
  42. data/lib/geo_pattern/pattern_validator.rb +29 -0
  43. data/lib/geo_pattern/rake_task.rb +112 -0
  44. data/lib/geo_pattern/roles/comparable_metadata.rb +37 -0
  45. data/lib/geo_pattern/roles/named_generator.rb +15 -0
  46. data/lib/geo_pattern/seed.rb +23 -0
  47. data/lib/geo_pattern/structure.rb +27 -0
  48. data/lib/geo_pattern/structure_generators/base_generator.rb +88 -0
  49. data/lib/geo_pattern/structure_generators/chevrons_generator.rb +57 -0
  50. data/lib/geo_pattern/structure_generators/concentric_circles_generator.rb +58 -0
  51. data/lib/geo_pattern/structure_generators/diamonds_generator.rb +72 -0
  52. data/lib/geo_pattern/structure_generators/hexagons_generator.rb +69 -0
  53. data/lib/geo_pattern/structure_generators/mosaic_squares_generator.rb +85 -0
  54. data/lib/geo_pattern/structure_generators/nested_squares_generator.rb +62 -0
  55. data/lib/geo_pattern/structure_generators/octagons_generator.rb +45 -0
  56. data/lib/geo_pattern/structure_generators/overlapping_circles_generator.rb +57 -0
  57. data/lib/geo_pattern/structure_generators/overlapping_rings_generator.rb +57 -0
  58. data/lib/geo_pattern/structure_generators/plaid_generator.rb +55 -0
  59. data/lib/geo_pattern/structure_generators/plus_signs_generator.rb +68 -0
  60. data/lib/geo_pattern/structure_generators/sine_waves_generator.rb +45 -0
  61. data/lib/geo_pattern/structure_generators/squares_generator.rb +37 -0
  62. data/lib/geo_pattern/structure_generators/tessellation_generator.rb +105 -0
  63. data/lib/geo_pattern/structure_generators/triangles_generator.rb +64 -0
  64. data/lib/geo_pattern/structure_generators/xes_generator.rb +74 -0
  65. data/lib/geo_pattern/svg_image.rb +103 -0
  66. data/lib/geo_pattern/version.rb +3 -1
  67. data/lib/geo_pattern.rb +54 -30
  68. data/script/bootstrap +30 -0
  69. data/script/console +9 -0
  70. data/script/test +21 -0
  71. data/spec/background_generators/solid_generator_spec.rb +52 -0
  72. data/spec/background_spec.rb +27 -0
  73. data/spec/color_generators/base_color_generator_spec.rb +33 -0
  74. data/spec/color_generators/simple_generator_spec.rb +14 -0
  75. data/spec/color_preset_spec.rb +55 -0
  76. data/spec/color_spec.rb +17 -0
  77. data/spec/geo_pattern_spec.rb +98 -26
  78. data/spec/helpers_spec.rb +67 -0
  79. data/spec/pattern_preset_spec.rb +43 -0
  80. data/spec/pattern_sieve_spec.rb +68 -0
  81. data/spec/pattern_spec.rb +74 -0
  82. data/spec/pattern_store_spec.rb +49 -0
  83. data/spec/pattern_validator_spec.rb +30 -0
  84. data/spec/seed_spec.rb +16 -0
  85. data/spec/spec_helper.rb +9 -13
  86. data/spec/structure_generators/chevrons_generator_spec.rb +7 -0
  87. data/spec/structure_generators/concentric_circles_generator_spec.rb +7 -0
  88. data/spec/structure_generators/diamonds_generator_spec.rb +7 -0
  89. data/spec/structure_generators/hexagons_generator_spec.rb +7 -0
  90. data/spec/structure_generators/mosaic_squares_generator_spec.rb +7 -0
  91. data/spec/structure_generators/nested_squares_generator_spec.rb +7 -0
  92. data/spec/structure_generators/octagons_generator_spec.rb +7 -0
  93. data/spec/structure_generators/overlapping_circles_generator_spec.rb +7 -0
  94. data/spec/structure_generators/overlapping_rings_generator_spec.rb +7 -0
  95. data/spec/structure_generators/plaid_generator_spec.rb +7 -0
  96. data/spec/structure_generators/plus_signs_generator_spec.rb +7 -0
  97. data/spec/structure_generators/sine_waves_generator_spec.rb +7 -0
  98. data/spec/structure_generators/squares_generator_spec.rb +7 -0
  99. data/spec/structure_generators/tessellation_generator_spec.rb +7 -0
  100. data/spec/structure_generators/triangles_generator_spec.rb +7 -0
  101. data/spec/structure_generators/xes_generator_spec.rb +7 -0
  102. data/spec/structure_spec.rb +40 -0
  103. data/spec/support/aruba.rb +6 -6
  104. data/spec/support/helpers/fixtures.rb +14 -0
  105. data/spec/support/kernel.rb +46 -0
  106. data/spec/support/matchers/image.rb +19 -0
  107. data/spec/support/matchers/name.rb +17 -0
  108. data/spec/support/rspec.rb +4 -2
  109. data/spec/support/shared_examples/generator.rb +48 -0
  110. data/spec/support/shared_examples/pattern.rb +33 -0
  111. data/spec/support/shared_examples/pattern_name.rb +9 -0
  112. data/spec/support/shared_examples/structure.rb +50 -0
  113. data/spec/support/string.rb +3 -2
  114. data/spec/svg_spec.rb +8 -6
  115. metadata +105 -37
  116. data/.rubocop.yml +0 -13
  117. data/lib/geo_pattern/pattern/base_pattern.rb +0 -47
  118. data/lib/geo_pattern/pattern/chevron_pattern.rb +0 -45
  119. data/lib/geo_pattern/pattern/concentric_circles_pattern.rb +0 -47
  120. data/lib/geo_pattern/pattern/diamond_pattern.rb +0 -56
  121. data/lib/geo_pattern/pattern/hexagon_pattern.rb +0 -57
  122. data/lib/geo_pattern/pattern/mosaic_squares_pattern.rb +0 -76
  123. data/lib/geo_pattern/pattern/nested_squares_pattern.rb +0 -51
  124. data/lib/geo_pattern/pattern/octagon_pattern.rb +0 -35
  125. data/lib/geo_pattern/pattern/overlapping_circles_pattern.rb +0 -46
  126. data/lib/geo_pattern/pattern/overlapping_rings_pattern.rb +0 -46
  127. data/lib/geo_pattern/pattern/plaid_pattern.rb +0 -49
  128. data/lib/geo_pattern/pattern/plus_sign_pattern.rb +0 -53
  129. data/lib/geo_pattern/pattern/sine_wave_pattern.rb +0 -36
  130. data/lib/geo_pattern/pattern/square_pattern.rb +0 -27
  131. data/lib/geo_pattern/pattern/tessellation_pattern.rb +0 -93
  132. data/lib/geo_pattern/pattern/triangle_pattern.rb +0 -51
  133. data/lib/geo_pattern/pattern/xes_pattern.rb +0 -58
  134. data/lib/geo_pattern/svg.rb +0 -77
  135. data/spec/support/helpers.rb +0 -34
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="284" height="94"><rect x="0" y="0" width="100%" height="100%" fill="rgb(48, 4, 251)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(-23.666666666666668, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(260.3333333333333, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(-23.666666666666668, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(260.3333333333333, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(23.666666666666668, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(23.666666666666668, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(71.0, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(71.0, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" transform="translate(118.33333333333333, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" transform="translate(118.33333333333333, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(165.66666666666669, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(165.66666666666669, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(213.00000000000003, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(213.00000000000003, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(284.0, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(47.333333333333336, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(94.66666666666667, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(142.0, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" transform="translate(189.33333333333334, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(236.66666666666669, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(-23.666666666666668, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(260.3333333333333, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(23.666666666666668, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.10666666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(71.0, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(118.33333333333333, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(165.66666666666669, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(213.00000000000003, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.12400000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.12400000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(284.0, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.06333333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(47.333333333333336, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(94.66666666666667, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.03733333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(142.0, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.028666666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(189.33333333333334, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(236.66666666666669, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(-23.666666666666668, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(260.3333333333333, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(23.666666666666668, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(71.0, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(118.33333333333333, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(165.66666666666669, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(213.00000000000003, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 62.666666666666664)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(284.0, 62.666666666666664)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(47.333333333333336, 62.666666666666664)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(94.66666666666667, 62.666666666666664)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.06333333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(142.0, 62.666666666666664)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(189.33333333333334, 62.666666666666664)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(236.66666666666669, 62.666666666666664)" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="284" height="94"><rect x="0" y="0" width="100%" height="100%" fill="rgb(0, 255, 0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(-23.666666666666668, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(260.3333333333333, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(-23.666666666666668, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(260.3333333333333, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(23.666666666666668, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(23.666666666666668, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(71.0, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(71.0, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" transform="translate(118.33333333333333, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" transform="translate(118.33333333333333, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(165.66666666666669, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(165.66666666666669, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(213.00000000000003, -15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(213.00000000000003, 78.33333333333333)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(284.0, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(47.333333333333336, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(94.66666666666667, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(142.0, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" transform="translate(189.33333333333334, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(236.66666666666669, 0.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(-23.666666666666668, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(260.3333333333333, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(23.666666666666668, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.10666666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(71.0, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(118.33333333333333, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(165.66666666666669, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(213.00000000000003, 15.666666666666666)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.12400000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.12400000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(284.0, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.06333333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(47.333333333333336, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(94.66666666666667, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.03733333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(142.0, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.028666666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(189.33333333333334, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(236.66666666666669, 31.333333333333336)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(-23.666666666666668, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(260.3333333333333, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(23.666666666666668, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(71.0, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(118.33333333333333, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(165.66666666666669, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(213.00000000000003, 47.0)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 62.666666666666664)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(284.0, 62.666666666666664)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(47.333333333333336, 62.666666666666664)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(94.66666666666667, 62.666666666666664)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#222" fill-opacity="0.06333333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(142.0, 62.666666666666664)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(189.33333333333334, 62.666666666666664)" /><polyline points="23.666666666666668, 0, 47.333333333333336, 15.666666666666666, 23.666666666666668, 31.333333333333332, 0, 15.666666666666666" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(236.66666666666669, 62.666666666666664)" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="508" height="587"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(-56.53333333333333, -48.95930282728026)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(452.26666666666665, -48.95930282728026)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(-56.53333333333333, 538.5523311000829)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(452.26666666666665, 538.5523311000828)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(28.266666666666666, 0.0)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(28.266666666666666, 587.5116339273632)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(113.06666666666666, -48.95930282728026)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(113.06666666666666, 538.5523311000829)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" transform="translate(197.86666666666665, 0.0)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" transform="translate(197.86666666666665, 587.5116339273632)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(282.66666666666663, -48.95930282728026)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(282.66666666666663, 538.5523311000829)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(367.4666666666666, 0.0)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(367.4666666666666, 587.5116339273632)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(-56.53333333333333, 48.95930282728026)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(452.26666666666665, 48.95930282728026)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(28.266666666666666, 97.91860565456054)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(113.06666666666666, 48.95930282728026)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(197.86666666666665, 97.91860565456054)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" transform="translate(282.66666666666663, 48.95930282728026)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(367.4666666666666, 97.91860565456054)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(-56.53333333333333, 146.8779084818408)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(452.26666666666665, 146.8779084818408)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(28.266666666666666, 195.83721130912105)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.10666666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(113.06666666666666, 146.8779084818408)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(197.86666666666665, 195.83721130912105)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(282.66666666666663, 146.8779084818408)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(367.4666666666666, 195.83721130912105)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.12400000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(-56.53333333333333, 244.79651413640133)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.12400000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(452.26666666666665, 244.79651413640133)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.06333333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(28.266666666666666, 293.7558169636816)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(113.06666666666666, 244.79651413640133)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.03733333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(197.86666666666665, 293.7558169636816)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.028666666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(282.66666666666663, 244.79651413640133)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(367.4666666666666, 293.7558169636816)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(-56.53333333333333, 342.7151197909618)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(452.26666666666665, 342.7151197909618)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(28.266666666666666, 391.6744226182421)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(113.06666666666666, 342.7151197909618)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(197.86666666666665, 391.6744226182421)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(282.66666666666663, 342.7151197909618)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(367.4666666666666, 391.6744226182421)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(-56.53333333333333, 440.6337254455223)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(452.26666666666665, 440.6337254455223)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(28.266666666666666, 489.59302827280254)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(113.06666666666666, 440.6337254455223)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#222" fill-opacity="0.06333333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(197.86666666666665, 489.59302827280254)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(282.66666666666663, 440.6337254455223)" /><polyline points="0,48.95930282728026,28.266666666666666,0,84.8,0,113.06666666666666,48.95930282728026,84.8,97.91860565456052,28.266666666666666,97.91860565456052,0,48.95930282728026" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(367.4666666666666, 489.59302827280254)" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="381" height="381"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.14133333333333334" fill="#ddd" transform="translate(0.0, 47.666666666666664) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.14133333333333334" fill="#ddd" transform="translate(95.33333333333333, 47.666666666666664) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.14133333333333334" fill="#ddd" transform="translate(0.0, 47.666666666666664) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.14133333333333334" fill="#ddd" transform="translate(95.33333333333333, 47.666666666666664) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.08933333333333333" fill="#ddd" transform="translate(143.0, 0.0) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.08933333333333333" fill="#ddd" transform="translate(143.0, 95.33333333333333) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.13266666666666665" fill="#222" transform="translate(143.0, 95.33333333333333) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.13266666666666665" fill="#222" transform="translate(143.0, 0.0) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.13266666666666665" fill="#222" transform="translate(190.66666666666666, 47.666666666666664) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.13266666666666665" fill="#222" transform="translate(286.0, 47.666666666666664) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.13266666666666665" fill="#222" transform="translate(190.66666666666666, 47.666666666666664) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.13266666666666665" fill="#222" transform="translate(286.0, 47.666666666666664) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.15" fill="#222" transform="translate(333.6666666666667, 0.0) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.15" fill="#222" transform="translate(333.6666666666667, 95.33333333333333) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.098" fill="#222" transform="translate(333.6666666666667, 95.33333333333333) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.098" fill="#222" transform="translate(333.6666666666667, 0.0) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.098" fill="#222" transform="translate(47.666666666666664, 95.33333333333333) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.098" fill="#222" transform="translate(47.666666666666664, 190.66666666666666) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.07200000000000001" fill="#ddd" transform="translate(47.666666666666664, 190.66666666666666) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.07200000000000001" fill="#ddd" transform="translate(47.666666666666664, 95.33333333333333) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.07200000000000001" fill="#ddd" transform="translate(95.33333333333333, 143.0) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.07200000000000001" fill="#ddd" transform="translate(190.66666666666666, 143.0) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.07200000000000001" fill="#ddd" transform="translate(95.33333333333333, 143.0) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.07200000000000001" fill="#ddd" transform="translate(190.66666666666666, 143.0) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.07200000000000001" fill="#ddd" transform="translate(238.33333333333331, 95.33333333333333) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.07200000000000001" fill="#ddd" transform="translate(238.33333333333331, 190.66666666666666) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.08066666666666666" fill="#222" transform="translate(238.33333333333331, 190.66666666666666) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.08066666666666666" fill="#222" transform="translate(238.33333333333331, 95.33333333333333) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.08066666666666666" fill="#222" transform="translate(286.0, 143.0) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.08066666666666666" fill="#222" transform="translate(381.3333333333333, 143.0) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.08066666666666666" fill="#222" transform="translate(286.0, 143.0) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.08066666666666666" fill="#222" transform="translate(381.3333333333333, 143.0) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.07200000000000001" fill="#ddd" transform="translate(0.0, 238.33333333333331) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.07200000000000001" fill="#ddd" transform="translate(95.33333333333333, 238.33333333333331) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.07200000000000001" fill="#ddd" transform="translate(0.0, 238.33333333333331) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.07200000000000001" fill="#ddd" transform="translate(95.33333333333333, 238.33333333333331) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.08066666666666666" fill="#222" transform="translate(143.0, 190.66666666666666) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.08066666666666666" fill="#222" transform="translate(143.0, 286.0) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.15" fill="#222" transform="translate(143.0, 286.0) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.15" fill="#222" transform="translate(143.0, 190.66666666666666) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.15" fill="#222" transform="translate(190.66666666666666, 238.33333333333331) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.15" fill="#222" transform="translate(286.0, 238.33333333333331) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.15" fill="#222" transform="translate(190.66666666666666, 238.33333333333331) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.15" fill="#222" transform="translate(286.0, 238.33333333333331) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.11533333333333334" fill="#222" transform="translate(333.6666666666667, 190.66666666666666) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.11533333333333334" fill="#222" transform="translate(333.6666666666667, 286.0) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.13266666666666665" fill="#222" transform="translate(333.6666666666667, 286.0) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.13266666666666665" fill="#222" transform="translate(333.6666666666667, 190.66666666666666) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.13266666666666665" fill="#222" transform="translate(47.666666666666664, 286.0) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.13266666666666665" fill="#222" transform="translate(47.666666666666664, 381.3333333333333) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.046" fill="#222" transform="translate(47.666666666666664, 381.3333333333333) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.046" fill="#222" transform="translate(47.666666666666664, 286.0) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.046" fill="#222" transform="translate(95.33333333333333, 333.6666666666667) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.046" fill="#222" transform="translate(190.66666666666666, 333.6666666666667) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.046" fill="#222" transform="translate(95.33333333333333, 333.6666666666667) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.046" fill="#222" transform="translate(190.66666666666666, 333.6666666666667) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.10666666666666667" fill="#ddd" transform="translate(238.33333333333331, 286.0) scale(-1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.10666666666666667" fill="#ddd" transform="translate(238.33333333333331, 381.3333333333333) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.046" fill="#222" transform="translate(238.33333333333331, 381.3333333333333) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.046" fill="#222" transform="translate(238.33333333333331, 286.0) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.046" fill="#222" transform="translate(286.0, 333.6666666666667) scale(1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.046" fill="#222" transform="translate(381.3333333333333, 333.6666666666667) scale(-1, -1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.046" fill="#222" transform="translate(286.0, 333.6666666666667) scale(1, 1)" /><polyline points="0, 0, 47.666666666666664, 47.666666666666664, 0, 47.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill-opacity="0.046" fill="#222" transform="translate(381.3333333333333, 333.6666666666667) scale(-1, 1)" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="619" height="619"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><rect x="5.733333333333333" y="5.733333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:11.466666666666667px;" /><rect x="28.666666666666668" y="28.666666666666668" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:11.466666666666667px;" /><rect x="108.93333333333334" y="5.733333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.08933333333333333;stroke-width:11.466666666666667px;" /><rect x="131.86666666666667" y="28.666666666666668" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:11.466666666666667px;" /><rect x="212.13333333333333" y="5.733333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.13266666666666665;stroke-width:11.466666666666667px;" /><rect x="235.06666666666666" y="28.666666666666668" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:11.466666666666667px;" /><rect x="315.33333333333337" y="5.733333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.15;stroke-width:11.466666666666667px;" /><rect x="338.2666666666667" y="28.666666666666668" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.12400000000000001;stroke-width:11.466666666666667px;" /><rect x="418.53333333333336" y="5.733333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.098;stroke-width:11.466666666666667px;" /><rect x="441.4666666666667" y="28.666666666666668" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:11.466666666666667px;" /><rect x="521.7333333333333" y="5.733333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.466666666666667px;" /><rect x="544.6666666666666" y="28.666666666666668" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.466666666666667px;" /><rect x="5.733333333333333" y="108.93333333333334" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.466666666666667px;" /><rect x="28.666666666666668" y="131.86666666666667" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.06333333333333334;stroke-width:11.466666666666667px;" /><rect x="108.93333333333334" y="108.93333333333334" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:11.466666666666667px;" /><rect x="131.86666666666667" y="131.86666666666667" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:11.466666666666667px;" /><rect x="212.13333333333333" y="108.93333333333334" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.466666666666667px;" /><rect x="235.06666666666666" y="131.86666666666667" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:11.466666666666667px;" /><rect x="315.33333333333337" y="108.93333333333334" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:11.466666666666667px;" /><rect x="338.2666666666667" y="131.86666666666667" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:11.466666666666667px;" /><rect x="418.53333333333336" y="108.93333333333334" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.15;stroke-width:11.466666666666667px;" /><rect x="441.4666666666667" y="131.86666666666667" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:11.466666666666667px;" /><rect x="521.7333333333333" y="108.93333333333334" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:11.466666666666667px;" /><rect x="544.6666666666666" y="131.86666666666667" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:11.466666666666667px;" /><rect x="5.733333333333333" y="212.13333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.13266666666666665;stroke-width:11.466666666666667px;" /><rect x="28.666666666666668" y="235.06666666666666" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:11.466666666666667px;" /><rect x="108.93333333333334" y="212.13333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.046;stroke-width:11.466666666666667px;" /><rect x="131.86666666666667" y="235.06666666666666" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.098;stroke-width:11.466666666666667px;" /><rect x="212.13333333333333" y="212.13333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.10666666666666667;stroke-width:11.466666666666667px;" /><rect x="235.06666666666666" y="235.06666666666666" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.098;stroke-width:11.466666666666667px;" /><rect x="315.33333333333337" y="212.13333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.046;stroke-width:11.466666666666667px;" /><rect x="338.2666666666667" y="235.06666666666666" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:11.466666666666667px;" /><rect x="418.53333333333336" y="212.13333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.08933333333333333;stroke-width:11.466666666666667px;" /><rect x="441.4666666666667" y="235.06666666666666" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.466666666666667px;" /><rect x="521.7333333333333" y="212.13333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.046;stroke-width:11.466666666666667px;" /><rect x="544.6666666666666" y="235.06666666666666" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.028666666666666667;stroke-width:11.466666666666667px;" /><rect x="5.733333333333333" y="315.33333333333337" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.12400000000000001;stroke-width:11.466666666666667px;" /><rect x="28.666666666666668" y="338.2666666666667" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.03733333333333333;stroke-width:11.466666666666667px;" /><rect x="108.93333333333334" y="315.33333333333337" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.06333333333333334;stroke-width:11.466666666666667px;" /><rect x="131.86666666666667" y="338.2666666666667" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.046;stroke-width:11.466666666666667px;" /><rect x="212.13333333333333" y="315.33333333333337" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.046;stroke-width:11.466666666666667px;" /><rect x="235.06666666666666" y="338.2666666666667" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.06333333333333334;stroke-width:11.466666666666667px;" /><rect x="315.33333333333337" y="315.33333333333337" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.03733333333333333;stroke-width:11.466666666666667px;" /><rect x="338.2666666666667" y="338.2666666666667" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.12400000000000001;stroke-width:11.466666666666667px;" /><rect x="418.53333333333336" y="315.33333333333337" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.028666666666666667;stroke-width:11.466666666666667px;" /><rect x="441.4666666666667" y="338.2666666666667" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.046;stroke-width:11.466666666666667px;" /><rect x="521.7333333333333" y="315.33333333333337" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.466666666666667px;" /><rect x="544.6666666666666" y="338.2666666666667" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.08933333333333333;stroke-width:11.466666666666667px;" /><rect x="5.733333333333333" y="418.53333333333336" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:11.466666666666667px;" /><rect x="28.666666666666668" y="441.4666666666667" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.046;stroke-width:11.466666666666667px;" /><rect x="108.93333333333334" y="418.53333333333336" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.098;stroke-width:11.466666666666667px;" /><rect x="131.86666666666667" y="441.4666666666667" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.10666666666666667;stroke-width:11.466666666666667px;" /><rect x="212.13333333333333" y="418.53333333333336" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.098;stroke-width:11.466666666666667px;" /><rect x="235.06666666666666" y="441.4666666666667" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.046;stroke-width:11.466666666666667px;" /><rect x="315.33333333333337" y="418.53333333333336" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:11.466666666666667px;" /><rect x="338.2666666666667" y="441.4666666666667" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.13266666666666665;stroke-width:11.466666666666667px;" /><rect x="418.53333333333336" y="418.53333333333336" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:11.466666666666667px;" /><rect x="441.4666666666667" y="441.4666666666667" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:11.466666666666667px;" /><rect x="521.7333333333333" y="418.53333333333336" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:11.466666666666667px;" /><rect x="544.6666666666666" y="441.4666666666667" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.15;stroke-width:11.466666666666667px;" /><rect x="5.733333333333333" y="521.7333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:11.466666666666667px;" /><rect x="28.666666666666668" y="544.6666666666666" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:11.466666666666667px;" /><rect x="108.93333333333334" y="521.7333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:11.466666666666667px;" /><rect x="131.86666666666667" y="544.6666666666666" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.466666666666667px;" /><rect x="212.13333333333333" y="521.7333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:11.466666666666667px;" /><rect x="235.06666666666666" y="544.6666666666666" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:11.466666666666667px;" /><rect x="315.33333333333337" y="521.7333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#222" style="opacity:0.06333333333333334;stroke-width:11.466666666666667px;" /><rect x="338.2666666666667" y="544.6666666666666" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.466666666666667px;" /><rect x="418.53333333333336" y="521.7333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.466666666666667px;" /><rect x="441.4666666666667" y="544.6666666666666" width="34.4" height="34.4" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.466666666666667px;" /><rect x="521.7333333333333" y="521.7333333333333" width="80.26666666666667" height="80.26666666666667" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:11.466666666666667px;" /><rect x="544.6666666666666" y="544.6666666666666" width="34.4" height="34.4" fill="none" stroke="#222" style="opacity:0.098;stroke-width:11.466666666666667px;" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="340" height="340"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 0.0)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(56.666666666666664, 0.0)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(113.33333333333333, 0.0)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" transform="translate(170.0, 0.0)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(226.66666666666666, 0.0)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(283.3333333333333, 0.0)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 56.666666666666664)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(56.666666666666664, 56.666666666666664)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(113.33333333333333, 56.666666666666664)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(170.0, 56.666666666666664)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" transform="translate(226.66666666666666, 56.666666666666664)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(283.3333333333333, 56.666666666666664)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 113.33333333333333)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(56.666666666666664, 113.33333333333333)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.10666666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(113.33333333333333, 113.33333333333333)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(170.0, 113.33333333333333)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(226.66666666666666, 113.33333333333333)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(283.3333333333333, 113.33333333333333)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.12400000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 170.0)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.06333333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(56.666666666666664, 170.0)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(113.33333333333333, 170.0)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.03733333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(170.0, 170.0)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.028666666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(226.66666666666666, 170.0)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(283.3333333333333, 170.0)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 226.66666666666666)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(56.666666666666664, 226.66666666666666)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(113.33333333333333, 226.66666666666666)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(170.0, 226.66666666666666)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(226.66666666666666, 226.66666666666666)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(283.3333333333333, 226.66666666666666)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 283.3333333333333)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(56.666666666666664, 283.3333333333333)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(113.33333333333333, 283.3333333333333)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#222" fill-opacity="0.06333333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(170.0, 283.3333333333333)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(226.66666666666666, 283.3333333333333)" /><polyline points="18.7,0,37.96666666666667,0,56.666666666666664,18.7,56.666666666666664,37.96666666666667,37.96666666666667,56.666666666666664,18.7,56.666666666666664,0,37.96666666666667,0,18.7,18.7,0" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(283.3333333333333, 283.3333333333333)" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="565" height="565"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><circle cx="0.0" cy="0.0" r="94.16666666666667" fill="#ddd" style="opacity:0.14133333333333334;" /><circle cx="565.0" cy="0.0" r="94.16666666666667" fill="#ddd" style="opacity:0.14133333333333334;" /><circle cx="0.0" cy="565.0" r="94.16666666666667" fill="#ddd" style="opacity:0.14133333333333334;" /><circle cx="565.0" cy="565.0" r="94.16666666666667" fill="#ddd" style="opacity:0.14133333333333334;" /><circle cx="94.16666666666667" cy="0.0" r="94.16666666666667" fill="#ddd" style="opacity:0.08933333333333333;" /><circle cx="94.16666666666667" cy="565.0" r="94.16666666666667" fill="#ddd" style="opacity:0.08933333333333333;" /><circle cx="188.33333333333334" cy="0.0" r="94.16666666666667" fill="#222" style="opacity:0.13266666666666665;" /><circle cx="188.33333333333334" cy="565.0" r="94.16666666666667" fill="#222" style="opacity:0.13266666666666665;" /><circle cx="282.5" cy="0.0" r="94.16666666666667" fill="#222" style="opacity:0.15;" /><circle cx="282.5" cy="565.0" r="94.16666666666667" fill="#222" style="opacity:0.15;" /><circle cx="376.6666666666667" cy="0.0" r="94.16666666666667" fill="#222" style="opacity:0.098;" /><circle cx="376.6666666666667" cy="565.0" r="94.16666666666667" fill="#222" style="opacity:0.098;" /><circle cx="470.83333333333337" cy="0.0" r="94.16666666666667" fill="#ddd" style="opacity:0.07200000000000001;" /><circle cx="470.83333333333337" cy="565.0" r="94.16666666666667" fill="#ddd" style="opacity:0.07200000000000001;" /><circle cx="0.0" cy="94.16666666666667" r="94.16666666666667" fill="#ddd" style="opacity:0.07200000000000001;" /><circle cx="565.0" cy="94.16666666666667" r="94.16666666666667" fill="#ddd" style="opacity:0.07200000000000001;" /><circle cx="94.16666666666667" cy="94.16666666666667" r="94.16666666666667" fill="#222" style="opacity:0.08066666666666666;" /><circle cx="188.33333333333334" cy="94.16666666666667" r="94.16666666666667" fill="#ddd" style="opacity:0.07200000000000001;" /><circle cx="282.5" cy="94.16666666666667" r="94.16666666666667" fill="#222" style="opacity:0.08066666666666666;" /><circle cx="376.6666666666667" cy="94.16666666666667" r="94.16666666666667" fill="#222" style="opacity:0.15;" /><circle cx="470.83333333333337" cy="94.16666666666667" r="94.16666666666667" fill="#222" style="opacity:0.11533333333333334;" /><circle cx="0.0" cy="188.33333333333334" r="94.16666666666667" fill="#222" style="opacity:0.13266666666666665;" /><circle cx="565.0" cy="188.33333333333334" r="94.16666666666667" fill="#222" style="opacity:0.13266666666666665;" /><circle cx="94.16666666666667" cy="188.33333333333334" r="94.16666666666667" fill="#222" style="opacity:0.046;" /><circle cx="188.33333333333334" cy="188.33333333333334" r="94.16666666666667" fill="#ddd" style="opacity:0.10666666666666667;" /><circle cx="282.5" cy="188.33333333333334" r="94.16666666666667" fill="#222" style="opacity:0.046;" /><circle cx="376.6666666666667" cy="188.33333333333334" r="94.16666666666667" fill="#ddd" style="opacity:0.08933333333333333;" /><circle cx="470.83333333333337" cy="188.33333333333334" r="94.16666666666667" fill="#222" style="opacity:0.046;" /><circle cx="0.0" cy="282.5" r="94.16666666666667" fill="#ddd" style="opacity:0.12400000000000001;" /><circle cx="565.0" cy="282.5" r="94.16666666666667" fill="#ddd" style="opacity:0.12400000000000001;" /><circle cx="94.16666666666667" cy="282.5" r="94.16666666666667" fill="#222" style="opacity:0.06333333333333334;" /><circle cx="188.33333333333334" cy="282.5" r="94.16666666666667" fill="#222" style="opacity:0.046;" /><circle cx="282.5" cy="282.5" r="94.16666666666667" fill="#ddd" style="opacity:0.03733333333333333;" /><circle cx="376.6666666666667" cy="282.5" r="94.16666666666667" fill="#222" style="opacity:0.028666666666666667;" /><circle cx="470.83333333333337" cy="282.5" r="94.16666666666667" fill="#ddd" style="opacity:0.07200000000000001;" /><circle cx="0.0" cy="376.6666666666667" r="94.16666666666667" fill="#222" style="opacity:0.08066666666666666;" /><circle cx="565.0" cy="376.6666666666667" r="94.16666666666667" fill="#222" style="opacity:0.08066666666666666;" /><circle cx="94.16666666666667" cy="376.6666666666667" r="94.16666666666667" fill="#222" style="opacity:0.098;" /><circle cx="188.33333333333334" cy="376.6666666666667" r="94.16666666666667" fill="#222" style="opacity:0.098;" /><circle cx="282.5" cy="376.6666666666667" r="94.16666666666667" fill="#222" style="opacity:0.11533333333333334;" /><circle cx="376.6666666666667" cy="376.6666666666667" r="94.16666666666667" fill="#ddd" style="opacity:0.14133333333333334;" /><circle cx="470.83333333333337" cy="376.6666666666667" r="94.16666666666667" fill="#222" style="opacity:0.11533333333333334;" /><circle cx="0.0" cy="470.83333333333337" r="94.16666666666667" fill="#ddd" style="opacity:0.05466666666666667;" /><circle cx="565.0" cy="470.83333333333337" r="94.16666666666667" fill="#ddd" style="opacity:0.05466666666666667;" /><circle cx="94.16666666666667" cy="470.83333333333337" r="94.16666666666667" fill="#222" style="opacity:0.11533333333333334;" /><circle cx="188.33333333333334" cy="470.83333333333337" r="94.16666666666667" fill="#ddd" style="opacity:0.05466666666666667;" /><circle cx="282.5" cy="470.83333333333337" r="94.16666666666667" fill="#222" style="opacity:0.06333333333333334;" /><circle cx="376.6666666666667" cy="470.83333333333337" r="94.16666666666667" fill="#ddd" style="opacity:0.07200000000000001;" /><circle cx="470.83333333333337" cy="470.83333333333337" r="94.16666666666667" fill="#ddd" style="opacity:0.05466666666666667;" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="340" height="340"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><circle cx="0.0" cy="0.0" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:14.166666666666666px;" /><circle cx="340.0" cy="0.0" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:14.166666666666666px;" /><circle cx="0.0" cy="340.0" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:14.166666666666666px;" /><circle cx="340.0" cy="340.0" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:14.166666666666666px;" /><circle cx="56.666666666666664" cy="0.0" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.08933333333333333;stroke-width:14.166666666666666px;" /><circle cx="56.666666666666664" cy="340.0" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.08933333333333333;stroke-width:14.166666666666666px;" /><circle cx="113.33333333333333" cy="0.0" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.13266666666666665;stroke-width:14.166666666666666px;" /><circle cx="113.33333333333333" cy="340.0" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.13266666666666665;stroke-width:14.166666666666666px;" /><circle cx="170.0" cy="0.0" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.15;stroke-width:14.166666666666666px;" /><circle cx="170.0" cy="340.0" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.15;stroke-width:14.166666666666666px;" /><circle cx="226.66666666666666" cy="0.0" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.098;stroke-width:14.166666666666666px;" /><circle cx="226.66666666666666" cy="340.0" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.098;stroke-width:14.166666666666666px;" /><circle cx="283.3333333333333" cy="0.0" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:14.166666666666666px;" /><circle cx="283.3333333333333" cy="340.0" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:14.166666666666666px;" /><circle cx="0.0" cy="56.666666666666664" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:14.166666666666666px;" /><circle cx="340.0" cy="56.666666666666664" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:14.166666666666666px;" /><circle cx="56.666666666666664" cy="56.666666666666664" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:14.166666666666666px;" /><circle cx="113.33333333333333" cy="56.666666666666664" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:14.166666666666666px;" /><circle cx="170.0" cy="56.666666666666664" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:14.166666666666666px;" /><circle cx="226.66666666666666" cy="56.666666666666664" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.15;stroke-width:14.166666666666666px;" /><circle cx="283.3333333333333" cy="56.666666666666664" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:14.166666666666666px;" /><circle cx="0.0" cy="113.33333333333333" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.13266666666666665;stroke-width:14.166666666666666px;" /><circle cx="340.0" cy="113.33333333333333" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.13266666666666665;stroke-width:14.166666666666666px;" /><circle cx="56.666666666666664" cy="113.33333333333333" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.046;stroke-width:14.166666666666666px;" /><circle cx="113.33333333333333" cy="113.33333333333333" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.10666666666666667;stroke-width:14.166666666666666px;" /><circle cx="170.0" cy="113.33333333333333" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.046;stroke-width:14.166666666666666px;" /><circle cx="226.66666666666666" cy="113.33333333333333" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.08933333333333333;stroke-width:14.166666666666666px;" /><circle cx="283.3333333333333" cy="113.33333333333333" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.046;stroke-width:14.166666666666666px;" /><circle cx="0.0" cy="170.0" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.12400000000000001;stroke-width:14.166666666666666px;" /><circle cx="340.0" cy="170.0" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.12400000000000001;stroke-width:14.166666666666666px;" /><circle cx="56.666666666666664" cy="170.0" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.06333333333333334;stroke-width:14.166666666666666px;" /><circle cx="113.33333333333333" cy="170.0" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.046;stroke-width:14.166666666666666px;" /><circle cx="170.0" cy="170.0" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.03733333333333333;stroke-width:14.166666666666666px;" /><circle cx="226.66666666666666" cy="170.0" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.028666666666666667;stroke-width:14.166666666666666px;" /><circle cx="283.3333333333333" cy="170.0" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:14.166666666666666px;" /><circle cx="0.0" cy="226.66666666666666" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:14.166666666666666px;" /><circle cx="340.0" cy="226.66666666666666" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:14.166666666666666px;" /><circle cx="56.666666666666664" cy="226.66666666666666" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.098;stroke-width:14.166666666666666px;" /><circle cx="113.33333333333333" cy="226.66666666666666" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.098;stroke-width:14.166666666666666px;" /><circle cx="170.0" cy="226.66666666666666" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:14.166666666666666px;" /><circle cx="226.66666666666666" cy="226.66666666666666" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:14.166666666666666px;" /><circle cx="283.3333333333333" cy="226.66666666666666" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:14.166666666666666px;" /><circle cx="0.0" cy="283.3333333333333" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:14.166666666666666px;" /><circle cx="340.0" cy="283.3333333333333" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:14.166666666666666px;" /><circle cx="56.666666666666664" cy="283.3333333333333" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:14.166666666666666px;" /><circle cx="113.33333333333333" cy="283.3333333333333" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:14.166666666666666px;" /><circle cx="170.0" cy="283.3333333333333" r="49.58333333333333" fill="none" stroke="#222" style="opacity:0.06333333333333334;stroke-width:14.166666666666666px;" /><circle cx="226.66666666666666" cy="283.3333333333333" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:14.166666666666666px;" /><circle cx="283.3333333333333" cy="283.3333333333333" r="49.58333333333333" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:14.166666666666666px;" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="461" height="461"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><rect x="0" y="19" width="100%" height="13" opacity="0.08933333333333333" fill="#ddd" /><rect x="0" y="50" width="100%" height="20" opacity="0.15" fill="#222" /><rect x="0" y="84" width="100%" height="11" opacity="0.07200000000000001" fill="#ddd" /><rect x="0" y="106" width="100%" height="12" opacity="0.08066666666666666" fill="#222" /><rect x="0" y="129" width="100%" height="12" opacity="0.08066666666666666" fill="#222" /><rect x="0" y="161" width="100%" height="16" opacity="0.11533333333333334" fill="#222" /><rect x="0" y="195" width="100%" height="8" opacity="0.046" fill="#222" /><rect x="0" y="218" width="100%" height="8" opacity="0.046" fill="#222" /><rect x="0" y="239" width="100%" height="8" opacity="0.046" fill="#222" /><rect x="0" y="264" width="100%" height="10" opacity="0.06333333333333334" fill="#222" /><rect x="0" y="282" width="100%" height="7" opacity="0.03733333333333333" fill="#ddd" /><rect x="0" y="295" width="100%" height="11" opacity="0.07200000000000001" fill="#ddd" /><rect x="0" y="318" width="100%" height="14" opacity="0.098" fill="#222" /><rect x="0" y="346" width="100%" height="16" opacity="0.11533333333333334" fill="#222" /><rect x="0" y="381" width="100%" height="16" opacity="0.11533333333333334" fill="#222" /><rect x="0" y="406" width="100%" height="16" opacity="0.11533333333333334" fill="#222" /><rect x="0" y="431" width="100%" height="10" opacity="0.06333333333333334" fill="#222" /><rect x="0" y="452" width="100%" height="9" opacity="0.05466666666666667" fill="#ddd" /><rect x="19" y="0" width="13" height="100%" opacity="0.08933333333333333" fill="#ddd" /><rect x="50" y="0" width="20" height="100%" opacity="0.15" fill="#222" /><rect x="84" y="0" width="11" height="100%" opacity="0.07200000000000001" fill="#ddd" /><rect x="106" y="0" width="12" height="100%" opacity="0.08066666666666666" fill="#222" /><rect x="129" y="0" width="12" height="100%" opacity="0.08066666666666666" fill="#222" /><rect x="161" y="0" width="16" height="100%" opacity="0.11533333333333334" fill="#222" /><rect x="195" y="0" width="8" height="100%" opacity="0.046" fill="#222" /><rect x="218" y="0" width="8" height="100%" opacity="0.046" fill="#222" /><rect x="239" y="0" width="8" height="100%" opacity="0.046" fill="#222" /><rect x="264" y="0" width="10" height="100%" opacity="0.06333333333333334" fill="#222" /><rect x="282" y="0" width="7" height="100%" opacity="0.03733333333333333" fill="#ddd" /><rect x="295" y="0" width="11" height="100%" opacity="0.07200000000000001" fill="#ddd" /><rect x="318" y="0" width="14" height="100%" opacity="0.098" fill="#222" /><rect x="346" y="0" width="16" height="100%" opacity="0.11533333333333334" fill="#222" /><rect x="381" y="0" width="16" height="100%" opacity="0.11533333333333334" fill="#222" /><rect x="406" y="0" width="16" height="100%" opacity="0.11533333333333334" fill="#222" /><rect x="431" y="0" width="10" height="100%" opacity="0.06333333333333334" fill="#222" /><rect x="452" y="0" width="9" height="100%" opacity="0.05466666666666667" fill="#ddd" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="288" height="288"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.14133333333333334;" transform="translate(-24.0,-36.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.14133333333333334;" transform="translate(264.0,-36.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.14133333333333334;" transform="translate(-24.0,252.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.14133333333333334;" transform="translate(264.0,252.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.08933333333333333;" transform="translate(24.0,-36.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.08933333333333333;" transform="translate(24.0,252.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.13266666666666665;" transform="translate(72.0,-36.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.13266666666666665;" transform="translate(72.0,252.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.15;" transform="translate(120.0,-36.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.15;" transform="translate(120.0,252.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.098;" transform="translate(168.0,-36.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.098;" transform="translate(168.0,252.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.07200000000000001;" transform="translate(216.0,-36.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.07200000000000001;" transform="translate(216.0,252.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.07200000000000001;" transform="translate(0.0,12.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.07200000000000001;" transform="translate(288.0,12.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.08066666666666666;" transform="translate(48.0,12.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.07200000000000001;" transform="translate(96.0,12.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.08066666666666666;" transform="translate(144.0,12.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.15;" transform="translate(192.0,12.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.11533333333333334;" transform="translate(240.0,12.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.13266666666666665;" transform="translate(-24.0,60.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.13266666666666665;" transform="translate(264.0,60.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.046;" transform="translate(24.0,60.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.10666666666666667;" transform="translate(72.0,60.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.046;" transform="translate(120.0,60.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.08933333333333333;" transform="translate(168.0,60.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.046;" transform="translate(216.0,60.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.12400000000000001;" transform="translate(0.0,108.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.12400000000000001;" transform="translate(288.0,108.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.06333333333333334;" transform="translate(48.0,108.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.046;" transform="translate(96.0,108.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.03733333333333333;" transform="translate(144.0,108.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.028666666666666667;" transform="translate(192.0,108.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.07200000000000001;" transform="translate(240.0,108.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.08066666666666666;" transform="translate(-24.0,156.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.08066666666666666;" transform="translate(264.0,156.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.098;" transform="translate(24.0,156.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.098;" transform="translate(72.0,156.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.11533333333333334;" transform="translate(120.0,156.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.14133333333333334;" transform="translate(168.0,156.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.11533333333333334;" transform="translate(216.0,156.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.05466666666666667;" transform="translate(0.0,204.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.05466666666666667;" transform="translate(288.0,204.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.11533333333333334;" transform="translate(48.0,204.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.05466666666666667;" transform="translate(96.0,204.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.06333333333333334;" transform="translate(144.0,204.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.07200000000000001;" transform="translate(192.0,204.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" stroke="#000" stroke-opacity="0.02" style="fill-opacity:0.05466666666666667;" transform="translate(240.0,204.0)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="380" height="936"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:26px;" transform="translate(-95, -100.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:26px;" transform="translate(-95, 835.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.08933333333333333;stroke-width:26px;" transform="translate(-95, -74.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.08933333333333333;stroke-width:26px;" transform="translate(-95, 861.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.13266666666666665;stroke-width:26px;" transform="translate(-95, -48.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.13266666666666665;stroke-width:26px;" transform="translate(-95, 887.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.15;stroke-width:26px;" transform="translate(-95, -22.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.15;stroke-width:26px;" transform="translate(-95, 913.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.098;stroke-width:26px;" transform="translate(-95, 3.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.098;stroke-width:26px;" transform="translate(-95, 939.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:26px;" transform="translate(-95, 29.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:26px;" transform="translate(-95, 965.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:26px;" transform="translate(-95, 55.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:26px;" transform="translate(-95, 991.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:26px;" transform="translate(-95, 81.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:26px;" transform="translate(-95, 1017.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:26px;" transform="translate(-95, 107.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:26px;" transform="translate(-95, 1043.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:26px;" transform="translate(-95, 133.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:26px;" transform="translate(-95, 1069.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.15;stroke-width:26px;" transform="translate(-95, 159.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.15;stroke-width:26px;" transform="translate(-95, 1095.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:26px;" transform="translate(-95, 185.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:26px;" transform="translate(-95, 1121.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.13266666666666665;stroke-width:26px;" transform="translate(-95, 211.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.13266666666666665;stroke-width:26px;" transform="translate(-95, 1147.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.046;stroke-width:26px;" transform="translate(-95, 237.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.046;stroke-width:26px;" transform="translate(-95, 1173.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.10666666666666667;stroke-width:26px;" transform="translate(-95, 263.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.10666666666666667;stroke-width:26px;" transform="translate(-95, 1199.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.046;stroke-width:26px;" transform="translate(-95, 289.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.046;stroke-width:26px;" transform="translate(-95, 1225.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.08933333333333333;stroke-width:26px;" transform="translate(-95, 315.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.08933333333333333;stroke-width:26px;" transform="translate(-95, 1251.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.046;stroke-width:26px;" transform="translate(-95, 341.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.046;stroke-width:26px;" transform="translate(-95, 1277.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.12400000000000001;stroke-width:26px;" transform="translate(-95, 367.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.12400000000000001;stroke-width:26px;" transform="translate(-95, 1303.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.06333333333333334;stroke-width:26px;" transform="translate(-95, 393.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.06333333333333334;stroke-width:26px;" transform="translate(-95, 1329.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.046;stroke-width:26px;" transform="translate(-95, 419.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.046;stroke-width:26px;" transform="translate(-95, 1355.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.03733333333333333;stroke-width:26px;" transform="translate(-95, 445.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.03733333333333333;stroke-width:26px;" transform="translate(-95, 1381.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.028666666666666667;stroke-width:26px;" transform="translate(-95, 471.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.028666666666666667;stroke-width:26px;" transform="translate(-95, 1407.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:26px;" transform="translate(-95, 497.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:26px;" transform="translate(-95, 1433.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:26px;" transform="translate(-95, 523.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:26px;" transform="translate(-95, 1459.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.098;stroke-width:26px;" transform="translate(-95, 549.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.098;stroke-width:26px;" transform="translate(-95, 1485.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.098;stroke-width:26px;" transform="translate(-95, 575.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.098;stroke-width:26px;" transform="translate(-95, 1511.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:26px;" transform="translate(-95, 601.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:26px;" transform="translate(-95, 1537.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:26px;" transform="translate(-95, 627.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:26px;" transform="translate(-95, 1563.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:26px;" transform="translate(-95, 653.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:26px;" transform="translate(-95, 1589.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:26px;" transform="translate(-95, 679.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:26px;" transform="translate(-95, 1615.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:26px;" transform="translate(-95, 705.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:26px;" transform="translate(-95, 1641.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:26px;" transform="translate(-95, 731.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:26px;" transform="translate(-95, 1667.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.06333333333333334;stroke-width:26px;" transform="translate(-95, 757.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#222" style="opacity:0.06333333333333334;stroke-width:26px;" transform="translate(-95, 1693.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:26px;" transform="translate(-95, 783.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:26px;" transform="translate(-95, 1719.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:26px;" transform="translate(-95, 809.5)" /><path d="M0 67 C 66.5 0, 123.5 0, 190 67 S 313.5 134, 380 67 S 503.5 0, 570.0, 67" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:26px;" transform="translate(-95, 1745.5)" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="340" height="340"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><rect x="0.0" y="0.0" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" /><rect x="56.666666666666664" y="0.0" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" /><rect x="113.33333333333333" y="0.0" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" /><rect x="170.0" y="0.0" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" /><rect x="226.66666666666666" y="0.0" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" /><rect x="283.3333333333333" y="0.0" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" /><rect x="0.0" y="56.666666666666664" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" /><rect x="56.666666666666664" y="56.666666666666664" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" /><rect x="113.33333333333333" y="56.666666666666664" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" /><rect x="170.0" y="56.666666666666664" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" /><rect x="226.66666666666666" y="56.666666666666664" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" /><rect x="283.3333333333333" y="56.666666666666664" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" /><rect x="0.0" y="113.33333333333333" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" /><rect x="56.666666666666664" y="113.33333333333333" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" /><rect x="113.33333333333333" y="113.33333333333333" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.10666666666666667" stroke="#000" stroke-opacity="0.02" /><rect x="170.0" y="113.33333333333333" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" /><rect x="226.66666666666666" y="113.33333333333333" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" /><rect x="283.3333333333333" y="113.33333333333333" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" /><rect x="0.0" y="170.0" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.12400000000000001" stroke="#000" stroke-opacity="0.02" /><rect x="56.666666666666664" y="170.0" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.06333333333333334" stroke="#000" stroke-opacity="0.02" /><rect x="113.33333333333333" y="170.0" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" /><rect x="170.0" y="170.0" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.03733333333333333" stroke="#000" stroke-opacity="0.02" /><rect x="226.66666666666666" y="170.0" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.028666666666666667" stroke="#000" stroke-opacity="0.02" /><rect x="283.3333333333333" y="170.0" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" /><rect x="0.0" y="226.66666666666666" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" /><rect x="56.666666666666664" y="226.66666666666666" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" /><rect x="113.33333333333333" y="226.66666666666666" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" /><rect x="170.0" y="226.66666666666666" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" /><rect x="226.66666666666666" y="226.66666666666666" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" /><rect x="283.3333333333333" y="226.66666666666666" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" /><rect x="0.0" y="283.3333333333333" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" /><rect x="56.666666666666664" y="283.3333333333333" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" /><rect x="113.33333333333333" y="283.3333333333333" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" /><rect x="170.0" y="283.3333333333333" width="56.666666666666664" height="56.666666666666664" fill="#222" fill-opacity="0.06333333333333334" stroke="#000" stroke-opacity="0.02" /><rect x="226.66666666666666" y="283.3333333333333" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" /><rect x="283.3333333333333" y="283.3333333333333" width="56.666666666666664" height="56.666666666666664" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="178" height="205"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><rect x="-18.833333333333332" y="-18.833333333333332" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.14133333333333334" stroke-width="1" /><rect x="159.40724708509435" y="-18.833333333333332" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.14133333333333334" stroke-width="1" /><rect x="-18.833333333333332" y="186.98116083685537" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.14133333333333334" stroke-width="1" /><rect x="159.40724708509435" y="186.98116083685537" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.14133333333333334" stroke-width="1" /><rect x="70.28695687588052" y="32.62029020921385" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.08933333333333333" stroke-width="1" /><rect x="-18.833333333333332" y="84.07391375176103" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.13266666666666665" stroke-width="1" /><rect x="159.40724708509435" y="84.07391375176103" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.13266666666666665" stroke-width="1" /><rect x="70.28695687588052" y="135.52753729430822" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.15" stroke-width="1" /><polyline points="0, 0, 32.62029020921385, 18.833333333333332, 0, 37.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.098" stroke-width="1" transform="translate(18.833333333333332, -18.833333333333332) rotate(0, 18.833333333333332, 16.310145104606924)" /><polyline points="0, 0, 32.62029020921385, 18.833333333333332, 0, 37.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.098" stroke-width="1" transform="translate(18.833333333333332, 224.64782750352205) rotate(0, 18.833333333333332, 16.310145104606924) scale(1, -1)" /><polyline points="0, 0, 32.62029020921385, 18.833333333333332, 0, 37.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.07200000000000001" stroke-width="1" transform="translate(159.40724708509435, -18.833333333333332) rotate(0, 18.833333333333332, 16.310145104606924) scale(-1, 1)" /><polyline points="0, 0, 32.62029020921385, 18.833333333333332, 0, 37.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.07200000000000001" stroke-width="1" transform="translate(159.40724708509435, 224.64782750352205) rotate(0, 18.833333333333332, 16.310145104606924) scale(-1, -1)" /><polyline points="0, 0, 32.62029020921385, 18.833333333333332, 0, 37.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.07200000000000001" stroke-width="1" transform="translate(107.95362354254718, 32.62029020921385)" /><polyline points="0, 0, 32.62029020921385, 18.833333333333332, 0, 37.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.08066666666666666" stroke-width="1" transform="translate(70.28695687588052, 32.62029020921385) scale(-1, 1)" /><polyline points="0, 0, 32.62029020921385, 18.833333333333332, 0, 37.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.07200000000000001" stroke-width="1" transform="translate(107.95362354254718, 173.19420396097485) scale(1, -1)" /><polyline points="0, 0, 32.62029020921385, 18.833333333333332, 0, 37.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.08066666666666666" stroke-width="1" transform="translate(70.28695687588052, 173.19420396097485) scale(-1, -1)" /><polyline points="0, 0, 32.62029020921385, 18.833333333333332, 0, 37.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.15" stroke-width="1" transform="translate(18.833333333333332, 84.07391375176103)" /><polyline points="0, 0, 32.62029020921385, 18.833333333333332, 0, 37.666666666666664, 0, 0" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.11533333333333334" stroke-width="1" transform="translate(159.40724708509435, 84.07391375176103) scale(-1, 1)" /><rect x="0" y="0" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.13266666666666665" stroke-width="1" transform="translate(18.833333333333332, 18.833333333333332) rotate(-30, 0, 0)" /><rect x="0" y="0" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.046" stroke-width="1" transform="scale(-1, 1) translate(-159.40724708509435, 18.833333333333332) rotate(-30, 0, 0)" /><rect x="0" y="0" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.10666666666666667" stroke-width="1" transform="translate(18.833333333333332, 46.40724708509436) rotate(30, 0, 37.666666666666664)" /><rect x="0" y="0" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.046" stroke-width="1" transform="scale(-1, 1) translate(-159.40724708509435, 46.40724708509436) rotate(30, 0, 37.666666666666664)" /><rect x="0" y="0" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.08933333333333333" stroke-width="1" transform="scale(1, -1) translate(18.833333333333332, -159.40724708509435) rotate(30, 0, 37.666666666666664)" /><rect x="0" y="0" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.046" stroke-width="1" transform="scale(-1, -1) translate(-159.40724708509435, -159.40724708509435) rotate(30, 0, 37.666666666666664)" /><rect x="0" y="0" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.12400000000000001" stroke-width="1" transform="scale(1, -1) translate(18.833333333333332, -186.98116083685537) rotate(-30, 0, 0)" /><rect x="0" y="0" width="37.666666666666664" height="37.666666666666664" stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.06333333333333334" stroke-width="1" transform="scale(-1, -1) translate(-159.40724708509435, -186.98116083685537) rotate(-30, 0, 0)" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="226" height="393"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(-37.83333333333333, 0.0) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(189.16666666666663, 0.0) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 0.0) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(37.83333333333333, 0.0) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" transform="translate(75.66666666666666, 0.0) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(113.49999999999999, 0.0) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(151.33333333333331, 0.0) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(-37.83333333333333, 65.52925555302251) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(189.16666666666663, 65.52925555302251) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 65.52925555302251) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(37.83333333333333, 65.52925555302251) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(75.66666666666666, 65.52925555302251) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.15" stroke="#000" stroke-opacity="0.02" transform="translate(113.49999999999999, 65.52925555302251) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(151.33333333333331, 65.52925555302251) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(-37.83333333333333, 131.05851110604502) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.13266666666666665" stroke="#000" stroke-opacity="0.02" transform="translate(189.16666666666663, 131.05851110604502) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 131.05851110604502) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.10666666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(37.83333333333333, 131.05851110604502) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(75.66666666666666, 131.05851110604502) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.08933333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(113.49999999999999, 131.05851110604502) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(151.33333333333331, 131.05851110604502) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.12400000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(-37.83333333333333, 196.58776665906754) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.12400000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(189.16666666666663, 196.58776665906754) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.06333333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 196.58776665906754) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.046" stroke="#000" stroke-opacity="0.02" transform="translate(37.83333333333333, 196.58776665906754) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.03733333333333333" stroke="#000" stroke-opacity="0.02" transform="translate(75.66666666666666, 196.58776665906754) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.028666666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(113.49999999999999, 196.58776665906754) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(151.33333333333331, 196.58776665906754) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(-37.83333333333333, 262.11702221209003) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.08066666666666666" stroke="#000" stroke-opacity="0.02" transform="translate(189.16666666666663, 262.11702221209003) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 262.11702221209003) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.098" stroke="#000" stroke-opacity="0.02" transform="translate(37.83333333333333, 262.11702221209003) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(75.66666666666666, 262.11702221209003) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.14133333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(113.49999999999999, 262.11702221209003) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(151.33333333333331, 262.11702221209003) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(-37.83333333333333, 327.64627776511253) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(189.16666666666663, 327.64627776511253) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.11533333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(0.0, 327.64627776511253) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(37.83333333333333, 327.64627776511253) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#222" fill-opacity="0.06333333333333334" stroke="#000" stroke-opacity="0.02" transform="translate(75.66666666666666, 327.64627776511253) rotate(180, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.07200000000000001" stroke="#000" stroke-opacity="0.02" transform="translate(113.49999999999999, 327.64627776511253) rotate(0, 37.83333333333333, 32.764627776511254)" /><polyline points="37.83333333333333, 0, 75.66666666666666, 65.52925555302251, 0, 65.52925555302251, 37.83333333333333, 0" fill="#ddd" fill-opacity="0.05466666666666667" stroke="#000" stroke-opacity="0.02" transform="translate(151.33333333333331, 327.64627776511253) rotate(180, 37.83333333333333, 32.764627776511254)" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="203" height="203"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><g fill="#ddd" style="opacity:0.14133333333333334;" transform="translate(-33.948,-33.948) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.14133333333333334;" transform="translate(169.73999999999998,-33.948) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.14133333333333334;" transform="translate(-33.948,169.74) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.14133333333333334;" transform="translate(169.73999999999998,169.74) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.08933333333333333;" transform="translate(0.0,-16.974) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.08933333333333333;" transform="translate(0.0,186.714) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.13266666666666665;" transform="translate(33.948,-33.948) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.13266666666666665;" transform="translate(33.948,169.74) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.15;" transform="translate(67.89599999999999,-16.974) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.15;" transform="translate(67.89599999999999,186.714) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.098;" transform="translate(101.844,-33.948) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.098;" transform="translate(101.844,169.74) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.07200000000000001;" transform="translate(135.792,-16.974) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.07200000000000001;" transform="translate(135.792,186.714) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.07200000000000001;" transform="translate(-33.948,0.0) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.07200000000000001;" transform="translate(169.73999999999998,0.0) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.08066666666666666;" transform="translate(0.0,16.973999999999997) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.07200000000000001;" transform="translate(33.948,0.0) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.08066666666666666;" transform="translate(67.89599999999999,16.973999999999997) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.15;" transform="translate(101.844,0.0) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.11533333333333334;" transform="translate(135.792,16.973999999999997) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.13266666666666665;" transform="translate(-33.948,33.94799999999999) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.13266666666666665;" transform="translate(169.73999999999998,33.94799999999999) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.046;" transform="translate(0.0,50.922) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.10666666666666667;" transform="translate(33.948,33.94799999999999) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.046;" transform="translate(67.89599999999999,50.922) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.08933333333333333;" transform="translate(101.844,33.94799999999999) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.046;" transform="translate(135.792,50.922) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.12400000000000001;" transform="translate(-33.948,67.89599999999999) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.12400000000000001;" transform="translate(169.73999999999998,67.89599999999999) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.06333333333333334;" transform="translate(0.0,84.86999999999998) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.046;" transform="translate(33.948,67.89599999999999) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.03733333333333333;" transform="translate(67.89599999999999,84.86999999999998) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.028666666666666667;" transform="translate(101.844,67.89599999999999) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.07200000000000001;" transform="translate(135.792,84.86999999999998) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.08066666666666666;" transform="translate(-33.948,101.844) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.08066666666666666;" transform="translate(169.73999999999998,101.844) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.098;" transform="translate(0.0,118.81799999999998) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.098;" transform="translate(33.948,101.844) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.11533333333333334;" transform="translate(67.89599999999999,118.81799999999998) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.14133333333333334;" transform="translate(101.844,101.844) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.11533333333333334;" transform="translate(135.792,118.81799999999998) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.05466666666666667;" transform="translate(-33.948,135.79200000000003) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.05466666666666667;" transform="translate(169.73999999999998,135.79200000000003) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.05466666666666667;" transform="translate(-33.948,-67.89599999999996) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.11533333333333334;" transform="translate(0.0,152.76600000000002) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.11533333333333334;" transform="translate(0.0,-50.92199999999997) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.05466666666666667;" transform="translate(33.948,135.79200000000003) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.05466666666666667;" transform="translate(33.948,-67.89599999999996) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.06333333333333334;" transform="translate(67.89599999999999,152.76600000000002) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#222" style="opacity:0.06333333333333334;" transform="translate(67.89599999999999,-50.92199999999997) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.07200000000000001;" transform="translate(101.844,135.79200000000003) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.07200000000000001;" transform="translate(101.844,-67.89599999999996) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.05466666666666667;" transform="translate(135.792,152.76600000000002) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g><g fill="#ddd" style="opacity:0.05466666666666667;" transform="translate(135.792,-50.92199999999997) rotate(45, 33.948, 33.948)" ><rect x="24.0" y="0" width="24.0" height="72.0" /><rect x="0" y="24.0" width="72.0" height="24.0" /></g></svg>