chart-svg 0.2.0 → 0.2.1
raw patch · 44 files changed
+2567/−3197 lines, 44 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Chart: [$sel:translate:TextStyle] :: TextStyle -> Maybe (Point Double)
- Chart.Examples: arrowgExample :: Point Int -> Rect Double -> (Point Double -> Point Double) -> ChartSvg
- Chart.Examples: boundTextBugExample :: ChartSvg
- Chart.Examples: problematic1 :: ChartAspect -> ArcPosition Double -> ChartSvg
- Chart.Examples: problematic2 :: ArcPosition Double -> ArcCentroid Double -> ChartSvg
- Chart.Examples: surfacegExample :: Text -> Point Int -> Point Int -> Rect Double -> (Point Double -> (Double, Point Double)) -> ChartSvg
- Chart.Reanimate: chartSvgTree :: ChartSvg -> Tree
- Chart.Reanimate: chartSvgTreeDef :: ChartSvg -> Tree
- Chart.Reanimate: chartSvgTrees :: ChartSvg -> ([Tree], Rect Double, Point Double)
- Chart.Reanimate: chartSvgTreesDef :: ChartSvg -> [Tree]
- Chart.Reanimate: writeChartSvgTree :: FilePath -> ChartSvg -> IO ()
- Chart.Render: ChartExtra :: Chart a -> Maybe Text -> [Attribute] -> Html () -> ChartExtra a
- Chart.Render: [chartActual] :: ChartExtra a -> Chart a
- Chart.Render: [chartAttributes] :: ChartExtra a -> [Attribute]
- Chart.Render: [chartContent] :: ChartExtra a -> Html ()
- Chart.Render: [chartLink] :: ChartExtra a -> Maybe Text
- Chart.Render: data ChartExtra a
- Chart.Render: instance GHC.Base.Monoid Chart.Render.ChartSvgExtra
- Chart.Render: instance GHC.Base.Semigroup Chart.Render.ChartSvgExtra
- Chart.Render: instance GHC.Generics.Generic (Chart.Render.ChartExtra a)
- Chart.Render: instance GHC.Generics.Generic Chart.Render.ChartSvgExtra
- Chart.Render: instance GHC.Show.Show a => GHC.Show.Show (Chart.Render.ChartExtra a)
- Chart.Render: renderChartExtrasWith :: SvgOptions -> [ChartExtra Double] -> Text
- Chart.Render: toChartExtra :: Chart a -> ChartExtra a
- Chart.Types: [$sel:translate:TextStyle] :: TextStyle -> Maybe (Point Double)
- Data.Colour: colorText :: Colour
- Data.Colour: fromRGB :: Color RGB Double -> Double -> Colour
- Data.Colour: grayscale :: Double -> Color RGB Double
- Data.Colour: palette :: [Color RGB Double]
+ Chart: [$sel:background:SvgOptions] :: SvgOptions -> Maybe Colour
+ Chart: colourAnn :: Colour -> Annotation -> Annotation
+ Chart: colourHudOptions :: Colour -> HudOptions -> HudOptions
+ Chart: scaleOpacAnn :: Double -> Annotation -> Annotation
+ Chart: scaleOpacHudOptions :: HudOptions -> Double -> HudOptions
+ Chart.Examples: arrowExample :: ChartSvg
+ Chart.Examples: textLocalExample :: ChartSvg
+ Chart.Reanimate: ReanimateConfig :: Double -> Maybe Text -> Maybe [Text] -> Maybe FontStyle -> Alignment -> ReanimateConfig
+ Chart.Reanimate: [background] :: ReanimateConfig -> Maybe Text
+ Chart.Reanimate: [duration] :: ReanimateConfig -> Double
+ Chart.Reanimate: [globalAlignment] :: ReanimateConfig -> Alignment
+ Chart.Reanimate: [globalFontFamily] :: ReanimateConfig -> Maybe [Text]
+ Chart.Reanimate: [globalFontStyle] :: ReanimateConfig -> Maybe FontStyle
+ Chart.Reanimate: animChartSvg :: ReanimateConfig -> (Double -> ChartSvg) -> Animation
+ Chart.Reanimate: chartReanimate :: ChartSvg -> ChartReanimate
+ Chart.Reanimate: daText :: () => TextStyle -> DrawAttributes
+ Chart.Reanimate: data ReanimateConfig
+ Chart.Reanimate: defaultReanimateConfig :: ReanimateConfig
+ Chart.Reanimate: fromFile :: FilePath -> IO Tree
+ Chart.Reanimate: groupTreeA :: ReanimateConfig -> (Double -> ChartSvg) -> Double -> Tree
+ Chart.Reanimate: instance GHC.Classes.Eq Chart.Reanimate.ChartReanimate
+ Chart.Reanimate: instance GHC.Classes.Eq Chart.Reanimate.ReanimateConfig
+ Chart.Reanimate: instance GHC.Generics.Generic Chart.Reanimate.ChartReanimate
+ Chart.Reanimate: instance GHC.Generics.Generic Chart.Reanimate.ReanimateConfig
+ Chart.Reanimate: instance GHC.Show.Show Chart.Reanimate.ChartReanimate
+ Chart.Reanimate: instance GHC.Show.Show Chart.Reanimate.ReanimateConfig
+ Chart.Reanimate: reanimChartSvg :: ReanimateConfig -> (Double -> ChartSvg) -> IO ()
+ Chart.Reanimate: scaleDA :: HasDrawAttributes s => Point Double -> s -> s
+ Chart.Reanimate: translateDA :: HasDrawAttributes s => Point Double -> s -> s
+ Chart.Render: renderToCRS :: SvgOptions -> [Chart Double] -> ([Chart Double], Rect Double, Point Double)
+ Chart.Render: renderToCharts :: ChartSvg -> [Chart Double]
+ Chart.Render: svgShape :: GlyphShape -> Double -> Point Double -> Html ()
+ Chart.Types: [$sel:background:SvgOptions] :: SvgOptions -> Maybe Colour
+ Chart.Types: colourAnn :: Colour -> Annotation -> Annotation
+ Chart.Types: colourHudOptions :: Colour -> HudOptions -> HudOptions
+ Chart.Types: frameAllCharts :: [Chart Double] -> [Chart Double]
+ Chart.Types: legendChart :: [(Annotation, Text)] -> LegendOptions -> [Chart Double]
+ Chart.Types: legendEntry :: LegendOptions -> Annotation -> Text -> (Chart Double, Chart Double)
+ Chart.Types: scaleOpacAnn :: Double -> Annotation -> Annotation
+ Chart.Types: scaleOpacHudOptions :: HudOptions -> Double -> HudOptions
+ Data.Colour: dark :: Colour
+ Data.Colour: grey :: Colour
+ Data.Colour: light :: Colour
- Chart: SvgOptions :: Double -> Maybe Double -> Maybe Double -> Maybe RectStyle -> CssOptions -> ChartAspect -> SvgOptions
+ Chart: SvgOptions :: Double -> Maybe Double -> Maybe Double -> Maybe RectStyle -> CssOptions -> ChartAspect -> Maybe Colour -> SvgOptions
- Chart: TextStyle :: Double -> Colour -> Anchor -> Double -> Double -> Double -> Maybe Double -> Maybe (Point Double) -> TextStyle
+ Chart: TextStyle :: Double -> Colour -> Anchor -> Double -> Double -> Double -> Maybe Double -> TextStyle
- Chart.Examples: arcExample :: ArcPosition Double -> ChartSvg
+ Chart.Examples: arcExample :: ChartSvg
- Chart.Examples: cubicExample :: CubicPosition Double -> ChartSvg
+ Chart.Examples: cubicExample :: ChartSvg
- Chart.Examples: ellipseExample :: ArcPosition Double -> ChartSvg
+ Chart.Examples: ellipseExample :: ChartSvg
- Chart.Examples: quadExample :: QuadPosition Double -> ChartSvg
+ Chart.Examples: quadExample :: ChartSvg
- Chart.Examples: surfaceExample :: Text -> Point Int -> Rect Double -> (Point Double -> Double) -> ChartSvg
+ Chart.Examples: surfaceExample :: ChartSvg
- Chart.Types: SvgOptions :: Double -> Maybe Double -> Maybe Double -> Maybe RectStyle -> CssOptions -> ChartAspect -> SvgOptions
+ Chart.Types: SvgOptions :: Double -> Maybe Double -> Maybe Double -> Maybe RectStyle -> CssOptions -> ChartAspect -> Maybe Colour -> SvgOptions
- Chart.Types: TextStyle :: Double -> Colour -> Anchor -> Double -> Double -> Double -> Maybe Double -> Maybe (Point Double) -> TextStyle
+ Chart.Types: TextStyle :: Double -> Colour -> Anchor -> Double -> Double -> Double -> Maybe Double -> TextStyle
Files
- app/reanimate-example.hs +45/−26
- chart-svg.cabal +3/−2
- other/arc.svg +145/−147
- other/arcflags.svg +1201/−1241
- other/arrow.svg +23/−0
- other/arrowg.svg +0/−23
- other/bar.svg +29/−29
- other/boundTextBug.svg +0/−1
- other/compound.svg +5/−5
- other/cubic.svg +101/−145
- other/ellipse.svg +173/−173
- other/glines.svg +4/−4
- other/glyphs.svg +3/−3
- other/hudoptions.svg +45/−45
- other/label.svg +1/−1
- other/legend.svg +46/−46
- other/lglyph.svg +1/−1
- other/line.svg +44/−44
- other/lines.svg +0/−5
- other/lineshud.svg +0/−43
- other/path.svg +35/−35
- other/problematic1.svg +0/−55
- other/problematic2.svg +0/−339
- other/quad.svg +145/−145
- other/rect.svg +23/−23
- other/surface.svg +4/−4
- other/surfaceg.svg too large to diff
- other/svgoptions.svg +3/−3
- other/text.svg +1/−1
- other/textlocal.svg +1/−0
- other/unit.svg +1/−1
- other/venn.svg +29/−29
- other/wave.svg +1/−1
- src/Chart.hs +9/−9
- src/Chart/Bar.hs +1/−1
- src/Chart/Examples.hs +110/−263
- src/Chart/Reanimate.hs +129/−128
- src/Chart/Render.hs +29/−78
- src/Chart/Surface.hs +3/−7
- src/Chart/Types.hs +129/−57
- src/Chart/Various.hs +2/−2
- src/Data/Colour.hs +38/−28
- src/Data/FormatN.hs +2/−2
- src/Data/Path.hs +3/−2
app/reanimate-example.hs view
@@ -10,48 +10,67 @@ and wait for the browser to open ... -}- {-# LANGUAGE OverloadedLabels #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE NegativeLiterals #-}+{-# LANGUAGE DeriveGeneric #-}+{-# LANGUAGE MonoLocalBinds #-} module Main where import Chart import Chart.Examples import Control.Lens hiding (transform)-import Graphics.SvgTree.Types hiding (Point, Text) import NumHask.Prelude hiding (fold)-import Reanimate hiding (scale)--- import qualified Reanimate as Re import Chart.Reanimate+import Reanimate as Re main :: IO () main =- reanimate .- addStatic (mkBackgroundPixel (toPixelRGBA8 $ Colour 0.9 0.9 0.9 1)) .- mkAnimation 5 $- (\x ->- chartSvgTree- (expScaleChartData x hudOptionsExample))---- (pan surf one (Rect 0.2 0.21 0.1 0.11))--surf :: Rect Double -> ChartSvg-surf r = surfacegExample "rosenbrock" (Point 100 100) (Point 20 20) r (bimap (-1.0 *) (-1.0 .*) . rosenbrock 1 10) & #hudOptions . #hudAxes %~ fmap (#axisTick . #tstyle .~ TickRound (FormatComma (Just 2)) 8 NoTickExtend)+ -- reanimChartSvg defaultReanimateConfig (sOpac lineExample)+ reanimate $+ foldl' seqA (pause 0) $ (applyE (overBeginning 1 fadeInE) . applyE (overEnding 1 fadeOutE)) . mapA pathify . (\cs -> animChartSvg defaultReanimateConfig (const cs)) . (#hudOptions %~ colourHudOptions light) <$> examples -pan :: (Rect Double -> ChartSvg) -> Rect Double -> Rect Double -> Double -> Tree-pan f start end x = chartSvgTree $ f (start + fmap (*x) (end - start))+examples :: [ChartSvg]+examples =+ [ unitExample,+ svgOptionsExample,+ hudOptionsExample,+ rectExample,+ textExample,+ glyphsExample,+ lineExample,+ barExample,+ waveExample,+ lglyphExample,+ glinesExample,+ compoundExample,+ textLocalExample,+ labelExample,+ legendExample,+ surfaceExample,+ arcExample,+ arcFlagsExample,+ ellipseExample,+ quadExample,+ cubicExample,+ pathExample,+ vennExample,+ arrowExample+ ] -expScaleChartData :: Double -> ChartSvg -> ChartSvg-expScaleChartData x cs =- cs &- #chartList %~ fmap (expScaleData (10 * (x - 0.5))) &- #hudOptions . #hudAxes %~- fmap (set (#axisTick . #tstyle)- (TickRound (FormatComma (Just 2)) 8 NoTickExtend))+sOpac :: ChartSvg -> Double -> ChartSvg+sOpac cs o =+ scaleOpacChartSvg (Range 0 1) o .+ (#hudOptions %~ colourHudOptions light) $+ cs -expScaleData :: Double -> Chart Double -> Chart Double-expScaleData s c = c & #xys %~ fmap (fmap ((10.0 ** s) *))+scaleOpacChartSvg :: Range Double -> Double -> ChartSvg -> ChartSvg+scaleOpacChartSvg r x cs =+ cs &+ #hudOptions .~ scaleOpacHudOptions (cs & view #hudOptions) (project (Range zero one) r x) &+ #chartList .~+ ((#annotation %~ scaleOpacAnn (project (Range zero one) r x)) <$>+ view #chartList cs)
chart-svg.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: chart-svg-version: 0.2.0+version: 0.2.1 synopsis: Charting library targetting SVGs. description: This package provides a charting library targetting SVG as the rendered output.@@ -15,7 +15,7 @@ >>> let lineChart = zipWith Chart anns ls >>> writeChartSvgHud "other/lineshud.svg" lineChart .- +  . See "Chart" for a broad overview of concepts, and "Chart.Examples" for a variety of practical examples. @@ -73,6 +73,7 @@ unordered-containers >= 0.2 && < 0.3, default-language: Haskell2010 default-extensions:+ StrictData ghc-options: -Wall -Wcompat
other/arc.svg view
@@ -1,147 +1,145 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.6 -0.5331313896679636 1.110448275862069 1.0550727689783084" width="315.74550358381" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.9047317470370035" width="0.9341226132563273" x="-0.4341226132563273" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,0.40473174703700354-0.5,0.40473174703700354"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,0.3224834063972759-0.5,0.3224834063972759"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,0.24023506575754838-0.5,0.24023506575754838"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,0.15798672511782075-0.5,0.15798672511782075"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,7.573838447809311e-2-0.5,7.573838447809311e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-6.5099561616344115e-3-0.5,-6.5099561616344115e-3"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-8.875829680136205e-2-0.5,-8.875829680136205e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-0.17100663744108957-0.5,-0.17100663744108957"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-0.2532549780808172-0.5,-0.2532549780808172"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-0.33550331872054473-0.5,-0.33550331872054473"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-0.41775165936027236-0.5,-0.41775165936027236"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,-0.5-0.5,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.4178503573690401">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.3356020167293125">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.2533536760895849">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.17110533544985734">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="8.885699481012971e-2">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="6.6086541704021284e-3">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-7.56396864693255e-2">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.15788802710905303">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.24013636774878067">0.7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.3223847083885083">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.4046330490282356">0.9</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.48688138966796357">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.46957095587317516, 0.40473174703700354)"><polyline points="-0.46957095587317516,0.41973174703700356--0.46957095587317516,0.38973174703700353"/></g><g transform="rotate(-90.0, -0.46957095587317516, 0.3224834063972759)"><polyline points="-0.46957095587317516,0.3374834063972759--0.46957095587317516,0.3074834063972759"/></g><g transform="rotate(-90.0, -0.46957095587317516, 0.24023506575754838)"><polyline points="-0.46957095587317516,0.2552350657575484--0.46957095587317516,0.22523506575754837"/></g><g transform="rotate(-90.0, -0.46957095587317516, 0.15798672511782075)"><polyline points="-0.46957095587317516,0.17298672511782076--0.46957095587317516,0.14298672511782073"/></g><g transform="rotate(-90.0, -0.46957095587317516, 7.573838447809311e-2)"><polyline points="-0.46957095587317516,9.073838447809311e-2--0.46957095587317516,6.073838447809311e-2"/></g><g transform="rotate(-90.0, -0.46957095587317516, -6.5099561616344115e-3)"><polyline points="-0.46957095587317516,8.490043838365588e-3--0.46957095587317516,-2.150995616163441e-2"/></g><g transform="rotate(-90.0, -0.46957095587317516, -8.875829680136205e-2)"><polyline points="-0.46957095587317516,-7.375829680136205e-2--0.46957095587317516,-0.10375829680136205"/></g><g transform="rotate(-90.0, -0.46957095587317516, -0.17100663744108957)"><polyline points="-0.46957095587317516,-0.15600663744108956--0.46957095587317516,-0.18600663744108958"/></g><g transform="rotate(-90.0, -0.46957095587317516, -0.2532549780808172)"><polyline points="-0.46957095587317516,-0.2382549780808172--0.46957095587317516,-0.2682549780808172"/></g><g transform="rotate(-90.0, -0.46957095587317516, -0.33550331872054473)"><polyline points="-0.46957095587317516,-0.3205033187205447--0.46957095587317516,-0.35050331872054474"/></g><g transform="rotate(-90.0, -0.46957095587317516, -0.41775165936027236)"><polyline points="-0.46957095587317516,-0.40275165936027235--0.46957095587317516,-0.4327516593602724"/></g><g transform="rotate(-90.0, -0.46957095587317516, -0.5)"><polyline points="-0.46957095587317516,-0.485--0.46957095587317516,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.9047317470370035" width="4.6706130662816925e-3" x="-0.4578944232074711" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4341226132563273,0.40473174703700354--0.4341226132563273,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.34071035193069454,0.40473174703700354--0.34071035193069454,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.24729809060506175,0.40473174703700354--0.24729809060506175,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.153885829279429,0.40473174703700354--0.153885829279429,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-6.047356795379627e-2,0.40473174703700354--6.047356795379627e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.2938693371836414e-2,0.40473174703700354-3.2938693371836414e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.12635095469746926,0.40473174703700354-0.12635095469746926,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.219763216023102,0.40473174703700354-0.219763216023102,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.31317547734873474,0.40473174703700354-0.31317547734873474,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.40658773867436726,0.40473174703700354-0.40658773867436726,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.5,0.40473174703700354-0.5,-0.5"/></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.4341226132563273" y="0.5">0</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.34071035193069454" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.24729809060506175" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.153885829279429" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-6.047356795379627e-2" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.2938693371836414e-2" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.12635095469746926" y="0.5">0.6</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.219763216023102" y="0.5">0.7</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.31317547734873474" y="0.5">0.8</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.40658773867436726" y="0.5">0.9</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.5" y="0.5">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.4341226132563273,0.44461187008052117--0.4341226132563273,0.41461187008052114"/><polyline points="-0.34071035193069454,0.44461187008052117--0.34071035193069454,0.41461187008052114"/><polyline points="-0.24729809060506175,0.44461187008052117--0.24729809060506175,0.41461187008052114"/><polyline points="-0.153885829279429,0.44461187008052117--0.153885829279429,0.41461187008052114"/><polyline points="-6.047356795379627e-2,0.44461187008052117--6.047356795379627e-2,0.41461187008052114"/><polyline points="3.2938693371836414e-2,0.44461187008052117-3.2938693371836414e-2,0.41461187008052114"/><polyline points="0.12635095469746926,0.44461187008052117-0.12635095469746926,0.41461187008052114"/><polyline points="0.219763216023102,0.44461187008052117-0.219763216023102,0.41461187008052114"/><polyline points="0.31317547734873474,0.44461187008052117-0.31317547734873474,0.41461187008052114"/><polyline points="0.40658773867436726,0.44461187008052117-0.40658773867436726,0.41461187008052114"/><polyline points="0.5,0.44461187008052117-0.5,0.41461187008052114"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.5236587351850654e-3" width="0.9341226132563273" x="-0.4341226132563273" y="0.4137790645073736"/></g><g stroke-opacity="0.0" fill-opacity="0.1" stroke="#000000" stroke-width="1.0e-2" fill="#e31a1c"><path d="M 0.5,0.3225 A 0.8510421685496118 0.45342537966528784 60.0 0 1 -0.4341,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="0.5,0.3224834063972759-0.49131803315740674,0.32353252021195333-0.4825189620523863,0.32434913819324973-0.47360555305057017,0.32493300360225563-0.46458060846461413,0.3252839328758222-0.4554469656731719,0.3254018156842713-0.4462074962288425,0.3252866149660833-0.4368651049553759,0.32493836693954775-0.4274227290344157,0.3243571810913775-0.4178833370820705,0.3235432401422867-0.4082499282156019,0.3224967999895446-0.3985255311105239,0.3212181896265231-0.3887132030484073,0.31970781103926404-0.37881602895569366,0.31796613908009697-0.3688371204338158,0.3159937213183496-0.35877961478093146,0.31379117786819544-0.3486466740055799,0.3113592011936945-0.33844148383256867,0.3086985558910873-0.32816725270140445,0.3058100784484114-0.3178272107575816,0.3026946769825159-0.30742460883704825,0.29935333095355476-0.2969627174441659,0.29578709085705257-0.2864448257234863,0.2919970778936358-0.2758742404256673,0.2879844836165354-0.26525428486785485,0.2837505695569703-0.2545882978888542,0.27929666682753196-0.24387963279942393,0.27462417570369146-0.2331316563280178,0.2697345651835622-0.22234774756231013,0.26462937252605856-0.21153129688683336,0.2593102027675914-0.20068570491706672,0.25377872821745723-0.18981438143030516,0.2480366879320745-0.1789207442936509,0.24208588716823765-0.16800821838945934,0.23592819681555716-0.15708023453858067,0.22956555280826463-0.1461402284217339,0.22299995551656865-0.13519163949935364,0.21623346911775349-0.12423790993024741,0.20926822094721537-0.11328248348940584,0.20210640082964398-0.10232880448530401,0.1947502603905566-9.138031667703528e-2,0.187202112348403-8.044046219161738e-2,0.17946432978746407-6.951268044181369e-2,0.17153934541176952-5.860040704480318e-2,0.1634296507802741-4.7707072742050216e-2,0.1551377955235283-3.6836102320701336e-2,0.14666638654209324-2.599091353685723e-2,0.13801808718694908-1.5174916041054254e-2,0.12919561642215677-4.39151030629481e-3,0.12020174797003447--6.355913441037475e-3,0.11103930943911966--1.706397628704126e-2,0.10171118143518798--2.7729311692603786e-2,9.22202966556126e-2--3.834856655181629e-2,8.256963896734354e-2--4.8918402246168224e-2,7.276224246880159e-2--5.943549569418416e-2,6.280119053597982e-2--6.989654039617699e-2,5.268961485305085e-2--8.029824747378878e-2,4.243069442778857e-2--9.063734670399043e-2,3.20276545921101e-2--0.10091058754721594,2.1483765988054848e-2--0.11111474016931061,1.0802343539516368e-2--0.12124659645696662,-1.3254589944611261e-5--0.13130297102633154,-1.095962805288353e-2--0.1412807022244708,-2.203333538701746e-2--0.15117665312336864,-3.3230895097196456e-2--0.16098771250615596,-4.4548786749960656e-2--0.17071079584525517,-5.5983452080339724e-2--0.18034284627213382,-6.753129611054609e-2--0.18988083553836177,-7.918868828021086e-2--0.19932176496767223,-9.0951963587806e-2--0.20866266639872305,-0.1028174237428946--0.2179006031182666,-0.11478133832884774--0.22703267078443107,-0.12683994597566073--0.23605599833982532,-0.13898945554250142--0.24496774891417866,-0.15122604730961775--0.25376512071623303,-0.1635458741792304--0.26244534791460594,-0.17594506288503375--0.27100570150734915,-0.18841971520992284--0.2794434901799264,-0.20096590921156576--0.28775606115134456,-0.2135797004554335--0.29594080100816855,-0.22625712325490366--0.3039951365261604,-0.2389941919180425--0.31191653547928266,-0.2517869020006802--0.3197025074358122,-0.26463123156537827--0.32735060454131437,-0.2775231424458985--0.33485842228823104,-0.2904585815167743--0.3422236002718412,-0.3034334819675847--0.34944382293235465,-0.31644376458152945--0.3565168202829081,-0.32948533901790766--0.36344036862323326,-0.3425541050980907--0.37021229123877164,-0.3556459540945901--0.376830459085019,-0.36875677002281115--0.3832927914568812,-0.38188243093509155--0.38959725664283384,-0.39501881021660945--0.3957418725636772,-0.4081617778827652--0.40172470739568833,-0.42130720187761683--0.4075438801779732,-0.4344509493729698--0.4131975614038264,-0.4475888880677099--0.4186839735959159,-0.46071688748696826--0.4240013918651091,-0.473830820280714--0.4291481444527659,-0.48692656352136343--0.4341226132563273,-0.5"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0000000000000027e-2" width="3.0000000000000013e-2" x="0.1038406136048169" y="-0.4309747042034927"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="0.8254018195424235" width="0.9341226132563273" x="-0.4341226132563273" y="-0.5"/></g><g></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.6 -0.5330998616968212 1.1154380916726987 1.107349731170277" width="302.19127533282744" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="5.0e-2" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.9069060898743935" width="0.9455996520193282" x="-0.4455996520193281" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4455996520193281,0.40690608987439353+0.5,0.40690608987439353"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4455996520193281,0.3244600817039941+0.5,0.3244600817039941"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4455996520193281,0.24201407353359472+0.5,0.24201407353359472"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4455996520193281,0.1595680653631953+0.5,0.1595680653631953"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4455996520193281,7.712205719279586e-2+0.5,7.712205719279586e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4455996520193281,-5.323950977603409e-3+0.5,-5.323950977603409e-3"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4455996520193281,-8.77699591480029e-2+0.5,-8.77699591480029e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4455996520193281,-0.17021596731840227+0.5,-0.17021596731840227"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4455996520193281,-0.25266197548880165+0.5,-0.25266197548880165"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4455996520193281,-0.335107983659201+0.5,-0.335107983659201"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4455996520193281,-0.4175539918296004+0.5,-0.4175539918296004"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4455996520193281,-0.5+0.5,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="0.4200562281775722">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="0.3376102200071728">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="0.2551642118367734">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="0.17271820366637397">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="9.027219549597465e-2">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="7.826187325575218e-3">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="-7.461982084482444e-2">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="-0.1570658290152236">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="-0.23951183718562297">0.7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="-0.32195784535602223">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="-0.4044038535264217">0.9</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="-0.4868498616968212">1</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><g transform="rotate(-90.0, -0.4706580427978403, 0.40690608987439353)"><polyline points="-0.4706580427978403,0.42190608987439354+-0.4706580427978403,0.3919060898743935"/></g><g transform="rotate(-90.0, -0.4706580427978403, 0.3244600817039941)"><polyline points="-0.4706580427978403,0.3394600817039941+-0.4706580427978403,0.3094600817039941"/></g><g transform="rotate(-90.0, -0.4706580427978403, 0.24201407353359472)"><polyline points="-0.4706580427978403,0.25701407353359473+-0.4706580427978403,0.2270140735335947"/></g><g transform="rotate(-90.0, -0.4706580427978403, 0.1595680653631953)"><polyline points="-0.4706580427978403,0.1745680653631953+-0.4706580427978403,0.14456806536319528"/></g><g transform="rotate(-90.0, -0.4706580427978403, 7.712205719279586e-2)"><polyline points="-0.4706580427978403,9.212205719279586e-2+-0.4706580427978403,6.212205719279586e-2"/></g><g transform="rotate(-90.0, -0.4706580427978403, -5.323950977603409e-3)"><polyline points="-0.4706580427978403,9.67604902239659e-3+-0.4706580427978403,-2.032395097760341e-2"/></g><g transform="rotate(-90.0, -0.4706580427978403, -8.77699591480029e-2)"><polyline points="-0.4706580427978403,-7.27699591480029e-2+-0.4706580427978403,-0.1027699591480029"/></g><g transform="rotate(-90.0, -0.4706580427978403, -0.17021596731840227)"><polyline points="-0.4706580427978403,-0.15521596731840226+-0.4706580427978403,-0.18521596731840229"/></g><g transform="rotate(-90.0, -0.4706580427978403, -0.25266197548880165)"><polyline points="-0.4706580427978403,-0.23766197548880164+-0.4706580427978403,-0.26766197548880166"/></g><g transform="rotate(-90.0, -0.4706580427978403, -0.335107983659201)"><polyline points="-0.4706580427978403,-0.320107983659201+-0.4706580427978403,-0.35010798365920104"/></g><g transform="rotate(-90.0, -0.4706580427978403, -0.4175539918296004)"><polyline points="-0.4706580427978403,-0.4025539918296004+-0.4706580427978403,-0.4325539918296004"/></g><g transform="rotate(-90.0, -0.4706580427978403, -0.5)"><polyline points="-0.4706580427978403,-0.485+-0.4706580427978403,-0.515"/></g></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.9069060898743935" width="3.782398608077331e-3" x="-0.4588380471475987" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4455996520193281,0.40690608987439353+-0.4455996520193281,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.34053302401718055,0.40690608987439353+-0.34053302401718055,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.23546639601503294,0.40690608987439353+-0.23546639601503294,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.13039976801288533,0.40690608987439353+-0.13039976801288533,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-2.533314001073772e-2,0.40690608987439353+-2.533314001073772e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="7.973348799140978e-2,0.40690608987439353+7.973348799140978e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.1848001159935574,0.40690608987439353+0.1848001159935574,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.289866743995705,0.40690608987439353+0.289866743995705,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.3949333719978525,0.40690608987439353+0.3949333719978525,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.5,0.40690608987439353+0.5,-0.5"/></g><g fill-opacity="1.0" font-size="4.158620689655172e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.4455996520193281, 0.5)" x="-0.4455996520193281" y="0.5">-0.8</text></g><g fill-opacity="1.0" font-size="4.158620689655172e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.34053302401718055, 0.5)" x="-0.34053302401718055" y="0.5">-0.6</text></g><g fill-opacity="1.0" font-size="4.158620689655172e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.23546639601503294, 0.5)" x="-0.23546639601503294" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="4.158620689655172e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.13039976801288533, 0.5)" x="-0.13039976801288533" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="4.158620689655172e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -2.533314001073772e-2, 0.5)" x="-2.533314001073772e-2" y="0.5">0</text></g><g fill-opacity="1.0" font-size="4.158620689655172e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 7.973348799140978e-2, 0.5)" x="7.973348799140978e-2" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="4.158620689655172e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 0.1848001159935574, 0.5)" x="0.1848001159935574" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="4.158620689655172e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 0.289866743995705, 0.5)" x="0.289866743995705" y="0.5">0.6</text></g><g fill-opacity="1.0" font-size="4.158620689655172e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 0.3949333719978525, 0.5)" x="0.3949333719978525" y="0.5">0.8</text></g><g fill-opacity="1.0" font-size="4.158620689655172e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 0.5, 0.5)" x="0.5" y="0.5">1</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><polyline points="-0.4455996520193281,0.4459391012560649+-0.4455996520193281,0.41593910125606487"/><polyline points="-0.34053302401718055,0.4459391012560649+-0.34053302401718055,0.41593910125606487"/><polyline points="-0.23546639601503294,0.4459391012560649+-0.23546639601503294,0.41593910125606487"/><polyline points="-0.13039976801288533,0.4459391012560649+-0.13039976801288533,0.41593910125606487"/><polyline points="-2.533314001073772e-2,0.4459391012560649+-2.533314001073772e-2,0.41593910125606487"/><polyline points="7.973348799140978e-2,0.4459391012560649+7.973348799140978e-2,0.41593910125606487"/><polyline points="0.1848001159935574,0.4459391012560649+0.1848001159935574,0.41593910125606487"/><polyline points="0.289866743995705,0.4459391012560649+0.289866743995705,0.41593910125606487"/><polyline points="0.3949333719978525,0.4459391012560649+0.3949333719978525,0.41593910125606487"/><polyline points="0.5,0.4459391012560649+0.5,0.41593910125606487"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="3.6276243594975943e-3" width="0.9455996520193282" x="-0.4455996520193281" y="0.41597515077313746"/></g><g stroke-opacity="0.0" fill-opacity="0.1" stroke="#000000" stroke-width="1.0e-2" fill="#1f78b5"><path d="M 0.5,0.3245 A 0.5253331400107378 0.412230040851997 -0.0 0 1 -0.0253,-0.5"/></g><g stroke-opacity="1.0" stroke="#a6cfe3" stroke-width="2.0e-3" fill="none"><polyline points="0.5,0.3244600817039942+0.483369277234746,0.3307309001377951+0.4664957468010773,0.3365887087530307+0.44939606083614747,0.34202772659989517+0.43208709466531137,0.347042586024505+0.414585930148219,0.35162833796612425+0.3969098388210801,0.3557804568412907+0.37907626485174506,0.3594948450100198+0.3611028078244165,0.3627678368196808+0.34300720537098606,0.36559620222255296+0.3248073156661314,0.3679771499634932+0.3065210998034561,0.3699083303345671+0.2881666040700581,0.3713878374939279+0.26976194213702254,0.37241421134665165+0.25132527718341724,0.37298643898567446+0.23287480397142646,0.37310395569140997+0.21442873089031855,0.3727666454890592+0.196005261986964,0.37197484126306346+0.17762257900063916,0.3707293244285878+0.15929882341984458,0.36903132416035866+0.14105207857884716,0.366882516179617+0.1229003518116123,0.3642850211003825+0.10486155668073893,0.3612414023366659+8.695349529893737e-2,0.3577546635726868+6.91938407604924e-2,0.353828245798601+5.16001197000544e-2,0.34946602391465836+3.4189694995966025e-2,0.3446723029071443+1.6979748635198022e-2,0.339451813599878+-1.2735243196226875e-5,0.33380970798546095+-1.677098710937719e-2,0.32775155414088153+-3.327846859221828e-2,0.32128333073249615+-4.951888880068217e-2,0.3144114211158069+-6.547622040096385e-2,0.3071426070358604+-8.11347154335329e-2,0.29948406193448485+-9.647892085446813e-2,0.2914433438709686+-0.1114936937857463,0.2830283880631685+-0.1261642164594346,0.2742474990564076+-0.1404760108410384,0.26510934252789203+-0.1544149529175723,0.25562293673473413+-0.16796728663625615,0.24579764361402107+-0.1811196374800791,0.23564315954371323+-0.193859025666831,0.22516950577349076+-0.20617287895858183,0.2143870185349896+-0.21804904506896183,0.20330633884118865+-0.2294758036560015,0.191938401985015+-0.24044187788869215,0.18029442674753132+-0.2509364455758589,0.16838590432635142+-0.2609491498463553,0.15622458699521702+-0.2704701093700449,0.1438224765059225+-0.2794899281094799,0.13119181224403542+-0.287999704592658,0.11834505915009985+-0.2959910406976985,0.10529489541824505+-0.3034560499407747,9.205419998434006e-2+-0.31038736525912214,7.863603981603812e-2+-0.3167781462814395,6.505365701725652e-2+-0.32262208607850884,5.132045575982125e-2+-0.3279134173873738,3.744998905516522e-2+-0.33264691830293114,2.345594537914475e-2+-0.3368179174313213,9.352135163164521e-3+-0.34042229850002936,-4.847522835048301e-3+-0.3434565044201495,-1.9129015267579152e-2+-0.34591754079680204,-3.347824802580801e-2+-0.3478029788842397,-4.7881060149592924e-2+-0.3491109579827261,-6.2323237802426434e-2+-0.3498401872748227,-7.679052829877775e-2+-0.3499899470992681,-9.12686541697727e-2+-0.34956008966119856,-0.10574332725332858+-0.34855103917800234,-0.12020026279484874+-0.34696379146066925,-0.13462519354454794+-0.34479991293104495,-0.14900388383750696+-0.3420615390759619,-0.16332214364255282+-0.3387513723397717,-0.17756584256610797+-0.3348726794573588,-0.19172092379718286+-0.3304292882302672,-0.20577341797974957+-0.32542558374912384,-0.21970945699880995+-0.3198665040660817,-0.2335152876665515+-0.31375753532156003,-0.24717728529508287+-0.307104706330086,-0.26068196714235425+-0.2999145826305821,-0.27401600571799756+-0.2921942600069721,-0.28716624193594986+-0.2839513574854994,-0.3001196981008821+-0.27519400981566844,-0.31286359071561676+-0.265930859442228,-0.3253853430968975+-0.25617104797612356,-0.33767259778705516+-0.24592420717282815,-0.34971322874932953+-0.23520044942696644,-0.36149535333479876+-0.2240103577925993,-0.3730073440091236+-0.21236497553902822,-0.3842378398275176+-0.20027579525242306,-0.39517575764662705+-0.1877547474940251,-0.4058103030622574+-0.174814189026125,-0.4161309810621461+-0.16146689061742991,-0.4261276063832713+-0.14772602443985788,-0.4357903135634775+-0.1336051510691924,-0.4451095666774971+-0.1191182061024344,-0.45407616874775303+-0.1042794864050468,-0.4626812708206709+-8.910363600167909e-2,-0.47091638069952146+-7.360563162427924e-2,-0.47877337132519915+-5.780076793187067e-2,-0.4862444887966433+-4.170464241656818e-2,-0.4933223600230059+-2.533314001073772e-2,-0.5"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="3.0e-3" fill="#a6cfe3"><rect height="3.0e-2" width="3.0000000000000027e-2" x="0.22233343541807982" y="-0.10276996127589864"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="0.8731172355803916" width="0.8500068705306324" x="-0.3500068705306324" y="-0.5"/></g><g></g></svg>
other/arcflags.svg view
@@ -1,1241 +1,1201 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-9.7575e-2 -9.03175 9.110075 9.16925" width="298.0639092619353" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="9.0" width="9.0" x="0.0" y="-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-0.0-9.0,-0.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-1.0-9.0,-1.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-2.0-9.0,-2.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-3.0-9.0,-3.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-4.0-9.0,-4.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-5.000000000000001-9.0,-5.000000000000001"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-6.0-9.0,-6.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-6.999999999999999-9.0,-6.999999999999999"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-8.0-9.0,-8.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-9.0-9.0,-9.0"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="1.4499999999999985e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-0.9855000000000002">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-1.9855">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-2.9855">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-3.9855">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-4.9855">5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-5.985500000000001">6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-6.985499999999999">7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-7.9855">8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-7.2575e-2" y="-8.9855">9</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -4.000000000000001e-2, -0.0)"><polyline points="-4.000000000000001e-2,1.5e-2--4.000000000000001e-2,-1.5e-2"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -1.0)"><polyline points="-4.000000000000001e-2,-0.985--4.000000000000001e-2,-1.015"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -2.0)"><polyline points="-4.000000000000001e-2,-1.985--4.000000000000001e-2,-2.015"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -3.0)"><polyline points="-4.000000000000001e-2,-2.985--4.000000000000001e-2,-3.015"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -4.0)"><polyline points="-4.000000000000001e-2,-3.985--4.000000000000001e-2,-4.015"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -5.000000000000001)"><polyline points="-4.000000000000001e-2,-4.985000000000001--4.000000000000001e-2,-5.015000000000001"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -6.0)"><polyline points="-4.000000000000001e-2,-5.985--4.000000000000001e-2,-6.015"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -6.999999999999999)"><polyline points="-4.000000000000001e-2,-6.984999999999999--4.000000000000001e-2,-7.014999999999999"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -8.0)"><polyline points="-4.000000000000001e-2,-7.985--4.000000000000001e-2,-8.015"/></g><g transform="rotate(-90.0, -4.000000000000001e-2, -9.0)"><polyline points="-4.000000000000001e-2,-8.985--4.000000000000001e-2,-9.015"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="9.0" width="5.0000000000000044e-3" x="-2.7500000000000004e-2" y="-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,-0.0-0.0,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="1.0,-0.0-1.0,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="2.0,-0.0-2.0,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.0,-0.0-3.0,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.9999999999999996,-0.0-3.9999999999999996,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="5.0,-0.0-5.0,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="6.000000000000001,-0.0-6.000000000000001,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="6.999999999999999,-0.0-6.999999999999999,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="8.0,-0.0-8.0,-9.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="9.0,-0.0-9.0,-9.0"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.0" y="0.11124999999999999">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="1.0" y="0.11124999999999999">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="2.0" y="0.11124999999999999">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.0" y="0.11124999999999999">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.9999999999999996" y="0.11124999999999999">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="5.0" y="0.11124999999999999">5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="6.000000000000001" y="0.11124999999999999">6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="6.999999999999999" y="0.11124999999999999">7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="8.0" y="0.11124999999999999">8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="9.0" y="0.11124999999999999">9</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="0.0,4.2499999999999996e-2-0.0,1.2499999999999997e-2"/><polyline points="1.0,4.2499999999999996e-2-1.0,1.2499999999999997e-2"/><polyline points="2.0,4.2499999999999996e-2-2.0,1.2499999999999997e-2"/><polyline points="3.0,4.2499999999999996e-2-3.0,1.2499999999999997e-2"/><polyline points="3.9999999999999996,4.2499999999999996e-2-3.9999999999999996,1.2499999999999997e-2"/><polyline points="5.0,4.2499999999999996e-2-5.0,1.2499999999999997e-2"/><polyline points="6.000000000000001,4.2499999999999996e-2-6.000000000000001,1.2499999999999997e-2"/><polyline points="6.999999999999999,4.2499999999999996e-2-6.999999999999999,1.2499999999999997e-2"/><polyline points="8.0,4.2499999999999996e-2-8.0,1.2499999999999997e-2"/><polyline points="9.0,4.2499999999999996e-2-9.0,1.2499999999999997e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.9999999999999906e-3" width="9.0" x="0.0" y="9.999999999999995e-3"/></g><g></g><g fill-opacity="1.0" font-size="0.6" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text transform="rotate(-90.0, 0.5549999999999999, -3.0)" x="0.5549999999999999" y="-3.0">Sweep</text></g><g></g><g fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text transform="rotate(-90.0, 1.7149999999999999, -1.5)" x="1.7149999999999999" y="-1.5">True</text></g><g></g><g fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text transform="rotate(-90.0, 1.7149999999999999, -4.52)" x="1.7149999999999999" y="-4.52">False</text></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="5.409999999999999,-2.01-5.408026728428272,-2.0727905195293133-5.402114701314479,-2.135333233564304-5.392287250728689,-2.197381314585725-5.378583161128632,-2.258689887164855-5.361056516295154,-2.3190169943749472-5.33977648588825,-2.378124552684678-5.31482705246602,-2.4357792915650722-5.286306680043863,-2.4917536741017154-5.254327925502015,-2.545826794978996-5.219016994374947,-2.597785252292473-5.180513242775788,-2.6474239897486895-5.138968627421411,-2.6945471059286885-5.094547105928688,-2.738968627421412-5.04742398974869,-2.780513242775789-4.9977852522924735,-2.8190169943749472-4.945826794978998,-2.8543279255020155-4.8917536741017145,-2.8863066800438633-4.835779291565073,-2.9148270524660194-4.778124552684679,-2.9397764858882516-4.719016994374946,-2.9610565162951534-4.658689887164854,-2.978583161128631-4.597381314585725,-2.9922872507286886-4.535333233564303,-3.002114701314478-4.472790519529314,-3.008026728428272-4.409999999999999,-3.0099999999999993-4.347209480470687,-3.008026728428272-4.284666766435696,-3.002114701314478-4.222618685414275,-2.9922872507286886-4.161310112835144,-2.978583161128631-4.100983005625053,-2.9610565162951534-4.041875447315322,-2.9397764858882516-3.984220708434927,-2.9148270524660194-3.9282463258982845,-2.886306680043863-3.8741732050210027,-2.8543279255020155-3.822214747707527,-2.8190169943749472-3.7725760102513104,-2.7805132427757893-3.725452894071311,-2.738968627421412-3.6810313725785884,-2.6945471059286885-3.6394867572242107,-2.6474239897486895-3.6009830056250527,-2.597785252292473-3.5656720744979844,-2.545826794978997-3.533693319956136,-2.4917536741017154-3.5051729475339806,-2.4357792915650722-3.480223514111748,-2.378124552684678-3.458943483704847,-2.3190169943749472-3.4414168388713695,-2.258689887164855-3.4277127492713118,-2.197381314585725-3.417885298685522,-2.135333233564304-3.4119732715717284,-2.0727905195293133-3.41,-2.0100000000000002-3.4119732715717284,-1.9472094804706868-3.417885298685522,-1.8846667664356958-3.4277127492713118,-1.8226186854142752-3.4414168388713686,-1.7613101128351452-3.458943483704847,-1.7009830056250523-3.480223514111748,-1.6418754473153219-3.5051729475339797,-1.5842207084349278-3.5336933199561367,-1.5282463258982848-3.5656720744979844,-1.4741732050210037-3.6009830056250527,-1.4222147477075269-3.6394867572242107,-1.3725760102513103-3.6810313725785884,-1.3254528940713115-3.7254528940713114,-1.2810313725785882-3.7725760102513104,-1.2394867572242108-3.822214747707527,-1.200983005625053-3.874173205021004,-1.1656720744979847-3.9282463258982845,-1.1336933199561363-3.9842207084349277,-1.1051729475339802-4.041875447315322,-1.0802235141117484-4.100983005625052,-1.0589434837048466-4.161310112835144,-1.0414168388713687-4.222618685414275,-1.0277127492713114-4.284666766435695,-1.0178852986855222-4.347209480470687,-1.0119732715717284-4.409999999999999,-1.01-4.472790519529313,-1.0119732715717284-4.535333233564303,-1.0178852986855222-4.597381314585725,-1.0277127492713114-4.658689887164854,-1.041416838871369-4.719016994374946,-1.0589434837048464-4.778124552684677,-1.0802235141117484-4.835779291565071,-1.1051729475339802-4.891753674101717,-1.1336933199561368-4.945826794978998,-1.1656720744979847-4.9977852522924735,-1.2009830056250523-5.047423989748689,-1.2394867572242103-5.094547105928688,-1.2810313725785882-5.138968627421411,-1.325452894071311-5.180513242775791,-1.3725760102513103-5.219016994374947,-1.4222147477075269-5.254327925502015,-1.4741732050210026-5.286306680043863,-1.5282463258982848-5.314827052466018,-1.584220708434927-5.33977648588825,-1.641875447315322-5.361056516295154,-1.7009830056250523-5.378583161128632,-1.7613101128351454-5.392287250728689,-1.8226186854142754-5.402114701314479,-1.8846667664356953-5.408026728428272,-1.9472094804706868-5.409999999999999,-2.01"/></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="4.409999999999999,-1.01-4.408026728428271,-1.0727905195293135-4.402114701314478,-1.1353332335643043-4.392287250728688,-1.1973813145857246-4.378583161128631,-1.258689887164855-4.361056516295152,-1.3190169943749475-4.339776485888251,-1.3781245526846777-4.314827052466019,-1.4357792915650727-4.286306680043864,-1.4917536741017154-4.2543279255020146,-1.5458267949789968-4.219016994374948,-1.597785252292473-4.180513242775789,-1.6474239897486895-4.138968627421411,-1.6945471059286885-4.094547105928688,-1.7389686274214113-4.047423989748689,-1.7805132427757893-3.997785252292472,-1.8190169943749472-3.9458267949789962,-1.8543279255020149-3.891753674101715,-1.8863066800438635-3.835779291565072,-1.9148270524660194-3.7781245526846776,-1.9397764858882511-3.7190169943749476,-1.961056516295153-3.658689887164855,-1.9785831611286309-3.597381314585724,-1.9922872507286882-3.535333233564304,-2.0021147013144778-3.4727905195293136,-2.0080267284282716-3.41,-2.01-3.3472094804706867,-2.0080267284282716-3.2846667664356963,-2.0021147013144778-3.2226186854142753,-1.9922872507286882-3.1613101128351446,-1.9785831611286309-3.1009830056250527,-1.9610565162951534-3.0418754473153222,-1.9397764858882516-2.9842207084349273,-1.9148270524660194-2.9282463258982845,-1.8863066800438635-2.874173205021003,-1.8543279255020149-2.8222147477075272,-1.8190169943749475-2.7725760102513104,-1.7805132427757893-2.725452894071311,-1.7389686274214113-2.6810313725785884,-1.694547105928689-2.6394867572242102,-1.64742398974869-2.6009830056250527,-1.597785252292473-2.565672074497985,-1.5458267949789968-2.533693319956136,-1.4917536741017152-2.5051729475339806,-1.435779291565073-2.4802235141117484,-1.3781245526846782-2.4589434837048465,-1.3190169943749475-2.4414168388713686,-1.258689887164855-2.4277127492713113,-1.1973813145857246-2.417885298685522,-1.135333233564304-2.411973271571729,-1.0727905195293137-2.41,-1.0100000000000002-2.411973271571729,-0.9472094804706866-2.417885298685522,-0.8846667664356958-2.4277127492713113,-0.8226186854142752-2.4414168388713686,-0.7613101128351455-2.4589434837048465,-0.7009830056250523-2.4802235141117484,-0.6418754473153221-2.50517294753398,-0.5842207084349278-2.533693319956137,-0.5282463258982846-2.565672074497985,-0.4741732050210036-2.6009830056250527,-0.422214747707527-2.6394867572242102,-0.3725760102513104-2.6810313725785884,-0.3254528940713116-2.725452894071312,-0.28103137257858846-2.7725760102513104,-0.23948675722421062-2.8222147477075272,-0.20098300562505264-2.8741732050210036,-0.16567207449798468-2.9282463258982845,-0.13369331995613642-2.984220708434928,-0.10517294753398021-3.0418754473153222,-8.022351411174855e-2-3.1009830056250522,-5.894348370484648e-2-3.161310112835145,-4.141683887136882e-2-3.2226186854142753,-2.7712749271311288e-2-3.284666766435696,-1.7885298685522244e-2-3.3472094804706867,-1.197327157172845e-2-3.4099999999999993,-1.0000000000000009e-2-3.4727905195293127,-1.197327157172845e-2-3.535333233564304,-1.7885298685522133e-2-3.5973813145857236,-2.7712749271311288e-2-3.658689887164855,-4.141683887136893e-2-3.7190169943749467,-5.894348370484637e-2-3.778124552684677,-8.022351411174847e-2-3.8357792915650712,-0.10517294753398007-3.891753674101715,-0.13369331995613665-3.9458267949789962,-0.1656720744979849-3.997785252292472,-0.20098300562505242-4.047423989748689,-0.2394867572242104-4.094547105928688,-0.28103137257858846-4.138968627421411,-0.32545289407131106-4.180513242775789,-0.3725760102513104-4.219016994374947,-0.42221474770752676-4.2543279255020146,-0.4741732050210029-4.286306680043864,-0.5282463258982847-4.314827052466019,-0.5842207084349271-4.339776485888251,-0.6418754473153222-4.361056516295152,-0.7009830056250523-4.378583161128631,-0.7613101128351455-4.392287250728688,-0.8226186854142753-4.402114701314478,-0.8846667664356952-4.408026728428271,-0.9472094804706869-4.409999999999999,-1.0099999999999998"/></g><g stroke-opacity="0.5" stroke="#ff00ff" stroke-width="5.0e-2" fill="none"><polyline points="3.41,-2.01-3.4257073173118204,-2.0098766324816606-3.441410759078128,-2.0095065603657316-3.4571064507096425,-2.00888987496197-3.4727905195293136,-2.0080267284282716-3.4884590957278454,-2.006917333733128-3.504108313318514,-2.0055619646030802-3.519734311091045,-2.0039609554551796-3.535333233564304,-2.0021147013144778-3.550901231937582,-2.0000236577165573-3.5664344650402304,-1.9976883405951376-3.58192910027941,-1.9951093261547737-3.597381314585724,-1.9922872507286882-3.6127872953565126,-1.9892228106217655-3.628143241396543,-1.9859167619387472-3.643445363855905,-1.9823699203976766-3.658689887164855,-1.9785831611286309-3.6738730499653722,-1.974557418457798-3.6889911060392286,-1.970293685676943-3.704040325232304,-1.9657930147983298-3.7190169943749476,-1.961056516295153-3.7339174181981494,-1.9560853588275449-3.748737920245291,-1.950880768954225-3.7634748437792567,-1.9454440308298668-3.7781245526846776,-1.9397764858882511-3.7926834323650898,-1.9338795325112867-3.80714789063478,-1.9277546256839808-3.821514358605109,-1.921403276635445-3.835779291565072,-1.9148270524660194-3.8499391698559156,-1.9080275757606153-3.8639904997395473,-1.9010065241883676-3.877929814260573,-1.8937656300886934-3.891753674101715,-1.8863066800438635-3.905458668432407,-1.878631514438191-3.9190414157503715,-1.8707420270039437-3.932498564715948,-1.8626401643540924-3.9458267949789962,-1.8543279255020149-3.959022817998131,-1.8458073613682704-3.97208337785213,-1.837080574274562-3.9850052520432784,-1.8281497174250232-3.997785252292472,-1.8190169943749472-4.010420225325884,-1.8096846584870905-4.022907053652976,-1.8001550123756904-4.035242656335705,-1.7904304073383297-4.047423989748689,-1.7805132427757893-4.059448048330183,-1.7704059656000308-4.0713118653236515,-1.7601110696304594-4.0830125135097735,-1.7496310949786096-4.094547105928688,-1.7389686274214111-4.105912796592314,-1.7281262977631888-4.117106781186547,-1.7171067811865472-4.128126297763188,-1.7059127965923144-4.138968627421411,-1.6945471059286885-4.149631094978609,-1.683012513509773-4.160111069630459,-1.6713118653236516-4.170405965600031,-1.6594480483301837-4.180513242775789,-1.6474239897486895-4.190430407338329,-1.635242656335705-4.20015501237569,-1.6229070536529764-4.20968465848709,-1.6104202253258841-4.219016994374948,-1.597785252292473-4.2281497174250235,-1.5850052520432785-4.237080574274562,-1.5720833778521306-4.24580736136827,-1.5590228179981316-4.2543279255020146,-1.5458267949789968-4.262640164354092,-1.5324985647159486-4.270742027003943,-1.5190414157503709-4.2786315144381915,-1.5054586684324076-4.286306680043864,-1.4917536741017152-4.293765630088693,-1.4779298142605732-4.3010065241883675,-1.4639904997395465-4.308027575760615,-1.449939169855915-4.314827052466019,-1.4357792915650727-4.321403276635445,-1.421514358605109-4.327754625683981,-1.4071478906347805-4.333879532511286,-1.3926834323650896-4.339776485888251,-1.3781245526846782-4.345444030829867,-1.3634748437792572-4.350880768954225,-1.3487379202452912-4.356085358827545,-1.3339174181981495-4.361056516295152,-1.3190169943749475-4.36579301479833,-1.304040325232304-4.370293685676943,-1.2889911060392294-4.3745574184577976,-1.2738730499653725-4.378583161128631,-1.2586898871648546-4.382369920397676,-1.2434453638559053-4.385916761938748,-1.2281432413965425-4.3892228106217654,-1.2127872953565124-4.392287250728688,-1.1973813145857246-4.395109326154774,-1.1819291002794095-4.3976883405951375,-1.166434465040231-4.400023657716557,-1.1509012319375826-4.402114701314478,-1.1353332335643043-4.4039609554551795,-1.1197343110910454-4.40556196460308,-1.1041083133185143-4.406917333733127,-1.088459095727845-4.408026728428271,-1.0727905195293135-4.40888987496197,-1.0571064507096426-4.409506560365731,-1.0414107590781283-4.4098766324816605,-1.0257073173118205-4.409999999999999,-1.01"/></g><g stroke-opacity="0.5" fill-opacity="0.3" stroke="#000000" stroke-width="1.0e-2" fill="#ff00ff"><path d="M 4.4100,-2.01 L 3.41,-2.01 A 1.0 1.0 -0.0 0 1 4.4100,-1.01 L 4.4100,-2.01"/></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="5.409999999999999,-5.049999999999999-5.408026728428272,-5.112790519529312-5.402114701314479,-5.175333233564305-5.392287250728689,-5.237381314585724-5.378583161128632,-5.298689887164853-5.361056516295154,-5.359016994374947-5.33977648588825,-5.418124552684677-5.31482705246602,-5.475779291565072-5.286306680043863,-5.531753674101714-5.254327925502015,-5.5858267949789955-5.219016994374947,-5.637785252292471-5.180513242775788,-5.68742398974869-5.138968627421411,-5.734547105928687-5.094547105928688,-5.778968627421411-5.04742398974869,-5.820513242775789-4.9977852522924735,-5.859016994374946-4.945826794978998,-5.894327925502013-4.8917536741017145,-5.926306680043862-4.835779291565073,-5.954827052466019-4.778124552684679,-5.979776485888251-4.719016994374946,-6.001056516295152-4.658689887164854,-6.018583161128629-4.597381314585725,-6.032287250728689-4.535333233564303,-6.042114701314477-4.472790519529314,-6.04802672842827-4.409999999999999,-6.05-4.347209480470687,-6.04802672842827-4.284666766435696,-6.042114701314477-4.222618685414275,-6.032287250728689-4.161310112835144,-6.018583161128629-4.100983005625053,-6.001056516295152-4.041875447315322,-5.979776485888251-3.984220708434927,-5.954827052466019-3.9282463258982845,-5.926306680043862-3.8741732050210027,-5.894327925502013-3.822214747707527,-5.859016994374946-3.7725760102513104,-5.820513242775789-3.725452894071311,-5.778968627421411-3.6810313725785884,-5.734547105928687-3.6394867572242107,-5.68742398974869-3.6009830056250527,-5.637785252292471-3.5656720744979844,-5.5858267949789955-3.533693319956136,-5.531753674101714-3.5051729475339806,-5.475779291565072-3.480223514111748,-5.418124552684677-3.458943483704847,-5.359016994374947-3.4414168388713695,-5.298689887164853-3.4277127492713118,-5.237381314585724-3.417885298685522,-5.175333233564303-3.4119732715717284,-5.112790519529312-3.41,-5.049999999999999-3.4119732715717284,-4.9872094804706855-3.417885298685522,-4.924666766435695-3.4277127492713118,-4.862618685414275-3.4414168388713686,-4.801310112835145-3.458943483704847,-4.740983005625051-3.480223514111748,-4.6818754473153215-3.5051729475339797,-4.624220708434927-3.5336933199561367,-4.568246325898284-3.5656720744979844,-4.514173205021003-3.6009830056250527,-4.4622147477075265-3.6394867572242107,-4.41257601025131-3.6810313725785884,-4.3654528940713115-3.7254528940713114,-4.321031372578588-3.7725760102513104,-4.27948675722421-3.822214747707527,-4.240983005625052-3.874173205021004,-4.2056720744979845-3.9282463258982845,-4.173693319956136-3.9842207084349277,-4.14517294753398-4.041875447315322,-4.120223514111748-4.100983005625052,-4.098943483704846-4.161310112835144,-4.081416838871369-4.222618685414275,-4.067712749271311-4.284666766435695,-4.057885298685521-4.347209480470687,-4.051973271571728-4.409999999999999,-4.05-4.472790519529313,-4.051973271571728-4.535333233564303,-4.057885298685521-4.597381314585725,-4.067712749271311-4.658689887164854,-4.081416838871369-4.719016994374946,-4.098943483704846-4.778124552684677,-4.120223514111748-4.835779291565071,-4.14517294753398-4.891753674101717,-4.173693319956136-4.945826794978998,-4.2056720744979845-4.9977852522924735,-4.240983005625052-5.047423989748689,-4.27948675722421-5.094547105928688,-4.321031372578588-5.138968627421411,-4.365452894071311-5.180513242775791,-4.41257601025131-5.219016994374947,-4.4622147477075265-5.254327925502015,-4.514173205021002-5.286306680043863,-4.568246325898285-5.314827052466018,-4.624220708434927-5.33977648588825,-4.6818754473153215-5.361056516295154,-4.740983005625051-5.378583161128632,-4.801310112835145-5.392287250728689,-4.862618685414275-5.402114701314479,-4.924666766435694-5.408026728428272,-4.9872094804706855-5.409999999999999,-5.049999999999999"/></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="4.409999999999999,-4.05-4.408026728428271,-4.112790519529312-4.402114701314478,-4.175333233564304-4.392287250728688,-4.237381314585725-4.378583161128631,-4.298689887164854-4.361056516295152,-4.359016994374947-4.339776485888251,-4.418124552684677-4.314827052466019,-4.475779291565072-4.286306680043864,-4.531753674101715-4.2543279255020146,-4.585826794978996-4.219016994374948,-4.637785252292472-4.180513242775789,-4.687423989748689-4.138968627421411,-4.734547105928688-4.094547105928688,-4.77896862742141-4.047423989748689,-4.820513242775788-3.997785252292472,-4.859016994374947-3.9458267949789962,-4.894327925502014-3.891753674101715,-4.926306680043863-3.835779291565072,-4.954827052466019-3.7781245526846776,-4.97977648588825-3.7190169943749476,-5.0010565162951535-3.658689887164855,-5.01858316112863-3.597381314585724,-5.032287250728688-3.535333233564304,-5.042114701314477-3.4727905195293136,-5.048026728428271-3.41,-5.049999999999999-3.3472094804706867,-5.048026728428271-3.2846667664356963,-5.042114701314477-3.2226186854142753,-5.032287250728688-3.1613101128351446,-5.01858316112863-3.1009830056250527,-5.0010565162951535-3.0418754473153222,-4.97977648588825-2.9842207084349273,-4.954827052466019-2.9282463258982845,-4.926306680043863-2.874173205021003,-4.894327925502014-2.8222147477075272,-4.859016994374947-2.7725760102513104,-4.820513242775788-2.725452894071311,-4.77896862742141-2.6810313725785884,-4.734547105928688-2.6394867572242102,-4.687423989748689-2.6009830056250527,-4.637785252292473-2.565672074497985,-4.585826794978996-2.533693319956136,-4.531753674101715-2.5051729475339806,-4.475779291565073-2.4802235141117484,-4.418124552684677-2.4589434837048465,-4.359016994374947-2.4414168388713686,-4.298689887164854-2.4277127492713113,-4.237381314585724-2.417885298685522,-4.175333233564304-2.411973271571729,-4.112790519529312-2.41,-4.05-2.411973271571729,-3.9872094804706864-2.417885298685522,-3.9246667664356956-2.4277127492713113,-3.8626186854142754-2.4414168388713686,-3.8013101128351443-2.4589434837048465,-3.7409830056250515-2.4802235141117484,-3.681875447315322-2.50517294753398,-3.624220708434927-2.533693319956137,-3.568246325898284-2.565672074497985,-3.5141732050210033-2.6009830056250527,-3.4622147477075265-2.6394867572242102,-3.4125760102513096-2.6810313725785884,-3.365452894071312-2.725452894071312,-3.3210313725785885-2.7725760102513104,-3.27948675722421-2.8222147477075272,-3.2409830056250524-2.8741732050210036,-3.205672074497984-2.9282463258982845,-3.1736933199561363-2.984220708434928,-3.1451729475339794-3.0418754473153222,-3.120223514111748-3.1009830056250522,-3.098943483704846-3.161310112835145,-3.0814168388713687-3.2226186854142753,-3.067712749271311-3.284666766435696,-3.0578852986855214-3.3472094804706867,-3.0519732715717285-3.4099999999999993,-3.05-3.4727905195293127,-3.0519732715717285-3.535333233564304,-3.0578852986855214-3.5973813145857236,-3.067712749271311-3.658689887164855,-3.0814168388713687-3.7190169943749467,-3.098943483704846-3.778124552684677,-3.120223514111748-3.8357792915650712,-3.1451729475339794-3.891753674101715,-3.1736933199561363-3.9458267949789962,-3.205672074497984-3.997785252292472,-3.2409830056250524-4.047423989748689,-3.27948675722421-4.094547105928688,-3.3210313725785885-4.138968627421411,-3.3654528940713107-4.180513242775789,-3.4125760102513096-4.219016994374947,-3.4622147477075265-4.2543279255020146,-3.514173205021002-4.286306680043864,-3.568246325898284-4.314827052466019,-3.624220708434927-4.339776485888251,-3.681875447315322-4.361056516295152,-3.7409830056250524-4.378583161128631,-3.8013101128351443-4.392287250728688,-3.8626186854142754-4.402114701314478,-3.9246667664356947-4.408026728428271,-3.9872094804706864-4.409999999999999,-4.049999999999999"/></g><g stroke-opacity="0.5" stroke="#00ff00" stroke-width="5.0e-2" fill="none"><polyline points="3.41,-5.049999999999999-3.410123367518339,-5.0342926826881795-3.4104934396342688,-5.01858924092187-3.4111101250380296,-5.002893549290356-3.4119732715717284,-4.9872094804706855-3.4130826662668725,-4.971540904272154-3.4144380353969193,-4.955891686681486-3.4160390445448203,-4.940265688908953-3.417885298685522,-4.924666766435694-3.4199763422834426,-4.9090987680624165-3.4223116594048624,-4.893565534959769-3.4248906738452267,-4.87807089972059-3.4277127492713118,-4.862618685414275-3.430777189378234,-4.8472127046434865-3.4340832380612527,-4.831856758603457-3.437630079602324,-4.816554636144094-3.4414168388713695,-4.801310112835145-3.445442581542202,-4.7861269500346255-3.4497063143230573,-4.77100889396077-3.4542069852016692,-4.755959674767695-3.458943483704847,-4.7409830056250515-3.463914641172454,-4.72608258180185-3.4691192310457746,-4.711262079754708-3.4745559691701327,-4.6965251562207415-3.480223514111748,-4.6818754473153215-3.486120467488713,-4.667316567634909-3.4922453743160182,-4.652852109365218-3.4985967233645545,-4.638485641394891-3.5051729475339806,-4.624220708434927-3.511972424239384,-4.610060830144084-3.5189934758116315,-4.596009500260453-3.5262343699113066,-4.5820701857394255-3.533693319956136,-4.568246325898285-3.541368485561809,-4.554541331567592-3.5492579729960565,-4.540958584249628-3.557359835645908,-4.52750143528405-3.5656720744979844,-4.514173205021003-3.5741926386317298,-4.5009771820018685-3.5829194257254384,-4.487916622147869-3.591850282574977,-4.474994747956721-3.6009830056250527,-4.4622147477075265-3.6103153415129094,-4.449579774674115-3.61984498762431,-4.437092946347023-3.62956959266167,-4.424757343664295-3.6394867572242107,-4.41257601025131-3.649594034399969,-4.400551951669816-3.6598889303695397,-4.3886881346763476-3.6703689050213906,-4.376987486490226-3.6810313725785884,-4.365452894071311-3.6918737022368107,-4.354087203407685-3.7028932188134527,-4.342893218813452-3.7140872034076855,-4.331873702236811-3.725452894071311,-4.321031372578588-3.736987486490227,-4.31036890502139-3.7486881346763483,-4.29988893036954-3.7605519516698163,-4.289594034399968-3.7725760102513104,-4.27948675722421-3.7847573436642947,-4.26956959266167-3.7970929463470235,-4.259844987624309-3.8095797746741162,-4.250315341512909-3.822214747707527,-4.240983005625052-3.834994747956721,-4.231850282574976-3.8479166221478693,-4.222919425725438-3.8609771820018683,-4.214192638631729-3.874173205021004,-4.2056720744979845-3.887501435284051,-4.197359835645908-3.900958584249629,-4.189257972996056-3.9145413315675928,-4.1813684855618085-3.9282463258982845,-4.1736933199561355-3.9420701857394262,-4.166234369911306-3.956009500260453,-4.158993475811632-3.970060830144084,-4.151972424239384-3.984220708434927,-4.14517294753398-3.998485641394891,-4.138596723364555-4.01285210936522,-4.132245374316018-4.02731656763491,-4.126120467488713-4.041875447315322,-4.120223514111748-4.056525156220743,-4.114555969170132-4.0712620797547086,-4.109119231045774-4.0860825818018505,-4.103914641172454-4.100983005625053,-4.098943483704846-4.115959674767696,-4.094206985201669-4.131008893960771,-4.089706314323056-4.146126950034627,-4.0854425815422015-4.161310112835144,-4.081416838871369-4.176554636144094,-4.077630079602323-4.191856758603457,-4.074083238061252-4.207212704643488,-4.070777189378234-4.222618685414275,-4.067712749271311-4.23807089972059,-4.064890673845226-4.253565534959769,-4.062311659404862-4.269098768062417,-4.059976342283442-4.284666766435696,-4.057885298685521-4.300265688908954,-4.05603904454482-4.315891686681486,-4.054438035396919-4.331540904272154,-4.053082666266872-4.347209480470687,-4.051973271571728-4.362893549290357,-4.051110125038029-4.378589240921872,-4.050493439634268-4.394292682688178,-4.050123367518339-4.409999999999999,-4.05"/></g><g stroke-opacity="0.5" fill-opacity="0.3" stroke="#000000" stroke-width="1.0e-2" fill="#00ff00"><path d="M 4.4100,-5.0500 L 3.41,-5.0500 A 1.0 1.0 -0.0 0 0 4.4100,-4.05 L 4.4100,-5.0500"/></g><g></g><g fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="3.8999999999999995" y="-6.989999999999999">False</text></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="8.905,-2.01-8.903026728428271,-2.0727905195293133-8.897114701314477,-2.135333233564304-8.887287250728688,-2.197381314585725-8.87358316112863,-2.258689887164855-8.856056516295153,-2.3190169943749472-8.83477648588825,-2.378124552684678-8.80982705246602,-2.4357792915650722-8.781306680043864,-2.4917536741017154-8.749327925502014,-2.545826794978996-8.714016994374946,-2.597785252292473-8.67551324277579,-2.6474239897486895-8.633968627421412,-2.6945471059286885-8.58954710592869,-2.738968627421412-8.54242398974869,-2.780513242775789-8.492785252292473,-2.8190169943749472-8.440826794978996,-2.8543279255020155-8.386753674101714,-2.8863066800438633-8.330779291565072,-2.9148270524660194-8.273124552684678,-2.9397764858882516-8.214016994374946,-2.9610565162951534-8.153689887164854,-2.978583161128631-8.092381314585724,-2.9922872507286886-8.030333233564303,-3.002114701314478-7.967790519529312,-3.008026728428272-7.9049999999999985,-3.0099999999999993-7.842209480470687,-3.008026728428272-7.779666766435697,-3.002114701314478-7.717618685414274,-2.9922872507286886-7.656310112835145,-2.978583161128631-7.595983005625053,-2.9610565162951534-7.536875447315322,-2.9397764858882516-7.479220708434926,-2.9148270524660194-7.423246325898283,-2.886306680043863-7.369173205021002,-2.8543279255020155-7.317214747707526,-2.8190169943749472-7.26757601025131,-2.7805132427757893-7.220452894071311,-2.738968627421412-7.176031372578589,-2.6945471059286885-7.13448675722421,-2.6474239897486895-7.095983005625052,-2.597785252292473-7.060672074497984,-2.545826794978997-7.028693319956136,-2.4917536741017154-7.00017294753398,-2.4357792915650722-6.975223514111749,-2.378124552684678-6.953943483704847,-2.3190169943749472-6.936416838871368,-2.258689887164855-6.9227127492713105,-2.197381314585725-6.912885298685521,-2.135333233564304-6.9069732715717285,-2.0727905195293133-6.905,-2.0100000000000002-6.9069732715717285,-1.9472094804706868-6.912885298685521,-1.8846667664356958-6.9227127492713105,-1.8226186854142752-6.936416838871368,-1.7613101128351452-6.953943483704847,-1.7009830056250523-6.975223514111749,-1.6418754473153219-7.000172947533979,-1.5842207084349278-7.028693319956136,-1.5282463258982848-7.060672074497984,-1.4741732050210037-7.095983005625052,-1.4222147477075269-7.13448675722421,-1.3725760102513103-7.176031372578587,-1.3254528940713115-7.220452894071311,-1.2810313725785882-7.26757601025131,-1.2394867572242108-7.317214747707526,-1.200983005625053-7.369173205021002,-1.1656720744979847-7.423246325898283,-1.1336933199561363-7.4792207084349265,-1.1051729475339802-7.536875447315322,-1.0802235141117484-7.595983005625051,-1.0589434837048466-7.656310112835145,-1.0414168388713687-7.717618685414274,-1.0277127492713114-7.779666766435694,-1.0178852986855222-7.842209480470687,-1.0119732715717284-7.9049999999999985,-1.01-7.967790519529312,-1.0119732715717284-8.030333233564303,-1.0178852986855222-8.092381314585724,-1.0277127492713114-8.153689887164854,-1.041416838871369-8.214016994374946,-1.0589434837048464-8.273124552684676,-1.0802235141117484-8.330779291565069,-1.1051729475339802-8.386753674101715,-1.1336933199561368-8.440826794978996,-1.1656720744979847-8.492785252292473,-1.2009830056250523-8.54242398974869,-1.2394867572242103-8.58954710592869,-1.2810313725785882-8.633968627421412,-1.325452894071311-8.67551324277579,-1.3725760102513103-8.714016994374946,-1.4222147477075269-8.749327925502014,-1.4741732050210026-8.781306680043864,-1.5282463258982848-8.80982705246602,-1.584220708434927-8.83477648588825,-1.641875447315322-8.856056516295153,-1.7009830056250523-8.87358316112863,-1.7613101128351454-8.887287250728688,-1.8226186854142754-8.897114701314477,-1.8846667664356953-8.903026728428271,-1.9472094804706868-8.905,-2.01"/></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="7.9049999999999985,-1.01-7.90302672842827,-1.0727905195293135-7.897114701314478,-1.1353332335643043-7.887287250728688,-1.1973813145857246-7.87358316112863,-1.258689887164855-7.856056516295152,-1.3190169943749475-7.83477648588825,-1.3781245526846777-7.809827052466019,-1.4357792915650727-7.781306680043864,-1.4917536741017154-7.749327925502015,-1.5458267949789968-7.714016994374947,-1.597785252292473-7.67551324277579,-1.6474239897486895-7.633968627421411,-1.6945471059286885-7.589547105928688,-1.7389686274214113-7.5424239897486896,-1.7805132427757893-7.492785252292472,-1.8190169943749472-7.440826794978997,-1.8543279255020149-7.386753674101714,-1.8863066800438635-7.330779291565073,-1.9148270524660194-7.273124552684678,-1.9397764858882511-7.214016994374948,-1.961056516295153-7.1536898871648535,-1.9785831611286309-7.092381314585725,-1.9922872507286882-7.030333233564304,-2.0021147013144778-6.967790519529313,-2.0080267284282716-6.905,-2.01-6.842209480470686,-2.0080267284282716-6.779666766435696,-2.0021147013144778-6.717618685414275,-1.9922872507286882-6.656310112835145,-1.9785831611286309-6.595983005625052,-1.9610565162951534-6.536875447315321,-1.9397764858882516-6.479220708434927,-1.9148270524660194-6.423246325898285,-1.8863066800438635-6.369173205021003,-1.8543279255020149-6.317214747707528,-1.8190169943749475-6.267576010251309,-1.7805132427757893-6.220452894071311,-1.7389686274214113-6.1760313725785885,-1.694547105928689-6.134486757224209,-1.64742398974869-6.095983005625052,-1.597785252292473-6.060672074497985,-1.5458267949789968-6.028693319956136,-1.4917536741017152-6.000172947533979,-1.435779291565073-5.9752235141117485,-1.3781245526846782-5.953943483704846,-1.3190169943749475-5.936416838871368,-1.258689887164855-5.9227127492713105,-1.1973813145857246-5.912885298685522,-1.135333233564304-5.9069732715717285,-1.0727905195293137-5.904999999999999,-1.0100000000000002-5.9069732715717285,-0.9472094804706866-5.912885298685522,-0.8846667664356958-5.9227127492713105,-0.8226186854142752-5.936416838871368,-0.7613101128351455-5.953943483704846,-0.7009830056250523-5.9752235141117485,-0.6418754473153221-6.000172947533979,-0.5842207084349278-6.028693319956136,-0.5282463258982846-6.060672074497984,-0.4741732050210036-6.095983005625052,-0.422214747707527-6.134486757224209,-0.3725760102513104-6.1760313725785885,-0.3254528940713116-6.220452894071311,-0.28103137257858846-6.267576010251309,-0.23948675722421062-6.317214747707527,-0.20098300562505264-6.369173205021003,-0.16567207449798468-6.423246325898285,-0.13369331995613642-6.479220708434928,-0.10517294753398021-6.536875447315321,-8.022351411174855e-2-6.595983005625052,-5.894348370484648e-2-6.656310112835145,-4.141683887136882e-2-6.717618685414275,-2.7712749271311288e-2-6.779666766435696,-1.7885298685522244e-2-6.842209480470686,-1.197327157172845e-2-6.905,-1.0000000000000009e-2-6.967790519529313,-1.197327157172845e-2-7.030333233564304,-1.7885298685522133e-2-7.092381314585725,-2.7712749271311288e-2-7.1536898871648535,-4.141683887136893e-2-7.214016994374948,-5.894348370484637e-2-7.273124552684676,-8.022351411174847e-2-7.330779291565071,-0.10517294753398007-7.3867536741017155,-0.13369331995613665-7.440826794978997,-0.1656720744979849-7.492785252292472,-0.20098300562505242-7.542423989748689,-0.2394867572242104-7.589547105928688,-0.28103137257858846-7.633968627421411,-0.32545289407131106-7.67551324277579,-0.3725760102513104-7.714016994374947,-0.42221474770752676-7.749327925502015,-0.4741732050210029-7.781306680043864,-0.5282463258982847-7.809827052466019,-0.5842207084349271-7.83477648588825,-0.6418754473153222-7.856056516295152,-0.7009830056250523-7.87358316112863,-0.7613101128351455-7.887287250728688,-0.8226186854142753-7.897114701314478,-0.8846667664356952-7.90302672842827,-0.9472094804706869-7.9049999999999985,-1.0099999999999998"/></g><g stroke-opacity="0.5" stroke="#0000ff" stroke-width="5.0e-2" fill="none"><polyline points="6.905,-2.01-6.90611012503803,-2.057106450709643-6.909438035396919,-2.1041083133185143-6.914976342283442,-2.1509012319375826-6.9227127492713105,-2.197381314585725-6.9326300796023235,-2.2434453638559053-6.9447063143230565,-2.2889911060392287-6.958914641172454,-2.3339174181981495-6.975223514111749,-2.378124552684678-6.993596723364554,-2.4215143586051084-7.013993475811631,-2.463990499739546-7.036368485561809,-2.505458668432407-7.060672074497984,-2.545826794978996-7.086850282574977,-2.585005252043278-7.114844987624309,-2.6229070536529755-7.144594034399968,-2.6594480483301832-7.176031372578589,-2.6945471059286885-7.209087203407686,-2.728126297763189-7.243688134676347,-2.76011106963046-7.2797573436642935,-2.79043040733833-7.317214747707526,-2.8190169943749472-7.355977182001867,-2.84580736136827-7.395958584249629,-2.8707420270039434-7.437070185739426,-2.8937656300886934-7.479220708434926,-2.914827052466019-7.52231656763491,-2.9338795325112867-7.566262079754708,-2.950880768954225-7.610959674767694,-2.9657930147983302-7.656310112835144,-2.978583161128631-7.702212704643486,-2.989222810621766-7.748565534959768,-2.9976883405951376-7.795265688908954,-3.003960955455179-7.842209480470687,-3.008026728428272-7.889292682688178,-3.0098766324816606-7.936410759078128,-3.009506560365731-7.983459095727846,-3.006917333733128-8.030333233564303,-3.002114701314478-8.076929100279408,-2.995109326154774-8.12314324139654,-2.9859167619387468-8.16887304996537,-2.974557418457798-8.214016994374946,-2.9610565162951534-8.258474843779256,-2.945444030829868-8.30214789063478,-2.927754625683981-8.344939169855914,-2.9080275757606158-8.386753674101715,-2.886306680043863-8.427498564715947,-2.8626401643540924-8.46708337785213,-2.837080574274562-8.505420225325883,-2.80968465848709-8.54242398974869,-2.7805132427757897-8.578012513509773,-2.74963109497861-8.612106781186547,-2.7171067811865472-8.644631094978608,-2.683012513509774-8.67551324277579,-2.6474239897486895-8.704684658487091,-2.610420225325884-8.732080574274558,-2.5720833778521306-8.757640164354092,-2.532498564715949-8.781306680043864,-2.4917536741017154-8.803027575760614,-2.4499391698559156-8.82275462568398,-2.4071478906347803-8.840444030829866,-2.363474843779257-8.856056516295153,-2.3190169943749477-8.869557418457797,-2.2738730499653723-8.880916761938748,-2.2281432413965434-8.890109326154773,-2.18192910027941-8.897114701314477,-2.135333233564304-8.901917333733127,-2.0884590957278455-8.90450656036573,-2.0414107590781283-8.90487663248166,-1.9942926826881786-8.903026728428271,-1.9472094804706872-8.898960955455179,-1.9002656889089549-8.892688340595138,-1.8535655349597686-8.884222810621766,-1.807212704643488-8.87358316112863,-1.7613101128351452-8.86079301479833,-1.7159596747676953-8.845880768954226,-1.671262079754709-8.828879532511285,-1.62731656763491-8.80982705246602,-1.584220708434928-8.788765630088692,-1.5420701857394266-8.765742027003943,-1.5009585842496282-8.74080736136827,-1.4609771820018687-8.714016994374946,-1.422214747707527-8.685430407338329,-1.3847573436642944-8.65511106963046,-1.348688134676349-8.623126297763188,-1.3140872034076858-8.589547105928688,-1.281031372578588-8.554448048330183,-1.249594034399969-8.517907053652976,-1.2198449876243096-8.480005252043279,-1.1918502825749768-8.440826794978996,-1.1656720744979847-8.400458668432407,-1.141368485561809-8.358990499739546,-1.1189934758116324-8.316514358605108,-1.0985967233645546-8.273124552684678,-1.0802235141117484-8.228917418198147,-1.0639146411724547-8.18399110603923,-1.049706314323057-8.138445363855904,-1.0376300796023235-8.092381314585724,-1.0277127492713114-8.045901231937583,-1.0199763422834425-7.999108313318513,-1.0144380353969198-7.952106450709642,-1.01111012503803-7.9049999999999985,-1.01"/></g><g stroke-opacity="0.5" fill-opacity="0.3" stroke="#000000" stroke-width="1.0e-2" fill="#0000ff"><path d="M 7.9050,-2.01 L 6.905,-2.01 A 1.0 1.0 -0.0 1 1 7.9050,-1.01 L 7.9050,-2.01"/></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="8.91987663248166,-5.06487663248166-8.917903360909932,-5.1276671520109725-8.911991333796138,-5.190209866045965-8.90216388321035,-5.252257947067385-8.888459793610291,-5.313566519646515-8.870933148776814,-5.373893626856607-8.849653118369911,-5.433001185166338-8.82470368494768,-5.490655924046733-8.796183312525523,-5.546630306583376-8.764204557983675,-5.600703427460656-8.728893626856609,-5.652661884774133-8.69038987525745,-5.70230062223035-8.648845259903071,-5.749423738410349-8.604423738410347,-5.793845259903071-8.557300622230349,-5.835389875257449-8.507661884774134,-5.873893626856608-8.455703427460657,-5.909204557983675-8.401630306583375,-5.941183312525524-8.345655924046733,-5.96970368494768-8.288001185166339,-5.994653118369911-8.228893626856607,-6.0159331487768135-8.168566519646514,-6.033459793610291-8.107257947067385,-6.047163883210349-8.045209866045964,-6.056991333796137-7.982667152010975,-6.062903360909932-7.91987663248166,-6.06487663248166-7.857086112952348,-6.062903360909932-7.794543398917356,-6.056991333796137-7.7324953178959355,-6.047163883210349-7.671186745316804,-6.033459793610291-7.610859638106713,-6.0159331487768135-7.551752079796981,-5.994653118369911-7.494097340916587,-5.96970368494768-7.438122958379943,-5.941183312525524-7.384049837502664,-5.909204557983675-7.332091380189186,-5.873893626856608-7.28245264273297,-5.835389875257449-7.235329526552971,-5.793845259903071-7.1909080050602485,-5.749423738410349-7.14936338970587,-5.70230062223035-7.110859638106714,-5.652661884774133-7.075548706979645,-5.600703427460657-7.043569952437797,-5.546630306583376-7.015049580015639,-5.490655924046733-6.9901001465934085,-5.433001185166338-6.968820116186506,-5.373893626856607-6.951293471353029,-5.313566519646515-6.9375893817529715,-5.252257947067385-6.927761931167183,-5.190209866045963-6.9218499040533885,-5.1276671520109725-6.919876632481659,-5.064876632481661-6.9218499040533885,-5.002086112952348-6.927761931167183,-4.9395433989173565-6.9375893817529715,-4.877495317895936-6.951293471353029,-4.816186745316805-6.968820116186506,-4.755859638106713-6.9901001465934085,-4.696752079796982-7.015049580015639,-4.639097340916588-7.043569952437798,-4.583122958379944-7.075548706979645,-4.529049837502665-7.110859638106714,-4.477091380189187-7.14936338970587,-4.427452642732971-7.1909080050602485,-4.3803295265529725-7.235329526552972,-4.335908005060249-7.28245264273297,-4.294363389705871-7.332091380189186,-4.255859638106713-7.384049837502664,-4.2205487069796455-7.438122958379943,-4.188569952437797-7.494097340916587,-4.160049580015641-7.551752079796981,-4.135100146593409-7.610859638106712,-4.113820116186507-7.671186745316807,-4.09629347135303-7.7324953178959355,-4.082589381752972-7.794543398917355,-4.072761931167182-7.857086112952348,-4.066849904053389-7.91987663248166,-4.064876632481661-7.982667152010973,-4.066849904053389-8.045209866045964,-4.072761931167182-8.107257947067383,-4.082589381752972-8.168566519646514,-4.09629347135303-8.228893626856607,-4.113820116186507-8.288001185166337,-4.135100146593409-8.345655924046731,-4.160049580015641-8.401630306583375,-4.188569952437797-8.455703427460657,-4.2205487069796455-8.507661884774132,-4.255859638106713-8.557300622230349,-4.294363389705871-8.604423738410347,-4.335908005060249-8.648845259903071,-4.380329526552972-8.69038987525745,-4.427452642732971-8.728893626856609,-4.477091380189187-8.764204557983675,-4.529049837502663-8.796183312525523,-4.583122958379945-8.82470368494768,-4.639097340916588-8.849653118369911,-4.696752079796982-8.870933148776814,-4.755859638106713-8.888459793610291,-4.816186745316805-8.90216388321035,-4.877495317895936-8.911991333796138,-4.939543398917356-8.917903360909932,-5.002086112952348-8.91987663248166,-5.06487663248166"/></g><g stroke-opacity="0.2" stroke="#000000" stroke-width="2.0e-2" fill="none"><polyline points="7.91987663248166,-4.064876632481661-7.917903360909932,-4.127667152010974-7.911991333796138,-4.190209866045965-7.902163883210348,-4.252257947067386-7.888459793610292,-4.313566519646515-7.870933148776814,-4.373893626856608-7.849653118369911,-4.433001185166338-7.824703684947679,-4.490655924046733-7.796183312525524,-4.546630306583375-7.764204557983674,-4.600703427460657-7.728893626856608,-4.652661884774132-7.69038987525745,-4.70230062223035-7.64884525990307,-4.749423738410348-7.6044237384103495,-4.793845259903072-7.5573006222303505,-4.83538987525745-7.507661884774134,-4.873893626856608-7.455703427460657,-4.909204557983675-7.401630306583375,-4.941183312525524-7.345655924046732,-4.96970368494768-7.2880011851663395,-4.994653118369912-7.228893626856607,-5.015933148776813-7.1685665196465145,-5.03345979361029-7.107257947067384,-5.047163883210349-7.045209866045964,-5.056991333796138-6.982667152010974,-5.062903360909931-6.919876632481659,-5.06487663248166-6.857086112952348,-5.062903360909931-6.794543398917355,-5.056991333796138-6.732495317895935,-5.047163883210349-6.671186745316806,-5.03345979361029-6.610859638106712,-5.015933148776813-6.551752079796982,-4.994653118369912-6.4940973409165865,-4.96970368494768-6.438122958379944,-4.941183312525524-6.384049837502663,-4.909204557983675-6.332091380189187,-4.873893626856608-6.28245264273297,-4.83538987525745-6.235329526552971,-4.793845259903072-6.190908005060248,-4.749423738410348-6.149363389705871,-4.70230062223035-6.110859638106712,-4.652661884774133-6.075548706979644,-4.600703427460657-6.043569952437796,-4.546630306583375-6.01504958001564,-4.490655924046734-5.990100146593409,-4.433001185166338-5.9688201161865075,-4.373893626856608-5.951293471353029,-4.313566519646515-5.9375893817529715,-4.252257947067385-5.927761931167181,-4.190209866045965-5.921849904053389,-4.127667152010974-5.919876632481661,-4.064876632481661-5.921849904053389,-4.002086112952347-5.927761931167181,-3.9395433989173565-5.9375893817529715,-3.8774953178959355-5.951293471353029,-3.8161867453168057-5.9688201161865075,-3.7558596381067124-5.990100146593409,-3.6967520797969824-6.01504958001564,-3.6390973409165874-6.043569952437796,-3.5831229583799455-6.075548706979644,-3.5290498375026638-6.110859638106712,-3.4770913801891874-6.14936338970587,-3.4274526427329706-6.190908005060248,-3.3803295265529725-6.235329526552971,-3.335908005060249-6.28245264273297,-3.294363389705871-6.332091380189187,-3.2558596381067133-6.384049837502663,-3.220548706979645-6.438122958379945,-3.188569952437797-6.4940973409165865,-3.1600495800156403-6.551752079796982,-3.135100146593409-6.610859638106712,-3.113820116186507-6.671186745316806,-3.09629347135303-6.732495317895935,-3.082589381752972-6.794543398917354,-3.0727619311671823-6.857086112952348,-3.066849904053389-6.919876632481659,-3.0648766324816608-6.982667152010973,-3.066849904053389-7.045209866045964,-3.0727619311671823-7.107257947067383,-3.082589381752972-7.1685665196465145,-3.09629347135303-7.228893626856607,-3.113820116186507-7.288001185166338,-3.135100146593409-7.3456559240467305,-3.1600495800156403-7.401630306583375,-3.188569952437797-7.455703427460657,-3.220548706979645-7.507661884774132,-3.2558596381067133-7.5573006222303505,-3.294363389705871-7.6044237384103495,-3.335908005060249-7.64884525990307,-3.380329526552972-7.69038987525745,-3.4274526427329706-7.728893626856607,-3.4770913801891874-7.764204557983674,-3.529049837502663-7.796183312525524,-3.5831229583799455-7.824703684947679,-3.6390973409165874-7.849653118369911,-3.6967520797969824-7.870933148776814,-3.7558596381067137-7.888459793610292,-3.8161867453168057-7.902163883210348,-3.8774953178959355-7.911991333796138,-3.9395433989173556-7.917903360909932,-4.002086112952347-7.91987663248166,-4.06487663248166"/></g><g stroke-opacity="0.5" stroke="#ff0000" stroke-width="5.0e-2" fill="none"><polyline points="6.919876632481659,-5.06487663248166-6.872770181772016,-5.06376650744363-6.825768319163145,-5.060438597084739-6.778975400544077,-5.0549002901982165-6.732495317895935,-5.047163883210349-6.686431268625754,-5.037246552879337-6.64088552644243,-5.025170318158604-6.5959592142835115,-5.0109619913092045-6.551752079796982,-4.994653118369912-6.5083622738765525,-4.976279909117106-6.4658861327421135,-4.955883156670028-6.424417964049252,-4.933508146919852-6.384049837502663,-4.909204557983675-6.344871380438382,-4.883026349906684-6.306969578828684,-4.855031644857351-6.270428584151476,-4.825282598081691-6.235329526552971,-4.793845259903072-6.201750334718471,-4.7607894290739745-6.169765562851201,-4.726188497805312-6.139446225143329,-4.690119288817366-6.110859638106712,-4.652661884774133-6.084069271113391,-4.613899450479791-6.059134605477715,-4.573918048232032-6.036111002392966,-4.532806446742234-6.01504958001564,-4.490655924046734-5.995997099970373,-4.44756006484675-5.978995863527435,-4.4036145527269515-5.964083617683329,-4.358916957713965-5.951293471353029,-4.313566519646515-5.940653821859894,-4.267663927838173-5.932188291886521,-4.221311097521892-5.925915677026481,-4.174610943572707-5.921849904053389,-4.127667152010973-5.919999999999999,-4.080583949793481-5.920370072115928,-4.033465873403532-5.922959298748531,-3.986417536753814-5.927761931167181,-3.9395433989173565-5.934767306326886,-3.8929475322022506-5.943959870542912,-3.8467333910851185-5.955319214023861,-3.801003582516288-5.9688201161865075,-3.7558596381067137-5.9844326016517915,-3.7114017887024033-6.002122006797679,-3.667728741846879-6.021849056721044,-3.6249374626257453-6.043569952437796,-3.5831229583799455-6.067236468127569,-3.5423780677657115-6.092796058207098,-3.502793254629529-6.12019197399457,-3.464456407155777-6.14936338970587,-3.4274526427329706-6.180245537503049,-3.391864118971887-6.212769851295113,-3.357769851295113-6.246864118971887,-3.3252455375030503-6.28245264273297,-3.294363389705871-6.319456407155777,-3.2651919739945705-6.357793254629528,-3.237796058207099-6.39737806776571,-3.2122364681275672-6.438122958379945,-3.188569952437797-6.479937462625744,-3.166849056721045-6.522728741846879,-3.147122006797679-6.566401788702402,-3.1294326016517924-6.610859638106712,-3.113820116186507-6.656003582516289,-3.1003192140238625-6.701733391085117,-3.088959870542913-6.747947532202249,-3.079767306326887-6.794543398917355,-3.0727619311671823-6.8414175367538155,-3.067959298748533-6.888465873403531,-3.0653700721159285-6.9355839497934815,-3.0649999999999995-6.982667152010973,-3.066849904053389-7.029610943572705,-3.07091567702648-7.0763110975218915,-3.077188291886522-7.122663927838171,-3.0856538218598946-7.1685665196465145,-3.09629347135303-7.2139169577139635,-3.10908361768333-7.258614552726951,-3.1239958635274347-7.302560064846751,-3.140997099970374-7.3456559240467305,-3.1600495800156403-7.387806446742234,-3.181111002392967-7.428918048232031,-3.2041346054777162-7.468899450479791,-3.229069271113389-7.507661884774132,-3.2558596381067133-7.545119288817364,-3.2844462251433306-7.581188497805311,-3.3147655628512007-7.615789429073975,-3.3467503347184717-7.648845259903071,-3.3803295265529725-7.68028259808169,-3.415428584151477-7.7100316448573505,-3.4519695788286833-7.738026349906683,-3.4898713804383816-7.764204557983676,-3.5290498375026638-7.7885081469198525,-3.5694179640492534-7.810883156670028,-3.6108861327421127-7.831279909117106,-3.653362273876552-7.849653118369911,-3.6967520797969824-7.865961991309205,-3.7409592142835115-7.880170318158602,-3.78588552644243-7.892246552879336,-3.831431268625756-7.902163883210348,-3.8774953178959355-7.909900290198217,-3.9239754005440775-7.915438597084739,-3.9707683191631453-7.91876650744363,-4.0177701817720175-7.91987663248166,-4.06487663248166"/></g><g stroke-opacity="0.5" fill-opacity="0.3" stroke="#000000" stroke-width="1.0e-2" fill="#ff0000"><path d="M 7.9199,-5.0649 L 6.9199,-5.0649 A 1.0 1.0 -0.0 1 0 7.9199,-4.0649 L 7.9199,-5.0649"/></g><g></g><g fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="7.394999999999999" y="-7.004876632481659">True</text></g><g></g><g fill-opacity="1.0" font-size="0.6" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="5.499999999999999" y="-7.594876632481659">Large</text></g><g></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="0.0 -4.94987663248166 9.0 8.637314948722489" width="312.5971457599038" xmlns:xlink="http://www.w3.org/1999/xlink"><g></g><g fill-opacity="1.0" font-size="0.6" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text transform="rotate(-90.0, 0.5549999999999999, -0.0)" x="0.5549999999999999" y="-0.0">Sweep</text></g><g></g><g fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text transform="rotate(-90.0, 1.7149999999999999, 1.5099999999999998)" x="1.7149999999999999" y="1.5099999999999998">True</text></g><g></g><g fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text transform="rotate(-90.0, 1.7149999999999999, -1.5100000000000002)" x="1.7149999999999999" y="-1.5100000000000002">False</text></g><g stroke-opacity="0.2" stroke="#0d0d0d" stroke-width="2.0e-2" fill="none"><polyline points="5.409999999999999,1.6699999999999995+5.408026728428272,1.607209480470686+5.402114701314478,1.5446667664356952+5.392287250728689,1.4826186854142747+5.378583161128631,1.4213101128351444+5.361056516295154,1.360983005625052+5.339776485888249,1.3018754473153216+5.314827052466018,1.244220708434927+5.286306680043863,1.1882463258982843+5.2543279255020146,1.134173205021003+5.219016994374947,1.0822147477075261+5.180513242775787,1.0325760102513097+5.138968627421411,0.9854528940713108+5.094547105928688,0.9410313725785877+5.047423989748689,0.8994867572242105+4.9977852522924735,0.860983005625052+4.945826794978997,0.8256720744979842+4.8917536741017145,0.793693319956136+4.835779291565073,0.7651729475339799+4.7781245526846785,0.7402235141117481+4.719016994374945,0.7189434837048458+4.658689887164854,0.7014168388713689+4.597381314585725,0.6877127492713107+4.535333233564302,0.6778852986855215+4.472790519529314,0.6719732715717277+4.409999999999999,0.6699999999999995+4.347209480470687,0.6719732715717277+4.284666766435696,0.6778852986855215+4.222618685414275,0.6877127492713107+4.161310112835144,0.7014168388713689+4.100983005625053,0.7189434837048458+4.041875447315322,0.7402235141117481+3.9842207084349273,0.7651729475339799+3.9282463258982845,0.793693319956136+3.8741732050210023,0.8256720744979846+3.822214747707527,0.860983005625052+3.7725760102513104,0.8994867572242105+3.725452894071311,0.9410313725785877+3.6810313725785884,0.9854528940713108+3.6394867572242102,1.0325760102513097+3.6009830056250527,1.0822147477075261+3.565672074497984,1.1341732050210025+3.5336933199561353,1.1882463258982843+3.5051729475339797,1.244220708434927+3.480223514111748,1.3018754473153211+3.4589434837048465,1.360983005625052+3.441416838871369,1.4213101128351444+3.4277127492713113,1.4826186854142747+3.417885298685522,1.5446667664356952+3.4119732715717284,1.607209480470686+3.41,1.6699999999999995+3.4119732715717284,1.732790519529313+3.417885298685522,1.7953332335643037+3.4277127492713113,1.8573813145857243+3.4414168388713686,1.9186898871648541+3.4589434837048465,1.9790169943749472+3.480223514111748,2.0381245526846774+3.5051729475339792,2.095779291565072+3.5336933199561367,2.151753674101715+3.565672074497984,2.205826794978996+3.6009830056250527,2.2577852522924724+3.6394867572242102,2.3074239897486892+3.6810313725785884,2.3545471059286878+3.7254528940713114,2.398968627421411+3.7725760102513104,2.440513242775789+3.822214747707527,2.479016994374947+3.8741732050210036,2.514327925502015+3.9282463258982845,2.546306680043863+3.9842207084349277,2.574827052466019+4.041875447315322,2.599776485888251+4.100983005625052,2.621056516295153+4.161310112835144,2.6385831611286306+4.222618685414275,2.6522872507286883+4.284666766435695,2.6621147013144775+4.347209480470687,2.668026728428271+4.409999999999999,2.6699999999999995+4.472790519529313,2.668026728428271+4.535333233564302,2.6621147013144775+4.597381314585725,2.6522872507286883+4.658689887164854,2.6385831611286306+4.719016994374945,2.621056516295153+4.778124552684677,2.599776485888251+4.835779291565071,2.5748270524660195+4.891753674101716,2.546306680043863+4.945826794978997,2.5143279255020143+4.9977852522924735,2.479016994374947+5.0474239897486886,2.440513242775789+5.094547105928688,2.398968627421411+5.138968627421411,2.354547105928688+5.18051324277579,2.3074239897486892+5.219016994374947,2.257785252292473+5.2543279255020146,2.2058267949789965+5.286306680043863,2.1517536741017147+5.314827052466018,2.0957792915650724+5.339776485888249,2.0381245526846774+5.361056516295154,1.9790169943749472+5.378583161128631,1.9186898871648541+5.392287250728689,1.8573813145857243+5.402114701314478,1.7953332335643042+5.408026728428272,1.7327905195293127+5.409999999999999,1.6699999999999995"/></g><g stroke-opacity="0.2" stroke="#0d0d0d" stroke-width="2.0e-2" fill="none"><polyline points="4.409999999999999,2.6699999999999995+4.408026728428271,2.607209480470686+4.402114701314478,2.5446667664356952+4.392287250728688,2.4826186854142747+4.378583161128631,2.421310112835145+4.361056516295152,2.360983005625052+4.339776485888251,2.3018754473153216+4.314827052466019,2.244220708434927+4.286306680043864,2.1882463258982843+4.2543279255020146,2.134173205021003+4.219016994374948,2.0822147477075266+4.180513242775789,2.0325760102513097+4.138968627421411,1.9854528940713108+4.094547105928688,1.941031372578588+4.047423989748689,1.8994867572242105+3.997785252292472,1.860983005625052+3.9458267949789967,1.8256720744979844+3.891753674101715,1.7936933199561358+3.8357792915650717,1.76517294753398+3.778124552684677,1.7402235141117481+3.7190169943749467,1.7189434837048458+3.6586898871648548,1.7014168388713686+3.5973813145857236,1.6877127492713109+3.5353332335643035,1.6778852986855215+3.472790519529313,1.6719732715717277+3.41,1.6699999999999995+3.3472094804706867,1.6719732715717277+3.284666766435696,1.6778852986855215+3.2226186854142753,1.6877127492713107+3.1613101128351446,1.7014168388713686+3.1009830056250527,1.7189434837048458+3.0418754473153222,1.7402235141117481+2.9842207084349273,1.76517294753398+2.9282463258982845,1.793693319956136+2.8741732050210023,1.8256720744979846+2.822214747707527,1.860983005625052+2.7725760102513104,1.8994867572242102+2.725452894071311,1.941031372578588+2.6810313725785884,1.9854528940713108+2.6394867572242102,2.0325760102513097+2.6009830056250527,2.082214747707526+2.565672074497984,2.1341732050210025+2.5336933199561353,2.1882463258982843+2.5051729475339806,2.244220708434927+2.480223514111748,2.3018754473153216+2.4589434837048465,2.360983005625052+2.4414168388713686,2.421310112835145+2.4277127492713113,2.482618685414275+2.417885298685522,2.5446667664356952+2.4119732715717284,2.607209480470686+2.4099999999999997,2.6699999999999995+2.4119732715717284,2.732790519529313+2.417885298685522,2.7953332335643037+2.4277127492713113,2.8573813145857243+2.4414168388713686,2.918689887164854+2.4589434837048465,2.9790169943749474+2.480223514111748,3.0381245526846774+2.50517294753398,3.095779291565072+2.5336933199561367,3.1517536741017147+2.565672074497984,3.205826794978996+2.6009830056250527,3.2577852522924724+2.6394867572242102,3.3074239897486892+2.6810313725785884,3.3545471059286878+2.7254528940713114,3.398968627421411+2.7725760102513104,3.440513242775789+2.822214747707527,3.479016994374947+2.8741732050210036,3.514327925502015+2.9282463258982845,3.546306680043863+2.9842207084349277,3.574827052466019+3.0418754473153222,3.599776485888251+3.1009830056250522,3.621056516295153+3.1613101128351446,3.6385831611286306+3.2226186854142753,3.6522872507286883+3.2846667664356954,3.6621147013144775+3.3472094804706867,3.668026728428271+3.409999999999999,3.6699999999999995+3.4727905195293127,3.668026728428271+3.5353332335643035,3.6621147013144775+3.597381314585723,3.6522872507286883+3.6586898871648548,3.6385831611286306+3.7190169943749467,3.621056516295153+3.7781245526846767,3.599776485888251+3.835779291565071,3.5748270524660195+3.891753674101715,3.546306680043863+3.9458267949789967,3.5143279255020143+3.997785252292472,3.479016994374947+4.047423989748689,3.440513242775789+4.094547105928688,3.398968627421411+4.138968627421411,3.354547105928688+4.180513242775789,3.3074239897486892+4.219016994374947,3.257785252292473+4.2543279255020146,3.2058267949789965+4.286306680043864,3.1517536741017147+4.314827052466019,3.0957792915650724+4.339776485888251,3.0381245526846774+4.361056516295152,2.979016994374947+4.378583161128631,2.918689887164854+4.392287250728688,2.8573813145857243+4.402114701314478,2.795333233564304+4.408026728428271,2.732790519529313+4.409999999999999,2.67"/></g><g stroke-opacity="0.5" stroke="#0d0d0d" stroke-width="5.0e-2" fill="none"><polyline points="3.41,1.6699999999999995+3.4257073173118204,1.6701233675183391+3.441410759078128,1.6704934396342677+3.4571064507096416,1.6711101250380294+3.472790519529313,1.6719732715717277+3.488459095727845,1.6730826662668714+3.5041083133185134,1.6744380353969195+3.519734311091045,1.6760390445448197+3.5353332335643035,1.6778852986855215+3.5509012319375817,1.679976342283442+3.56643446504023,1.6823116594048617+3.5819291002794094,1.6848906738452256+3.5973813145857236,1.6877127492713109+3.6127872953565126,1.6907771893782337+3.6281432413965424,1.694083238061252+3.6434453638559043,1.697630079602323+3.6586898871648548,1.7014168388713686+3.673873049965372,1.7054425815422014+3.688991106039228,1.7097063143230564+3.7040403252323033,1.7142069852016695+3.7190169943749467,1.7189434837048458+3.733917418198149,1.7239146411724546+3.7487379202452904,1.729119231045774+3.7634748437792567,1.7345559691701322+3.778124552684677,1.7402235141117481+3.7926834323650898,1.7461204674887127+3.8071478906347798,1.7522453743160185+3.8215143586051084,1.7585967233645543+3.8357792915650717,1.76517294753398+3.849939169855915,1.771972424239384+3.863990499739547,1.7789934758116317+3.877929814260573,1.786234369911306+3.891753674101715,1.793693319956136+3.9054586684324066,1.8013684855618084+3.9190414157503715,1.8092579729960558+3.932498564715948,1.8173598356459073+3.9458267949789967,1.8256720744979844+3.9590228179981315,1.8341926386317293+3.9720833778521296,1.8429194257254378+3.9850052520432784,1.851850282574976+3.997785252292472,1.860983005625052+4.010420225325884,1.8703153415129088+4.022907053652976,1.8798449876243093+4.035242656335705,1.8895695926616698+4.047423989748689,1.8994867572242105+4.059448048330183,1.9095940343999684+4.0713118653236515,1.91988893036954+4.0830125135097735,1.93036890502139+4.094547105928688,1.9410313725785882+4.105912796592314,1.9518737022368107+4.117106781186547,1.962893218813452+4.128126297763188,1.9740872034076853+4.138968627421411,1.9854528940713108+4.149631094978609,1.9969874864902262+4.160111069630459,2.0086881346763477+4.170405965600031,2.020551951669816+4.180513242775789,2.0325760102513097+4.190430407338329,2.044757343664294+4.20015501237569,2.057092946347023+4.20968465848709,2.0695797746741156+4.219016994374948,2.0822147477075266+4.2281497174250235,2.094994747956721+4.237080574274562,2.1079166221478687+4.24580736136827,2.1209771820018677+4.2543279255020146,2.134173205021003+4.262640164354092,2.1475014352840507+4.270742027003943,2.160958584249628+4.2786315144381915,2.174541331567592+4.286306680043864,2.1882463258982843+4.293765630088693,2.202070185739426+4.3010065241883675,2.2160095002604527+4.308027575760615,2.2300608301440845+4.314827052466019,2.244220708434927+4.321403276635445,2.258485641394891+4.327754625683981,2.272852109365219+4.333879532511286,2.28731656763491+4.339776485888251,2.3018754473153216+4.345444030829867,2.3165251562207425+4.350880768954225,2.331262079754708+4.356085358827545,2.3460825818018503+4.361056516295152,2.360983005625052+4.36579301479833,2.3759596747676954+4.370293685676943,2.39100889396077+4.3745574184577976,2.406126950034627+4.378583161128631,2.421310112835145+4.382369920397676,2.436554636144094+4.385916761938748,2.4518567586034568+4.3892228106217654,2.467212704643487+4.392287250728688,2.4826186854142747+4.395109326154774,2.49807089972059+4.3976883405951375,2.5135655349597688+4.400023657716557,2.5290987680624166+4.402114701314478,2.5446667664356952+4.4039609554551795,2.560265688908954+4.40556196460308,2.5758916866814854+4.406917333733127,2.5915409042721547+4.408026728428271,2.6072094804706865+4.40888987496197,2.6228935492903567+4.409506560365731,2.6385892409218714+4.4098766324816605,2.6542926826881788+4.409999999999999,2.6699999999999995"/></g><g stroke-opacity="0.5" fill-opacity="0.3" stroke="#0d0d0d" stroke-width="1.0e-2" fill="#0d0d0d"><path d="M 4.4100,1.6700 L 3.41,1.6700 A 1.0 1.0 -0.0 0 1 4.4100,2.6700 L 4.4100,1.6700"/></g><g stroke-opacity="0.2" stroke="#0d0d0d" stroke-width="2.0e-2" fill="none"><polyline points="5.409999999999999,-1.3699999999999997+5.408026728428272,-1.4327905195293131+5.402114701314478,-1.4953332335643048+5.392287250728689,-1.5573813145857245+5.378583161128631,-1.6186898871648547+5.361056516295154,-1.679016994374948+5.339776485888249,-1.738124552684678+5.314827052466018,-1.7957792915650725+5.286306680043863,-1.8517536741017158+5.2543279255020146,-1.9058267949789962+5.219016994374947,-1.957785252292473+5.180513242775787,-2.00742398974869+5.138968627421411,-2.054547105928689+5.094547105928688,-2.0989686274214114+5.047423989748689,-2.1405132427757896+4.9977852522924735,-2.179016994374948+4.945826794978997,-2.214327925502015+4.8917536741017145,-2.246306680043864+4.835779291565073,-2.2748270524660197+4.7781245526846785,-2.2997764858882515+4.719016994374945,-2.3210565162951533+4.658689887164854,-2.3385831611286307+4.597381314585725,-2.3522872507286885+4.535333233564302,-2.362114701314478+4.472790519529314,-2.3680267284282714+4.409999999999999,-2.3699999999999997+4.347209480470687,-2.3680267284282714+4.284666766435696,-2.362114701314478+4.222618685414275,-2.3522872507286885+4.161310112835144,-2.3385831611286307+4.100983005625053,-2.3210565162951533+4.041875447315322,-2.2997764858882515+3.9842207084349273,-2.2748270524660197+3.9282463258982845,-2.246306680043864+3.8741732050210023,-2.214327925502015+3.822214747707527,-2.179016994374948+3.7725760102513104,-2.1405132427757896+3.725452894071311,-2.0989686274214114+3.6810313725785884,-2.054547105928689+3.6394867572242102,-2.00742398974869+3.6009830056250527,-1.957785252292473+3.565672074497984,-1.905826794978997+3.5336933199561353,-1.8517536741017158+3.5051729475339797,-1.7957792915650725+3.480223514111748,-1.738124552684678+3.4589434837048465,-1.679016994374948+3.441416838871369,-1.6186898871648547+3.4277127492713113,-1.5573813145857245+3.417885298685522,-1.495333233564304+3.4119732715717284,-1.4327905195293131+3.41,-1.3700000000000006+3.4119732715717284,-1.307209480470687+3.417885298685522,-1.2446667664356954+3.4277127492713113,-1.1826186854142757+3.4414168388713686,-1.1213101128351455+3.4589434837048465,-1.0609830056250522+3.480223514111748,-1.0018754473153222+3.5051729475339792,-0.9442207084349277+3.5336933199561367,-0.8882463258982845+3.565672074497984,-0.834173205021004+3.6009830056250527,-0.7822147477075272+3.6394867572242102,-0.7325760102513104+3.6810313725785884,-0.6854528940713123+3.7254528940713114,-0.6410313725785888+3.7725760102513104,-0.5994867572242106+3.822214747707527,-0.5609830056250522+3.8741732050210036,-0.5256720744979844+3.9282463258982845,-0.4936933199561353+3.9842207084349277,-0.46517294753398053+4.041875447315322,-0.44022351411174876+4.100983005625052,-0.41894348370484513+4.161310112835144,-0.4014168388713695+4.222618685414275,-0.3877127492713117+4.284666766435695,-0.3778852986855221+4.347209480470687,-0.37197327157172877+4.409999999999999,-0.37000000000000055+4.472790519529313,-0.37197327157172877+4.535333233564302,-0.3778852986855221+4.597381314585725,-0.3877127492713117+4.658689887164854,-0.4014168388713695+4.719016994374945,-0.41894348370484513+4.778124552684677,-0.44022351411174876+4.835779291565071,-0.46517294753398053+4.891753674101716,-0.4936933199561353+4.945826794978997,-0.5256720744979853+4.9977852522924735,-0.5609830056250522+5.0474239897486886,-0.5994867572242106+5.094547105928688,-0.6410313725785888+5.138968627421411,-0.6854528940713114+5.18051324277579,-0.7325760102513104+5.219016994374947,-0.7822147477075272+5.2543279255020146,-0.8341732050210031+5.286306680043863,-0.8882463258982845+5.314827052466018,-0.9442207084349277+5.339776485888249,-1.0018754473153222+5.361056516295154,-1.0609830056250522+5.378583161128631,-1.1213101128351455+5.392287250728689,-1.1826186854142757+5.402114701314478,-1.2446667664356954+5.408026728428272,-1.307209480470687+5.409999999999999,-1.3699999999999997"/></g><g stroke-opacity="0.2" stroke="#0d0d0d" stroke-width="2.0e-2" fill="none"><polyline points="4.409999999999999,-0.37000000000000055+4.408026728428271,-0.432790519529314+4.402114701314478,-0.4953332335643039+4.392287250728688,-0.5573813145857254+4.378583161128631,-0.6186898871648547+4.361056516295152,-0.6790169943749471+4.339776485888251,-0.738124552684678+4.314827052466019,-0.7957792915650725+4.286306680043864,-0.8517536741017149+4.2543279255020146,-0.9058267949789971+4.219016994374948,-0.957785252292473+4.180513242775789,-1.0074239897486899+4.138968627421411,-1.0545471059286888+4.094547105928688,-1.0989686274214114+4.047423989748689,-1.1405132427757887+3.997785252292472,-1.1790169943749471+3.9458267949789967,-1.214327925502015+3.891753674101715,-1.246306680043864+3.8357792915650717,-1.2748270524660197+3.778124552684677,-1.2997764858882515+3.7190169943749467,-1.3210565162951542+3.6586898871648548,-1.3385831611286307+3.5973813145857236,-1.3522872507286885+3.5353332335643035,-1.362114701314478+3.472790519529313,-1.3680267284282714+3.41,-1.3699999999999997+3.3472094804706867,-1.3680267284282714+3.284666766435696,-1.362114701314478+3.2226186854142753,-1.3522872507286885+3.1613101128351446,-1.3385831611286307+3.1009830056250527,-1.3210565162951542+3.0418754473153222,-1.2997764858882515+2.9842207084349273,-1.2748270524660197+2.9282463258982845,-1.2463066800438631+2.8741732050210023,-1.214327925502015+2.822214747707527,-1.1790169943749471+2.7725760102513104,-1.1405132427757896+2.725452894071311,-1.0989686274214114+2.6810313725785884,-1.0545471059286888+2.6394867572242102,-1.0074239897486899+2.6009830056250527,-0.9577852522924739+2.565672074497984,-0.9058267949789971+2.5336933199561353,-0.8517536741017149+2.5051729475339806,-0.7957792915650734+2.480223514111748,-0.738124552684678+2.4589434837048465,-0.6790169943749471+2.4414168388713686,-0.6186898871648547+2.4277127492713113,-0.5573813145857245+2.417885298685522,-0.4953332335643039+2.4119732715717284,-0.432790519529314+2.4099999999999997,-0.37000000000000055+2.4119732715717284,-0.30720948047068664+2.417885298685522,-0.24466676643569585+2.4277127492713113,-0.18261868541427528+2.4414168388713686,-0.12131011283514548+2.4589434837048465,-6.098300562505221e-2+2.480223514111748,-1.8754473153221873e-3+2.50517294753398,5.577929156507233e-2+2.5336933199561367,0.1117536741017151+2.565672074497984,0.16582679497899644+2.6009830056250527,0.2177852522924728+2.6394867572242102,0.26742398974868964+2.6810313725785884,0.3145471059286882+2.7254528940713114,0.3589686274214112+2.7725760102513104,0.40051324277578937+2.822214747707527,0.43901699437494734+2.8741732050210036,0.4743279255020152+2.9282463258982845,0.5063066800438634+2.9842207084349277,0.5348270524660195+3.0418754473153222,0.5597764858882512+3.1009830056250522,0.5810565162951535+3.1613101128351446,0.598583161128631+3.2226186854142753,0.6122872507286887+3.2846667664356954,0.6221147013144779+3.3472094804706867,0.6280267284282712+3.409999999999999,0.6299999999999999+3.4727905195293127,0.6280267284282712+3.5353332335643035,0.6221147013144779+3.597381314585723,0.6122872507286887+3.6586898871648548,0.598583161128631+3.7190169943749467,0.5810565162951535+3.7781245526846767,0.5597764858882512+3.835779291565071,0.5348270524660199+3.891753674101715,0.5063066800438634+3.9458267949789967,0.47432792550201475+3.997785252292472,0.43901699437494734+4.047423989748689,0.40051324277578937+4.094547105928688,0.3589686274214112+4.138968627421411,0.3145471059286886+4.180513242775789,0.26742398974868964+4.219016994374947,0.21778525229247325+4.2543279255020146,0.16582679497899688+4.286306680043864,0.1117536741017151+4.314827052466019,5.5779291565072775e-2+4.339776485888251,-1.8754473153221873e-3+4.361056516295152,-6.0983005625052655e-2+4.378583161128631,-0.12131011283514548+4.392287250728688,-0.18261868541427528+4.402114701314478,-0.2446667664356954+4.408026728428271,-0.30720948047068664+4.409999999999999,-0.36999999999999966"/></g><g stroke-opacity="0.5" stroke="#0d0d0d" stroke-width="5.0e-2" fill="none"><polyline points="3.41,-1.3699999999999997+3.410123367518339,-1.3542926826881794+3.4104934396342683,-1.338589240921872+3.411110125038029,-1.3228935492903573+3.4119732715717284,-1.307209480470687+3.413082666266872,-1.2915409042721548+3.414438035396919,-1.275891686681486+3.4160390445448194,-1.2602656889089547+3.417885298685522,-1.2446667664356954+3.4199763422834417,-1.2290987680624172+3.4223116594048624,-1.2135655349597694+3.4248906738452263,-1.1980708997205904+3.4277127492713113,-1.1826186854142757+3.430777189378234,-1.1672127046434873+3.4340832380612527,-1.1518567586034574+3.4376300796023234,-1.1365546361440946+3.441416838871369,-1.1213101128351455+3.445442581542202,-1.1061269500346271+3.449706314323057,-1.0910088939607703+3.454206985201669,-1.0759596747676965+3.4589434837048465,-1.0609830056250522+3.4639146411724537,-1.0460825818018509+3.4691192310457737,-1.031262079754709+3.4745559691701318,-1.0165251562207422+3.480223514111748,-1.0018754473153222+3.4861204674887127,-0.98731656763491+3.492245374316018,-0.97285210936522+3.4985967233645545,-0.9584856413948919+3.5051729475339797,-0.9442207084349277+3.5119724242393833,-0.9300608301440847+3.518993475811631,-0.9160095002604538+3.5262343699113066,-0.9020701857394271+3.5336933199561353,-0.8882463258982845+3.541368485561808,-0.8745413315675923+3.5492579729960565,-0.8609585842496288+3.557359835645908,-0.8475014352840513+3.565672074497984,-0.834173205021004+3.5741926386317298,-0.8209771820018683+3.5829194257254384,-0.8079166221478693+3.5918502825749767,-0.794994747956721+3.6009830056250527,-0.7822147477075272+3.6103153415129094,-0.7695797746741166+3.6198449876243095,-0.7570929463470235+3.62956959266167,-0.7447573436642947+3.6394867572242102,-0.7325760102513104+3.649594034399969,-0.7205519516698167+3.6598889303695397,-0.7086881346763483+3.6703689050213897,-0.6969874864902263+3.6810313725785884,-0.6854528940713114+3.6918737022368107,-0.6740872034076859+3.7028932188134522,-0.6628932188134526+3.7140872034076855,-0.6518737022368115+3.725452894071311,-0.6410313725785888+3.736987486490226,-0.6303689050213896+3.7486881346763474,-0.6198889303695405+3.7605519516698163,-0.6095940343999691+3.7725760102513104,-0.5994867572242106+3.7847573436642947,-0.5895695926616704+3.7970929463470227,-0.5798449876243095+3.8095797746741153,-0.570315341512909+3.822214747707527,-0.5609830056250522+3.8349947479567206,-0.5518502825749763+3.8479166221478693,-0.5429194257254379+3.8609771820018675,-0.5341926386317293+3.8741732050210036,-0.5256720744979844+3.887501435284051,-0.5173598356459084+3.9009585842496284,-0.5092579729960565+3.9145413315675928,-0.5013684855618084+3.9282463258982845,-0.4936933199561353+3.942070185739426,-0.4862343699113061+3.9560095002604525,-0.4789934758116323+3.970060830144084,-0.47197242423938457+3.9842207084349273,-0.46517294753398053+3.998485641394891,-0.45859672336455537+4.01285210936522,-0.4522453743160191+4.02731656763491,-0.4461204674887136+4.041875447315322,-0.44022351411174876+4.056525156220743,-0.4345559691701326+4.0712620797547086,-0.4291192310457741+4.0860825818018505,-0.42391464117245503+4.100983005625053,-0.41894348370484513+4.115959674767696,-0.4142069852016701+4.131008893960771,-0.4097063143230568+4.146126950034627,-0.40544258154220136+4.161310112835144,-0.4014168388713695+4.176554636144094,-0.39763007960232377+4.191856758603457,-0.39408323806125045+4.207212704643488,-0.39077718937823436+4.222618685414275,-0.3877127492713117+4.23807089972059,-0.3848906738452267+4.253565534959769,-0.38231165940486234+4.269098768062417,-0.379976342283443+4.284666766435696,-0.3778852986855221+4.300265688908954,-0.3760390445448203+4.315891686681486,-0.3744380353969201+4.331540904272154,-0.3730826662668725+4.347209480470687,-0.37197327157172877+4.362893549290357,-0.37111012503803+4.378589240921872,-0.37049343963426873+4.394292682688178,-0.3701233675183393+4.409999999999999,-0.37000000000000055"/></g><g stroke-opacity="0.5" fill-opacity="0.3" stroke="#0d0d0d" stroke-width="1.0e-2" fill="#0d0d0d"><path d="M 4.4100,-1.3700 L 3.41,-1.3700 A 1.0 1.0 -0.0 0 0 4.4100,-0.3700 L 4.4100,-1.3700"/></g><g></g><g fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="3.899999999999999" y="-3.309999999999999">False</text></g><g stroke-opacity="0.2" stroke="#0d0d0d" stroke-width="2.0e-2" fill="none"><polyline points="8.905,1.67743831624083+8.903026728428271,1.6146477967115165+8.897114701314477,1.5521050826765257+8.887287250728688,1.4900570016551051+8.87358316112863,1.4287484290759749+8.856056516295153,1.3684213218658825+8.83477648588825,1.309313763556152+8.80982705246602,1.251659024675757+8.781306680043864,1.1956846421391147+8.749327925502014,1.1416115212618334+8.714016994374946,1.0896530639483566+8.67551324277579,1.0400143264921402+8.633968627421412,0.9928912103121412+8.58954710592869,0.9484696888194182+8.54242398974869,0.9069250734650409+8.492785252292473,0.8684213218658825+8.440826794978996,0.8331103907388147+8.386753674101714,0.8011316361969665+8.330779291565072,0.7726112637748104+8.273124552684678,0.7476618303525786+8.214016994374946,0.7263817999456763+8.153689887164854,0.7088551551121989+8.092381314585724,0.6951510655121411+8.030333233564303,0.685323614926352+7.967790519529312,0.6794115878125582+7.904999999999998,0.67743831624083+7.842209480470686,0.6794115878125582+7.779666766435696,0.685323614926352+7.717618685414273,0.6951510655121411+7.656310112835143,0.7088551551121989+7.595983005625053,0.7263817999456763+7.536875447315322,0.7476618303525786+7.479220708434925,0.7726112637748104+7.423246325898283,0.8011316361969665+7.369173205021001,0.8331103907388151+7.317214747707526,0.8684213218658825+7.26757601025131,0.9069250734650409+7.220452894071311,0.9484696888194182+7.1760313725785885,0.9928912103121412+7.13448675722421,1.0400143264921402+7.095983005625051,1.0896530639483566+7.060672074497983,1.141611521261833+7.028693319956134,1.1956846421391147+7.00017294753398,1.251659024675757+6.9752235141117485,1.3093137635561516+6.953943483704846,1.3684213218658825+6.936416838871368,1.4287484290759749+6.922712749271309,1.4900570016551051+6.91288529868552,1.5521050826765257+6.906973271571728,1.6146477967115165+6.904999999999999,1.67743831624083+6.906973271571728,1.7402288357701434+6.91288529868552,1.8027715498051342+6.922712749271309,1.8648196308265548+6.936416838871368,1.9261282034056846+6.953943483704846,1.9864553106157776+6.9752235141117485,2.045562868925508+7.000172947533979,2.1032176078059024+7.028693319956134,2.1591919903425456+7.060672074497983,2.2132651112198265+7.09598300562505,2.265223568533303+7.13448675722421,2.3148623059895197+7.176031372578586,2.3619854221695182+7.220452894071311,2.4064069436622413+7.26757601025131,2.4479515590166194+7.317214747707526,2.486455310615778+7.369173205021001,2.5217662417428452+7.423246325898283,2.5537449962846934+7.479220708434926,2.5822653687068495+7.536875447315322,2.6072148021290813+7.59598300562505,2.6284948325359836+7.656310112835143,2.646021477369461+7.717618685414273,2.659725566969519+7.779666766435693,2.669553017555308+7.842209480470686,2.6754650446691013+7.904999999999998,2.67743831624083+7.967790519529312,2.6754650446691013+8.030333233564303,2.669553017555308+8.092381314585724,2.659725566969519+8.153689887164854,2.646021477369461+8.214016994374946,2.6284948325359836+8.273124552684676,2.6072148021290813+8.330779291565069,2.58226536870685+8.386753674101715,2.5537449962846934+8.440826794978996,2.521766241742845+8.492785252292473,2.486455310615778+8.54242398974869,2.4479515590166194+8.58954710592869,2.4064069436622413+8.633968627421412,2.3619854221695187+8.67551324277579,2.3148623059895197+8.714016994374946,2.2652235685333033+8.749327925502014,2.213265111219827+8.781306680043864,2.159191990342545+8.80982705246602,2.103217607805903+8.83477648588825,2.045562868925508+8.856056516295153,1.9864553106157776+8.87358316112863,1.9261282034056846+8.887287250728688,1.8648196308265548+8.897114701314477,1.8027715498051347+8.903026728428271,1.7402288357701432+8.905,1.6774383162408302"/></g><g stroke-opacity="0.2" stroke="#0d0d0d" stroke-width="2.0e-2" fill="none"><polyline points="7.904999999999998,2.67743831624083+7.90302672842827,2.6146477967115165+7.897114701314477,2.5521050826765257+7.887287250728688,2.490057001655105+7.8735831611286295,2.4287484290759753+7.856056516295151,2.3684213218658825+7.834776485888249,2.309313763556152+7.809827052466018,2.2516590246757575+7.781306680043864,2.1956846421391147+7.749327925502015,2.1416115212618334+7.714016994374947,2.089653063948357+7.675513242775789,2.04001432649214+7.633968627421411,1.9928912103121412+7.589547105928687,1.9484696888194184+7.542423989748688,1.906925073465041+7.492785252292471,1.8684213218658825+7.440826794978996,1.8331103907388149+7.386753674101714,1.8011316361969663+7.330779291565072,1.7726112637748104+7.273124552684676,1.7476618303525786+7.214016994374947,1.7263817999456768+7.1536898871648535,1.7088551551121989+7.092381314585724,1.6951510655121413+7.030333233564304,1.685323614926352+6.967790519529313,1.6794115878125584+6.904999999999999,1.67743831624083+6.842209480470686,1.6794115878125584+6.779666766435695,1.685323614926352+6.7176186854142745,1.6951510655121411+6.656310112835145,1.7088551551121989+6.595983005625052,1.7263817999456768+6.53687544731532,1.7476618303525786+6.4792207084349265,1.7726112637748104+6.423246325898284,1.801131636196967+6.369173205021003,1.833110390738815+6.317214747707527,1.8684213218658825+6.267576010251308,1.9069250734650407+6.220452894071311,1.9484696888194184+6.1760313725785885,1.9928912103121412+6.134486757224209,2.04001432649214+6.095983005625052,2.0896530639483566+6.060672074497985,2.141611521261833+6.028693319956136,2.1956846421391147+6.0001729475339785,2.251659024675757+5.975223514111747,2.309313763556152+5.953943483704846,2.3684213218658825+5.936416838871368,2.4287484290759753+5.9227127492713105,2.4900570016551056+5.912885298685522,2.5521050826765257+5.906973271571728,2.6146477967115165+5.904999999999998,2.67743831624083+5.906973271571728,2.7402288357701434+5.912885298685522,2.802771549805134+5.9227127492713105,2.8648196308265548+5.936416838871368,2.9261282034056846+5.953943483704846,2.986455310615778+5.975223514111747,3.045562868925508+6.0001729475339785,3.1032176078059024+6.028693319956136,3.159191990342545+6.060672074497984,3.2132651112198265+6.095983005625052,3.265223568533303+6.134486757224209,3.3148623059895197+6.176031372578588,3.3619854221695182+6.220452894071311,3.4064069436622413+6.267576010251308,3.4479515590166194+6.317214747707526,3.4864553106157774+6.369173205021003,3.5217662417428452+6.423246325898284,3.5537449962846934+6.479220708434927,3.5822653687068495+6.53687544731532,3.6072148021290813+6.595983005625052,3.6284948325359836+6.656310112835145,3.646021477369461+6.7176186854142745,3.659725566969519+6.779666766435695,3.669553017555308+6.842209480470686,3.6754650446691013+6.904999999999999,3.67743831624083+6.967790519529313,3.6754650446691013+7.030333233564304,3.669553017555308+7.092381314585724,3.659725566969519+7.1536898871648535,3.646021477369461+7.214016994374947,3.6284948325359836+7.273124552684675,3.6072148021290813+7.330779291565071,3.58226536870685+7.386753674101714,3.5537449962846934+7.440826794978996,3.521766241742845+7.492785252292471,3.4864553106157774+7.542423989748687,3.4479515590166194+7.589547105928686,3.4064069436622413+7.633968627421411,3.3619854221695187+7.675513242775789,3.3148623059895197+7.714016994374947,3.2652235685333033+7.749327925502014,3.213265111219827+7.781306680043864,3.159191990342545+7.809827052466018,3.103217607805903+7.834776485888249,3.045562868925508+7.856056516295151,2.9864553106157774+7.8735831611286295,2.9261282034056846+7.887287250728688,2.8648196308265548+7.897114701314477,2.8027715498051347+7.90302672842827,2.7402288357701434+7.904999999999998,2.6774383162408304"/></g><g stroke-opacity="0.5" stroke="#0d0d0d" stroke-width="5.0e-2" fill="none"><polyline points="6.904999999999999,1.67743831624083+6.90611012503803,1.6303318655311871+6.909438035396918,1.5833300029223158+6.914976342283441,1.5365370843032475+6.922712749271309,1.4900570016551056+6.932630079602323,1.4439929523849249+6.944706314323055,1.3984472102016006+6.958914641172453,1.3535208980426807+6.9752235141117485,1.309313763556152+6.993596723364554,1.2659239576357213+7.013993475811629,1.2234478165012832+7.036368485561809,1.1819796478084226+7.060672074497983,1.1416115212618334+7.086850282574976,1.1024330641975513+7.114844987624307,1.0645312625878538+7.144594034399967,1.0279902679106465+7.1760313725785885,0.9928912103121412+7.209087203407686,0.9593120184776414+7.243688134676345,0.9273272466103704+7.279757343664293,0.8970079089025003+7.317214747707526,0.8684213218658825+7.355977182001866,0.8416309548725609+7.3959585842496285,0.8166962892368863+7.437070185739426,0.7936726861521364+7.479220708434925,0.7726112637748108+7.52231656763491,0.7535587837295434+7.566262079754706,0.7365575472866044+7.6109596747676935,0.7216453014424999+7.656310112835143,0.7088551551121989+7.702212704643485,0.6982155056190642+7.748565534959766,0.6897499756456922+7.7952656889089535,0.6834773607856506+7.842209480470686,0.6794115878125582+7.889292682688177,0.6775616837591705+7.936410759078127,0.6779317558750981+7.983459095727845,0.6805209825077019+8.030333233564303,0.685323614926352+8.076929100279408,0.6923289900860561+8.12314324139654,0.7015215543020825+8.16887304996537,0.7128808977830317+8.214016994374946,0.7263817999456763+8.258474843779256,0.7419942854109625+8.30214789063478,0.7596836905568489+8.344939169855914,0.7794107404802144+8.386753674101715,0.8011316361969665+8.427498564715947,0.8247981518867373+8.46708337785213,0.8503577419662682+8.505420225325883,0.8777536577537393+8.54242398974869,0.9069250734650405+8.578012513509773,0.9378072212622204+8.612106781186547,0.970331535054282+8.644631094978608,1.0044258027310562+8.67551324277579,1.0400143264921402+8.704684658487091,1.077018090914946+8.732080574274558,1.1153549383886991+8.757640164354092,1.1549397515248812+8.781306680043864,1.1956846421391147+8.803027575760614,1.2374991463849145+8.82275462568398,1.2802904256060494+8.840444030829866,1.323963472461573+8.856056516295153,1.3684213218658825+8.869557418457797,1.4135652662754574+8.880916761938748,1.4592950748442868+8.890109326154773,1.5055092159614203+8.897114701314477,1.5521050826765261+8.901917333733127,1.5989792205129842+8.90450656036573,1.6460275571627014+8.90487663248166,1.6931456335526511+8.903026728428271,1.7402288357701428+8.898960955455179,1.7871726273318753+8.892688340595138,1.8338727812810616+8.884222810621766,1.880225611597342+8.87358316112863,1.9261282034056848+8.86079301479833,1.9714786414731347+8.845880768954226,2.016176236486121+8.828879532511285,2.06012174860592+8.80982705246602,2.1032176078059015+8.788765630088692,2.145368130501403+8.765742027003943,2.1864797319912013+8.74080736136827,2.226461134238961+8.714016994374946,2.265223568533303+8.685430407338329,2.3026809725765354+8.65511106963046,2.3387501815644813+8.623126297763188,2.373351112833144+8.589547105928688,2.4064069436622417+8.554448048330183,2.437844281840861+8.517907053652976,2.46759332861652+8.480005252043279,2.495588033665853+8.440826794978996,2.5217662417428452+8.400458668432407,2.5460698306790213+8.358990499739546,2.5684448404291977+8.316514358605108,2.5888415928762756+8.273124552684678,2.6072148021290813+8.228917418198147,2.623523675068375+8.18399110603923,2.637732001917773+8.138445363855904,2.6498082366385067+8.092381314585724,2.6597255669695183+8.045901231937583,2.6674619739573875+7.999108313318512,2.67300028084391+7.952106450709641,2.6763281912028+7.904999999999998,2.67743831624083"/></g><g stroke-opacity="0.5" fill-opacity="0.3" stroke="#0d0d0d" stroke-width="1.0e-2" fill="#0d0d0d"><path d="M 7.9050,1.6774 L 6.9050,1.6774 A 1.0 1.0 -0.0 1 1 7.9050,2.6774 L 7.9050,1.6774"/></g><g stroke-opacity="0.2" stroke="#0d0d0d" stroke-width="2.0e-2" fill="none"><polyline points="8.91987663248166,-1.3774383162408301+8.917903360909932,-1.4402288357701436+8.911991333796138,-1.5027715498051353+8.90216388321035,-1.564819630826555+8.888459793610291,-1.6261282034056852+8.870933148776814,-1.6864553106157785+8.849653118369911,-1.7455628689255085+8.82470368494768,-1.803217607805903+8.796183312525523,-1.8591919903425462+8.764204557983675,-1.9132651112198267+8.728893626856609,-1.9652235685333035+8.69038987525745,-2.0148623059895203+8.648845259903071,-2.0619854221695193+8.604423738410347,-2.106406943662242+8.557300622230349,-2.14795155901662+8.507661884774134,-2.1864553106157785+8.455703427460657,-2.2217662417428454+8.401630306583375,-2.2537449962846945+8.345655924046733,-2.28226536870685+8.288001185166339,-2.307214802129082+8.228893626856607,-2.3284948325359838+8.168566519646514,-2.346021477369461+8.107257947067385,-2.359725566969519+8.045209866045964,-2.3695530175553086+7.982667152010974,-2.375465044669102+7.91987663248166,-2.37743831624083+7.857086112952347,-2.375465044669102+7.794543398917356,-2.3695530175553086+7.7324953178959355,-2.359725566969519+7.6711867453168034,-2.346021477369461+7.610859638106713,-2.3284948325359838+7.55175207979698,-2.307214802129082+7.494097340916587,-2.28226536870685+7.438122958379942,-2.2537449962846945+7.384049837502664,-2.2217662417428454+7.332091380189185,-2.1864553106157785+7.282452642732968,-2.14795155901662+7.235329526552969,-2.106406943662242+7.1909080050602485,-2.0619854221695193+7.14936338970587,-2.0148623059895203+7.110859638106713,-1.9652235685333035+7.075548706979645,-1.9132651112198276+7.043569952437796,-1.8591919903425462+7.0150495800156385,-1.803217607805903+6.9901001465934085,-1.7455628689255085+6.968820116186505,-1.6864553106157785+6.951293471353029,-1.6261282034056852+6.9375893817529715,-1.564819630826555+6.927761931167183,-1.5027715498051344+6.9218499040533885,-1.4402288357701436+6.9198766324816585,-1.377438316240831+6.9218499040533885,-1.3146477967115167+6.927761931167183,-1.2521050826765268+6.9375893817529715,-1.1900570016551053+6.951293471353029,-1.128748429075976+6.968820116186505,-1.0684213218658827+6.9901001465934085,-1.0093137635561527+7.0150495800156385,-0.9516590246757581+7.043569952437797,-0.8956846421391149+7.075548706979645,-0.8416115212618336+7.110859638106713,-0.7896530639483577+7.14936338970587,-0.7400143264921408+7.1909080050602485,-0.6928912103121418+7.23532952655297,-0.6484696888194192+7.282452642732968,-0.6069250734650411+7.332091380189185,-0.5684213218658836+7.384049837502664,-0.5331103907388157+7.438122958379942,-0.5011316361969658+7.494097340916587,-0.472611263774811+7.55175207979698,-0.4476618303525792+7.610859638106712,-0.4263817999456756+7.671186745316806,-0.40885515511219905+7.7324953178959355,-0.3951510655121413+7.794543398917355,-0.3853236149263526+7.857086112952347,-0.37941158781255924+7.91987663248166,-0.37743831624083013+7.982667152010971,-0.37941158781255924+8.045209866045964,-0.3853236149263526+8.107257947067383,-0.3951510655121413+8.168566519646514,-0.40885515511219905+8.228893626856607,-0.4263817999456756+8.288001185166337,-0.4476618303525792+8.345655924046731,-0.4726112637748101+8.401630306583375,-0.5011316361969658+8.455703427460657,-0.5331103907388157+8.507661884774132,-0.5684213218658836+8.557300622230349,-0.6069250734650411+8.604423738410347,-0.6484696888194192+8.648845259903071,-0.6928912103121418+8.69038987525745,-0.7400143264921408+8.728893626856609,-0.7896530639483568+8.764204557983675,-0.8416115212618336+8.796183312525523,-0.8956846421391158+8.82470368494768,-0.9516590246757572+8.849653118369911,-1.0093137635561527+8.870933148776814,-1.0684213218658827+8.888459793610291,-1.128748429075976+8.90216388321035,-1.1900570016551053+8.911991333796138,-1.2521050826765259+8.917903360909932,-1.3146477967115175+8.91987663248166,-1.3774383162408301"/></g><g stroke-opacity="0.2" stroke="#0d0d0d" stroke-width="2.0e-2" fill="none"><polyline points="7.91987663248166,-0.37743831624083013+7.917903360909932,-0.4402288357701436+7.911991333796136,-0.5027715498051353+7.902163883210347,-0.564819630826555+7.888459793610291,-0.6261282034056852+7.870933148776814,-0.6864553106157785+7.849653118369911,-0.7455628689255085+7.824703684947679,-0.803217607805903+7.796183312525522,-0.8591919903425462+7.764204557983673,-0.9132651112198267+7.728893626856606,-0.9652235685333035+7.690389875257449,-1.0148623059895203+7.64884525990307,-1.0619854221695193+7.604423738410349,-1.106406943662242+7.55730062223035,-1.14795155901662+7.507661884774134,-1.1864553106157785+7.455703427460655,-1.2217662417428454+7.401630306583374,-1.2537449962846945+7.345655924046731,-1.2822653687068502+7.288001185166339,-1.307214802129082+7.228893626856607,-1.3284948325359838+7.168566519646513,-1.3460214773694612+7.107257947067383,-1.359725566969519+7.045209866045964,-1.3695530175553086+6.982667152010974,-1.375465044669102+6.9198766324816585,-1.3774383162408301+6.857086112952347,-1.375465044669102+6.794543398917354,-1.3695530175553086+6.732495317895934,-1.359725566969519+6.671186745316805,-1.3460214773694612+6.610859638106711,-1.3284948325359838+6.551752079796982,-1.307214802129082+6.494097340916586,-1.2822653687068502+6.438122958379944,-1.2537449962846945+6.384049837502662,-1.2217662417428454+6.332091380189187,-1.1864553106157785+6.28245264273297,-1.14795155901662+6.235329526552971,-1.106406943662242+6.190908005060247,-1.0619854221695193+6.149363389705871,-1.0148623059895203+6.110859638106711,-0.9652235685333035+6.075548706979644,-0.9132651112198276+6.043569952437795,-0.8591919903425462+6.01504958001564,-0.803217607805903+5.9901001465934085,-0.7455628689255085+5.968820116186507,-0.6864553106157785+5.951293471353029,-0.6261282034056852+5.93758938175297,-0.564819630826555+5.92776193116718,-0.5027715498051353+5.9218499040533885,-0.4402288357701436+5.91987663248166,-0.37743831624083013+5.9218499040533885,-0.3146477967115171+5.92776193116718,-0.2521050826765263+5.93758938175297,-0.19005700165510575+5.951293471353029,-0.12874842907597595+5.968820116186507,-6.842132186588268e-2+5.9901001465934085,-9.313763556152654e-3+6.01504958001564,4.8340975324241864e-2+6.043569952437795,0.10431535786088464+6.075548706979644,0.15838847873816597+6.110859638106711,0.21034693605164234+6.14936338970587,0.25998567350785917+6.190908005060247,0.3071087896878577+6.235329526552971,0.35153031118058076+6.28245264273297,0.3930749265349589+6.332091380189187,0.4315786781341169+6.384049837502662,0.4668896092611847+6.438122958379945,0.4988683638030329+6.494097340916586,0.527388736225189+6.551752079796982,0.5523381696474208+6.610859638106711,0.5736182000543231+6.671186745316805,0.5911448448878005+6.732495317895934,0.6048489344878583+6.794543398917353,0.6146763850736474+6.857086112952347,0.6205884121874408+6.9198766324816585,0.6225616837591694+6.982667152010973,0.6205884121874408+7.045209866045964,0.6146763850736474+7.1072579470673825,0.6048489344878583+7.168566519646513,0.5911448448878005+7.228893626856607,0.5736182000543231+7.288001185166338,0.5523381696474208+7.3456559240467305,0.5273887362251894+7.401630306583374,0.4988683638030329+7.455703427460655,0.4668896092611843+7.507661884774131,0.4315786781341169+7.55730062223035,0.3930749265349589+7.604423738410349,0.35153031118058076+7.64884525990307,0.30710878968785815+7.690389875257449,0.25998567350785917+7.728893626856605,0.21034693605164279+7.764204557983673,0.15838847873816642+7.796183312525522,0.10431535786088464+7.824703684947679,4.834097532424231e-2+7.849653118369911,-9.313763556152654e-3+7.870933148776814,-6.842132186588312e-2+7.888459793610291,-0.12874842907597595+7.902163883210347,-0.19005700165510575+7.911991333796136,-0.25210508267652587+7.917903360909932,-0.3146477967115171+7.91987663248166,-0.37743831624083013"/></g><g stroke-opacity="0.5" stroke="#0d0d0d" stroke-width="5.0e-2" fill="none"><polyline points="6.9198766324816585,-1.3774383162408301+6.872770181772015,-1.3763281912028007+6.825768319163144,-1.3730002808439106+6.778975400544077,-1.3674619739573877+6.732495317895934,-1.359725566969519+6.686431268625753,-1.349808236638507+6.640885526442429,-1.3377320019177739+6.595959214283511,-1.3235236750683756+6.551752079796982,-1.307214802129082+6.508362273876552,-1.2888415928762753+6.4658861327421135,-1.2684448404291984+6.424417964049251,-1.2460698306790223+6.384049837502662,-1.2217662417428463+6.344871380438382,-1.1955880336658544+6.306969578828682,-1.1675933286165212+6.270428584151476,-1.1378442818408616+6.235329526552971,-1.106406943662242+6.201750334718471,-1.0733511128331448+6.1697655628512,-1.0387501815644824+6.139446225143328,-1.002680972576536+6.110859638106711,-0.9652235685333035+6.08406927111339,-0.9264611342389624+6.059134605477714,-0.8864797319912019+6.036111002392965,-0.8453681305014036+6.01504958001564,-0.803217607805903+5.995997099970373,-0.7601217486059206+5.978995863527435,-0.7161762364861217+5.964083617683329,-0.6714786414731342+5.951293471353029,-0.6261282034056852+5.940653821859894,-0.5802256115973434+5.93218829188652,-0.5338727812810613+5.925915677026481,-0.48717262733187594+5.9218499040533885,-0.4402288357701436+5.919999999999999,-0.3931456335526513+5.920370072115927,-0.3460275571627025+5.92295929874853,-0.2989792205129853+5.92776193116718,-0.2521050826765263+5.934767306326886,-0.20550921596142135+5.943959870542911,-0.1592950748442883+5.95531921402386,-0.1135652662754576+5.968820116186507,-6.842132186588312e-2+5.9844326016517915,-2.39634724615736e-2+6.002122006797679,1.970957439395038e-2+6.021849056721044,6.25008536150844e-2+6.043569952437795,0.10431535786088464+6.067236468127568,0.14506024847511823+6.092796058207097,0.18464506161130112+6.12019197399457,0.22298190908505333+6.14936338970587,0.25998567350785917+6.180245537503049,0.29557419726894274+6.212769851295112,0.3296684649457169+6.246864118971887,0.362192778737779+6.28245264273297,0.3930749265349589+6.319456407155776,0.4222463422462597+6.357793254629527,0.44964225803373115+6.397378067765709,0.47520184811326205+6.438122958379945,0.4988683638030329+6.4799374626257435,0.520589259519785+6.522728741846878,0.5403163094431505+6.566401788702401,0.5580057145890369+6.610859638106711,0.5736182000543231+6.656003582516288,0.5871191022169677+6.701733391085117,0.5984784456979164+6.747947532202249,0.6076710099139433+6.794543398917354,0.6146763850736474+6.841417536753815,0.6194790174922975+6.88846587340353,0.6220682441249008+6.93558394979348,0.6224383162408302+6.982667152010973,0.6205884121874408+7.029610943572705,0.6165226392143492+7.07631109752189,0.6102500243543072+7.12266392783817,0.6017844943809352+7.168566519646513,0.5911448448878005+7.213916957713963,0.5783546985574994+7.25861455272695,0.563442452713395+7.30256006484675,0.5464412162704559+7.3456559240467305,0.5273887362251894+7.387806446742234,0.506327313847863+7.428918048232031,0.48330371076311307+7.468899450479789,0.45836904512744026+7.507661884774131,0.4315786781341169+7.545119288817364,0.4029920910974991+7.581188497805309,0.37267275338962946+7.615789429073974,0.34068798152235846+7.64884525990307,0.3071087896878577+7.680282598081689,0.27200973208935286+7.710031644857349,0.23546873741214602+7.738026349906683,0.1975669358024481+7.764204557983674,0.15838847873816553+7.788508146919852,0.1180203521915768+7.810883156670026,7.655218349871662e-2+7.8312799091171055,3.407604236427764e-2+7.849653118369911,-9.313763556152654e-3+7.865961991309204,-5.35208980426809e-2+7.880170318158601,-9.844721020160074e-2+7.892246552879336,-0.1439929523849255+7.902163883210347,-0.19005700165510575+7.909900290198216,-0.2365370843032477+7.915438597084738,-0.28333000292231647+7.91876650744363,-0.33033186553118776+7.91987663248166,-0.37743831624083013"/></g><g stroke-opacity="0.5" fill-opacity="0.3" stroke="#0d0d0d" stroke-width="1.0e-2" fill="#0d0d0d"><path d="M 7.9199,-1.3774 L 6.9199,-1.3774 A 1.0 1.0 -0.0 1 0 7.9199,-0.3774 L 7.9199,-1.3774"/></g><g></g><g fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="7.394999999999998" y="-3.3174383162408296">True</text></g><g></g><g fill-opacity="1.0" font-size="0.6" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="5.499999999999998" y="-4.39487663248166">Large</text></g></svg>
+ other/arrow.svg view
@@ -0,0 +1,23 @@+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.87 -0.5531722096956032 1.6775 1.0994222096956032" width="457.74043453182077" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="5.0e-2" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.9019165727170236" width="1.4445949676731749" x="-0.6945949676731749" y="-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.41499436302142045">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.3248027057497182">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.23461104847801584">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.14441939120631336">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="5.4227733934611055e-2">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-3.596392333709142e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.12615558060879384">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.21634723788049615">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.30653889515219834">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.3967305524239009">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.4869222096956032">0.5</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><g transform="rotate(-90.0, -0.7201161454354009, 0.40191657271702363)"><polyline points="-0.7201161454354009,0.41691657271702365+-0.7201161454354009,0.3869165727170236"/></g><g transform="rotate(-90.0, -0.7201161454354009, 0.3117249154453213)"><polyline points="-0.7201161454354009,0.32672491544532134+-0.7201161454354009,0.2967249154453213"/></g><g transform="rotate(-90.0, -0.7201161454354009, 0.2215332581736189)"><polyline points="-0.7201161454354009,0.23653325817361892+-0.7201161454354009,0.2065332581736189"/></g><g transform="rotate(-90.0, -0.7201161454354009, 0.13134160090191654)"><polyline points="-0.7201161454354009,0.14634160090191656+-0.7201161454354009,0.11634160090191654"/></g><g transform="rotate(-90.0, -0.7201161454354009, 4.114994363021418e-2)"><polyline points="-0.7201161454354009,5.614994363021418e-2+-0.7201161454354009,2.614994363021418e-2"/></g><g transform="rotate(-90.0, -0.7201161454354009, -4.904171364148813e-2)"><polyline points="-0.7201161454354009,-3.404171364148813e-2+-0.7201161454354009,-6.404171364148813e-2"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.13923337091319066)"><polyline points="-0.7201161454354009,-0.12423337091319066+-0.7201161454354009,-0.15423337091319067"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.22942502818489297)"><polyline points="-0.7201161454354009,-0.21442502818489295+-0.7201161454354009,-0.24442502818489298"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.3196166854565953)"><polyline points="-0.7201161454354009,-0.30461668545659526+-0.7201161454354009,-0.3346166854565953"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.4098083427282976)"><polyline points="-0.7201161454354009,-0.39480834272829757+-0.7201161454354009,-0.4248083427282976"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.5)"><polyline points="-0.7201161454354009,-0.485+-0.7201161454354009,-0.515"/></g></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.9019165727170236" width="3.8522532471284565e-3" x="-0.7080778540381245" y="-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.6945949676731749" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.5501354709058575" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.40567597413853984" y="0.5">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.2612164773712222" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.11675698060390471" y="0.5">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="2.770251616341257e-2" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.1721620129307302" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.3166215096980478" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4610810064653652" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.6055405032326826" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="0.5">0.5</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><polyline points="-0.6945949676731749,0.44081736189402476+-0.6945949676731749,0.41081736189402474"/><polyline points="-0.5501354709058575,0.44081736189402476+-0.5501354709058575,0.41081736189402474"/><polyline points="-0.40567597413853984,0.44081736189402476+-0.40567597413853984,0.41081736189402474"/><polyline points="-0.2612164773712222,0.44081736189402476+-0.2612164773712222,0.41081736189402474"/><polyline points="-0.11675698060390471,0.44081736189402476+-0.11675698060390471,0.41081736189402474"/><polyline points="2.770251616341257e-2,0.44081736189402476+2.770251616341257e-2,0.41081736189402474"/><polyline points="0.1721620129307302,0.44081736189402476+0.1721620129307302,0.41081736189402474"/><polyline points="0.3166215096980478,0.44081736189402476+0.3166215096980478,0.41081736189402474"/><polyline points="0.4610810064653652,0.44081736189402476+0.4610810064653652,0.41081736189402474"/><polyline points="0.6055405032326826,0.44081736189402476+0.6055405032326826,0.41081736189402474"/><polyline points="0.75,0.44081736189402476+0.75,0.41081736189402474"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="3.6076662908680612e-3" width="1.4445949676731749" x="-0.6945949676731749" y="0.41093573844419395"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-41.70388402745369, -0.6223652192895162, 0.3568207440811725)"><path transform="translate(-0.6223652192895162, 0.3568207440811725) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-40.703991576050946, -0.6223652192895162, 0.2666290868094702)"><path transform="translate(-0.6223652192895162, 0.2666290868094702) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-39.33034350353968, -0.6223652192895162, 0.17643742953776775)"><path transform="translate(-0.6223652192895162, 0.17643742953776775) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-37.32821468040517, -0.6223652192895162, 8.624577226606533e-2)"><path transform="translate(-0.6223652192895162, 8.624577226606533e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-34.14934249468909, -0.6223652192895162, -3.945885005637084e-3)"><path transform="translate(-0.6223652192895162, -3.945885005637084e-3) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-28.38240378414633, -0.6223652192895162, -9.413754227733939e-2)"><path transform="translate(-0.6223652192895162, -9.413754227733939e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-15.274030281041826, -0.6223652192895162, -0.1843291995490418)"><path transform="translate(-0.6223652192895162, -0.1843291995490418) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(24.917115262331567, -0.6223652192895162, -0.2745208568207441)"><path transform="translate(-0.6223652192895162, -0.2745208568207441) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(85.25243231067934, -0.6223652192895162, -0.36471251409244654)"><path transform="translate(-0.6223652192895162, -0.36471251409244654) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(107.439663564573, -0.6223652192895162, -0.4549041713641486)"><path transform="translate(-0.6223652192895162, -0.4549041713641486) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-46.89925433618114, -0.47790572252219865, 0.3568207440811725)"><path transform="translate(-0.47790572252219865, 0.3568207440811725) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-45.41219274140233, -0.47790572252219865, 0.2666290868094702)"><path transform="translate(-0.47790572252219865, 0.2666290868094702) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-43.26655332833368, -0.47790572252219865, 0.17643742953776775)"><path transform="translate(-0.47790572252219865, 0.17643742953776775) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-39.913529548149384, -0.47790572252219865, 8.624577226606533e-2)"><path transform="translate(-0.47790572252219865, 8.624577226606533e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-33.99914492987854, -0.47790572252219865, -3.945885005637084e-3)"><path transform="translate(-0.47790572252219865, -3.945885005637084e-3) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-21.321176713227626, -0.47790572252219865, -9.413754227733939e-2)"><path transform="translate(-0.47790572252219865, -9.413754227733939e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(13.364611169993305, -0.47790572252219865, -0.1843291995490418)"><path transform="translate(-0.47790572252219865, -0.1843291995490418) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(70.26081916410517, -0.47790572252219865, -0.2745208568207441)"><path transform="translate(-0.47790572252219865, -0.2745208568207441) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(96.08437785000453, -0.47790572252219865, -0.36471251409244654)"><path transform="translate(-0.47790572252219865, -0.36471251409244654) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(106.05509143504601, -0.47790572252219865, -0.4549041713641486)"><path transform="translate(-0.47790572252219865, -0.4549041713641486) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-53.3543508353797, -0.33344622575488114, 0.3568207440811725)"><path transform="translate(-0.33344622575488114, 0.3568207440811725) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-51.23448009554123, -0.33344622575488114, 0.2666290868094702)"><path transform="translate(-0.33344622575488114, 0.2666290868094702) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-48.01278750418334, -0.33344622575488114, 0.17643742953776775)"><path transform="translate(-0.33344622575488114, 0.17643742953776775) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-42.58049078334366, -0.33344622575488114, 8.624577226606533e-2)"><path transform="translate(-0.33344622575488114, 8.624577226606533e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-31.827446576673108, -0.33344622575488114, -3.945885005637084e-3)"><path transform="translate(-0.33344622575488114, -3.945885005637084e-3) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-5.440332031005506, -0.33344622575488114, -9.413754227733939e-2)"><path transform="translate(-0.33344622575488114, -9.413754227733939e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(47.1210963966615, -0.33344622575488114, -0.1843291995490418)"><path transform="translate(-0.33344622575488114, -0.1843291995490418) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(80.53767779197439, -0.33344622575488114, -0.2745208568207441)"><path transform="translate(-0.33344622575488114, -0.2745208568207441) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(93.73139699916045, -0.33344622575488114, -0.36471251409244654)"><path transform="translate(-0.33344622575488114, -0.36471251409244654) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(100.06068979532297, -0.33344622575488114, -0.4549041713641486)"><path transform="translate(-0.33344622575488114, -0.4549041713641486) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-61.480951599569366, -0.18898672898756352, 0.3568207440811725)"><path transform="translate(-0.18898672898756352, 0.3568207440811725) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-58.67008724249424, -0.18898672898756352, 0.2666290868094702)"><path transform="translate(-0.18898672898756352, 0.2666290868094702) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-54.17002461487118, -0.18898672898756352, 0.17643742953776775)"><path transform="translate(-0.18898672898756352, 0.17643742953776775) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-45.97102193107917, -0.18898672898756352, 8.624577226606533e-2)"><path transform="translate(-0.18898672898756352, 8.624577226606533e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-27.930948956080037, -0.18898672898756352, -3.945885005637084e-3)"><path transform="translate(-0.18898672898756352, -3.945885005637084e-3) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(14.445942279113961, -0.18898672898756352, -9.413754227733939e-2)"><path transform="translate(-0.18898672898756352, -9.413754227733939e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(58.95370855020484, -0.18898672898756352, -0.1843291995490418)"><path transform="translate(-0.18898672898756352, -0.1843291995490418) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(78.38768602098031, -0.18898672898756352, -0.2745208568207441)"><path transform="translate(-0.18898672898756352, -0.2745208568207441) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(87.0721562906961, -0.18898672898756352, -0.36471251409244654)"><path transform="translate(-0.18898672898756352, -0.36471251409244654) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(91.775265785145, -0.18898672898756352, -0.4549041713641486)"><path transform="translate(-0.18898672898756352, -0.4549041713641486) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-71.63155263230772, -4.452723222024613e-2, 0.3568207440811725)"><path transform="translate(-4.452723222024613e-2, 0.3568207440811725) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-68.30375886013567, -4.452723222024613e-2, 0.2666290868094702)"><path transform="translate(-4.452723222024613e-2, 0.2666290868094702) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-62.713434447769245, -4.452723222024613e-2, 0.17643742953776775)"><path transform="translate(-4.452723222024613e-2, 0.17643742953776775) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-51.74335201662478, -4.452723222024613e-2, 8.624577226606533e-2)"><path transform="translate(-4.452723222024613e-2, 8.624577226606533e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-25.463345061871607, -4.452723222024613e-2, -3.945885005637084e-3)"><path transform="translate(-4.452723222024613e-2, -3.945885005637084e-3) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(25.352317626939044, -4.452723222024613e-2, -9.413754227733939e-2)"><path transform="translate(-4.452723222024613e-2, -9.413754227733939e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(58.539020075643705, -4.452723222024613e-2, -0.1843291995490418)"><path transform="translate(-4.452723222024613e-2, -0.1843291995490418) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(72.03510627877053, -4.452723222024613e-2, -0.2745208568207441)"><path transform="translate(-4.452723222024613e-2, -0.2745208568207441) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(78.57121322367863, -4.452723222024613e-2, -0.36471251409244654)"><path transform="translate(-4.452723222024613e-2, -0.36471251409244654) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(82.33198654554482, -4.452723222024613e-2, -0.4549041713641486)"><path transform="translate(-4.452723222024613e-2, -0.4549041713641486) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-83.72582919707884, 9.993226454707138e-2, 0.3568207440811725)"><path transform="translate(9.993226454707138e-2, 0.3568207440811725) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-80.37960270065743, 9.993226454707138e-2, 0.2666290868094702)"><path transform="translate(9.993226454707138e-2, 0.2666290868094702) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-74.55784459620769, 9.993226454707138e-2, 0.17643742953776775)"><path transform="translate(9.993226454707138e-2, 0.17643742953776775) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-62.392645475723924, 9.993226454707138e-2, 8.624577226606533e-2)"><path transform="translate(9.993226454707138e-2, 8.624577226606533e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-30.325850500388558, 9.993226454707138e-2, -3.945885005637084e-3)"><path transform="translate(9.993226454707138e-2, -3.945885005637084e-3) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(25.463345061871618, 9.993226454707138e-2, -9.413754227733939e-2)"><path transform="translate(9.993226454707138e-2, -9.413754227733939e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(53.34825221466397, 9.993226454707138e-2, -0.1843291995490418)"><path transform="translate(9.993226454707138e-2, -0.1843291995490418) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(64.18052078566551, 9.993226454707138e-2, -0.2745208568207441)"><path transform="translate(9.993226454707138e-2, -0.2745208568207441) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(69.52530867630297, 9.993226454707138e-2, -0.36471251409244654)"><path transform="translate(9.993226454707138e-2, -0.36471251409244654) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(72.65691141186669, 9.993226454707138e-2, -0.4549041713641486)"><path transform="translate(9.993226454707138e-2, -0.4549041713641486) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-96.84875031477206, 0.244391761314389, 0.3568207440811725)"><path transform="translate(0.244391761314389, 0.3568207440811725) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-94.10747809603637, 0.244391761314389, 0.2666290868094702)"><path transform="translate(0.244391761314389, 0.2666290868094702) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-89.31668823842175, 0.244391761314389, 0.17643742953776775)"><path transform="translate(0.244391761314389, 0.17643742953776775) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-79.0898362236076, 0.244391761314389, 8.624577226606533e-2)"><path transform="translate(0.244391761314389, 8.624577226606533e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-48.89810671661513, 0.244391761314389, -3.945885005637084e-3)"><path transform="translate(0.244391761314389, -3.945885005637084e-3) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(16.431113233075703, 0.244391761314389, -9.413754227733939e-2)"><path transform="translate(0.244391761314389, -9.413754227733939e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(45.97102193107918, 0.244391761314389, -0.1843291995490418)"><path transform="translate(0.244391761314389, -0.1843291995490418) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(56.03475263569897, 0.244391761314389, -0.2745208568207441)"><path transform="translate(0.244391761314389, -0.2745208568207441) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(60.77115498628979, 0.244391761314389, -0.36471251409244654)"><path transform="translate(0.244391761314389, -0.36471251409244654) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(63.488583985830445, 0.244391761314389, -0.4549041713641486)"><path transform="translate(0.244391761314389, -0.4549041713641486) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-109.476575498932, 0.3888512580817063, 0.3568207440811725)"><path transform="translate(0.3888512580817063, 0.3568207440811725) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-107.65012421993012, 0.3888512580817063, 0.2666290868094702)"><path transform="translate(0.3888512580817063, 0.2666290868094702) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-104.57421619803874, 0.3888512580817063, 0.17643742953776775)"><path transform="translate(0.3888512580817063, 0.17643742953776775) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-98.3658861240326, 0.3888512580817063, 8.624577226606533e-2)"><path transform="translate(0.3888512580817063, 8.624577226606533e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-80.5376777919744, 0.3888512580817063, -3.945885005637084e-3)"><path transform="translate(0.3888512580817063, -3.945885005637084e-3) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-10.304846468766057, 0.3888512580817063, -9.413754227733939e-2)"><path transform="translate(0.3888512580817063, -9.413754227733939e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(36.3843518158359, 0.3888512580817063, -0.1843291995490418)"><path transform="translate(0.3888512580817063, -0.1843291995490418) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(48.01278750418334, 0.3888512580817063, -0.2745208568207441)"><path transform="translate(0.3888512580817063, -0.2745208568207441) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(52.73359809902285, 0.3888512580817063, -0.36471251409244654)"><path transform="translate(0.3888512580817063, -0.36471251409244654) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(55.2568198416964, 0.3888512580817063, -0.4549041713641486)"><path transform="translate(0.3888512580817063, -0.4549041713641486) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-120.39004059367852, 0.5333107548490243, 0.3568207440811725)"><path transform="translate(0.5333107548490243, 0.3568207440811725) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-119.3548748641938, 0.5333107548490243, 0.2666290868094702)"><path transform="translate(0.5333107548490243, 0.2666290868094702) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-117.72207677286723, 0.5333107548490243, 0.17643742953776775)"><path transform="translate(0.5333107548490243, 0.17643742953776775) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-114.77180709318333, 0.5333107548490243, 8.624577226606533e-2)"><path transform="translate(0.5333107548490243, 8.624577226606533e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-107.91023110297346, 0.5333107548490243, -3.945885005637084e-3)"><path transform="translate(0.5333107548490243, -3.945885005637084e-3) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-78.88016563239884, 0.5333107548490243, -9.413754227733939e-2)"><path transform="translate(0.5333107548490243, -9.413754227733939e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(18.07717429682483, 0.5333107548490243, -0.1843291995490418)"><path transform="translate(0.5333107548490243, -0.1843291995490418) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(39.57646251047537, 0.5333107548490243, -0.2745208568207441)"><path transform="translate(0.5333107548490243, -0.2745208568207441) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(45.412192741402315, 0.5333107548490243, -0.36471251409244654)"><path transform="translate(0.5333107548490243, -0.36471251409244654) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(48.061152646549644, 0.5333107548490243, -0.4549041713641486)"><path transform="translate(0.5333107548490243, -0.4549041713641486) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-129.20442853819998, 0.6777702516163411, 0.3568207440811725)"><path transform="translate(0.6777702516163411, 0.3568207440811725) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-128.6756131139764, 0.6777702516163411, 0.2666290868094702)"><path transform="translate(0.6777702516163411, 0.2666290868094702) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-127.8990823601365, 0.6777702516163411, 0.17643742953776775)"><path transform="translate(0.6777702516163411, 0.17643742953776775) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-126.64820118726841, 0.6777702516163411, 8.624577226606533e-2)"><path transform="translate(0.6777702516163411, 8.624577226606533e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-124.30095672615316, 0.6777702516163411, -3.945885005637084e-3)"><path transform="translate(0.6777702516163411, -3.945885005637084e-3) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-118.3399495893263, 0.6777702516163411, -9.413754227733939e-2)"><path transform="translate(0.6777702516163411, -9.413754227733939e-2) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(-81.6026974133102, 0.6777702516163411, -0.1843291995490418)"><path transform="translate(0.6777702516163411, -0.1843291995490418) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(25.916669828467207, 0.6777702516163411, -0.2745208568207441)"><path transform="translate(0.6777702516163411, -0.2745208568207441) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(38.15385704023621, 0.6777702516163411, -0.36471251409244654)"><path transform="translate(0.6777702516163411, -0.36471251409244654) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="5.0e-2" fill="#a6cfe3"><g transform="rotate(41.70388402745369, 0.6777702516163411, -0.4549041713641486)"><path transform="translate(0.6777702516163411, -0.4549041713641486) scale(5.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g></g></svg>
− other/arrowg.svg
@@ -1,23 +0,0 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.87 -0.5532717050794361 1.6775 1.0995217050794361" width="457.69901373947147" xmlns:xlink="http://www.w3.org/1999/xlink"><style type="text/css">* { shape-rendering: crispEdges; }</style><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8950548221078541" width="1.3974504293278263" x="-0.6474504293278263" y="-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.408033117028418">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.31852763481763263">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.22902215260684716">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.1395166703960617">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="5.001118818527622e-2">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-3.949429402550919e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.12899977623629466">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.2185052584470799">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.3080107406578654">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.39751622286865085">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.4870217050794361">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7196520348430974, 0.39505482210785414)"><polyline points="-0.7196520348430974,0.41005482210785416--0.7196520348430974,0.38005482210785413"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.30554933989706873)"><polyline points="-0.7196520348430974,0.32054933989706874--0.7196520348430974,0.2905493398970687"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.21604385768628326)"><polyline points="-0.7196520348430974,0.23104385768628327--0.7196520348430974,0.20104385768628324"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.1265383754754978)"><polyline points="-0.7196520348430974,0.1415383754754978--0.7196520348430974,0.11153837547549779"/></g><g transform="rotate(-90.0, -0.7196520348430974, 3.7032893264712374e-2)"><polyline points="-0.7196520348430974,5.2032893264712374e-2--0.7196520348430974,2.2032893264712375e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -5.2472588946072984e-2)"><polyline points="-0.7196520348430974,-3.7472588946072985e-2--0.7196520348430974,-6.747258894607298e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.14197807115685857)"><polyline points="-0.7196520348430974,-0.12697807115685855--0.7196520348430974,-0.15697807115685858"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.23148355336764392)"><polyline points="-0.7196520348430974,-0.2164835533676439--0.7196520348430974,-0.24648355336764394"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.32098903557842917)"><polyline points="-0.7196520348430974,-0.30598903557842916--0.7196520348430974,-0.3359890355784292"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.41049451778921475)"><polyline points="-0.7196520348430974,-0.39549451778921474--0.7196520348430974,-0.42549451778921477"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.5)"><polyline points="-0.7196520348430974,-0.485--0.7196520348430974,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8950548221078541" width="4.65816809775943e-3" x="-0.7080066145986988" y="-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.6474504293278263" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.5077053863950438" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.367960343462261" y="0.5">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.22821530052947825" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-8.847025759669558e-2" y="0.5">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="5.127478533608687e-2" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.19101982826886954" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.330764871201652" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4705099141344351" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.6102549570672173" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.75" y="0.5">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6474504293278263,0.44003915864846727--0.6474504293278263,0.41003915864846724"/><polyline points="-0.5077053863950438,0.44003915864846727--0.5077053863950438,0.41003915864846724"/><polyline points="-0.367960343462261,0.44003915864846727--0.367960343462261,0.41003915864846724"/><polyline points="-0.22821530052947825,0.44003915864846727--0.22821530052947825,0.41003915864846724"/><polyline points="-8.847025759669558e-2,0.44003915864846727--8.847025759669558e-2,0.41003915864846724"/><polyline points="5.127478533608687e-2,0.44003915864846727-5.127478533608687e-2,0.41003915864846724"/><polyline points="0.19101982826886954,0.44003915864846727-0.19101982826886954,0.41003915864846724"/><polyline points="0.330764871201652,0.44003915864846727-0.330764871201652,0.41003915864846724"/><polyline points="0.4705099141344351,0.44003915864846727-0.4705099141344351,0.41003915864846724"/><polyline points="0.6102549570672173,0.44003915864846727-0.6102549570672173,0.41003915864846724"/><polyline points="0.75,0.44003915864846727-0.75,0.41003915864846724"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.475274110539218e-3" width="1.3974504293278263" x="-0.6474504293278263" y="0.40937569926157985"/></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-40.750752273812985, -0.6125141685946306, 0.3726784515551578)"><path transform="translate(-0.6125141685946306, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-40.35890150142677, -0.6125141685946306, 0.32792571044976504)"><path transform="translate(-0.6125141685946306, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-39.90964538903207, -0.6125141685946306, 0.2831729693443723)"><path transform="translate(-0.6125141685946306, 0.2831729693443723) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-39.38944196375233, -0.6125141685946306, 0.23842022823897957)"><path transform="translate(-0.6125141685946306, 0.23842022823897957) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-38.780154577808794, -0.6125141685946306, 0.1936674871335869)"><path transform="translate(-0.6125141685946306, 0.1936674871335869) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-38.05693850899711, -0.6125141685946306, 0.14891474602819416)"><path transform="translate(-0.6125141685946306, 0.14891474602819416) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-37.18485486655586, -0.6125141685946306, 0.10416200492280142)"><path transform="translate(-0.6125141685946306, 0.10416200492280142) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-36.113229916476286, -0.6125141685946306, 5.94092638174088e-2)"><path transform="translate(-0.6125141685946306, 5.94092638174088e-2) scale(1.8008609969097433e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-34.76582087482662, -0.6125141685946306, 1.4656522712016007e-2)"><path transform="translate(-0.6125141685946306, 1.4656522712016007e-2) scale(1.595933329153097e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-33.02272503512511, -0.6125141685946306, -3.0096218393376617e-2)"><path transform="translate(-0.6125141685946306, -3.0096218393376617e-2) scale(1.3921478068419948e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-30.684914847142537, -0.6125141685946306, -7.484895949876935e-2)"><path transform="translate(-0.6125141685946306, -7.484895949876935e-2) scale(1.1900913011910565e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-27.399301757020293, -0.6125141685946306, -0.11960170060416198)"><path transform="translate(-0.6125141685946306, -0.11960170060416198) scale(9.908221628166295e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-22.486373268527945, -0.6125141685946306, -0.16435444170955493)"><path transform="translate(-0.6125141685946306, -0.16435444170955493) scale(7.96435355549326e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-14.511261368485256, -0.6125141685946306, -0.20910718281494756)"><path transform="translate(-0.6125141685946306, -0.20910718281494756) scale(6.1160400333197295e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-0.2418039221482425, -0.6125141685946306, -0.2538599239203403)"><path transform="translate(-0.6125141685946306, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(26.143451029928766, -0.6125141685946306, -0.2986126650257329)"><path transform="translate(-0.6125141685946306, -0.2986126650257329) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(61.88544705855385, -0.6125141685946306, -0.34336540613112565)"><path transform="translate(-0.6125141685946306, -0.34336540613112565) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(87.85540701063856, -0.6125141685946306, -0.3881181472365184)"><path transform="translate(-0.6125141685946306, -0.3881181472365184) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(101.87010018967942, -0.6125141685946306, -0.43287088834191134)"><path transform="translate(-0.6125141685946306, -0.43287088834191134) scale(6.1672710718810725e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(109.72383830644168, -0.6125141685946306, -0.47762362944730385)"><path transform="translate(-0.6125141685946306, -0.47762362944730385) scale(8.019471868879295e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-43.13408540736626, -0.5426416471282393, 0.3726784515551578)"><path transform="translate(-0.5426416471282393, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-42.65775470761334, -0.5426416471282393, 0.32792571044976504)"><path transform="translate(-0.5426416471282393, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-42.10654172532391, -0.5426416471282393, 0.2831729693443723)"><path transform="translate(-0.5426416471282393, 0.2831729693443723) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-41.46141321308426, -0.5426416471282393, 0.23842022823897957)"><path transform="translate(-0.5426416471282393, 0.23842022823897957) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-40.69634700282399, -0.5426416471282393, 0.1936674871335869)"><path transform="translate(-0.5426416471282393, 0.1936674871335869) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-39.77483650776021, -0.5426416471282393, 0.14891474602819416)"><path transform="translate(-0.5426416471282393, 0.14891474602819416) scale(1.919261669392229e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-38.64409530985172, -0.5426416471282393, 0.10416200492280142)"><path transform="translate(-0.5426416471282393, 0.10416200492280142) scale(1.7238838191872025e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-37.2250146535623, -0.5426416471282393, 5.94092638174088e-2)"><path transform="translate(-0.5426416471282393, 5.94092638174088e-2) scale(1.5293487648541612e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-35.393838527837644, -0.5426416471282393, 1.4656522712016007e-2)"><path transform="translate(-0.5426416471282393, 1.4656522712016007e-2) scale(1.3360247090210291e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-32.94663940356874, -0.5426416471282393, -3.0096218393376617e-2)"><path transform="translate(-0.5426416471282393, -3.0096218393376617e-2) scale(1.1445254727251756e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-29.525463395856086, -0.5426416471282393, -7.484895949876935e-2)"><path transform="translate(-0.5426416471282393, -7.484895949876935e-2) scale(9.5594835026121e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-24.45266561108329, -0.5426416471282393, -0.11960170060416198)"><path transform="translate(-0.5426416471282393, -0.11960170060416198) scale(7.7243646668561355e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-16.335893094481097, -0.5426416471282393, -0.16435444170955493)"><path transform="translate(-0.5426416471282393, -0.16435444170955493) scale(5.986660987668035e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-2.187190799534037, -0.5426416471282393, -0.20910718281494756)"><path transform="translate(-0.5426416471282393, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(22.952722859722915, -0.5426416471282393, -0.2538599239203403)"><path transform="translate(-0.5426416471282393, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(56.57783198959668, -0.5426416471282393, -0.2986126650257329)"><path transform="translate(-0.5426416471282393, -0.2986126650257329) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(82.19831130957981, -0.5426416471282393, -0.34336540613112565)"><path transform="translate(-0.5426416471282393, -0.34336540613112565) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(96.66654187280496, -0.5426416471282393, -0.3881181472365184)"><path transform="translate(-0.5426416471282393, -0.3881181472365184) scale(5.924090244682791e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(104.94281723598905, -0.5426416471282393, -0.43287088834191134)"><path transform="translate(-0.5426416471282393, -0.43287088834191134) scale(7.656529183044141e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(110.09876372840056, -0.5426416471282393, -0.47762362944730385)"><path transform="translate(-0.5426416471282393, -0.47762362944730385) scale(9.48905941805065e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.77372233469362, -0.47276912566184803, 0.3726784515551578)"><path transform="translate(-0.47276912566184803, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.19852928001479, -0.47276912566184803, 0.32792571044976504)"><path transform="translate(-0.47276912566184803, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-44.52649194126508, -0.47276912566184803, 0.2831729693443723)"><path transform="translate(-0.47276912566184803, 0.2831729693443723) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-43.731145904976024, -0.47276912566184803, 0.23842022823897957)"><path transform="translate(-0.47276912566184803, 0.23842022823897957) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-42.77553701450309, -0.47276912566184803, 0.1936674871335869)"><path transform="translate(-0.47276912566184803, 0.1936674871335869) scale(1.8526138174695884e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-41.60653531853289, -0.47276912566184803, 0.14891474602819416)"><path transform="translate(-0.47276912566184803, 0.14891474602819416) scale(1.6668446779630613e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-40.14508031960994, -0.47276912566184803, 0.10416200492280142)"><path transform="translate(-0.47276912566184803, 0.10416200492280142) scale(1.4819431904772442e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-38.26860559693515, -0.47276912566184803, 5.94092638174088e-2)"><path transform="translate(-0.47276912566184803, 5.94092638174088e-2) scale(1.298280121824069e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-35.77752575114125, -0.47276912566184803, 1.4656522712016007e-2)"><path transform="translate(-0.47276912566184803, 1.4656522712016007e-2) scale(1.116466813308266e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-32.32709409714627, -0.47276912566184803, -3.0096218393376617e-2)"><path transform="translate(-0.47276912566184803, -3.0096218393376617e-2) scale(9.37579986607789e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-27.27922750574734, -0.47276912566184803, -7.484895949876935e-2)"><path transform="translate(-0.47276912566184803, -7.484895949876935e-2) scale(7.636789462396879e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-19.364761239541675, -0.47276912566184803, -0.11960170060416198)"><path transform="translate(-0.47276912566184803, -0.11960170060416198) scale(5.991210646819308e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-5.977773592360625, -0.47276912566184803, -0.16435444170955493)"><path transform="translate(-0.47276912566184803, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(17.102728969052386, -0.47276912566184803, -0.20910718281494756)"><path transform="translate(-0.47276912566184803, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(48.66418432074075, -0.47276912566184803, -0.2538599239203403)"><path transform="translate(-0.47276912566184803, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(74.71669842685262, -0.47276912566184803, -0.2986126650257329)"><path transform="translate(-0.47276912566184803, -0.2986126650257329) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(90.24277727376685, -0.47276912566184803, -0.34336540613112565)"><path transform="translate(-0.47276912566184803, -0.34336540613112565) scale(5.581369633236387e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(99.27639821103476, -0.47276912566184803, -0.3881181472365184)"><path transform="translate(-0.47276912566184803, -0.3881181472365184) scale(7.188912855816878e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(104.9216196783163, -0.47276912566184803, -0.43287088834191134)"><path transform="translate(-0.47276912566184803, -0.43287088834191134) scale(8.908892785952706e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(108.71561169812306, -0.47276912566184803, -0.47762362944730385)"><path transform="translate(-0.47276912566184803, -0.47762362944730385) scale(1.0687160280075639e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-48.710320497412845, -0.4028966041954566, 0.3726784515551578)"><path transform="translate(-0.4028966041954566, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-48.02211016675741, -0.4028966041954566, 0.32792571044976504)"><path transform="translate(-0.4028966041954566, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-47.21010203398549, -0.4028966041954566, 0.2831729693443723)"><path transform="translate(-0.4028966041954566, 0.2831729693443723) scale(1.982595517846054e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-46.23802649355172, -0.4028966041954566, 0.23842022823897957)"><path transform="translate(-0.4028966041954566, 0.23842022823897957) scale(1.804948939752171e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.054148109317985, -0.4028966041954566, 0.1936674871335869)"><path transform="translate(-0.4028966041954566, 0.1936674871335869) scale(1.627935196959593e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-43.58222088228565, -0.4028966041954566, 0.14891474602819416)"><path transform="translate(-0.4028966041954566, 0.14891474602819416) scale(1.4517857894832197e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-41.705452934934414, -0.4028966041954566, 0.10416200492280142)"><path transform="translate(-0.4028966041954566, 0.10416200492280142) scale(1.2768584863833268e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-39.23654302381311, -0.4028966041954566, 5.94092638174088e-2)"><path transform="translate(-0.4028966041954566, 5.94092638174088e-2) scale(1.10373450277274e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-35.85831318078913, -0.4028966041954566, 1.4656522712016007e-2)"><path transform="translate(-0.4028966041954566, 1.4656522712016007e-2) scale(9.33417780862898e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-30.998866461242095, -0.4028966041954566, -3.0096218393376617e-2)"><path transform="translate(-0.4028966041954566, -3.0096218393376617e-2) scale(7.67778807541083e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-23.558731336409213, -0.4028966041954566, -7.484895949876935e-2)"><path transform="translate(-0.4028966041954566, -7.484895949876935e-2) scale(6.10636130314575e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-11.361886054451027, -0.4028966041954566, -0.11960170060416198)"><path transform="translate(-0.4028966041954566, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(9.1787780290969, -0.4028966041954566, -0.16435444170955493)"><path transform="translate(-0.4028966041954566, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(38.43929639305065, -0.4028966041954566, -0.20910718281494756)"><path transform="translate(-0.4028966041954566, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(65.30004570377379, -0.4028966041954566, -0.2538599239203403)"><path transform="translate(-0.4028966041954566, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(82.46422166325871, -0.4028966041954566, -0.2986126650257329)"><path transform="translate(-0.4028966041954566, -0.2986126650257329) scale(5.171915072772692e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(92.634400797842, -0.4028966041954566, -0.34336540613112565)"><path transform="translate(-0.4028966041954566, -0.34336540613112565) scale(6.647850009477145e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(98.98525517530753, -0.4028966041954566, -0.3881181472365184)"><path transform="translate(-0.4028966041954566, -0.3881181472365184) scale(8.255711855609624e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(103.2314576873848, -0.4028966041954566, -0.43287088834191134)"><path transform="translate(-0.4028966041954566, -0.43287088834191134) scale(9.931631839884993e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(106.24009968580101, -0.4028966041954566, -0.47762362944730385)"><path transform="translate(-0.4028966041954566, -0.47762362944730385) scale(1.1646265840560128e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-51.99041554650731, -0.33302408272906536, 0.3726784515551578)"><path transform="translate(-0.33302408272906536, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-51.17700469994669, -0.33302408272906536, 0.32792571044976504)"><path transform="translate(-0.33302408272906536, 0.32792571044976504) scale(1.9451887666595963e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-50.20771941749776, -0.33302408272906536, 0.2831729693443723)"><path transform="translate(-0.33302408272906536, 0.2831729693443723) scale(1.7753331878843242e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-49.033762025031365, -0.33302408272906536, 0.23842022823897957)"><path transform="translate(-0.33302408272906536, 0.23842022823897957) scale(1.60609307182693e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-47.584041856356855, -0.33302408272906536, 0.1936674871335869)"><path transform="translate(-0.33302408272906536, 0.1936674871335869) scale(1.437685786268865e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.75118907129549, -0.33302408272906536, 0.14891474602819416)"><path transform="translate(-0.33302408272906536, 0.14891474602819416) scale(1.2704425693476653e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-43.36599869074594, -0.33302408272906536, 0.10416200492280142)"><path transform="translate(-0.33302408272906536, 0.10416200492280142) scale(1.1048921491638821e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-40.14816579886391, -0.33302408272906536, 5.94092638174088e-2)"><path transform="translate(-0.33302408272906536, 5.94092638174088e-2) scale(9.419275119983384e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-35.6060622921087, -0.33302408272906536, 1.4656522712016007e-2)"><path transform="translate(-0.33302408272906536, 1.4656522712016007e-2) scale(7.83164511285394e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-28.825452201069737, -0.33302408272906536, -3.0096218393376617e-2)"><path transform="translate(-0.33302408272906536, -3.0096218393376617e-2) scale(6.317786819104555e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-18.050279617662735, -0.33302408272906536, -7.484895949876935e-2)"><path transform="translate(-0.33302408272906536, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-0.28010424375436155, -0.33302408272906536, -0.11960170060416198)"><path transform="translate(-0.33302408272906536, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(26.199886819317534, -0.33302408272906536, -0.16435444170955493)"><path transform="translate(-0.33302408272906536, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(53.75788062855396, -0.33302408272906536, -0.20910718281494756)"><path transform="translate(-0.33302408272906536, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(73.11399281814548, -0.33302408272906536, -0.2538599239203403)"><path transform="translate(-0.33302408272906536, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(84.88574350636186, -0.33302408272906536, -0.2986126650257329)"><path transform="translate(-0.33302408272906536, -0.2986126650257329) scale(6.059516427394274e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(92.2174881319955, -0.33302408272906536, -0.34336540613112565)"><path transform="translate(-0.33302408272906536, -0.34336540613112565) scale(7.554628419935828e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(97.07495644815147, -0.33302408272906536, -0.3881181472365184)"><path transform="translate(-0.33302408272906536, -0.3881181472365184) scale(9.132082211793452e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(100.48468678209167, -0.33302408272906536, -0.43287088834191134)"><path transform="translate(-0.33302408272906536, -0.43287088834191134) scale(1.075570937748031e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(102.99363450558369, -0.33302408272906536, -0.47762362944730385)"><path transform="translate(-0.33302408272906536, -0.47762362944730385) scale(1.2407396448606481e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-55.664740518472684, -0.263151561262674, 0.3726784515551578)"><path transform="translate(-0.263151561262674, 0.3726784515551578) scale(1.9269106414618056e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-54.71846087586577, -0.263151561262674, 0.32792571044976504)"><path transform="translate(-0.263151561262674, 0.32792571044976504) scale(1.7637503099708244e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-53.57964702570465, -0.263151561262674, 0.2831729693443723)"><path transform="translate(-0.263151561262674, 0.2831729693443723) scale(1.6011690389122e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-52.18413419268651, -0.263151561262674, 0.23842022823897957)"><path transform="translate(-0.263151561262674, 0.23842022823897957) scale(1.4393630625819394e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-50.436495555028856, -0.263151561262674, 0.1936674871335869)"><path transform="translate(-0.263151561262674, 0.1936674871335869) scale(1.2786267477981634e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-48.18913591473337, -0.263151561262674, 0.14891474602819416)"><path transform="translate(-0.263151561262674, 0.14891474602819416) scale(1.1194209636905865e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.20307683083907, -0.263151561262674, 0.10416200492280142)"><path transform="translate(-0.263151561262674, 0.10416200492280142) scale(9.625054946442748e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-41.07061797467062, -0.263151561262674, 5.94092638174088e-2)"><path transform="translate(-0.263151561262674, 5.94092638174088e-2) scale(8.092137912790932e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-35.05707566179679, -0.263151561262674, 1.4656522712016007e-2)"><path transform="translate(-0.263151561262674, 1.4656522712016007e-2) scale(6.6206773994626315e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-25.78659877946231, -0.263151561262674, -3.0096218393376617e-2)"><path transform="translate(-0.263151561262674, -3.0096218393376617e-2) scale(5.262480632403571e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-10.823579802176743, -0.263151561262674, -7.484895949876935e-2)"><path transform="translate(-0.263151561262674, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(12.328075120417882, -0.263151561262674, -0.11960170060416198)"><path transform="translate(-0.263151561262674, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(39.874735447265955, -0.263151561262674, -0.16435444170955493)"><path transform="translate(-0.263151561262674, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(61.85657660644192, -0.263151561262674, -0.20910718281494756)"><path transform="translate(-0.263151561262674, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(75.82853980587181, -0.263151561262674, -0.2538599239203403)"><path transform="translate(-0.263151561262674, -0.2538599239203403) scale(5.444287607930679e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(84.51862353558559, -0.263151561262674, -0.2986126650257329)"><path transform="translate(-0.263151561262674, -0.2986126650257329) scale(6.8233833572340094e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(90.20229633078165, -0.263151561262674, -0.34336540613112565)"><path transform="translate(-0.263151561262674, -0.34336540613112565) scale(8.305812017631338e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(94.13817774211688, -0.263151561262674, -0.3881181472365184)"><path transform="translate(-0.263151561262674, -0.3881181472365184) scale(9.845005132310534e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(97.00019298833773, -0.263151561262674, -0.43287088834191134)"><path transform="translate(-0.263151561262674, -0.43287088834191134) scale(1.1418029549302839e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(99.16513267635787, -0.263151561262674, -0.47762362944730385)"><path transform="translate(-0.263151561262674, -0.47762362944730385) scale(1.3012622006068779e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-59.78409175059941, -0.19327903979628258, 0.3726784515551578)"><path transform="translate(-0.19327903979628258, 0.3726784515551578) scale(1.7712576698974185e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-58.70510428263088, -0.19327903979628258, 0.32792571044976504)"><path transform="translate(-0.19327903979628258, 0.32792571044976504) scale(1.6140899563541946e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-57.393911149976134, -0.19327903979628258, 0.2831729693443723)"><path transform="translate(-0.19327903979628258, 0.2831729693443723) scale(1.4576179782455276e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-55.76846387664084, -0.19327903979628258, 0.23842022823897957)"><path transform="translate(-0.19327903979628258, 0.23842022823897957) scale(1.3020925785341505e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-53.704278091348115, -0.19327903979628258, 0.1936674871335869)"><path transform="translate(-0.19327903979628258, 0.1936674871335869) scale(1.1478985690865222e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-51.00437186004463, -0.19327903979628258, 0.14891474602819416)"><path transform="translate(-0.19327903979628258, 0.14891474602819416) scale(9.956547072233911e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-47.341645462199146, -0.19327903979628258, 0.10416200492280142)"><path transform="translate(-0.19327903979628258, 0.10416200492280142) scale(8.464139627802389e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-42.143864562232416, -0.19327903979628258, 5.94092638174088e-2)"><path transform="translate(-0.19327903979628258, 5.94092638174088e-2) scale(7.020940293369813e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-34.36413564239526, -0.19327903979628258, 1.4656522712016007e-2)"><path transform="translate(-0.19327903979628258, 1.4656522712016007e-2) scale(5.664685206964e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-22.102785880742523, -0.19327903979628258, -3.0096218393376617e-2)"><path transform="translate(-0.19327903979628258, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-2.695691724372137, -0.19327903979628258, -7.484895949876935e-2)"><path transform="translate(-0.19327903979628258, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(23.51782497656787, -0.19327903979628258, -0.11960170060416198)"><path transform="translate(-0.19327903979628258, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(48.170403827242176, -0.19327903979628258, -0.16435444170955493)"><path transform="translate(-0.19327903979628258, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(65.11563943465563, -0.19327903979628258, -0.20910718281494756)"><path transform="translate(-0.19327903979628258, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(75.72126365559959, -0.19327903979628258, -0.2538599239203403)"><path transform="translate(-0.19327903979628258, -0.2538599239203403) scale(6.0716031904660284e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(82.54698031827908, -0.19327903979628258, -0.2986126650257329)"><path transform="translate(-0.19327903979628258, -0.2986126650257329) scale(7.4606441867333265e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(87.18613431063683, -0.19327903979628258, -0.34336540613112565)"><path transform="translate(-0.19327903979628258, -0.34336540613112565) scale(8.921948833433327e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(90.50431461759553, -0.19327903979628258, -0.3881181472365184)"><path transform="translate(-0.19327903979628258, -0.3881181472365184) scale(1.0425173534218539e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(92.980140611468, -0.19327903979628258, -0.43287088834191134)"><path transform="translate(-0.19327903979628258, -0.43287088834191134) scale(1.1954514978766095e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(94.89166407397504, -0.19327903979628258, -0.47762362944730385)"><path transform="translate(-0.19327903979628258, -0.47762362944730385) scale(1.3501100935231887e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-64.39162950639505, -0.12340651832989136, 0.3726784515551578)"><path transform="translate(-0.12340651832989136, 0.3726784515551578) scale(1.646982697734208e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-63.19165610465717, -0.12340651832989136, 0.32792571044976504)"><path transform="translate(-0.12340651832989136, 0.32792571044976504) scale(1.4944657227283116e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-61.719748508263145, -0.12340651832989136, 0.2831729693443723)"><path transform="translate(-0.12340651832989136, 0.2831729693443723) scale(1.3427529976782315e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-59.87446828800514, -0.12340651832989136, 0.23842022823897957)"><path transform="translate(-0.12340651832989136, 0.23842022823897957) scale(1.1921516076942197e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-57.498919459638714, -0.12340651832989136, 0.1936674871335869)"><path transform="translate(-0.12340651832989136, 0.1936674871335869) scale(1.0431430032703883e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-54.33933237650934, -0.12340651832989136, 0.14891474602819416)"><path transform="translate(-0.12340651832989136, 0.14891474602819416) scale(8.965217350438483e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-49.964234165944355, -0.12340651832989136, 0.10416200492280142)"><path transform="translate(-0.12340651832989136, 0.10416200492280142) scale(7.536823894254886e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-43.602818972703616, -0.12340651832989136, 5.94092638174088e-2)"><path transform="translate(-0.12340651832989136, 5.94092638174088e-2) scale(6.172561003701874e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-33.84265246356403, -0.12340651832989136, 1.4656522712016007e-2)"><path transform="translate(-0.12340651832989136, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-18.32539679674549, -0.12340651832989136, -3.0096218393376617e-2)"><path transform="translate(-0.12340651832989136, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(4.864514437760529, -0.12340651832989136, -7.484895949876935e-2)"><path transform="translate(-0.12340651832989136, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(31.29960133462856, -0.12340651832989136, -0.11960170060416198)"><path transform="translate(-0.12340651832989136, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(52.096694166575396, -0.12340651832989136, -0.16435444170955493)"><path transform="translate(-0.12340651832989136, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(65.4925947698703, -0.12340651832989136, -0.20910718281494756)"><path transform="translate(-0.12340651832989136, -0.20910718281494756) scale(5.302219796642787e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(73.96993059493624, -0.12340651832989136, -0.2538599239203403)"><path transform="translate(-0.12340651832989136, -0.2538599239203403) scale(6.594524115986752e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(79.58888167202291, -0.12340651832989136, -0.2986126650257329)"><path transform="translate(-0.12340651832989136, -0.2986126650257329) scale(7.98311746874318e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(83.51692630710276, -0.12340651832989136, -0.34336540613112565)"><path transform="translate(-0.12340651832989136, -0.34336540613112565) scale(9.42553889081021e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(86.39264883035322, -0.12340651832989136, -0.3881181472365184)"><path transform="translate(-0.12340651832989136, -0.3881181472365184) scale(1.0900440583003991e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(88.57883134719822, -0.12340651832989136, -0.43287088834191134)"><path transform="translate(-0.12340651832989136, -0.43287088834191134) scale(1.2396234471968757e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(90.29232286922854, -0.12340651832989136, -0.47762362944730385)"><path transform="translate(-0.12340651832989136, -0.47762362944730385) scale(1.3906180493703305e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-69.510938217655, -5.353399686350013e-2, 0.3726784515551578)"><path transform="translate(-5.353399686350013e-2, 0.3726784515551578) scale(1.5531828790181383e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-68.21651471267589, -5.353399686350013e-2, 0.32792571044976504)"><path transform="translate(-5.353399686350013e-2, 0.32792571044976504) scale(1.4038114048005803e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-66.61488605131503, -5.353399686350013e-2, 0.2831729693443723)"><path transform="translate(-5.353399686350013e-2, 0.2831729693443723) scale(1.2553267129686262e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-64.5856544366491, -5.353399686350013e-2, 0.23842022823897957)"><path transform="translate(-5.353399686350013e-2, 0.23842022823897957) scale(1.1080853504168285e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-61.93910496370308, -5.353399686350013e-2, 0.1936674871335869)"><path transform="translate(-5.353399686350013e-2, 0.1936674871335869) scale(9.626579988736846e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-58.36175317293706, -5.353399686350013e-2, 0.14891474602819416)"><path transform="translate(-5.353399686350013e-2, 0.14891474602819416) scale(8.200103616747298e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-53.3081525372487, -5.353399686350013e-2, 0.10416200492280142)"><path transform="translate(-5.353399686350013e-2, 0.10416200492280142) scale(6.818891810138115e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.78501490889715, -5.353399686350013e-2, 5.94092638174088e-2)"><path transform="translate(-5.353399686350013e-2, 5.94092638174088e-2) scale(5.517046389009111e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-33.98616710964858, -5.353399686350013e-2, 1.4656522712016007e-2)"><path transform="translate(-5.353399686350013e-2, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-15.28079551363096, -5.353399686350013e-2, -3.0096218393376617e-2)"><path transform="translate(-5.353399686350013e-2, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(10.494541973947667, -5.353399686350013e-2, -7.484895949876935e-2)"><path transform="translate(-5.353399686350013e-2, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(35.54639887618863, -5.353399686350013e-2, -0.11960170060416198)"><path transform="translate(-5.353399686350013e-2, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(53.11090859263186, -5.353399686350013e-2, -0.16435444170955493)"><path transform="translate(-5.353399686350013e-2, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(64.14116533253902, -5.353399686350013e-2, -0.20910718281494756)"><path transform="translate(-5.353399686350013e-2, -0.20910718281494756) scale(5.6977543812395575e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(71.22050357908108, -5.353399686350013e-2, -0.2538599239203403)"><path transform="translate(-5.353399686350013e-2, -0.2538599239203403) scale(7.014230133020788e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(76.01381426210662, -5.353399686350013e-2, -0.2986126650257329)"><path transform="translate(-5.353399686350013e-2, -0.2986126650257329) scale(8.403533356639471e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(79.43044944555142, -5.353399686350013e-2, -0.34336540613112565)"><path transform="translate(-5.353399686350013e-2, -0.34336540613112565) scale(9.834848780762262e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(81.97239688734122, -5.353399686350013e-2, -0.3881181472365184)"><path transform="translate(-5.353399686350013e-2, -0.3881181472365184) scale(1.1292212243484572e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(83.93032810255283, -5.353399686350013e-2, -0.43287088834191134)"><path transform="translate(-5.353399686350013e-2, -0.43287088834191134) scale(1.2766706439425863e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(85.48142246054088, -5.353399686350013e-2, -0.47762362944730385)"><path transform="translate(-5.353399686350013e-2, -0.47762362944730385) scale(1.4253015765661181e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-75.13069166252536, 1.6338524602891313e-2, 0.3726784515551578)"><path transform="translate(1.6338524602891313e-2, 0.3726784515551578) scale(1.4896749752205429e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-73.78439010214682, 1.6338524602891313e-2, 0.32792571044976504)"><path transform="translate(1.6338524602891313e-2, 0.32792571044976504) scale(1.3418139480941034e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-72.10584553435906, 1.6338524602891313e-2, 0.2831729693443723)"><path transform="translate(1.6338524602891313e-2, 0.2831729693443723) scale(1.1948768701056338e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-69.95907870911456, 1.6338524602891313e-2, 0.23842022823897957)"><path transform="translate(1.6338524602891313e-2, 0.23842022823897957) scale(1.0492519821467941e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-67.12599014563611, 1.6338524602891313e-2, 0.1936674871335869)"><path transform="translate(1.6338524602891313e-2, 0.1936674871335869) scale(9.055725444582049e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-63.238481569620205, 1.6338524602891313e-2, 0.14891474602819416)"><path transform="translate(1.6338524602891313e-2, 0.14891474602819416) scale(7.649355975675533e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-57.64043087176548, 1.6338524602891313e-2, 0.10416200492280142)"><path transform="translate(1.6338524602891313e-2, 0.10416200492280142) scale(6.293840063804786e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-49.11004346535457, 1.6338524602891313e-2, 5.94092638174088e-2)"><path transform="translate(1.6338524602891313e-2, 5.94092638174088e-2) scale(5.03045634571105e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-35.43395925240447, 1.6338524602891313e-2, 1.4656522712016007e-2)"><path transform="translate(1.6338524602891313e-2, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-13.869686438505035, 1.6338524602891313e-2, -3.0096218393376617e-2)"><path transform="translate(1.6338524602891313e-2, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(13.531833527972587, 1.6338524602891313e-2, -7.484895949876935e-2)"><path transform="translate(1.6338524602891313e-2, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(36.97705198118514, 1.6338524602891313e-2, -0.11960170060416198)"><path transform="translate(1.6338524602891313e-2, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(52.25580788843059, 1.6338524602891313e-2, -0.16435444170955493)"><path transform="translate(1.6338524602891313e-2, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(61.728030848321474, 1.6338524602891313e-2, -0.20910718281494756)"><path transform="translate(1.6338524602891313e-2, -0.20910718281494756) scale(5.993583322636539e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(67.86230320617709, 1.6338524602891313e-2, -0.2538599239203403)"><path transform="translate(1.6338524602891313e-2, -0.2538599239203403) scale(7.332745466817365e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(72.06964782000361, 1.6338524602891313e-2, -0.2986126650257329)"><path transform="translate(1.6338524602891313e-2, -0.2986126650257329) scale(8.729751629231695e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(75.10466241725233, 1.6338524602891313e-2, -0.34336540613112565)"><path transform="translate(1.6338524602891313e-2, -0.34336540613112565) scale(1.0160770803743944e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(77.3856399985983, 1.6338524602891313e-2, -0.3881181472365184)"><path transform="translate(1.6338524602891313e-2, -0.3881181472365184) scale(1.1613236221465414e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(79.15735653973898, 1.6338524602891313e-2, -0.43287088834191134)"><path transform="translate(1.6338524602891313e-2, -0.43287088834191134) scale(1.308000535688332e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(80.57073269256784, 1.6338524602891313e-2, -0.47762362944730385)"><path transform="translate(1.6338524602891313e-2, -0.47762362944730385) scale(1.4556755034273108e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-81.18963463293309, 8.621104606928265e-2, 0.3726784515551578)"><path transform="translate(8.621104606928265e-2, 0.3726784515551578) scale(1.4569826327456875e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-79.84737599030926, 8.621104606928265e-2, 0.32792571044976504)"><path transform="translate(8.621104606928265e-2, 0.32792571044976504) scale(1.3089290306267674e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-78.16396287234514, 8.621104606928265e-2, 0.2831729693443723)"><path transform="translate(8.621104606928265e-2, 0.2831729693443723) scale(1.1617766335335265e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-75.99481185341442, 8.621104606928265e-2, 0.23842022823897957)"><path transform="translate(8.621104606928265e-2, 0.23842022823897957) scale(1.0159171271041005e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-73.10428732733028, 8.621104606928265e-2, 0.1936674871335869)"><path transform="translate(8.621104606928265e-2, 0.1936674871335869) scale(8.71999538976022e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-69.08649525186826, 8.621104606928265e-2, 0.14891474602819416)"><path transform="translate(8.621104606928265e-2, 0.14891474602819416) scale(7.311714619139152e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-63.19891384794882, 8.621104606928265e-2, 0.10416200492280142)"><path transform="translate(8.621104606928265e-2, 0.10416200492280142) scale(5.956283584352402e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-54.015870624254035, 8.621104606928265e-2, 5.94092638174088e-2)"><path transform="translate(8.621104606928265e-2, 5.94092638174088e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-38.901296634433926, 8.621104606928265e-2, 1.4656522712016007e-2)"><path transform="translate(8.621104606928265e-2, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-14.912884226752979, 8.621104606928265e-2, -3.0096218393376617e-2)"><path transform="translate(8.621104606928265e-2, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(13.86968643850504, 8.621104606928265e-2, -7.484895949876935e-2)"><path transform="translate(8.621104606928265e-2, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(36.30824821189891, 8.621104606928265e-2, -0.11960170060416198)"><path transform="translate(8.621104606928265e-2, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(50.17461072660589, 8.621104606928265e-2, -0.16435444170955493)"><path transform="translate(8.621104606928265e-2, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(58.652743308099524, 8.621104606928265e-2, -0.20910718281494756)"><path transform="translate(8.621104606928265e-2, -0.20910718281494756) scale(6.180817530816513e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(64.14793758266615, 8.621104606928265e-2, -0.2538599239203403)"><path transform="translate(8.621104606928265e-2, -0.2538599239203403) scale(7.547515349062496e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(67.93467556284212, 8.621104606928265e-2, -0.2986126650257329)"><path transform="translate(8.621104606928265e-2, -0.2986126650257329) scale(8.962185164937077e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(70.68045446971969, 8.621104606928265e-2, -0.34336540613112565)"><path transform="translate(8.621104606928265e-2, -0.34336540613112565) scale(1.0405278963492599e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(72.75387740565509, 8.621104606928265e-2, -0.3881181472365184)"><path transform="translate(8.621104606928265e-2, -0.3881181472365184) scale(1.186643122749144e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(74.37105655915897, 8.621104606928265e-2, -0.43287088834191134)"><path transform="translate(8.621104606928265e-2, -0.43287088834191134) scale(1.3339709226091304e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(75.66574559828108, 8.621104606928265e-2, -0.47762362944730385)"><path transform="translate(8.621104606928265e-2, -0.47762362944730385) scale(1.4821497454297462e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-87.56881101083859, 0.15608356753567387, 0.3726784515551578)"><path transform="translate(0.15608356753567387, 0.3726784515551578) scale(1.4562378013119066e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-86.29218525069348, 0.15608356753567387, 0.32792571044976504)"><path transform="translate(0.15608356753567387, 0.32792571044976504) scale(1.3063035502221857e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-84.68556278891644, 0.15608356753567387, 0.2831729693443723)"><path transform="translate(0.15608356753567387, 0.2831729693443723) scale(1.157185675744289e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-82.60586939275454, 0.15608356753567387, 0.23842022823897957)"><path transform="translate(0.15608356753567387, 0.23842022823897957) scale(1.0092461059839564e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-79.81704013985375, 0.15608356753567387, 0.1936674871335869)"><path transform="translate(0.15608356753567387, 0.1936674871335869) scale(8.630909617248493e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-75.90531569732417, 0.15608356753567387, 0.14891474602819416)"><path transform="translate(0.15608356753567387, 0.14891474602819416) scale(7.1980803374913985e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-70.09413507313377, 0.15608356753567387, 0.10416200492280142)"><path transform="translate(0.15608356753567387, 0.10416200492280142) scale(5.81524285098922e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-60.83262967516026, 0.15608356753567387, 5.94092638174088e-2)"><path transform="translate(0.15608356753567387, 5.94092638174088e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-45.077832371412455, 0.15608356753567387, 1.4656522712016007e-2)"><path transform="translate(0.15608356753567387, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-19.207443045498454, 0.15608356753567387, -3.0096218393376617e-2)"><path transform="translate(0.15608356753567387, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(11.479456791237874, 0.15608356753567387, -7.484895949876935e-2)"><path transform="translate(0.15608356753567387, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(33.986167109648605, 0.15608356753567387, -0.11960170060416198)"><path transform="translate(0.15608356753567387, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(47.23521633893784, 0.15608356753567387, -0.16435444170955493)"><path transform="translate(0.15608356753567387, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(55.15724090078206, 0.15608356753567387, -0.20910718281494756)"><path transform="translate(0.15608356753567387, -0.20910718281494756) scale(6.247230396961342e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(60.24545105106578, 0.15608356753567387, -0.2538599239203403)"><path transform="translate(0.15608356753567387, -0.2538599239203403) scale(7.649314327492656e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(63.7388457946478, 0.15608356753567387, -0.2986126650257329)"><path transform="translate(0.15608356753567387, -0.2986126650257329) scale(9.092912672844945e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(66.2683562395399, 0.15608356753567387, -0.34336540613112565)"><path transform="translate(0.15608356753567387, -0.34336540613112565) scale(1.0561015160405618e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(68.17769977444287, 0.15608356753567387, -0.3881181472365184)"><path transform="translate(0.15608356753567387, -0.3881181472365184) scale(1.2044664823388966e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(69.6669910604888, 0.15608356753567387, -0.43287088834191134)"><path transform="translate(0.15608356753567387, -0.43287088834191134) scale(1.3538751395323827e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(70.85961693980484, 0.15608356753567387, -0.47762362944730385)"><path transform="translate(0.15608356753567387, -0.47762362944730385) scale(1.504016479723928e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-94.09858402644652, 0.22595608900206532, 0.3726784515551578)"><path transform="translate(0.22595608900206532, 0.3726784515551578) scale(1.489006647019036e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-92.94346737665964, 0.22595608900206532, 0.32792571044976504)"><path transform="translate(0.22595608900206532, 0.32792571044976504) scale(1.3356028461365122e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-91.4893547265514, 0.22595608900206532, 0.2831729693443723)"><path transform="translate(0.22595608900206532, 0.2831729693443723) scale(1.1828825626151762e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-89.60576920647642, 0.22595608900206532, 0.23842022823897957)"><path transform="translate(0.22595608900206532, 0.23842022823897957) scale(1.0311495419482841e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-87.07614336480545, 0.22595608900206532, 0.1936674871335869)"><path transform="translate(0.22595608900206532, 0.1936674871335869) scale(8.809140851248102e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-83.51692630710278, 0.22595608900206532, 0.14891474602819416)"><path transform="translate(0.22595608900206532, 0.14891474602819416) scale(7.330974692852383e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-78.19420769941097, 0.22595608900206532, 0.10416200492280142)"><path transform="translate(0.22595608900206532, 0.10416200492280142) scale(5.895220099059707e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-69.58361514857607, 0.22595608900206532, 5.94092638174088e-2)"><path transform="translate(0.22595608900206532, 5.94092638174088e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-54.41562639154035, 0.22595608900206532, 1.4656522712016007e-2)"><path transform="translate(0.22595608900206532, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-27.71081401525311, 0.22595608900206532, -3.0096218393376617e-2)"><path transform="translate(0.22595608900206532, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(5.957131114708201, 0.22595608900206532, -7.484895949876935e-2)"><path transform="translate(0.22595608900206532, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(30.12027824799682, 0.22595608900206532, -0.11960170060416198)"><path transform="translate(0.22595608900206532, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(43.60281897270364, 0.22595608900206532, -0.16435444170955493)"><path transform="translate(0.22595608900206532, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(51.37445955253754, 0.22595608900206532, -0.20910718281494756)"><path transform="translate(0.22595608900206532, -0.20910718281494756) scale(6.175459898032524e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(56.26062458643972, 0.22595608900206532, -0.2538599239203403)"><path transform="translate(0.22595608900206532, -0.2538599239203403) scale(7.621834181700318e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(59.57217944927442, 0.22595608900206532, -0.2986126650257329)"><path transform="translate(0.22595608900206532, -0.2986126650257329) scale(9.105855824328888e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(61.95004679902866, 0.22595608900206532, -0.34336540613112565)"><path transform="translate(0.22595608900206532, -0.34336540613112565) scale(1.0611741937711963e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(63.734662459778875, 0.22595608900206532, -0.3881181472365184)"><path transform="translate(0.22595608900206532, -0.3881181472365184) scale(1.2131353027207099e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(65.12093733319522, 0.22595608900206532, -0.43287088834191134)"><path transform="translate(0.22595608900206532, -0.43287088834191134) scale(1.366010937905917e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(66.22765118863529, 0.22595608900206532, -0.47762362944730385)"><path transform="translate(0.22595608900206532, -0.47762362944730385) scale(1.5195250997729367e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-100.58287636403875, 0.2958286104684569, 0.3726784515551578)"><path transform="translate(0.2958286104684569, 0.3726784515551578) scale(1.5570916215649279e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-99.58845260191814, 0.2958286104684569, 0.32792571044976504)"><path transform="translate(0.2958286104684569, 0.32792571044976504) scale(1.3987897272766385e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-98.34072267484564, 0.2958286104684569, 0.2831729693443723)"><path transform="translate(0.2958286104684569, 0.2831729693443723) scale(1.2410166048807115e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-96.73057646172774, 0.2958286104684569, 0.23842022823897957)"><path transform="translate(0.2958286104684569, 0.23842022823897957) scale(1.0840031620399832e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-94.57741396792079, 0.2958286104684569, 0.1936674871335869)"><path transform="translate(0.2958286104684569, 0.1936674871335869) scale(9.28135025900734e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-91.56158862864692, 0.2958286104684569, 0.14891474602819416)"><path transform="translate(0.2958286104684569, 0.14891474602819416) scale(7.7410433829224225e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-87.0681122160906, 0.2958286104684569, 0.10416200492280142)"><path transform="translate(0.2958286104684569, 0.10416200492280142) scale(6.232748639966343e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-79.78933995423745, 0.2958286104684569, 5.94092638174088e-2)"><path transform="translate(0.2958286104684569, 5.94092638174088e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-66.68081278986507, 0.2958286104684569, 1.4656522712016007e-2)"><path transform="translate(0.2958286104684569, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-41.428362847402155, 0.2958286104684569, -3.0096218393376617e-2)"><path transform="translate(0.2958286104684569, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-3.995544058317841, 0.2958286104684569, -7.484895949876935e-2)"><path transform="translate(0.2958286104684569, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(24.35444525945633, 0.2958286104684569, -0.11960170060416198)"><path transform="translate(0.2958286104684569, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(39.244649162137684, 0.2958286104684569, -0.16435444170955493)"><path transform="translate(0.2958286104684569, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(47.34164546219915, 0.2958286104684569, -0.20910718281494756)"><path transform="translate(0.2958286104684569, -0.20910718281494756) scale(5.942906547180401e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(52.2444635584233, 0.2958286104684569, -0.2538599239203403)"><path transform="translate(0.2958286104684569, -0.2538599239203403) scale(7.442206970762536e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(55.48774574545698, 0.2958286104684569, -0.2986126650257329)"><path transform="translate(0.2958286104684569, -0.2986126650257329) scale(8.97763130728909e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(57.77862344424654, 0.2958286104684569, -0.34336540613112565)"><path transform="translate(0.2958286104684569, -0.34336540613112565) scale(1.053339432995708e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(59.47791097025054, 0.2958286104684569, -0.3881181472365184)"><path transform="translate(0.2958286104684569, -0.3881181472365184) scale(1.2101654484322818e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(60.78643915334397, 0.2958286104684569, -0.43287088834191134)"><path transform="translate(0.2958286104684569, -0.43287088834191134) scale(1.3678113880659606e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(61.824093454548716, 0.2958286104684569, -0.47762362944730385)"><path transform="translate(0.2958286104684569, -0.47762362944730385) scale(1.5260231660543676e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-106.83353072736249, 0.36570113193484777, 0.3726784515551578)"><path transform="translate(0.36570113193484777, 0.3726784515551578) scale(1.6623818101615763e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-106.0164701064763, 0.36570113193484777, 0.32792571044976504)"><path transform="translate(0.36570113193484777, 0.32792571044976504) scale(1.4979375483778496e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-104.99816310847287, 0.36570113193484777, 0.2831729693443723)"><path transform="translate(0.36570113193484777, 0.2831729693443723) scale(1.3338729753727718e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-103.69477998584586, 0.36570113193484777, 0.23842022823897957)"><path transform="translate(0.36570113193484777, 0.23842022823897957) scale(1.1703477814413908e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-101.96927588754735, 0.36570113193484777, 0.1936674871335869)"><path transform="translate(0.36570113193484777, 0.1936674871335869) scale(1.007624604763681e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-99.58237053286808, 0.36570113193484777, 0.14891474602819416)"><path transform="translate(0.36570113193484777, 0.14891474602819416) scale(8.461662710312609e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-96.07963538795036, 0.36570113193484777, 0.10416200492280142)"><path transform="translate(0.36570113193484777, 0.10416200492280142) scale(6.868653229288393e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-90.49954129161453, 0.36570113193484777, 5.94092638174088e-2)"><path transform="translate(0.36570113193484777, 5.94092638174088e-2) scale(5.316645417542286e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-80.5238108777569, 0.36570113193484777, 1.4656522712016007e-2)"><path transform="translate(0.36570113193484777, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-60.10999550503807, 0.36570113193484777, -3.0096218393376617e-2)"><path transform="translate(0.36570113193484777, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-21.22823589712198, 0.36570113193484777, -7.484895949876935e-2)"><path transform="translate(0.36570113193484777, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(15.404000803307879, 0.36570113193484777, -0.11960170060416198)"><path transform="translate(0.36570113193484777, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(33.83132719055512, 0.36570113193484777, -0.16435444170955493)"><path transform="translate(0.36570113193484777, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(42.98010374702864, 0.36570113193484777, -0.20910718281494756)"><path transform="translate(0.36570113193484777, -0.20910718281494756) scale(5.52263572283935e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(48.18913591473337, 0.36570113193484777, -0.2538599239203403)"><path transform="translate(0.36570113193484777, -0.2538599239203403) scale(7.082050994777183e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(51.50112356462062, 0.36570113193484777, -0.2986126650257329)"><path transform="translate(0.36570113193484777, -0.2986126650257329) scale(8.678769913334959e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(53.77871008604574, 0.36570113193484777, -0.34336540613112565)"><path transform="translate(0.36570113193484777, -0.34336540613112565) scale(1.0295450843704338e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(55.436227586309684, 0.36570113193484777, -0.3881181472365184)"><path transform="translate(0.36570113193484777, -0.3881181472365184) scale(1.1923977058523598e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(56.69461837524064, 0.36570113193484777, -0.43287088834191134)"><path transform="translate(0.36570113193484777, -0.43287088834191134) scale(1.3560081476886568e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(57.68167485000795, 0.36570113193484777, -0.47762362944730385)"><path transform="translate(0.36570113193484777, -0.47762362944730385) scale(1.5201317389553711e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-112.7010913153754, 0.4355736534012393, 0.3726784515551578)"><path transform="translate(0.4355736534012393, 0.3726784515551578) scale(1.806799380521019e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-112.05685727380069, 0.4355736534012393, 0.32792571044976504)"><path transform="translate(0.4355736534012393, 0.32792571044976504) scale(1.635143597896351e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-111.26162580070476, 0.4355736534012393, 0.2831729693443723)"><path transform="translate(0.4355736534012393, 0.2831729693443723) scale(1.4637430127361215e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-110.25571292911805, 0.4355736534012393, 0.23842022823897957)"><path transform="translate(0.4355736534012393, 0.23842022823897957) scale(1.2926991398729739e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-108.94357278375855, 0.4355736534012393, 0.1936674871335869)"><path transform="translate(0.4355736534012393, 0.1936674871335869) scale(1.1221751032815452e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-107.16255848690187, 0.4355736534012393, 0.14891474602819416)"><path transform="translate(0.4355736534012393, 0.14891474602819416) scale(9.52450154036252e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-104.61302150679268, 0.4355736534012393, 0.10416200492280142)"><path transform="translate(0.4355736534012393, 0.10416200492280142) scale(7.840434086991137e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-100.68214817986205, 0.4355736534012393, 5.94092638174088e-2)"><path transform="translate(0.4355736534012393, 5.94092638174088e-2) scale(6.180333929711916e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-93.92845955971286, 0.4355736534012393, 1.4656522712016007e-2)"><path transform="translate(0.4355736534012393, 1.4656522712016007e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-80.32428667615885, 0.4355736534012393, -3.0096218393376617e-2)"><path transform="translate(0.4355736534012393, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-48.58452366450957, 0.4355736534012393, -7.484895949876935e-2)"><path transform="translate(0.4355736534012393, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-0.4962697850621825, 0.4355736534012393, -0.11960170060416198)"><path transform="translate(0.4355736534012393, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(26.356258735402186, 0.4355736534012393, -0.16435444170955493)"><path transform="translate(0.4355736534012393, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(38.00829503555947, 0.4355736534012393, -0.20910718281494756)"><path transform="translate(0.4355736534012393, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(44.004829582694995, 0.4355736534012393, -0.2538599239203403)"><path transform="translate(0.4355736534012393, -0.2538599239203403) scale(6.508839958144151e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(47.584041856356855, 0.4355736534012393, -0.2986126650257329)"><path transform="translate(0.4355736534012393, -0.2986126650257329) scale(8.175076039568057e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(49.94533368931976, 0.4355736534012393, -0.34336540613112565)"><path transform="translate(0.4355736534012393, -0.34336540613112565) scale(9.862382198785285e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(51.61474900490375, 0.4355736534012393, -0.3881181472365184)"><path transform="translate(0.4355736534012393, -0.3881181472365184) scale(1.1561537127360062e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(52.85558277392523, 0.4355736534012393, -0.43287088834191134)"><path transform="translate(0.4355736534012393, -0.43287088834191134) scale(1.3267989395154969e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(53.81327403685989, 0.4355736534012393, -0.47762362944730385)"><path transform="translate(0.4355736534012393, -0.47762362944730385) scale(1.497924524676646e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-118.09089015345515, 0.5054461748676304, 0.3726784515551578)"><path transform="translate(0.5054461748676304, 0.3726784515551578) scale(1.9923364124600204e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-117.60018688455187, 0.5054461748676304, 0.32792571044976504)"><path transform="translate(0.5054461748676304, 0.32792571044976504) scale(1.81254918982668e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-117.001474562297, 0.5054461748676304, 0.2831729693443723)"><path transform="translate(0.5054461748676304, 0.2831729693443723) scale(1.6329241848067548e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-116.25486952917166, 0.5054461748676304, 0.23842022823897957)"><path transform="translate(0.5054461748676304, 0.23842022823897957) scale(1.4535215388051245e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-115.2982327412062, 0.5054461748676304, 0.1936674871335869)"><path transform="translate(0.5054461748676304, 0.1936674871335869) scale(1.2744351599325049e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-114.02928246051185, 0.5054461748676304, 0.14891474602819416)"><path transform="translate(0.5054461748676304, 0.14891474602819416) scale(1.0958201187385296e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-112.2674057616658, 0.5054461748676304, 0.10416200492280142)"><path transform="translate(0.5054461748676304, 0.10416200492280142) scale(9.17951595156422e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-109.66267624485242, 0.5054461748676304, 5.94092638174088e-2)"><path transform="translate(0.5054461748676304, 5.94092638174088e-2) scale(7.413670967385031e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-105.44534693081516, 0.5054461748676304, 1.4656522712016007e-2)"><path transform="translate(0.5054461748676304, 1.4656522712016007e-2) scale(5.672670057925945e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-97.59015408885693, 0.5054461748676304, -3.0096218393376617e-2)"><path transform="translate(0.5054461748676304, -3.0096218393376617e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-79.39643565356667, 0.5054461748676304, -7.484895949876935e-2)"><path transform="translate(0.5054461748676304, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-32.75993747532857, 0.5054461748676304, -0.11960170060416198)"><path transform="translate(0.5054461748676304, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(13.598839373504065, 0.5054461748676304, -0.16435444170955493)"><path transform="translate(0.5054461748676304, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(31.639432273787122, 0.5054461748676304, -0.20910718281494756)"><path transform="translate(0.5054461748676304, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(39.44563172930389, 0.5054461748676304, -0.2538599239203403)"><path transform="translate(0.5054461748676304, -0.2538599239203403) scale(5.687718822944676e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(43.6430719034802, 0.5054461748676304, -0.2986126650257329)"><path transform="translate(0.5054461748676304, -0.2986126650257329) scale(7.429028445431736e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(46.23802649355172, 0.5054461748676304, -0.34336540613112565)"><path transform="translate(0.5054461748676304, -0.34336540613112565) scale(9.19502290062427e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(47.994431356646444, 0.5054461748676304, -0.3881181472365184)"><path transform="translate(0.5054461748676304, -0.3881181472365184) scale(1.0973791182120775e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(49.26002512569782, 0.5054461748676304, -0.43287088834191134)"><path transform="translate(0.5054461748676304, -0.43287088834191134) scale(1.2759992317411276e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(50.21445989488682, 0.5054461748676304, -0.47762362944730385)"><path transform="translate(0.5054461748676304, -0.47762362944730385) scale(1.4550889293710335e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-122.96248746463611, 0.5753186963340218, 0.3726784515551578)"><path transform="translate(0.5753186963340218, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-122.59902737438321, 0.5753186963340218, 0.32792571044976504)"><path transform="translate(0.5753186963340218, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-122.16118372009922, 0.5753186963340218, 0.2831729693443723)"><path transform="translate(0.5753186963340218, 0.2831729693443723) scale(1.843801495170583e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-121.62359054033554, 0.5753186963340218, 0.23842022823897957)"><path transform="translate(0.5753186963340218, 0.23842022823897957) scale(1.6553156436528754e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-120.94791584143123, 0.5753186963340218, 0.1936674871335869)"><path transform="translate(0.5753186963340218, 0.1936674871335869) scale(1.46701295911936e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-120.07340854235245, 0.5753186963340218, 0.14891474602819416)"><path transform="translate(0.5753186963340218, 0.14891474602819416) scale(1.2789743468498116e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-118.89782799409808, 0.5753186963340218, 0.10416200492280142)"><path transform="translate(0.5753186963340218, 0.10416200492280142) scale(1.0913363153259461e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-117.23514669930253, 0.5753186963340218, 5.94092638174088e-2)"><path transform="translate(0.5753186963340218, 5.94092638174088e-2) scale(9.043482415375595e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-114.70928338000382, 0.5753186963340218, 1.4656522712016007e-2)"><path transform="translate(0.5753186963340218, 1.4656522712016007e-2) scale(7.1851774255650095e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-110.4374819547489, 0.5753186963340218, -3.0096218393376617e-2)"><path transform="translate(0.5753186963340218, -3.0096218393376617e-2) scale(5.350523024326276e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-101.83011332616807, 0.5753186963340218, -7.484895949876935e-2)"><path transform="translate(0.5753186963340218, -7.484895949876935e-2) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-78.55895613123263, 0.5753186963340218, -0.11960170060416198)"><path transform="translate(0.5753186963340218, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-17.10272896905237, 0.5753186963340218, -0.16435444170955493)"><path transform="translate(0.5753186963340218, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(21.274969971706692, 0.5753186963340218, -0.20910718281494756)"><path transform="translate(0.5753186963340218, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(33.85400350068811, 0.5753186963340218, -0.2538599239203403)"><path transform="translate(0.5753186963340218, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(39.45323630284368, 0.5753186963340218, -0.2986126650257329)"><path transform="translate(0.5753186963340218, -0.2986126650257329) scale(6.401373393287033e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(42.5608834906009, 0.5753186963340218, -0.34336540613112565)"><path transform="translate(0.5753186963340218, -0.34336540613112565) scale(8.251833385300859e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(44.52649194126508, 0.5753186963340218, -0.3881181472365184)"><path transform="translate(0.5753186963340218, -0.3881181472365184) scale(1.0117660237159754e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(45.87894579427057, 0.5753186963340218, -0.43287088834191134)"><path transform="translate(0.5753186963340218, -0.43287088834191134) scale(1.199168314657273e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(46.865427502305316, 0.5753186963340218, -0.47762362944730385)"><path transform="translate(0.5753186963340218, -0.47762362944730385) scale(1.3870580458594534e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-127.31818033121762, 0.6451912178004133, 0.3726784515551578)"><path transform="translate(0.6451912178004133, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-127.0548758414739, 0.6451912178004133, 0.32792571044976504)"><path transform="translate(0.6451912178004133, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-126.74181527940952, 0.6451912178004133, 0.2831729693443723)"><path transform="translate(0.6451912178004133, 0.2831729693443723) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-126.36344897397524, 0.6451912178004133, 0.23842022823897957)"><path transform="translate(0.6451912178004133, 0.23842022823897957) scale(1.9007311291415578e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-125.89700911770163, 0.6451912178004133, 0.1936674871335869)"><path transform="translate(0.6451912178004133, 0.1936674871335869) scale(1.702623582808729e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-125.30778402878447, 0.6451912178004133, 0.14891474602819416)"><path transform="translate(0.6451912178004133, 0.14891474602819416) scale(1.5046585859368258e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-124.54013527394423, 0.6451912178004133, 0.10416200492280142)"><path transform="translate(0.6451912178004133, 0.10416200492280142) scale(1.3069009188835499e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-123.4990190709214, 0.6451912178004133, 5.94092638174088e-2)"><path transform="translate(0.6451912178004133, 5.94092638174088e-2) scale(1.1094614546581638e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-122.00790156551338, 0.6451912178004133, 1.4656522712016007e-2)"><path transform="translate(0.6451912178004133, 1.4656522712016007e-2) scale(9.12546756618001e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-119.69891108811147, 0.6451912178004133, -3.0096218393376617e-2)"><path transform="translate(0.6451912178004133, -3.0096218393376617e-2) scale(7.165895636304934e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-115.6653128512798, 0.6451912178004133, -7.484895949876935e-2)"><path transform="translate(0.6451912178004133, -7.484895949876935e-2) scale(5.226679428112383e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-106.99426854078206, 0.6451912178004133, -0.11960170060416198)"><path transform="translate(0.6451912178004133, -0.11960170060416198) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-79.59038228090766, 0.6451912178004133, -0.16435444170955493)"><path transform="translate(0.6451912178004133, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-6.0903191370262615, 0.6451912178004133, -0.20910718281494756)"><path transform="translate(0.6451912178004133, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(24.987033159015706, 0.6451912178004133, -0.2538599239203403)"><path transform="translate(0.6451912178004133, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(34.42180499789803, 0.6451912178004133, -0.2986126650257329)"><path transform="translate(0.6451912178004133, -0.2986126650257329) scale(5.0539093567132124e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(38.698558431937975, 0.6451912178004133, -0.34336540613112565)"><path transform="translate(0.6451912178004133, -0.34336540613112565) scale(6.99023683351876e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(41.11242232647051, 0.6451912178004133, -0.3881181472365184)"><path transform="translate(0.6451912178004133, -0.3881181472365184) scale(8.948577417462493e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(42.65775470761334, 0.6451912178004133, -0.43287088834191134)"><path transform="translate(0.6451912178004133, -0.43287088834191134) scale(1.0917091197236798e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(43.73040465399771, 0.6451912178004133, -0.47762362944730385)"><path transform="translate(0.6451912178004133, -0.47762362944730385) scale(1.289111857931961e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-131.1880961936573, 0.7150637392668044, 0.3726784515551578)"><path transform="translate(0.7150637392668044, 0.3726784515551578) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-131.00070554384482, 0.7150637392668044, 0.32792571044976504)"><path transform="translate(0.7150637392668044, 0.32792571044976504) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-130.78076112578594, 0.7150637392668044, 0.2831729693443723)"><path transform="translate(0.7150637392668044, 0.2831729693443723) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-130.51898165442338, 0.7150637392668044, 0.23842022823897957)"><path transform="translate(0.7150637392668044, 0.23842022823897957) scale(2.0e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-130.20219152477122, 0.7150637392668044, 0.1936674871335869)"><path transform="translate(0.7150637392668044, 0.1936674871335869) scale(1.9841935288612878e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-129.81104216214717, 0.7150637392668044, 0.14891474602819416)"><path transform="translate(0.7150637392668044, 0.14891474602819416) scale(1.7758176327860222e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-129.3159246876593, 0.7150637392668044, 0.10416200492280142)"><path transform="translate(0.7150637392668044, 0.10416200492280142) scale(1.5675465013628296e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-128.66914833282732, 0.7150637392668044, 5.94092638174088e-2)"><path transform="translate(0.7150637392668044, 5.94092638174088e-2) scale(1.3594282868317483e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-127.78870546079273, 0.7150637392668044, 1.4656522712016007e-2)"><path transform="translate(0.7150637392668044, 1.4656522712016007e-2) scale(1.1515459019179879e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-126.52082452593937, 0.7150637392668044, -3.0096218393376617e-2)"><path transform="translate(0.7150637392668044, -3.0096218393376617e-2) scale(9.440551496031777e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-124.54032683877954, 0.7150637392668044, -7.484895949876935e-2)"><path transform="translate(0.7150637392668044, -7.484895949876935e-2) scale(7.372867494013445e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-121.02490089045055, 0.7150637392668044, -0.11960170060416198)"><path transform="translate(0.7150637392668044, -0.11960170060416198) scale(5.320834899484096e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-113.18355619766865, 0.7150637392668044, -0.16435444170955493)"><path transform="translate(0.7150637392668044, -0.16435444170955493) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-85.025680737497, 0.7150637392668044, -0.20910718281494756)"><path transform="translate(0.7150637392668044, -0.20910718281494756) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(-0.6898616587521303, 0.7150637392668044, -0.2538599239203403)"><path transform="translate(0.7150637392668044, -0.2538599239203403) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(26.413551735419986, 0.7150637392668044, -0.2986126650257329)"><path transform="translate(0.7150637392668044, -0.2986126650257329) scale(5.0e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(34.07645748390228, 0.7150637392668044, -0.34336540613112565)"><path transform="translate(0.7150637392668044, -0.34336540613112565) scale(5.368987322348765e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(37.537422287154754, 0.7150637392668044, -0.3881181472365184)"><path transform="translate(0.7150637392668044, -0.3881181472365184) scale(7.421577477884566e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(39.49476431920491, 0.7150637392668044, -0.43287088834191134)"><path transform="translate(0.7150637392668044, -0.43287088834191134) scale(9.489496617902375e-3)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g stroke-opacity="1.0" fill-opacity="0.3" stroke="#000000" stroke-width="5.0e-2" fill="#a6cee3"><g transform="rotate(40.750752273812985, 0.7150637392668044, -0.47762362944730385)"><path transform="translate(0.7150637392668044, -0.47762362944730385) scale(1.1564524472296887e-2)" d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3"/></g></g><g></g></svg>
other/bar.svg view
@@ -1,29 +1,29 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8200000000000001 -0.5532016310461193 1.59 1.1978292012302485" width="398.2203802596314" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607425" width="0.9464649808641427" x="-0.6830110786937028" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,0.39988751406074247-0.26345390217043985,0.39988751406074247"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,0.28740157480314965-0.26345390217043985,0.28740157480314965"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,0.17491563554555684-0.26345390217043985,0.17491563554555684"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,6.2429696287963965e-2-0.26345390217043985,6.2429696287963965e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,-5.005624296962885e-2-0.26345390217043985,-5.005624296962885e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,-0.1625421822272216-0.26345390217043985,-0.1625421822272216"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,-0.27502812148481437-0.26345390217043985,-0.27502812148481437"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,-0.38751406074240724-0.26345390217043985,-0.38751406074240724"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6830110786937028,-0.5-0.26345390217043985,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.41293588301462314">-4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.3004499437570304">-2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.18796400449943768">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="7.54780652418448e-2">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-3.700787401574801e-2">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.14949381327334088">6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.26197975253093353">8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.3744656917885263">10</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.48695163104611927">12</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7294459354989004, 0.39988751406074247)"><polyline points="-0.7294459354989004,0.4148875140607425--0.7294459354989004,0.38488751406074245"/></g><g transform="rotate(-90.0, -0.7294459354989004, 0.28740157480314965)"><polyline points="-0.7294459354989004,0.30240157480314966--0.7294459354989004,0.27240157480314964"/></g><g transform="rotate(-90.0, -0.7294459354989004, 0.17491563554555684)"><polyline points="-0.7294459354989004,0.18991563554555685--0.7294459354989004,0.15991563554555682"/></g><g transform="rotate(-90.0, -0.7294459354989004, 6.2429696287963965e-2)"><polyline points="-0.7294459354989004,7.742969628796396e-2--0.7294459354989004,4.7429696287963966e-2"/></g><g transform="rotate(-90.0, -0.7294459354989004, -5.005624296962885e-2)"><polyline points="-0.7294459354989004,-3.505624296962885e-2--0.7294459354989004,-6.505624296962885e-2"/></g><g transform="rotate(-90.0, -0.7294459354989004, -0.1625421822272216)"><polyline points="-0.7294459354989004,-0.1475421822272216--0.7294459354989004,-0.17754218222722162"/></g><g transform="rotate(-90.0, -0.7294459354989004, -0.27502812148481437)"><polyline points="-0.7294459354989004,-0.26002812148481436--0.7294459354989004,-0.2900281214848144"/></g><g transform="rotate(-90.0, -0.7294459354989004, -0.38751406074240724)"><polyline points="-0.7294459354989004,-0.3725140607424072--0.7294459354989004,-0.40251406074240725"/></g><g transform="rotate(-90.0, -0.7294459354989004, -0.5)"><polyline points="-0.7294459354989004,-0.485--0.7294459354989004,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607425" width="3.1548832695471596e-3" x="-0.7215587273250326" y="-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.6356878296504958, 0.5)" x="-0.6356878296504958" y="0.5">row 1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.5410413315640814, 0.5)" x="-0.5410413315640814" y="0.5">row 2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.4463948334776671, 0.5)" x="-0.4463948334776671" y="0.5">row 3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.3517483353912529, 0.5)" x="-0.3517483353912529" y="0.5">row 4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.2571018373048386, 0.5)" x="-0.2571018373048386" y="0.5">row 5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.16245533921842426, 0.5)" x="-0.16245533921842426" y="0.5">row 6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -6.780884113201002e-2, 0.5)" x="-6.780884113201002e-2" y="0.5">row 7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 2.68376569544041e-2, 0.5)" x="2.68376569544041e-2" y="0.5">row 8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.12148415504081833, 0.5)" x="0.12148415504081833" y="0.5">row 9</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.21613065312723245, 0.5)" x="0.21613065312723245" y="0.5">row 10</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6356878296504958,0.4396344206974129--0.6356878296504958,0.40963442069741285"/><polyline points="-0.5410413315640814,0.4396344206974129--0.5410413315640814,0.40963442069741285"/><polyline points="-0.4463948334776671,0.4396344206974129--0.4463948334776671,0.40963442069741285"/><polyline points="-0.3517483353912529,0.4396344206974129--0.3517483353912529,0.40963442069741285"/><polyline points="-0.2571018373048386,0.4396344206974129--0.2571018373048386,0.40963442069741285"/><polyline points="-0.16245533921842426,0.4396344206974129--0.16245533921842426,0.40963442069741285"/><polyline points="-6.780884113201002e-2,0.4396344206974129--6.780884113201002e-2,0.40963442069741285"/><polyline points="2.68376569544041e-2,0.4396344206974129-2.68376569544041e-2,0.40963442069741285"/><polyline points="0.12148415504081833,0.4396344206974129-0.12148415504081833,0.40963442069741285"/><polyline points="0.21613065312723245,0.4396344206974129-0.21613065312723245,0.40963442069741285"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.499437570303744e-3" width="0.9464649808641427" x="-0.6830110786937028" y="0.4088863892013499"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cee3" stroke-width="2.0e-3" fill="#a6cee3"><rect height="5.624296962879638e-2" width="3.785859923456569e-2" x="-0.6735464288850614" y="0.11867266591676046"/><rect height="0.11248593925759287" width="3.785859923456569e-2" x="-0.5788999307986471" y="6.2429696287963965e-2"/><rect height="0.1687289088863892" width="3.785859923456569e-2" x="-0.484253432712233" y="6.186726659167641e-3"/><rect height="0.28121484814398207" width="3.785859923456575e-2" x="-0.3896069346258187" y="-0.10629921259842523"/><rect height="0.4499437570303712" width="3.785859923456564e-2" x="-0.2949604365394044" y="-0.27502812148481437"/><rect height="0.0" width="3.785859923456558e-2" x="-0.20031393845299017" y="0.17491563554555684"/><rect height="0.11248593925759282" width="3.7858599234565804e-2" x="-0.10566744036657583" y="0.17491563554555684"/><rect height="0.6186726659167605" width="3.785859923456558e-2" x="-1.1020942280161594e-2" y="-0.44375703037120373"/><rect height="0.11248593925759287" width="3.785859923456569e-2" x="8.362555580625264e-2" y="6.2429696287963965e-2"/><rect height="5.624296962879638e-2" width="3.785859923456569e-2" x="0.17827205389266676" y="0.11867266591676046"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="#1f78b4"><rect height="5.624296962879638e-2" width="3.7858599234565804e-2" x="-0.6356878296504958" y="0.11867266591676046"/><rect height="0.11248593925759287" width="3.785859923456569e-2" x="-0.5410413315640814" y="6.2429696287963965e-2"/><rect height="0.1687289088863892" width="3.785859923456575e-2" x="-0.4463948334776673" y="6.186726659167641e-3"/><rect height="0.22497187851518569" width="3.785859923456564e-2" x="-0.35174833539125294" y="-5.005624296962885e-2"/><rect height="0.28121484814398207" width="3.785859923456575e-2" x="-0.25710183730483877" y="-0.10629921259842523"/><rect height="0.33745781777277845" width="3.7858599234565804e-2" x="-0.1624553392184246" y="-0.1625421822272216"/><rect height="0.3937007874015748" width="3.785859923456536e-2" x="-6.780884113201002e-2" y="-0.218785151856018"/><rect height="0.4499437570303712" width="3.785859923456569e-2" x="2.6837656954403988e-2" y="-0.27502812148481437"/><rect height="0.5061867266591675" width="3.7858599234565804e-2" x="0.12148415504081833" y="-0.33127109111361075"/><rect height="0.562429696287964" width="3.7858599234565915e-2" x="0.21613065312723245" y="-0.38751406074240724"/></g><g></g><g fill-opacity="1.0" font-size="4.0e-2" stroke="none" stroke-width="0.0" fill="#a6cee3" text-anchor="middle"><text x="-0.6546171292677786" y="8.942632170978632e-2">1</text><text x="-0.5599706311813644" y="3.3183352080989936e-2">2</text><text x="-0.4653241330949501" y="-2.30596175478065e-2">3</text><text x="-0.3706776350085358" y="-0.13554555680539926">5</text><text x="-0.27603113692212167" y="-0.3042744656917884">8</text><text x="-0.1813846388357072" y="0.14566929133858275">0</text><text x="-8.673814074929309e-2" y="0.3605174353205849">-2</text><text x="7.908357337121141e-3" y="-0.47300337457817765">11</text><text x="0.10255485542353537" y="3.3183352080989936e-2">2</text><text x="0.19720135350994994" y="8.942632170978632e-2">1</text></g><g fill-opacity="1.0" font-size="4.0e-2" stroke="none" stroke-width="0.0" fill="#1f78b4" text-anchor="middle"><text x="-0.6167585300332128" y="8.942632170978632e-2">1</text><text x="-0.5221120319467987" y="3.3183352080989936e-2">2</text><text x="-0.42746553386038433" y="-2.30596175478065e-2">3</text><text x="-0.3328190357739701" y="-7.930258717660288e-2">4</text><text x="-0.23817253768755586" y="-0.13554555680539926">5</text><text x="-0.14352603960114174" y="-0.19178852643419564">6</text><text x="-4.887954151472729e-2" y="-0.24803149606299213">7</text><text x="4.5766956571686945e-2" y="-0.3042744656917884">8</text><text x="0.14041345465810107" y="-0.3605174353205849">9</text><text x="0.23505995274451563" y="-0.41676040494938116">10</text></g><g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="8.0e-3" fill="#ffffff"><rect height="0.2476490438695163" width="0.303121184538089" x="0.4191158426898962" y="-0.16986386043458757"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.44435490884627304" y="1.911251751816828e-2">column 2</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b4" stroke-width="8.0e-4" fill="#1f78b4"><rect height="4.3194600674915595e-2" width="3.0286879387652732e-2" x="0.6664586910223917" y="-1.7648728080408294e-3"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.44435490884627304" y="-9.391335424786107e-2">column 1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cee3" stroke-width="8.0e-4" fill="#a6cee3"><rect height="4.319460067491565e-2" width="3.0286879387652732e-2" x="0.6664586910223917" y="-0.11479074457407024"/></g><g></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8200000000000001 -0.5531722096956032 1.59 1.1977997798797322" width="398.2301616785188" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="5.0e-2" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.9019165727170236" width="0.9952977709753474" x="-0.7118270128238589" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.7118270128238589,0.40191657271702363+0.2834707581514886,0.40191657271702363"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.7118270128238589,0.28917700112739575+0.2834707581514886,0.28917700112739575"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.7118270128238589,0.17643742953776775+0.2834707581514886,0.17643742953776775"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.7118270128238589,6.369785794813976e-2+0.2834707581514886,6.369785794813976e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.7118270128238589,-4.904171364148824e-2+0.2834707581514886,-4.904171364148824e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.7118270128238589,-0.16178128523111612+0.2834707581514886,-0.16178128523111612"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.7118270128238589,-0.2745208568207441+0.2834707581514886,-0.2745208568207441"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.7118270128238589,-0.387260428410372+0.2834707581514886,-0.387260428410372"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.7118270128238589,-0.5+0.2834707581514886,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.4149943630214205">-4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.30225479143179257">-2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.18951521984216457">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="7.677564825253663e-2">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-3.596392333709142e-2">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.1487034949267193">6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.2614430665163472">8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.3741826381059751">10</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.4869222096956032">12</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><g transform="rotate(-90.0, -0.7294106067777567, 0.40191657271702363)"><polyline points="-0.7294106067777567,0.41691657271702365+-0.7294106067777567,0.3869165727170236"/></g><g transform="rotate(-90.0, -0.7294106067777567, 0.28917700112739575)"><polyline points="-0.7294106067777567,0.30417700112739576+-0.7294106067777567,0.27417700112739574"/></g><g transform="rotate(-90.0, -0.7294106067777567, 0.17643742953776775)"><polyline points="-0.7294106067777567,0.19143742953776777+-0.7294106067777567,0.16143742953776774"/></g><g transform="rotate(-90.0, -0.7294106067777567, 6.369785794813976e-2)"><polyline points="-0.7294106067777567,7.869785794813976e-2+-0.7294106067777567,4.869785794813976e-2"/></g><g transform="rotate(-90.0, -0.7294106067777567, -4.904171364148824e-2)"><polyline points="-0.7294106067777567,-3.404171364148824e-2+-0.7294106067777567,-6.404171364148824e-2"/></g><g transform="rotate(-90.0, -0.7294106067777567, -0.16178128523111612)"><polyline points="-0.7294106067777567,-0.1467812852311161+-0.7294106067777567,-0.17678128523111614"/></g><g transform="rotate(-90.0, -0.7294106067777567, -0.2745208568207441)"><polyline points="-0.7294106067777567,-0.2595208568207441+-0.7294106067777567,-0.28952085682074413"/></g><g transform="rotate(-90.0, -0.7294106067777567, -0.387260428410372)"><polyline points="-0.7294106067777567,-0.372260428410372+-0.7294106067777567,-0.402260428410372"/></g><g transform="rotate(-90.0, -0.7294106067777567, -0.5)"><polyline points="-0.7294106067777567,-0.485+-0.7294106067777567,-0.515"/></g></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.9019165727170236" width="2.6541273892675132e-3" x="-0.7211164586862954" y="-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.6620621242750915, 0.5)" x="-0.6620621242750915" y="0.5">row 1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.5625323471775566, 0.5)" x="-0.5625323471775566" y="0.5">row 2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.46300257008002194, 0.5)" x="-0.46300257008002194" y="0.5">row 3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.3634727929824872, 0.5)" x="-0.3634727929824872" y="0.5">row 4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.2639430158849524, 0.5)" x="-0.2639430158849524" y="0.5">row 5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.16441323878741765, 0.5)" x="-0.16441323878741765" y="0.5">row 6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -6.48834616898828e-2, 0.5)" x="-6.48834616898828e-2" y="0.5">row 7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 3.464631540765173e-2, 0.5)" x="3.464631540765173e-2" y="0.5">row 8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 0.13417609250518647, 0.5)" x="0.13417609250518647" y="0.5">row 9</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 0.23370586960272122, 0.5)" x="0.23370586960272122" y="0.5">row 10</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><polyline points="-0.6620621242750915,0.4408173618940248+-0.6620621242750915,0.4108173618940248"/><polyline points="-0.5625323471775566,0.4408173618940248+-0.5625323471775566,0.4108173618940248"/><polyline points="-0.46300257008002194,0.4408173618940248+-0.46300257008002194,0.4108173618940248"/><polyline points="-0.3634727929824872,0.4408173618940248+-0.3634727929824872,0.4108173618940248"/><polyline points="-0.2639430158849524,0.4408173618940248+-0.2639430158849524,0.4108173618940248"/><polyline points="-0.16441323878741765,0.4408173618940248+-0.16441323878741765,0.4108173618940248"/><polyline points="-6.48834616898828e-2,0.4408173618940248+-6.48834616898828e-2,0.4108173618940248"/><polyline points="3.464631540765173e-2,0.4408173618940248+3.464631540765173e-2,0.4108173618940248"/><polyline points="0.13417609250518647,0.4408173618940248+0.13417609250518647,0.4108173618940248"/><polyline points="0.23370586960272122,0.4408173618940248+0.23370586960272122,0.4108173618940248"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="3.6076662908681167e-3" width="0.9952977709753474" x="-0.7118270128238589" y="0.4109357384441939"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#b05929" stroke-width="2.0e-3" fill="#b05929"><rect height="5.6369785794814e-2" width="3.981191083901392e-2" x="-0.7018740351141054" y="0.12006764374295376"/><rect height="0.112739571589628" width="3.981191083901381e-2" x="-0.6023442580165705" y="6.369785794813976e-2"/><rect height="0.16910935738444194" width="3.981191083901392e-2" x="-0.502814480919036" y="7.328072153325815e-3"/><rect height="0.2818489289740699" width="3.9811910839013975e-2" x="-0.4032847038215012" y="-0.10541149943630213"/><rect height="0.4509582863585119" width="3.9811910839013975e-2" x="-0.3037549267239665" y="-0.2745208568207441"/><rect height="0.0" width="3.981191083901392e-2" x="-0.20422514962643168" y="0.17643742953776775"/><rect height="0.112739571589628" width="3.981191083901425e-2" x="-0.10469537252889705" y="0.17643742953776775"/><rect height="0.6200676437429539" width="3.98119108390137e-2" x="-5.165595431362191e-3" y="-0.4436302142051861"/><rect height="0.112739571589628" width="3.981191083901414e-2" x="9.436418166617233e-2" y="6.369785794813976e-2"/><rect height="5.6369785794814e-2" width="3.981191083901403e-2" x="0.19389395876370719" y="0.12006764374295376"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cfe3" stroke-width="2.0e-3" fill="#a6cfe3"><rect height="5.6369785794814e-2" width="3.981191083901392e-2" x="-0.6620621242750915" y="0.12006764374295376"/><rect height="0.112739571589628" width="3.981191083901392e-2" x="-0.5625323471775567" y="6.369785794813976e-2"/><rect height="0.16910935738444194" width="3.981191083901392e-2" x="-0.4630025700800221" y="7.328072153325815e-3"/><rect height="0.225479143179256" width="3.981191083901375e-2" x="-0.36347279298248725" y="-4.904171364148824e-2"/><rect height="0.2818489289740699" width="3.981191083901381e-2" x="-0.2639430158849525" y="-0.10541149943630213"/><rect height="0.3382187147688839" width="3.981191083901381e-2" x="-0.16441323878741776" y="-0.16178128523111612"/><rect height="0.3945885005636979" width="3.981191083901359e-2" x="-6.48834616898828e-2" y="-0.21815107102593012"/><rect height="0.4509582863585119" width="3.981191083901403e-2" x="3.464631540765151e-2" y="-0.2745208568207441"/><rect height="0.5073280721533258" width="3.981191083901392e-2" x="0.13417609250518647" y="-0.330890642615558"/><rect height="0.5636978579481398" width="3.981191083901381e-2" x="0.23370586960272122" y="-0.387260428410372"/></g><g></g><g fill-opacity="1.0" font-size="4.0e-2" stroke="none" stroke-width="0.0" fill="#b05929" text-anchor="middle"><text x="-0.6819680796945985" y="9.075535512965055e-2">1</text><text x="-0.5824383025970638" y="3.43855693348365e-2">2</text><text x="-0.482908525499529" y="-2.19842164599775e-2">3</text><text x="-0.3833787484019942" y="-0.1347237880496054">5</text><text x="-0.28384897130445946" y="-0.30383314543404727">8</text><text x="-0.18431919420692466" y="0.1471251409244645">0</text><text x="-8.478941710938992e-2" y="0.3624577226606539">-2</text><text x="1.4740359988144824e-2" y="-0.47294250281848926">11</text><text x="0.11427013708567912" y="3.43855693348365e-2">2</text><text x="0.21379991418321442" y="9.075535512965055e-2">1</text></g><g fill-opacity="1.0" font-size="4.0e-2" stroke="none" stroke-width="0.0" fill="#a6cfe3" text-anchor="middle"><text x="-0.6421561688555846" y="9.075535512965055e-2">1</text><text x="-0.5426263917580497" y="3.43855693348365e-2">2</text><text x="-0.4430966146605151" y="-2.19842164599775e-2">3</text><text x="-0.34356683756298034" y="-7.835400225479139e-2">4</text><text x="-0.2440370604654456" y="-0.1347237880496054">5</text><text x="-0.14450728336791085" y="-0.19109357384441938">6</text><text x="-4.497750627037611e-2" y="-0.24746335963923338">7</text><text x="5.455227082715863e-2" y="-0.30383314543404727">8</text><text x="0.15408204792469338" y="-0.3602029312288614">9</text><text x="0.2536118250222281" y="-0.41657271702367527">10</text></g><g></g><g stroke-opacity="1.0" fill-opacity="0.0" stroke="#0d0d0d" stroke-width="4.0e-3" fill="#0d0d0d"><rect height="0.24820744081172497" width="0.3187606994510377" x="0.424603982075793" y="-0.1388601712811144"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="0.45114525596846855" y="5.0542308989460605e-2">column 2</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cfe3" stroke-width="8.0e-4" fill="#a6cfe3"><rect height="4.3291995490417234e-2" width="3.1849528671210825e-2" x="0.6847084662240173" y="2.0237912146168657e-2"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="0.45114525596846855" y="-6.273841254379753e-2">column 1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#b05929" stroke-width="8.0e-4" fill="#b05929"><rect height="4.329199549041718e-2" width="3.1849528671210825e-2" x="0.6847084662240173" y="-9.304280938708964e-2"/></g><g></g></svg>
− other/boundTextBug.svg
@@ -1,1 +0,0 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.775 -0.5469860228716645 1.9185575868372942 1.0669860228716646" width="539.4328170317715" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="-0.75" y="0.18233799237611187">a pretty long piece of text</text></g><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="-6.444241316270582e-2" y="-0.45298602287166456">another pretty long piece of text</text></g><g></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#1f78b4"><rect height="7.369758576874202e-2" width="0.66636197440585" x="-0.75" y="0.13532401524777637"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#1f78b4"><rect height="7.369758576874208e-2" width="0.8144424131627058" x="-6.444241316270582e-2" y="-0.5"/></g></svg>
other/compound.svg view
@@ -1,5 +1,5 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8300000000000001 -0.634 1.6600000000000001 1.1965" width="416.2139573756791" xmlns:xlink="http://www.w3.org/1999/xlink"><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="0.5">0,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="0.30000000000000004">0,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="9.999999999999998e-2">0,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="-0.1000000000000002">0,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="-0.30000000000000004">0,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="-0.5">0,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="0.5">1,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="0.30000000000000004">1,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="9.999999999999998e-2">1,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="-0.1000000000000002">1,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="-0.30000000000000004">1,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="-0.5">1,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="0.5">2,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="0.30000000000000004">2,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="9.999999999999998e-2">2,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="-0.1000000000000002">2,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="-0.30000000000000004">2,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="-0.5">2,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="0.5">3,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="0.30000000000000004">3,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="9.999999999999998e-2">3,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="-0.1000000000000002">3,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="-0.30000000000000004">3,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="-0.5">3,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="0.5">4,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="0.30000000000000004">4,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="9.999999999999998e-2">4,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="-0.1000000000000002">4,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="-0.30000000000000004">4,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="-0.5">4,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="0.5">5,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="0.30000000000000004">5,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="9.999999999999998e-2">5,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.1000000000000002">5,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.30000000000000004">5,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.5">5,5</text></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="9.499999999999997e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.1050000000000002"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.30500000000000005"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="9.499999999999997e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.1050000000000002"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.30500000000000005"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="9.499999999999997e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.1050000000000002"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.30500000000000005"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="9.499999999999997e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.1050000000000002"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.30500000000000005"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="9.499999999999997e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.1050000000000002"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.30500000000000005"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="9.499999999999997e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.1050000000000002"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.30500000000000005"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.505"/></g><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.75,0.30000000000000004--0.44999999999999996,0.30000000000000004--0.1499999999999999,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.75,0.5-8.999999999999975e-2,-0.1000000000000002"/></g><g stroke-opacity="1.0" stroke="#fb9a99" stroke-width="1.0e-2" fill="none"><polyline points="-0.6,-0.30000000000000004--0.6,0.5"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cee3" stroke-width="5.0e-3" fill="#a6cee3"><ellipse rx="4.0e-2" ry="6.0e-2" cy="0.30000000000000004" cx="-0.75"/><ellipse rx="4.0e-2" ry="6.0e-2" cy="0.30000000000000004" cx="-0.44999999999999996"/><ellipse rx="4.0e-2" ry="6.0e-2" cy="-0.5" cx="-0.1499999999999999"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b4" stroke-width="5.0e-3" fill="#1f78b4"><rect height="8.000000000000002e-2" width="8.000000000000007e-2" x="-0.79" y="0.46"/><rect height="8.000000000000002e-2" width="8.000000000000002e-2" x="4.9999999999999746e-2" y="-0.1400000000000002"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#e31a1c" stroke-width="5.0e-3" fill="#e31a1c"><circle cy="-0.30000000000000004" r="4.0e-2" cx="-0.6"/><circle cy="0.5" r="4.0e-2" cx="-0.6"/></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8300000000000001 -0.594 1.6600000000000001 1.1564999999999999" width="430.60959792477314" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="0.46153846153846156">0,0</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="0.2692307692307693">0,1</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="7.692307692307693e-2">0,2</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="-0.11538461538461542">0,3</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="-0.3076923076923077">0,4</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="-0.5">0,5</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.44999999999999996" y="0.46153846153846156">1,0</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.44999999999999996" y="0.2692307692307693">1,1</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.44999999999999996" y="7.692307692307693e-2">1,2</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.44999999999999996" y="-0.11538461538461542">1,3</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.44999999999999996" y="-0.3076923076923077">1,4</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.44999999999999996" y="-0.5">1,5</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1499999999999999" y="0.46153846153846156">2,0</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1499999999999999" y="0.2692307692307693">2,1</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1499999999999999" y="7.692307692307693e-2">2,2</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1499999999999999" y="-0.11538461538461542">2,3</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1499999999999999" y="-0.3076923076923077">2,4</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1499999999999999" y="-0.5">2,5</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.15000000000000013" y="0.46153846153846156">3,0</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.15000000000000013" y="0.2692307692307693">3,1</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.15000000000000013" y="7.692307692307693e-2">3,2</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.15000000000000013" y="-0.11538461538461542">3,3</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.15000000000000013" y="-0.3076923076923077">3,4</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.15000000000000013" y="-0.5">3,5</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4500000000000002" y="0.46153846153846156">4,0</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4500000000000002" y="0.2692307692307693">4,1</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4500000000000002" y="7.692307692307693e-2">4,2</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4500000000000002" y="-0.11538461538461542">4,3</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4500000000000002" y="-0.3076923076923077">4,4</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4500000000000002" y="-0.5">4,5</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="0.46153846153846156">5,0</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="0.2692307692307693">5,1</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="7.692307692307693e-2">5,2</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="-0.11538461538461542">5,3</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="-0.3076923076923077">5,4</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="-0.5">5,5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.495"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.3026923076923077"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.11038461538461541"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-8.192307692307688e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.27423076923076917"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.46653846153846135"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.495"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.3026923076923077"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.11038461538461541"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-8.192307692307688e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.27423076923076917"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.46653846153846135"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.495"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.3026923076923077"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.11038461538461541"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-8.192307692307688e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.27423076923076917"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.46653846153846135"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.495"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.3026923076923077"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.11038461538461541"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-8.192307692307688e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.27423076923076917"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.46653846153846135"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.495"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.3026923076923077"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.11038461538461541"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-8.192307692307688e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.27423076923076917"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.46653846153846135"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.495"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.3026923076923077"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.11038461538461541"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-8.192307692307688e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.27423076923076917"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.46653846153846135"/></g><g stroke-opacity="1.0" stroke="#b05929" stroke-width="1.5e-2" fill="none"><polyline points="-0.75,0.3076923076923077+-0.44999999999999996,0.3076923076923077+-0.1499999999999999,-0.46153846153846134"/></g><g stroke-opacity="1.0" stroke="#a6cfe3" stroke-width="3.0e-2" fill="none"><polyline points="-0.75,0.5+8.999999999999975e-2,-7.692307692307687e-2"/></g><g stroke-opacity="1.0" stroke="#1f78b5" stroke-width="1.0e-2" fill="none"><polyline points="-0.6,-0.26923076923076916+-0.6,0.5"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#b05929" stroke-width="5.0e-3" fill="#b05929"><ellipse rx="4.0e-2" ry="6.0e-2" cy="0.3076923076923077" cx="-0.75"/><ellipse rx="4.0e-2" ry="6.0e-2" cy="0.3076923076923077" cx="-0.44999999999999996"/><ellipse rx="4.0e-2" ry="6.0e-2" cy="-0.46153846153846134" cx="-0.1499999999999999"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cfe3" stroke-width="5.0e-3" fill="#a6cfe3"><rect height="8.000000000000002e-2" width="8.000000000000007e-2" x="-0.79" y="0.46"/><rect height="8.000000000000002e-2" width="8.000000000000002e-2" x="4.9999999999999746e-2" y="-0.11692307692307688"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="5.0e-3" fill="#1f78b5"><circle cy="-0.26923076923076916" r="4.0e-2" cx="-0.6"/><circle cy="0.5" r="4.0e-2" cx="-0.6"/></g></svg>
other/cubic.svg view
@@ -1,145 +1,101 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.5564302334627085 -0.553332290265392 1.054360466925417 1.2787015914587672" width="247.36665864064085" xmlns:xlink="http://www.w3.org/1999/xlink"><g transform="translate(-6.753750000000003e-2, 0.7284310344827585)" fill-opacity="1.0" font-size="6.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text transform="rotate(-0.0, 3.282076968850922e-2, -5.4561733289383296e-2)" x="3.282076968850922e-2" y="-5.4561733289383296e-2">M 0,0 C 1.0,0 0,-1.0 1.0,-1.0</text></g><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8908765334212332" width="0.8572189275483985" x="-0.39578869408568995" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,0.39087653342123324-0.4614302334627085,0.39087653342123324"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,0.30178888007911-0.4614302334627085,0.30178888007911"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,0.2127012267369866-0.4614302334627085,0.2127012267369866"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,0.12361357339486329-0.4614302334627085,0.12361357339486329"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,3.452592005273997e-2-0.4614302334627085,3.452592005273997e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,-5.4561733289383296e-2-0.4614302334627085,-5.4561733289383296e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,-0.14364938663150661-0.4614302334627085,-0.14364938663150661"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,-0.23273703997363004-0.4614302334627085,-0.23273703997363004"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,-0.32182469331575336-0.4614302334627085,-0.32182469331575336"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,-0.4109123466578767-0.4614302334627085,-0.4109123466578767"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,-0.5-0.4614302334627085,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="0.4037942431558411">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="0.3147065898137178">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="0.22561893647159448">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="0.13653128312947116">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="4.744362978734784e-2">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="-4.164402355477548e-2">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="-0.1307316768968989">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="-0.21981933023902223">0.7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="-0.30890698358114543">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="-0.39799463692326875">0.9</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4614302334627085" y="-0.48708229026539196">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.4335063268978194, 0.39087653342123324)"><polyline points="-0.4335063268978194,0.40587653342123325--0.4335063268978194,0.3758765334212332"/></g><g transform="rotate(-90.0, -0.4335063268978194, 0.30178888007911)"><polyline points="-0.4335063268978194,0.31678888007911--0.4335063268978194,0.28678888007910996"/></g><g transform="rotate(-90.0, -0.4335063268978194, 0.2127012267369866)"><polyline points="-0.4335063268978194,0.22770122673698662--0.4335063268978194,0.1977012267369866"/></g><g transform="rotate(-90.0, -0.4335063268978194, 0.12361357339486329)"><polyline points="-0.4335063268978194,0.1386135733948633--0.4335063268978194,0.10861357339486329"/></g><g transform="rotate(-90.0, -0.4335063268978194, 3.452592005273997e-2)"><polyline points="-0.4335063268978194,4.9525920052739966e-2--0.4335063268978194,1.9525920052739967e-2"/></g><g transform="rotate(-90.0, -0.4335063268978194, -5.4561733289383296e-2)"><polyline points="-0.4335063268978194,-3.95617332893833e-2--0.4335063268978194,-6.95617332893833e-2"/></g><g transform="rotate(-90.0, -0.4335063268978194, -0.14364938663150661)"><polyline points="-0.4335063268978194,-0.1286493866315066--0.4335063268978194,-0.15864938663150663"/></g><g transform="rotate(-90.0, -0.4335063268978194, -0.23273703997363004)"><polyline points="-0.4335063268978194,-0.21773703997363003--0.4335063268978194,-0.24773703997363006"/></g><g transform="rotate(-90.0, -0.4335063268978194, -0.32182469331575336)"><polyline points="-0.4335063268978194,-0.30682469331575335--0.4335063268978194,-0.3368246933157534"/></g><g transform="rotate(-90.0, -0.4335063268978194, -0.4109123466578767)"><polyline points="-0.4335063268978194,-0.39591234665787667--0.4335063268978194,-0.4259123466578767"/></g><g transform="rotate(-90.0, -0.4335063268978194, -0.5)"><polyline points="-0.4335063268978194,-0.485--0.4335063268978194,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8908765334212332" width="4.286094637741988e-3" x="-0.42279109030346446" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.39578869408568995,0.39087653342123324--0.39578869408568995,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.31006680133085013,0.39087653342123324--0.31006680133085013,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.22434490857601025,0.39087653342123324--0.22434490857601025,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.13862301582117037,0.39087653342123324--0.13862301582117037,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-5.2901123066330547e-2,0.39087653342123324--5.2901123066330547e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.282076968850922e-2,0.39087653342123324-3.282076968850922e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.1185426624433491,0.39087653342123324-0.1185426624433491,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.20426455519818898,0.39087653342123324-0.20426455519818898,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.28998644795302875,0.39087653342123324-0.28998644795302875,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.3757083407078686,0.39087653342123324-0.3757083407078686,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4614302334627085,0.39087653342123324-0.4614302334627085,-0.5"/></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.39578869408568995" y="0.5">0</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.31006680133085013" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.22434490857601025" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.13862301582117037" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-5.2901123066330547e-2" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.282076968850922e-2" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.1185426624433491" y="0.5">0.6</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.20426455519818898" y="0.5">0.7</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.28998644795302875" y="0.5">0.8</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.3757083407078686" y="0.5">0.9</text></g><g fill-opacity="1.0" font-size="4.2744827586206895e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4614302334627085" y="0.5">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.39578869408568995,0.44507510089176744--0.39578869408568995,0.4150751008917674"/><polyline points="-0.31006680133085013,0.44507510089176744--0.31006680133085013,0.4150751008917674"/><polyline points="-0.22434490857601025,0.44507510089176744--0.22434490857601025,0.4150751008917674"/><polyline points="-0.13862301582117037,0.44507510089176744--0.13862301582117037,0.4150751008917674"/><polyline points="-5.2901123066330547e-2,0.44507510089176744--5.2901123066330547e-2,0.4150751008917674"/><polyline points="3.282076968850922e-2,0.44507510089176744-3.282076968850922e-2,0.4150751008917674"/><polyline points="0.1185426624433491,0.44507510089176744-0.1185426624433491,0.4150751008917674"/><polyline points="0.20426455519818898,0.44507510089176744-0.20426455519818898,0.4150751008917674"/><polyline points="0.28998644795302875,0.44507510089176744-0.28998644795302875,0.4150751008917674"/><polyline points="0.3757083407078686,0.44507510089176744-0.3757083407078686,0.4150751008917674"/><polyline points="0.4614302334627085,0.44507510089176744-0.4614302334627085,0.4150751008917674"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.454382667106127e-3" width="0.8572189275483985" x="-0.39578869408568995" y="0.4144847615568959"/></g><g stroke-opacity="0.0" fill-opacity="0.1" stroke="#000000" stroke-width="1.0e-2" fill="#e31a1c"><path d="M -0.3958,0.3909 C 0.4614,0.3909 -0.3958,-0.5 0.4614,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="-0.39578869408568995,0.39087653342123324--0.3705830287400569,0.3906110522142737--0.34638545285322064,0.38982173560566247--0.32317539317092014,0.3885192741138007--0.30093227643889436,0.3867143582570892--0.27963552940288205,0.3844176785539294--0.25926457880862186,0.3816399255227219--0.23979885140185278,0.3783917896818681--0.22121777392831368,0.3746839615497689--0.20350077313374337,0.3705271316448254--0.18662727576388072,0.3659319904854387--0.17057670856446455,0.36090922859000985--0.15532849828123368,0.3554695364769398--0.1408620716599268,0.3496236046646296--0.12715685544628302,0.34338212367148047--0.11419227638604112,0.33675578401589334--0.10194776122493987,0.3297552762162693--9.040273670871796e-2,0.32239129079100937--7.953662958311442e-2,0.3146745182585146--6.9328866593868e-2,0.30661564913718614--5.975887448671763e-2,0.298225373945425--5.080608000740222e-2,0.28951438320163225--4.244990990166053e-2,0.2804933674242088--3.466979091523131e-2,0.27117301713155584--2.744514979385343e-2,0.2615640228420744--2.075541328326569e-2,0.2516770750741656--1.4580008129207067e-2,0.24152286434623033--8.898361077416261e-3,0.23111208117666981--3.689898873632136e-3,0.22045541608388503-1.0659517364063342e-3,0.20956355958627704-5.38976400696034e-3,0.19844720220224693-9.30211119229124e-3,0.18711703445019567-1.2823566546660059e-2,0.17558374684852435-1.5974703324327988e-2,0.16385802991563408-1.877609477955622e-2,0.15195057416992586-2.124831416660583e-2,0.1398720701298008-2.341193473973796e-2,0.12763320831365993-2.5287529753214022e-2,0.11524467923990422-2.6895672461294762e-2,0.10271717342693487-2.8256936118241538e-2,9.006138139315278e-2-2.939189397831571e-2,7.728799365695921e-2-3.0321119295778076e-2,6.440770073675495e-2-3.1065185324890165e-2,5.143119315094141e-2-3.1644665319912835e-2,3.836916141791924e-2-3.2080132535107386e-2,2.523229605608962e-2-3.239216022473518e-2,1.2031287583853856e-2-3.2601321643056846e-2,-1.2231734803873628e-3-3.272819004433414e-2,-1.4520396618232678e-2-3.2793338682827744e-2,-2.7849691311281122e-2-3.281734081279897e-2,-4.1200367041131725e-2-3.282076968850922e-2,-5.4561733289383296e-2-3.282419856421942e-2,-6.792309953763498e-2-3.284820069419081e-2,-8.127377526748558e-2-3.2913349332684416e-2,-9.460306996053414e-2-3.3040217733961486e-2,-0.10790029309837945-3.324937915228349e-2,-0.12115475416262056-3.3561406841910946e-2,-0.13435576263485638-3.399687405710555e-2,-0.14749262799668583-3.457635405212839e-2,-0.16055465972970806-3.532042008124037e-2,-0.17353116731552165-3.624964539870296e-2,-0.18641146023572586-3.738460325877685e-2,-0.19918484797191938-3.874586691572379e-2,-0.21184064000570157-4.035400962380464e-2,-0.22436814581867093-4.222960463728054e-2,-0.23675667489242658-4.439322521041267e-2,-0.24899553670856756-4.6865444597462114e-2,-0.26107404074869256-4.966683605269051e-2,-0.27298149649440073-5.281797283035827e-2,-0.2847072134272911-5.633942818472715e-2,-0.2962405010289624-6.025177537005799e-2,-0.3075706687810137-6.457558764061211e-2,-0.31868702616504374-6.933143825065058e-2,-0.3295788826626517-7.45399004544346e-2,-0.3402355477554364-8.022154750622545e-2,-0.35064633092499686-8.639695266028413e-2,-0.3608005416529322-9.308668917087193e-2,-0.37068748942084107-0.1003113302922497,-0.38029648371032254-0.10809144927867897,-0.3896168340029754-0.11644761938442083,-0.39863784978039896-0.12540041386373624,-0.40734884052419174-0.13497040597088672,-0.415739115715953-0.14517816896013302,-0.42379798483728115-0.15604427608573646,-0.43151475736977596-0.1675893006019581,-0.4388787427950359-0.17983381576305946,-0.44587925059466005-0.1927983948233014,-0.45250559025024706-0.20650361103694537,-0.4587470712433963-0.22097003765825207,-0.4645930030557063-0.23621824794148294,-0.47003269516877655-0.2522688151408994,-0.4750554570642055-0.2691423125107618,-0.4796505982235919-0.2868593133053323,-0.4838074281285355-0.3054403907788714,-0.48751525626063485-0.3249061181856404,-0.49076339210148845-0.3452770687799004,-0.49354114513269587-0.36657381581591286,-0.49583782483585603-0.3888169325479387,-0.4976427406925674-0.41202699223023886,-0.49894520218442906-0.43622456811707533,-0.4997345187930404-0.4614302334627085,-0.5"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.41078869408568996" y="0.3758765334212332"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.4464302334627085" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.4464302334627085" y="0.3758765334212332"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.41078869408568996" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000013e-2" x="0.11040041386373624" y="-0.42234884052419175"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="0.8908765334212332" width="0.8572189275483985" x="-0.39578869408568995" y="-0.5"/></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.5365 -0.5365 1.073 1.073" width="300.0" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="0.1" stroke="#000000" stroke-width="1.0e-2" fill="#1f78b5"><path d="M -0.5,0.5 C 0.5,0.5 -0.5,-0.5 0.5,-0.5"/></g><g stroke-opacity="1.0" stroke="#a6cfe3" stroke-width="2.0e-3" fill="none"><polyline points="-0.5,0.5+-0.470596,0.499702+-0.442368,0.498816+-0.415292,0.497354+-0.389344,0.495328+-0.36450000000000005,0.49275+-0.34073600000000004,0.48963199999999996+-0.318028,0.4859859999999999+-0.29635199999999995,0.481824+-0.275684,0.477158+-0.256,0.472+-0.237276,0.46636199999999994+-0.21948800000000002,0.460256+-0.20261199999999996,0.453694+-0.1866239999999999,0.446688+-0.17150000000000004,0.43925000000000003+-0.15721600000000008,0.431392+-0.14374799999999993,0.423126+-0.13107199999999997,0.41446399999999994+-0.11916399999999994,0.405418+-0.10799999999999987,0.39599999999999996+-9.755599999999992e-2,0.38622199999999995+-8.780799999999994e-2,0.376096+-7.873200000000002e-2,0.365634+-7.030399999999992e-2,0.35484799999999994+-6.2499999999999944e-2,0.34375+-5.529600000000001e-2,0.332352+-4.866799999999999e-2,0.32066599999999995+-4.259199999999991e-2,0.3087039999999999+-3.7043999999999966e-2,0.296478+-3.2000000000000084e-2,0.28400000000000003+-2.743600000000007e-2,0.271282+-2.3328000000000015e-2,0.258336+-1.9652000000000003e-2,0.245174+-1.638400000000012e-2,0.23180799999999996+-1.3500000000000012e-2,0.21824999999999994+-1.097599999999993e-2,0.20451200000000003+-8.787999999999907e-3,0.19060599999999994+-6.911999999999974e-3,0.17654399999999998+-5.323999999999995e-3,0.16233799999999998+-3.9999999999998925e-3,0.14799999999999996+-2.915999999999974e-3,0.13354199999999994+-2.0479999999998832e-3,0.11897600000000003+-1.3719999999999288e-3,0.10431399999999996+-8.639999999999204e-4,8.956799999999998e-2+-4.999999999998894e-4,7.474999999999993e-2+-2.5599999999992296e-4,5.9871999999999925e-2+-1.0799999999988596e-4,4.494599999999993e-2+-3.199999999992098e-5,2.998400000000001e-2+-4.000000000004e-6,1.4997999999999956e-2+0.0,-0.0+4.000000000115023e-6,-1.4997999999999956e-2+3.2000000000032e-5,-2.998400000000001e-2+1.0799999999999699e-4,-4.494600000000004e-2+2.5599999999992296e-4,-5.9872000000000036e-2+5.00000000000056e-4,-7.47500000000001e-2+8.639999999999759e-4,-8.956800000000009e-2+1.3720000000000399e-3,-0.10431400000000013+2.0480000000000498e-3,-0.11897600000000008+2.9160000000000297e-3,-0.13354199999999994+4.0000000000000036e-3,-0.14800000000000002+5.323999999999995e-3,-0.16233799999999998+6.912000000000029e-3,-0.17654400000000015+8.788000000000018e-3,-0.19060600000000005+1.0976000000000097e-2,-0.20451200000000003+1.3500000000000068e-2,-0.21825000000000006+1.6383999999999954e-2,-0.23180800000000001+1.9652000000000114e-2,-0.245174+2.3328000000000015e-2,-0.2583360000000001+2.7436000000000016e-2,-0.271282+3.200000000000003e-2,-0.28400000000000003+3.704400000000019e-2,-0.296478+4.2592000000000074e-2,-0.308704+4.8667999999999934e-2,-0.3206659999999999+5.529600000000001e-2,-0.332352+6.25e-2,-0.34375+7.030400000000003e-2,-0.35484800000000016+7.873200000000002e-2,-0.3656340000000001+8.7808e-2,-0.376096+9.755600000000009e-2,-0.3862220000000002+0.1080000000000001,-0.39600000000000013+0.11916400000000016,-0.40541800000000006+0.13107200000000008,-0.41446400000000005+0.1437480000000002,-0.4231260000000001+0.15721600000000002,-0.4313919999999999+0.1715000000000001,-0.4392499999999999+0.186624,-0.446688+0.20261200000000001,-0.45369400000000015+0.21948800000000002,-0.460256+0.23727600000000004,-0.46636200000000017+0.2560000000000002,-0.4720000000000001+0.27568400000000004,-0.4771580000000001+0.29635200000000006,-0.48182400000000003+0.3180280000000001,-0.48598600000000003+0.34073600000000015,-0.48963200000000007+0.36450000000000016,-0.4927499999999999+0.38934400000000013,-0.4953280000000001+0.415292,-0.4973540000000001+0.4423679999999999,-0.4988159999999999+0.470596,-0.4997020000000001+0.5,-0.5"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="3.0e-3" fill="#a6cfe3"><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.515" y="0.485"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.485" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.485" y="0.485"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.515" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="9.30000000000001e-2" y="-0.41100000000000014"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="1.0" width="1.0" x="-0.5" y="-0.5"/></g></svg>
other/ellipse.svg view
@@ -1,174 +1,174 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-1.7100749999999998 -1.53175 3.2475749999999994 3.66925" width="265.52360836683243" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="3.4999999999999996" width="2.9999999999999996" x="-1.5" y="-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,2.0-1.4999999999999996,2.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,1.5-1.4999999999999996,1.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,1.0000000000000002-1.4999999999999996,1.0000000000000002"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,0.5000000000000002-1.4999999999999996,0.5000000000000002"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,-0.0-1.4999999999999996,-0.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,-0.4999999999999991-1.4999999999999996,-0.4999999999999991"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,-1.0-1.4999999999999996,-1.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,-1.4999999999999996-1.4999999999999996,-1.4999999999999996"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="2.0145">-2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="1.5145">-1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="1.0145000000000002">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="0.5145000000000002">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="1.4499999999999957e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="-0.48549999999999915">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="-0.9854999999999996">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.6100749999999997" y="-1.4855">1.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -1.5775, 2.0)"><polyline points="-1.5775,2.015--1.5775,1.985"/></g><g transform="rotate(-90.0, -1.5775, 1.5)"><polyline points="-1.5775,1.515--1.5775,1.485"/></g><g transform="rotate(-90.0, -1.5775, 1.0000000000000002)"><polyline points="-1.5775,1.0150000000000001--1.5775,0.9850000000000002"/></g><g transform="rotate(-90.0, -1.5775, 0.5000000000000002)"><polyline points="-1.5775,0.5150000000000002--1.5775,0.4850000000000002"/></g><g transform="rotate(-90.0, -1.5775, -0.0)"><polyline points="-1.5775,1.5e-2--1.5775,-1.5e-2"/></g><g transform="rotate(-90.0, -1.5775, -0.4999999999999991)"><polyline points="-1.5775,-0.4849999999999991--1.5775,-0.5149999999999991"/></g><g transform="rotate(-90.0, -1.5775, -1.0)"><polyline points="-1.5775,-0.985--1.5775,-1.015"/></g><g transform="rotate(-90.0, -1.5775, -1.4999999999999996)"><polyline points="-1.5775,-1.4849999999999997--1.5775,-1.5149999999999995"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="3.4999999999999996" width="4.999999999999893e-3" x="-1.565" y="-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,2.0--1.5,-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.0,2.0--1.0,-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.5,2.0--0.5,-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,2.0-0.0,-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.49999999999999956,2.0-0.49999999999999956,-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="1.0,2.0-1.0,-1.4999999999999996"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="1.4999999999999996,2.0-1.4999999999999996,-1.4999999999999996"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-1.5" y="2.11125">-1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-1.0" y="2.11125">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.5" y="2.11125">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.0" y="2.11125">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.49999999999999956" y="2.11125">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="1.0" y="2.11125">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="1.4999999999999996" y="2.11125">1.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-1.5,2.0425--1.5,2.0124999999999997"/><polyline points="-1.0,2.0425--1.0,2.0124999999999997"/><polyline points="-0.5,2.0425--0.5,2.0124999999999997"/><polyline points="0.0,2.0425-0.0,2.0124999999999997"/><polyline points="0.49999999999999956,2.0425-0.49999999999999956,2.0124999999999997"/><polyline points="1.0,2.0425-1.0,2.0124999999999997"/><polyline points="1.4999999999999996,2.0425-1.4999999999999996,2.0124999999999997"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.999999999999893e-3" width="2.9999999999999996" x="-1.5" y="2.01"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="1.0,-0.0-0.9940146461148012,6.427210796446436e-2-0.9854684971040975,0.129205801530343-0.9743808284486217,0.194654625474612+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-1.65753 -1.53175 3.19503 3.6667500000000004" width="261.40560441808134" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="5.0e-2" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="3.5" width="3.0" x="-1.5" y="-1.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,2.0+1.5,2.0"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,1.5+1.5,1.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,0.9999999999999998+1.5,0.9999999999999998"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,0.4999999999999998+1.5,0.4999999999999998"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,-0.0+1.5,-0.0"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,-0.49999999999999956+1.5,-0.49999999999999956"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,-1.0+1.5,-1.0"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,-1.5+1.5,-1.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-1.5575299999999999" y="2.0145">-2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-1.5575299999999999" y="1.5145">-1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-1.5575299999999999" y="1.0145">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-1.5575299999999999" y="0.5144999999999997">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-1.5575299999999999" y="1.4499999999999957e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-1.5575299999999999" y="-0.4854999999999996">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-1.5575299999999999" y="-0.9855">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-1.5575299999999999" y="-1.4855">1.5</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><g transform="rotate(-90.0, -1.5265, 2.0)"><polyline points="-1.5265,2.015+-1.5265,1.985"/></g><g transform="rotate(-90.0, -1.5265, 1.5)"><polyline points="-1.5265,1.515+-1.5265,1.485"/></g><g transform="rotate(-90.0, -1.5265, 0.9999999999999998)"><polyline points="-1.5265,1.0149999999999997+-1.5265,0.9849999999999998"/></g><g transform="rotate(-90.0, -1.5265, 0.4999999999999998)"><polyline points="-1.5265,0.5149999999999998+-1.5265,0.48499999999999976"/></g><g transform="rotate(-90.0, -1.5265, -0.0)"><polyline points="-1.5265,1.5e-2+-1.5265,-1.5e-2"/></g><g transform="rotate(-90.0, -1.5265, -0.49999999999999956)"><polyline points="-1.5265,-0.48499999999999954+-1.5265,-0.5149999999999996"/></g><g transform="rotate(-90.0, -1.5265, -1.0)"><polyline points="-1.5265,-0.985+-1.5265,-1.015"/></g><g transform="rotate(-90.0, -1.5265, -1.5)"><polyline points="-1.5265,-1.485+-1.5265,-1.515"/></g></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="3.5" width="4.0000000000000036e-3" x="-1.514" y="-1.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-1.5,2.0+-1.5,-1.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-1.0,2.0+-1.0,-1.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.5,2.0+-0.5,-1.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="2.220446049250313e-16,2.0+2.220446049250313e-16,-1.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.5,2.0+0.5,-1.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="1.0,2.0+1.0,-1.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="1.5,2.0+1.5,-1.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-1.5" y="2.10875">-1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-1.0" y="2.10875">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.5" y="2.10875">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="2.220446049250313e-16" y="2.10875">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.5" y="2.10875">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="1.0" y="2.10875">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="1.5" y="2.10875">1.5</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><polyline points="-1.5,2.0415+-1.5,2.0115"/><polyline points="-1.0,2.0415+-1.0,2.0115"/><polyline points="-0.5,2.0415+-0.5,2.0115"/><polyline points="2.220446049250313e-16,2.0415+2.220446049250313e-16,2.0115"/><polyline points="0.5,2.0415+0.5,2.0115"/><polyline points="1.0,2.0415+1.0,2.0115"/><polyline points="1.5,2.0415+1.5,2.0115"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="4.0000000000000036e-3" width="3.0" x="-1.5" y="2.01"/></g><g stroke-opacity="1.0" stroke="#a6cfe3" stroke-width="2.0e-3" fill="none"><polyline points="1.0000000000000009,-0.0+0.9940146461148016,6.427210796446392e-2+0.9854684971040975,0.12920580153034256+0.9743808284486222,0.19465462547461154 0.9607766479200981,0.2604709627192794-0.9446866391772528,0.32650636727551374-0.9261470925601181,0.3926118990573497+0.9446866391772537,0.3265063672755135+0.9261470925601185,0.3926118990573495 0.9051998232386831,0.45863845980980367-0.8818920769005367,0.5244371293937398-0.8562764231902009,0.5898595016689938-0.8284106371404976,0.6547580192182043-0.7983575688633868,0.7189863061563773+0.8818920769005372,0.5244371293937398+0.8562764231902018,0.5898595016689936+0.8284106371404976,0.6547580192182041+0.7983575688633873,0.718986306156377 0.7661850017941774,0.7823994982755582-0.7319654998088261,0.844854569779977-0.6957762435591621,0.9062106558747358+0.7319654998088261,0.8448545697799767+0.695776243559163,0.9062106558747356 0.6576988563951605,0.9663293704804432-0.6178192202669006,1.0250751183572175+0.6178192202669006,1.0250751183572173 0.5762272820214287,1.0823154009340614 0.533016850531415,1.1379211151538344-0.4882853851131763,1.191766844659785-0.4421337757112749,1.2437311426668831-0.39466611534547624,1.2936968058799505+0.48828538511317676,1.191766844659785+0.4421337757112749,1.2437311426668827+0.39466611534547713,1.2936968058799505 0.3459894653333131,1.3415511388407824-0.29621361381776756,1.3871862081080222-0.24545082814471986,1.430499085696519-0.19381560164866274,1.4713920812270747-0.1414243954177763,1.5097729622630052+0.2962136138177678,1.3871862081080222+0.2454508281447203,1.430499085696519+0.19381560164866296,1.4713920812270747+0.14142439541777652,1.5097729622630052 8.839537562083555e-2,1.545555162336529-3.4848146988369466e-2,1.5786579761958062--1.9096516950796394e-2,1.6090067418322525--7.331694626916585e-2,1.6365330088775658--0.12769084906199346,1.6611746929906617+3.484814698836969e-2,1.5786579761958062+-1.9096516950796172e-2,1.6090067418322525+-7.33169462691654e-2,1.6365330088775658+-0.12769084906199302,1.6611746929906617 -0.18209558727154862,1.6828762158863042--0.23640845329211113,1.7015886306895949--0.29050694673182864,1.7172697323335977+-0.2364084532921109,1.7015886306895949+-0.2905069467318284,1.7172697323335977 -0.3442690507072199,1.7298841527510982 -0.39757350704712957,1.7394034406457948--0.4503000897854583,1.7458061256630062--0.5023298763257826,1.7490777668151547--0.553545515666283,1.7492109850528088--0.6038314930800137,1.7462054799078195--0.6530743906535196,1.740068030171014--0.7011631430961872,1.730812478602917+-0.4503000897854581,1.7458061256630062+-0.5023298763257824,1.7490777668151547+-0.5535455156662827,1.7492109850528088+-0.6038314930800136,1.7462054799078195+-0.6530743906535195,1.740068030171014+-0.7011631430961871,1.730812478602917 -0.7479892882433502,1.7184597007119842--0.7934472116881531,1.7030375576707697--0.8374343849904168,1.6845808334762182--0.8798515969252381,1.6631311564958184--0.9206031772497456,1.6387369055765686--0.959597212483321,1.6114531009285114+-0.793447211688153,1.7030375576707697+-0.8374343849904167,1.6845808334762182+-0.879851596925238,1.6631311564958184+-0.9206031772497455,1.6387369055765686+-0.9595972124833209,1.6114531009285114 -0.9967457532146013,1.5813412800289601 -1.0319650124676871,1.5484693588272997 -1.0651755546801553,1.5129114785634061 -1.0963024748666366,1.4747478385451958 -1.1252755675638715,1.4340645152624427 -1.1520294851761868,1.39095326824487--1.176503885364259,1.3455113331023756--1.19864356714473,1.2978412022141925+-1.176503885364259,1.3455113331023754+-1.19864356714473,1.2978412022141923 -1.2183985953937093,1.2480503935616256 -1.2357244134733536,1.1962512082257506 -1.250581943727494,1.1425604770970392--1.2629376756196518,1.0870992973681812+-1.2629376756196518,1.087099297368181 -1.2727637413146469,1.0299927594044442 -1.2800379785333331,0.9713696646076042--1.2847439805386887,0.9113622349097763+-1.2847439805386887,0.9113622349097761 -1.2868711331405234,0.850105814552401 -1.2864146386353401,0.7877385648229778--1.2833755266273537,0.7244011524380729--1.2777606517062607,0.6602364322754448+-1.2833755266273537,0.7244011524380727+-1.2777606517062607,0.6602364322754446 -1.2695826779870025,0.5953891251708496--1.2588600505463818,0.5300054915062733--1.2456169538209676,0.46423300132576384--1.2298832570601115,0.3982200017229367--1.2116944469571096,0.3321153822503291+-1.2588600505463818,0.5300054915062731+-1.2456169538209676,0.4642330013257634+-1.2298832570601115,0.3982200017229365+-1.2116944469571096,0.3321153822503289 -1.1910915476104509,0.26606823910524224--1.1681210279956875,0.20022753884954136--1.142834697156606,0.13474178242180646--1.1152895873521018,6.975867019969684e-2--1.0855478254223114,5.424768867944518e-3+-1.1681210279956875,0.20022753884954092+-1.142834697156606,0.134741782421806+-1.1152895873521018,6.975867019969728e-2+-1.0855478254223112,5.42476886794363e-3 -1.0536764926641298,-5.81148191566605e-2 -1.0197474735321572,-0.12071678299768429--0.983837293506328,-0.1822399265507202--0.9460269464918966,-0.242545486945287--0.9064017121410812,-0.3014974475186625--0.8650509635083894,-0.35896284459575467--0.8220679654734302,-0.4148120673831128--0.7775496643859013,-0.4689191503006187--0.7315964694071552,-0.5211620570915811--0.6843120260415457,-0.5714229560703963--0.6358029823683446,-0.6195884858869642--0.5861787485014645,-0.6655500112084733--0.5355512498195376,-0.7092038677418295--0.4840346745229174,-0.7504515960441251--0.4317452160869839,-0.7892001635937809--0.37880081119262377,-0.8253621746215032--0.3253208737250024,-0.8588560672277712--0.2714260254405456,-0.8896062973422842--0.21723782390962731,-0.917543509110446--0.16287848834857122,-0.9426046913225812--0.10847062395932605,-0.9647333195330812--5.4136945398582714e-2,-0.9838794835489195-0.0,-1.0"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="0.6086376856300113,-0.9414395063606071-0.5527795469220065,-0.97027141116074-0.4941819474107332,-0.9938628196756247-0.43307614505076675,-1.01212062739374-0.36970329652743494,-1.024972779089223-0.30431350552155867,-1.032368553190921-0.23716483566448576,-1.0342787619572622-0.16852229207883163,-1.030695866666938-9.865677552433416e-2,-1.021634007370789-2.7844013276314916e-2,-1.0071289470874882--4.363652904390536e-2,-0.9872379306632406--0.11550275039214375,-0.9620394588525345--0.187471027625292,-0.9316329785115176--0.2592573348322882,-0.8961384901266976+-0.9838372935063279,-0.18223992655072063+-0.9460269464918963,-0.24254548694528744+-0.9064017121410812,-0.3014974475186629+-0.8650509635083893,-0.3589628445957551+-0.8220679654734301,-0.41481206738311327+-0.7775496643859012,-0.4689191503006187+-0.7315964694071551,-0.5211620570915811+-0.6843120260415455,-0.5714229560703967+-0.6358029823683445,-0.6195884858869647+-0.5861787485014645,-0.6655500112084738+-0.5355512498195376,-0.7092038677418304+-0.48403467452291715,-0.7504515960441251+-0.4317452160869837,-0.7892001635937813+-0.37880081119262377,-0.8253621746215036+-0.3253208737250024,-0.8588560672277716+-0.2714260254405454,-0.8896062973422842+-0.2172378239096271,-0.9175435091104465+-0.162878488348571,-0.9426046913225816+-0.10847062395932561,-0.9647333195330816+-5.4136945398582714e-2,-0.98387948354892+2.220446049250313e-16,-1.0"/></g><g stroke-opacity="1.0" stroke="#a6cfe3" stroke-width="2.0e-3" fill="none"><polyline points="0.6086376856300113,-0.9414395063606076+0.5527795469220069,-0.9702714111607404+0.49418194741073407,-0.9938628196756247+0.43307614505076697,-1.0121206273937409+0.36970329652743517,-1.0249727790892234+0.3043135055215591,-1.0323685531909215+0.23716483566448598,-1.0342787619572626+0.16852229207883185,-1.0306958666669384+9.865677552433416e-2,-1.0216340073707895+2.784401327631536e-2,-1.0071289470874882+-4.363652904390536e-2,-0.9872379306632411+-0.11550275039214353,-0.9620394588525345+-0.18747102762529155,-0.931632978511518+-0.25925733483228797,-0.896138490126698 -0.3305783642546314,-0.8556960742278399--0.4011526443726703,-0.8104653385541143--0.4707016507451012,-0.7606247881552681--0.5389509052176904,-0.7063711209137438--0.6056310591631524,-0.647918451268001--0.6704789564771296,-0.5854974652006462--0.7332386721351098,-0.5193545098262522+-0.4011526443726703,-0.8104653385541147+-0.4707016507451012,-0.7606247881552686+-0.5389509052176902,-0.7063711209137442+-0.6056310591631523,-0.647918451268001+-0.6704789564771294,-0.5854974652006466+-0.7332386721351098,-0.5193545098262526 -0.7936625222115783,-0.44975062117184006--0.8515120413753137,-0.37696049398693576--0.9065589240031089,-0.30127139764889277--0.95858592519776,-0.222982042441898--1.0073877181544273,-0.14240140068394957--1.05277170449173,-5.984748735427292e-2--1.0945587743495653,2.4353894966514744e-2--1.132584013253901,0.10987044189034778--1.1666973529588605,0.1963646586753094--1.1967641636975312,0.2834951921631996--1.2226657855041465,0.37091817794449544+-0.8515120413753137,-0.3769604939869362+-0.9065589240031089,-0.3012713976488932+-0.9585859251977599,-0.222982042441898+-1.0073877181544273,-0.14240140068395002+-1.0527717044917297,-5.984748735427292e-2+-1.0945587743495653,2.4353894966515188e-2+-1.132584013253901,0.10987044189034756+-1.1666973529588605,0.19636465867530917+-1.1967641636975312,0.2834951921631992+-1.2226657855041465,0.3709181779444952 -1.2442999965107613,0.4582885974340818--1.261581416370263,0.5452616395019809+-1.261581416370263,0.5452616395019807 -1.2744418432135962,0.6314940612853537 -1.2828305228113803,0.7166455428112668--1.286714348877666,0.8003800300841504+-1.286714348877666,0.8003800300841502 -1.2860779937253213,0.8823670613373866--1.280923968757409,0.9622830712149295+-1.280923968757409,0.9622830712149293 -1.2712726145558277,1.0398126677359452--1.2571620206063265,1.1146498770028688+-1.2571620206063265,1.1146498770028685 -1.2386478749767074,1.1864993507405912 -1.2158032445414615,1.2550775319011742 -1.188718286620198,1.3201137737339654@@ -176,58 +176,58 @@ -1.1222712689211713,1.438548757448074 -1.083171445165512,1.4914800905564687 -1.0403547310422663,1.539936511440116--0.9939901045609831,1.5837267847434204--0.9442605457204011,1.6226780902635274--0.8913623143699893,1.656636704992708+-0.993990104560983,1.5837267847434204+-0.944260545720401,1.6226780902635274+-0.891362314369989,1.656636704992708 -0.8355041756619843,1.6854686097928409--0.7769065761507113,1.7090600183077247+-0.7769065761507111,1.7090600183077247 -0.7158007737907442,1.7273178260258404 -0.6524279252674126,1.7401699777213238--0.5870381342615363,1.7475657518230214+-0.5870381342615362,1.7475657518230214 -0.5198894644044634,1.749475960589363--0.4512469208188099,1.7458930652990383--0.38138140426431155,1.7368312060028894+-0.45124692081880946,1.7458930652990383+-0.38138140426431133,1.7368312060028894 -0.3105686420162932,1.7223261457195886--0.2390880996960727,1.7024351292953415+-0.23908809969607225,1.7024351292953415 -0.16722187834783409,1.6772366574846354 -9.52536011146865e-2,1.6468301771436185 -2.3467293907689424e-2,1.611335688758798-4.785373551465377e-2,1.5708932728599398+4.7853735514653994e-2,1.5708932728599398 0.11842801563269267,1.5256625371862147-0.18797702200512356,1.475821986787368-0.25622627647771234,1.4215683195458442-0.3229064304231748,1.363115649900101-0.38775432773715224,1.300694663832747+0.18797702200512378,1.475821986787368+0.25622627647771257,1.4215683195458442+0.32290643042317524,1.363115649900101+0.38775432773715246,1.3006946638327468 0.45051404339513246,1.2345517084583535 0.5109378934716009,1.16494781980394-0.5687874126353365,1.0921576926190362-0.6238342952631308,1.0164685962809938-0.6758612964577817,0.9381792410739986-0.7246630894144497,0.8575985993160506+0.5687874126353369,1.0921576926190362+0.6238342952631308,1.0164685962809936+0.6758612964577821,0.9381792410739984+0.7246630894144497,0.8575985993160504 0.7700470757517524,0.7750446859863742-0.8118341456095877,0.6908433036655857-0.8498593845139233,0.605326756741754-0.8839727242188826,0.518832539956791-0.9140395349575532,0.4317020064689012-0.9399411567641685,0.34427902068760585-0.961575367770783,0.25690860119802017-0.9788567876302854,0.16993555913011926-0.9917172144736188,8.370313734674761e-2+0.8118341456095877,0.6908433036655852+0.8498593845139233,0.6053267567417535+0.8839727242188831,0.5188325399567908+0.9140395349575536,0.431702006468901+0.9399411567641689,0.34427902068760585+0.9615753677707835,0.25690860119802017+0.9788567876302863,0.16993555913011882+0.9917172144736188,8.370313734674673e-2 1.0001058940714032,-1.4483441791663942e-3 1.0039897201376888,-8.518283145204997e-2-1.0033533649853439,-0.16716986270528622-0.9981993400174312,-0.24708587258282888+1.0033533649853439,-0.16716986270528666+0.998199340017432,-0.24708587258282888 0.9885479858158503,-0.3246154691038452 0.9744373918663491,-0.39945267837076814-0.95592324623673,-0.4713021521084908-0.9330786158014837,-0.5398803332690738+0.95592324623673,-0.47130215210849125+0.9330786158014837,-0.5398803332690743 0.9059936578802206,-0.604916575101865-0.8747752644279139,-0.6661542092725843-0.8395466401811937,-0.7233515588159736-0.8004468164255343,-0.7762828919243683-0.7576301023022891,-0.8247393128080152-0.7112654758210057,-0.8685295861113196-0.6615359169804225,-0.907480891631427-0.6086376856300113,-0.9414395063606071"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.1563623143699887" y="0.3425985993160502"/><rect height="3.0e-2" width="2.9999999999999916e-2" x="0.985" y="-1.5e-2"/><rect height="2.9999999999999916e-2" width="3.0e-2" x="-1.5e-2" y="-1.015"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="2.7495396900235556" width="2.287006238108949" x="-1.2870062381089489" y="-1.0"/></g><g stroke-opacity="1.0" stroke="#e63305" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="0.6086376856300113,-0.9414395063606071--0.8913623143699893,1.656636704992708"/></g><g stroke-opacity="1.0" stroke="#e6e605" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="-1.0073877181544273,-0.14240140068394957-0.7246630894144497,0.8575985993160506"/></g><g></g></svg>+0.8747752644279139,-0.6661542092725852+0.8395466401811942,-0.723351558815974+0.8004468164255343,-0.7762828919243687+0.7576301023022891,-0.8247393128080156+0.7112654758210062,-0.86852958611132+0.6615359169804229,-0.907480891631427+0.6086376856300113,-0.9414395063606076"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="3.0e-3" fill="#a6cfe3"><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.1563623143699885" y="0.34259859931604997"/><rect height="3.0e-2" width="2.9999999999999916e-2" x="0.985" y="-1.5e-2"/><rect height="2.9999999999999916e-2" width="3.0e-2" x="-1.4999999999999777e-2" y="-1.015"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="2.7495396900235556" width="2.2870062381089498" x="-1.2870062381089489" y="-1.0"/></g><g stroke-opacity="1.0" stroke="#e63305" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="0.6086376856300113,-0.9414395063606076+-0.891362314369989,1.656636704992708"/></g><g stroke-opacity="1.0" stroke="#e6e605" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="-1.0073877181544273,-0.14240140068395002+0.7246630894144497,0.8575985993160504"/></g><g></g></svg>
other/glines.svg view
@@ -1,5 +1,5 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8125 -0.5825 1.6249999999999998 1.145" width="425.764192139738" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.75,0.30000000000000004+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8125 -0.5825 1.6249999999999998 1.145" width="425.764192139738" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="1.0" stroke="#b05929" stroke-width="1.5e-2" fill="none"><polyline points="-0.75,0.30000000000000004 -0.2142857142857144,0.30000000000000004-0.3214285714285712,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.75,0.5-0.7499999999999998,-0.10000000000000009"/></g><g stroke-opacity="1.0" stroke="#fb9a99" stroke-width="1.0e-2" fill="none"><polyline points="-0.4821428571428572,-0.30000000000000004--0.4821428571428572,0.5"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cee3" stroke-width="5.0e-3" fill="#a6cee3"><ellipse rx="4.0e-2" ry="6.0e-2" cy="0.30000000000000004" cx="-0.75"/><ellipse rx="4.0e-2" ry="6.0e-2" cy="0.30000000000000004" cx="-0.2142857142857144"/><ellipse rx="4.0e-2" ry="6.0e-2" cy="-0.5" cx="0.3214285714285712"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b4" stroke-width="5.0e-3" fill="#1f78b4"><rect height="8.000000000000002e-2" width="8.000000000000007e-2" x="-0.79" y="0.46"/><rect height="8.000000000000002e-2" width="8.000000000000007e-2" x="0.7099999999999997" y="-0.1400000000000001"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#e31a1c" stroke-width="5.0e-3" fill="#e31a1c"><circle cy="-0.30000000000000004" r="4.0e-2" cx="-0.4821428571428572"/><circle cy="0.5" r="4.0e-2" cx="-0.4821428571428572"/></g></svg>+0.3214285714285712,-0.5"/></g><g stroke-opacity="1.0" stroke="#a6cfe3" stroke-width="3.0e-2" fill="none"><polyline points="-0.75,0.5+0.7499999999999998,-0.10000000000000009"/></g><g stroke-opacity="1.0" stroke="#1f78b5" stroke-width="1.0e-2" fill="none"><polyline points="-0.4821428571428572,-0.30000000000000004+-0.4821428571428572,0.5"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#b05929" stroke-width="5.0e-3" fill="#b05929"><ellipse rx="4.0e-2" ry="6.0e-2" cy="0.30000000000000004" cx="-0.75"/><ellipse rx="4.0e-2" ry="6.0e-2" cy="0.30000000000000004" cx="-0.2142857142857144"/><ellipse rx="4.0e-2" ry="6.0e-2" cy="-0.5" cx="0.3214285714285712"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cfe3" stroke-width="5.0e-3" fill="#a6cfe3"><rect height="8.000000000000002e-2" width="8.000000000000007e-2" x="-0.79" y="0.46"/><rect height="8.000000000000002e-2" width="8.000000000000007e-2" x="0.7099999999999997" y="-0.1400000000000001"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="5.0e-3" fill="#1f78b5"><circle cy="-0.30000000000000004" r="4.0e-2" cx="-0.4821428571428572"/><circle cy="0.5" r="4.0e-2" cx="-0.4821428571428572"/></g></svg>
other/glyphs.svg view
@@ -1,3 +1,3 @@-<svg xmlns="http://www.w3.org/2000/svg" height="50.0" viewBox="-0.8250000000000001 -0.15 1.605 0.2" width="401.25" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><circle cy="-2.5e-2" r="5.0e-2" cx="-0.75"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><rect height="0.1" width="0.10000000000000009" x="-0.6125" y="-7.500000000000001e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><rect height="7.500000000000001e-2" width="9.999999999999998e-2" x="-0.42500000000000004" y="-6.25e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><rect height="7.500000000000001e-2" rx="1.0e-2" ry="1.0e-2" width="9.999999999999998e-2" x="-0.2375" y="-6.25e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="0.0" fill="#a6cee3"><ellipse rx="5.0e-2" ry="3.7500000000000006e-2" cy="-2.5e-2" cx="-1.1102230246251565e-16"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><polyline points="0.18749999999999978,2.5e-2-0.18749999999999978,-7.500000000000001e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><polyline points="0.325,-2.5e-2-0.425,-2.5e-2"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><polygon transform="translate(0.5625, -2.5e-2)" points="0.0,-0.0 0.1,-0.1 0.1,-0.0"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><path transform="translate(0.7499999999999998, -2.5e-2) scale(0.1)" d="M0.05,-0.03660254037844387 A0.1 0.1 0.0 0 1 0.0,0.05 0.1 0.1 0.0 0 1 -0.05,-0.03660254037844387 0.1 0.1 0.0 0 1 0.05,-0.03660254037844387 Z"/></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="50.0" viewBox="-0.8250000000000001 -0.15 1.605 0.2" width="401.25" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="1.0e-2" fill="#a6cfe3"><circle cy="-2.5e-2" r="5.0e-2" cx="-0.75"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="1.0e-2" fill="#a6cfe3"><rect height="0.1" width="0.10000000000000009" x="-0.6125" y="-7.500000000000001e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="1.0e-2" fill="#a6cfe3"><rect height="7.500000000000001e-2" width="9.999999999999998e-2" x="-0.42500000000000004" y="-6.25e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="1.0e-2" fill="#a6cfe3"><rect height="7.500000000000001e-2" rx="1.0e-2" ry="1.0e-2" width="9.999999999999998e-2" x="-0.2375" y="-6.25e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#a6cfe3"><ellipse rx="5.0e-2" ry="3.7500000000000006e-2" cy="-2.5e-2" cx="-1.1102230246251565e-16"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="1.0e-2" fill="#a6cfe3"><polyline points="0.18749999999999978,2.5e-2+0.18749999999999978,-7.500000000000001e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="1.0e-2" fill="#a6cfe3"><polyline points="0.325,-2.5e-2+0.425,-2.5e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="1.0e-2" fill="#a6cfe3"><polygon transform="translate(0.5625, -2.5e-2)" points="0.0,-0.0 0.1,-0.1 0.1,-0.0"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="1.0e-2" fill="#a6cfe3"><path transform="translate(0.7499999999999998, -2.5e-2) scale(0.1)" d="M0.05,-0.03660254037844387 A0.1 0.1 0.0 0 1 0.0,0.05 0.1 0.1 0.0 0 1 -0.05,-0.03660254037844387 0.1 0.1 0.0 0 1 0.05,-0.03660254037844387 Z"/></g></svg>
other/hudoptions.svg view
@@ -1,45 +1,45 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.87 -0.5532016310461192 1.6775 1.099451631046119" width="457.72818538743877" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607424" width="1.3974504293278263" x="-0.6474504293278263" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.3998875140607424-0.75,0.3998875140607424"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.3098987626546682-0.75,0.3098987626546682"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.21991001124859388-0.75,0.21991001124859388"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.12992125984251962-0.75,0.12992125984251962"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,3.993250843644536e-2-0.75,3.993250843644536e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-5.005624296962885e-2-0.75,-5.005624296962885e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.14004499437570317-0.75,-0.14004499437570317"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.23003374578177738-0.75,-0.23003374578177738"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.3200224971878517-0.75,-0.3200224971878517"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.4100112485939259-0.75,-0.4100112485939259"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.5-0.75,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.4129358830146232">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.32294713160854893">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.23295838020247472">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.1429696287964004">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="5.298087739032625e-2">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-3.700787401574812e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.12699662542182244">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.21698537682789665">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.30697412823397086">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.3969628796400453">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.48695163104611916">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7196520348430974, 0.3998875140607424)"><polyline points="-0.7196520348430974,0.4148875140607424--0.7196520348430974,0.3848875140607424"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.3098987626546682)"><polyline points="-0.7196520348430974,0.3248987626546682--0.7196520348430974,0.2948987626546682"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.21991001124859388)"><polyline points="-0.7196520348430974,0.2349100112485939--0.7196520348430974,0.20491001124859387"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.12992125984251962)"><polyline points="-0.7196520348430974,0.14492125984251963--0.7196520348430974,0.11492125984251962"/></g><g transform="rotate(-90.0, -0.7196520348430974, 3.993250843644536e-2)"><polyline points="-0.7196520348430974,5.493250843644536e-2--0.7196520348430974,2.4932508436445358e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -5.005624296962885e-2)"><polyline points="-0.7196520348430974,-3.505624296962885e-2--0.7196520348430974,-6.505624296962885e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.14004499437570317)"><polyline points="-0.7196520348430974,-0.12504499437570316--0.7196520348430974,-0.15504499437570318"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.23003374578177738)"><polyline points="-0.7196520348430974,-0.21503374578177736--0.7196520348430974,-0.2450337457817774"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.3200224971878517)"><polyline points="-0.7196520348430974,-0.3050224971878517--0.7196520348430974,-0.3350224971878517"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.4100112485939259)"><polyline points="-0.7196520348430974,-0.3950112485939259--0.7196520348430974,-0.4250112485939259"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.5)"><polyline points="-0.7196520348430974,-0.485--0.7196520348430974,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607424" width="4.65816809775943e-3" x="-0.7080066145986988" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.3998875140607424--0.6474504293278263,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.5077053863950438,0.3998875140607424--0.5077053863950438,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.367960343462261,0.3998875140607424--0.367960343462261,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.22821530052947825,0.3998875140607424--0.22821530052947825,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-8.847025759669558e-2,0.3998875140607424--8.847025759669558e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="5.127478533608687e-2,0.3998875140607424-5.127478533608687e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.19101982826886954,0.3998875140607424-0.19101982826886954,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.330764871201652,0.3998875140607424-0.330764871201652,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4705099141344351,0.3998875140607424-0.4705099141344351,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.6102549570672173,0.3998875140607424-0.6102549570672173,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.75,0.3998875140607424-0.75,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.6474504293278263" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.5077053863950438" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.367960343462261" y="0.5">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.22821530052947825" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-8.847025759669558e-2" y="0.5">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="5.127478533608687e-2" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.19101982826886954" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.330764871201652" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4705099141344351" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.6102549570672173" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.75" y="0.5">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6474504293278263,0.4396344206974129--0.6474504293278263,0.40963442069741285"/><polyline points="-0.5077053863950438,0.4396344206974129--0.5077053863950438,0.40963442069741285"/><polyline points="-0.367960343462261,0.4396344206974129--0.367960343462261,0.40963442069741285"/><polyline points="-0.22821530052947825,0.4396344206974129--0.22821530052947825,0.40963442069741285"/><polyline points="-8.847025759669558e-2,0.4396344206974129--8.847025759669558e-2,0.40963442069741285"/><polyline points="5.127478533608687e-2,0.4396344206974129-5.127478533608687e-2,0.40963442069741285"/><polyline points="0.19101982826886954,0.4396344206974129-0.19101982826886954,0.40963442069741285"/><polyline points="0.330764871201652,0.4396344206974129-0.330764871201652,0.40963442069741285"/><polyline points="0.4705099141344351,0.4396344206974129-0.4705099141344351,0.40963442069741285"/><polyline points="0.6102549570672173,0.4396344206974129-0.6102549570672173,0.40963442069741285"/><polyline points="0.75,0.4396344206974129-0.75,0.40963442069741285"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.499437570303744e-3" width="1.3974504293278263" x="-0.6474504293278263" y="0.40888638920134984"/></g><g></g><g></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.87 -0.5531722096956032 1.6775 1.0994222096956032" width="457.74043453182077" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="5.0e-2" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.9019165727170236" width="1.4445949676731749" x="-0.6945949676731749" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,0.40191657271702363+0.75,0.40191657271702363"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,0.3117249154453213+0.75,0.3117249154453213"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,0.2215332581736189+0.75,0.2215332581736189"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,0.13134160090191654+0.75,0.13134160090191654"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,4.114994363021418e-2+0.75,4.114994363021418e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,-4.904171364148813e-2+0.75,-4.904171364148813e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,-0.13923337091319066+0.75,-0.13923337091319066"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,-0.22942502818489297+0.75,-0.22942502818489297"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,-0.3196166854565953+0.75,-0.3196166854565953"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,-0.4098083427282976+0.75,-0.4098083427282976"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,-0.5+0.75,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.41499436302142045">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.3248027057497182">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.23461104847801584">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.14441939120631336">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="5.4227733934611055e-2">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-3.596392333709142e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.12615558060879384">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.21634723788049615">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.30653889515219834">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.3967305524239009">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.4869222096956032">0.5</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><g transform="rotate(-90.0, -0.7201161454354009, 0.40191657271702363)"><polyline points="-0.7201161454354009,0.41691657271702365+-0.7201161454354009,0.3869165727170236"/></g><g transform="rotate(-90.0, -0.7201161454354009, 0.3117249154453213)"><polyline points="-0.7201161454354009,0.32672491544532134+-0.7201161454354009,0.2967249154453213"/></g><g transform="rotate(-90.0, -0.7201161454354009, 0.2215332581736189)"><polyline points="-0.7201161454354009,0.23653325817361892+-0.7201161454354009,0.2065332581736189"/></g><g transform="rotate(-90.0, -0.7201161454354009, 0.13134160090191654)"><polyline points="-0.7201161454354009,0.14634160090191656+-0.7201161454354009,0.11634160090191654"/></g><g transform="rotate(-90.0, -0.7201161454354009, 4.114994363021418e-2)"><polyline points="-0.7201161454354009,5.614994363021418e-2+-0.7201161454354009,2.614994363021418e-2"/></g><g transform="rotate(-90.0, -0.7201161454354009, -4.904171364148813e-2)"><polyline points="-0.7201161454354009,-3.404171364148813e-2+-0.7201161454354009,-6.404171364148813e-2"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.13923337091319066)"><polyline points="-0.7201161454354009,-0.12423337091319066+-0.7201161454354009,-0.15423337091319067"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.22942502818489297)"><polyline points="-0.7201161454354009,-0.21442502818489295+-0.7201161454354009,-0.24442502818489298"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.3196166854565953)"><polyline points="-0.7201161454354009,-0.30461668545659526+-0.7201161454354009,-0.3346166854565953"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.4098083427282976)"><polyline points="-0.7201161454354009,-0.39480834272829757+-0.7201161454354009,-0.4248083427282976"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.5)"><polyline points="-0.7201161454354009,-0.485+-0.7201161454354009,-0.515"/></g></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.9019165727170236" width="3.8522532471284565e-3" x="-0.7080778540381245" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,0.40191657271702363+-0.6945949676731749,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.5501354709058575,0.40191657271702363+-0.5501354709058575,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.40567597413853984,0.40191657271702363+-0.40567597413853984,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.2612164773712222,0.40191657271702363+-0.2612164773712222,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.11675698060390471,0.40191657271702363+-0.11675698060390471,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="2.770251616341257e-2,0.40191657271702363+2.770251616341257e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.1721620129307302,0.40191657271702363+0.1721620129307302,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.3166215096980478,0.40191657271702363+0.3166215096980478,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.4610810064653652,0.40191657271702363+0.4610810064653652,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.6055405032326826,0.40191657271702363+0.6055405032326826,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.75,0.40191657271702363+0.75,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.6945949676731749" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.5501354709058575" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.40567597413853984" y="0.5">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.2612164773712222" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.11675698060390471" y="0.5">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="2.770251616341257e-2" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.1721620129307302" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.3166215096980478" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4610810064653652" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.6055405032326826" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="0.5">0.5</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><polyline points="-0.6945949676731749,0.44081736189402476+-0.6945949676731749,0.41081736189402474"/><polyline points="-0.5501354709058575,0.44081736189402476+-0.5501354709058575,0.41081736189402474"/><polyline points="-0.40567597413853984,0.44081736189402476+-0.40567597413853984,0.41081736189402474"/><polyline points="-0.2612164773712222,0.44081736189402476+-0.2612164773712222,0.41081736189402474"/><polyline points="-0.11675698060390471,0.44081736189402476+-0.11675698060390471,0.41081736189402474"/><polyline points="2.770251616341257e-2,0.44081736189402476+2.770251616341257e-2,0.41081736189402474"/><polyline points="0.1721620129307302,0.44081736189402476+0.1721620129307302,0.41081736189402474"/><polyline points="0.3166215096980478,0.44081736189402476+0.3166215096980478,0.41081736189402474"/><polyline points="0.4610810064653652,0.44081736189402476+0.4610810064653652,0.41081736189402474"/><polyline points="0.6055405032326826,0.44081736189402476+0.6055405032326826,0.41081736189402474"/><polyline points="0.75,0.44081736189402476+0.75,0.41081736189402474"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="3.6076662908680612e-3" width="1.4445949676731749" x="-0.6945949676731749" y="0.41093573844419395"/></g><g></g><g></g></svg>
other/label.svg view
@@ -1,1 +1,1 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.6040702012600883 -0.6493250352560272 1.2533952365161158 1.2533952365161154" width="300.0000000000001" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text transform="rotate(45.0, 1.1313708498984831e-2, -1.131370849898472e-2)" x="1.1313708498984831e-2" y="-1.131370849898472e-2">text at (1,1) rotated by -(pi/4) radians</text></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.6040702012600883 -0.6493250352560272 1.2533952365161158 1.2533952365161154" width="300.0000000000001" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text transform="rotate(45.0, 1.1313708498984831e-2, -1.131370849898472e-2)" x="1.1313708498984831e-2" y="-1.131370849898472e-2">text at (1,1) rotated by -(pi/4) radians</text></g></svg>
other/legend.svg view
@@ -1,46 +1,46 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.87 -0.52 1.6775 1.0662500000000001" width="471.9812426729191" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8052502315094416" width="1.3974504293278263" x="-0.6474504293278263" y="-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.4104159117445746-0.75,0.4104159117445746"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.32989088859363047-0.75,0.32989088859363047"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.2493658654426863-0.75,0.2493658654426863"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.16884084229174212-0.75,0.16884084229174212"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,8.8315819140798e-2-0.75,8.8315819140798e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,7.7907959898537715e-3-0.75,7.7907959898537715e-3"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-7.273422716109057e-2-0.75,-7.273422716109057e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.1532592503120347-0.75,-0.1532592503120347"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.2337842734629787-0.75,-0.2337842734629787"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.31430929661392293-0.75,-0.31430929661392293"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,-0.39483431976486705-0.75,-0.39483431976486705"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.42209204010146156">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.3415670169505174">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.26104199379957327">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.18051697064862904">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="9.999194749768486e-2">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="1.9466924346740633e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-6.105809880420354e-2">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.14158312195514777">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.2221081451060919">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.302633168257036">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.38315819140798013">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7196520348430974, 0.4104159117445746)"><polyline points="-0.7196520348430974,0.4254159117445746--0.7196520348430974,0.3954159117445746"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.32989088859363047)"><polyline points="-0.7196520348430974,0.3448908885936305--0.7196520348430974,0.31489088859363046"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.2493658654426863)"><polyline points="-0.7196520348430974,0.2643658654426863--0.7196520348430974,0.23436586544268628"/></g><g transform="rotate(-90.0, -0.7196520348430974, 0.16884084229174212)"><polyline points="-0.7196520348430974,0.18384084229174213--0.7196520348430974,0.1538408422917421"/></g><g transform="rotate(-90.0, -0.7196520348430974, 8.8315819140798e-2)"><polyline points="-0.7196520348430974,0.103315819140798--0.7196520348430974,7.3315819140798e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, 7.7907959898537715e-3)"><polyline points="-0.7196520348430974,2.279079598985377e-2--0.7196520348430974,-7.209204010146228e-3"/></g><g transform="rotate(-90.0, -0.7196520348430974, -7.273422716109057e-2)"><polyline points="-0.7196520348430974,-5.773422716109057e-2--0.7196520348430974,-8.773422716109057e-2"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.1532592503120347)"><polyline points="-0.7196520348430974,-0.13825925031203468--0.7196520348430974,-0.1682592503120347"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.2337842734629787)"><polyline points="-0.7196520348430974,-0.21878427346297868--0.7196520348430974,-0.2487842734629787"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.31430929661392293)"><polyline points="-0.7196520348430974,-0.2993092966139229--0.7196520348430974,-0.32930929661392294"/></g><g transform="rotate(-90.0, -0.7196520348430974, -0.39483431976486705)"><polyline points="-0.7196520348430974,-0.37983431976486703--0.7196520348430974,-0.40983431976486706"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8052502315094416" width="4.65816809775943e-3" x="-0.7080066145986988" y="-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6474504293278263,0.4104159117445746--0.6474504293278263,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.5077053863950438,0.4104159117445746--0.5077053863950438,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.367960343462261,0.4104159117445746--0.367960343462261,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.22821530052947825,0.4104159117445746--0.22821530052947825,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-8.847025759669558e-2,0.4104159117445746--8.847025759669558e-2,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="5.127478533608687e-2,0.4104159117445746-5.127478533608687e-2,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.19101982826886954,0.4104159117445746-0.19101982826886954,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.330764871201652,0.4104159117445746-0.330764871201652,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4705099141344351,0.4104159117445746-0.4705099141344351,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.6102549570672173,0.4104159117445746-0.6102549570672173,-0.39483431976486705"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.75,0.4104159117445746-0.75,-0.39483431976486705"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.6474504293278263" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.5077053863950438" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.367960343462261" y="0.5">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.22821530052947825" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-8.847025759669558e-2" y="0.5">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="5.127478533608687e-2" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.19101982826886954" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.330764871201652" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4705099141344351" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.6102549570672173" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.75" y="0.5">0.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6474504293278263,0.4475602931110843--0.6474504293278263,0.4175602931110843"/><polyline points="-0.5077053863950438,0.4475602931110843--0.5077053863950438,0.4175602931110843"/><polyline points="-0.367960343462261,0.4475602931110843--0.367960343462261,0.4175602931110843"/><polyline points="-0.22821530052947825,0.4475602931110843--0.22821530052947825,0.4175602931110843"/><polyline points="-8.847025759669558e-2,0.4475602931110843--8.847025759669558e-2,0.4175602931110843"/><polyline points="5.127478533608687e-2,0.4475602931110843-5.127478533608687e-2,0.4175602931110843"/><polyline points="0.19101982826886954,0.4475602931110843-0.19101982826886954,0.4175602931110843"/><polyline points="0.330764871201652,0.4475602931110843-0.330764871201652,0.4175602931110843"/><polyline points="0.4705099141344351,0.4475602931110843-0.4705099141344351,0.4175602931110843"/><polyline points="0.6102549570672173,0.4475602931110843-0.6102549570672173,0.4175602931110843"/><polyline points="0.75,0.4475602931110843-0.75,0.4175602931110843"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.026251157547234e-3" width="1.3974504293278263" x="-0.6474504293278263" y="0.41846841405966906"/></g><g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="6.0e-3" fill="#ffffff"><rect height="0.5053750452953258" width="0.676366007794668" x="2.332577674953029e-2" y="-0.47342674236018867"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608687e-2" y="-1.2501509844184078e-2">blank</text></g><g></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608687e-2" y="-9.27044329025245e-2">abcdefghijklmnopqrst</text></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.6000000000000004e-2" width="3.600000000000003e-2" x="0.5531263450460382" y="-0.10526899383983578"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608687e-2" y="-0.17290735596086482">line</text></g><g stroke-opacity="0.3" stroke="#a6cee3" stroke-width="1.2e-2" fill="none"><polyline points="0.5543569398941046,-0.1574465515158835-0.6214345605018399,-0.1574465515158835"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608687e-2" y="-0.25311027901920535">text</text></g><g fill-opacity="1.0" font-size="3.6e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.5543569398941046" y="-0.24803720256069572">content</text></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608687e-2" y="-0.33331320207754567">rect</text></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#1f78b4"><rect height="2.8989008334339927e-2" width="3.3538810303867406e-2" x="0.5543569398941046" y="-0.3432177799251117"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="5.127478533608687e-2" y="-0.4135161251358861">glyph</text></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.600000000000003e-2" width="3.600000000000003e-2" x="0.5531263450460382" y="-0.42608068607319727"/></g><g></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.87 -0.52 1.6775 1.0662500000000001" width="471.9812426729191" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="5.0e-2" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.8481404520588612" width="1.4445949676731749" x="-0.6945949676731749" y="-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,0.4077647258385989+0.75,0.4077647258385989"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,0.32295068063271276+0.75,0.32295068063271276"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,0.23813663542682662+0.75,0.23813663542682662"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,0.15332259022094047+0.75,0.15332259022094047"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,6.850854501505443e-2+0.75,6.850854501505443e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,-1.6305500190831768e-2+0.75,-1.6305500190831768e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,-0.10111954539671786+0.75,-0.10111954539671786"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,-0.18593359060260406+0.75,-0.18593359060260406"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,-0.27074763580849015+0.75,-0.27074763580849015"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,-0.35556168101437624+0.75,-0.35556168101437624"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,-0.44037572622026233+0.75,-0.44037572622026233"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.42006276239345225">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.33524871718756627">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.2504346719816801">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="0.16562062677579398">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="8.080658156990789e-2">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-4.007463635978259e-3">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-8.882150884186446e-2">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.17363555404775055">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.25844959925363653">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.34326364445952273">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.75" y="-0.4280776896654086">0.5</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><g transform="rotate(-90.0, -0.7201161454354009, 0.4077647258385989)"><polyline points="-0.7201161454354009,0.4227647258385989+-0.7201161454354009,0.3927647258385989"/></g><g transform="rotate(-90.0, -0.7201161454354009, 0.32295068063271276)"><polyline points="-0.7201161454354009,0.3379506806327128+-0.7201161454354009,0.30795068063271275"/></g><g transform="rotate(-90.0, -0.7201161454354009, 0.23813663542682662)"><polyline points="-0.7201161454354009,0.25313663542682663+-0.7201161454354009,0.2231366354268266"/></g><g transform="rotate(-90.0, -0.7201161454354009, 0.15332259022094047)"><polyline points="-0.7201161454354009,0.16832259022094048+-0.7201161454354009,0.13832259022094046"/></g><g transform="rotate(-90.0, -0.7201161454354009, 6.850854501505443e-2)"><polyline points="-0.7201161454354009,8.350854501505443e-2+-0.7201161454354009,5.3508545015054435e-2"/></g><g transform="rotate(-90.0, -0.7201161454354009, -1.6305500190831768e-2)"><polyline points="-0.7201161454354009,-1.3055001908317682e-3+-0.7201161454354009,-3.130550019083177e-2"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.10111954539671786)"><polyline points="-0.7201161454354009,-8.611954539671786e-2+-0.7201161454354009,-0.11611954539671786"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.18593359060260406)"><polyline points="-0.7201161454354009,-0.17093359060260405+-0.7201161454354009,-0.20093359060260407"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.27074763580849015)"><polyline points="-0.7201161454354009,-0.25574763580849014+-0.7201161454354009,-0.28574763580849016"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.35556168101437624)"><polyline points="-0.7201161454354009,-0.3405616810143762+-0.7201161454354009,-0.37056168101437625"/></g><g transform="rotate(-90.0, -0.7201161454354009, -0.44037572622026233)"><polyline points="-0.7201161454354009,-0.4253757262202623+-0.7201161454354009,-0.45537572622026234"/></g></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.8481404520588612" width="3.8522532471284565e-3" x="-0.7080778540381245" y="-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6945949676731749,0.4077647258385989+-0.6945949676731749,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.5501354709058575,0.4077647258385989+-0.5501354709058575,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.40567597413853984,0.4077647258385989+-0.40567597413853984,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.2612164773712222,0.4077647258385989+-0.2612164773712222,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.11675698060390471,0.4077647258385989+-0.11675698060390471,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="2.770251616341257e-2,0.4077647258385989+2.770251616341257e-2,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.1721620129307302,0.4077647258385989+0.1721620129307302,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.3166215096980478,0.4077647258385989+0.3166215096980478,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.4610810064653652,0.4077647258385989+0.4610810064653652,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.6055405032326826,0.4077647258385989+0.6055405032326826,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.75,0.4077647258385989+0.75,-0.44037572622026233"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.6945949676731749" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.5501354709058575" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.40567597413853984" y="0.5">-0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.2612164773712222" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.11675698060390471" y="0.5">-0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="2.770251616341257e-2" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.1721620129307302" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.3166215096980478" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4610810064653652" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.6055405032326826" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="0.5">0.5</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><polyline points="-0.6945949676731749,0.44524044781815864+-0.6945949676731749,0.4152404478181586"/><polyline points="-0.5501354709058575,0.44524044781815864+-0.5501354709058575,0.4152404478181586"/><polyline points="-0.40567597413853984,0.44524044781815864+-0.40567597413853984,0.4152404478181586"/><polyline points="-0.2612164773712222,0.44524044781815864+-0.2612164773712222,0.4152404478181586"/><polyline points="-0.11675698060390471,0.44524044781815864+-0.11675698060390471,0.4152404478181586"/><polyline points="2.770251616341257e-2,0.44524044781815864+2.770251616341257e-2,0.4152404478181586"/><polyline points="0.1721620129307302,0.44524044781815864+0.1721620129307302,0.4152404478181586"/><polyline points="0.3166215096980478,0.44524044781815864+0.3166215096980478,0.4152404478181586"/><polyline points="0.4610810064653652,0.44524044781815864+0.4610810064653652,0.4152404478181586"/><polyline points="0.6055405032326826,0.44524044781815864+0.6055405032326826,0.4152404478181586"/><polyline points="0.75,0.44524044781815864+0.75,0.4152404478181586"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="3.392561808235439e-3" width="1.4445949676731749" x="-0.6945949676731749" y="0.41624613035918745"/></g><g></g><g stroke-opacity="1.0" fill-opacity="0.0" stroke="#0d0d0d" stroke-width="3.0e-3" fill="#0d0d0d"><rect height="0.532292947712141" width="0.6991839643538167" x="-1.1893831900509078e-3" y="-0.49363894660955854"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="2.770251616341257e-2" y="-8.163351851066647e-3">blank</text></g><g></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="2.770251616341257e-2" y="-9.26381408761292e-2">abcdefghijklmnopqrst</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="3.0e-3" fill="#a6cfe3"><rect height="3.6000000000000004e-2" width="3.600000000000003e-2" x="0.5470918441378338" y="-0.11878028921589433"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="2.770251616341257e-2" y="-0.17711292990119176">line</text></g><g stroke-opacity="1.0" stroke="#0d0d0d" stroke-width="1.2e-2" fill="none"><polyline points="0.5477567045257556,-0.18525507824095677+0.6170972629740679,-0.18525507824095677"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="2.770251616341257e-2" y="-0.2615877189262543">text</text></g><g fill-opacity="1.0" font-size="3.6e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="0.5477567045257556" y="-0.26362325601119563">content</text></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="2.770251616341257e-2" y="-0.3460625079513169">rect</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cfe3" stroke-width="3.0e-3" fill="#1f78b5"><rect height="3.0533056274118953e-2" width="3.467027922415622e-2" x="0.5477567045257556" y="-0.3694711844281414"/></g><g fill-opacity="1.0" font-size="4.8e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="2.770251616341257e-2" y="-0.4305372969763793">glyph</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="3.0e-3" fill="#a6cfe3"><rect height="3.600000000000003e-2" width="3.600000000000003e-2" x="0.5470918441378336" y="-0.45667944531614446"/></g><g></g></svg>
other/lglyph.svg view
@@ -1,1 +1,1 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8300000000000001 -0.634 1.6600000000000001 1.159" width="429.6807592752373" xmlns:xlink="http://www.w3.org/1999/xlink"><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="0.5">0,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="0.30000000000000004">0,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="0.10000000000000003">0,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="-0.10000000000000009">0,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="-0.29999999999999993">0,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="-0.5">0,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="0.5">1,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="0.30000000000000004">1,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="0.10000000000000003">1,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="-0.10000000000000009">1,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="-0.29999999999999993">1,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.44999999999999996" y="-0.5">1,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="0.5">2,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="0.30000000000000004">2,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="0.10000000000000003">2,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="-0.10000000000000009">2,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="-0.29999999999999993">2,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1499999999999999" y="-0.5">2,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="0.5">3,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="0.30000000000000004">3,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="0.10000000000000003">3,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="-0.10000000000000009">3,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="-0.29999999999999993">3,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.15000000000000013" y="-0.5">3,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="0.5">4,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="0.30000000000000004">4,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="0.10000000000000003">4,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="-0.10000000000000009">4,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="-0.29999999999999993">4,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4500000000000002" y="-0.5">4,5</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="0.5">5,0</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="0.30000000000000004">5,1</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="0.10000000000000003">5,2</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.10000000000000009">5,3</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.29999999999999993">5,4</text></g><g transform="translate(0.0, -4.0e-2)" fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.5">5,5</text></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="9.500000000000003e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.1050000000000001"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.30499999999999994"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="9.500000000000003e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.1050000000000001"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.30499999999999994"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="9.500000000000003e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.1050000000000001"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.30499999999999994"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="9.500000000000003e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.1050000000000001"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.30499999999999994"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="9.500000000000003e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.1050000000000001"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.30499999999999994"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.505"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.495"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.29500000000000004"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="9.500000000000003e-2"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.1050000000000001"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.30499999999999994"/></g><g stroke-opacity="0.8" fill-opacity="1.0" stroke="#1f78b4" stroke-width="0.0" fill="#000000"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.505"/></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8300000000000001 -0.594 1.6600000000000001 1.119" width="445.0402144772118" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="0.46153846153846156">0,0</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="0.2692307692307693">0,1</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="7.692307692307693e-2">0,2</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="-0.11538461538461542">0,3</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="-0.3076923076923077">0,4</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="-0.5">0,5</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.44999999999999996" y="0.46153846153846156">1,0</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.44999999999999996" y="0.2692307692307693">1,1</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.44999999999999996" y="7.692307692307693e-2">1,2</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.44999999999999996" y="-0.11538461538461542">1,3</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.44999999999999996" y="-0.3076923076923077">1,4</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.44999999999999996" y="-0.5">1,5</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1499999999999999" y="0.46153846153846156">2,0</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1499999999999999" y="0.2692307692307693">2,1</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1499999999999999" y="7.692307692307693e-2">2,2</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1499999999999999" y="-0.11538461538461542">2,3</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1499999999999999" y="-0.3076923076923077">2,4</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1499999999999999" y="-0.5">2,5</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.15000000000000013" y="0.46153846153846156">3,0</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.15000000000000013" y="0.2692307692307693">3,1</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.15000000000000013" y="7.692307692307693e-2">3,2</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.15000000000000013" y="-0.11538461538461542">3,3</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.15000000000000013" y="-0.3076923076923077">3,4</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.15000000000000013" y="-0.5">3,5</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4500000000000002" y="0.46153846153846156">4,0</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4500000000000002" y="0.2692307692307693">4,1</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4500000000000002" y="7.692307692307693e-2">4,2</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4500000000000002" y="-0.11538461538461542">4,3</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4500000000000002" y="-0.3076923076923077">4,4</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4500000000000002" y="-0.5">4,5</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="0.46153846153846156">5,0</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="0.2692307692307693">5,1</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="7.692307692307693e-2">5,2</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="-0.11538461538461542">5,3</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="-0.3076923076923077">5,4</text></g><g fill-opacity="0.2" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="-0.5">5,5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.495"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.3026923076923077"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="0.11038461538461541"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-8.192307692307688e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.27423076923076917"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.755" y="-0.46653846153846146"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.495"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.3026923076923077"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="0.11038461538461541"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-8.192307692307688e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.27423076923076917"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.45499999999999996" y="-0.46653846153846146"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.495"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.3026923076923077"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="0.11038461538461541"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-8.192307692307688e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.27423076923076917"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="-0.15499999999999992" y="-0.46653846153846146"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.495"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.3026923076923077"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="0.11038461538461541"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-8.192307692307688e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.27423076923076917"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.14500000000000013" y="-0.46653846153846146"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.495"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.3026923076923077"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="0.11038461538461541"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-8.192307692307688e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.27423076923076917"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.4450000000000002" y="-0.46653846153846146"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.495"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.3026923076923077"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="0.11038461538461541"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-8.192307692307688e-2"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.27423076923076917"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="0.0" fill="#1f78b5"><rect height="1.0000000000000009e-2" width="1.0000000000000009e-2" x="0.745" y="-0.46653846153846146"/></g></svg>
other/line.svg view
@@ -1,44 +1,44 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.845 -0.7217988346281908 1.615 1.44075" width="336.283185840708" xmlns:xlink="http://www.w3.org/1999/xlink"><g transform="translate(0.7625, 0.72875)" fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="end"><text transform="rotate(-0.0, -5.4741373256744774e-2, -5.604883462819088e-2)" x="-5.4741373256744774e-2" y="-5.604883462819088e-2">An example from chart-svg</text></g><g transform="translate(-6.87875e-2, -0.57175)" fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text transform="rotate(-0.0, -5.4741373256744774e-2, -5.604883462819088e-2)" x="-5.4741373256744774e-2" y="-5.604883462819088e-2">Line Chart</text></g><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8879023307436182" width="1.2639916857435782" x="-0.6867372161285339" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,0.38790233074361824-0.5772544696150443,0.38790233074361824"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,0.2991120976692564-0.5772544696150443,0.2991120976692564"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,0.21032186459489455-0.5772544696150443,0.21032186459489455"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,0.1215316315205327-0.5772544696150443,0.1215316315205327"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,3.2741398446170966e-2-0.5772544696150443,3.2741398446170966e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,-5.604883462819088e-2-0.5772544696150443,-5.604883462819088e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,-0.14483906770255284-0.5772544696150443,-0.14483906770255284"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,-0.23362930077691457-0.5772544696150443,-0.23362930077691457"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,-0.32241953385127653-0.5772544696150443,-0.32241953385127653"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,-0.41120976692563826-0.5772544696150443,-0.41120976692563826"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,-0.5-0.5772544696150443,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.4007769145394007">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.3119866814650389">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.22319644839067704">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.1344062153163152">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="4.5615982241953346e-2">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-4.3174250832408445e-2">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.1319644839067704">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.22075471698113203">3.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.309544950055494">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.3983351831298557">4.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.4871254162042177">5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7225503138912686, 0.38790233074361824)"><polyline points="-0.7225503138912686,0.40290233074361825--0.7225503138912686,0.3729023307436182"/></g><g transform="rotate(-90.0, -0.7225503138912686, 0.2991120976692564)"><polyline points="-0.7225503138912686,0.3141120976692564--0.7225503138912686,0.2841120976692564"/></g><g transform="rotate(-90.0, -0.7225503138912686, 0.21032186459489455)"><polyline points="-0.7225503138912686,0.22532186459489456--0.7225503138912686,0.19532186459489453"/></g><g transform="rotate(-90.0, -0.7225503138912686, 0.1215316315205327)"><polyline points="-0.7225503138912686,0.13653163152053271--0.7225503138912686,0.1065316315205327"/></g><g transform="rotate(-90.0, -0.7225503138912686, 3.2741398446170966e-2)"><polyline points="-0.7225503138912686,4.7741398446170966e-2--0.7225503138912686,1.7741398446170967e-2"/></g><g transform="rotate(-90.0, -0.7225503138912686, -5.604883462819088e-2)"><polyline points="-0.7225503138912686,-4.104883462819088e-2--0.7225503138912686,-7.104883462819088e-2"/></g><g transform="rotate(-90.0, -0.7225503138912686, -0.14483906770255284)"><polyline points="-0.7225503138912686,-0.12983906770255282--0.7225503138912686,-0.15983906770255285"/></g><g transform="rotate(-90.0, -0.7225503138912686, -0.23362930077691457)"><polyline points="-0.7225503138912686,-0.21862930077691456--0.7225503138912686,-0.24862930077691459"/></g><g transform="rotate(-90.0, -0.7225503138912686, -0.32241953385127653)"><polyline points="-0.7225503138912686,-0.3074195338512765--0.7225503138912686,-0.33741953385127654"/></g><g transform="rotate(-90.0, -0.7225503138912686, -0.41120976692563826)"><polyline points="-0.7225503138912686,-0.39620976692563825--0.7225503138912686,-0.4262097669256383"/></g><g transform="rotate(-90.0, -0.7225503138912686, -0.5)"><polyline points="-0.7225503138912686,-0.485--0.7225503138912686,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8879023307436182" width="4.213305619145236e-3" x="-0.7120170498434055" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6867372161285339,0.38790233074361824--0.6867372161285339,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.47607193517127083,0.38790233074361824--0.47607193517127083,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.2654066542140078,0.38790233074361824--0.2654066542140078,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-5.4741373256744774e-2,0.38790233074361824--5.4741373256744774e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.15592390770051834,0.38790233074361824-0.15592390770051834,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.36658918865778123,0.38790233074361824-0.36658918865778123,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.5772544696150443,0.38790233074361824-0.5772544696150443,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.6867372161285339" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.47607193517127083" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.2654066542140078" y="0.5">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-5.4741373256744774e-2" y="0.5">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.15592390770051834" y="0.5">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.36658918865778123" y="0.5">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.5772544696150443" y="0.5">3</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.6867372161285339,0.440638179800222--0.6867372161285339,0.410638179800222"/><polyline points="-0.47607193517127083,0.440638179800222--0.47607193517127083,0.410638179800222"/><polyline points="-0.2654066542140078,0.440638179800222--0.2654066542140078,0.410638179800222"/><polyline points="-5.4741373256744774e-2,0.440638179800222--5.4741373256744774e-2,0.410638179800222"/><polyline points="0.15592390770051834,0.440638179800222-0.15592390770051834,0.410638179800222"/><polyline points="0.36658918865778123,0.440638179800222-0.36658918865778123,0.410638179800222"/><polyline points="0.5772544696150443,0.440638179800222-0.5772544696150443,0.410638179800222"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.439511653718142e-3" width="1.2639916857435782" x="-0.6867372161285339" y="0.4100998890122087"/></g><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.6867372161285339,0.21032186459489455--0.2654066542140078,0.21032186459489455-0.15592390770051834,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.6867372161285339,0.38790233074361824-0.49298835723213896,-0.14483906770255284"/></g><g stroke-opacity="1.0" stroke="#fb9a99" stroke-width="1.0e-2" fill="none"><polyline points="-0.47607193517127083,-0.32241953385127653--0.47607193517127083,0.38790233074361824"/></g><g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#ffffff"><rect height="0.30799112097669257" width="0.37077089448478295" x="0.3560559246099182" y="-8.657047724750278e-2"/></g><g fill-opacity="1.0" font-size="6.25e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.36658918865778123" y="0.18118756936736963">vertical</text></g><g stroke-opacity="1.0" stroke="#fb9a99" stroke-width="1.0e-2" fill="none"><polyline points="0.6193875258064969,0.20588235294117646-0.7036536381894023,0.20588235294117646"/></g><g fill-opacity="1.0" font-size="6.25e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.36658918865778123" y="7.852386237513875e-2">line</text></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="0.6193875258064969,9.433962264150941e-2-0.7036536381894023,9.433962264150941e-2"/></g><g fill-opacity="1.0" font-size="6.25e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.36658918865778123" y="-2.4139844617092177e-2">hockey</text></g><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="0.6193875258064969,-1.6648168701443034e-3-0.7036536381894023,-1.6648168701443034e-3"/></g><g></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.8759951587651147 -0.594 1.6769903175302294 1.14025" width="441.21648345456595" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-0.0, 0.3752423510316214, 0.5)" x="0.3752423510316214" y="0.5">An example from chart-svg</text></g><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text transform="rotate(-0.0, -0.22980689995525283, -0.5)" x="-0.22980689995525283" y="-0.5">Line Chart</text></g><g stroke-opacity="0.0" fill-opacity="5.0e-2" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.7704160246533129" width="1.0772198435402474" x="-0.728907988597132" y="-0.444722650231125"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.728907988597132,0.32569337442218793+0.34831185494311523,0.32569337442218793"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.728907988597132,0.24865177195685662+0.34831185494311523,0.24865177195685662"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.728907988597132,0.17161016949152536+0.34831185494311523,0.17161016949152536"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.728907988597132,9.456856702619398e-2+0.34831185494311523,9.456856702619398e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.728907988597132,1.7526964560862723e-2+0.34831185494311523,1.7526964560862723e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.728907988597132,-5.951463790446854e-2+0.34831185494311523,-5.951463790446854e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.728907988597132,-0.13655624036979985+0.34831185494311523,-0.13655624036979985"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.728907988597132,-0.21359784283513117+0.34831185494311523,-0.21359784283513117"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.728907988597132,-0.2906394453004625+0.34831185494311523,-0.2906394453004625"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.728907988597132,-0.3676810477657938+0.34831185494311523,-0.3676810477657938"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.728907988597132,-0.444722650231125+0.34831185494311523,-0.444722650231125"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.7809951587651147" y="0.3368644067796609">0.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.7809951587651147" y="0.2598228043143297">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.7809951587651147" y="0.18278120184899838">1.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.7809951587651147" y="0.105739599383667">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.7809951587651147" y="2.869799691833569e-2">2.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.7809951587651147" y="-4.834360554699557e-2">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.7809951587651147" y="-0.1253852080123269">3.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.7809951587651147" y="-0.20242681047765798">3.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.7809951587651147" y="-0.2794684129429895">4.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.7809951587651147" y="-0.3565100154083205">4.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.7809951587651147" y="-0.43355161787365204">5.0</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><g transform="rotate(-90.0, -0.7587110709350788, 0.32569337442218793)"><polyline points="-0.7587110709350788,0.34069337442218794+-0.7587110709350788,0.3106933744221879"/></g><g transform="rotate(-90.0, -0.7587110709350788, 0.24865177195685662)"><polyline points="-0.7587110709350788,0.26365177195685663+-0.7587110709350788,0.2336517719568566"/></g><g transform="rotate(-90.0, -0.7587110709350788, 0.17161016949152536)"><polyline points="-0.7587110709350788,0.18661016949152537+-0.7587110709350788,0.15661016949152534"/></g><g transform="rotate(-90.0, -0.7587110709350788, 9.456856702619398e-2)"><polyline points="-0.7587110709350788,0.10956856702619398+-0.7587110709350788,7.956856702619398e-2"/></g><g transform="rotate(-90.0, -0.7587110709350788, 1.7526964560862723e-2)"><polyline points="-0.7587110709350788,3.252696456086272e-2+-0.7587110709350788,2.526964560862724e-3"/></g><g transform="rotate(-90.0, -0.7587110709350788, -5.951463790446854e-2)"><polyline points="-0.7587110709350788,-4.451463790446854e-2+-0.7587110709350788,-7.451463790446854e-2"/></g><g transform="rotate(-90.0, -0.7587110709350788, -0.13655624036979985)"><polyline points="-0.7587110709350788,-0.12155624036979985+-0.7587110709350788,-0.15155624036979987"/></g><g transform="rotate(-90.0, -0.7587110709350788, -0.21359784283513117)"><polyline points="-0.7587110709350788,-0.19859784283513116+-0.7587110709350788,-0.22859784283513118"/></g><g transform="rotate(-90.0, -0.7587110709350788, -0.2906394453004625)"><polyline points="-0.7587110709350788,-0.27563944530046247+-0.7587110709350788,-0.3056394453004625"/></g><g transform="rotate(-90.0, -0.7587110709350788, -0.3676810477657938)"><polyline points="-0.7587110709350788,-0.3526810477657938+-0.7587110709350788,-0.3826810477657938"/></g><g transform="rotate(-90.0, -0.7587110709350788, -0.444722650231125)"><polyline points="-0.7587110709350788,-0.429722650231125+-0.7587110709350788,-0.459722650231125"/></g></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.7704160246533129" width="2.872586249440645e-3" x="-0.7497342389055768" y="-0.444722650231125"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.728907988597132,0.32569337442218793+-0.728907988597132,-0.444722650231125"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.5493713480070908,0.32569337442218793+-0.5493713480070908,-0.444722650231125"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.36983470741704955,0.32569337442218793+-0.36983470741704955,-0.444722650231125"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.19029806682700834,0.32569337442218793+-0.19029806682700834,-0.444722650231125"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-1.0761426236967186e-2,0.32569337442218793+-1.0761426236967186e-2,-0.444722650231125"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.16877521435307408,0.32569337442218793+0.16877521435307408,-0.444722650231125"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.34831185494311523,0.32569337442218793+0.34831185494311523,-0.444722650231125"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.728907988597132" y="0.4210323574730354">0.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.5493713480070908" y="0.4210323574730354">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.36983470741704955" y="0.4210323574730354">1.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.19029806682700834" y="0.4210323574730354">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-1.0761426236967186e-2" y="0.4210323574730354">2.0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.16877521435307408" y="0.4210323574730354">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.34831185494311523" y="0.4210323574730354">3.0</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><polyline points="-0.728907988597132,0.3726656394453004+-0.728907988597132,0.3426656394453004"/><polyline points="-0.5493713480070908,0.3726656394453004+-0.5493713480070908,0.3426656394453004"/><polyline points="-0.36983470741704955,0.3726656394453004+-0.36983470741704955,0.3426656394453004"/><polyline points="-0.19029806682700834,0.3726656394453004+-0.19029806682700834,0.3426656394453004"/><polyline points="-1.0761426236967186e-2,0.3726656394453004+-1.0761426236967186e-2,0.3426656394453004"/><polyline points="0.16877521435307408,0.3726656394453004+0.16877521435307408,0.3426656394453004"/><polyline points="0.34831185494311523,0.3726656394453004+0.34831185494311523,0.3426656394453004"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="3.0816640986132127e-3" width="1.0772198435402474" x="-0.728907988597132" y="0.34495377503852076"/></g><g stroke-opacity="1.0" stroke="#b05929" stroke-width="1.5e-2" fill="none"><polyline points="-0.728907988597132,0.17161016949152536+-0.36983470741704955,0.17161016949152536+-1.0761426236967186e-2,-0.444722650231125"/></g><g stroke-opacity="1.0" stroke="#a6cfe3" stroke-width="3.0e-2" fill="none"><polyline points="-0.728907988597132,0.32569337442218793+0.27649719870709877,-0.13655624036979985"/></g><g stroke-opacity="1.0" stroke="#1f78b5" stroke-width="1.0e-2" fill="none"><polyline points="-0.5493713480070908,-0.2906394453004625+-0.5493713480070908,0.32569337442218793"/></g><g></g><g stroke-opacity="1.0" fill-opacity="0.0" stroke="#0d0d0d" stroke-width="2.5e-3" fill="#0d0d0d"><rect height="0.17758089368258856" width="0.2764864265086635" x="0.5000203162417001" y="-0.15995762711864414"/></g><g fill-opacity="1.0" font-size="3.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="0.5179739803007044" y="-1.3771186440677985e-2">vertical</text></g><g stroke-opacity="1.0" stroke="#1f78b5" stroke-width="1.0e-2" fill="none"><polyline points="0.6400588959019324,-1.839368258859786e-2+0.7477808802559571,-1.839368258859786e-2"/></g><g fill-opacity="1.0" font-size="3.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="0.5179739803007044" y="-6.654468412942993e-2">line</text></g><g stroke-opacity="1.0" stroke="#a6cfe3" stroke-width="3.0e-2" fill="none"><polyline points="0.6400588959019324,-7.11671802773498e-2+0.7477808802559571,-7.11671802773498e-2"/></g><g fill-opacity="1.0" font-size="3.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="0.5179739803007044" y="-0.11931818181818199">hockey</text></g><g stroke-opacity="1.0" stroke="#b05929" stroke-width="1.5e-2" fill="none"><polyline points="0.6400588959019324,-0.12394067796610186+0.7477808802559571,-0.12394067796610186"/></g><g></g></svg>
− other/lines.svg
@@ -1,5 +0,0 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.785 -0.5275 1.57 1.0625" width="443.2941176470589" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.75,0.29999999999999993--0.28125,0.29999999999999993-0.1875,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.75,0.5-0.75,-0.10000000000000009"/></g><g stroke-opacity="1.0" stroke="#e31a1c" stroke-width="1.0e-2" fill="none"><polyline points="-0.5156249999999999,-0.30000000000000016--0.5156249999999999,0.5"/></g></svg>
− other/lineshud.svg
@@ -1,43 +0,0 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.845 -0.5533754162042175 1.6524999999999999 1.0996254162042174" width="450.8353414667996" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8879023307436182" width="1.4285034045997809" x="-0.678503404599781" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,0.3879023307436182-0.7499999999999998,0.3879023307436182"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,0.2991120976692564-0.7499999999999998,0.2991120976692564"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,0.21032186459489455-0.7499999999999998,0.21032186459489455"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,0.1215316315205327-0.7499999999999998,0.1215316315205327"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,3.2741398446170966e-2-0.7499999999999998,3.2741398446170966e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,-5.604883462819088e-2-0.7499999999999998,-5.604883462819088e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,-0.14483906770255284-0.7499999999999998,-0.14483906770255284"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,-0.23362930077691457-0.7499999999999998,-0.23362930077691457"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,-0.3224195338512764-0.7499999999999998,-0.3224195338512764"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,-0.41120976692563815-0.7499999999999998,-0.41120976692563815"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,-0.5-0.7499999999999998,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.4007769145394007">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.31198668146503883">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.22319644839067704">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="0.1344062153163152">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="4.5615982241953346e-2">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-4.3174250832408445e-2">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.1319644839067704">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.22075471698113203">3.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.309544950055494">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.3983351831298557">4.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.75" y="-0.48712541620421745">5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.7189776677301081, 0.3879023307436182)"><polyline points="-0.7189776677301081,0.4029023307436182--0.7189776677301081,0.37290233074361817"/></g><g transform="rotate(-90.0, -0.7189776677301081, 0.2991120976692564)"><polyline points="-0.7189776677301081,0.3141120976692564--0.7189776677301081,0.2841120976692564"/></g><g transform="rotate(-90.0, -0.7189776677301081, 0.21032186459489455)"><polyline points="-0.7189776677301081,0.22532186459489456--0.7189776677301081,0.19532186459489453"/></g><g transform="rotate(-90.0, -0.7189776677301081, 0.1215316315205327)"><polyline points="-0.7189776677301081,0.13653163152053271--0.7189776677301081,0.1065316315205327"/></g><g transform="rotate(-90.0, -0.7189776677301081, 3.2741398446170966e-2)"><polyline points="-0.7189776677301081,4.7741398446170966e-2--0.7189776677301081,1.7741398446170967e-2"/></g><g transform="rotate(-90.0, -0.7189776677301081, -5.604883462819088e-2)"><polyline points="-0.7189776677301081,-4.104883462819088e-2--0.7189776677301081,-7.104883462819088e-2"/></g><g transform="rotate(-90.0, -0.7189776677301081, -0.14483906770255284)"><polyline points="-0.7189776677301081,-0.12983906770255282--0.7189776677301081,-0.15983906770255285"/></g><g transform="rotate(-90.0, -0.7189776677301081, -0.23362930077691457)"><polyline points="-0.7189776677301081,-0.21862930077691456--0.7189776677301081,-0.24862930077691459"/></g><g transform="rotate(-90.0, -0.7189776677301081, -0.3224195338512764)"><polyline points="-0.7189776677301081,-0.3074195338512764--0.7189776677301081,-0.33741953385127643"/></g><g transform="rotate(-90.0, -0.7189776677301081, -0.41120976692563815)"><polyline points="-0.7189776677301081,-0.39620976692563814--0.7189776677301081,-0.42620976692563817"/></g><g transform="rotate(-90.0, -0.7189776677301081, -0.5)"><polyline points="-0.7189776677301081,-0.485--0.7189776677301081,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8879023307436182" width="4.76167801533256e-3" x="-0.7070734726917766" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.678503404599781,0.3879023307436182--0.678503404599781,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.4744314896569551,0.3879023307436182--0.4744314896569551,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.2703595747141293,0.3879023307436182--0.2703595747141293,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-6.628765977130358e-2,0.3879023307436182--6.628765977130358e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.13778425517152249,0.3879023307436182-0.13778425517152249,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.3418561701143479,0.3879023307436182-0.3418561701143479,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.5459280850571739,0.3879023307436182-0.5459280850571739,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.7499999999999998,0.3879023307436182-0.7499999999999998,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.678503404599781" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.4744314896569551" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.2703595747141293" y="0.5">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-6.628765977130358e-2" y="0.5">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.13778425517152249" y="0.5">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.3418561701143479" y="0.5">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.5459280850571739" y="0.5">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.7499999999999998" y="0.5">3.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.678503404599781,0.440638179800222--0.678503404599781,0.410638179800222"/><polyline points="-0.4744314896569551,0.440638179800222--0.4744314896569551,0.410638179800222"/><polyline points="-0.2703595747141293,0.440638179800222--0.2703595747141293,0.410638179800222"/><polyline points="-6.628765977130358e-2,0.440638179800222--6.628765977130358e-2,0.410638179800222"/><polyline points="0.13778425517152249,0.440638179800222-0.13778425517152249,0.410638179800222"/><polyline points="0.3418561701143479,0.440638179800222-0.3418561701143479,0.410638179800222"/><polyline points="0.5459280850571739,0.440638179800222-0.5459280850571739,0.410638179800222"/><polyline points="0.7499999999999998,0.440638179800222-0.7499999999999998,0.410638179800222"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.439511653718031e-3" width="1.4285034045997809" x="-0.678503404599781" y="0.41009988901220873"/></g><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.678503404599781,0.21032186459489455--0.2703595747141293,0.21032186459489455-0.13778425517152249,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.678503404599781,0.3879023307436182-0.6275568510343044,-0.14483906770255284"/></g><g stroke-opacity="1.0" stroke="#e31a1c" stroke-width="1.0e-2" fill="none"><polyline points="-0.4744314896569551,-0.3224195338512764--0.4744314896569551,0.3879023307436182"/></g><g></g></svg>
other/path.svg view
@@ -1,35 +1,35 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.6305500425013985 -0.6332836968312198 1.202600085002797 1.2992423977221954" width="277.6849232547761" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.89422780474347" width="0.7883172981533015" x="-0.3327672556519032" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,0.3942278047434697-0.4555500425013984,0.3942278047434697"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,0.282449329150536-0.4555500425013984,0.282449329150536"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,0.17067085355760225-0.4555500425013984,0.17067085355760225"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,5.889237796466851e-2-0.4555500425013984,5.889237796466851e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,-5.288609762826513e-2-0.4555500425013984,-5.288609762826513e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,-0.16466457322119876-0.4555500425013984,-0.16466457322119876"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,-0.2764430488141326-0.4555500425013984,-0.2764430488141326"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,-0.38822152440706614-0.4555500425013984,-0.38822152440706614"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,-0.5-0.4555500425013984,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="0.40719410791224997">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="0.29541563231931633">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="0.1836371567263826">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="7.185868113344884e-2">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="-3.991979445948479e-2">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="-0.15169827005241854">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="-0.2634767456453523">1.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="-0.37525522123828614">1.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.4555500425013984" y="-0.4870336968312198">1.6</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.4262448478148179, 0.3942278047434697)"><polyline points="-0.4262448478148179,0.4092278047434697--0.4262448478148179,0.3792278047434697"/></g><g transform="rotate(-90.0, -0.4262448478148179, 0.282449329150536)"><polyline points="-0.4262448478148179,0.297449329150536--0.4262448478148179,0.267449329150536"/></g><g transform="rotate(-90.0, -0.4262448478148179, 0.17067085355760225)"><polyline points="-0.4262448478148179,0.18567085355760227--0.4262448478148179,0.15567085355760224"/></g><g transform="rotate(-90.0, -0.4262448478148179, 5.889237796466851e-2)"><polyline points="-0.4262448478148179,7.389237796466851e-2--0.4262448478148179,4.389237796466851e-2"/></g><g transform="rotate(-90.0, -0.4262448478148179, -5.288609762826513e-2)"><polyline points="-0.4262448478148179,-3.788609762826513e-2--0.4262448478148179,-6.788609762826513e-2"/></g><g transform="rotate(-90.0, -0.4262448478148179, -0.16466457322119876)"><polyline points="-0.4262448478148179,-0.14966457322119875--0.4262448478148179,-0.17966457322119878"/></g><g transform="rotate(-90.0, -0.4262448478148179, -0.2764430488141326)"><polyline points="-0.4262448478148179,-0.2614430488141326--0.4262448478148179,-0.29144304881413263"/></g><g transform="rotate(-90.0, -0.4262448478148179, -0.38822152440706614)"><polyline points="-0.4262448478148179,-0.37322152440706613--0.4262448478148179,-0.40322152440706616"/></g><g transform="rotate(-90.0, -0.4262448478148179, -0.5)"><polyline points="-0.4262448478148179,-0.485--0.4262448478148179,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.89422780474347" width="4.498111233550373e-3" x="-0.4149995697309421" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3327672556519032,0.39422780474346997--0.3327672556519032,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.22015049877286003,0.39422780474346997--0.22015049877286003,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.10753374189381687,0.39422780474346997--0.10753374189381687,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="5.083014985226231e-3,0.39422780474346997-5.083014985226231e-3,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.11769977186426928,0.39422780474346997-0.11769977186426928,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.23031652874331232,0.39422780474346997-0.23031652874331232,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.3429332856223556,0.39422780474346997-0.3429332856223556,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4555500425013984,0.39422780474346997-0.4555500425013984,-0.5"/></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.3327672556519032, 0.5)" x="-0.3327672556519032" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.22015049877286003, 0.5)" x="-0.22015049877286003" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.10753374189381687, 0.5)" x="-0.10753374189381687" y="0.5">0</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 5.083014985226231e-3, 0.5)" x="5.083014985226231e-3" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.11769977186426928, 0.5)" x="0.11769977186426928" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.23031652874331232, 0.5)" x="0.23031652874331232" y="0.5">0.6</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.3429332856223556, 0.5)" x="0.3429332856223556" y="0.5">0.8</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.4555500425013984, 0.5)" x="0.4555500425013984" y="0.5">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.3327672556519032,0.4485738281521824--0.3327672556519032,0.41857382815218236"/><polyline points="-0.22015049877286003,0.4485738281521824--0.22015049877286003,0.41857382815218236"/><polyline points="-0.10753374189381687,0.4485738281521824--0.10753374189381687,0.41857382815218236"/><polyline points="5.083014985226231e-3,0.4485738281521824-5.083014985226231e-3,0.41857382815218236"/><polyline points="0.11769977186426928,0.4485738281521824-0.11769977186426928,0.41857382815218236"/><polyline points="0.23031652874331232,0.4485738281521824-0.23031652874331232,0.41857382815218236"/><polyline points="0.3429332856223556,0.4485738281521824-0.3429332856223556,0.41857382815218236"/><polyline points="0.4555500425013984,0.4485738281521824-0.4555500425013984,0.41857382815218236"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.47113902371743e-3" width="0.7883172981533015" x="-0.3327672556519032" y="0.41792484156917165"/></g><g stroke-opacity="0.3" fill-opacity="0.1" stroke="#33cc66" stroke-width="1.0e-2" fill="#e31a1c"><path d="M -0.1075,0.3942 L 0.4556,0.3942 C 0.0051,0.3942 0.0332,-0.1647 0.4556,-0.1647 Q -0.6706,-0.7236 -0.1075,-0.1647 A 0.5620351388274053 0.5599394353943101 30.0 0 0 -0.1075,0.3942"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0000000000000027e-2" width="3.0e-2" x="-0.12253374189381687" y="0.3792278047434697"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.4405500425013984" y="0.3792278047434697"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.4405500425013984" y="-0.17966457322119878"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="-0.12253374189381687" y="-0.17966457322119878"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="-0.12253374189381687" y="0.3792278047434697"/></g><g></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.6012842749868601 -0.6332546448113643 1.1440685499737202 1.29921334570234" width="264.1756768643528" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="5.0e-2" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.8962313923197105" width="0.8000434283917985" x="-0.3737591534049384" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.3737591534049384,0.3962313923197103+0.4262842749868601,0.3962313923197103"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.3737591534049384,0.2842024682797465+0.4262842749868601,0.2842024682797465"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.3737591534049384,0.1721735442397827+0.4262842749868601,0.1721735442397827"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.3737591534049384,6.014462019981892e-2+0.4262842749868601,6.014462019981892e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.3737591534049384,-5.188430384014486e-2+0.4262842749868601,-5.188430384014486e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.3737591534049384,-0.16391322788010854+0.4262842749868601,-0.16391322788010854"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.3737591534049384,-0.27594215192007243+0.4262842749868601,-0.27594215192007243"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.3737591534049384,-0.3879710759600362+0.4262842749868601,-0.3879710759600362"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.3737591534049384,-0.5+0.4262842749868601,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.4262842749868601" y="0.4092267475083461">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.4262842749868601" y="0.2971978234683823">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.4262842749868601" y="0.18516889942841852">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.4262842749868601" y="7.313997538845474e-2">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.4262842749868601" y="-3.888894865150905e-2">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.4262842749868601" y="-0.15091787269147272">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.4262842749868601" y="-0.2629467967314366">1.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.4262842749868601" y="-0.3749757207714005">1.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.4262842749868601" y="-0.4870046448113643">1.6</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><g transform="rotate(-90.0, -0.3979537600783423, 0.3962313923197103)"><polyline points="-0.3979537600783423,0.4112313923197103+-0.3979537600783423,0.38123139231971026"/></g><g transform="rotate(-90.0, -0.3979537600783423, 0.2842024682797465)"><polyline points="-0.3979537600783423,0.2992024682797465+-0.3979537600783423,0.2692024682797465"/></g><g transform="rotate(-90.0, -0.3979537600783423, 0.1721735442397827)"><polyline points="-0.3979537600783423,0.18717354423978272+-0.3979537600783423,0.1571735442397827"/></g><g transform="rotate(-90.0, -0.3979537600783423, 6.014462019981892e-2)"><polyline points="-0.3979537600783423,7.514462019981892e-2+-0.3979537600783423,4.514462019981892e-2"/></g><g transform="rotate(-90.0, -0.3979537600783423, -5.188430384014486e-2)"><polyline points="-0.3979537600783423,-3.6884303840144864e-2+-0.3979537600783423,-6.688430384014486e-2"/></g><g transform="rotate(-90.0, -0.3979537600783423, -0.16391322788010854)"><polyline points="-0.3979537600783423,-0.14891322788010852+-0.3979537600783423,-0.17891322788010855"/></g><g transform="rotate(-90.0, -0.3979537600783423, -0.27594215192007243)"><polyline points="-0.3979537600783423,-0.2609421519200724+-0.3979537600783423,-0.29094215192007244"/></g><g transform="rotate(-90.0, -0.3979537600783423, -0.3879710759600362)"><polyline points="-0.3979537600783423,-0.3729710759600362+-0.3979537600783423,-0.40297107596003623"/></g><g transform="rotate(-90.0, -0.3979537600783423, -0.5)"><polyline points="-0.3979537600783423,-0.485+-0.3979537600783423,-0.515"/></g></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.8962313923197105" width="3.652016101645894e-3" x="-0.386541209760699" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.3737591534049384,0.3962313923197105+-0.3737591534049384,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.25946723506325287,0.3962313923197105+-0.25946723506325287,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.14517531672156742,0.3962313923197105+-0.14517531672156742,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-3.0883398379881855e-2,0.3962313923197105+-3.0883398379881855e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="8.34085199618036e-2,0.3962313923197105+8.34085199618036e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.197700438303489,0.3962313923197105+0.197700438303489,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.3119923566451746,0.3962313923197105+0.3119923566451746,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.4262842749868601,0.3962313923197105+0.4262842749868601,-0.5"/></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.3737591534049384, 0.5)" x="-0.3737591534049384" y="0.5">-0.4</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.25946723506325287, 0.5)" x="-0.25946723506325287" y="0.5">-0.2</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.14517531672156742, 0.5)" x="-0.14517531672156742" y="0.5">0</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -3.0883398379881855e-2, 0.5)" x="-3.0883398379881855e-2" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 8.34085199618036e-2, 0.5)" x="8.34085199618036e-2" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 0.197700438303489, 0.5)" x="0.197700438303489" y="0.5">0.6</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 0.3119923566451746, 0.5)" x="0.3119923566451746" y="0.5">0.8</text></g><g fill-opacity="1.0" font-size="3.694245123030814e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 0.4262842749868601, 0.5)" x="0.4262842749868601" y="0.5">1</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><polyline points="-0.3737591534049384,0.4497693421894578+-0.3737591534049384,0.4197693421894578"/><polyline points="-0.25946723506325287,0.4497693421894578+-0.25946723506325287,0.4197693421894578"/><polyline points="-0.14517531672156742,0.4497693421894578+-0.14517531672156742,0.4197693421894578"/><polyline points="-3.0883398379881855e-2,0.4497693421894578+-3.0883398379881855e-2,0.4197693421894578"/><polyline points="8.34085199618036e-2,0.4497693421894578+8.34085199618036e-2,0.4197693421894578"/><polyline points="0.197700438303489,0.4497693421894578+0.197700438303489,0.4197693421894578"/><polyline points="0.3119923566451746,0.4497693421894578+0.3119923566451746,0.4197693421894578"/><polyline points="0.4262842749868601,0.4497693421894578+0.4262842749868601,0.4197693421894578"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="3.584925569278752e-3" width="0.8000434283917985" x="-0.3737591534049384" y="0.4199815242161827"/></g><g stroke-opacity="0.3" fill-opacity="0.1" stroke="#33cc66" stroke-width="1.0e-2" fill="#1f78b5"><path d="M -0.1452,0.3962 L 0.4263,0.3962 C -0.0309,0.3962 -0.0023,-0.1639 0.4263,-0.1639 Q -0.7166,-0.7241 -0.1452,-0.1639 A 0.5686281102556423 0.5629706236631298 30.0 0 0 -0.1452,0.3962"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="3.0e-3" fill="#a6cfe3"><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.16017531672156743" y="0.38123139231971026"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.4112842749868601" y="0.38123139231971026"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.4112842749868601" y="-0.17891322788010855"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.16017531672156743" y="-0.17891322788010855"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.16017531672156743" y="0.38123139231971026"/></g><g></g></svg>
− other/problematic1.svg
@@ -1,55 +0,0 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-1.095 -0.5533925404566615 2.1314999999999995 1.0996425404566614" width="581.5071502548892" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8867213478164488" width="1.926248750948076" x="-0.9262487509480759" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,0.3867213478164488-1.0,0.3867213478164488"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,0.29804921303480386-1.0,0.29804921303480386"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,0.20937707825315893-1.0,0.20937707825315893"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,0.12070494347151406-1.0,0.12070494347151406"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,3.203280868986924e-2-1.0,3.203280868986924e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,-5.663932609177569e-2-1.0,-5.663932609177569e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,-0.14531146087342062-1.0,-0.14531146087342062"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,-0.23398359565506555-1.0,-0.23398359565506555"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,-0.32265573043671036-1.0,-0.32265573043671036"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,-0.4113278652183553-1.0,-0.4113278652183553"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,-0.5-1.0,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="0.39957880735978724">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="0.3109066725781424">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="0.2222345377964975">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="0.13356240301485256">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="4.4890268233207686e-2">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="-4.3781866548437076e-2">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="-0.13245400133008223">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="-0.22112613611172705">0.7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="-0.30979827089337186">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="-0.3984704056750168">0.9</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-1.0" y="-0.4871425404566615">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.9686262234689335, 0.3867213478164488)"><polyline points="-0.9686262234689335,0.4017213478164488--0.9686262234689335,0.3717213478164488"/></g><g transform="rotate(-90.0, -0.9686262234689335, 0.29804921303480386)"><polyline points="-0.9686262234689335,0.3130492130348039--0.9686262234689335,0.28304921303480385"/></g><g transform="rotate(-90.0, -0.9686262234689335, 0.20937707825315893)"><polyline points="-0.9686262234689335,0.22437707825315895--0.9686262234689335,0.19437707825315892"/></g><g transform="rotate(-90.0, -0.9686262234689335, 0.12070494347151406)"><polyline points="-0.9686262234689335,0.13570494347151407--0.9686262234689335,0.10570494347151406"/></g><g transform="rotate(-90.0, -0.9686262234689335, 3.203280868986924e-2)"><polyline points="-0.9686262234689335,4.703280868986924e-2--0.9686262234689335,1.703280868986924e-2"/></g><g transform="rotate(-90.0, -0.9686262234689335, -5.663932609177569e-2)"><polyline points="-0.9686262234689335,-4.163932609177569e-2--0.9686262234689335,-7.163932609177569e-2"/></g><g transform="rotate(-90.0, -0.9686262234689335, -0.14531146087342062)"><polyline points="-0.9686262234689335,-0.1303114608734206--0.9686262234689335,-0.16031146087342063"/></g><g transform="rotate(-90.0, -0.9686262234689335, -0.23398359565506555)"><polyline points="-0.9686262234689335,-0.21898359565506553--0.9686262234689335,-0.24898359565506556"/></g><g transform="rotate(-90.0, -0.9686262234689335, -0.32265573043671036)"><polyline points="-0.9686262234689335,-0.30765573043671035--0.9686262234689335,-0.3376557304367104"/></g><g transform="rotate(-90.0, -0.9686262234689335, -0.4113278652183553)"><polyline points="-0.9686262234689335,-0.3963278652183553--0.9686262234689335,-0.4263278652183553"/></g><g transform="rotate(-90.0, -0.9686262234689335, -0.5)"><polyline points="-0.9686262234689335,-0.485--0.9686262234689335,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8867213478164488" width="4.815621877370058e-3" x="-0.9565871687755079" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.9262487509480759,0.3867213478164488--0.9262487509480759,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.7336238758532685,0.3867213478164488--0.7336238758532685,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.5409990007584609,0.3867213478164488--0.5409990007584609,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.34837412566365333,0.3867213478164488--0.34837412566365333,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.1557492505688457,0.3867213478164488--0.1557492505688457,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.6875624525961825e-2,0.3867213478164488-3.6875624525961825e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.22950049962076946,0.3867213478164488-0.22950049962076946,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4221253747155771,0.3867213478164488-0.4221253747155771,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.6147502498103845,0.3867213478164488-0.6147502498103845,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.8073751249051919,0.3867213478164488-0.8073751249051919,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.9999999999999996,0.3867213478164488-0.9999999999999996,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.9262487509480759" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.7336238758532685" y="0.5">0.1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.5409990007584609" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.34837412566365333" y="0.5">0.3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.1557492505688457" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.6875624525961825e-2" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.22950049962076946" y="0.5">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4221253747155771" y="0.5">0.7</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.6147502498103845" y="0.5">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.8073751249051919" y="0.5">0.9</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.9999999999999996" y="0.5">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.9262487509480759,0.44073708712037246--0.9262487509480759,0.41073708712037243"/><polyline points="-0.7336238758532685,0.44073708712037246--0.7336238758532685,0.41073708712037243"/><polyline points="-0.5409990007584609,0.44073708712037246--0.5409990007584609,0.41073708712037243"/><polyline points="-0.34837412566365333,0.44073708712037246--0.34837412566365333,0.41073708712037243"/><polyline points="-0.1557492505688457,0.44073708712037246--0.1557492505688457,0.41073708712037243"/><polyline points="3.6875624525961825e-2,0.44073708712037246-3.6875624525961825e-2,0.41073708712037243"/><polyline points="0.22950049962076946,0.44073708712037246-0.22950049962076946,0.41073708712037243"/><polyline points="0.4221253747155771,0.44073708712037246-0.4221253747155771,0.41073708712037243"/><polyline points="0.6147502498103845,0.44073708712037246-0.6147502498103845,0.41073708712037243"/><polyline points="0.8073751249051919,0.44073708712037246-0.8073751249051919,0.41073708712037243"/><polyline points="0.9999999999999996,0.44073708712037246-0.9999999999999996,0.41073708712037243"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.433606739082219e-3" width="1.926248750948076" x="-0.9262487509480759" y="0.4102194635335846"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#1f78b4"><path d="M -0.9262,-0.5 A 1.9262487509480752 0.8867213478164487 -0.0 0 0 1.0000,0.3867"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="-0.9262487509480759,-0.5--0.9025334323973616,-0.36128622031458135--0.8319714265945679,-0.22598803424965874--0.7163002043044301,-9.743693217508598e-2--0.558367974910509,2.1201731139413205e-2--0.36206355404750157,0.12700667806388616--0.1322206080540761,0.21737263965856574-0.12550136693440495,0.2900745060415588-0.4047564005635287,0.343322115978855-0.6986683071110245,0.37580433659511225-0.9999999999999996,0.3867213478164488"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0000000000000027e-2" width="2.9999999999999916e-2" x="0.9849999999999995" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.9412487509480759" y="-0.515"/><rect height="3.0000000000000027e-2" width="2.9999999999999916e-2" x="0.9849999999999995" y="0.3717213478164488"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="0.8867213478164488" width="1.9262487509480755" x="-0.9262487509480759" y="-0.5"/></g><g></g></svg>
− other/problematic2.svg
@@ -1,339 +0,0 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-4.185074999999999 -3.53175 7.197575 4.16925" width="517.9042993344126" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="4.0" width="7.0" x="-4.0" y="-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,0.5-3.0,0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-0.0-3.0,-0.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-0.5000000000000001-3.0,-0.5000000000000001"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-1.0000000000000004-3.0,-1.0000000000000004"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-1.5-3.0,-1.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-2.0-3.0,-2.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-2.5-3.0,-2.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-3.0-3.0,-3.0"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,-3.5-3.0,-3.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="0.5145">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="1.4499999999999957e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-0.48549999999999993">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-0.9855000000000002">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-1.4855">1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-1.9855">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-2.4855">2.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-2.9855000000000005">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-4.085075" y="-3.4855">3.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -4.0525, 0.5)"><polyline points="-4.0525,0.515--4.0525,0.485"/></g><g transform="rotate(-90.0, -4.0525, -0.0)"><polyline points="-4.0525,1.5e-2--4.0525,-1.5e-2"/></g><g transform="rotate(-90.0, -4.0525, -0.5000000000000001)"><polyline points="-4.0525,-0.4850000000000001--4.0525,-0.5150000000000001"/></g><g transform="rotate(-90.0, -4.0525, -1.0000000000000004)"><polyline points="-4.0525,-0.9850000000000004--4.0525,-1.0150000000000003"/></g><g transform="rotate(-90.0, -4.0525, -1.5)"><polyline points="-4.0525,-1.485--4.0525,-1.515"/></g><g transform="rotate(-90.0, -4.0525, -2.0)"><polyline points="-4.0525,-1.985--4.0525,-2.015"/></g><g transform="rotate(-90.0, -4.0525, -2.5)"><polyline points="-4.0525,-2.485--4.0525,-2.515"/></g><g transform="rotate(-90.0, -4.0525, -3.0)"><polyline points="-4.0525,-2.985--4.0525,-3.015"/></g><g transform="rotate(-90.0, -4.0525, -3.5)"><polyline points="-4.0525,-3.485--4.0525,-3.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.0" width="4.999999999999893e-3" x="-4.04" y="-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-4.0,0.5--4.0,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-3.0,0.5--3.0,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-2.0,0.5--2.0,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-1.0000000000000004,0.5--1.0000000000000004,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-8.881784197001252e-16,0.5--8.881784197001252e-16,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.9999999999999991,0.5-0.9999999999999991,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="2.0,0.5-2.0,-3.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.0,0.5-3.0,-3.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-4.0" y="0.61125">-4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-3.0" y="0.61125">-3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-2.0" y="0.61125">-2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-1.0000000000000004" y="0.61125">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-8.881784197001252e-16" y="0.61125">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.9999999999999991" y="0.61125">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="2.0" y="0.61125">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.0" y="0.61125">3</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-4.0,0.5425--4.0,0.5125"/><polyline points="-3.0,0.5425--3.0,0.5125"/><polyline points="-2.0,0.5425--2.0,0.5125"/><polyline points="-1.0000000000000004,0.5425--1.0000000000000004,0.5125"/><polyline points="-8.881784197001252e-16,0.5425--8.881784197001252e-16,0.5125"/><polyline points="0.9999999999999991,0.5425-0.9999999999999991,0.5125"/><polyline points="2.0,0.5425-2.0,0.5125"/><polyline points="3.0,0.5425-3.0,0.5125"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="5.0000000000000044e-3" width="7.0" x="-4.0" y="0.51"/></g><g stroke-opacity="0.4" stroke="#33a02c" stroke-width="3.0e-2" fill="none"><polyline points="4.04565611708918e-2,-3.601595374466926e-2--0.1100728945645777,-8.800467303322723e-2--0.26113586760633956,-0.14459414816136595--0.4122755076427147,-0.20561323911489504--0.5630347325028198,-0.27087740966922236--0.7129576104816207,-0.34018928547073246--0.86159073918571,-0.4133392509437127--1.0084846167298291,-0.4901060832176406--1.1531950011373477,-0.5702576211576941--1.2952842538335116,-0.653551467475164--1.434322663168444,-0.7397357217944301--1.5698897439672481,-0.8285497424595359--1.701575509177041,-0.9197249347764557--1.8289817097651944,-1.0129855633072524--1.9517230391189981,-1.108049585759538--2.0694282983043744,-1.2046295059493537--2.181741518659628,-1.302433243257918--2.2883230383292306,-1.401165015952797--2.388850529481946,-1.5005262357021167--2.483019973106755,-1.6002164105766--2.5705465784385595,-1.6999340538085383--2.651165644233094,-1.7993775955593843--2.7246333592863703,-1.8982462949385748--2.790727539777661,-1.9962411495154204--2.849248301206157,-2.0930657995734716--2.9000186628891607,-2.1884274243726964--2.942885083193726,-2.282037627708951--2.977717923883013,-2.3736133100926025--3.0044118421731136,-2.4628775249086248--3.0228861093146513,-2.5495603159689506--3.0330848547356917,-2.6333995339241008--3.03497723500763,-2.7141416290650833--3.0285575271230334,-2.7915424181179436--3.0138451458033853,-2.865367822711979--2.990884584784353,-2.9353945772883305--2.9597452822561605,-3.001410904308069--2.9205214108660087,-3.0632171547177713--2.8733315929176246,-3.120626411735683--2.818318541629237,-3.173465056132457--2.755648629534904,-3.221573291296951--2.6855113853344603,-3.2648056264991254--2.608118920713702,-3.3030313168885796--2.523705288868271,-3.3361347588980252--2.4325257766711985,-3.364015839855938--2.3348561326247674,-3.386590240751052--2.2309917329315345,-3.403789691233081--2.1212466882065453,-3.4155621760784705--2.005952893532216,-3.421872092496791--1.88545902472878,-3.4227003578020323--1.7601294838757804,-3.4180444671231784--1.6303432972736283,-3.4079185009795303--1.4964929691780497,-3.392353082697875--1.3589832947739806,-3.3713952858002694--1.218230135978775,-3.3451084916425287--1.074659163776996,-3.3135721977339507--0.9287045708902486,-3.2768817773179677--0.7808077586752562,-3.2351481909408015--0.6314160022213207,-3.188497650880419--0.48098109768420816,-3.1370712394506235--0.3299579959472574,-3.081024482334628--0.17880342674185368,-3.0205268782384445--2.7974517388233977e-2,-2.955761386286542-0.12207258966611256,-2.8869238727099917-0.27088411632953857,-2.8142225185004706-0.4180100211989899,-2.7378771898214787-0.5630053605920864,-2.658118773080853-0.7054316341625153,-2.5751884766754185-0.8448581110292261,-2.4893371015195087-0.9808631324089312,-2.4008242825634225-1.113035386812407,-2.3099177035956777-1.2409751539481517,-2.216892287703636-1.3642955135714772,-2.1220293658408016-1.4826235156232412,-2.025615826015184-1.5956013081194023,-1.927943245671822-1.7028872193804228,-1.8293070098933333-1.8041567913275856,-1.730005418085267-1.8991037607212888,-1.6303387818478412-1.9874409853738237,-1.5306085167623338-2.0689013125355578,-1.4311162308387781-2.1432383868283083,-1.332162812381691-2.2102273952825158,-1.2340475200323762-2.269665747225061,-1.137067077739717-2.3213736869615875,-1.0415147773964661-2.3651948374004146,-0.9476795918548994-2.4009966729740055,-0.8558453010042836-2.428670920427761,-0.7662896335530697-2.4481338862640616,-0.6792834271113214-2.45932670985128,-0.5950898091134543-2.4622155414323146,-0.5139634010583648-2.456791644494296,-0.4361495484735435-2.4430714221898757,-0.36188357893193035-2.4210963677301978,-0.29139009036542696-2.390932938899562,-0.22488227182741027-2.35267235707132,-0.1625612587583971-2.3064303313327565,-0.1046155247046936-2.2523467085533317,-5.122031132962679e-2-2.1905850504545326,-2.537098441131924e-3-2.121332138960379,4.1286884361546816e-2-2.0447974113245095,8.011910294513092e-2-1.9612123267421877,0.11384211945700962-1.8708296663627317,0.14235394748519598"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="2.9999999999999805e-2" width="3.0000000000000027e-2" x="-0.30148671851794784" y="-1.6242991486979668"/><rect height="3.0e-2" width="3.0e-2" x="-1.5000000000000888e-2" y="-1.5e-2"/><rect height="3.0e-2" width="3.0000000000000027e-2" x="1.985" y="-1.5e-2"/><rect height="3.000000000000025e-2" width="2.9999999999999805e-2" x="1.4305640890509286" y="-2.124299148697967"/><rect height="3.000000000000025e-2" width="3.000000000000025e-2" x="-2.3014867185179466" y="-3.356349956266845"/></g><g stroke-opacity="1.0" stroke="#e63305" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="-0.2864867185179478,-1.6092991486979669-1.4455640890509285,-2.109299148697967"/></g><g stroke-opacity="1.0" stroke="#e6cc05" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="-0.2864867185179478,-1.6092991486979669--2.2864867185179465,-3.341349956266845"/></g><g stroke-opacity="1.0" stroke="#33e6cc" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="-0.2864867185179478,-1.6092991486979669--8.881784197001252e-16,-0.0"/></g><g stroke-opacity="1.0" stroke="#3333e6" stroke-width="5.0e-3" fill="none" stroke-linecap="round" stroke-dasharray="3.0e-2 1.0e-2"><polyline points="-0.2864867185179478,-1.6092991486979669-2.0,-0.0"/></g><g stroke-opacity="0.3" stroke="#e31a1c" stroke-width="4.0e-2" fill="none"><polyline points="0.0,-0.0--0.14100802543192303,-4.5733527702466525e-2--0.28243205242005986,-9.593812754463205e-2--0.4238676738717646,-0.15047023766722867--0.5649104495396009,-0.2091739215396644--0.7051570625327872,-0.2718813138661478--0.8442064726163507,-0.33841310060253527--0.9816610630001037,-0.4085790317112924--1.117127777338164,-0.4821784651883215--1.2502192436877082,-0.5590009408059863--1.3805548822129836,-0.638826781931708--1.5077619934670392,-0.7214277237011971--1.631476824139194,-0.8065675657500427--1.7513456072207232,-0.8940028476371534--1.8670255736143417,-0.9834835450286462--1.9781859322947688,-1.0747537846514228--2.0845088162175625,-1.1675525759719996--2.1856901912713713,-1.2616145575083242--2.2814407256744103,-1.3566707556404842--2.3714866173291016,-1.4524493537504446--2.4555703767690193,-1.548676469491446--2.533451563459283,-1.6450769379644319--2.604907473344915,-1.741375098561968--2.6697337756811006,-1.8372955832296727--2.7277450973243003,-1.9325641038910728--2.7787755528134204,-2.026908236784221--2.822679218725262,-2.120058201467252--2.859330550947795,-2.21174763226525--2.888624743678063,-2.3017143399524853--2.9104780291181473,-2.3897010614919383--2.924827917012201,-2.4754561956881993--2.9316333733395776,-2.5587345226501497--2.930874937653096,-2.639297905006052--2.9225547787268855,-2.7169159688659392--2.906696688354697,-2.7913667625840315--2.883346013316417,-2.862437391437458--2.852569525707316,-2.929924626406377--2.8144552320008405,-2.993635485314661--2.769112121390938,-3.053387784669377--2.716669854133534,-3.1090106606210415--2.657278390778367,-3.160345057554936--2.591107563351404,-3.2072441829163645--2.518346589714046,-3.249573926969246--2.4392035324878574,-3.287213246287724--2.3539047040920034,-3.3200545098842014--2.262694019594756,-3.348003806984017--2.1658322992295727,-3.37098121556669--2.0635965225702657,-3.3889210309058058--1.9562790364979419,-3.40177195345405--1.844186719224576,-3.409497235536108--1.7276401027637318,-3.4120747864299616--1.6069724563577363,-3.409497235536108--1.4825288334822875,-3.40177195345405--1.3546650851536293,-3.3889210309058058--1.2237468423597835,-3.37098121556669--1.0901484705255613,-3.348003806984018--0.9542519990011895,-3.3200545098842014--0.8164460286356174,-3.2872132462877244--0.6771246205584331,-3.249573926969247--0.5366861693478651,-3.2072441829163654--0.3955322638071732,-3.160345057554936--0.25406653860701267,-3.1090106606210424--0.11269352007756428,-3.0533877846693787-2.8182530549051066e-2,-2.993635485314661-0.16815877313829386,-2.9299246264063785-0.3068349405890922,-2.8624373914374592-0.4438144834119946,-2.7913667625840315-0.5787057036767047,-2.71691596886594-0.7111228750864056,-2.639297905006054-0.8406873459759847,-2.5587345226501514-0.9670286220800834,-2.4754561956882-1.089785425974779,-2.389701061491939-1.2086067301633854,-2.3017143399524853-1.3231527608521843,-2.2117476322652503-1.4330959695458354,-2.1200582014672533-1.5381219696840782,-2.026908236784222-1.637930435641385,-1.9325641038910741-1.7322359615189278,-1.837295583229674-1.820768877272985,-1.7413750985619685-1.903276019846147,-1.6450769379644332-1.979521457096177,-1.5486764694914479-2.049287162452469,-1.4524493537504468-2.112373638370859,-1.3566707556404856-2.1686004868040376,-1.261614557508325-2.217806925056248,-1.1675525759719996-2.2598522455471945,-1.0747537846514246-2.2946162181704315,-0.9834835450286482-2.3219994340956687,-0.8940028476371548-2.341923590031909,-0.8065675657500432-2.3543317121385128,-0.7214277237011971-2.3591883189439606,-0.6388267819317092-2.3564795228063815,-0.5590009408059881-2.346213069625776,-0.4821784651883224-2.3284183166943304,-0.4085790317112937-2.303146148748189,-0.33841310060253593-2.270468832460711,-0.2718813138661489-2.230479809793332,-0.20917392153966485-2.1832934307948992,-0.15047023766722845-2.129044626613604,-9.593812754463316e-2-2.067888523656511,-4.5733527702467525e-2-2.0,-4.440892098500626e-16"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="1.4455640890509285,-2.109299148697967-1.3165652433729376,-2.217068882970519-1.18123988396614,-2.3224400277654778-1.0401220781998397,-2.4249967313138336-0.8937687535828047,-2.524334249160382-0.7427574998248208,-2.6200605415051785-0.5876842893539953,-2.7117978204055206-0.4291611252858436,-2.799184040732366-0.2678136261265971,-2.8818743289970485-0.10427855674277975,-2.959542344409389--6.0798684658820434e-2,-3.031881566795695--0.2267666136230062,-3.0986065062938555--0.39297023055769387,-3.1594538300513957--0.5587536057180484,-3.2141834014799437--0.7234624678615322,-3.2625792279646317--0.8864467863575878,-3.304450313288277--1.0470633365615631,-3.339631411406186--1.2046782383285253,-3.367983678596801--1.3586694576485985,-3.389395221414439--1.5084292615310217,-3.4037815382816046--1.6533666164486198,-3.411085852978104--1.7929095208771106,-3.4112793387108553--1.9265072627238031,-3.404361231880067--2.0536325927366317,-3.390358835092816--2.1737838053160745,-3.3693274094121364--2.2864867185179474,-3.341349956266845--2.3912965454329074,-3.306536889882823--2.487799649557175,-3.265025601528512--2.5756151772268465,-3.2169799172943425--2.6543965606733098,-3.1625894515460016--2.723832885767889,-3.1020688586031575--2.783650119057878,-3.035656985596927--2.833612189251375,-2.9636159298493663--2.8735219188828243,-2.8862300044950846--2.903221802482392,-2.803804616427189--2.9225946281780963,-2.716665060995804--2.9315639402775195,-2.625155238215943--2.9300943410034934,-2.5296362955512546--2.9181916301929567,-2.430485202629985--2.8959027824076466,-2.3280932635180664--2.863315761546967,-2.222864572420748--2.8205591736946607,-2.1152144189073745--2.7678017595693536,-2.0055676489531846--2.705251728582029,-1.8943569882663462--2.6331559371286026,-1.7820213345172697--2.551798914360506,-1.6690040252100253--2.461501739278119,-1.555751088031751--2.3626207735786346,-1.4427094805851444--2.2555462552592527,-1.3303253264509998--2.140700758526087,-1.2190421545422483--2.018537526086825,-1.1092991486979673--1.8895386804088332,-1.001529414425415--1.7542133210020365,-0.8961582696304561--1.6130955152357354,-0.7936015660821002--1.4667421906187004,-0.6942640482355523--1.315730936860716,-0.5985377558907549--1.1606577263898914,-0.5068004769904132--1.0021345623217401,-0.41941425666356935--0.8407870631624927,-0.3367239683988853--0.6772519937786758,-0.25905595298654527--0.5121747523770757,-0.18671673060023886--0.34620682341288855,-0.1199917911020788--0.180003206478204,-5.9144467344538376e-2--1.4219831317847209e-2,-4.4148959159905354e-3-0.1504890308256357,4.398093056869845e-2-0.3134733493216917,8.585201589234304e-2-0.47408989952566927,0.1210331140102518-0.6317048012926296,0.14938538120086653-0.7856960206127033,0.1707969240185056-0.9354558244951265,0.18518324088567084-1.0803931794127237,0.1924875555821708-1.2199360838412145,0.19268104131492203-1.353533825687908,0.1857629344841331-1.4806591557007351,0.17176053769688227-1.6008103682801789,0.15072911201620215-1.7135132814820508,0.12275165887091055-1.8183231083970108,8.793859248688918e-2-1.9148262125212794,4.642730413257801e-2-2.002641740190951,-1.6183801015914323e-3-2.081423123637414,-5.600884584993293e-2-2.1508594487319943,-0.11652943879277633-2.2106766820219814,-0.1829413117990064-2.2606387522154794,-0.2549823675465661-2.3005484818469286,-0.33236829290084946-2.330248365446497,-0.414793680968745-2.3496211911422016,-0.5019332364001298-2.358590503241624,-0.5934430591799907-2.3571209039675978,-0.6889620018446793-2.345218193157062,-0.788113094765949-2.322929345371752,-0.8905050338778678-2.2903423245110712,-0.995733724975186-2.247585736658765,-1.1033838784885588-2.194828322533459,-1.2130306484427487-2.1322782915461342,-1.324241309129587-2.060182500092707,-1.4365769628786644-1.9788254773246106,-1.5495942721859084-1.8885283022422215,-1.662847209364183-1.789647336542738,-1.7758888168107894-1.682572818223357,-1.888272970944933-1.5677273214901897,-1.9995561428536868-1.4455640890509303,-2.1092991486979664"/></g><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-8.881784197001252e-16" y="-2.5">1.000,2.000</text></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><circle cy="-2.842138483816435" r="2.5e-2" cx="0.34684589351583117"/><circle cy="-2.9246345332233945" r="2.5e-2" cx="-2.8553171532750703"/></g><g></g></svg>
other/quad.svg view
@@ -1,145 +1,145 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.6822731098534431 -0.5833322902653921 1.2810462197068864 1.1557733247481508" width="332.516642911628" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8908765334212333" width="0.9888268069636451" x="-0.456553697110202" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,0.3908765334212333-0.5322731098534431,0.3908765334212333"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,0.30178888007911-0.5322731098534431,0.30178888007911"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,0.2127012267369866-0.5322731098534431,0.2127012267369866"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,0.12361357339486329-0.5322731098534431,0.12361357339486329"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,3.452592005273991e-2-0.5322731098534431,3.452592005273991e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,-5.4561733289383296e-2-0.5322731098534431,-5.4561733289383296e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,-0.14364938663150673-0.5322731098534431,-0.14364938663150673"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,-0.23273703997363004-0.5322731098534431,-0.23273703997363004"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,-0.32182469331575336-0.5322731098534431,-0.32182469331575336"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,-0.41091234665787657-0.5322731098534431,-0.41091234665787657"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,-0.5-0.5322731098534431,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="0.4037942431558411">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="0.31470658981371785">-0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="0.22561893647159448">-0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="0.13653128312947116">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="4.7443629787347785e-2">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="-4.164402355477548e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="-0.1307316768968989">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="-0.21981933023902223">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="-0.30890698358114543">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="-0.39799463692326886">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5322731098534431" y="-0.48708229026539207">1</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.5000620766166024, 0.3908765334212333)"><polyline points="-0.5000620766166024,0.4058765334212333--0.5000620766166024,0.3758765334212333"/></g><g transform="rotate(-90.0, -0.5000620766166024, 0.30178888007911)"><polyline points="-0.5000620766166024,0.31678888007911--0.5000620766166024,0.28678888007910996"/></g><g transform="rotate(-90.0, -0.5000620766166024, 0.2127012267369866)"><polyline points="-0.5000620766166024,0.22770122673698662--0.5000620766166024,0.1977012267369866"/></g><g transform="rotate(-90.0, -0.5000620766166024, 0.12361357339486329)"><polyline points="-0.5000620766166024,0.1386135733948633--0.5000620766166024,0.10861357339486329"/></g><g transform="rotate(-90.0, -0.5000620766166024, 3.452592005273991e-2)"><polyline points="-0.5000620766166024,4.952592005273991e-2--0.5000620766166024,1.9525920052739912e-2"/></g><g transform="rotate(-90.0, -0.5000620766166024, -5.4561733289383296e-2)"><polyline points="-0.5000620766166024,-3.95617332893833e-2--0.5000620766166024,-6.95617332893833e-2"/></g><g transform="rotate(-90.0, -0.5000620766166024, -0.14364938663150673)"><polyline points="-0.5000620766166024,-0.1286493866315067--0.5000620766166024,-0.15864938663150674"/></g><g transform="rotate(-90.0, -0.5000620766166024, -0.23273703997363004)"><polyline points="-0.5000620766166024,-0.21773703997363003--0.5000620766166024,-0.24773703997363006"/></g><g transform="rotate(-90.0, -0.5000620766166024, -0.32182469331575336)"><polyline points="-0.5000620766166024,-0.30682469331575335--0.5000620766166024,-0.3368246933157534"/></g><g transform="rotate(-90.0, -0.5000620766166024, -0.41091234665787657)"><polyline points="-0.5000620766166024,-0.39591234665787656--0.5000620766166024,-0.4259123466578766"/></g><g transform="rotate(-90.0, -0.5000620766166024, -0.5)"><polyline points="-0.5000620766166024,-0.485--0.5000620766166024,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.8908765334212333" width="4.944134034818304e-3" x="-0.48770174152955686" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.456553697110202,0.3908765334212333--0.456553697110202,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.3576710164138376,0.3908765334212333--0.3576710164138376,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.258788335717473,0.3908765334212333--0.258788335717473,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.15990565502110848,0.3908765334212333--0.15990565502110848,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-6.1022974324743906e-2,0.3908765334212333--6.1022974324743906e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="3.7859706371620616e-2,0.3908765334212333-3.7859706371620616e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.13674238706798525,0.3908765334212333-0.13674238706798525,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.23562506776434966,0.3908765334212333-0.23562506776434966,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.3345077484607143,0.3908765334212333-0.3345077484607143,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4333904291570787,0.3908765334212333-0.4333904291570787,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.5322731098534431,0.3908765334212333-0.5322731098534431,-0.5"/></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.456553697110202" y="0.5">0</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.3576710164138376" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.258788335717473" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.15990565502110848" y="0.5">0.6</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-6.1022974324743906e-2" y="0.5">0.8</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="3.7859706371620616e-2" y="0.5">1</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.13674238706798525" y="0.5">1.2</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.23562506776434966" y="0.5">1.4</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.3345077484607143" y="0.5">1.6</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4333904291570787" y="0.5">1.8</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.5322731098534431" y="0.5">2</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.456553697110202,0.44507510089176744--0.456553697110202,0.4150751008917674"/><polyline points="-0.3576710164138376,0.44507510089176744--0.3576710164138376,0.4150751008917674"/><polyline points="-0.258788335717473,0.44507510089176744--0.258788335717473,0.4150751008917674"/><polyline points="-0.15990565502110848,0.44507510089176744--0.15990565502110848,0.4150751008917674"/><polyline points="-6.1022974324743906e-2,0.44507510089176744--6.1022974324743906e-2,0.4150751008917674"/><polyline points="3.7859706371620616e-2,0.44507510089176744-3.7859706371620616e-2,0.4150751008917674"/><polyline points="0.13674238706798525,0.44507510089176744-0.13674238706798525,0.4150751008917674"/><polyline points="0.23562506776434966,0.44507510089176744-0.23562506776434966,0.4150751008917674"/><polyline points="0.3345077484607143,0.44507510089176744-0.3345077484607143,0.4150751008917674"/><polyline points="0.4333904291570787,0.44507510089176744-0.4333904291570787,0.4150751008917674"/><polyline points="0.5322731098534431,0.44507510089176744-0.5322731098534431,0.4150751008917674"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.454382667106238e-3" width="0.9888268069636451" x="-0.456553697110202" y="0.4144847615568959"/></g><g stroke-opacity="0.0" fill-opacity="0.1" stroke="#000000" stroke-width="1.0e-2" fill="#e31a1c"><path d="M -0.4566,-0.0546 Q 0.5323,0.3909 0.0379,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="2.0e-3" fill="none"><polyline points="-0.456553697110202,-5.4561733289383296e-2--0.43692548499197364,-4.578659943518415e-2--0.4175939209158344,-3.727872854101144e-2--0.3985590048817843,-2.903812060686506e-2--0.3798207368898232,-2.1064775632745003e-2--0.3613791169399512,-1.3358693618651274e-2--0.3432341450321683,-5.919874564583982e-3--0.3253858211664745,1.2516815294569272e-3--0.3078341453428698,8.155974663471566e-3--0.2905791175613541,1.4793004837459656e-2--0.2736207378219277,2.1162772051421475e-2--0.2569590061245902,2.726527630535691e-2--0.24059392246934191,3.3100517599265966e-2--0.22452548685618268,3.866849593314875e-2--0.20875369928511256,4.3969211307005096e-2--0.1932785597561315,4.9002663720835116e-2--0.17810006826923963,5.376885317463864e-2--0.1632182248244367,5.82677796684159e-2--0.1486330294217229,6.2499443202166716e-2--0.13434448206109822,6.646384377589126e-2--0.12035258274256261,7.016098138958932e-2--0.10665733146611628,7.35908560432611e-2--9.325872823175885e-2,7.675346773690639e-2--8.015677303949048e-2,7.964881647052546e-2--6.735146588931129e-2,8.22769022441181e-2--5.484280678122122e-2,8.463772505768435e-2--4.263079571522016e-2,8.673128491122428e-2--3.0715432691308275e-2,8.855758180473772e-2--1.909671770948529e-2,9.011661573822494e-2--7.774650769751701e-3,9.140838671168566e-2-3.2507681278929335e-3,9.243289472512012e-2-1.3979538983448392e-2,9.319013977852814e-2-2.4411661796914896e-2,9.368012187190988e-2-3.454713656829245e-2,9.390284100526514e-2-4.438596329758049e-2,9.385829717859406e-2-5.39281419847798e-2,9.354649039189666e-2-6.317367262988982e-2,9.296742064517283e-2-7.212255523291089e-2,9.212108793842272e-2-8.077478979384267e-2,9.100749227164617e-2-8.91303763126855e-2,8.962663364484325e-2-9.718931478943926e-2,8.797851205801394e-2-0.10495160522410385,8.60631275111583e-2-0.11241724761667937,8.388048000427634e-2-0.11958624196716572,8.143056953736794e-2-0.12645858827556322,7.871339611043321e-2-0.13303428654187144,7.572895972347199e-2-0.1393133367660906,7.247726037648455e-2-0.14529573894822057,6.895829806947057e-2-0.15098149308826148,6.517207280243037e-2-0.15637059918621332,6.1118584575363843e-2-0.1614630572420761,5.679783338827088e-2-0.16625886725584993,5.220981924115148e-2-0.17075802922753436,4.7354542134005695e-2-0.17496054315712983,4.2232002066833696e-2-0.17886640904463647,3.6842199039635204e-2-0.1824756268900536,3.1185133052410385e-2-0.18578819669338187,2.5260804105159185e-2-0.18880411845462086,1.9069212197881658e-2-0.191523392173771,1.2610357330577637e-2-0.193946017850832,5.884239503247346e-3-0.19607199548580367,-1.1091412841094384e-3-0.19790132507868663,-8.369785031492327e-3-0.1994340066294802,-1.5897691738901876e-2-0.20067004013818457,-2.369286140633764e-2-0.2016094256048,-3.175529403379984e-2-0.20225216302932658,-4.008498962128826e-2-0.20259825241176377,-4.8681948168803224e-2-0.2026476937521119,-5.7546169676344516e-2-0.20240048705037095,-6.667765414391214e-2-0.20185663230654105,-7.607640157150619e-2-0.2010161295206221,-8.574241195912657e-2-0.19987897869261384,-9.567568530677317e-2-0.19844517982251653,-0.10587622161444632-0.19671473291033015,-0.1163440208821459-0.1946876379560547,-0.1270790831098716-0.19236389495968997,-0.13808140829762394-0.1897435039212364,-0.14935099644540262-0.18682646484069365,-0.16088784755320762-0.18361277771806173,-0.17269196162103895-0.18010244255334096,-0.1847633386488966-0.1762954593465309,-0.1971019786367808-0.17219182809763167,-0.20970788158469122-0.1677915488066435,-0.22258104749262797-0.16309462147356601,-0.23572147636059126-0.1581010460983997,-0.24912916818858055-0.15281082268114432,-0.2628041229765965-0.14722395122179976,-0.2767463407246389-0.14134043172036603,-0.2909558214327075-0.13516026417684335,-0.3054325651008025-0.12868344859123138,-0.320176571728924-0.12190998496353034,-0.3351878413170718-0.11483987329374024,-0.35046637386524604-0.10747311358186129,-0.3660121693734465-9.980970582789273e-2,-0.3818252278416734-9.184965003183554e-2,-0.39790554926992683-8.359294619368907e-2,-0.4142531336582065-7.503959431345353e-2,-0.430867981006512-6.618959439112904e-2,-0.44775009131484467-5.7042946426715146e-2,-0.4648994645832034-4.7599650420212414e-2,-0.4823161008115885-3.7859706371620616e-2,-0.5"/></g><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0e-2" width="3.0000000000000027e-2" x="-0.471553697110202" y="-6.95617332893833e-2"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="2.2859706371620617e-2" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.5172731098534431" y="0.3758765334212333"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="0.5939176889474889" width="0.6592178713090968" x="-0.456553697110202" y="-0.5"/></g><g></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.6823211801526162 -0.5833034558344269 1.2811423603052323 1.1557444903171854" width="332.5498942989464" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="5.0e-2" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.8928651148670972" width="0.9912594250674862" x="-0.45893824491487023" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.45893824491487023,0.39286511486709713+0.532321180152616,0.39286511486709713"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.45893824491487023,0.30357860338038745+0.532321180152616,0.30357860338038745"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.45893824491487023,0.2142920918936777+0.532321180152616,0.2142920918936777"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.45893824491487023,0.12500558040696802+0.532321180152616,0.12500558040696802"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.45893824491487023,3.5719068920258334e-2+0.532321180152616,3.5719068920258334e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.45893824491487023,-5.3567442566451406e-2+0.532321180152616,-5.3567442566451406e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.45893824491487023,-0.14285395405316115+0.532321180152616,-0.14285395405316115"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.45893824491487023,-0.2321404655398709+0.532321180152616,-0.2321404655398709"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.45893824491487023,-0.3214269770265804+0.532321180152616,-0.3214269770265804"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.45893824491487023,-0.41071348851329004+0.532321180152616,-0.41071348851329004"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.45893824491487023,-0.5+0.532321180152616,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5323211801526162" y="0.4058116590326699">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5323211801526162" y="0.31652514754596034">-0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5323211801526162" y="0.2272386360592506">-0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5323211801526162" y="0.1379521245725409">-0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5323211801526162" y="4.866561308583123e-2">-0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5323211801526162" y="-4.062089840087857e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5323211801526162" y="-0.1299074098875883">0.2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5323211801526162" y="-0.21919392137429783">0.4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5323211801526162" y="-0.30848043286100757">0.6</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5323211801526162" y="-0.3977669443477173">0.8</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5323211801526162" y="-0.48705345583442683">1</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><g transform="rotate(-90.0, -0.5015624001927721, 0.39286511486709713)"><polyline points="-0.5015624001927721,0.40786511486709714+-0.5015624001927721,0.3778651148670971"/></g><g transform="rotate(-90.0, -0.5015624001927721, 0.30357860338038745)"><polyline points="-0.5015624001927721,0.31857860338038746+-0.5015624001927721,0.28857860338038743"/></g><g transform="rotate(-90.0, -0.5015624001927721, 0.2142920918936777)"><polyline points="-0.5015624001927721,0.22929209189367772+-0.5015624001927721,0.1992920918936777"/></g><g transform="rotate(-90.0, -0.5015624001927721, 0.12500558040696802)"><polyline points="-0.5015624001927721,0.14000558040696803+-0.5015624001927721,0.11000558040696802"/></g><g transform="rotate(-90.0, -0.5015624001927721, 3.5719068920258334e-2)"><polyline points="-0.5015624001927721,5.0719068920258334e-2+-0.5015624001927721,2.0719068920258335e-2"/></g><g transform="rotate(-90.0, -0.5015624001927721, -5.3567442566451406e-2)"><polyline points="-0.5015624001927721,-3.856744256645141e-2+-0.5015624001927721,-6.85674425664514e-2"/></g><g transform="rotate(-90.0, -0.5015624001927721, -0.14285395405316115)"><polyline points="-0.5015624001927721,-0.12785395405316113+-0.5015624001927721,-0.15785395405316116"/></g><g transform="rotate(-90.0, -0.5015624001927721, -0.2321404655398709)"><polyline points="-0.5015624001927721,-0.21714046553987087+-0.5015624001927721,-0.2471404655398709"/></g><g transform="rotate(-90.0, -0.5015624001927721, -0.3214269770265804)"><polyline points="-0.5015624001927721,-0.3064269770265804+-0.5015624001927721,-0.3364269770265804"/></g><g transform="rotate(-90.0, -0.5015624001927721, -0.41071348851329004)"><polyline points="-0.5015624001927721,-0.39571348851329+-0.5015624001927721,-0.42571348851329005"/></g><g transform="rotate(-90.0, -0.5015624001927721, -0.5)"><polyline points="-0.5015624001927721,-0.485+-0.5015624001927721,-0.515"/></g></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.8928651148670972" width="3.965037700269958e-3" x="-0.4891716573794286" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.45893824491487023,0.39286511486709713+-0.45893824491487023,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.35981230240812156,0.39286511486709713+-0.35981230240812156,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.26068635990137295,0.39286511486709713+-0.26068635990137295,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.16156041739462423,0.39286511486709713+-0.16156041739462423,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-6.2434474887875624e-2,0.39286511486709713+-6.2434474887875624e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="3.6691467618872986e-2,0.39286511486709713+3.6691467618872986e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.13581741012562165,0.39286511486709713+0.13581741012562165,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.23494335263237032,0.39286511486709713+0.23494335263237032,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.334069295139119,0.39286511486709713+0.334069295139119,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.43319523764586754,0.39286511486709713+0.43319523764586754,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.532321180152616,0.39286511486709713+0.532321180152616,-0.5"/></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.45893824491487023" y="0.5">0</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.35981230240812156" y="0.5">0.2</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.26068635990137295" y="0.5">0.4</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.16156041739462423" y="0.5">0.6</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-6.2434474887875624e-2" y="0.5">0.8</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="3.6691467618872986e-2" y="0.5">1</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.13581741012562165" y="0.5">1.2</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.23494335263237032" y="0.5">1.4</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.334069295139119" y="0.5">1.6</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.43319523764586754" y="0.5">1.8</text></g><g fill-opacity="1.0" font-size="4.274482758620691e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.532321180152616" y="0.5">2</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><polyline points="-0.45893824491487023,0.44625831480638223+-0.45893824491487023,0.4162583148063822"/><polyline points="-0.35981230240812156,0.44625831480638223+-0.35981230240812156,0.4162583148063822"/><polyline points="-0.26068635990137295,0.44625831480638223+-0.26068635990137295,0.4162583148063822"/><polyline points="-0.16156041739462423,0.44625831480638223+-0.16156041739462423,0.4162583148063822"/><polyline points="-6.2434474887875624e-2,0.44625831480638223+-6.2434474887875624e-2,0.4162583148063822"/><polyline points="3.6691467618872986e-2,0.44625831480638223+3.6691467618872986e-2,0.4162583148063822"/><polyline points="0.13581741012562165,0.44625831480638223+0.13581741012562165,0.4162583148063822"/><polyline points="0.23494335263237032,0.44625831480638223+0.23494335263237032,0.4162583148063822"/><polyline points="0.334069295139119,0.44625831480638223+0.334069295139119,0.4162583148063822"/><polyline points="0.43319523764586754,0.44625831480638223+0.43319523764586754,0.4162583148063822"/><polyline points="0.532321180152616,0.44625831480638223+0.532321180152616,0.4162583148063822"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="3.5714604594683785e-3" width="0.9912594250674862" x="-0.45893824491487023" y="0.41652604041107516"/></g><g stroke-opacity="0.0" fill-opacity="0.1" stroke="#000000" stroke-width="1.0e-2" fill="#1f78b5"><path d="M -0.4589,-0.0536 Q 0.5323,0.3929 0.0367,-0.5"/></g><g stroke-opacity="1.0" stroke="#a6cfe3" stroke-width="2.0e-3" fill="none"><polyline points="-0.45893824491487023,-5.3567442566451406e-2+-0.43926174532728063,-4.477272118501041e-2+-0.41988262356721123,-3.624585933802971e-2+-0.40080087963466215,-2.798685702550907e-2+-0.3820165135296333,-1.9995714247448615e-2+-0.3635295252521247,-1.2272431003848006e-2+-0.3453399148021363,-4.817007294707909e-3+-0.32744768217966813,2.3705568799722854e-3+-0.3098528273847203,9.2902615201923e-3+-0.29255535041729264,1.5942106625952135e-2+-0.2755552512773852,2.23260921972519e-2+-0.2588525299649981,2.8442218234091488e-2+-0.2424471864801313,3.4290484736470894e-2+-0.22633922082278457,3.98708917043904e-2+-0.2105286329929581,4.518343913784956e-2+-0.195015422990652,5.022812703684876e-2+-0.17979959081586616,5.500495540138767e-2+-0.16488113646860036,5.9513924231466564e-2+-0.15026005994885494,6.375503352708523e-2+-0.13593636125662983,6.772828328824382e-2+-0.12191004039192482,7.143367351494223e-2+-0.10818109735474019,7.487120420718058e-2+-9.474953214507575e-2,7.804087536495868e-2+-8.161534476293142e-2,8.094268698827678e-2+-6.877853520830757e-2,8.35766390771347e-2+-5.623910348120387e-2,8.59427316315326e-2+-4.399704958162032e-2,8.804096465147021e-2+-3.205237350955725e-2,8.98713381369477e-2+-2.0405075265014228e-2,9.143385208796523e-2+-9.055154847991576e-3,9.272850650452247e-2+1.9973877415109254e-3,9.375530138661958e-2+1.2752552503493053e-2,9.451423673425657e-2+2.321033943795514e-2,9.50053125474336e-2+3.3370748544896855e-2,9.52285288261503e-2+4.323377982431842e-2,9.518388557040697e-2+5.279943327621961e-2,9.487138278020352e-2+6.206770890060065e-2,9.429102045553983e-2+7.103860669746143e-2,9.344279859641613e-2+7.971212666680183e-2,9.232671720283225e-2+8.80882688086222e-2,9.094277627478825e-2+9.616703312292219e-2,8.929097581228418e-2+0.10394841960970191,8.737131581531987e-2+0.11143242826896149,8.51837962838955e-2+0.1186190591007007,8.2728417218011e-2+0.12550831210491997,8.000517861766637e-2+0.13210018728161854,7.701408048286157e-2+0.13839468463079718,7.37551228135967e-2+0.14439180415245545,7.022830560987159e-2+0.15009154584659323,6.643362887168641e-2+0.1554939097132113,6.237109259904122e-2+0.1605988957523089,5.804069679193574e-2+0.16540650396388623,5.344244145037025e-2+0.1699167343479432,4.8576326574344464e-2+0.17412958690448,4.344235216385878e-2+0.17804506163349665,3.80405182189128e-2+0.18166315853499282,3.23708247395067e-2+0.18498387760896895,2.6433271725640528e-2+0.1880072188554247,2.0227859177314234e-2+0.19073318227436042,1.375458709452776e-2+0.19316176786577566,7.013455477281272e-3+0.19529297562967074,4.464325574382588e-6+0.19712680556604556,-7.272386360592353e-3+0.19866325767490034,-1.4817096581219436e-2+0.19990233195623452,-2.2629666336306475e-2+0.20084402841004867,-3.0710095625853695e-2+0.20148834703634255,-3.9058384449861094e-2+0.20183528783511606,-4.767453280832845e-2+0.20188485080636953,-5.655854070125621e-2+0.20163703595010274,-6.571040812864393e-2+0.20109184326631557,-7.513013509049193e-2+0.20024927275500815,-8.48177215867999e-2+0.19910932441618068,-9.477316761756782e-2+0.19767199824983284,-0.10499647318279604+0.19593729425596462,-0.11548763828248454+0.19390521243457637,-0.126246662916633+0.19157575278566785,-0.13727354708524175+0.18894891530923896,-0.14856829078831058+0.1860247000052898,-0.16013089402583935+0.1828031068738204,-0.17196135679782854+0.17928413591483094,-0.18405967910427745+0.17546778712832112,-0.196425860945187+0.17135406051429092,-0.2090599023205565+0.16694295607274057,-0.22196180323038595+0.16223447380367007,-0.23513156367467558+0.1572286137070792,-0.24856918365342529+0.15192537578296827,-0.26227466316663517+0.1463247600313371,-0.27624800221430523+0.14042676645218544,-0.2904892007964356+0.13423139504551374,-0.3049982589130259+0.12773864581132155,-0.3197751765640764+0.12094851874960932,-0.33481995374958695+0.11386101386037684,-0.3501325904695577+0.10647613114362398,-0.3657130867239884+9.879387059935085e-2,-0.3815614425128795+9.08142322275578e-2,-0.39767765783623066+8.253721602824415e-2,-0.4140617326940419+7.396282200141058e-2,-0.430713667086313+6.509105014705663e-2,-0.4476334610130446+5.5921900465182195e-2,-0.46482111447423624+4.645537295578761e-2,-0.482276627469888+3.6691467618872986e-2,-0.5"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="3.0e-3" fill="#a6cfe3"><rect height="3.0e-2" width="3.0000000000000027e-2" x="-0.47393824491487024" y="-6.85674425664514e-2"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="2.1691467618872987e-2" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.517321180152616" y="0.3778651148670971"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#808080" stroke-width="2.0e-3" fill="#6666cc"><rect height="0.5952434099113981" width="0.6608396167116576" x="-0.45893824491487023" y="-0.5"/></g><g></g></svg>
other/rect.svg view
@@ -1,23 +1,23 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.795 -0.5225 1.5775000000000001 1.06875" width="442.8070175438596" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.8998875140607425" width="1.5" x="-0.75" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.75,0.39988751406074247--0.75,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.6,0.39988751406074247--0.6,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.44999999999999996,0.39988751406074247--0.44999999999999996,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.29999999999999993,0.39988751406074247--0.29999999999999993,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.1499999999999999,0.39988751406074247--0.1499999999999999,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.0,0.39988751406074247-0.0,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.15000000000000013,0.39988751406074247-0.15000000000000013,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.2999999999999998,0.39988751406074247-0.2999999999999998,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.4500000000000002,0.39988751406074247-0.4500000000000002,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.6000000000000001,0.39988751406074247-0.6000000000000001,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.75,0.39988751406074247-0.75,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.75" y="0.5">-5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.6" y="0.5">-4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.44999999999999996" y="0.5">-3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.29999999999999993" y="0.5">-2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="-0.1499999999999999" y="0.5">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.0" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.15000000000000013" y="0.5">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.2999999999999998" y="0.5">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.4500000000000002" y="0.5">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.6000000000000001" y="0.5">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="middle"><text x="0.75" y="0.5">5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.75,0.4396344206974129--0.75,0.40963442069741285"/><polyline points="-0.6,0.4396344206974129--0.6,0.40963442069741285"/><polyline points="-0.44999999999999996,0.4396344206974129--0.44999999999999996,0.40963442069741285"/><polyline points="-0.29999999999999993,0.4396344206974129--0.29999999999999993,0.40963442069741285"/><polyline points="-0.1499999999999999,0.4396344206974129--0.1499999999999999,0.40963442069741285"/><polyline points="0.0,0.4396344206974129-0.0,0.40963442069741285"/><polyline points="0.15000000000000013,0.4396344206974129-0.15000000000000013,0.40963442069741285"/><polyline points="0.2999999999999998,0.4396344206974129-0.2999999999999998,0.40963442069741285"/><polyline points="0.4500000000000002,0.4396344206974129-0.4500000000000002,0.40963442069741285"/><polyline points="0.6000000000000001,0.4396344206974129-0.6000000000000001,0.40963442069741285"/><polyline points="0.75,0.4396344206974129-0.75,0.40963442069741285"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.499437570303799e-3" width="1.5" x="-0.75" y="0.40888638920134984"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#a6cee3"><rect height="5.529099980472463e-6" width="2.9999999999999916e-2" x="-0.75" y="0.399881984960762"/><rect height="1.4440330920295619e-5" width="3.0000000000000027e-2" x="-0.72" y="0.39987307372982217"/><rect height="3.623498360572075e-5" width="2.9999999999999916e-2" x="-0.69" y="0.39985127907713675"/><rect height="8.735891133720974e-5" width="2.9999999999999916e-2" x="-0.66" y="0.39980015514940526"/><rect height="2.0235529734885516e-4" width="2.9999999999999916e-2" x="-0.63" y="0.3996851587633936"/><rect height="4.5034999634713246e-4" width="2.9999999999999916e-2" x="-0.6" y="0.39943716406439533"/><rect height="9.629726880897027e-4" width="3.0000000000000138e-2" x="-0.5700000000000001" y="0.39892454137265276"/><rect height="1.9783630713544054e-3" width="3.0000000000000027e-2" x="-0.5399999999999999" y="0.39790915098938806"/><rect height="3.9050468128133953e-3" width="3.0000000000000138e-2" x="-0.51" y="0.39598246724792907"/><rect height="7.405846613291356e-3" width="3.0000000000000027e-2" x="-0.48" y="0.3924816674474511"/><rect height="1.3494332346886628e-2" width="3.0000000000000027e-2" x="-0.44999999999999996" y="0.38639318171385584"/><rect height="2.3624156549550468e-2" width="3.0000000000000027e-2" x="-0.41999999999999993" y="0.376263357511192"/><rect height="3.9736484517159e-2" width="3.0000000000000027e-2" x="-0.3899999999999999" y="0.36015102954358347"/><rect height="6.421711546131487e-2" width="3.0000000000000027e-2" x="-0.36" y="0.3356703985994276"/><rect height="9.971037872875954e-2" width="3.0000000000000027e-2" x="-0.32999999999999996" y="0.3001771353319829"/><rect height="0.14875040559872815" width="3.0000000000000027e-2" x="-0.29999999999999993" y="0.2511371084620143"/><rect height="0.21320833177243814" width="3.0000000000000027e-2" x="-0.2699999999999999" y="0.18667918228830432"/><rect height="0.29361511327157686" width="3.0000000000000138e-2" x="-0.23999999999999988" y="0.10627240078916561"/><rect height="0.3884909097224566" width="3.0000000000000027e-2" x="-0.20999999999999996" y="1.1396604338285876e-2"/><rect height="0.4938687388922626" width="3.0000000000000027e-2" x="-0.17999999999999994" y="-9.398122483152016e-2"/><rect height="0.6032126398520938" width="3.0000000000000027e-2" x="-0.1499999999999999" y="-0.20332512579135142"/><rect height="0.7078765903861" width="3.0000000000000027e-2" x="-0.11999999999999988" y="-0.30798907632535755"/><rect height="0.7981286269670711" width="3.0000000000000027e-2" x="-8.999999999999986e-2" y="-0.3982411129063287"/><rect height="0.864602419934599" width="3.0000000000000027e-2" x="-5.999999999999983e-2" y="-0.46471490587385655"/><rect height="0.8998875140607425" width="3.0000000000000027e-2" x="-2.9999999999999805e-2" y="-0.5"/><rect height="0.8998875140607425" width="3.0000000000000027e-2" x="0.0" y="-0.5"/><rect height="0.864602419934599" width="3.0000000000000027e-2" x="3.0000000000000027e-2" y="-0.46471490587385655"/><rect height="0.7981286269670707" width="3.0000000000000027e-2" x="6.000000000000005e-2" y="-0.39824111290632824"/><rect height="0.7078765903860995" width="3.0000000000000027e-2" x="9.000000000000008e-2" y="-0.3079890763253571"/><rect height="0.6032126398520934" width="3.0000000000000027e-2" x="0.1200000000000001" y="-0.20332512579135098"/><rect height="0.4938687388922623" width="3.0000000000000027e-2" x="0.15000000000000013" y="-9.398122483151983e-2"/><rect height="0.38849090972245637" width="3.0000000000000027e-2" x="0.18000000000000016" y="1.1396604338286098e-2"/><rect height="0.29361511327157647" width="3.0000000000000027e-2" x="0.2100000000000002" y="0.106272400789166"/><rect height="0.2132083317724378" width="3.0000000000000027e-2" x="0.2400000000000002" y="0.18667918228830466"/><rect height="0.14875040559872788" width="3.0000000000000027e-2" x="0.27000000000000024" y="0.2511371084620146"/><rect height="9.971037872875943e-2" width="3.000000000000025e-2" x="0.2999999999999998" y="0.30017713533198304"/><rect height="6.421711546131476e-2" width="2.9999999999999805e-2" x="0.33000000000000007" y="0.3356703985994277"/><rect height="3.973648451715889e-2" width="3.000000000000025e-2" x="0.3599999999999999" y="0.3601510295435836"/><rect height="2.3624156549550468e-2" width="2.9999999999999805e-2" x="0.3900000000000001" y="0.376263357511192"/><rect height="1.3494332346886517e-2" width="3.000000000000025e-2" x="0.41999999999999993" y="0.38639318171385595"/><rect height="7.405846613291356e-3" width="2.9999999999999805e-2" x="0.4500000000000002" y="0.3924816674474511"/><rect height="3.9050468128133953e-3" width="3.000000000000025e-2" x="0.4800000000000002" y="0.39598246724792907"/><rect height="1.9783630713544054e-3" width="2.9999999999999805e-2" x="0.5100000000000002" y="0.39790915098938806"/><rect height="9.629726880897027e-4" width="3.000000000000025e-2" x="0.54" y="0.39892454137265276"/><rect height="4.5034999634713246e-4" width="2.9999999999999805e-2" x="0.5700000000000003" y="0.39943716406439533"/><rect height="2.0235529734885516e-4" width="2.9999999999999805e-2" x="0.6000000000000001" y="0.3996851587633936"/><rect height="8.735891133720974e-5" width="2.9999999999999805e-2" x="0.6300000000000003" y="0.39980015514940526"/><rect height="3.623498360572075e-5" width="2.9999999999999805e-2" x="0.6600000000000001" y="0.39985127907713675"/><rect height="1.4440330920295619e-5" width="2.9999999999999805e-2" x="0.6900000000000004" y="0.39987307372982217"/><rect height="5.529099980472463e-6" width="2.9999999999999805e-2" x="0.7200000000000002" y="0.399881984960762"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#fb9a99"><rect height="2.2485543476967518e-2" width="2.9999999999999916e-2" x="-0.75" y="0.37740197058377495"/><rect height="2.8584728039609875e-2" width="3.0000000000000027e-2" x="-0.72" y="0.3713027860211326"/><rect height="3.5976738994484336e-2" width="2.9999999999999916e-2" x="-0.69" y="0.36391077506625813"/><rect height="4.482977730344262e-2" width="2.9999999999999916e-2" x="-0.66" y="0.35505773675729985"/><rect height="5.5305512692003955e-2" width="2.9999999999999916e-2" x="-0.63" y="0.3445820013687385"/><rect height="6.755030574347592e-2" width="2.9999999999999916e-2" x="-0.6" y="0.33233720831726654"/><rect height="8.168518004192254e-2" width="3.0000000000000138e-2" x="-0.5700000000000001" y="0.3182023340188199"/><rect height="9.779491585592087e-2" width="3.0000000000000027e-2" x="-0.5399999999999999" y="0.3020925982048216"/><rect height="0.11591678819849" width="3.0000000000000138e-2" x="-0.51" y="0.28397072586225247"/><rect height="0.13602961108138306" width="3.0000000000000027e-2" x="-0.48" y="0.2638579029793594"/><rect height="0.1580438601793615" width="3.0000000000000027e-2" x="-0.44999999999999996" y="0.24184365388138096"/><rect height="0.18179371143457468" width="3.0000000000000027e-2" x="-0.41999999999999993" y="0.2180938026261678"/><rect height="0.2070318384916195" width="3.0000000000000027e-2" x="-0.3899999999999999" y="0.19285567556912298"/><rect height="0.23342774607599076" width="3.0000000000000027e-2" x="-0.36" y="0.1664597679847517"/><rect height="0.26057027398127036" width="3.0000000000000027e-2" x="-0.32999999999999996" y="0.1393172400794721"/><rect height="0.2879746889191036" width="3.0000000000000027e-2" x="-0.29999999999999993" y="0.11191282514163886"/><rect height="0.31509449897329095" width="3.0000000000000027e-2" x="-0.2699999999999999" y="8.479301508745152e-2"/><rect height="0.34133779583328655" width="3.0000000000000138e-2" x="-0.23999999999999988" y="5.8549718227455916e-2"/><rect height="0.36608757860248126" width="3.0000000000000027e-2" x="-0.20999999999999996" y="3.379993545826121e-2"/><rect height="0.38872517019641156" width="3.0000000000000027e-2" x="-0.17999999999999994" y="1.1162343864330904e-2"/><rect height="0.408655535861338" width="3.0000000000000027e-2" x="-0.1499999999999999" y="-8.768021800595549e-3"/><rect height="0.42533308465784464" width="3.0000000000000027e-2" x="-0.11999999999999988" y="-2.5445570597102174e-2"/><rect height="0.4382864055261109" width="3.0000000000000027e-2" x="-8.999999999999986e-2" y="-3.839889146536846e-2"/><rect height="0.44714037823324854" width="3.0000000000000027e-2" x="-5.999999999999983e-2" y="-4.725286417250607e-2"/><rect height="0.45163421374457086" width="3.0000000000000027e-2" x="-2.9999999999999805e-2" y="-5.174669968382839e-2"/><rect height="0.45163421374457086" width="3.0000000000000027e-2" x="0.0" y="-5.174669968382839e-2"/><rect height="0.44714037823324854" width="3.0000000000000027e-2" x="3.0000000000000027e-2" y="-4.725286417250607e-2"/><rect height="0.4382864055261109" width="3.0000000000000027e-2" x="6.000000000000005e-2" y="-3.839889146536846e-2"/><rect height="0.42533308465784453" width="3.0000000000000027e-2" x="9.000000000000008e-2" y="-2.5445570597102063e-2"/><rect height="0.408655535861338" width="3.0000000000000027e-2" x="0.1200000000000001" y="-8.768021800595549e-3"/><rect height="0.3887251701964115" width="3.0000000000000027e-2" x="0.15000000000000013" y="1.116234386433096e-2"/><rect height="0.36608757860248126" width="3.0000000000000027e-2" x="0.18000000000000016" y="3.379993545826121e-2"/><rect height="0.34133779583328644" width="3.0000000000000027e-2" x="0.2100000000000002" y="5.854971822745603e-2"/><rect height="0.31509449897329084" width="3.0000000000000027e-2" x="0.2400000000000002" y="8.479301508745163e-2"/><rect height="0.28797468891910344" width="3.0000000000000027e-2" x="0.27000000000000024" y="0.11191282514163903"/><rect height="0.2605702739812703" width="3.000000000000025e-2" x="0.2999999999999998" y="0.13931724007947216"/><rect height="0.2334277460759907" width="2.9999999999999805e-2" x="0.33000000000000007" y="0.16645976798475176"/><rect height="0.20703183849161944" width="3.000000000000025e-2" x="0.3599999999999999" y="0.19285567556912303"/><rect height="0.18179371143457462" width="2.9999999999999805e-2" x="0.3900000000000001" y="0.21809380262616784"/><rect height="0.1580438601793615" width="3.000000000000025e-2" x="0.41999999999999993" y="0.24184365388138096"/><rect height="0.13602961108138306" width="2.9999999999999805e-2" x="0.4500000000000002" y="0.2638579029793594"/><rect height="0.11591678819848977" width="3.000000000000025e-2" x="0.4800000000000002" y="0.2839707258622527"/><rect height="9.779491585592087e-2" width="2.9999999999999805e-2" x="0.5100000000000002" y="0.3020925982048216"/><rect height="8.168518004192254e-2" width="3.000000000000025e-2" x="0.54" y="0.3182023340188199"/><rect height="6.755030574347581e-2" width="2.9999999999999805e-2" x="0.5700000000000003" y="0.33233720831726665"/><rect height="5.530551269200401e-2" width="2.9999999999999805e-2" x="0.6000000000000001" y="0.34458200136873846"/><rect height="4.482977730344262e-2" width="2.9999999999999805e-2" x="0.6300000000000003" y="0.35505773675729985"/><rect height="3.5976738994484336e-2" width="2.9999999999999805e-2" x="0.6600000000000001" y="0.36391077506625813"/><rect height="2.858472803960982e-2" width="2.9999999999999805e-2" x="0.6900000000000004" y="0.37130278602113265"/><rect height="2.2485543476967518e-2" width="2.9999999999999805e-2" x="0.7200000000000002" y="0.37740197058377495"/></g><g></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.795 -0.5225 1.5775000000000001 1.06875" width="442.8070175438596" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="5.0e-2" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.9019165727170236" width="1.5" x="-0.75" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.75,0.40191657271702363+-0.75,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.6,0.40191657271702363+-0.6,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.44999999999999996,0.40191657271702363+-0.44999999999999996,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.29999999999999993,0.40191657271702363+-0.29999999999999993,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.1499999999999999,0.40191657271702363+-0.1499999999999999,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.0,0.40191657271702363+0.0,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.15000000000000013,0.40191657271702363+0.15000000000000013,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.2999999999999998,0.40191657271702363+0.2999999999999998,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.4500000000000002,0.40191657271702363+0.4500000000000002,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.6000000000000001,0.40191657271702363+0.6000000000000001,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.75,0.40191657271702363+0.75,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="0.5">-5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.6" y="0.5">-4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.44999999999999996" y="0.5">-3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.29999999999999993" y="0.5">-2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1499999999999999" y="0.5">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.0" y="0.5">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.15000000000000013" y="0.5">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.2999999999999998" y="0.5">2</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4500000000000002" y="0.5">3</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.6000000000000001" y="0.5">4</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="0.5">5</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><polyline points="-0.75,0.44081736189402476+-0.75,0.41081736189402474"/><polyline points="-0.6,0.44081736189402476+-0.6,0.41081736189402474"/><polyline points="-0.44999999999999996,0.44081736189402476+-0.44999999999999996,0.41081736189402474"/><polyline points="-0.29999999999999993,0.44081736189402476+-0.29999999999999993,0.41081736189402474"/><polyline points="-0.1499999999999999,0.44081736189402476+-0.1499999999999999,0.41081736189402474"/><polyline points="0.0,0.44081736189402476+0.0,0.41081736189402474"/><polyline points="0.15000000000000013,0.44081736189402476+0.15000000000000013,0.41081736189402474"/><polyline points="0.2999999999999998,0.44081736189402476+0.2999999999999998,0.41081736189402474"/><polyline points="0.4500000000000002,0.44081736189402476+0.4500000000000002,0.41081736189402474"/><polyline points="0.6000000000000001,0.44081736189402476+0.6000000000000001,0.41081736189402474"/><polyline points="0.75,0.44081736189402476+0.75,0.41081736189402474"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="3.6076662908680057e-3" width="1.5" x="-0.75" y="0.41093573844419395"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6cfe3"><rect height="5.541566947764309e-6" width="2.9999999999999916e-2" x="-0.75" y="0.40191103115007587"/><rect height="1.447289085471093e-5" width="3.0000000000000027e-2" x="-0.72" y="0.4019020998261689"/><rect height="3.631668593628845e-5" width="2.9999999999999916e-2" x="-0.69" y="0.40188025603108735"/><rect height="8.755588746184317e-5" width="2.9999999999999916e-2" x="-0.66" y="0.4018290168295618"/><rect height="2.0281156633938924e-4" width="2.9999999999999916e-2" x="-0.63" y="0.40171376115068425"/><rect height="4.5136544166002324e-4" width="2.9999999999999916e-2" x="-0.6" y="0.4014652072753636"/><rect height="9.651439906557258e-4" width="3.0000000000000138e-2" x="-0.5700000000000001" y="0.4009514287263679"/><rect height="1.982823867456629e-3" width="3.0000000000000027e-2" x="-0.5399999999999999" y="0.399933748849567"/><rect height="3.913851878907693e-3" width="3.0000000000000138e-2" x="-0.51" y="0.39800272083811594"/><rect height="7.422545252780133e-3" width="3.0000000000000027e-2" x="-0.48" y="0.3944940274642435"/><rect height="1.3524759251840046e-2" width="3.0000000000000027e-2" x="-0.44999999999999996" y="0.3883918134651836"/><rect height="2.3677424095321753e-2" width="3.0000000000000027e-2" x="-0.41999999999999993" y="0.3782391486217019"/><rect height="3.982608200197779e-2" width="3.0000000000000027e-2" x="-0.3899999999999999" y="0.36209049071504584"/><rect height="6.43619116630314e-2" width="3.0000000000000027e-2" x="-0.36" y="0.33755466105399223"/><rect height="9.993520483637786e-2" width="3.0000000000000027e-2" x="-0.32999999999999996" y="0.3019813678806458"/><rect height="0.14908580673874772" width="3.0000000000000027e-2" x="-0.29999999999999993" y="0.2528307659782759"/><rect height="0.21368907209210536" width="3.0000000000000027e-2" x="-0.2699999999999999" y="0.18822750062491828"/><rect height="0.29427715411322636" width="3.0000000000000138e-2" x="-0.23999999999999988" y="0.10763941860379728"/><rect height="0.389366875697028" width="3.0000000000000027e-2" x="-0.20999999999999996" y="1.2549697019995643e-2"/><rect height="0.49498230989314684" width="3.0000000000000027e-2" x="-0.17999999999999994" y="-9.306573717612321e-2"/><rect height="0.6045727585439812" width="3.0000000000000027e-2" x="-0.1499999999999999" y="-0.20265618582695755"/><rect height="0.7094727044568689" width="3.0000000000000027e-2" x="-0.11999999999999988" y="-0.3075561317398453"/><rect height="0.7999282405566247" width="3.0000000000000027e-2" x="-8.999999999999986e-2" y="-0.39801166783960107"/><rect height="0.8665519180629746" width="3.0000000000000027e-2" x="-5.999999999999983e-2" y="-0.46463534534595097"/><rect height="0.9019165727170236" width="3.0000000000000027e-2" x="-2.9999999999999805e-2" y="-0.5"/><rect height="0.9019165727170236" width="3.0000000000000027e-2" x="0.0" y="-0.5"/><rect height="0.8665519180629746" width="3.0000000000000027e-2" x="3.0000000000000027e-2" y="-0.46463534534595097"/><rect height="0.7999282405566244" width="3.0000000000000027e-2" x="6.000000000000005e-2" y="-0.39801166783960074"/><rect height="0.7094727044568686" width="3.0000000000000027e-2" x="9.000000000000008e-2" y="-0.307556131739845"/><rect height="0.604572758543981" width="3.0000000000000027e-2" x="0.1200000000000001" y="-0.20265618582695732"/><rect height="0.4949823098931466" width="3.0000000000000027e-2" x="0.15000000000000013" y="-9.306573717612299e-2"/><rect height="0.38936687569702777" width="3.0000000000000027e-2" x="0.18000000000000016" y="1.2549697019995865e-2"/><rect height="0.2942771541132259" width="3.0000000000000027e-2" x="0.2100000000000002" y="0.10763941860379772"/><rect height="0.21368907209210503" width="3.0000000000000027e-2" x="0.2400000000000002" y="0.1882275006249186"/><rect height="0.1490858067387475" width="3.0000000000000027e-2" x="0.27000000000000024" y="0.25283076597827614"/><rect height="9.993520483637774e-2" width="3.000000000000025e-2" x="0.2999999999999998" y="0.3019813678806459"/><rect height="6.436191166303129e-2" width="2.9999999999999805e-2" x="0.33000000000000007" y="0.33755466105399234"/><rect height="3.982608200197768e-2" width="3.000000000000025e-2" x="0.3599999999999999" y="0.36209049071504595"/><rect height="2.3677424095321642e-2" width="2.9999999999999805e-2" x="0.3900000000000001" y="0.378239148621702"/><rect height="1.3524759251840046e-2" width="3.000000000000025e-2" x="0.41999999999999993" y="0.3883918134651836"/><rect height="7.422545252780133e-3" width="2.9999999999999805e-2" x="0.4500000000000002" y="0.3944940274642435"/><rect height="3.913851878907637e-3" width="3.000000000000025e-2" x="0.4800000000000002" y="0.398002720838116"/><rect height="1.982823867456629e-3" width="2.9999999999999805e-2" x="0.5100000000000002" y="0.399933748849567"/><rect height="9.651439906557258e-4" width="3.000000000000025e-2" x="0.54" y="0.4009514287263679"/><rect height="4.5136544166002324e-4" width="2.9999999999999805e-2" x="0.5700000000000003" y="0.4014652072753636"/><rect height="2.0281156633938924e-4" width="2.9999999999999805e-2" x="0.6000000000000001" y="0.40171376115068425"/><rect height="8.755588746184317e-5" width="2.9999999999999805e-2" x="0.6300000000000003" y="0.4018290168295618"/><rect height="3.631668593628845e-5" width="2.9999999999999805e-2" x="0.6600000000000001" y="0.40188025603108735"/><rect height="1.447289085471093e-5" width="2.9999999999999805e-2" x="0.6900000000000004" y="0.4019020998261689"/><rect height="5.541566947764309e-6" width="2.9999999999999805e-2" x="0.7200000000000002" y="0.40191103115007587"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#1f78b5"><rect height="2.253624368773849e-2" width="2.9999999999999916e-2" x="-0.75" y="0.37938032902928515"/><rect height="2.8649180639473637e-2" width="3.0000000000000027e-2" x="-0.72" y="0.37326739207755"/><rect height="3.60578590373129e-2" width="2.9999999999999916e-2" x="-0.69" y="0.36585871367971073"/><rect height="4.493085910119554e-2" width="2.9999999999999916e-2" x="-0.66" y="0.3569857136158281"/><rect height="5.543021508815271e-2" width="2.9999999999999916e-2" x="-0.63" y="0.3464863576288709"/><rect height="6.77026175940812e-2" width="2.9999999999999916e-2" x="-0.6" y="0.33421395512294244"/><rect height="8.186936308598547e-2" width="3.0000000000000138e-2" x="-0.5700000000000001" y="0.32004720963103817"/><rect height="9.801542299426558e-2" width="3.0000000000000027e-2" x="-0.5399999999999999" y="0.30390114972275806"/><rect height="0.11617815637932072" width="3.0000000000000138e-2" x="-0.51" y="0.2857384163377029"/><rect height="0.1363363294829193" width="3.0000000000000027e-2" x="-0.48" y="0.26558024323410434"/><rect height="0.1584002161211413" width="3.0000000000000027e-2" x="-0.44999999999999996" y="0.24351635659588233"/><rect height="0.18220361833747106" width="3.0000000000000027e-2" x="-0.41999999999999993" y="0.21971295437955257"/><rect height="0.20749865210715862" width="3.0000000000000027e-2" x="-0.3899999999999999" y="0.194417920609865"/><rect height="0.23395407695778547" width="3.0000000000000027e-2" x="-0.36" y="0.16796249575923816"/><rect height="0.26115780560242313" width="3.0000000000000027e-2" x="-0.32999999999999996" y="0.1407587671146005"/><rect height="0.28862401178025143" width="3.0000000000000027e-2" x="-0.29999999999999993" y="0.1132925609367722"/><rect height="0.31580497134978075" width="3.0000000000000027e-2" x="-0.2699999999999999" y="8.611160136724288e-2"/><rect height="0.3421074413706784" width="3.0000000000000138e-2" x="-0.23999999999999988" y="5.9809131346345246e-2"/><rect height="0.3669130297379998" width="3.0000000000000027e-2" x="-0.20999999999999996" y="3.500354297902386e-2"/><rect height="0.3896016643794924" width="3.0000000000000027e-2" x="-0.17999999999999994" y="1.2314908337531238e-2"/><rect height="0.4095769688621528" width="3.0000000000000027e-2" x="-0.1499999999999999" y="-7.660396145129145e-3"/><rect height="0.426292122052789" width="3.0000000000000027e-2" x="-0.11999999999999988" y="-2.4375549335765356e-2"/><rect height="0.4392746499579623" width="3.0000000000000027e-2" x="-8.999999999999986e-2" y="-3.735807724093865e-2"/><rect height="0.44814858652689726" width="3.0000000000000027e-2" x="-5.999999999999983e-2" y="-4.623201380987363e-2"/><rect height="0.4526525547000263" width="3.0000000000000027e-2" x="-2.9999999999999805e-2" y="-5.0735981983002665e-2"/><rect height="0.4526525547000263" width="3.0000000000000027e-2" x="0.0" y="-5.0735981983002665e-2"/><rect height="0.44814858652689726" width="3.0000000000000027e-2" x="3.0000000000000027e-2" y="-4.623201380987363e-2"/><rect height="0.4392746499579623" width="3.0000000000000027e-2" x="6.000000000000005e-2" y="-3.735807724093865e-2"/><rect height="0.4262921220527889" width="3.0000000000000027e-2" x="9.000000000000008e-2" y="-2.4375549335765245e-2"/><rect height="0.4095769688621528" width="3.0000000000000027e-2" x="0.1200000000000001" y="-7.660396145129145e-3"/><rect height="0.3896016643794923" width="3.0000000000000027e-2" x="0.15000000000000013" y="1.231490833753135e-2"/><rect height="0.3669130297379998" width="3.0000000000000027e-2" x="0.18000000000000016" y="3.500354297902386e-2"/><rect height="0.3421074413706783" width="3.0000000000000027e-2" x="0.2100000000000002" y="5.980913134634536e-2"/><rect height="0.31580497134978064" width="3.0000000000000027e-2" x="0.2400000000000002" y="8.6111601367243e-2"/><rect height="0.2886240117802512" width="3.0000000000000027e-2" x="0.27000000000000024" y="0.11329256093677242"/><rect height="0.261157805602423" width="3.000000000000025e-2" x="0.2999999999999998" y="0.1407587671146006"/><rect height="0.23395407695778542" width="2.9999999999999805e-2" x="0.33000000000000007" y="0.16796249575923822"/><rect height="0.2074986521071585" width="3.000000000000025e-2" x="0.3599999999999999" y="0.19441792060986512"/><rect height="0.18220361833747095" width="2.9999999999999805e-2" x="0.3900000000000001" y="0.21971295437955268"/><rect height="0.1584002161211412" width="3.000000000000025e-2" x="0.41999999999999993" y="0.24351635659588244"/><rect height="0.1363363294829193" width="2.9999999999999805e-2" x="0.4500000000000002" y="0.26558024323410434"/><rect height="0.11617815637932061" width="3.000000000000025e-2" x="0.4800000000000002" y="0.285738416337703"/><rect height="9.801542299426558e-2" width="2.9999999999999805e-2" x="0.5100000000000002" y="0.30390114972275806"/><rect height="8.186936308598547e-2" width="3.000000000000025e-2" x="0.54" y="0.32004720963103817"/><rect height="6.770261759408114e-2" width="2.9999999999999805e-2" x="0.5700000000000003" y="0.3342139551229425"/><rect height="5.543021508815277e-2" width="2.9999999999999805e-2" x="0.6000000000000001" y="0.34648635762887087"/><rect height="4.493085910119554e-2" width="2.9999999999999805e-2" x="0.6300000000000003" y="0.3569857136158281"/><rect height="3.60578590373129e-2" width="2.9999999999999805e-2" x="0.6600000000000001" y="0.36585871367971073"/><rect height="2.8649180639473526e-2" width="2.9999999999999805e-2" x="0.6900000000000004" y="0.3732673920775501"/><rect height="2.253624368773849e-2" width="2.9999999999999805e-2" x="0.7200000000000002" y="0.37938032902928515"/></g><g></g></svg>
other/surface.svg view
@@ -1,4 +1,4 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.77 -0.52 1.5936139630390147 1.04" width="459.6963354920235" xmlns:xlink="http://www.w3.org/1999/xlink"><style type="text/css">* { shape-rendering: crispEdges; }</style><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6cee3"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99c6de"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8cbdda"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fb5d5"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72add1"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65a5cc"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599dc8"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d95c4"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#418dc0"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3586bc"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#297eb8"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2177b2"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#326fa6"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#426799"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52608d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#615881"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#715175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#804a69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f425d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d3b52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab3547"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba2e3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c72731"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d52127"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21a1d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02623"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd332a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da4031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74c38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4583f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16445"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6f4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88558"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c6905e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39a64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a569"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beaf6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.75" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96c4de"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89bcd9"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cb3d4"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fabd0"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63a3cc"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569bc7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a94c3"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3e8cbf"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3284bb"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#277db7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2575b0"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#356da3"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#456696"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#555e8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65577e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#744f72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#834866"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92415b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a13a4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af3344"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd2c39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb262f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d91f24"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21d1e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2a25"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc372c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94333"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d6503a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35c41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06747"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c7895a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59460"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d786"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b851"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7384496919917864" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87bad8"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ab2d4"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6daacf"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61a2cb"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549ac7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4892c2"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3c8abe"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3083ba"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#247bb6"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2874ad"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#386ca0"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#496494"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#585c87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68557b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#774e6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#874664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#953f58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4384d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b23142"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c12b37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce242c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc1d22"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e1201f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2d27"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3a2e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84735"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5533c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6b49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7650"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c97e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7268993839835729" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78b1d3"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ba9cf"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fa1ca"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5299c6"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4691c2"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3a89bd"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2e82b9"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#227ab5"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2b72ab"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3b6a9e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b6392"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b5b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b5479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a4c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a4561"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#983e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7374a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5303f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c42934"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d1222a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df1c1f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12321"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3029"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3d30"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74a37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4563e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16244"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88558"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c6905e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39b64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a56a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beaf6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbb975"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d585"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87c96a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7153490759753593" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6aa8ce"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5da0ca"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5198c5"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4490c1"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3888bd"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2c81b9"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2179b5"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2d71a9"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3e699c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e6190"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e5a83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e5277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d4b6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c445f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b3c54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa3548"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b82f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c62832"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d42128"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21b1d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02623"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd332a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da4031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64d38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06546"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd714d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7c53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88859"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5935f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.7037987679671458" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9fc9"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f97c5"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#438fc1"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3787bc"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2b80b8"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#1f78b4"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2f70a7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40689a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50608e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#605981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#705175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f4a69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f435e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d3b52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac3447"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb2d3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c92730"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d72026"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e31b1d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2924"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc362b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94333"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35c41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06847"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd744e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7f54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49661"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a067"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfab6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb573"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c97e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d87f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87c96a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6922484599589322" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e96c4"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#428ec0"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3686bc"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2a7fb8"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2077b3"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#316fa6"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#426799"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52608c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#625880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#725074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#814968"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90425c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f3a50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae3345"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd2c3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb262f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d91f24"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21d1e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2b25"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc382d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5523b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25e42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6a49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc764f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49862"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a368"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bead6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d584"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c968"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6806981519507187" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#418ec0"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3586bc"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#297eb7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2277b2"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#336fa5"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#436798"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#545f8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64577f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#735073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#834867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92415b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a13a4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b03344"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be2c38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd252d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db1e23"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21f1f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2d26"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3a2e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84735"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5543c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d26043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6c4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7851"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98457"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68f5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39a64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a56a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beb070"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbba75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d786"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6691478439425051" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3485bb"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#287eb7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2376b1"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#346ea4"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#446697"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#555e8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65577e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#754f72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#844766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93405a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2394e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b13243"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c02b37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce242c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc1d21"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12120"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2e27"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3c2f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74936"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4553d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16244"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88658"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5915e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a76b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d082"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.6575975359342916" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#287eb7"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2376b1"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#346ea3"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#456697"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#555e8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66567d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#754f71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#854765"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#944059"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4384d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b23142"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c12a36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf232b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd1d20"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12220"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de3028"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3d30"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74a37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4573e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16345"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce704c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7c52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88759"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5935f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfa96c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d87f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.646047227926078" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2476b0"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#356ea3"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#456696"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#565e89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66567d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#764e71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#864764"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#953f58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4384d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b33141"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c22a36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d0232b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de1c20"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12321"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3129"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3e30"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74b37"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4583f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06546"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd714c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c7895a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59460"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfaa6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb573"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac078"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c767"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6344969199178645" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#356ea3"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#456696"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#565e89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66567d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#764e70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#864764"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#953f58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5384c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b33141"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c22a35"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d1232a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df1c1f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12421"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3129"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3f31"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74c38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06546"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49561"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a167"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb773"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d585"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.6229466119096508" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#456697"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#565e8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66567d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#764e71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#864764"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#953f58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5384c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b43141"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c22a35"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d1232a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df1c1f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12422"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3229"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3f31"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64c38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06646"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7f54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49661"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfad6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.6113963039014374" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#555e8a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65567d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#754f71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#854765"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#953f59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4384d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b33141"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c22a36"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d1232a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df1c1f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12422"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3229"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3f31"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64d38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35a40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06647"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7f54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bead6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d277"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b951"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c665"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcb6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5998459958932237" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64577e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#754f72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#844765"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#944059"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4384d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b33141"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c22a36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d0232b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de1c1f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12421"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3229"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3f31"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64d38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35a40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06647"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7f55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a368"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbb975"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5882956878850103" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#735073"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#834866"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93405a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2394e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b23242"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c12a37"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf232b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de1d20"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12321"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3129"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3f30"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74c38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06647"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7f55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a368"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbb975"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5767453798767966" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#824967"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91415b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a13a4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b03243"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf2b38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce242c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd1d21"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12220"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de3028"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3e30"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74b38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06646"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7f54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a368"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbb975"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5651950718685832" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90425d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f3a51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af3345"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be2c39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd252d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db1e22"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12120"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2f28"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3d2f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74a37"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4583e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06546"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbb975"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcb6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5536447638603695" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d3b52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad3446"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc2d3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb262f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da1f23"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21f1f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2d27"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3b2f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74936"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4563e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16445"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd714c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49661"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bead6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb975"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b851"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d786"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.542094455852156" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa3548"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba2e3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c92730"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d72025"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21d1e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2b26"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db392e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84735"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4553d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16244"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6f4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7c53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c8885a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59560"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a167"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b045"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.5305441478439423" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b72f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c62832"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d52127"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e31b1c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2924"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc372c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5533c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d26043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6d4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88759"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfab6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb773"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.5189938398357289" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c32935"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d22229"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e11b1e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02623"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc352b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94333"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5513a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25e42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6b49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7851"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88558"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5915f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfaa6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb573"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac179"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.5074435318275153" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf242c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de1d20"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12321"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3229"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da4031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64e39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35c41"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6948"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc764f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98357"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68f5e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c64"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb372"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d585"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4958932238193018" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da1e23"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e1201f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2f28"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3d2f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74b37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06646"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca8055"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39963"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a66a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb171"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babd77"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de8a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c765"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7c97e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4843429158110883" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21c1d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2b25"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db392e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84835"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4553d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16345"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce704c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a369"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beaf6f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4727926078028747" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02723"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc362b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94433"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5523b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d26043"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6d4a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a52"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88759"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59460"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a067"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a035"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4612422997946611" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3129"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da4031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64e39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35c41"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6948"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7750"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98457"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c6915e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29d65"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfa96c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb573"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d174"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fcd70"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d074"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4496919917864476" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3b2f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74937"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4573e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06546"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca8055"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39a63"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a66a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe78"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d584"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df89"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db84"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac078"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.438141683778234" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84534"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5533c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16144"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7c53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c7895a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49661"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beaf6f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c77c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebe58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a035"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d584"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7c97e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe77"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.4265913757700205" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64e39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35c41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6a49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7750"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98557"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5925f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfab6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb774"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d383"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.41504106776180694" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4573e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06546"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca8055"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39a63"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a66a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb371"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db83"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d174"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a033"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcb6d"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbba75"><rect height="1.0000000000000009e-2" width="1.1550308008213495e-2" x="-0.4034907597535934" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25f43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6d4a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7b52"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88859"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49561"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c77c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c968"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d182"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb975"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.3919404517453799" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06747"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc754f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98356"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c6905e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfa96c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb774"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3803901437371663" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6f4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a469"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb170"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babd77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7c97e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d584"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d174"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.36883983572895274" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7750"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98457"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5915f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfab6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d082"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb573"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.3572895277207392" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49863"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a56a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb572"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.34573921971252564" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88557"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5925f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb975"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2dd89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cd80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac179"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.334188911704312" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49863"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a66a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d786"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d277"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac079"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.3226386036960984" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5915f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f66"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a837"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d277"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac079"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-0.31108829568788476" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a469"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb171"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a837"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac179"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.29953798767967144" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfaa6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb774"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d082"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f46"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b045"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.2879876796714578" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beaf6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c97d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d584"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad379"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c767"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb572"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="-0.27643737166324434" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a76b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e51"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea635"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.2648870636550307" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb975"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de8a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d074"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fcd70"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc89"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d082"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb773"><rect height="1.0000000000000009e-2" width="1.1550308008213606e-2" x="-0.25333675564681707" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beb070"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babd77"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d074"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.24178644763860346" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869d59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b045"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d383"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbb975"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.23023613963039002" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd479"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b045"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d584"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.21868583162217647" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d584"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869d59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babd77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.2071355236139628" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.19558521560574937" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.18403490759753582" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.17248459958932216" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c77c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d384"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcb6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c77d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.16093429158110872" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c97d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b045"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d786"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-0.14938398357289517" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d786"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87c96a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.1378336755646815" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fcd70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.12628336755646796" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869d59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d584"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-0.11473305954825441" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-0.10318275154004097" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2dd89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-9.163244353182742e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd479"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c968"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-8.008213552361387e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d073"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba031"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89d6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc564"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d980"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="-6.853182751540021e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d073"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-5.698151950718677e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd479"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c868"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f45"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e58"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abc55"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="-4.543121149897311e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cd80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c74"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c74"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869d59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="-3.3880903490759784e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89d6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-2.2330595482546123e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a837"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebe58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="-1.0780287474332573e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c97d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fcd70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="7.700205338809774e-4" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="1.2320328542094527e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d282"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d377"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b851"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="2.3870636550308078e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c179"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad379"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba031"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a034"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="3.542094455852163e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe77"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc7f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc562"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c75"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="4.697125256673529e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbba75"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afde88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab449"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f45"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="5.852156057494873e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c35f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e51"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="7.007186858316228e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac079"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a837"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="8.162217659137605e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bead6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7ca7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d981"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d074"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="9.31724845995896e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb774"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d383"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.10472279260780315" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a369"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac079"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a033"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a033"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.1162731006160167" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29d65"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7c97e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d174"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c868"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a230"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c73"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b247"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.12782340862423047" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a66a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb572"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9db83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a636"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa635"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46a93a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b044"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.13937371663244358" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c6915e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a067"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babd77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#65b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d62"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.15092402464065713" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39963"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d383"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c96a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec564"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e57"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b246"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.16247433264887068" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5925f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a167"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beb06f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe78"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4eae40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.17402464065708445" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39963"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb774"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c57c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b348"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#809e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e52"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#619f45"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a330"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea635"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.1855749486652979" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5915f"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a067"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beaf6f"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babe78"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc80"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc85"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac360"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb55"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f36"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c75"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213883e-2" x="0.19712525667351133" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6948"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7951"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c7895a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49862"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a76b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d383"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da82"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d176"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ec563"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba52"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a838"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c75"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2086755646817252" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d26043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce704c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca8055"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68f5e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beae6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbd77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a736"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa331"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#459f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f43"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.22022587268993865" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4563e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06747"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7750"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88658"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49661"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a56a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d182"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87ca6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b85"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213661e-2" x="0.2317761806981522" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74c38"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25d41"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6d4a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d53"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78c5c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c64"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfab6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbba75"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c87d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d785"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d981"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc462"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5db54b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a736"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa432"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba030"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f36"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#789e51"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e56"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659f47"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213439e-2" x="0.24332648870636586" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94132"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5523b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16244"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd734d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5925f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a168"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beb070"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91cf71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa033"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6d9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2548767967145793" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc362c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84735"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4583e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06848"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7851"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88859"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a76b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d383"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1de89"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da82"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d175"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c969"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a837"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca432"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e48"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6f9e4d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869d59"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d68"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89d6c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d63"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#499f38"><rect height="1.0000000000000009e-2" width="1.1550308008213106e-2" x="0.2664271047227931" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2a25"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3c2f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64c38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25d41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6d4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c65"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfac6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7c97e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedd87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d880"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93d073"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c767"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc55"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b850"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b145"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#46aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da032"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#509f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#599f41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#919d5f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#529f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.2779774127310062" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21e1e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2f28"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94031"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5513b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16244"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5925f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a167"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beb070"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abdb85"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d378"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52af43"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a839"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a034"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#549f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f46"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.28952772073921995" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da1e23"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12321"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd342b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84534"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4563d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06647"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7650"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88658"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49661"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a56a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d283"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1df89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd67c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b952"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b247"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a737"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba432"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa030"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#449f35"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4e9f3b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f40"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#719e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e50"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f46"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3010780287474333" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd242d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df1c1f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02723"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db382d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74936"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35a40"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6a49"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a52"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39a63"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfa96c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c77d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd88"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd57a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ccc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7bc461"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6bbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a331"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#479f37"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5a9f41"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#639f46"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6b9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d67"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c75"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#939d60"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#849e58"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.31262833675564705" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf2b38"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d1232a"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e31a1c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2b26"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3c2f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64d39"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25e42"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7e54"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68e5d"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e65"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bead6e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc76"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addc86"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd379"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c766"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#53b043"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a939"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea534"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f39"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#659e47"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#769e51"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a94"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c75"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a89c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a19d68"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d64"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8c9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213994e-2" x="0.3241786447638604" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b13243"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c32935"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d52127"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21d1e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2f28"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da4031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5513b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16144"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd724d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5915f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a167"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beb070"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aadb84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d77e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d277"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90ce71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88ca6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7fc664"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c25e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67ba53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b248"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aab3d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca433"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a12e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#689e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b82"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a92"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca9b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3357289527720744" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2394f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b43140"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c62832"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d81f25"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12020"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd3229"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94333"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5543c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16446"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc754f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88558"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59460"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a469"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb372"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c27a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d182"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2df8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9da83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d67c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d276"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecd70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7dc563"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c15d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66b951"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae41"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48aa3c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41a737"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa432"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca031"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#469f36"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4f9f3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589f40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#629f45"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#739e4f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7b9e53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#839e58"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b9d5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99c7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a93"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a93"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b69c73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a39d69"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#959d61"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e9d5d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#869e59"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.3472792607802879" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92415b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5384c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b72f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c92630"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db1e22"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12321"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc352b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84634"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4573e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06747"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7750"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88759"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a76b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb673"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c57b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d384"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0de89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7da82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed57b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8dcc6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c868"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#74c05c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#55b145"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4ead40"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#47aa3b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a635"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a330"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#34a02c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea032"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#489f37"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#519f3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5b9f42"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#649f47"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c9e4b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#759e50"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7d9e54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#859e59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8d9d5d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#949d61"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9b9d65"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a29d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a99c6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af9c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b59c73"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bb9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c19c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c69c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf9b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e09b8a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a95"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f79a97"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f79a97"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f79a97"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ea9b90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e79b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b87"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d59b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c79c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c70"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d69"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.35882956878850125" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#824967"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#954059"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7374a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b92e3c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb252e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd1d21"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02623"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc372c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84836"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6948"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7a51"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39963"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfa96c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c77d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d685"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd88"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d981"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#94d074"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcc6d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c867"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ac361"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#72bf5b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abc55"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb44a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cad3f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a93a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea634"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a22f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a02e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a033"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a9f38"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#539f3e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5d9f43"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#669e48"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6e9e4c"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#779e51"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7f9e55"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#879d5a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8f9d5e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#969d62"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9d9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a49d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b19c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b79c74"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d19b82"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ed9a91"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f79a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f79a97"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8f"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e59b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da9b87"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d69b85"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d29b83"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cd9b80"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c89c7d"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39c7a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd9c77"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b89c74"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b29c71"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9c6e"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a59d6a"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9e9d66"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#979d62"><rect height="1.0000000000000009e-2" width="1.1550308008213328e-2" x="0.370379876796715" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#715175"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#844866"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#973f57"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a93649"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc2d3b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce242d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df1c1f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02824"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db392d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74a37"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35b40"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6b49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7c53"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78c5c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39b64"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfab6d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbba75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7c97e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d886"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addd87"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d880"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd479"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf73"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c766"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c360"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf5a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5ab349"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b043"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4bac3e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a939"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da534"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#37a22f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f39"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#559f3f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e9f44"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#679e49"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#709e4d"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#799e52"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#819e56"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#899d5b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#909d5f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#989d63"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#be9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b85"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db9b88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a92"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f79a97"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f99a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f99a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fa9a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fa9a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f99a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a98"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f59a96"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f39a95"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f19a94"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ef9a92"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e99b8f"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e69b8e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e39b8c"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df9b8a"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc9b88"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d79b86"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d39b83"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b81"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c99b7e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bf9c78"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b99c75"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b39c72"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad9c6e"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9f9d67"><rect height="1.0000000000000009e-2" width="1.155030800821355e-2" x="0.38193018480492835" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f5982"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#735073"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#864764"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#983e56"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.45999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab3547"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bd2c39"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.44"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf232b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.43"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e11b1e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.42"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2a25"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.41"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3b2e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74c38"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25d41"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6d4a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d54"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c68d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29d65"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.33999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfad6e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.32999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbc76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.31999999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.31"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3d987"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#acdc86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.29"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d87f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad378"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92cf72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c665"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68ba53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b74e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b348"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.19"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af43"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.18"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.16999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.15999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca533"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a12e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.13999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#39a02f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a035"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4d9f3a"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#579f3f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f44"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#699e49"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="7.999999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#729e4e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="7.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7a9e53"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="6.0e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#829e57"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a9d5c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="3.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="2.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#999d64"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="1.9999999999999962e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a09d68"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-1.0000000000000009e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-2.0000000000000018e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-3.0000000000000027e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-4.0000000000000036e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-6.000000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-7.000000000000006e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-8.000000000000007e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-8.999999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.10999999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.12"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.13"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.15000000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.16000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.17000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.18000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.19000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.20000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f99a98"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.21000000000000008"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fa9a98"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.21999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fa9a99"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.22999999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fb9a99"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.24"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fb9a99"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fb9a99"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.26"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fa9a99"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.27"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#fa9a98"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f99a98"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.29000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f89a97"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.31000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f49a95"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.32000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f29a94"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.33000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f09a93"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.3400000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ee9a92"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.35"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#eb9a90"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.36"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e89b8e"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.37"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e49b8d"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.38"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e19b8b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.39"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd9b89"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d99b86"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.41000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d49b84"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.42000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d09b81"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.43000000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb9b7f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.44000000000000006"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59c7c"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.45000000000000007"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c09c79"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.4600000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.47"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b49c72"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.48"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae9c6f"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.49"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a79d6b"><rect height="1.0000000000000009e-2" width="1.1550308008213772e-2" x="0.3934804928131419" y="-0.5"/></g><g fill-opacity="1.0" font-size="3.4999999999999996e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="start"><text x="0.589683649897331" y="-7.018242076070524e-2">-6</text></g><g fill-opacity="1.0" font-size="3.4999999999999996e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="start"><text x="0.589683649897331" y="-0.16406188221446893">-4</text></g><g fill-opacity="1.0" font-size="3.4999999999999996e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="start"><text x="0.589683649897331" y="-0.2579413436682325">-2</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#000000"><g transform="rotate(-90.0, 0.5559548254620126, -8.033242076070524e-2)"><polyline points="0.5559548254620126,-6.983242076070524e-2-0.5559548254620126,-9.083242076070523e-2"/></g><g transform="rotate(-90.0, 0.5559548254620126, -0.17421188221446893)"><polyline points="0.5559548254620126,-0.16371188221446892-0.5559548254620126,-0.18471188221446894"/></g><g transform="rotate(-90.0, 0.5559548254620126, -0.2680913436682326)"><polyline points="0.5559548254620126,-0.2575913436682326-0.5559548254620126,-0.2785913436682326"/></g></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3cce2"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-3.4999999999999476e-3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cc8df"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-7.000000000000006e-3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95c3dd"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-1.0499999999999954e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ebfdb"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-1.4000000000000012e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88bbd8"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-1.749999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81b6d6"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-2.100000000000002e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ab2d4"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-2.4499999999999966e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73aed1"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-2.8000000000000025e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6da9cf"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-3.149999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66a5cd"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-3.500000000000003e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fa1ca"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-3.849999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589dc8"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-4.200000000000004e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5298c6"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-4.5499999999999985e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b94c3"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-4.899999999999993e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4490c1"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-5.249999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3d8bbf"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-5.599999999999994e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3787bc"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-5.95e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3083ba"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-6.299999999999994e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#297eb8"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-6.65e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#227ab5"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-6.999999999999995e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2476b0"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-7.350000000000001e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2e71a9"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-7.699999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#386ca1"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-8.050000000000002e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#416899"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-8.399999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b6392"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-8.750000000000002e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#555e8a"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-9.099999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5f5983"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-9.450000000000003e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68557b"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-9.799999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#725073"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.10150000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c4b6c"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.10499999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#864764"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.10850000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90425d"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.11199999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9a3d55"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.11549999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3394d"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.119"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad3446"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.12249999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b72f3e"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.1259999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c12a37"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.12949999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca262f"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.133"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d42127"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.13649999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de1c20"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.14"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21f1f"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.14349999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2924"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.14700000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd332a"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.15049999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3c2f"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.15400000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84635"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.15749999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d6503a"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.16099999999999992"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35a40"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.16449999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16445"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.16799999999999993"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6e4b"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.17149999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7850"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.17500000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98156"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.1785"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78b5b"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.18199999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49561"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.1855"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f66"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.18899999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfa96c"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.1925"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb371"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.19599999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbd77"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.1994999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.20299999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d082"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.20650000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da87"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdd88"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.21350000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8da83"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.21699999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d77e"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.22049999999999992"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd47a"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.22399999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d175"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.22749999999999992"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fce70"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.23099999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89cb6b"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.23449999999999993"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#82c767"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.238"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.24149999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.24499999999999988"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe59"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.24849999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.252"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.25549999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44b"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.259"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b146"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.26249999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.266"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.26949999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a838"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.2729999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da533"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.27649999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.28"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a02f"><rect height="3.4999999999998366e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.28349999999999986"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a034"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.2869999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4c9f3a"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.2905"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#569f3f"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.29400000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#609f45"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.2975"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6a9e4a"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.30099999999999993"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#749e4f"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3045"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7e9e55"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.30799999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#889d5a"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3114999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#929d60"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.31499999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9c9d65"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3185"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a69d6b"><rect height="3.4999999999998366e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.32199999999999984"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b09c70"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3254999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ba9c76"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.32899999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49c7b"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3325"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce9b80"><rect height="3.4999999999998366e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.33599999999999985"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d89b86"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3394999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e29b8b"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.34299999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ec9a91"><rect height="3.4999999999999476e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.3464999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#f69a96"><rect height="3.5000000000000586e-3" width="2.6950718685831765e-2" x="0.5236139630390146" y="-0.35"/></g><g fill-opacity="1.0" font-size="5.5999999999999994e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="start"><text x="0.5236139630390146" y="-0.385">rosenbrock</text></g><g></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.77 -0.52 1.6583317886932345 1.04" width="478.3649390461253" xmlns:xlink="http://www.w3.org/1999/xlink"><style type="text/css">* { shape-rendering: crispEdges; }</style><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b05929"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.75" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9385"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.75" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6c9db"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.75" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73aed2"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.75" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3e8cc0"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.75" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#356da4"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.75" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#725074"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.75" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8364a"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.75" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d71f25"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.75" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc362c"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.75" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4563e"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.75" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce704c"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.75" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.75" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78d5c"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="-0.75" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c6905e"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="-0.75" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78d5c"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.75" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98256"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.75" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce704c"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.75" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4573e"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="-0.75" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc372c"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="-0.75" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9a90"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3cde2"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6aa8cf"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3586bd"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#436698"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#814868"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b82e3d"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21e1f"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84735"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06848"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98257"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49561"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c2a168"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a56a"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a268"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49863"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88759"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6f4c"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64f3a"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2824"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.6978683966635775" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2cce2"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#67a6ce"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3184bb"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4a6393"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8a4462"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c22936"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2a25"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5543c"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7650"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c5925f"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a66b"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb372"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb975"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb874"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beaf70"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29f67"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c8885a"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6a49"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84534"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21a1d"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.6457367933271548" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ba9cf"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3385bc"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#496394"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8b4461"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c52833"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2f28"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35b41"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca8055"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e66"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c37b"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cb7f"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc80"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb875"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a369"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88759"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16446"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3a2e"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d2222a"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.5936051899907321" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3c8bbf"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40689b"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#844766"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c22a36"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2e28"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25d42"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88558"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a66a"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf78"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d182"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc89"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1dd89"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc89"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d183"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#babf79"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a66b"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88659"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25e42"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de3028"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c32935"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="-0.5414735866543094" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2d71aa"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#754e72"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b62f3f"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02623"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d3593f"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c98458"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86c"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c57c"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abda84"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d881"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d881"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abda84"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3db88"><rect height="4.999999999999993e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="4.999999999999993e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a96c"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88558"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35a40"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02724"><rect height="4.999999999999993e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b72e3e"><rect height="4.999999999999993e-2" width="5.213160333642258e-2" x="-0.4893419833178869" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5c5a85"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1394f"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df1b1f"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64d39"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7c53"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a56a"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b1dd89"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a5d780"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9dd47a"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ad278"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd379"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d67e"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aedc86"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cc80"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfad6e"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88659"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d4583f"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12321"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b03244"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.4372103799814643" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#824868"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c52833"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc372d"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6c4a"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39a64"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bac079"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2dd89"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d67e"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d176"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90cd70"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf72"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd378"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7d982"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c7895b"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35940"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e12221"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad3446"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.38507877664504164" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a03a50"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e11a1d"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5523c"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c88658"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d786"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a4d77f"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95d074"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8bcb6d"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c969"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#86c869"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8aca6c"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#93cf72"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d57c"><rect height="4.999999999999993e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b2de8a"><rect height="4.999999999999993e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c6905e"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d25f43"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e02623"><rect height="4.999999999999993e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af3244"><rect height="4.999999999999993e-2" width="5.213160333642258e-2" x="-0.332947173308619" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b62f3f"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2d27"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d06747"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39a64"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c57c"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abda84"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d176"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8acb6c"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c665"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc461"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c665"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8aca6c"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d176"><rect height="4.999999999999993e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#abda84"><rect height="4.999999999999993e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b8c67c"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c39b64"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6848"><rect height="5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2f28"><rect height="4.999999999999993e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b72e3e"><rect height="4.999999999999993e-2" width="5.213160333642258e-2" x="-0.2808155699721964" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c42834"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3c2f"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc754f"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86c"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d384"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2d67d"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fcd6f"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c665"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#78c25e"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73bf5b"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73bf5b"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c15e"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c665"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fcd6f"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a1d67d"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b5d484"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a96c"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7750"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3d30"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c62733"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.22868396663577384" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb252f"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94333"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7e54"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#beb171"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dd89"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd378"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88c96a"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c25f"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6fbe58"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6abb54"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#77c15d"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#84c867"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d075"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#addb86"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb77"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5b"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d5513b"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da1e23"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="-0.1765523632993512" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca2630"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d94434"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca8055"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb472"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0dd88"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#97d175"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c766"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73c05b"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69ba53"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74e"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74d"><rect height="5.0000000000000044e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#64b850"><rect height="5.0000000000000044e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="5.0000000000000044e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#79c25f"><rect height="4.999999999999993e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8aca6c"><rect height="4.999999999999993e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a0d57c"><rect height="5.0000000000000044e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d283"><rect height="5.0000000000000044e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c1a168"><rect height="5.0000000000000044e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cf6a49"><rect height="4.999999999999993e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2b26"><rect height="4.999999999999993e-2" width="5.213160333642275e-2" x="-0.12442075996292856" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c12a37"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3c30"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cb7b52"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb171"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b0dd88"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d075"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c665"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be58"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb44a"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b347"><rect height="5.0000000000000044e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5bb449"><rect height="5.0000000000000044e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#61b74e"><rect height="5.0000000000000044e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6cbc56"><rect height="4.999999999999993e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="4.999999999999993e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#91ce71"><rect height="5.0000000000000044e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aada83"><rect height="5.0000000000000044e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbd77"><rect height="5.0000000000000044e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c8885a"><rect height="4.999999999999993e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d74b38"><rect height="4.999999999999993e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae3345"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de2d27"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6e4b"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86c"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3da88"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#99d177"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c665"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b042"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#52b042"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64d"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81c665"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#98d176"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b3dc88"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfa96c"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce704c"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#92405b"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de1c20"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35940"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49762"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b7cd80"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9fd57b"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c868"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64c"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="4.999999999999999e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3e"><rect height="5.0000000000000044e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="5.0000000000000044e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4dad3e"><rect height="5.0000000000000044e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="4.999999999999993e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="4.999999999999993e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be58"><rect height="5.0000000000000044e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#85c868"><rect height="5.0000000000000044e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9ed47b"><rect height="5.0000000000000044e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6ce81"><rect height="4.999999999999993e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49863"><rect height="4.999999999999993e-2" width="5.213160333642275e-2" x="3.197405004633924e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6c5379"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bc2c3b"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db3b2f"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d54"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bcb774"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aada84"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ecc6e"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#62b74e"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#54b044"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3c"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#45a938"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a938"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3b"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#51af42"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fb64c"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71be59"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88c96a"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d77e"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c47b"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="8.410565338276199e-2" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#396ba1"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8e425e"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dc1d22"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35940"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c49963"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6d182"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9bd378"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#80c664"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb54"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#57b246"><rect height="4.999999999999999e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4aac3d"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#42a836"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ea633"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3fa634"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#44a938"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5eb54b"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#71bf59"><rect height="5.0000000000000044e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d881"><rect height="4.999999999999993e-2" width="5.213160333642264e-2" x="0.13623725671918452" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3989be"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#535f8c"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7374b"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2a25"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6f4c"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bfad6e"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdc87"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90cd70"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#75c05c"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#60b64c"><rect height="4.999999999999999e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4fae40"><rect height="5.0000000000000044e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a837"><rect height="5.0000000000000044e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ba531"><rect height="5.0000000000000044e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#38a32f"><rect height="4.999999999999993e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3aa431"><rect height="4.999999999999993e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#40a735"><rect height="5.0000000000000044e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4cac3e"><rect height="5.0000000000000044e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb449"><rect height="5.0000000000000044e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be59"><rect height="4.999999999999993e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="4.999999999999993e-2" width="5.2131603336422416e-2" x="0.18836886005560716" y="-0.5"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70acd1"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="0.45"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2d81ba"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="0.4"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63577f"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="0.35000000000000003"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b62f3f"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="0.3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#db392e"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca7d54"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="0.2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb76"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="0.14999999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6d881"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="9.999999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#88c96a"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="4.999999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6ebd57"><rect height="4.999999999999999e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="-0.0"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#59b347"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="-5.0000000000000044e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3b"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="-0.10000000000000009"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca532"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="-0.15000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a22d"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="-0.19999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#33a12b"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="-0.25"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#35a22d"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="-0.30000000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3ca532"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="-0.3500000000000001"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#48ab3b"><rect height="5.0000000000000044e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="-0.40000000000000013"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#58b347"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="-0.44999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6dbd56"><rect height="4.999999999999993e-2" width="5.213160333642253e-2" x="0.2405004633920298" y="-0.5"/></g><g fill-opacity="1.0" font-size="3.4999999999999996e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="0.5072203429101021" y="-4.559189347347159e-2">-6</text></g><g fill-opacity="1.0" font-size="3.4999999999999996e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="0.5072203429101021" y="-0.1484007790985863">-4</text></g><g fill-opacity="1.0" font-size="3.4999999999999996e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="0.5072203429101021" y="-0.251209664723701">-2</text></g><g stroke-opacity="0.4" fill-opacity="1.0" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><g transform="rotate(-90.0, 0.4775254865616312, -5.574189347347158e-2)"><polyline points="0.4775254865616312,-4.524189347347159e-2+0.4775254865616312,-6.624189347347158e-2"/></g><g transform="rotate(-90.0, 0.4775254865616312, -0.15855077909858628)"><polyline points="0.4775254865616312,-0.14805077909858627+0.4775254865616312,-0.1690507790985863"/></g><g transform="rotate(-90.0, 0.4775254865616312, -0.2613596647237011)"><polyline points="0.4775254865616312,-0.2508596647237011+0.4775254865616312,-0.2718596647237011"/></g></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b05c2d"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-3.4999999999999476e-3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af6237"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-7.000000000000006e-3"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#af6840"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-1.0499999999999954e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae6e49"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-1.4000000000000012e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ae7453"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-1.749999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad7a5c"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-2.100000000000002e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad7f65"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-2.4499999999999966e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac856f"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-2.8000000000000025e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ac8b78"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-3.149999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab9181"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-3.499999999999992e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ab978b"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-3.849999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aa9d94"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-4.200000000000004e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#aaa39d"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-4.5499999999999985e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9a8a6"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-4.899999999999993e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9aeb0"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-5.249999999999999e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8b4b9"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-5.600000000000005e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a8bac2"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-5.95e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7c0cc"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-6.299999999999994e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a7c6d5"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-6.65e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a6ccde"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-6.999999999999995e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a2cce2"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-7.350000000000001e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cc8e0"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-7.699999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#95c4dd"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-8.050000000000002e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8ebfdb"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-8.399999999999996e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#87bbd9"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-8.750000000000002e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#81b7d6"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-9.099999999999997e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7ab2d4"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-9.449999999999992e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#73aed2"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-9.799999999999998e-2"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#6caacf"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.10149999999999992"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#66a5cd"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.10499999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5fa1cb"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.10850000000000004"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#589dc9"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.11199999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5198c6"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.11549999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b94c4"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.119"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4490c2"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.12250000000000005"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3d8bbf"><rect height="3.4999999999998366e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.1259999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3687bd"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.12949999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2f83bb"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.133"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#297eb8"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.13649999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#227ab6"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.1399999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2475b1"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.14349999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#2d71aa"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.14700000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#376ca2"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.15049999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#41679a"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.15399999999999991"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#4b6393"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.15749999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#555e8b"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.16099999999999992"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5e5983"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.16449999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#68547c"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.16799999999999993"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#725074"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.17149999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7c4b6c"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.17499999999999993"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#864665"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.1785"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#90425d"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.18199999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#993d55"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.1855"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3384e"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.18899999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ad3346"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.1925"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b72f3e"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.19599999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c12a37"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.1995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca252f"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.20299999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d42128"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.2064999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#de1c20"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.20999999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#e21e1f"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.21350000000000002"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#df2824"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.21699999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#dd322a"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.22049999999999992"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#da3c2f"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.22399999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d84635"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.22749999999999992"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d64f3a"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.23099999999999998"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d35940"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.23449999999999993"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#d16345"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.238"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ce6d4b"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.24149999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#cc7750"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.245"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#ca8156"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.24849999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c78a5b"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.252"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c59461"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.25549999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c29e66"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.259"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#c0a86c"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.26249999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bdb271"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.266"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#bbbb77"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.26949999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b9c57c"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.2729999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b6cf81"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.27649999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#b4d987"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.2799999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#afdc87"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.2835"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a9d983"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.2869999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#a3d67e"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.2905"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#9cd379"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.29399999999999993"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#96d074"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.2974999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#8fcd70"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.30099999999999993"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#89ca6b"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.3045"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#83c766"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.30799999999999994"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#7cc462"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.3114999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#76c15d"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.31499999999999995"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#70be58"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.3184999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#69bb53"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.32199999999999984"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#63b84f"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.3254999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#5cb54a"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.32899999999999996"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#56b145"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.3324999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#50ae41"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.33599999999999985"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#49ab3c"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.3394999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#43a837"><rect height="3.5000000000000586e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.34299999999999997"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#3da532"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.3464999999999999"/></g><g stroke-opacity="0.0" fill-opacity="1.0" stroke="#000000" stroke-width="0.0" fill="#36a22e"><rect height="3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453" y="-0.34999999999999987"/></g><g fill-opacity="1.0" font-size="8.399999999999999e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="0.44833178869323453" y="-0.385">rosenbrock</text></g><g></g></svg>
− other/surfaceg.svg
file too large to diff
other/svgoptions.svg view
@@ -1,5 +1,5 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.385 -0.5275 0.7699999999999999 1.0625" width="217.41176470588235" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="1.0" stroke="#a6cee3" stroke-width="1.5e-2" fill="none"><polyline points="-0.35,0.29999999999999993+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.385 -0.5275 0.7699999999999999 1.0625" width="217.41176470588235" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="1.0" stroke="#b05929" stroke-width="1.5e-2" fill="none"><polyline points="-0.35,0.29999999999999993 -9.999999999999998e-2,0.29999999999999993-0.15000000000000002,-0.5"/></g><g stroke-opacity="1.0" stroke="#1f78b4" stroke-width="3.0e-2" fill="none"><polyline points="-0.35,0.5-0.34999999999999987,-0.10000000000000009"/></g><g stroke-opacity="1.0" stroke="#fb9a99" stroke-width="1.0e-2" fill="none"><polyline points="-0.22499999999999998,-0.30000000000000016+0.15000000000000002,-0.5"/></g><g stroke-opacity="1.0" stroke="#a6cfe3" stroke-width="3.0e-2" fill="none"><polyline points="-0.35,0.5+0.34999999999999987,-0.10000000000000009"/></g><g stroke-opacity="1.0" stroke="#1f78b5" stroke-width="1.0e-2" fill="none"><polyline points="-0.22499999999999998,-0.30000000000000016 -0.22499999999999998,0.5"/></g></svg>
other/text.svg view
@@ -1,1 +1,1 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.7825 -0.56625 1.565 1.1125" width="422.02247191011236" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.75" y="0.5">a</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.6001859947935977" y="0.45833333333333337">b</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.451868881605292" y="0.4166666666666667">c</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.3065305960029406" y="0.375">d</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-0.1656233100938329" y="0.33333333333333337">e</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="-3.0554922901016246e-2" y="0.29166666666666674">f</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="9.732500689835166e-2" y="0.25">g</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.2167387453171994" y="0.20833333333333343">h</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.32649314975417987" y="0.16666666666666669">i</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4254915904801422" y="0.125">j</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.5127449077998856" y="8.333333333333337e-2">k</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.5873812954088635" y="4.166666666666674e-2">l</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.6486550111935965" y="-0.0">m</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.6959538284403606" y="-4.166666666666663e-2">n</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.7288051530021376" y="-8.333333333333315e-2">o</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.7468807453031088" y="-0.125">p</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.75" y="-0.16666666666666663">q</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.738131750530969" y="-0.20833333333333326">r</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.7113945805215882" y="-0.25">s</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.6700556389364578" y="-0.29166666666666663">t</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.6145279708150595" y="-0.33333333333333326">u</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.5453663902622552" y="-0.375">v</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.4632619369291495" y="-0.4166666666666665">w</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.369034971373323" y="-0.45833333333333326">x</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#333333" text-anchor="middle"><text x="0.2636269782873162" y="-0.5">y</text></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.7825 -0.56625 1.565 1.1125" width="422.02247191011236" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.75" y="0.5">a</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.6001859947935977" y="0.45833333333333337">b</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.451868881605292" y="0.4166666666666667">c</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.3065305960029406" y="0.375">d</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-0.1656233100938329" y="0.33333333333333337">e</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="-3.0554922901016246e-2" y="0.29166666666666674">f</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="9.732500689835166e-2" y="0.25">g</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.2167387453171994" y="0.20833333333333343">h</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.32649314975417987" y="0.16666666666666669">i</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4254915904801422" y="0.125">j</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.5127449077998856" y="8.333333333333337e-2">k</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.5873812954088635" y="4.166666666666674e-2">l</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.6486550111935965" y="-0.0">m</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.6959538284403606" y="-4.166666666666663e-2">n</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.7288051530021376" y="-8.333333333333315e-2">o</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.7468807453031088" y="-0.125">p</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.75" y="-0.16666666666666663">q</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.738131750530969" y="-0.20833333333333326">r</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.7113945805215882" y="-0.25">s</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.6700556389364578" y="-0.29166666666666663">t</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.6145279708150595" y="-0.33333333333333326">u</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.5453663902622552" y="-0.375">v</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.4632619369291495" y="-0.4166666666666665">w</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.369034971373323" y="-0.45833333333333326">x</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="middle"><text x="0.2636269782873162" y="-0.5">y</text></g></svg>
+ other/textlocal.svg view
@@ -0,0 +1,1 @@+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.775 -0.5276917562724014 2.0115517241379313 1.0526917562724014" width="573.2594690189848" xmlns:xlink="http://www.w3.org/1999/xlink"><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="-0.75" y="0.4623655913978495">a pretty long piece of text</text></g><g fill-opacity="1.0" font-size="8.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="start"><text x="-0.10344827586206895" y="-0.4336917562724014">another pretty long piece of text</text></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#a6cfe3" stroke-width="1.0e-2" fill="#1f78b5"><rect height="0.10394265232974909" width="0.6982758620689655" x="-0.75" y="0.3960573476702509"/></g><g stroke-opacity="1.0" fill-opacity="0.1" stroke="#a6cfe3" stroke-width="1.0e-2" fill="#1f78b5"><rect height="0.1039426523297492" width="0.853448275862069" x="-0.10344827586206895" y="-0.5"/></g></svg>
other/unit.svg view
@@ -1,1 +1,1 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.775 -0.525 1.55 1.05" width="442.8571428571429" xmlns:xlink="http://www.w3.org/1999/xlink"><style type="text/css">* { shape-rendering: crispEdges; }</style><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="1.0e-2" fill="#1f78b4"><rect height="1.0" width="1.5" x="-0.75" y="-0.5"/></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.775 -0.525 1.55 1.05" width="442.8571428571429" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#a6cfe3" stroke-width="1.0e-2" fill="#1f78b5"><rect height="1.0" width="1.5" x="-0.75" y="-0.5"/></g></svg>
other/venn.svg view
@@ -1,29 +1,29 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.62 -0.5531904665405744 1.155514898098931 1.1478097383497188" width="302.01387725468084" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="2.5e-2" stroke="#000000" stroke-width="0.0" fill="#808080"><rect height="0.900657479960371" width="0.8722082765396367" x="-0.37220827653963673" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,0.4006574799603711-0.5,0.4006574799603711"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,0.250547899966976-0.5,0.250547899966976"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,0.10043831997358077-0.5,0.10043831997358077"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,-4.967126001981437e-2-0.5,-4.967126001981437e-2"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,-0.1997808400132095-0.5,-0.1997808400132095"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,-0.34989042000660453-0.5,-0.34989042000660453"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,-0.5-0.5,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.4137170134197965">-1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.26360743342640136">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="0.11349785343300617">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-3.6611726560389024e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.18672130655378405">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.3368308865471793">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text x="-0.5" y="-0.4869404665405743">1.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><g transform="rotate(-90.0, -0.4715878153917213, 0.4006574799603711)"><polyline points="-0.4715878153917213,0.4156574799603711--0.4715878153917213,0.3856574799603711"/></g><g transform="rotate(-90.0, -0.4715878153917213, 0.250547899966976)"><polyline points="-0.4715878153917213,0.26554789996697603--0.4715878153917213,0.235547899966976"/></g><g transform="rotate(-90.0, -0.4715878153917213, 0.10043831997358077)"><polyline points="-0.4715878153917213,0.11543831997358077--0.4715878153917213,8.543831997358077e-2"/></g><g transform="rotate(-90.0, -0.4715878153917213, -4.967126001981437e-2)"><polyline points="-0.4715878153917213,-3.467126001981437e-2--0.4715878153917213,-6.467126001981437e-2"/></g><g transform="rotate(-90.0, -0.4715878153917213, -0.1997808400132095)"><polyline points="-0.4715878153917213,-0.1847808400132095--0.4715878153917213,-0.21478084001320952"/></g><g transform="rotate(-90.0, -0.4715878153917213, -0.34989042000660453)"><polyline points="-0.4715878153917213,-0.3348904200066045--0.4715878153917213,-0.36489042000660454"/></g><g transform="rotate(-90.0, -0.4715878153917213, -0.5)"><polyline points="-0.4715878153917213,-0.485--0.4715878153917213,-0.515"/></g></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="0.900657479960371" width="4.361041382698216e-3" x="-0.4606852119349759" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.37220827653963673,0.4006574799603711--0.37220827653963673,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-0.2268402304496973,0.4006574799603711--0.2268402304496973,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="-8.147218435975778e-2,0.4006574799603711--8.147218435975778e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="6.389586173018169e-2,0.4006574799603711-6.389586173018169e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.20926390782012116,0.4006574799603711-0.20926390782012116,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.3546319539100604,0.4006574799603711-0.3546319539100604,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#808080" stroke-width="5.0e-3" fill="none"><polyline points="0.5,0.4006574799603711-0.5,-0.5"/></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.37220827653963673, 0.5)" x="-0.37220827653963673" y="0.5">-1.5</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -0.2268402304496973, 0.5)" x="-0.2268402304496973" y="0.5">-1</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, -8.147218435975778e-2, 0.5)" x="-8.147218435975778e-2" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 6.389586173018169e-2, 0.5)" x="6.389586173018169e-2" y="0.5">0</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.20926390782012116, 0.5)" x="0.20926390782012116" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.3546319539100604, 0.5)" x="0.3546319539100604" y="0.5">1</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#808080" text-anchor="end"><text transform="rotate(-45.0, 0.5, 0.5)" x="0.5" y="0.5">1.5</text></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="5.0e-3" fill="#808080"><polyline points="-0.37220827653963673,0.4449288480590831--0.37220827653963673,0.4149288480590831"/><polyline points="-0.2268402304496973,0.4449288480590831--0.2268402304496973,0.4149288480590831"/><polyline points="-8.147218435975778e-2,0.4449288480590831--8.147218435975778e-2,0.4149288480590831"/><polyline points="6.389586173018169e-2,0.4449288480590831-6.389586173018169e-2,0.4149288480590831"/><polyline points="0.20926390782012116,0.4449288480590831-0.20926390782012116,0.4149288480590831"/><polyline points="0.3546319539100604,0.4449288480590831-0.3546319539100604,0.4149288480590831"/><polyline points="0.5,0.4449288480590831-0.5,0.4149288480590831"/></g><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#808080" stroke-width="0.0" fill="#808080"><rect height="4.503287399801881e-3" width="0.8722082765396367" x="-0.37220827653963673" y="0.4141673421597767"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#a6cee3"><path d="M 0.0639,-0.4196 A 0.14536804608993945 0.15010957999339516 -0.0 1 1 0.3546,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 0.2093,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 0.0639,-0.4196 L 0.0639,-0.4196"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#1f78b4"><path d="M -0.2268,0.1004 A 0.14536804608993945 0.15010957999339516 -0.0 1 0 0.3546,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.0639,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 -0.2268,0.1004 L -0.2268,0.1004"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#e31a1c"><path d="M -0.2268,0.1004 A 0.14536804608993945 0.15010957999339516 -0.0 1 1 0.0639,-0.4196 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 -0.0815,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 -0.2268,0.1004 L -0.2268,0.1004"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#b2df8a"><path d="M 0.2093,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.3546,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.0639,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 0.2093,-0.1596 L 0.2093,-0.1596"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#33a02c"><path d="M 0.0639,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 -0.2268,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 -0.0815,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 0.0639,0.1004 L 0.0639,0.1004"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#fb9a99"><path d="M 0.0639,-0.4196 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.2093,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 0 -0.0815,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.0639,-0.4196 L 0.0639,-0.4196"/></g><g stroke-opacity="0.8" fill-opacity="0.2" stroke="#1f78b4" stroke-width="1.0e-2" fill="#fdbf6f"><path d="M 0.2093,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.0639,0.1004 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 -0.0815,-0.1596 A 0.2907360921798789 0.30021915998679033 -0.0 0 1 0.2093,-0.1596 L 0.2093,-0.1596"/></g><g></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.62 -0.5531609947643978 1.155514898098931 1.1477802665735424" width="302.02163212349313" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.0" fill-opacity="5.0e-2" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.9026900162484203" width="0.9411498969440864" x="-0.4411498969440863" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4411498969440863,0.40269001624842027+0.5,0.40269001624842027"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4411498969440863,0.252241680207017+0.5,0.252241680207017"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4411498969440863,0.10179334416561353+0.5,0.10179334416561353"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4411498969440863,-4.865499187578981e-2+0.5,-4.865499187578981e-2"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4411498969440863,-0.1991033279171931+0.5,-0.1991033279171931"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4411498969440863,-0.3495516639585964+0.5,-0.3495516639585964"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4411498969440863,-0.5+0.5,-0.5"/></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="0.41577902148402235">-1.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="0.26533068544261906">-1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="0.11488234940121572">-0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="-3.556598664018773e-2">0</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="-0.18601432268159102">0.5</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="-0.3364626587229943">1</text></g><g fill-opacity="1.0" font-size="5.0e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text x="-0.5" y="-0.4869109947643978">1.5</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><g transform="rotate(-90.0, -0.470796118697825, 0.40269001624842027)"><polyline points="-0.470796118697825,0.4176900162484203+-0.470796118697825,0.38769001624842025"/></g><g transform="rotate(-90.0, -0.470796118697825, 0.252241680207017)"><polyline points="-0.470796118697825,0.267241680207017+-0.470796118697825,0.23724168020701697"/></g><g transform="rotate(-90.0, -0.470796118697825, 0.10179334416561353)"><polyline points="-0.470796118697825,0.11679334416561353+-0.470796118697825,8.679334416561353e-2"/></g><g transform="rotate(-90.0, -0.470796118697825, -4.865499187578981e-2)"><polyline points="-0.470796118697825,-3.365499187578981e-2+-0.470796118697825,-6.365499187578981e-2"/></g><g transform="rotate(-90.0, -0.470796118697825, -0.1991033279171931)"><polyline points="-0.470796118697825,-0.18410332791719308+-0.470796118697825,-0.2141033279171931"/></g><g transform="rotate(-90.0, -0.470796118697825, -0.3495516639585964)"><polyline points="-0.470796118697825,-0.33455166395859637+-0.470796118697825,-0.3645516639585964"/></g><g transform="rotate(-90.0, -0.470796118697825, -0.5)"><polyline points="-0.470796118697825,-0.485+-0.470796118697825,-0.515"/></g></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="0.9026900162484203" width="3.7645995877763627e-3" x="-0.45903174498602395" y="-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.4411498969440863,0.40269001624842027+-0.4411498969440863,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.2842915807867386,0.40269001624842027+-0.2842915807867386,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="-0.12743326462939086,0.40269001624842027+-0.12743326462939086,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="2.9425051527956825e-2,0.40269001624842027+2.9425051527956825e-2,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.1862833676853045,0.40269001624842027+0.1862833676853045,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.3431416838426522,0.40269001624842027+0.3431416838426522,-0.5"/></g><g stroke-opacity="5.0e-2" stroke="#0d0d0d" stroke-width="5.0e-3" fill="none"><polyline points="0.5,0.40269001624842027+0.5,-0.5"/></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.4411498969440863, 0.5)" x="-0.4411498969440863" y="0.5">-1.5</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.2842915807867386, 0.5)" x="-0.2842915807867386" y="0.5">-1</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, -0.12743326462939086, 0.5)" x="-0.12743326462939086" y="0.5">-0.5</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 2.9425051527956825e-2, 0.5)" x="2.9425051527956825e-2" y="0.5">0</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 0.1862833676853045, 0.5)" x="0.1862833676853045" y="0.5">0.5</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 0.3431416838426522, 0.5)" x="0.3431416838426522" y="0.5">1</text></g><g fill-opacity="1.0" font-size="4.179310344827586e-2" stroke="none" stroke-width="0.0" fill="#0d0d0d" text-anchor="end"><text transform="rotate(-45.0, 0.5, 0.5)" x="0.5" y="0.5">1.5</text></g><g stroke-opacity="0.4" fill-opacity="0.4" stroke="#0d0d0d" stroke-width="2.0e-3" fill="#0d0d0d"><polyline points="-0.4411498969440863,0.4461247517602456+-0.4411498969440863,0.41612475176024555"/><polyline points="-0.2842915807867386,0.4461247517602456+-0.2842915807867386,0.41612475176024555"/><polyline points="-0.12743326462939086,0.4461247517602456+-0.12743326462939086,0.41612475176024555"/><polyline points="2.9425051527956825e-2,0.4461247517602456+2.9425051527956825e-2,0.41612475176024555"/><polyline points="0.1862833676853045,0.4461247517602456+0.1862833676853045,0.41612475176024555"/><polyline points="0.3431416838426522,0.4461247517602456+0.3431416838426522,0.41612475176024555"/><polyline points="0.5,0.4461247517602456+0.5,0.41612475176024555"/></g><g stroke-opacity="0.0" fill-opacity="0.4" stroke="#000000" stroke-width="0.0" fill="#0d0d0d"><rect height="3.6107600649936678e-3" width="0.9411498969440864" x="-0.4411498969440863" y="0.4162303664921466"/></g><g stroke-opacity="1.0" fill-opacity="0.2" stroke="#a6cfe3" stroke-width="1.0e-2" fill="#b05929"><path d="M 0.0294,-0.4194 A 0.15685831615734772 0.15044833604140337 -0.0 1 1 0.3431,0.1018 A 0.31371663231469543 0.30089667208280674 -0.0 0 0 0.1863,-0.1588 A 0.31371663231469543 0.30089667208280674 -0.0 0 0 0.0294,-0.4194 L 0.0294,-0.4194"/></g><g stroke-opacity="1.0" fill-opacity="0.2" stroke="#a6cfe3" stroke-width="1.0e-2" fill="#a6cfe3"><path d="M -0.2843,0.1018 A 0.15685831615734772 0.15044833604140337 -0.0 1 0 0.3431,0.1018 A 0.31371663231469543 0.30089667208280674 -0.0 0 1 0.0294,0.1018 A 0.31371663231469543 0.30089667208280674 -0.0 0 1 -0.2843,0.1018 L -0.2843,0.1018"/></g><g stroke-opacity="1.0" fill-opacity="0.2" stroke="#a6cfe3" stroke-width="1.0e-2" fill="#1f78b5"><path d="M -0.2843,0.1018 A 0.15685831615734772 0.15044833604140337 -0.0 1 1 0.0294,-0.4194 A 0.31371663231469543 0.30089667208280674 -0.0 0 0 -0.1274,-0.1588 A 0.31371663231469543 0.30089667208280674 -0.0 0 0 -0.2843,0.1018 L -0.2843,0.1018"/></g><g stroke-opacity="1.0" fill-opacity="0.2" stroke="#a6cfe3" stroke-width="1.0e-2" fill="#e31a1c"><path d="M 0.1863,-0.1588 A 0.31371663231469543 0.30089667208280674 -0.0 0 1 0.3431,0.1018 A 0.31371663231469543 0.30089667208280674 -0.0 0 1 0.0294,0.1018 A 0.31371663231469543 0.30089667208280674 -0.0 0 0 0.1863,-0.1588 L 0.1863,-0.1588"/></g><g stroke-opacity="1.0" fill-opacity="0.2" stroke="#a6cfe3" stroke-width="1.0e-2" fill="#b2de8a"><path d="M 0.0294,0.1018 A 0.31371663231469543 0.30089667208280674 -0.0 0 1 -0.2843,0.1018 A 0.31371663231469543 0.30089667208280674 -0.0 0 1 -0.1274,-0.1588 A 0.31371663231469543 0.30089667208280674 -0.0 0 0 0.0294,0.1018 L 0.0294,0.1018"/></g><g stroke-opacity="1.0" fill-opacity="0.2" stroke="#a6cfe3" stroke-width="1.0e-2" fill="#33a12b"><path d="M 0.0294,-0.4194 A 0.31371663231469543 0.30089667208280674 -0.0 0 1 0.1863,-0.1588 A 0.31371663231469543 0.30089667208280674 -0.0 0 0 -0.1274,-0.1588 A 0.31371663231469543 0.30089667208280674 -0.0 0 1 0.0294,-0.4194 L 0.0294,-0.4194"/></g><g stroke-opacity="1.0" fill-opacity="0.2" stroke="#a6cfe3" stroke-width="1.0e-2" fill="#fa9999"><path d="M 0.1863,-0.1588 A 0.31371663231469543 0.30089667208280674 -0.0 0 1 0.0294,0.1018 A 0.31371663231469543 0.30089667208280674 -0.0 0 1 -0.1274,-0.1588 A 0.31371663231469543 0.30089667208280674 -0.0 0 1 0.1863,-0.1588 L 0.1863,-0.1588"/></g><g></g></svg>
other/wave.svg view
@@ -1,1 +1,1 @@-<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.7865 -0.5365 1.573 1.073" width="439.7949673811743" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="0.8" fill-opacity="0.3" stroke="#1f78b4" stroke-width="3.0e-3" fill="#a6cee3"><rect height="3.0e-2" width="3.0000000000000027e-2" x="-0.765" y="-1.5e-2"/><rect height="3.0e-2" width="3.0000000000000027e-2" x="-0.715" y="-0.11952846326765364"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.665" y="-0.21948853110729405"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.615" y="-0.3105114688927061"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.5650000000000001" y="-0.3886191374661522"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.515" y="-0.4503978569087953"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.46499999999999997" y="-0.4931476007338057"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.41500000000000004" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.36499999999999994" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.3150000000000001" y="-0.4931476007338059"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.265" y="-0.4503978569087955"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.2150000000000002" y="-0.3886191374661524"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.16499999999999992" y="-0.3105114688927062"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="-0.11500000000000009" y="-0.21948853110729416"/><rect height="3.0e-2" width="3.0e-2" x="-6.500000000000004e-2" y="-0.11952846326765375"/><rect height="3.0e-2" width="3.0e-2" x="-1.5e-2" y="-1.500000000000011e-2"/><rect height="3.0e-2" width="3.0e-2" x="3.5000000000000156e-2" y="8.952846326765325e-2"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="8.499999999999998e-2" y="0.1894885311072937"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.1349999999999998" y="0.28051146889270595"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.18499999999999994" y="0.35861913746615204"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.235" y="0.42039785690879505"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.28500000000000003" y="0.46314760073380556"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.33499999999999963" y="0.4849999999999999"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.3849999999999999" y="0.485"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.43500000000000016" y="0.4631476007338056"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.485" y="0.4203978569087954"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.5349999999999998" y="0.35861913746615237"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.5850000000000001" y="0.28051146889270606"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.6349999999999999" y="0.18948853110729424"/><rect height="3.0e-2" width="3.0000000000000027e-2" x="0.6849999999999999" y="8.95284632676537e-2"/><rect height="3.0e-2" width="3.0000000000000027e-2" x="0.735" y="-1.4999999999999888e-2"/></g></svg>+<svg xmlns="http://www.w3.org/2000/svg" height="300.0" viewBox="-0.7865 -0.5365 1.573 1.073" width="439.7949673811743" xmlns:xlink="http://www.w3.org/1999/xlink"><g stroke-opacity="1.0" fill-opacity="1.0" stroke="#1f78b5" stroke-width="3.0e-3" fill="#a6cfe3"><rect height="3.0e-2" width="3.0000000000000027e-2" x="-0.765" y="-1.5e-2"/><rect height="3.0e-2" width="3.0000000000000027e-2" x="-0.715" y="-0.11952846326765364"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.665" y="-0.21948853110729405"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.615" y="-0.3105114688927061"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.5650000000000001" y="-0.3886191374661522"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.515" y="-0.4503978569087953"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.46499999999999997" y="-0.4931476007338057"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.41500000000000004" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.36499999999999994" y="-0.515"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.3150000000000001" y="-0.4931476007338059"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.265" y="-0.4503978569087955"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.2150000000000002" y="-0.3886191374661524"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="-0.16499999999999992" y="-0.3105114688927062"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="-0.11500000000000009" y="-0.21948853110729416"/><rect height="3.0e-2" width="3.0e-2" x="-6.500000000000004e-2" y="-0.11952846326765375"/><rect height="3.0e-2" width="3.0e-2" x="-1.5e-2" y="-1.500000000000011e-2"/><rect height="3.0e-2" width="3.0e-2" x="3.5000000000000156e-2" y="8.952846326765325e-2"/><rect height="3.0000000000000027e-2" width="3.0e-2" x="8.499999999999998e-2" y="0.1894885311072937"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.1349999999999998" y="0.28051146889270595"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.18499999999999994" y="0.35861913746615204"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.235" y="0.42039785690879505"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.28500000000000003" y="0.46314760073380556"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.33499999999999963" y="0.4849999999999999"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.3849999999999999" y="0.485"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.43500000000000016" y="0.4631476007338056"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.485" y="0.4203978569087954"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.5349999999999998" y="0.35861913746615237"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.5850000000000001" y="0.28051146889270606"/><rect height="3.0000000000000027e-2" width="3.0000000000000027e-2" x="0.6349999999999999" y="0.18948853110729424"/><rect height="3.0e-2" width="3.0000000000000027e-2" x="0.6849999999999999" y="8.95284632676537e-2"/><rect height="3.0e-2" width="3.0000000000000027e-2" x="0.735" y="-1.4999999999999888e-2"/></g></svg>
src/Chart.hs view
@@ -22,6 +22,8 @@ Annotation (..), annotationText, scaleAnn,+ scaleOpacAnn,+ colourAnn, padRect, -- * Styles@@ -59,6 +61,8 @@ simulHud, HudOptions (..), defaultHudOptions,+ scaleOpacHudOptions,+ colourHudOptions, defaultCanvas, runHudWith, runHud,@@ -182,11 +186,7 @@ -- -- Here's some data; three lists of points that will form a line: ----- >>> let xs = [[(0.0, 1.0), (1.0, 1.0), (2.0, 5.0)], [(0.0, 0.0), (3.2, 3.0)], [(0.5, 4.0), (0.5, 0)]] :: [[(Double, Double)]]--- >>> let ls = fmap (uncurry P) <$> xs------ >>> :t ls--- ls :: [[XY Double]]+-- >>> let xs = fmap (fmap (uncurry Point)) [[(0.0, 1.0), (1.0, 1.0), (2.0, 5.0)], [(0.0, 0.0), (3.2, 3.0)], [(0.5, 4.0), (0.5, 0)]] :: [[Point Double]] -- -- and an Annotation to describe representation of this data; three line styles with different colors and widths: --@@ -194,13 +194,13 @@ -- -- and this is enough to create a Chart. ----- >>> let lineChart = zipWith Chart anns ls--- >>> :t lineChart--- lineChart :: [Chart Double]+-- >>> let lineExample = mempty & (#chartList .~ zipWith Chart anns (fmap (fmap PointXY) xs)) & #hudOptions .~ defaultHudOptions & #svgOptions .~ defaultSvgOptions :: ChartSvg+-- >>> :t lineExample+-- lineExample :: ChartSvg -- -- Most charts will, in reality, be a list of charts such as this, and much of the library API is designed for this. ----- > writeChartSvgDefault "other/lines.svg" lineChart+-- > writeChartSvg "other/lines.svg" lineExample -- --  --
src/Chart/Bar.hs view
@@ -167,7 +167,7 @@ -- | A bar chart without hud trimmings. -- -- >>> bars defaultBarOptions (BarData [[1,2],[2,3]] Nothing Nothing)--- [Chart {annotation = RectA (RectStyle {borderSize = 2.0e-3, borderColor = RGBA 0.65 0.81 0.89 1.00, color = RGBA 0.65 0.81 0.89 1.00}), xys = [R 5.0e-2 0.45 0.0 1.0,R 1.05 1.4500000000000002 0.0 2.0]},Chart {annotation = RectA (RectStyle {borderSize = 2.0e-3, borderColor = RGBA 0.12 0.47 0.71 1.00, color = RGBA 0.12 0.47 0.71 1.00}), xys = [R 0.45 0.8500000000000001 0.0 2.0,R 1.4500000000000002 1.85 0.0 3.0]},Chart {annotation = BlankA, xys = [R -5.0e-2 1.9500000000000002 0.0 3.0]}]+-- [Chart {annotation = RectA (RectStyle {borderSize = 2.0e-3, borderColor = Colour 0.69 0.35 0.16 1.00, color = Colour 0.69 0.35 0.16 1.00}), xys = [R 5.0e-2 0.45 0.0 1.0,R 1.05 1.4500000000000002 0.0 2.0]},Chart {annotation = RectA (RectStyle {borderSize = 2.0e-3, borderColor = Colour 0.65 0.81 0.89 1.00, color = Colour 0.65 0.81 0.89 1.00}), xys = [R 0.45 0.8500000000000001 0.0 2.0,R 1.4500000000000002 1.85 0.0 3.0]},Chart {annotation = BlankA, xys = [R -5.0e-2 1.9500000000000002 0.0 3.0]}] bars :: BarOptions -> BarData -> [Chart Double] bars bo bd = zipWith (\o d -> Chart (RectA o) d) (bo ^. #barRectStyles) (fmap RectXY <$> barRects bo (bd ^. #barData)) <> [Chart BlankA [RectXY (Rect (x - (bo ^. #outerGap)) (z + (bo ^. #outerGap)) y w)]]
src/Chart/Examples.hs view
@@ -21,12 +21,10 @@ lglyphExample, glinesExample, compoundExample,- boundTextBugExample,+ textLocalExample, labelExample, legendExample, surfaceExample,- arrowgExample,- surfacegExample, rosenbrock, arcExample, arcFlagsExample,@@ -35,15 +33,14 @@ cubicExample, pathExample, vennExample,- problematic1,- problematic2,+ arrowExample, writeAllExamples, ) where import Chart import Control.Lens-import Data.List ((!!))+import qualified Data.List as List import qualified Data.Text as Text import NumHask.Prelude hiding (lines) @@ -59,7 +56,7 @@ hudOptionsExample :: ChartSvg hudOptionsExample = mempty- & #hudOptions .~ defaultHudOptions+ & #hudOptions .~ colourHudOptions dark defaultHudOptions & #chartList .~ [Chart BlankA [one]] -- | 'SvgOptions' example.@@ -88,21 +85,44 @@ ropts :: [RectStyle] ropts =- [ blob (fromRGB (palette !! 0) 0.4),- blob (fromRGB (palette !! 5) 0.4)+ [ blob (palette1 List.!! 1),+ blob (palette1 List.!! 2) ] -- | line example --+-- Example in cabal file+--+-- This 'lineExample' provides a bit more detail for testing huds.+--+-- Simplified example:+--+-- >>> :set -XOverloadedLabels+-- >>> import Chart+-- >>> let xs = fmap (fmap (uncurry Point)) [[(0.0, 1.0), (1.0, 1.0), (2.0, 5.0)], [(0.0, 0.0), (3.2, 3.0)], [(0.5, 4.0), (0.5, 0)]] :: [[Point Double]]+-- >>> xs+-- [[Point 0.0 1.0,Point 1.0 1.0,Point 2.0 5.0],[Point 0.0 0.0,Point 3.2 3.0],[Point 0.5 4.0,Point 0.5 0.0]]+--+-- >>> let anns = zipWith (\w c -> LineA (defaultLineStyle & #width .~ w & #color .~ c)) [0.015, 0.03, 0.01] palette1+-- >>> anns+-- [LineA (LineStyle {width = 1.5e-2, color = Colour 0.69 0.35 0.16 1.00, linecap = Nothing, linejoin = Nothing, dasharray = Nothing, dashoffset = Nothing}),LineA (LineStyle {width = 3.0e-2, color = Colour 0.65 0.81 0.89 1.00, linecap = Nothing, linejoin = Nothing, dasharray = Nothing, dashoffset = Nothing}),LineA (LineStyle {width = 1.0e-2, color = Colour 0.12 0.47 0.71 1.00, linecap = Nothing, linejoin = Nothing, dasharray = Nothing, dashoffset = Nothing})]+--+-- >>> let lineExample = mempty & (#chartList .~ zipWith Chart anns (fmap (fmap PointXY) xs)) & #hudOptions .~ defaultHudOptions & #svgOptions .~ defaultSvgOptions :: ChartSvg+-- >>> :t lineExample+-- lineExample :: ChartSvg+--+-- > writeChartSvg "other/line.svg" lineExample+-- --  lineExample :: ChartSvg lineExample = mempty+ & #svgOptions . #chartAspect .~ CanvasAspect 1.5 & #hudOptions .~ exampleLineHudOptions "Line Chart" (Just "An example from chart-svg")- (Just (legopts, zip (LineA <$> lopts) ["hockey", "line", "vertical"]))+ (Just (defaultLegendOptions, zip (LineA <$> lopts) ["hockey", "line", "vertical"])) & #chartList .~ zipWith (\s d -> Chart (LineA s) (fmap PointXY d)) lopts ls @@ -116,20 +136,11 @@ lopts :: [LineStyle] lopts =- [ defaultLineStyle & #color .~ (palette1 !! 0) & #width .~ 0.015,- defaultLineStyle & #color .~ (palette1 !! 1) & #width .~ 0.03,- defaultLineStyle & #color .~ (palette1 !! 5) & #width .~ 0.01+ [ defaultLineStyle & #color .~ (palette1 List.!! 0) & #width .~ 0.015,+ defaultLineStyle & #color .~ (palette1 List.!! 1) & #width .~ 0.03,+ defaultLineStyle & #color .~ (palette1 List.!! 2) & #width .~ 0.01 ] -legopts :: LegendOptions-legopts =- defaultLegendOptions- & #lsize .~ 0.2- & #ltext . #size .~ 0.25- & #innerPad .~ 0.05- & #lscale .~ 0.25- & #lplace .~ PlaceAbsolute (Point 0.5 -0.3)- exampleLineHudOptions :: Text -> Maybe Text -> Maybe (LegendOptions, [(Annotation, Text)]) -> HudOptions exampleLineHudOptions t1 t2 legends' = defaultHudOptions@@ -149,6 +160,7 @@ t2 ) & #hudLegend .~ legends'+ & #hudAxes %~ fmap (#axisTick . #tstyle .~ TickRound (FormatFixed (Just 1)) 8 TickExtend) -- | text example --@@ -157,8 +169,8 @@ textExample = mempty & #chartList .~ zipWith- Chart- (TextA (defaultTextStyle & (#size .~ (0.05 :: Double))) . (: []) . fst <$> ts)+ Chart + (TextA (defaultTextStyle & (#color .~ dark) & (#size .~ (0.05 :: Double))) . (: []) . fst <$> ts) ((: []) . PointXY . snd <$> ts) where ts :: [(Text, Point Double)]@@ -215,30 +227,30 @@ where (hc, cs) = barChart defaultBarOptions barDataExample --- | An example of how bounding box calculations for text is broken.+-- | A reminder that Text scale is at representation level, and so doesn't scale compared with other chart elements, such as a rectangle. ----- -boundTextBugExample :: ChartSvg-boundTextBugExample =+--  +textLocalExample :: ChartSvg+textLocalExample = mempty & #chartList .~ [ t1, t2,- Chart BlankA [R 0 0.1 -0.5 0.5],- Chart (RectA defaultRectStyle) [RectXY (padBox $ styleBox t1)],- Chart (RectA defaultRectStyle) [RectXY (padBox $ styleBox t2)]+ Chart (RectA rs) [RectXY (padBox $ styleBox t1)],+ Chart (RectA rs) [RectXY (padBox $ styleBox t2)] ] where+ rs = defaultRectStyle & #color %~ setOpac 0.1 t1 = Chart ( TextA- (defaultTextStyle & #anchor .~ AnchorStart & #hsize .~ 0.45 & #size .~ 0.08)+ (defaultTextStyle & #anchor .~ AnchorStart & #hsize .~ 0.5 & #size .~ 0.08) ["a pretty long piece of text"] ) [zero] t2 = Chart ( TextA- (defaultTextStyle & #anchor .~ AnchorStart & #hsize .~ 0.45 & #size .~ 0.08)+ (defaultTextStyle & #anchor .~ AnchorStart & #hsize .~ 0.5 & #size .~ 0.08) ["another pretty long piece of text"] ) [P 1 1]@@ -283,12 +295,11 @@ Chart ( TextA ( defaultTextStyle- & #translate ?~ Point 0 0.04 & #color %~ setOpac 0.2 ) [t] )- (PointXY <$> [p])+ (PointXY <$> [p + Point 0 0.2]) ) <$> lgdata gly =@@ -298,7 +309,7 @@ ( defaultGlyphStyle & #size .~ 0.01 & #borderSize .~ 0- & #color .~ black+ & #color .~ palette1 List.!! 2 ) ) (PointXY <$> [d])@@ -404,26 +415,26 @@ (QuadI (Point -1 2), Point 0 1), (ArcI (ArcInfo (Point 1 1) (-pi/6) False False), Point 0 0) ]- path' = Chart (PathA (defaultPathStyle & #color .~ setOpac 0.1 (palette1!!2) & #borderColor .~ Colour 0.2 0.8 0.4 0.3) (fst <$> ps)) (PointXY . snd <$> ps)+ path' = Chart (PathA (defaultPathStyle & #color .~ setOpac 0.1 (palette1 List.!! 2) & #borderColor .~ Colour 0.2 0.8 0.4 0.3) (fst <$> ps)) (PointXY . snd <$> ps) c0 = Chart (GlyphA defaultGlyphStyle) (PointXY . snd <$> ps) -- | ellipse example ----- (ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.5 1) (pi/3) True True))---+-- (ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.5 1) 0 True True)) -- --  ---ellipseExample :: ArcPosition Double -> ChartSvg-ellipseExample p@(ArcPosition p1 p2 _) =+ellipseExample :: ChartSvg+ellipseExample = mempty & #chartList .~ [ell, ellFull, c0, bbox, xradii, yradii] & #hudOptions .~ defaultHudOptions & #svgOptions %~ ((#outerPad .~ Nothing) . (#chartAspect .~ UnadjustedAspect)) where+ p@(ArcPosition p1 p2 _) = ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.5 1) (pi/3) True True) (ArcCentroid c r phi' ang0 angd) = arcCentroid p- ellFull = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . ellipse c r phi' . (\x -> 2 * pi * x / 100.0) <$> [0..100])- ell = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . ellipse c r phi' . (\x -> ang0 + angd * x / 100.0) <$> [0..100])+ ellFull = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1 List.!! 1)) (PointXY . ellipse c r phi' . (\x -> 2 * pi * x / 100.0) <$> [0..100])+ ell = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1 List.!! 1)) (PointXY . ellipse c r phi' . (\x -> ang0 + angd * x / 100.0) <$> [0..100]) c0 = Chart (GlyphA defaultGlyphStyle) (PointXY <$> [c,p1,p2]) bbox = Chart (RectA $ defaultRectStyle & #borderSize .~ 0.002 & #color .~ Colour 0.4 0.4 0.8 0.1 & #borderColor .~ Colour 0.5 0.5 0.5 1) [RectXY (arcBox p)] xradii = Chart (LineA $ defaultLineStyle & #color .~ Colour 0.9 0.2 0.02 1 & #width .~ 0.005 & #dasharray .~ Just [0.03, 0.01] & #linecap .~ Just LineCapRound) (PointXY <$> [ellipse c r phi' 0, ellipse c r phi' pi])@@ -431,23 +442,22 @@ -- | arc example ----- > arcExample (ArcPosition (Point 1.0 0.0) (Point 0.0 1.0) (ArcInfo (Point 1.0 0.5) 0 False True))--- --  ----- See also 'problematic2' for scaling issue when phi is non-zero.+-- There is a bug for rotated ellipses. See 'problematic2' for scaling issue when phi is non-zero. ---arcExample :: ArcPosition Double -> ChartSvg-arcExample p1 =+arcExample :: ChartSvg+arcExample = mempty & #chartList .~ [arc, ell, c0, bbox] & #hudOptions .~ defaultHudOptions & #svgOptions %~ ((#outerPad .~ Nothing) . (#chartAspect .~ FixedAspect 1)) where+ p1 = ArcPosition (Point 1.0 0.0) (Point 0.0 1.0) (ArcInfo (Point 1.0 0.5) 0 False True) ps = singletonArc p1 (ArcCentroid c r phi' ang0 angd) = arcCentroid p1- arc = Chart (PathA (defaultPathStyle & #color .~ setOpac 0.1 (palette1!!2) & #borderColor .~ transparent) (fst <$> ps)) (PointXY . snd <$> ps)- ell = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . ellipse c r phi' . (\x -> ang0 + angd * x / 100.0) <$> [0..100])+ arc = Chart (PathA (defaultPathStyle & #color .~ setOpac 0.1 (palette1 List.!! 2) & #borderColor .~ transparent) (fst <$> ps)) (PointXY . snd <$> ps)+ ell = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1 List.!! 1)) (PointXY . ellipse c r phi' . (\x -> ang0 + angd * x / 100.0) <$> [0..100]) c0 = Chart (GlyphA defaultGlyphStyle) [PointXY c] bbox = Chart (RectA $ defaultRectStyle & #borderSize .~ 0.002 & #color .~ Colour 0.4 0.4 0.8 0.1 & #borderColor .~ Colour 0.5 0.5 0.5 1) [RectXY (arcBox p1)] @@ -469,22 +479,22 @@ Chart (TextA (defaultTextStyle & #size .~ 0.4 & #rotation .~ Just (pi/2)) ["False"]) [P 0.1 0.5]] ], vert 0.02- [checkFlags False True (Colour 1 0 1 0.3) & view #chartList,- checkFlags False False (Colour 0 1 0 0.3) & view #chartList,+ [checkFlags False True (setOpac 0.3 dark) & view #chartList,+ checkFlags False False (setOpac 0.3 dark) & view #chartList, [Chart BlankA [R -1 2 -0.25 0.25], Chart (TextA (defaultTextStyle & #size .~ 0.4) ["False"]) [P 0.5 -0.1]] ], vert 0.02- [checkFlags True True (Colour 0 0 1 0.3) & view #chartList,- checkFlags True False (Colour 1 0 0 0.3) & view #chartList,+ [checkFlags True True (setOpac 0.3 dark) & view #chartList,+ checkFlags True False (setOpac 0.3 dark) & view #chartList, [Chart BlankA [R -1 2 -0.25 0.25], Chart (TextA (defaultTextStyle & #size .~ 0.4) ["True"]) [P 0.5 -0.1]] ] ],- [Chart BlankA [R 0 9 0 0.75],- Chart (TextA (defaultTextStyle & #size .~ 0.6) ["Large"]) [P 5.5 0.2]]- ] &- #hudOptions .~ defaultHudOptions &+ [ Chart BlankA [R 0 9 -2.75 -3.25],+ Chart (TextA (defaultTextStyle & #size .~ 0.6) ["Large"]) [P 5.5 -3.0]]+ ] &+ #hudOptions .~ mempty & #svgOptions %~ ((#outerPad .~ Nothing) . (#chartAspect .~ UnadjustedAspect)) checkFlags :: Bool -> Bool -> Colour -> ChartSvg@@ -498,79 +508,60 @@ p1 = ArcPosition (Point 0.0 1.0) (Point 1.0 0.0) (ArcInfo (Point 1.0 1.0) 0 large sweep) ps1 = singletonPie' c p1 (ArcCentroid c' r phi' ang0 angd) = arcCentroid p1- arc1 = Chart (PathA (defaultPathStyle & #color .~ co & #borderColor .~ Colour 0 0 0 0.5) (fst <$> ps1)) (PointXY . snd <$> ps1)- c1 = Chart (LineA $ defaultLineStyle & #width .~ 0.02 & #color .~ Colour 0 0 0 0.2) (PointXY . ellipse (Point 1.0 1.0) (Point 1.0 1.0) 0 . (\x -> 0 + 2 * pi * x / 100.0) <$> [0..100])- c2 = Chart (LineA $ defaultLineStyle & #width .~ 0.02 & #color .~ Colour 0 0 0 0.2) (PointXY . ellipse (Point 0.0 0.0) (Point 1.0 1.0) 0 . (\x -> 0 + 2 * pi * x / 100.0) <$> [0..100])+ arc1 = Chart (PathA (defaultPathStyle & #color .~ co & #borderColor .~ setOpac 0.5 dark) (fst <$> ps1)) (PointXY . snd <$> ps1)+ c1 = Chart (LineA $ defaultLineStyle & #width .~ 0.02 & #color .~ setOpac 0.2 dark) (PointXY . ellipse (Point 1.0 1.0) (Point 1.0 1.0) 0 . (\x -> 0 + 2 * pi * x / 100.0) <$> [0..100])+ c2 = Chart (LineA $ defaultLineStyle & #width .~ 0.02 & #color .~ setOpac 0.2 dark) (PointXY . ellipse (Point 0.0 0.0) (Point 1.0 1.0) 0 . (\x -> 0 + 2 * pi * x / 100.0) <$> [0..100]) ell = Chart (LineA $ defaultLineStyle & #width .~ 0.05 & #color .~ setOpac 0.5 co) (PointXY . ellipse c' r phi' . (\x -> ang0 + angd * x / 100.0) <$> [0..100]) -- | quad example ----- > quadExample (QuadPosition (Point 0 0) (Point 1 1) (Point 2 -1))--- -- -quadExample :: QuadPosition Double -> ChartSvg-quadExample p@(QuadPosition start end control) =+quadExample :: ChartSvg+quadExample = mempty & #chartList .~ [path', curve, c0, bbox] & #hudOptions .~ defaultHudOptions & #svgOptions %~ ((#outerPad ?~ 0.05) . (#chartAspect .~ ChartAspect)) where+ p@(QuadPosition start end control) = QuadPosition (Point 0 0) (Point 1 1) (Point 2 -1) ps = singletonQuad p- path' = Chart (PathA (defaultPathStyle & #color .~ setOpac 0.1 (palette1!!2) & #borderColor .~ transparent) (fst <$> ps)) (PointXY . snd <$> ps)- curve = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . quadBezier p . (/100.0) <$> [0..100])+ path' = Chart (PathA (defaultPathStyle & #color .~ setOpac 0.1 (palette1 List.!! 2) & #borderColor .~ transparent) (fst <$> ps)) (PointXY . snd <$> ps)+ curve = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1 List.!! 1)) (PointXY . quadBezier p . (/100.0) <$> [0..100]) c0 = Chart (GlyphA defaultGlyphStyle) (PointXY <$> [start, end, control]) bbox = Chart (RectA $ defaultRectStyle & #borderSize .~ 0.002 & #color .~ Colour 0.4 0.4 0.8 0.1 & #borderColor .~ Colour 0.5 0.5 0.5 1) [RectXY (quadBox p)] -- | cubic example ----- > cubicExample (CubicPosition (Point 0 0) (Point 1 1) (Point 1 -1) (Point 0 2))--- -- -cubicExample :: CubicPosition Double -> ChartSvg-cubicExample p@(CubicPosition start end control1 control2) =+cubicExample :: ChartSvg+cubicExample = mempty & #chartList .~ [path', curve, c0, bbox] &- #hudOptions .~- ( defaultHudOptions &- #hudTitles .~- [ defaultTitle pathText &- #place .~ PlaceBottom &- #style . #size .~ 0.06- ] &- #hudAxes %~ fmap (#axisTick . #tstyle .~- TickRound (FormatComma (Just 2)) 8 NoTickExtend)- ) &+ #hudOptions .~ mempty & #svgOptions %~ ((#outerPad ?~ 0.02) . (#chartAspect .~ ChartAspect)) where+ p@(CubicPosition start end control1 control2) = CubicPosition (Point 0 0) (Point 1 1) (Point 1 0) (Point 0 1) ps = singletonCubic p- path' = Chart (PathA (defaultPathStyle & #color .~ setOpac 0.1 (palette1!!2) & #borderColor .~ transparent) (fst <$> ps)) (PointXY . snd <$> ps)- curve = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . cubicBezier p . (/100.0) <$> [0..100])+ path' = Chart (PathA (defaultPathStyle & #color .~ setOpac 0.1 (palette1 List.!! 2) & #borderColor .~ transparent) (fst <$> ps)) (PointXY . snd <$> ps)+ curve = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1 List.!! 1)) (PointXY . cubicBezier p . (/100.0) <$> [0..100]) c0 = Chart (GlyphA defaultGlyphStyle) (PointXY <$> [start, end, control1, control2, cubicBezier p 0.8]) bbox = Chart (RectA $ defaultRectStyle & #borderSize .~ 0.002 & #color .~ Colour 0.4 0.4 0.8 0.1 & #borderColor .~ Colour 0.5 0.5 0.5 1) [RectXY (cubicBox p)]- pathText = toPathAbsolutes ps --- | Create a chart across a surface using a function.------ > writeChartSvg "other/surface.svg" $ surfaceExample "rosenbrock" (Point 100 100) one (fst . first (-1.0 *) . second (-1.0 .*) . rosenbrock 1 10)+-- | The common way to create a surface chart is usually a grid over a function. -- --  ---surfaceExample ::- -- | Legend title- Text ->- -- | Surface grid- Point Int ->- -- | Surface range- Rect Double ->- -- | Surface function- (Point Double -> Double) ->- ChartSvg-surfaceExample t grain r f =+surfaceExample :: ChartSvg+surfaceExample = mempty & #hudList .~ hs & #chartList .~ cs & #svgOptions .~ (defaultSvgOptions & #cssOptions .~ UseCssCrisp) where+ t = "rosenbrock"+ grain = Point 20 20+ r = one+ f = fst . bimap (-1.0 *) (-1.0 .*) . rosenbrock 1 10 (cs, hs) = surfacefl f (defaultSurfaceOptions &@@ -580,67 +571,35 @@ (defaultSurfaceLegendOptions t & #sloStyle . #surfaceColors .~ take 6 palette1) --- | Create an arrow chart across a surface using a function.------ Typically used to represent a gradient.------ > writeChartSvg "other/arrowg.svg" $ arrowgExample (Point 20 20) one (fst . first (-1.0 *) . second (-1.0 .*) . rosenbrock 1 10)------ +-- | arrow example --+-- Which happens to be the gradient of the surface example. ---arrowgExample ::- -- | Surface grid- Point Int ->- -- | Surface range- Rect Double ->- -- | Surface gradient function- (Point Double -> Point Double) ->- ChartSvg-arrowgExample grain r f =+-- +arrowExample :: ChartSvg+arrowExample = mempty & #hudOptions .~ (defaultHudOptions & #hudAxes %~ fmap (#axisTick . #ltick .~ Nothing)) & #chartList .~ ((\p -> chart (tail . f $ p) (angle . f $ p) p) <$> ps) &- #svgOptions .~ (defaultSvgOptions & #cssOptions .~ UseCssCrisp)+ #svgOptions .~ defaultSvgOptions where- ps = grid MidPos r grain+ f = snd . bimap (-1.0 *) (-1.0 .*) . rosenbrock 1 10+ ps = grid MidPos (one :: Rect Double) (Point 10 10 :: Point Int) :: [Point Double] arrow = PathGlyph "M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" gs s r' = defaultGlyphStyle & #borderSize .~ 0.05 & #size .~ s &- #borderColor .~ black &+ #borderColor .~ dark & #rotation .~ Just r' & #shape .~ arrow chart s r' p = Chart (GlyphA (gs s r')) [PointXY p] tail :: Point Double -> Double- tail = max 0.005 . min 0.02 . (*0.01) . (/avmag) . norm+ tail = max 0.05 . min 0.02 . (*0.01) . (/avmag) . norm avmag = sum (norm . f <$> ps) / fromIntegral (length ps) --- | A surface chart with gradient arrows.------ > writeChartSvg "other/surfaceg.svg" $ surfacegExample "rosenbrock" (Point 100 100) (Point 20 20) one (first (-1.0 *) . second (-1.0 .*) . rosenbrock 1 10)------ ----surfacegExample ::- -- | Title- Text ->- -- | Surface grid- Point Int ->- -- | Gradient grid- Point Int ->- -- | Surface range- Rect Double ->- -- | Surface + gradient function- (Point Double -> (Double, Point Double)) ->- ChartSvg-surfacegExample t grainS grainG r f =- surfaceExample t grainS r (fst . f) <>- arrowgExample grainG r (snd . f)- -- | function for testing -- -- > f(x,y) = (a-x)^2 + b * (y - x^2)^2@@ -651,105 +610,10 @@ rosenbrock :: Double -> Double -> Point Double -> (Double, Point Double) rosenbrock a b (Point x y) = (a^2 - 2*a*x + x^2 + b * y^2 - b * 2 * y * x^2 + b * x^4, Point (-2*a + 2 * x - b * 4 * y * x + 4 * b * x^3) (2 * b * y - 2 * b * x^2)) --- | This was a problem chart that helped me get the aspect scaling of curves right.------ The answer was that radii of an Arc needs to be transformed by scaling changes but not translation ones (radii are relative to existing points which are already being translated).------ The problem can be isolated to RunHud ...------ >>> let cs = [toPathChart defaultPathStyle $ singletonArc $ ArcPosition (Point 0 1) (Point 1 0) (ArcInfo (Point 1 1) 0 False False)]--- >>> runHud (aspect 3) [canvas $ blob (Colour 0.2 0.1 0.7 0.1)] cs--- [Chart {annotation = RectA (RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.20 0.10 0.70 0.10}), xys = [R -1.5 1.5000000000000002 -0.5 0.5]},Chart {annotation = PathA (PathStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}) [StartI,ArcI (ArcInfo {radii = Point 3.0 1.0, phi = 0.0, large = False, clockwise = False})], xys = [P -1.5 0.5,P 1.5 -0.5]}]------ ------ Incorrect scaling of an Arc was occuring on x-axis gaps, but not with gapless x-axis elements, titles or any y axis variations.------ > problematic1 (FixedAspect 1) (ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.0 0.5) (0) False True)) & #hudOptions .~ (mempty & #hudAxes .~ [defaultAxisOptions & #place .~ PlaceTop & #adjust .~ Nothing & #axisBar .~ Nothing & #axisTick . #ltick .~ Nothing & #axisTick . #tstyle .~ TickRound (FormatComma (Just 2)) 2 NoTickExtend & #axisTick . #ttick .~ Nothing & #axisTick . #gtick .~ Just (defaultGlyphTick, 0.2), defaultAxisOptions & #place .~ PlaceRight & #adjust .~ Nothing & #axisBar .~ Nothing & #axisTick . #ltick .~ Nothing & #axisTick . #tstyle .~ TickRound (FormatComma (Just 2)) 2 NoTickExtend & #axisTick . #ttick .~ Nothing & #axisTick . #gtick .~ Just (defaultGlyphTick, 0.2)])------ Again isolating to runHud ...------ > let cs = [toPathChart defaultPathStyle $ singletonArc $ (ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.0 0.5) (0) False True))]--- > let dbox = padBox $ dataBoxes cs--- > dbox--- Rect -0.6180339784260676 1.0 -5.901699179399067e-2 1.0------ > let ho = (mempty & #hudAxes .~ [defaultAxisOptions & #place .~ PlaceBottom & #adjust .~ Nothing & #axisBar .~ Nothing & #axisTick . #ltick .~ Nothing & #axisTick . #tstyle .~ TickRound (FormatComma (Just 2)) 2 NoTickExtend & #axisTick . #ttick .~ Nothing & #axisTick . #gtick .~ Just (defaultGlyphTick, 0.2), defaultAxisOptions & #place .~ PlaceRight & #adjust .~ Nothing & #axisBar .~ Nothing & #axisTick . #ltick .~ Nothing & #axisTick . #tstyle .~ TickRound (FormatComma (Just 2)) 2 NoTickExtend & #axisTick . #ttick .~ Nothing & #axisTick . #gtick .~ Just (defaultGlyphTick, 0.2)])--- > let (hs',cs') = makeHud dbox ho--- > let cs1 = runHud dbox hs' cs--- > cs1------ > [Chart {annotation = GlyphA (GlyphStyle {size = 3.0e-2, color = RGBA 0.50 0.50 0.50 1.00, borderColor = RGBA 0.50 0.50 0.50 1.00, borderSize = 5.0e-3, shape = VLineGlyph 5.0e-3, rotation = Just 1.5707963267948966, translate = Nothing}), xys = [P 1.2049999999999998 0.0,P 1.2049999999999998 0.5,P 1.2049999999999998 1.0]},Chart {annotation = GlyphA (GlyphStyle {size = 3.0e-2, color = RGBA 0.50 0.50 0.50 1.00, borderColor = RGBA 0.50 0.50 0.50 1.00, borderSize = 5.0e-3, shape = VLineGlyph 5.0e-3, rotation = Nothing, translate = Nothing}), xys = [P 0.0 -0.2640169917939907,P 1.0 -0.2640169917939907]},Chart {annotation = PathA (PathStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}) [StartI,ArcI (ArcInfo {radii = Point 1.0 0.5, phi = 0.0, large = False, clockwise = True})], xys = [P 1.0 0.0,P 0.0 1.0]}]------ The output from runHud looks ok, so the problem was isolated to projectXYsWith ...------ phi was then causing aspect scaling problems. Unadjusted was good:------ > writeChartSvg "other/t1.svg" $ problematic1 (UnadjustedAspect) (ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.0 0.5) (-pi/4) False True)) & #hudOptions .~ defaultHudOptions------ And then I realised that the x and y radii of the ellipse was __firstly__ rotated in the XY-space and only then should be subject to scaling...-problematic1 :: ChartAspect -> ArcPosition Double -> ChartSvg-problematic1 ca p =- mempty &- #chartList .~ [arc, ell, pts, bbox] &- #hudOptions .~ defaultHudOptions &- #svgOptions .~ (defaultSvgOptions & #chartAspect .~ ca)- where- -- p = ArcPosition (Point 0 1) (Point 1 0) (ArcInfo (Point 1 1) 0 False False)- (ArcCentroid c r phi' ang0 angd) = arcCentroid p- ps = singletonArc p- arc = toPathChart defaultPathStyle ps- ell = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . ellipse c r phi' . (\x -> ang0 + angd * x / 10.0) <$> [0..10])- pts = Chart (GlyphA defaultGlyphStyle) (fmap PointXY [c, p ^. #posStart, p ^. #posEnd])- bbox = Chart (RectA $ defaultRectStyle & #borderSize .~ 0.002 & #color .~ Colour 0.4 0.4 0.8 0.1 & #borderColor .~ Colour 0.5 0.5 0.5 1) [RectXY (arcBox p)]---- | FIXME: A guesstimate for arc scaling------ In a chart-svg projection (See 'projectOnP' say), points on the ellipse scale, but radii and angles do not, and not sure about the centroid.------ This causes distortion for chart-svg re-scaling.------ This is a chart of a guess for values for (aspect 2)------ > let p = ArcPosition (Point 0 0) (Point 1 0) (ArcInfo (Point 1 2) (pi/6) True True)--- > let guess = ArcCentroid (Point -0.2864867185179476 1.6092991486979669) (Point 1.3266801807145205 3.0142082605509395) 1.0962340928888052 -2.8 -5.5------ -problematic2 :: ArcPosition Double -> ArcCentroid Double -> ChartSvg-problematic2 p@(ArcPosition p1 p2 _) (ArcCentroid gc gr gphi gang0 gangd)=- mempty &- #chartList .~ [ellGuess] <> projectXYsWith asp one [c0, xradii, yradii, dir0, dir1, ell, ellFull, rtxt, gs] &- #hudOptions .~ defaultHudOptions &- #svgOptions %~ ((#outerPad .~ Nothing) . (#chartAspect .~ UnadjustedAspect))- where- asp = aspect 2- (ArcCentroid c r a ang0 angd) = arcCentroid p- ang1 = ang0+angd- ax = c+_x r .* ray a- ay = c+_y r .* ray (a + pi/2)- ellFull = Chart (LineA $ defaultLineStyle & #width .~ 0.002 & #color .~ (palette1!!1)) (PointXY . ellipse c r a . (\x -> 2 * pi * x / 100.0) <$> [0..100])- ell = Chart (LineA $ defaultLineStyle & #width .~ 0.04 & #color .~ setOpac 0.3 (palette1!!2)) (PointXY . ellipse c r a . (\x -> ang0 + (ang1 - ang0) * x / 100.0) <$> [0..100])- ellGuess = Chart (LineA $ defaultLineStyle & #width .~ 0.03 & #color .~ setOpac 0.4 (palette1!!4)) (PointXY . ellipse gc gr gphi . (\x -> gang0 + gangd * x / 100.0) <$> [0..100])- c0 = Chart (GlyphA defaultGlyphStyle) (PointXY <$> [c,p1,p2,ax,ay])- gs = Chart (GlyphA $ defaultGlyphStyle & #shape .~ CircleGlyph & #size .~ 0.05) (PointXY <$> [ellipse c r a 0.472, ellipse c r a (0.472 + pi/2)])- xradii = Chart (LineA $ defaultLineStyle & #color .~ Colour 0.9 0.2 0.02 1 & #width .~ 0.005 & #dasharray .~ Just [0.03, 0.01] & #linecap .~ Just LineCapRound) (PointXY <$> [c, ax])- yradii = Chart (LineA $ defaultLineStyle & #color .~ Colour 0.9 0.8 0.02 1 & #width .~ 0.005 & #dasharray .~ Just [0.03, 0.01] & #linecap .~ Just LineCapRound) (PointXY <$> [c, ay])- dir0 = Chart (LineA $ defaultLineStyle & #color .~ Colour 0.2 0.9 0.8 1 & #width .~ 0.005 & #dasharray .~ Just [0.03, 0.01] & #linecap .~ Just LineCapRound) (PointXY <$> [c, p1])- dir1 = Chart (LineA $ defaultLineStyle & #color .~ Colour 0.2 0.2 0.9 1 & #width .~ 0.005 & #dasharray .~ Just [0.03, 0.01] & #linecap .~ Just LineCapRound) (PointXY <$> [c, p2])- rtxt = Chart (TextA defaultTextStyle ((\(Point x y) -> fixed (Just 3) x <> "," <> fixed (Just 3) y) <$> [r])) [P 0 2.5, P 0 2]- -- | Run this to refresh haddock example SVGs. writeAllExamples :: IO () writeAllExamples = do- -- Example in cabal file- let xs = [[(0.0, 1.0), (1.0, 1.0), (2.0, 5.0)], [(0.0, 0.0), (3.2, 3.0)], [(0.5, 4.0), (0.5, 0)]] :: [[(Double, Double)]]- let ls = fmap (PointXY . uncurry Point) <$> xs- let anns = zipWith (\w c -> LineA (defaultLineStyle & #width .~ w & #color .~ c)) [0.015, 0.03, 0.01] palette1- let lineChart = zipWith Chart anns ls- writeChartSvgDefault "other/lines.svg" lineChart- writeChartSvgHud "other/lineshud.svg" lineChart-- -- charts in Chart.Types+ -- charts in Chart docs writeChartSvg "other/unit.svg" unitExample writeChartSvg "other/rect.svg" rectExample writeChartSvg "other/text.svg" textExample@@ -758,41 +622,24 @@ writeChartSvg "other/svgoptions.svg" svgOptionsExample writeChartSvg "other/hudoptions.svg" hudOptionsExample writeChartSvg "other/legend.svg" legendExample- -- charts in Chart.Bar+ -- charts in Chart.Bar docs writeChartSvg "other/bar.svg" barExample- -- extra Charts in Chart.Example+ -- charts in Chart.Surface docs+ writeChartSvg "other/surface.svg" surfaceExample+ -- extra Charts writeChartSvg "other/wave.svg" waveExample writeChartSvg "other/lglyph.svg" lglyphExample writeChartSvg "other/glines.svg" glinesExample writeChartSvg "other/compound.svg" compoundExample- writeChartSvg "other/boundTextBug.svg" boundTextBugExample+ writeChartSvg "other/textlocal.svg" textLocalExample writeChartSvg "other/label.svg" labelExample writeChartSvg "other/venn.svg" vennExample writeChartSvg "other/path.svg" pathExample- writeChartSvg "other/arc.svg" $- arcExample (ArcPosition (Point 1.0 0.0) (Point 0.0 1.0)- (ArcInfo (Point 1.0 0.5) (-pi/3) False True))+ writeChartSvg "other/arc.svg" arcExample writeChartSvg "other/arcflags.svg" arcFlagsExample- writeChartSvg "other/ellipse.svg" $ ellipseExample- (ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.5 1) (pi/3) True True))- writeChartSvg "other/quad.svg" $- quadExample (QuadPosition (Point 0 0) (Point 1 1) (Point 2 -1))- writeChartSvg "other/cubic.svg" $- cubicExample (CubicPosition (Point 0 0) (Point 1 1) (Point 1 0) (Point 0 1))- writeChartSvg "other/surface.svg" $- surfaceExample "rosenbrock" (Point 100 100) one- (fst . bimap (-1.0 *) (-1.0 .*) . rosenbrock 1 10)- writeChartSvg "other/arrowg.svg" $- arrowgExample (Point 20 20) one- (snd . bimap (-1.0 *) (-1.0 .*) . rosenbrock 1 10)- writeChartSvg "other/surfaceg.svg" $- surfacegExample "rosenbrock" (Point 100 100) (Point 20 20) one- (bimap (-1.0 *) (-1.0 .*) . rosenbrock 1 10)-- -- problematic charts- writeChartSvg "other/problematic1.svg" $- problematic1 (FixedAspect 2) (ArcPosition (Point 0 1) (Point 1 0) (ArcInfo (Point 1 1) 0 False False))- writeChartSvg "other/problematic2.svg" $- problematic2 (ArcPosition (Point 0 0) (Point 1 0) (ArcInfo (Point 1 2) (pi/6) True True)) (ArcCentroid (Point -0.2864867185179476 1.6092991486979669) (Point 1.3266801807145205 3.0142082605509395) 1.0962340928888052 -2.8 -5.5)+ writeChartSvg "other/ellipse.svg" ellipseExample+ writeChartSvg "other/quad.svg" quadExample+ writeChartSvg "other/cubic.svg" cubicExample+ writeChartSvg "other/arrow.svg" arrowExample putStrLn ("ok" :: Text)
src/Chart/Reanimate.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE OverloadedLabels #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RebindableSyntax #-}@@ -7,142 +8,127 @@ -- | Integration of reanimate and chart-svg module Chart.Reanimate- ( chartSvgTree,- chartSvgTreeDef,- chartSvgTrees,- chartSvgTreesDef,- writeChartSvgTree,+ ( ReanimateConfig(..),+ defaultReanimateConfig,+ reanimChartSvg,+ animChartSvg,+ chartReanimate,+ groupTreeA, tree, toPixelRGBA8,+ daText,+ fromFile,+ translateDA,+ scaleDA, ) where -import Chart as C hiding (transform, Line)+import Chart as C hiding (transform, Line, renderChartsWith) import Codec.Picture.Types import Control.Lens hiding (transform) import qualified Data.Attoparsec.Text as A-import Graphics.SvgTree.PathParser-import Graphics.SvgTree.Types as SvgTree hiding (Point, Text) import Linear.V2 import NumHask.Prelude hiding (fold)-import qualified Graphics.SvgTree.CssTypes as Css-import qualified Graphics.SvgTree as SvgTree-import Reanimate-import NumHask.Space.Types (width)-import Graphics.SvgTree.Printer (ppDocument)+import Reanimate as Re+import qualified Graphics.SvgTree.PathParser as Svg+import Graphics.SvgTree as Svg hiding (Text) --- | Render a 'ChartSvg' to a 'Tree'------ Alters the reanimate default viewbox of 16:9, and simplifies the SVG.-chartSvgTree :: ChartSvg -> Tree-chartSvgTree cs = simplify . withViewBox vb . mkGroup $ ts- where- (ts, r, _) = chartSvgTrees cs- (Rect x z y w) = r- vb = (x, -y, z-x, w-y)+data ReanimateConfig = ReanimateConfig+ { duration :: Double,+ background :: Maybe Text,+ globalFontFamily :: Maybe [Text],+ globalFontStyle :: Maybe Svg.FontStyle,+ globalAlignment :: Svg.Alignment+ } deriving (Eq, Show, Generic) --- | Render a 'ChartSvg' to a 'Tree' with the default viewbox-chartSvgTreeDef :: ChartSvg -> Tree-chartSvgTreeDef = simplify . mkGroup . chartSvgTreesDef+defaultReanimateConfig :: ReanimateConfig+defaultReanimateConfig = ReanimateConfig 5 (Just "black") (Just ["Arial", "Helvetica", "sans-serif"]) (Just FontStyleNormal) AlignxMinYMin --- | Render a 'ChartSvg' to 'Tree's, the fitted chart viewbox, and the suggested SVG dimensions----chartSvgTrees :: ChartSvg -> ([Tree], Rect Double, Point Double)-chartSvgTrees cs = (ts, rect', size')- where- so = view #svgOptions cs- ho = view #hudOptions cs- hl = view #hudList cs- cl = view #chartList cs- penult = case view #chartAspect so of- FixedAspect _ -> styleBoxesS cl- CanvasAspect _ -> dataBoxesS cl- ChartAspect -> styleBoxesS cl- UnadjustedAspect -> dataBoxesS cl- clAspect = cl &- runHud penult [chartAspectHud (so ^. #chartAspect)] &- maybe id (\x -> frameChart x (fromMaybe 0 (view #innerPad so)))- (view #chartFrame so)- (hlExtra, clExtra) = makeHud (padBox $ dataBoxes clAspect) ho- clAll = clAspect <> clExtra- hlAll = hl <> hlExtra- ts = fmap (SvgTree.cssApply (cssRules (view #cssOptions so)) . tree)- (runHud (initialCanvas (so ^. #chartAspect) clAll) hlAll clAll)- rect' = styleBoxesS clAll & maybe id padRect (view #outerPad so)- Point w h = NumHask.Space.Types.width rect'- size' = Point (view #svgHeight so/h*w) (view #svgHeight so)+reanimChartSvg :: ReanimateConfig -> (Double -> ChartSvg) -> IO ()+reanimChartSvg cfg cs =+ reanimate $ animChartSvg cfg cs --- | Render a 'ChartSvg' to 'Tree's at the standard reanimate viewbox----chartSvgTreesDef :: ChartSvg -> [Tree]-chartSvgTreesDef cs = ts- where- so = view #svgOptions cs- ho = view #hudOptions cs- hl = view #hudList cs- cl = view #chartList cs- clAspect = projectXYs (Rect (-8.0) 8.0 (-4.5) 4.5) cl- (hlExtra, clExtra) = makeHud (padBox $ dataBoxes clAspect) ho- clAll = clAspect <> clExtra- hlAll = hl <> hlExtra- ts = fmap (SvgTree.cssApply (cssRules (view #cssOptions so)) . tree)- (runHud (initialCanvas (so ^. #chartAspect) clAll) hlAll clAll)+animChartSvg :: ReanimateConfig -> (Double -> ChartSvg) -> Animation+animChartSvg cfg cs =+ mkAnimation (view #duration cfg) $ groupTreeA cfg cs --- | render Charts to a Document using the supplied size and viewbox.-renderToDocument :: CssOptions -> Point Double -> Rect Double -> [Tree] -> Document-renderToDocument csso (Point w' h') vb ts =- Document- ((\(Rect x z y w) -> Just (x, - w, z - x, w - y)) vb)- (Just (Num w'))- (Just (Num h'))- (SvgTree.cssApply (cssRules csso) <$> ts)- (unpack "")- ""- (PreserveAspectRatio False AlignNone Nothing)+globalAtts :: ReanimateConfig -> Svg.DrawAttributes+globalAtts cfg =+ mempty &+ maybe id (\x -> fontFamily .~ Last (Just (fmap unpack x)))+ (view #globalFontFamily cfg) .+ maybe id (\x -> fontStyle .~ Last (Just x))+ (view #globalFontStyle cfg) --- | write a 'ChartSvg' to a file via conversion to a reanimate 'Tree' structure.-writeChartSvgTree :: FilePath -> ChartSvg -> IO ()-writeChartSvgTree fp cs = writeFile fp . pack . ppDocument $ doc- where- doc = renderToDocument (view (#svgOptions . #cssOptions) cs) size' rect' ts'- (ts', rect', size') = chartSvgTrees cs+data ChartReanimate = ChartReanimate { trees :: [Tree], box :: Rect Double, size :: C.Point Double} deriving (Eq, Show, Generic) -cssRules :: CssOptions -> [Css.CssRule]-cssRules UseCssCrisp = [cssCrisp']-cssRules UseGeometricPrecision = [cssGeometricPrecision]-cssRules NoCssOptions = []+-- | create a Tree maker from a duration, and a chartsvg maker.+groupTreeA :: ReanimateConfig -> (Double -> ChartSvg) -> Double -> Tree+groupTreeA cfg cs x =+ reCss (cs x & view (#svgOptions . #cssOptions)) $+ mkGroup $ (mkBackground . unpack <$> maybeToList (view #background cfg)) <>+ [ (\cr ->+ let (Rect x z y w) =+ view #box cr in+ withViewBox' (x,y,z-x,w-y)+ (PreserveAspectRatio False (view #globalAlignment cfg) Nothing) $+ flipYAxis $+ groupTrees (globalAtts cfg) $ view #trees cr) $+ chartReanimate+ (cs x)+ ] --- | crisp edges css-cssGeometricPrecision :: Css.CssRule-cssGeometricPrecision = Css.CssRule [] [Css.CssDeclaration "shape-rendering" [[Css.CssString "geometricPrecision"]]]+reCss :: CssOptions -> (Tree -> Tree)+reCss NoCssOptions = id+reCss UseCssCrisp = Svg.cssApply (Svg.cssRulesOfText "* { shape-rendering: crispEdges; }")+reCss UseGeometricPrecision = Svg.cssApply (Svg.cssRulesOfText "* { shape-rendering: geometricPrecision; }") -cssCrisp' :: Css.CssRule-cssCrisp' = Css.CssRule [] [Css.CssDeclaration "shape-rendering" [[Css.CssString "crispEdges"]]]+withViewBox' :: (Double, Double, Double, Double) -> Svg.PreserveAspectRatio -> Tree -> Tree+withViewBox' vbox par child = Re.translate (-screenWidth/2) (-screenHeight/2) $+ svgTree Document+ { _documentViewBox = Just vbox+ , _documentWidth = Just (Num screenWidth)+ , _documentHeight = Just (Num screenHeight)+ , _documentElements = [child]+ , _documentDescription = ""+ , _documentLocation = ""+ , _documentAspectRatio = par+ } +-- | Render a 'ChartSvg' to 'Tree's, the fitted chart viewbox, and the suggested SVG dimensions+--+chartReanimate :: ChartSvg -> ChartReanimate+chartReanimate cs = ChartReanimate ts rect' size'+ where+ (cl'', rect', size') = renderToCRS so cl'+ so = view #svgOptions cs+ cl' = renderToCharts cs+ ts = tree <$> cl''+ -- | Rectange svg treeRect :: Rect Double -> Tree treeRect a = RectangleTree $ rectSvg a defaultSvg -- | Text svg-treeText :: TextStyle -> Text -> Point Double -> Tree+treeText :: TextStyle -> Text -> C.Point Double -> Tree treeText s t p = TextTree Nothing (textAt (pointSvg p) t) & maybe id (\x -> drawAttributes %~ rotatePDA x p) (s ^. #rotation) -- | GlyphShape to svg Tree-treeShape :: GlyphShape -> Double -> Point Double -> Tree+treeShape :: GlyphShape -> Double -> C.Point Double -> Tree treeShape CircleGlyph s p = CircleTree $ Circle mempty (pointSvg p) (Num (s / 2)) treeShape SquareGlyph s p = treeRect (move p ((s *) <$> one)) treeShape (RectSharpGlyph x') s p =- treeRect (move p (C.scale (Point s (x' * s)) one))+ treeRect (move p (C.scale (C.Point s (x' * s)) one)) treeShape (RectRoundedGlyph x'' rx ry) s p = RectangleTree- . rectSvg (addPoint p $ C.scale (Point s (x'' * s)) one)+ . rectSvg (addPoint p $ C.scale (C.Point s (x'' * s)) one) . (rectCornerRadius .~ (Just $ Num rx, Just $ Num ry)) $ defaultSvg-treeShape (TriangleGlyph (Point xa ya) (Point xb yb) (Point xc yc)) s p =+treeShape (TriangleGlyph (C.Point xa ya) (C.Point xb yb) (C.Point xc yc)) s p = PolygonTree . (polygonPoints .~ rps) $ (drawAttributes %~ translateDA p) defaultSvg@@ -159,39 +145,46 @@ (pointSvg p) (Num $ s / 2) (Num $ (x' * s) / 2)-treeShape (VLineGlyph x') s (Point x y) =+treeShape (VLineGlyph x') s (C.Point x y) = LineTree $ Line (mempty & strokeWidth .~ Last (Just (Num x')))- (pointSvg (Point x (y - s / 2)))- (pointSvg (Point x (y + s / 2)))-treeShape (HLineGlyph x') s (Point x y) =+ (pointSvg (C.Point x (y - s / 2)))+ (pointSvg (C.Point x (y + s / 2)))+treeShape (HLineGlyph x') s (C.Point x y) = LineTree $ Line (mempty & strokeWidth .~ Last (Just (Num x')))- (pointSvg (Point (x - s / 2) y))- (pointSvg (Point (x + s / 2) y))-treeShape (PathGlyph path) _ p =- PathTree $ Path ((drawAttributes %~ translateDA p) defaultSvg) path'- where- path' = either mempty (: []) $ A.parseOnly command path+ (pointSvg (C.Point (x - s / 2) y))+ (pointSvg (C.Point (x + s / 2) y))+treeShape (PathGlyph path) s p =+ Svg.PathTree+ (Svg.Path+ (Svg.defaultSvg &+ (Svg.drawAttributes %~ scaleDA (C.Point s s) . translateDA p))+ (either mempty id $ A.parseOnly Svg.pathParser path)) -- | GlyphStyle to svg Tree-treeGlyph :: GlyphStyle -> Point Double -> Tree+treeGlyph :: GlyphStyle -> C.Point Double -> Tree treeGlyph s p = treeShape (s ^. #shape) (s ^. #size) p & maybe id (\x -> drawAttributes %~ rotatePDA x p) (s ^. #rotation) -- | line svg-treeLine :: [Point Double] -> Tree+treeLine :: [C.Point Double] -> Tree treeLine xs = PolyLineTree- . (polyLinePoints .~ ((\(Point x y) -> V2 x (- y)) <$> xs))+ . (polyLinePoints .~ ((\(C.Point x y) -> V2 x (- y)) <$> xs)) $ defaultSvg -- | GlyphStyle to svg Tree-treePath :: [PathInfo Double] -> [Point Double] -> Tree-treePath s p = PathTree $ Path mempty (zipWith (curry toPathCommand) s p)+treePath :: [PathInfo Double] -> [C.Point Double] -> Tree+treePath s p =+ PathTree $+ Path mempty (zipWith+ (curry toPathCommand)+ s+ (fmap (\(C.Point x y) -> C.Point x (-y)) p)) -- | convert a 'Chart' to a 'Tree' --@@ -232,13 +225,9 @@ (strokeColor .~ Last (Just FillNone)) & (fillColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #color))) & (fillOpacity ?~ realToFrac (opac $ o ^. #color)) &- (textAnchor .~ Last (Just (toTextAnchor $ o ^. #anchor))) &- maybe- id- (\(Point x y) -> transform ?~ [Translate x (-y)])- (o ^. #translate)+ (textAnchor .~ Last (Just (toTextAnchor $ o ^. #anchor))) where- toTextAnchor :: Anchor -> TextAnchor+ toTextAnchor :: Anchor -> Svg.TextAnchor toTextAnchor AnchorMiddle = TextAnchorMiddle toTextAnchor AnchorStart = TextAnchorStart toTextAnchor AnchorEnd = TextAnchorEnd@@ -252,7 +241,7 @@ (strokeOpacity ?~ realToFrac (opac $ o ^. #borderColor)) & (fillColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #color))) & (fillOpacity ?~ realToFrac (opac $ o ^. #color)) &- maybe id (\(Point x y) -> transform ?~ [Translate x (-y)]) (o ^. #translate)+ maybe id (\(C.Point x y) -> transform ?~ [Translate x (-y)]) (o ^. #translate) daLine :: LineStyle -> DrawAttributes daLine o =@@ -270,12 +259,12 @@ maybe id (\xs -> strokeDashArray .~ Last (Just (Num <$> xs))) (o ^. #dasharray) -fromLineCap' :: LineCap -> Cap+fromLineCap' :: LineCap -> Svg.Cap fromLineCap' LineCapButt = CapButt fromLineCap' LineCapRound = CapRound fromLineCap' LineCapSquare = CapSquare -fromLineJoin' :: C.LineJoin -> SvgTree.LineJoin+fromLineJoin' :: C.LineJoin -> Svg.LineJoin fromLineJoin' LineJoinMiter = JoinMiter fromLineJoin' LineJoinBevel = JoinBevel fromLineJoin' LineJoinRound = JoinRound@@ -303,24 +292,36 @@ -- | convert a point to the svg co-ordinate system -- The svg coordinate system has the y-axis going from top to bottom.-pointSvg :: Point Double -> (Number, Number)-pointSvg (Point x y) = (Num x, Num (- y))+pointSvg :: C.Point Double -> (Svg.Number, Svg.Number)+pointSvg (C.Point x y) = (Num x, Num (- y)) -- | A DrawAttributes to rotate around a point by x degrees.-rotatePDA :: (HasDrawAttributes s) => Double -> Point Double -> s -> s-rotatePDA a (Point x y) s = s & transform %~ (Just . maybe r (<> r))+rotatePDA :: (HasDrawAttributes s) => Double -> C.Point Double -> s -> s+rotatePDA a (C.Point x y) s = s & transform %~ (Just . maybe r (<> r)) where r = [Rotate (-a*180/pi) (Just (x, -y))] -- | A DrawAttributes to translate by a Point.-translateDA :: (HasDrawAttributes s) => Point Double -> s -> s-translateDA (Point x' y') =+translateDA :: (HasDrawAttributes s) => C.Point Double -> s -> s+translateDA (C.Point x' y') = transform %~ (\x -> Just $ maybe [Translate x' (- y')] (<> [Translate x' (- y')]) x) +-- | A DrawAttributes to translate by a Point.+scaleDA :: (HasDrawAttributes s) => C.Point Double -> s -> s+scaleDA (C.Point x' y') =+ transform+ %~ (\x -> Just $ maybe [Scale x' (Just y')] (<> [Scale x' (Just y')]) x)+ -- | convert a Rect to the svg co-ordinate system-rectSvg :: Rect Double -> Rectangle -> Rectangle+rectSvg :: Rect Double -> Svg.Rectangle -> Svg.Rectangle rectSvg (Rect x z y w) = (rectUpperLeftCorner .~ (Num x, Num (- w))) . (rectWidth .~ Just (Num (z - x))) . (rectHeight .~ Just (Num (w - y)))++-- | import a Tree from a file+fromFile :: FilePath -> IO Tree+fromFile fp = do+ t <- Svg.loadSvgFile fp+ pure $ maybe Svg.None Re.unbox t
src/Chart/Render.hs view
@@ -10,6 +10,8 @@ -- Note that type signatures are tightened to Double as sane SVG rendering suggests. module Chart.Render ( ChartSvg (..),+ renderToCharts,+ renderToCRS, chartSvg, chartSvgDefault, chartSvgHud,@@ -25,17 +27,13 @@ terms, makeAttribute, - -- * Augmentation- ChartExtra (..),- toChartExtra,- renderChartExtrasWith,- -- * low-level conversions attsRect, attsText, attsGlyph, attsLine, attsPath,+ svgShape, ) where @@ -69,25 +67,7 @@ instance Monoid ChartSvg where mempty = ChartSvg defaultSvgOptions mempty [] [] --- | Specification of a chart for rendering to SVG-data ChartSvgExtra- = ChartSvgExtra- { svgOptionsExtra :: SvgOptions,- hudOptionsExtra :: HudOptions,- hudListExtra :: [Hud Double],- chartExtraList :: [ChartExtra Double]- }- deriving (Generic)--instance Semigroup ChartSvgExtra where- (<>) (ChartSvgExtra _ o h c) (ChartSvgExtra s' o' h' c') =- ChartSvgExtra s' (o <> o') (h <> h') (c <> c')--instance Monoid ChartSvgExtra where- mempty = ChartSvgExtra defaultSvgOptions mempty [] []- -- * rendering- -- | @svg@ element + svg 2 attributes svg2Tag :: Term [Attribute] (s -> t) => s -> t svg2Tag m =@@ -110,19 +90,6 @@ makeAttribute "viewBox" (show x <> " " <> show (- w) <> " " <> show (z - x) <> " " <> show (w - y)) ] -renderToSvgExtra :: CssOptions -> Point Double -> Rect Double -> [ChartExtra Double] -> Html ()-renderToSvgExtra csso (Point w' h') (Rect x z y w) cs =- with- ( svg2Tag- ( cssText csso <>- mconcat (svgExtra <$> cs)- )- )- [ width_ (show w'),- height_ (show h'),- makeAttribute "viewBox" (show x <> " " <> show (- w) <> " " <> show (z - x) <> " " <> show (w - y))- ]- cssText :: CssOptions -> Html () cssText UseCssCrisp = cssCrisp cssText UseGeometricPrecision = geometricPrecision@@ -136,10 +103,13 @@ geometricPrecision :: Html () geometricPrecision = style_ [type_ "text/css"] ("* { shape-rendering: geometricPrecision; }" :: Text) --- | render Charts with the supplied options.-renderChartsWith :: SvgOptions -> [Chart Double] -> Text-renderChartsWith so cs =- Lazy.toStrict $ renderText (renderToSvg (so ^. #cssOptions) size' rect' cs')+makeCharts :: ChartAspect -> HudOptions -> [Chart Double] -> [Chart Double]+makeCharts asp ho cs =+ let (hs', hc') = makeHud (padBox $ dataBoxes cs) ho in+ runHud (initialCanvas asp (cs<>hc')) hs' (cs <> hc')++renderToCRS :: SvgOptions -> [Chart Double] -> ([Chart Double], Rect Double, Point Double)+renderToCRS so cs = (cs', rect', size') where rect' = styleBoxesS cs' & maybe id padRect (so ^. #outerPad) cs' =@@ -155,25 +125,30 @@ ChartAspect -> styleBoxesS cs UnadjustedAspect -> dataBoxesS cs --- | render ChartExtras with the supplied options.-renderChartExtrasWith :: SvgOptions -> [ChartExtra Double] -> Text-renderChartExtrasWith so cs =- Lazy.toStrict $ renderText (renderToSvgExtra (so ^. #cssOptions) size' rect' cs')+-- | Consume the ChartSvg and produce the combined huds and charts as a chart list.+renderToCharts :: ChartSvg -> [Chart Double]+renderToCharts cs = makeCharts (view (#svgOptions . #chartAspect) cs) (view #hudOptions cs) (view #chartList cs)++-- | render Charts with the supplied options.+renderChartsWith :: SvgOptions -> [Chart Double] -> Text+renderChartsWith so cs =+ Lazy.toStrict $ renderText (renderToSvg (so ^. #cssOptions) size' rect' cs'') where- cs' = zipWith (\(ChartExtra _ l a h') c' -> ChartExtra c' l a h') cs (csFinalize csa)- rect' = styleBoxesS (csFinalize csa) & maybe id padRect (so ^. #outerPad)- csFinalize =+ rect' = styleBoxesS cs' & maybe id padRect (so ^. #outerPad)+ cs' =+ cs &+ runHud penult [chartAspectHud (so ^. #chartAspect)] & maybe id (\x -> frameChart x (fromMaybe 0 (so ^. #innerPad)))- (so ^. #chartFrame) .- runHud penult [chartAspectHud (so ^. #chartAspect)]+ (so ^. #chartFrame)+ cs'' =+ maybe [] (\c -> [Chart (RectA (blob c)) [RectXY rect']]) (so ^. #background) <> cs' Point w h = NH.width rect' size' = Point ((so ^. #svgHeight)/h*w) (so ^. #svgHeight)- csa = fmap (view #chartActual) cs penult = case so ^. #chartAspect of- FixedAspect _ -> styleBoxesS csa- CanvasAspect _ -> dataBoxesS csa- ChartAspect -> styleBoxesS csa- UnadjustedAspect -> dataBoxesS csa+ FixedAspect _ -> styleBoxesS cs+ CanvasAspect _ -> dataBoxesS cs+ ChartAspect -> styleBoxesS cs+ UnadjustedAspect -> dataBoxesS cs -- | render charts with the supplied svg options and huds renderHudChart :: SvgOptions -> [Hud Double] -> [Chart Double] -> Text@@ -339,16 +314,6 @@ svg :: Chart Double -> Lucid.Html () svg c = term "g" (svgAtts $ c ^. #annotation) (svgHtml c) --- | render extra attributes and html-svgExtra :: ChartExtra Double -> Lucid.Html ()-svgExtra (ChartExtra c l' as h) =- case l' of- Nothing -> x- Just l ->- term "a" [term "xlink:href" l :: Lucid.Attribute] x- where- x = term "g" (svgAtts (c ^. #annotation) <> as) (svgHtml c <> h)- -- | Make Lucid Html given term and attributes terms :: Text -> [Lucid.Attribute] -> Lucid.Html () terms t = with $ makeXmlElementNoEnd t@@ -373,7 +338,6 @@ term "font-size" (show $ o ^. #size), term "text-anchor" (toTextAnchor $ o ^. #anchor) ]- <> maybe [] ((: []) . term "transform" . toTranslateText) (o ^. #translate) where toTextAnchor :: Anchor -> Text toTextAnchor AnchorMiddle = "middle"@@ -434,16 +398,3 @@ toScaleText :: Double -> Text toScaleText x = "scale(" <> show x <> ")"---- | Augmentation of a chart to include Html content.-data ChartExtra a =- ChartExtra- { chartActual :: Chart a,- chartLink :: Maybe Text,- chartAttributes :: [Attribute],- chartContent :: Html ()- } deriving (Show, Generic)---- | Convert a plain chart top a 'ChartExtra'.-toChartExtra :: Chart a -> ChartExtra a-toChartExtra c = ChartExtra c Nothing mempty mempty
src/Chart/Surface.hs view
@@ -34,8 +34,6 @@ -- | Options for a Surface chart. ----- >>> defaultSurfaceOptions--- SurfaceOptions {soStyle = SurfaceStyle {surfaceColors = [RGBA 0.65 0.81 0.89 1.00,RGBA 0.12 0.47 0.71 1.00], surfaceRectStyle = RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 1.00}}, soGrain = Point 10 10, soRange = Rect -0.5 0.5 -0.5 0.5} data SurfaceOptions = SurfaceOptions { -- | surface style@@ -55,7 +53,7 @@ -- | A surface chart is a specialization of a 'RectA' chart -- -- >>> defaultSurfaceStyle--- SurfaceStyle {surfaceColors = [RGBA 0.65 0.81 0.89 1.00,RGBA 0.12 0.47 0.71 1.00], surfaceRectStyle = RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 1.00}}+-- SurfaceStyle {surfaceColors = [Colour 0.69 0.35 0.16 1.00,Colour 0.65 0.81 0.89 1.00], surfaceRectStyle = RectStyle {borderSize = 0.0, borderColor = Colour 0.00 0.00 0.00 0.00, color = Colour 0.05 0.05 0.05 1.00}} -- --  data SurfaceStyle@@ -69,7 +67,7 @@ -- | The official surface style. defaultSurfaceStyle :: SurfaceStyle defaultSurfaceStyle =- SurfaceStyle (take 2 palette1) (blob black)+ SurfaceStyle (take 2 palette1) (blob dark) -- | Main surface data elements data SurfaceData@@ -123,8 +121,6 @@ -- | Legend specialization for a surface chart. ----- >>> defaultSurfaceLegendOptions ""--- SurfaceLegendOptions {sloStyle = SurfaceStyle {surfaceColors = [RGBA 0.65 0.81 0.89 1.00,RGBA 0.12 0.47 0.71 1.00], surfaceRectStyle = RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 1.00}}, sloTitle = "", sloWidth = 5.0e-2, sloResolution = 100, sloAxisOptions = AxisOptions {axisBar = Nothing, adjust = Nothing, axisTick = Tick {tstyle = TickRound (FormatPrec (Just 3)) 4 NoTickExtend, gtick = Just (GlyphStyle {size = 3.0e-2, color = RGBA 0.00 0.00 0.00 1.00, borderColor = RGBA 0.50 0.50 0.50 1.00, borderSize = 5.0e-3, shape = VLineGlyph 5.0e-3, rotation = Nothing, translate = Nothing},1.0e-2), ttick = Just (TextStyle {size = 5.0e-2, color = RGBA 0.50 0.50 0.50 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing},3.0e-2), ltick = Nothing}, place = PlaceRight}, sloLegendOptions = LegendOptions {lsize = 0.5, vgap = 5.0e-2, hgap = 1.0e-2, ltext = TextStyle {size = 8.0e-2, color = RGBA 0.20 0.20 0.20 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing}, lmax = 10, innerPad = 5.0e-2, outerPad = 2.0e-2, legendFrame = Nothing, lplace = PlaceRight, lscale = 0.7}} data SurfaceLegendOptions = SurfaceLegendOptions { sloStyle :: SurfaceStyle,@@ -145,7 +141,7 @@ Nothing ( Tick (TickRound (FormatPrec (Just 3)) 4 NoTickExtend)- (Just (defaultGlyphTick & #color .~ black & #shape .~ VLineGlyph 0.005, 0.01))+ (Just (defaultGlyphTick & #color .~ dark & #shape .~ VLineGlyph 0.005, 0.01)) (Just (defaultTextTick, 0.03)) Nothing )
src/Chart/Types.hs view
@@ -30,6 +30,8 @@ Annotation (..), annotationText, scaleAnn,+ scaleOpacAnn,+ colourAnn, padRect, -- * Styles@@ -67,6 +69,8 @@ simulHud, HudOptions (..), defaultHudOptions,+ colourHudOptions,+ scaleOpacHudOptions, defaultCanvas, runHudWith, runHud,@@ -107,6 +111,8 @@ LegendOptions (..), defaultLegendOptions, legendHud,+ legendChart,+ legendEntry, Orientation (..), fromOrientation, toOrientation,@@ -120,6 +126,7 @@ -- * Chart manipulation padChart, frameChart,+ frameAllCharts, hori, vert, stack,@@ -141,7 +148,7 @@ import Data.Colour import Data.FormatN import Data.Generics.Labels ()-import Data.List ((!!))+import qualified Data.List as List import Data.Path import qualified Data.Text as Text import Data.Time@@ -194,12 +201,51 @@ annotationText PathA {} = "PathA" annotationText BlankA = "BlankA" +-- | dim (or brighten) the opacity of an Annotation by a scale+scaleOpacAnn :: Double -> Annotation -> Annotation+scaleOpacAnn x (RectA s) = RectA s'+ where+ s' = s & #color %~ scaleOpac x & #borderColor %~ scaleOpac x+scaleOpacAnn x (TextA s ts) = TextA s' ts+ where+ s' = s & #color %~ scaleOpac x+scaleOpacAnn x (LineA s) = LineA s'+ where+ s' = s & #color %~ scaleOpac x+scaleOpacAnn x (GlyphA s) = GlyphA s'+ where+ s' = s & #color %~ scaleOpac x & #borderColor %~ scaleOpac x+scaleOpacAnn x (PathA s pis) = PathA s' pis+ where+ s' = s & #color %~ scaleOpac x & #borderColor %~ scaleOpac x+scaleOpacAnn _ BlankA = BlankA++scaleOpac :: Double -> Colour -> Colour+scaleOpac x (Colour r g b o') = Colour r g b (o'*x)++-- | select a main colour+colourAnn :: Colour -> Annotation -> Annotation+colourAnn c (RectA s) = RectA s'+ where+ s' = s & #color %~ mix c & #borderColor %~ mix c+colourAnn c (TextA s ts) = TextA s' ts+ where+ s' = s & #color %~ mix c+colourAnn c (LineA s) = LineA s'+ where+ s' = s & #color %~ mix c+colourAnn c (GlyphA s) = GlyphA s'+ where+ s' = s & #color %~ mix c & #borderColor %~ mix c+colourAnn c (PathA s pis) = PathA s' pis+ where+ s' = s & #color %~ mix c & #borderColor %~ mix c+colourAnn _ BlankA = BlankA+ -- | Rectangle styling -- -- >>> defaultRectStyle--- RectStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}------ > writeChartSvgDefault "other/unit.svg" [Chart (RectA defaultRectStyle) [one]]+-- RectStyle {borderSize = 1.0e-2, borderColor = Colour 0.65 0.81 0.89 1.00, color = Colour 0.12 0.47 0.71 1.00} -- --  data RectStyle = RectStyle@@ -211,38 +257,36 @@ -- | the style defaultRectStyle :: RectStyle-defaultRectStyle = RectStyle 0.01 (fromRGB (palette !! 1) 0.8) (fromRGB (palette !! 1) 0.3)+defaultRectStyle = RectStyle 0.01 (palette1 List.!! 1) (palette1 List.!! 2) -- | solid rectangle, no border -- -- >>> blob black--- RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 1.00}+-- RectStyle {borderSize = 0.0, borderColor = Colour 0.00 0.00 0.00 0.00, color = Colour 0.00 0.00 0.00 1.00} blob :: Colour -> RectStyle blob = RectStyle 0 transparent -- | transparent rect -- -- >>> clear--- RectStyle {borderSize = 0.0, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 0.00}+-- RectStyle {borderSize = 0.0, borderColor = Colour 0.00 0.00 0.00 0.00, color = Colour 0.00 0.00 0.00 0.00} clear :: RectStyle clear = RectStyle 0 transparent transparent -- | transparent rectangle, with border -- -- >>> border 0.01 transparent--- RectStyle {borderSize = 1.0e-2, borderColor = RGBA 0.00 0.00 0.00 0.00, color = RGBA 0.00 0.00 0.00 0.00}+-- RectStyle {borderSize = 1.0e-2, borderColor = Colour 0.00 0.00 0.00 0.00, color = Colour 0.00 0.00 0.00 0.00} border :: Double -> Colour -> RectStyle border s c = RectStyle s c transparent -- | Text styling -- -- >>> defaultTextStyle--- TextStyle {size = 8.0e-2, color = RGBA 0.20 0.20 0.20 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing}+-- TextStyle {size = 8.0e-2, color = Colour 0.05 0.05 0.05 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing} -- -- >>> let t = zipWith (\x y -> Chart (TextA (defaultTextStyle & (#size .~ (0.05 :: Double))) [x]) [PointXY y]) (fmap Text.singleton ['a' .. 'y']) [Point (sin (x * 0.1)) x | x <- [0 .. 25]] ----- > writeChartSvgDefault "other/text.svg" t--- --  data TextStyle = TextStyle { size :: Double,@@ -251,8 +295,7 @@ hsize :: Double, vsize :: Double, nudge1 :: Double,- rotation :: Maybe Double,- translate :: Maybe (Point Double)+ rotation :: Maybe Double } deriving (Show, Eq, Generic) @@ -275,14 +318,12 @@ -- | the offical text style defaultTextStyle :: TextStyle defaultTextStyle =- TextStyle 0.08 colorText AnchorMiddle 0.5 1.45 -0.2 Nothing Nothing+ TextStyle 0.08 dark AnchorMiddle 0.5 1.45 -0.2 Nothing -- | Glyph styling -- -- >>> defaultGlyphStyle--- GlyphStyle {size = 3.0e-2, color = RGBA 0.65 0.81 0.89 0.30, borderColor = RGBA 0.12 0.47 0.71 0.80, borderSize = 3.0e-3, shape = SquareGlyph, rotation = Nothing, translate = Nothing}------ See 'Chart.Examples.glyphsExample'.+-- GlyphStyle {size = 3.0e-2, color = Colour 0.65 0.81 0.89 1.00, borderColor = Colour 0.12 0.47 0.71 1.00, borderSize = 3.0e-3, shape = SquareGlyph, rotation = Nothing, translate = Nothing} -- --  data GlyphStyle = GlyphStyle@@ -305,8 +346,8 @@ defaultGlyphStyle = GlyphStyle 0.03- (fromRGB (P.head palette) 0.3)- (fromRGB (palette !! 1) 0.8)+ (palette1 List.!! 1)+ (palette1 List.!! 2) 0.003 SquareGlyph Nothing@@ -378,7 +419,7 @@ -- | line style -- -- >>> defaultLineStyle--- LineStyle {width = 1.2e-2, color = RGBA 0.65 0.81 0.89 0.30, linecap = Nothing, linejoin = Nothing, dasharray = Nothing, dashoffset = Nothing}+-- LineStyle {width = 1.2e-2, color = Colour 0.05 0.05 0.05 1.00, linecap = Nothing, linejoin = Nothing, dasharray = Nothing, dashoffset = Nothing} -- --  --@@ -395,12 +436,12 @@ -- | the official default line style defaultLineStyle :: LineStyle-defaultLineStyle = LineStyle 0.012 (fromRGB (P.head palette) 0.3) Nothing Nothing Nothing Nothing+defaultLineStyle = LineStyle 0.012 dark Nothing Nothing Nothing Nothing -- | Path styling -- -- >>> defaultPathStyle--- PathStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}+-- PathStyle {borderSize = 1.0e-2, borderColor = Colour 0.65 0.81 0.89 1.00, color = Colour 0.12 0.47 0.71 1.00} data PathStyle = PathStyle { borderSize :: Double, borderColor :: Colour,@@ -411,7 +452,7 @@ -- | the style defaultPathStyle :: PathStyle defaultPathStyle =- PathStyle 0.01 (fromRGB (palette !! 1) 0.8) (fromRGB (palette !! 1) 0.3)+ PathStyle 0.01 (palette1 List.!! 1) (palette1 List.!! 2) -- | Convert from a path command list to a PathA chart toPathChart :: PathStyle -> [(PathInfo Double, Point Double)] -> Chart Double@@ -477,9 +518,8 @@ -- | SVG tag options. -- -- >>> defaultSvgOptions--- SvgOptions {svgHeight = 300.0, outerPad = Just 2.0e-2, innerPad = Nothing, chartFrame = Nothing, cssOptions = NoCssOptions, chartAspect = FixedAspect 1.5}+-- SvgOptions {svgHeight = 300.0, outerPad = Just 2.0e-2, innerPad = Nothing, chartFrame = Nothing, cssOptions = NoCssOptions, chartAspect = FixedAspect 1.5, background = Nothing} ----- > writeChartSvg "other/svgoptions.svg" (SvgChart (defaultSvgOptions & #chartAspect .~ FixedAspect 0.7) mempty [] lines) -- --  data SvgOptions = SvgOptions@@ -488,17 +528,18 @@ innerPad :: Maybe Double, chartFrame :: Maybe RectStyle, cssOptions :: CssOptions,- chartAspect :: ChartAspect+ chartAspect :: ChartAspect,+ background :: Maybe Colour } deriving (Eq, Show, Generic) -- | The official svg options defaultSvgOptions :: SvgOptions-defaultSvgOptions = SvgOptions 300 (Just 0.02) Nothing Nothing NoCssOptions (FixedAspect 1.5)+defaultSvgOptions = SvgOptions 300 (Just 0.02) Nothing Nothing NoCssOptions (FixedAspect 1.5) Nothing -- | frame style defaultSvgFrame :: RectStyle-defaultSvgFrame = border 0.01 (fromRGB (grayscale 0.7) 0.5)+defaultSvgFrame = border 0.01 dark -- | Dimensions that are tracked in the 'HudT': --@@ -612,9 +653,39 @@ ] Nothing +-- | alter the colour+colourHudOptions :: Colour -> HudOptions -> HudOptions+colourHudOptions c ho =+ ho &+ #hudCanvas %~ fmap (#color %~ mix c) &+ #hudTitles %~ fmap (#style . #color %~ mix c) &+ #hudAxes %~ fmap (#axisBar %~ fmap (#rstyle . #color %~ mix c)) &+ #hudAxes %~ fmap (#axisTick . #gtick %~ fmap (first ((#color %~ mix c) . (#borderColor %~ mix c)))) &+ #hudAxes %~ fmap (#axisTick . #ttick %~ fmap (first (#color %~ mix c))) &+ #hudAxes %~ fmap (#axisTick . #ltick %~ fmap (first (#color %~ mix c))) &+ #hudLegend %~ fmap (first (#ltext %~ (#color %~ mix c))) &+ #hudLegend %~ fmap (first (#legendFrame %~ fmap ((#color %~ mix c) . (#borderColor %~ mix c))))++scaleOpacHudOptions :: HudOptions -> Double -> HudOptions+scaleOpacHudOptions ho o =+ ho &+ #hudCanvas %~ fmap (#color %~ scaleOpac o) &+ #hudTitles %~ fmap (#style . #color %~ scaleOpac o) &+ #hudAxes %~ fmap (#axisBar %~ fmap (#rstyle . #color %~ scaleOpac o)) &+ #hudAxes %~ fmap (#axisTick . #gtick %~ fmap (first ((#color %~ scaleOpac o) . (#borderColor %~ scaleOpac o)))) &+ #hudAxes %~ fmap (#axisTick . #ttick %~ fmap (first (#color %~ scaleOpac o))) &+ #hudAxes %~ fmap (#axisTick . #ltick %~ fmap (first (#color %~ scaleOpac o))) &+ #hudLegend %~ fmap (first (#ltext %~ (#color %~ scaleOpac o))) &+ #hudLegend %~ fmap (first (#legendFrame %~ fmap ((#color %~ scaleOpac o) . (#borderColor %~ scaleOpac o)))) &+ #hudLegend %~ fmap (second (fmap (first (scaleOpacAnn o))))++-- | colour reset but scaling opacity+mix :: Colour -> Colour -> Colour+mix (Colour r g b o') (Colour _ _ _ o) = Colour r g b (o'*o)+ -- | The official hud canvas defaultCanvas :: RectStyle-defaultCanvas = blob (fromRGB (grayscale 0.5) 0.025)+defaultCanvas = blob (setOpac 0.05 dark) -- | Placement of elements around (what is implicity but maybe shouldn't just be) a rectangular canvas data Place@@ -651,7 +722,7 @@ -- | The bar on an axis representing the x or y plane. -- -- >>> defaultAxisBar--- AxisBar {rstyle = RectStyle {borderSize = 0.0, borderColor = RGBA 0.50 0.50 0.50 1.00, color = RGBA 0.50 0.50 0.50 1.00}, wid = 5.0e-3, buff = 1.0e-2}+-- AxisBar {rstyle = RectStyle {borderSize = 0.0, borderColor = Colour 0.00 0.00 0.00 0.00, color = Colour 0.05 0.05 0.05 0.40}, wid = 4.0e-3, buff = 1.0e-2} data AxisBar = AxisBar { rstyle :: RectStyle, wid :: Double,@@ -661,12 +732,12 @@ -- | The official axis bar defaultAxisBar :: AxisBar-defaultAxisBar = AxisBar (RectStyle 0 (fromRGB (grayscale 0.5) 1) (fromRGB (grayscale 0.5) 1)) 0.005 0.01+defaultAxisBar = AxisBar (RectStyle 0 transparent (setOpac 0.4 dark)) 0.004 0.01 -- | Options for titles. Defaults to center aligned, and placed at Top of the hud -- -- >>> defaultTitle "title"--- Title {text = "title", style = TextStyle {size = 0.12, color = RGBA 0.20 0.20 0.20 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing}, place = PlaceTop, anchor = AnchorMiddle, buff = 4.0e-2}+-- Title {text = "title", style = TextStyle {size = 0.12, color = Colour 0.05 0.05 0.05 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing}, place = PlaceTop, anchor = AnchorMiddle, buff = 4.0e-2} data Title = Title { text :: Text, style :: TextStyle,@@ -681,9 +752,8 @@ defaultTitle txt = Title txt- ( (#size .~ 0.12)- . (#color .~ colorText)- $ defaultTextStyle+ ( defaultTextStyle &+ #size .~ 0.12 ) PlaceTop AnchorMiddle@@ -692,7 +762,7 @@ -- | xy coordinate markings -- -- >>> defaultTick--- Tick {tstyle = TickRound (FormatComma (Just 2)) 8 TickExtend, gtick = Just (GlyphStyle {size = 3.0e-2, color = RGBA 0.50 0.50 0.50 1.00, borderColor = RGBA 0.50 0.50 0.50 1.00, borderSize = 5.0e-3, shape = VLineGlyph 5.0e-3, rotation = Nothing, translate = Nothing},1.25e-2), ttick = Just (TextStyle {size = 5.0e-2, color = RGBA 0.50 0.50 0.50 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing},1.5e-2), ltick = Just (LineStyle {width = 5.0e-3, color = RGBA 0.50 0.50 0.50 0.05, linecap = Nothing, linejoin = Nothing, dasharray = Nothing, dashoffset = Nothing},0.0)}+-- Tick {tstyle = TickRound (FormatComma (Just 2)) 8 TickExtend, gtick = Just (GlyphStyle {size = 3.0e-2, color = Colour 0.05 0.05 0.05 0.40, borderColor = Colour 0.05 0.05 0.05 0.40, borderSize = 2.0e-3, shape = VLineGlyph 5.0e-3, rotation = Nothing, translate = Nothing},1.25e-2), ttick = Just (TextStyle {size = 5.0e-2, color = Colour 0.05 0.05 0.05 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing},1.5e-2), ltick = Just (LineStyle {width = 5.0e-3, color = Colour 0.05 0.05 0.05 0.05, linecap = Nothing, linejoin = Nothing, dasharray = Nothing, dashoffset = Nothing},0.0)} data Tick = Tick { tstyle :: TickStyle, gtick :: Maybe (GlyphStyle, Double),@@ -705,22 +775,22 @@ defaultGlyphTick :: GlyphStyle defaultGlyphTick = defaultGlyphStyle- & #borderSize .~ 0.005- & #borderColor .~ fromRGB (grayscale 0.5) 1- & #color .~ fromRGB (grayscale 0.5) 1+ & #borderSize .~ 0.002 & #shape .~ VLineGlyph 0.005+ & #color .~ setOpac 0.4 dark+ & #borderColor .~ setOpac 0.4 dark -- | The official text tick defaultTextTick :: TextStyle defaultTextTick =- defaultTextStyle & #size .~ 0.05 & #color .~ fromRGB (grayscale 0.5) 1+ defaultTextStyle & #size .~ 0.05 -- | The official line tick defaultLineTick :: LineStyle defaultLineTick = defaultLineStyle- & #color .~ fromRGB (grayscale 0.5) 0.05 & #width .~ 5.0e-3+ & #color %~ setOpac 0.05 -- | The official tick defaultTick :: Tick@@ -779,7 +849,7 @@ -- | Legend options -- -- >>> defaultLegendOptions--- LegendOptions {lsize = 0.1, vgap = 0.2, hgap = 0.1, ltext = TextStyle {size = 8.0e-2, color = RGBA 0.20 0.20 0.20 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing, translate = Nothing}, lmax = 10, innerPad = 0.1, outerPad = 0.1, legendFrame = Just (RectStyle {borderSize = 2.0e-2, borderColor = RGBA 0.50 0.50 0.50 1.00, color = RGBA 1.00 1.00 1.00 1.00}), lplace = PlaceBottom, lscale = 0.2}+-- LegendOptions {lsize = 0.3, vgap = 0.2, hgap = 0.1, ltext = TextStyle {size = 0.12, color = Colour 0.05 0.05 0.05 1.00, anchor = AnchorMiddle, hsize = 0.5, vsize = 1.45, nudge1 = -0.2, rotation = Nothing}, lmax = 10, innerPad = 0.1, outerPad = 2.0e-2, legendFrame = Just (RectStyle {borderSize = 1.0e-2, borderColor = Colour 0.05 0.05 0.05 1.00, color = Colour 0.05 0.05 0.05 0.00}), lplace = PlaceRight, lscale = 0.25} -- --  data LegendOptions = LegendOptions@@ -796,22 +866,22 @@ } deriving (Show, Eq, Generic) --- | The official legend options+-- | The official legend options defaultLegendOptions :: LegendOptions defaultLegendOptions = LegendOptions- 0.1+ 0.3 0.2 0.1 ( defaultTextStyle- & #size .~ 0.08+ & #size .~ 0.12 ) 10 0.1- 0.1- (Just (RectStyle 0.02 (fromRGB (grayscale 0.5) 1) white))- PlaceBottom- 0.2+ 0.02+ (Just (RectStyle 0.01 (setOpac 1 dark) (setOpac 0 dark)))+ PlaceRight+ 0.25 -- | Generically scale an Annotation. scaleAnn :: Double -> Annotation -> Annotation@@ -954,12 +1024,11 @@ Chart ( TextA ( style'- & #translate ?~ (placePos' a + alignPos a) & #rotation ?~ rot ) [t ^. #text] )- [zero]+ [PointXY (placePos' a + alignPos a)] where style' | t ^. #anchor == AnchorStart =@@ -1390,7 +1459,7 @@ ) LineA ls -> ( LineA (ls & #width %~ (/ (l ^. #lscale))),- [P 0 (0.33 * l ^. #lsize), P (2 * l ^. #lsize) (0.33 * l ^. #lsize)]+ [P 0 (1 * l ^. #lsize), P (2 * l ^. #lsize) (1 * l ^. #lsize)] ) PathA ps _ -> ( let cs =@@ -1506,7 +1575,7 @@ Text -> Point Double -> Rect Double-styleBoxText o t p = move (p + p') $ maybe flat (`rotationBound` flat) (o ^. #rotation)+styleBoxText o t p = move p $ maybe flat (`rotationBound` flat) (o ^. #rotation) where flat = Rect ((- x' / 2.0) + x' * a') (x' / 2 + x' * a') ((- y' / 2) - n1') (y' / 2 - n1') s = o ^. #size@@ -1520,7 +1589,6 @@ AnchorStart -> 0.5 AnchorEnd -> -0.5 AnchorMiddle -> 0.0- p' = fromMaybe (Point 0.0 0.0) (o ^. #translate) -- | the extra area from glyph styling styleBoxGlyph :: GlyphStyle -> Rect Double@@ -1561,17 +1629,21 @@ -- | additively pad a [Chart] -- -- >>> padChart 0.1 [Chart (RectA defaultRectStyle) [RectXY one]]--- [Chart {annotation = RectA (RectStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}), xys = [R -0.5 0.5 -0.5 0.5]},Chart {annotation = BlankA, xys = [R -0.605 0.605 -0.605 0.605]}]+-- [Chart {annotation = RectA (RectStyle {borderSize = 1.0e-2, borderColor = Colour 0.65 0.81 0.89 1.00, color = Colour 0.12 0.47 0.71 1.00}), xys = [R -0.5 0.5 -0.5 0.5]},Chart {annotation = BlankA, xys = [R -0.605 0.605 -0.605 0.605]}] padChart :: Double -> [Chart Double] -> [Chart Double] padChart p cs = cs <> [Chart BlankA (maybeToList (RectXY . padRect p <$> styleBoxes cs))] -- | overlay a frame on some charts with some additive padding between -- -- >>> frameChart defaultRectStyle 0.1 [Chart BlankA []]--- [Chart {annotation = RectA (RectStyle {borderSize = 1.0e-2, borderColor = RGBA 0.12 0.47 0.71 0.80, color = RGBA 0.12 0.47 0.71 0.30}), xys = []},Chart {annotation = BlankA, xys = []}]+-- [Chart {annotation = RectA (RectStyle {borderSize = 1.0e-2, borderColor = Colour 0.65 0.81 0.89 1.00, color = Colour 0.12 0.47 0.71 1.00}), xys = []},Chart {annotation = BlankA, xys = []}] frameChart :: RectStyle -> Double -> [Chart Double] -> [Chart Double] frameChart rs p cs = [Chart (RectA rs) (maybeToList (RectXY . padRect p <$> styleBoxes cs))] <> cs +-- | useful for testing bounding boxes+frameAllCharts :: [Chart Double] -> [Chart Double]+frameAllCharts cs = mconcat $ frameChart (border 0.004 light) 0.004 . (:[]) <$> cs+ -- | horizontally stack a list of list of charts (proceeding to the right) with a gap between hori :: Double -> [[Chart Double]] -> [Chart Double] hori _ [] = []@@ -1579,7 +1651,7 @@ where step x a = x <> (a & fmap (#xys %~ fmap (\s -> P (widthx x) (aligny x - aligny a) + s))) widthx xs = maybe 0 (\(Rect x' z' _ _) -> z' - x' + gap) (styleBoxes xs)- aligny xs = maybe 0 (\(Rect _ _ y' _) -> y') (styleBoxes xs)+ aligny xs = maybe 0 (\(Rect _ _ y' w') -> (y'+w')/2) (styleBoxes xs) -- | vertically stack a list of charts (proceeding upwards), aligning them to the left vert :: Double -> [[Chart Double]] -> [Chart Double]
src/Chart/Various.hs view
@@ -97,7 +97,7 @@ ( defaultLegendOptions & #ltext . #size .~ 0.3 & #lplace .~ PlaceBottom- & #legendFrame .~ Just (RectStyle 0.02 (palette1 !! 5) white),+ & #legendFrame .~ Just (RectStyle 0.02 (palette1 !! 5) (palette1 !! 4)), zipWith (\a r -> (LineA a, r)) ((\c -> defaultLineStyle & #color .~ c & #width .~ w) <$> cs)@@ -189,7 +189,7 @@ bs = (\x -> blend x c1 c2) <$> cs lo = (\c -> defaultLineStyle & #width .~ w & #color .~ c) <$> bs --- | FIXME: better name+-- | No idea what this is really. digitChart :: Text -> [UTCTime] ->
src/Data/Colour.hs view
@@ -21,20 +21,19 @@ pattern Colour, opac, setOpac,- fromRGB, hex,- palette,- palette1, blend, blends, toHex, fromHex, unsafeFromHex,- grayscale,- colorText,+ palette1, transparent, black, white,+ light,+ dark,+ grey, ) where @@ -61,7 +60,7 @@ instance Show Colour where show (Colour r g b a) = Text.unpack $- "RGBA "+ "Colour " <> fixed (Just 2) r <> " " <> fixed (Just 2) g@@ -70,19 +69,15 @@ <> " " <> fixed (Just 2) a --- | get opacity+-- | opac opac :: Colour -> Double-opac c = getAlpha (color' c)+opac (Colour _ _ _ o) = o -- | set opacity setOpac :: Double -> Colour -> Colour setOpac o (Colour r g b _) = Colour r g b o -- |-fromRGB :: Color RGB Double -> Double -> Colour-fromRGB (ColorRGB r b g) o = Colour' $ ColorRGBA r b g o---- | hex :: Colour -> Text hex c = toHex c @@ -106,7 +101,7 @@ -- >>> blends 0.6 [black, (Colour 0.2 0.6 0.8 0.5), white] -- RGBA 0.16 0.48 0.64 0.60 blends :: Double -> [Colour] -> Colour-blends _ [] = black+blends _ [] = light blends _ [c] = c blends x cs = blend r (cs P.!! i) (cs P.!! (i+1)) where@@ -164,30 +159,45 @@ i2d :: Int -> Char i2d i = chr (ord '0' + i) --- | some RGB colors to work with-palette :: [Color RGB Double]-palette = unsafeFromHex <$> ["#a6cee3", "#1f78b4", "#e31a1c", "#b2df8a", "#33a02c", "#fb9a99", "#fdbf6f", "#ff7f00", "#cab2d6", "#6a3d9a", "#ffff99", "#b15928"]- -- | some RGBA colors palette1 :: [Colour]-palette1 = (\c -> fromRGB c 1) <$> palette---- | gray with 1 opacity-grayscale :: Double -> Color RGB Double-grayscale n = ColorRGB n n n---- | standard text color-colorText :: Colour-colorText = fromRGB (grayscale 0.2) 1+palette1 =+ [ Colour 0.69 0.35 0.16 1.00,+ Colour 0.65 0.81 0.89 1.00,+ Colour 0.12 0.47 0.71 1.00,+ Colour 0.89 0.10 0.11 1.00,+ Colour 0.70 0.87 0.54 1.00,+ Colour 0.20 0.63 0.17 1.00,+ Colour 0.98 0.60 0.60 1.00,+ Colour 0.99 0.75 0.44 1.00,+ Colour 1.00 0.50 0.00 1.00,+ Colour 0.99 0.99 0.99 1.00,+ Colour 0.00 0.00 0.00 1.00,+ Colour 1.00 1.00 0.60 1.00,+ Colour 0.69 0.35 0.16 1.00+ ] -- | black :: Colour-black = fromRGB (grayscale 0) 1+black = Colour 0 0 0 1 -- | white :: Colour-white = fromRGB (grayscale 1) 1+white = Colour 0.99 0.99 0.99 1 -- |+light :: Colour+light = Colour 0.94 0.94 0.94 1++-- |+dark :: Colour+dark = Colour 0.05 0.05 0.05 1++grey :: Colour+grey = Colour 0.5 0.5 0.5 1++-- | transparent :: Colour transparent = Colour 0 0 0 0++
src/Data/FormatN.hs view
@@ -139,7 +139,7 @@ prec :: Maybe Int -> Double -> Text prec n x | x < 0 = "-" <> prec n (- x)- | x == 0 = "0"+ | x == 0 = decimal n (toRealFloat x') | x < 0.001 = expt n x | x > 1e6 = expt n x | otherwise = decimal n (toRealFloat x')@@ -206,7 +206,7 @@ formatN (FormatPercent n) x = percent n x formatN FormatNone x = pack (show x) --- | Provide formatted text for a list of numbers so that they are just distinguished. 'precision commas 2 ticks' means use as much precision as is needed for them to be distinguished, but with at least 2 significant figures.+-- | Provide formatted text for a list of numbers so that they are just distinguished. 'precision commas (Just 2) ticks' means use as much precision as is needed for them to be distinguished, but with at least 2 significant figures. precision :: (Maybe Int -> Double -> Text) -> Maybe Int -> [Double] -> [Text] precision f Nothing xs = f Nothing <$> xs precision f (Just n0) xs =
src/Data/Path.hs view
@@ -393,6 +393,8 @@ -- | convert from an ArcPosition spec to ArcCentroid spec. --+-- See also [this](https://math.stackexchange.com/questions/55627/how-to-find-the-center-of-an-scaled-ellipse)+-- -- >>> let p = ArcPosition (Point 0 0) (Point 1 0) (ArcInfo (Point 1 0.5) (pi/4) False True) -- >>> arcCentroid p -- ArcCentroid {centroid = Point 0.20952624903444356 -0.48412291827592724, radius = Point 1.0 0.5, cphi = 0.7853981633974483, ang0 = 1.3753858999692936, angdiff = -1.823476581936975}@@ -446,7 +448,7 @@ -- -- Compare this "elegent" definition from [stackexchange](https://math.stackexchange.com/questions/426150/what-is-the-general-equation-of-the-ellipse-that-is-not-in-the-origin-and-rotate) ----- \[dfrac {((x-h)\cos(A)+(y-k)\sin(A))^2}{a^2}+\dfrac{((x-h) \sin(A)-(y-k) \cos(A))^2}{b^2}=1\]+-- \[\dfrac{((x-h)\cos(A)+(y-k)\sin(A))^2}{a^2}+\dfrac{((x-h) \sin(A)-(y-k) \cos(A))^2}{b^2}=1\] -- -- with the haskell code: --@@ -657,7 +659,6 @@ -- >>> cubicBox (CubicPosition (Point 0 0) (Point 1 1) (Point 1 -1) (Point 0 2)) -- Rect 0.0 1.0 -0.20710678118654752 1.2071067811865475 -----  cubicBox :: CubicPosition Double -> Rect Double cubicBox p = space1 pts where