geo_pattern 1.3.2 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (132) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +58 -0
  3. data/.simplecov +25 -0
  4. data/.travis.yml +12 -0
  5. data/Gemfile +3 -1
  6. data/README.md +125 -23
  7. data/Rakefile +72 -9
  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 +8 -2
  27. data/lib/geo_pattern.rb +42 -20
  28. data/lib/geo_pattern/background.rb +25 -0
  29. data/lib/geo_pattern/background_generators/solid_generator.rb +52 -0
  30. data/lib/geo_pattern/color.rb +25 -0
  31. data/lib/geo_pattern/color_generators/base_color_generator.rb +55 -0
  32. data/lib/geo_pattern/color_generators/simple_generator.rb +27 -0
  33. data/lib/geo_pattern/color_preset.rb +26 -0
  34. data/lib/geo_pattern/errors.rb +7 -0
  35. data/lib/geo_pattern/geo_pattern_task.rb +59 -0
  36. data/lib/geo_pattern/helpers.rb +47 -0
  37. data/lib/geo_pattern/pattern.rb +84 -0
  38. data/lib/geo_pattern/pattern_generator.rb +33 -82
  39. data/lib/geo_pattern/pattern_helpers.rb +31 -2
  40. data/lib/geo_pattern/pattern_preset.rb +23 -0
  41. data/lib/geo_pattern/pattern_sieve.rb +36 -0
  42. data/lib/geo_pattern/pattern_store.rb +63 -0
  43. data/lib/geo_pattern/pattern_validator.rb +27 -0
  44. data/lib/geo_pattern/rake_task.rb +109 -0
  45. data/lib/geo_pattern/roles/comparable_metadata.rb +35 -0
  46. data/lib/geo_pattern/roles/named_generator.rb +13 -0
  47. data/lib/geo_pattern/seed.rb +21 -0
  48. data/lib/geo_pattern/structure.rb +25 -0
  49. data/lib/geo_pattern/structure_generators/base_generator.rb +85 -0
  50. data/lib/geo_pattern/structure_generators/chevrons_generator.rb +55 -0
  51. data/lib/geo_pattern/structure_generators/concentric_circles_generator.rb +56 -0
  52. data/lib/geo_pattern/structure_generators/diamonds_generator.rb +66 -0
  53. data/lib/geo_pattern/structure_generators/hexagons_generator.rb +67 -0
  54. data/lib/geo_pattern/structure_generators/mosaic_squares_generator.rb +85 -0
  55. data/lib/geo_pattern/structure_generators/nested_squares_generator.rb +60 -0
  56. data/lib/geo_pattern/structure_generators/octagons_generator.rb +44 -0
  57. data/lib/geo_pattern/structure_generators/overlapping_circles_generator.rb +55 -0
  58. data/lib/geo_pattern/structure_generators/overlapping_rings_generator.rb +55 -0
  59. data/lib/geo_pattern/structure_generators/plaid_generator.rb +55 -0
  60. data/lib/geo_pattern/structure_generators/plus_signs_generator.rb +62 -0
  61. data/lib/geo_pattern/structure_generators/sine_waves_generator.rb +43 -0
  62. data/lib/geo_pattern/structure_generators/squares_generator.rb +36 -0
  63. data/lib/geo_pattern/structure_generators/tessellation_generator.rb +103 -0
  64. data/lib/geo_pattern/structure_generators/triangles_generator.rb +61 -0
  65. data/lib/geo_pattern/structure_generators/xes_generator.rb +67 -0
  66. data/lib/geo_pattern/svg_image.rb +101 -0
  67. data/lib/geo_pattern/version.rb +1 -1
  68. data/script/bootstrap +30 -0
  69. data/script/console +8 -0
  70. data/script/test +21 -0
  71. data/spec/background_generators/solid_generator_spec.rb +50 -0
  72. data/spec/background_spec.rb +25 -0
  73. data/spec/color_generators/base_color_generator_spec.rb +31 -0
  74. data/spec/color_generators/simple_generator_spec.rb +12 -0
  75. data/spec/color_preset_spec.rb +53 -0
  76. data/spec/color_spec.rb +15 -0
  77. data/spec/geo_pattern_spec.rb +95 -24
  78. data/spec/helpers_spec.rb +65 -0
  79. data/spec/pattern_preset_spec.rb +41 -0
  80. data/spec/pattern_sieve_spec.rb +66 -0
  81. data/spec/pattern_spec.rb +72 -0
  82. data/spec/pattern_store_spec.rb +47 -0
  83. data/spec/pattern_validator_spec.rb +28 -0
  84. data/spec/seed_spec.rb +14 -0
  85. data/spec/spec_helper.rb +1 -6
  86. data/spec/structure_generators/chevrons_generator_spec.rb +5 -0
  87. data/spec/structure_generators/concentric_circles_generator_spec.rb +5 -0
  88. data/spec/structure_generators/diamonds_generator_spec.rb +5 -0
  89. data/spec/structure_generators/hexagons_generator_spec.rb +5 -0
  90. data/spec/structure_generators/mosaic_squares_generator_spec.rb +5 -0
  91. data/spec/structure_generators/nested_squares_generator_spec.rb +5 -0
  92. data/spec/structure_generators/octagons_generator_spec.rb +5 -0
  93. data/spec/structure_generators/overlapping_circles_generator_spec.rb +5 -0
  94. data/spec/structure_generators/overlapping_rings_generator_spec.rb +5 -0
  95. data/spec/structure_generators/plaid_generator_spec.rb +5 -0
  96. data/spec/structure_generators/plus_signs_generator_spec.rb +5 -0
  97. data/spec/structure_generators/sine_waves_generator_spec.rb +5 -0
  98. data/spec/structure_generators/squares_generator_spec.rb +5 -0
  99. data/spec/structure_generators/tessellation_generator_spec.rb +5 -0
  100. data/spec/structure_generators/triangles_generator_spec.rb +5 -0
  101. data/spec/structure_generators/xes_generator_spec.rb +5 -0
  102. data/spec/structure_spec.rb +38 -0
  103. data/spec/support/helpers/fixtures.rb +12 -0
  104. data/spec/support/kernel.rb +40 -0
  105. data/spec/support/matchers/image.rb +17 -0
  106. data/spec/support/matchers/name.rb +15 -0
  107. data/spec/support/rspec.rb +1 -1
  108. data/spec/support/shared_examples/generator.rb +46 -0
  109. data/spec/support/shared_examples/pattern.rb +31 -0
  110. data/spec/support/shared_examples/pattern_name.rb +7 -0
  111. data/spec/support/shared_examples/structure.rb +48 -0
  112. data/spec/svg_spec.rb +3 -3
  113. metadata +141 -25
  114. data/lib/geo_pattern/pattern/base_pattern.rb +0 -47
  115. data/lib/geo_pattern/pattern/chevron_pattern.rb +0 -45
  116. data/lib/geo_pattern/pattern/concentric_circles_pattern.rb +0 -47
  117. data/lib/geo_pattern/pattern/diamond_pattern.rb +0 -56
  118. data/lib/geo_pattern/pattern/hexagon_pattern.rb +0 -57
  119. data/lib/geo_pattern/pattern/mosaic_squares_pattern.rb +0 -76
  120. data/lib/geo_pattern/pattern/nested_squares_pattern.rb +0 -51
  121. data/lib/geo_pattern/pattern/octagon_pattern.rb +0 -35
  122. data/lib/geo_pattern/pattern/overlapping_circles_pattern.rb +0 -46
  123. data/lib/geo_pattern/pattern/overlapping_rings_pattern.rb +0 -46
  124. data/lib/geo_pattern/pattern/plaid_pattern.rb +0 -49
  125. data/lib/geo_pattern/pattern/plus_sign_pattern.rb +0 -53
  126. data/lib/geo_pattern/pattern/sine_wave_pattern.rb +0 -36
  127. data/lib/geo_pattern/pattern/square_pattern.rb +0 -27
  128. data/lib/geo_pattern/pattern/tessellation_pattern.rb +0 -93
  129. data/lib/geo_pattern/pattern/triangle_pattern.rb +0 -51
  130. data/lib/geo_pattern/pattern/xes_pattern.rb +0 -58
  131. data/lib/geo_pattern/svg.rb +0 -77
  132. data/spec/support/helpers.rb +0 -34
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="459" height="303"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.14133333333333334" stroke-width="1" transform="translate(0.0,-38.33333333333333)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.14133333333333334" stroke-width="1" transform="translate(0.0,265.26666666666665)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.08933333333333333" stroke-width="1" transform="translate(76.66666666666666,-38.33333333333333)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.08933333333333333" stroke-width="1" transform="translate(76.66666666666666,265.26666666666665)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.13266666666666665" stroke-width="1" transform="translate(153.33333333333331,-38.33333333333333)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.13266666666666665" stroke-width="1" transform="translate(153.33333333333331,265.26666666666665)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.15" stroke-width="1" transform="translate(229.99999999999997,-38.33333333333333)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.15" stroke-width="1" transform="translate(229.99999999999997,265.26666666666665)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.098" stroke-width="1" transform="translate(306.66666666666663,-38.33333333333333)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.098" stroke-width="1" transform="translate(306.66666666666663,265.26666666666665)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.07200000000000001" stroke-width="1" transform="translate(383.33333333333326,-38.33333333333333)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.07200000000000001" stroke-width="1" transform="translate(383.33333333333326,265.26666666666665)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.07200000000000001" stroke-width="1" transform="translate(0.0,12.266666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.08066666666666666" stroke-width="1" transform="translate(76.66666666666666,12.266666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.07200000000000001" stroke-width="1" transform="translate(153.33333333333331,12.266666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.08066666666666666" stroke-width="1" transform="translate(229.99999999999997,12.266666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.15" stroke-width="1" transform="translate(306.66666666666663,12.266666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.11533333333333334" stroke-width="1" transform="translate(383.33333333333326,12.266666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.13266666666666665" stroke-width="1" transform="translate(0.0,62.86666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.046" stroke-width="1" transform="translate(76.66666666666666,62.86666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.10666666666666667" stroke-width="1" transform="translate(153.33333333333331,62.86666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.046" stroke-width="1" transform="translate(229.99999999999997,62.86666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.08933333333333333" stroke-width="1" transform="translate(306.66666666666663,62.86666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.046" stroke-width="1" transform="translate(383.33333333333326,62.86666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.12400000000000001" stroke-width="1" transform="translate(0.0,113.46666666666665)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.06333333333333334" stroke-width="1" transform="translate(76.66666666666666,113.46666666666665)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.046" stroke-width="1" transform="translate(153.33333333333331,113.46666666666665)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.03733333333333333" stroke-width="1" transform="translate(229.99999999999997,113.46666666666665)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.028666666666666667" stroke-width="1" transform="translate(306.66666666666663,113.46666666666665)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.07200000000000001" stroke-width="1" transform="translate(383.33333333333326,113.46666666666665)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.08066666666666666" stroke-width="1" transform="translate(0.0,164.06666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.098" stroke-width="1" transform="translate(76.66666666666666,164.06666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.098" stroke-width="1" transform="translate(153.33333333333331,164.06666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.11533333333333334" stroke-width="1" transform="translate(229.99999999999997,164.06666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.14133333333333334" stroke-width="1" transform="translate(306.66666666666663,164.06666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.11533333333333334" stroke-width="1" transform="translate(383.33333333333326,164.06666666666666)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.05466666666666667" stroke-width="1" transform="translate(0.0,214.66666666666663)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.11533333333333334" stroke-width="1" transform="translate(76.66666666666666,214.66666666666663)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.05466666666666667" stroke-width="1" transform="translate(153.33333333333331,214.66666666666663)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#222" fill-opacity="0.06333333333333334" stroke-width="1" transform="translate(229.99999999999997,214.66666666666663)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.07200000000000001" stroke-width="1" transform="translate(306.66666666666663,214.66666666666663)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g><g stroke="#000" stroke-opacity="0.02" fill="#ddd" fill-opacity="0.05466666666666667" stroke-width="1" transform="translate(383.33333333333326,214.66666666666663)" ><polyline points="0,0,38.33333333333333,26.066666666666663,38.33333333333333,76.66666666666666,0,50.599999999999994,0,0" /><polyline points="38.33333333333333,26.066666666666663,76.66666666666666,0,76.66666666666666,50.599999999999994,38.33333333333333,76.66666666666666,38.33333333333333,26.066666666666663" /></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="408" height="408"><rect x="0" y="0" width="100%" height="100%" fill="rgb(63, 144, 77)" /><circle cx="34.0" cy="34.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:11.333333333333332px;" /><circle cx="34.0" cy="34.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.05466666666666667" /><circle cx="102.0" cy="34.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.08933333333333333;stroke-width:11.333333333333332px;" /><circle cx="102.0" cy="34.0" r="14.166666666666666" fill="#222" fill-opacity="0.08066666666666666" /><circle cx="170.0" cy="34.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.13266666666666665;stroke-width:11.333333333333332px;" /><circle cx="170.0" cy="34.0" r="14.166666666666666" fill="#222" fill-opacity="0.11533333333333334" /><circle cx="238.0" cy="34.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.15;stroke-width:11.333333333333332px;" /><circle cx="238.0" cy="34.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.12400000000000001" /><circle cx="306.0" cy="34.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.098;stroke-width:11.333333333333332px;" /><circle cx="306.0" cy="34.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.05466666666666667" /><circle cx="374.0" cy="34.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.333333333333332px;" /><circle cx="374.0" cy="34.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.07200000000000001" /><circle cx="34.0" cy="102.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.333333333333332px;" /><circle cx="34.0" cy="102.0" r="14.166666666666666" fill="#222" fill-opacity="0.06333333333333334" /><circle cx="102.0" cy="102.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:11.333333333333332px;" /><circle cx="102.0" cy="102.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.05466666666666667" /><circle cx="170.0" cy="102.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.333333333333332px;" /><circle cx="170.0" cy="102.0" r="14.166666666666666" fill="#222" fill-opacity="0.11533333333333334" /><circle cx="238.0" cy="102.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:11.333333333333332px;" /><circle cx="238.0" cy="102.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.05466666666666667" /><circle cx="306.0" cy="102.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.15;stroke-width:11.333333333333332px;" /><circle cx="306.0" cy="102.0" r="14.166666666666666" fill="#222" fill-opacity="0.11533333333333334" /><circle cx="374.0" cy="102.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:11.333333333333332px;" /><circle cx="374.0" cy="102.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.14133333333333334" /><circle cx="34.0" cy="170.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.13266666666666665;stroke-width:11.333333333333332px;" /><circle cx="34.0" cy="170.0" r="14.166666666666666" fill="#222" fill-opacity="0.11533333333333334" /><circle cx="102.0" cy="170.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.046;stroke-width:11.333333333333332px;" /><circle cx="102.0" cy="170.0" r="14.166666666666666" fill="#222" fill-opacity="0.098" /><circle cx="170.0" cy="170.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.10666666666666667;stroke-width:11.333333333333332px;" /><circle cx="170.0" cy="170.0" r="14.166666666666666" fill="#222" fill-opacity="0.098" /><circle cx="238.0" cy="170.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.046;stroke-width:11.333333333333332px;" /><circle cx="238.0" cy="170.0" r="14.166666666666666" fill="#222" fill-opacity="0.08066666666666666" /><circle cx="306.0" cy="170.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.08933333333333333;stroke-width:11.333333333333332px;" /><circle cx="306.0" cy="170.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.07200000000000001" /><circle cx="374.0" cy="170.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.046;stroke-width:11.333333333333332px;" /><circle cx="374.0" cy="170.0" r="14.166666666666666" fill="#222" fill-opacity="0.028666666666666667" /><circle cx="34.0" cy="238.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.12400000000000001;stroke-width:11.333333333333332px;" /><circle cx="34.0" cy="238.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.03733333333333333" /><circle cx="102.0" cy="238.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.06333333333333334;stroke-width:11.333333333333332px;" /><circle cx="102.0" cy="238.0" r="14.166666666666666" fill="#222" fill-opacity="0.046" /><circle cx="170.0" cy="238.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.046;stroke-width:11.333333333333332px;" /><circle cx="170.0" cy="238.0" r="14.166666666666666" fill="#222" fill-opacity="0.06333333333333334" /><circle cx="238.0" cy="238.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.03733333333333333;stroke-width:11.333333333333332px;" /><circle cx="238.0" cy="238.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.12400000000000001" /><circle cx="306.0" cy="238.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.028666666666666667;stroke-width:11.333333333333332px;" /><circle cx="306.0" cy="238.0" r="14.166666666666666" fill="#222" fill-opacity="0.046" /><circle cx="374.0" cy="238.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.333333333333332px;" /><circle cx="374.0" cy="238.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.08933333333333333" /><circle cx="34.0" cy="306.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.08066666666666666;stroke-width:11.333333333333332px;" /><circle cx="34.0" cy="306.0" r="14.166666666666666" fill="#222" fill-opacity="0.046" /><circle cx="102.0" cy="306.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.098;stroke-width:11.333333333333332px;" /><circle cx="102.0" cy="306.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.10666666666666667" /><circle cx="170.0" cy="306.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.098;stroke-width:11.333333333333332px;" /><circle cx="170.0" cy="306.0" r="14.166666666666666" fill="#222" fill-opacity="0.046" /><circle cx="238.0" cy="306.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:11.333333333333332px;" /><circle cx="238.0" cy="306.0" r="14.166666666666666" fill="#222" fill-opacity="0.13266666666666665" /><circle cx="306.0" cy="306.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.14133333333333334;stroke-width:11.333333333333332px;" /><circle cx="306.0" cy="306.0" r="14.166666666666666" fill="#222" fill-opacity="0.11533333333333334" /><circle cx="374.0" cy="306.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:11.333333333333332px;" /><circle cx="374.0" cy="306.0" r="14.166666666666666" fill="#222" fill-opacity="0.15" /><circle cx="34.0" cy="374.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:11.333333333333332px;" /><circle cx="34.0" cy="374.0" r="14.166666666666666" fill="#222" fill-opacity="0.08066666666666666" /><circle cx="102.0" cy="374.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.11533333333333334;stroke-width:11.333333333333332px;" /><circle cx="102.0" cy="374.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.07200000000000001" /><circle cx="170.0" cy="374.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:11.333333333333332px;" /><circle cx="170.0" cy="374.0" r="14.166666666666666" fill="#222" fill-opacity="0.08066666666666666" /><circle cx="238.0" cy="374.0" r="28.333333333333332" fill="none" stroke="#222" style="opacity:0.06333333333333334;stroke-width:11.333333333333332px;" /><circle cx="238.0" cy="374.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.07200000000000001" /><circle cx="306.0" cy="374.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.07200000000000001;stroke-width:11.333333333333332px;" /><circle cx="306.0" cy="374.0" r="14.166666666666666" fill="#ddd" fill-opacity="0.07200000000000001" /><circle cx="374.0" cy="374.0" r="28.333333333333332" fill="none" stroke="#ddd" style="opacity:0.05466666666666667;stroke-width:11.333333333333332px;" /><circle cx="374.0" cy="374.0" r="14.166666666666666" fill="#222" fill-opacity="0.098" /></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(63, 144, 77)" /><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(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>
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = GeoPattern::VERSION
9
9
  spec.authors = ['Jason Long']
10
10
  spec.email = ['jlong@github.com']
11
- spec.summary = %q{Generate SVG beautiful patterns}
12
- spec.description = %q{Generate SVG beautiful patterns}
11
+ spec.summary = 'Generate SVG beautiful patterns'
12
+ spec.description = 'Generate SVG beautiful patterns'
13
13
  spec.homepage = 'https://github.com/jasonlong/geo_pattern'
14
14
  spec.license = 'MIT'
15
15
 
@@ -18,6 +18,12 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ['lib']
20
20
 
21
+ spec.required_ruby_version = '~>2'
22
+
21
23
  spec.add_dependency 'color', '~> 1.5'
22
24
  spec.add_development_dependency 'bundler', '~> 1.5'
25
+
26
+ spec.post_install_message = <<-EOS
27
+ Class style pattern names are deprecated as of 1.3.1
28
+ EOS
23
29
  end
@@ -1,34 +1,56 @@
1
1
  require 'base64'
2
2
  require 'digest/sha1'
3
3
  require 'color'
4
+ require 'forwardable'
4
5
 
5
6
  require 'geo_pattern/version'
6
- require 'geo_pattern/svg'
7
+
8
+ require 'geo_pattern/roles/named_generator'
9
+ require 'geo_pattern/roles/comparable_metadata'
10
+
11
+ require 'geo_pattern/errors'
12
+ require 'geo_pattern/color'
13
+ require 'geo_pattern/svg_image'
7
14
  require 'geo_pattern/pattern_helpers'
8
15
  require 'geo_pattern/helpers'
16
+ require 'geo_pattern/pattern_store'
17
+ require 'geo_pattern/pattern_validator'
18
+ require 'geo_pattern/pattern_sieve'
19
+ require 'geo_pattern/pattern'
20
+ require 'geo_pattern/seed'
21
+ require 'geo_pattern/pattern_preset'
22
+ require 'geo_pattern/color_preset'
23
+
24
+ require 'geo_pattern/structure'
25
+ require 'geo_pattern/background'
26
+
27
+ require 'geo_pattern/color_generators/simple_generator'
28
+ require 'geo_pattern/color_generators/base_color_generator'
29
+
30
+ require 'geo_pattern/background_generators/solid_generator'
9
31
 
10
- require 'geo_pattern/pattern/base_pattern'
11
- require 'geo_pattern/pattern/chevron_pattern'
12
- require 'geo_pattern/pattern/concentric_circles_pattern'
13
- require 'geo_pattern/pattern/diamond_pattern'
14
- require 'geo_pattern/pattern/hexagon_pattern'
15
- require 'geo_pattern/pattern/mosaic_squares_pattern'
16
- require 'geo_pattern/pattern/nested_squares_pattern'
17
- require 'geo_pattern/pattern/octagon_pattern'
18
- require 'geo_pattern/pattern/overlapping_circles_pattern'
19
- require 'geo_pattern/pattern/overlapping_rings_pattern'
20
- require 'geo_pattern/pattern/plaid_pattern'
21
- require 'geo_pattern/pattern/plus_sign_pattern'
22
- require 'geo_pattern/pattern/sine_wave_pattern'
23
- require 'geo_pattern/pattern/square_pattern'
24
- require 'geo_pattern/pattern/tessellation_pattern'
25
- require 'geo_pattern/pattern/triangle_pattern'
26
- require 'geo_pattern/pattern/xes_pattern'
32
+ require 'geo_pattern/structure_generators/base_generator'
33
+ require 'geo_pattern/structure_generators/chevrons_generator'
34
+ require 'geo_pattern/structure_generators/concentric_circles_generator'
35
+ require 'geo_pattern/structure_generators/diamonds_generator'
36
+ require 'geo_pattern/structure_generators/hexagons_generator'
37
+ require 'geo_pattern/structure_generators/mosaic_squares_generator'
38
+ require 'geo_pattern/structure_generators/nested_squares_generator'
39
+ require 'geo_pattern/structure_generators/octagons_generator'
40
+ require 'geo_pattern/structure_generators/overlapping_circles_generator'
41
+ require 'geo_pattern/structure_generators/overlapping_rings_generator'
42
+ require 'geo_pattern/structure_generators/plaid_generator'
43
+ require 'geo_pattern/structure_generators/plus_signs_generator'
44
+ require 'geo_pattern/structure_generators/sine_waves_generator'
45
+ require 'geo_pattern/structure_generators/squares_generator'
46
+ require 'geo_pattern/structure_generators/tessellation_generator'
47
+ require 'geo_pattern/structure_generators/triangles_generator'
48
+ require 'geo_pattern/structure_generators/xes_generator'
27
49
 
28
50
  require 'geo_pattern/pattern_generator'
29
51
 
30
52
  module GeoPattern
31
- def self.generate(string=Time.now, opts={})
32
- GeoPattern::PatternGenerator.new(string.to_s, opts)
53
+ def self.generate(string = Time.now, opts = {})
54
+ GeoPattern::PatternGenerator.new(string.to_s, opts).generate
33
55
  end
34
56
  end
@@ -0,0 +1,25 @@
1
+ module GeoPattern
2
+ class Background
3
+ include Roles::ComparableMetadata
4
+
5
+ extend Forwardable
6
+
7
+ attr_reader :image, :preset, :color, :generator
8
+
9
+ def_delegators :@preset, :base_color
10
+
11
+ def initialize(options)
12
+ @image = options[:image]
13
+ @preset = options[:preset]
14
+ @color = options[:color]
15
+ @generator = options[:generator]
16
+
17
+ fail ArgumentError, 'Argument color is missing' if @color.nil?
18
+ fail ArgumentError, 'Argument image is missing' if @image.nil?
19
+ fail ArgumentError, 'Argument preset is missing' if @preset.nil?
20
+ fail ArgumentError, 'Argument generator is missing' if @generator.nil?
21
+ end
22
+
23
+ def_comparators :base_color, :color
24
+ end
25
+ end
@@ -0,0 +1,52 @@
1
+ module GeoPattern
2
+ # Generating backgrounds
3
+ module BackgroundGenerators
4
+ # Generating a solid background
5
+ class SolidGenerator
6
+ include Roles::NamedGenerator
7
+
8
+ private
9
+
10
+ attr_reader :color, :seed, :preset
11
+
12
+ public
13
+
14
+ # New generator
15
+ #
16
+ # @param [Seed] seed
17
+ # The seed used during generation the background
18
+ #
19
+ # @param [ColorPreset] preset
20
+ # A preset of values which are used during generating the background
21
+ def initialize(seed, preset)
22
+ @color = color_for(seed, preset)
23
+ @preset = preset
24
+ end
25
+
26
+ # Generate the background for pattern
27
+ #
28
+ # @param [#background=] pattern
29
+ # The pattern for which the background should be generated
30
+ def generate(pattern)
31
+ pattern.background = Background.new(image: generate_background, preset: preset, color: color, generator: self.class)
32
+
33
+ self
34
+ end
35
+
36
+ private
37
+
38
+ def generate_background
39
+ svg = SvgImage.new
40
+ svg.rect(0, 0, '100%', '100%', 'fill' => color.to_svg)
41
+
42
+ svg
43
+ end
44
+
45
+ def color_for(seed, preset)
46
+ return ColorGenerators::BaseColorGenerator.new(preset.base_color, seed).generate if preset.mode? :base_color
47
+
48
+ ColorGenerators::SimpleGenerator.new(preset.color).generate
49
+ end
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,25 @@
1
+ module GeoPattern
2
+ class Color
3
+ private
4
+
5
+ attr_accessor :color
6
+
7
+ public
8
+
9
+ def initialize(html_color)
10
+ @color = ::Color::RGB.from_html html_color
11
+ end
12
+
13
+ def to_svg
14
+ r = (color.r * 255).round
15
+ g = (color.g * 255).round
16
+ b = (color.b * 255).round
17
+
18
+ format('rgb(%d, %d, %d)', r, g, b)
19
+ end
20
+
21
+ def to_html
22
+ color.html
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,55 @@
1
+ module GeoPattern
2
+ # Color generators
3
+ module ColorGenerators
4
+ # Generate color based on Base Color and seed
5
+ class BaseColorGenerator
6
+ private
7
+
8
+ attr_reader :creator, :seed, :color
9
+
10
+ public
11
+
12
+ # New
13
+ #
14
+ # @param [String] color
15
+ # HTML color string, #0a0a0a
16
+ def initialize(color, seed, creator = Color)
17
+ @color = color
18
+ @seed = seed
19
+ @creator = creator
20
+ end
21
+
22
+ # Generator color
23
+ def generate
24
+ creator.new(transform(color, seed))
25
+ end
26
+
27
+ private
28
+
29
+ def transform(color, seed)
30
+ hue_offset = map(seed.to_i(14, 3), 0, 4095, 0, 359)
31
+ sat_offset = seed.to_i(17, 1)
32
+ new_color = ::Color::RGB.from_html(color).to_hsl
33
+ new_color.hue = new_color.hue - hue_offset
34
+
35
+ if (sat_offset % 2 == 0)
36
+ new_color.saturation = new_color.saturation + sat_offset
37
+ else
38
+ new_color.saturation = new_color.saturation - sat_offset
39
+ end
40
+
41
+ new_color.html
42
+ end
43
+
44
+ # Ruby implementation of Processing's map function
45
+ # http://processing.org/reference/map_.html
46
+ def map(value, v_min, v_max, d_min, d_max) # v for value, d for desired
47
+ v_value = value.to_f # so it returns float
48
+
49
+ v_range = v_max - v_min
50
+ d_range = d_max - d_min
51
+ (v_value - v_min) * d_range / v_range + d_min
52
+ end
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,27 @@
1
+ module GeoPattern
2
+ # Color generators
3
+ module ColorGenerators
4
+ # Simple one
5
+ class SimpleGenerator
6
+ private
7
+
8
+ attr_reader :color, :creator
9
+
10
+ public
11
+
12
+ # New
13
+ #
14
+ # @param [String] color
15
+ # HTML color string, #0a0a0a
16
+ def initialize(color, creator = Color)
17
+ @color = color
18
+ @creator = creator
19
+ end
20
+
21
+ # Generator color
22
+ def generate
23
+ creator.new(color)
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,26 @@
1
+ module GeoPattern
2
+ class ColorPreset
3
+ attr_accessor :color, :base_color, :mode
4
+
5
+ def initialize(color: nil, base_color: nil)
6
+ @color = color
7
+ @base_color = base_color
8
+ end
9
+
10
+ # Return mode
11
+ #
12
+ # @return [Symbol]
13
+ # The color mode
14
+ def mode
15
+ if color.nil? || color.empty?
16
+ :base_color
17
+ else
18
+ :color
19
+ end
20
+ end
21
+
22
+ def mode?(m)
23
+ mode == m
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,7 @@
1
+ module GeoPattern
2
+ # user errors
3
+ class UserError < StandardError; end
4
+
5
+ # raised if an invalid pattern is requested
6
+ class InvalidPatternError < UserError; end
7
+ end
@@ -0,0 +1,59 @@
1
+ require 'geo_pattern'
2
+ require 'geo_pattern/rake_task'
3
+
4
+ module GeoPattern
5
+ # GeoPatternTask
6
+ #
7
+ # @see Rakefile
8
+ class GeoPatternTask < RakeTask
9
+ # @!attribute [r] data
10
+ # The data which should be used to generate patterns
11
+ attr_reader :data
12
+
13
+ # @!attribute [r] allowed_patterns
14
+ # The the patterns which are allowed to be used
15
+ attr_reader :allowed_patterns
16
+
17
+ # Create a new geo pattern task
18
+ #
19
+ # @param [Hash] data
20
+ # The data which should be used to generate patterns
21
+ #
22
+ # @param [Array] allowed_patterns
23
+ # The allowed_patterns
24
+ #
25
+ # @see RakeTask
26
+ # For other arguments accepted
27
+ def initialize(opts = {})
28
+ super
29
+
30
+ fail ArgumentError, :data if @options[:data].nil?
31
+
32
+ @data = @options[:data]
33
+ @allowed_patterns = @options[:allowed_patterns]
34
+ end
35
+
36
+ # @private
37
+ def run_task(_verbose)
38
+ data.each do |path, string|
39
+ opts = {}
40
+ path = File.expand_path(path)
41
+
42
+ if string.is_a?(Hash)
43
+ input = string[:input]
44
+ opts[:patterns] = string[:patterns] if string.key? :patterns
45
+ opts[:color] = string[:color] if string.key? :color
46
+ opts[:base_color] = string[:base_color] if string.key? :base_color
47
+ else
48
+ fail 'Invalid data structure for Rake Task'
49
+ end
50
+
51
+ pattern = GeoPattern.generate(input, opts)
52
+
53
+ logger.info "Creating pattern at \"#{path}\"."
54
+ FileUtils.mkdir_p File.dirname(path)
55
+ File.write(path, pattern.to_svg)
56
+ end
57
+ end
58
+ end
59
+ end
@@ -3,5 +3,52 @@ module GeoPattern
3
3
  def require_files_matching_pattern(pattern)
4
4
  Dir.glob(pattern).each { |f| require_relative f }
5
5
  end
6
+
7
+ # Makes an underscored, lowercase form from the expression in the string.
8
+ #
9
+ # @see ActiveSupport
10
+ # It's MIT-Licensed
11
+ #
12
+ def underscore(camel_cased_word)
13
+ return camel_cased_word unless camel_cased_word =~ /[A-Z-]/
14
+
15
+ word = camel_cased_word.to_s
16
+
17
+ word.gsub!(/([A-Z\d]+)([A-Z][a-z])/, '\1_\2')
18
+ word.gsub!(/([a-z\d])([A-Z])/, '\1_\2')
19
+
20
+ word.downcase!
21
+
22
+ word
23
+ end
24
+
25
+ # Removes the module part from the expression in the string.
26
+ #
27
+ # @see ActiveSupport
28
+ # It's MIT-Licensed
29
+ #
30
+ # @exmple Use demodulize
31
+ #
32
+ # 'ActiveRecord::CoreExtensions::String::Inflections'.demodulize # => "Inflections"
33
+ # 'Inflections'.demodulize # => "Inflections"
34
+ # '::Inflections'.demodulize # => "Inflections"
35
+ # ''.demodulize # => ""
36
+ #
37
+ # See also +deconstantize+.
38
+ def demodulize(path)
39
+ path = path.to_s
40
+
41
+ if i = path.rindex('::')
42
+ path[(i + 2)..-1]
43
+ else
44
+ path
45
+ end
46
+ end
47
+
48
+ def build_arguments(*methods)
49
+ methods.flatten.map { |m| [m, "#{m}?"] }.flatten
50
+ end
51
+
52
+ module_function :underscore, :demodulize, :build_arguments, :require_files_matching_pattern
6
53
  end
7
54
  end